From 8141c4e458b7ecd4c873a2d0570365acb70f882a Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sat, 29 Jun 2024 10:27:10 +0000 Subject: [PATCH] cli-147-1295 --- articles/extract-fbref-data.html | 70 +- articles/extract-transfermarkt-data.html | 48 +- articles/extract-understat-data.html | 35 +- articles/fbref-data-internationals.html | 30 +- articles/load-scraped-data.html | 30691 +--------------- index.html | 9 +- pkgdown.yml | 2 +- reference/fb_player_match_logs.html | 540 +- reference/load_fb_advanced_match_stats.html | 30640 +-------------- .../load_fb_big5_advanced_season_stats.html | 4 +- reference/load_fb_match_shooting.html | 4 +- reference/load_fb_match_summary.html | 4 +- reference/load_match_comp_results.html | 2 +- reference/load_match_results.html | 4 +- search.json | 2 +- 15 files changed, 182 insertions(+), 61903 deletions(-) diff --git a/articles/extract-fbref-data.html b/articles/extract-fbref-data.html index caf70550..019e1e4b 100644 --- a/articles/extract-fbref-data.html +++ b/articles/extract-fbref-data.html @@ -98,7 +98,7 @@

Jason Zivkovic

-

2024-05-07

+

2024-06-29

Source: vignettes/extract-fbref-data.Rmd
extract-fbref-data.Rmd
@@ -121,17 +121,17 @@

Overview

Installation

-

You can install the CRAN version of worldfootballR -with:

-
-install.packages("worldfootballR")
+

As at 2024-06-29, we are no longer including instructions to install +from CRAN. The version pushed to CRAN is very much out of date, and with +very regular updates to this library, we advise installing from GitHub +only.

You can install the released version of worldfootballR from GitHub with:

-
+
 # install.packages("devtools")
 devtools::install_github("JaseZiv/worldfootballR")
- @@ -169,7 +169,7 @@

Join FBref and Transfermarkt datahere

-
+
 mapped_players <- player_dictionary_mapping()
 dplyr::glimpse(mapped_players)
 #> Rows: 14,872
@@ -196,7 +196,7 @@ 

League URLshere.

-
+
 fb_league_urls(country = "ENG", gender = "M", season_end_year = 2021, tier = '2nd')
@@ -204,7 +204,7 @@

Team URLsfb_teams_urls() function can be used:

-
+
 fb_teams_urls("https://fbref.com/en/comps/9/Premier-League-Stats")
@@ -215,7 +215,7 @@

Player URLsfb_player_season_stats() and fb_player_scouting_report().

-
+
 fb_player_urls("https://fbref.com/en/squads/fd962109/Fulham-Stats")
@@ -223,7 +223,7 @@

Get match urls

To get the match URLs needed to pass in to some of the match-level functions below, fb_match_urls() can be used:

-
+
 epl_2021_urls <- fb_match_urls(country = "ENG", gender = "M", season_end_year = 2021, tier="1st")

@@ -258,7 +258,7 @@

Get Season Team Statsplaying_time
  • misc
  • -
    +
     #----- function to extract season teams stats -----#
     prem_2020_shooting <- fb_season_team_stats(country = "ENG", gender = "M", season_end_year = "2020", tier = "1st", stat_type = "shooting")
     dplyr::glimpse(prem_2020_shooting)
    @@ -298,7 +298,7 @@ 

    The Big 5 Euro LeaguesTeam_or_Opponent column in the resulting data frame, selecting ‘team’ if you want the team’s for stats, or ‘opponent’ if you want the team’s against stats.

    -
    +
     #----- Get data for big five leagues for TEAMS -----#
     big5_team_shooting <- fb_big5_advanced_season_stats(season_end_year= c(2019:2021), stat_type= "shooting", team_or_player= "team")
     dplyr::glimpse(big5_team_shooting)
    @@ -328,7 +328,7 @@ 

    Get Season Player Statskeepers
  • keepers_adv
  • -
    +
     prem_2020_player_shooting <- fb_league_stats(
       country = "ENG",
       gender = "M",
    @@ -346,7 +346,7 @@ 

    Get Season Player Statsfb_player_season_stats()).

    Note that the same function can be used to retrieve team data for a season in a manner similar to fb_season_team_stats().

    -
    +
     prem_2020_team_shooting <- fb_league_stats(
       country = "ENG",
       gender = "M",
    @@ -361,7 +361,7 @@ 

    Get Season Player Statsseason_end_year, and tier can be provided at the same time, although only one value should be specified for stat_type and team_or_player.

    -
    +
     # fb_league_stats(
     #   country = c("ENG", "ESP")
     #   gender = c("M", "F")
    @@ -385,7 +385,7 @@ 

    Get match resultshere, the following function can be used:

    -
    +
     # function to extract Serie A match results data
     serieA_2020 <- fb_match_results(country = "ITA", gender = "M", season_end_year = 2020, tier = "1st")
     dplyr::glimpse(serieA_2020)
    @@ -393,7 +393,7 @@

    Get match resultshttps://fbref.com/en/comps/

    -
    +
     # for international friendlies:
     fb_match_results(country = "", gender = "M", season_end_year = 2018, tier = "", non_dom_league_url = "https://fbref.com/en/comps/218/history/Friendlies-M-Seasons")
    @@ -401,7 +401,7 @@

    More than one league seasonfb_match_results() function can be used to get data for multiple seasons/leagues/genders/etc also:

    -
    +
     big_5_2020_results <- fb_match_results(country = c("ENG", "ESP", "ITA", "GER", "FRA"),
                                            gender = "M", season_end_year = 2020, tier = "1st")
    @@ -413,7 +413,7 @@

    Get match reportfb_match_results(), however fb_match_report() will provide some additional information. It will also only provide it for a single match, not the whole season:

    -
    +
     # function to extract match report data
     liv_mci_2020 <- fb_match_report(match_url = "https://fbref.com/en/matches/47880eb7/Liverpool-Manchester-City-November-10-2019-Premier-League")
     dplyr::glimpse(liv_mci_2020)
    @@ -423,7 +423,7 @@

    Get match team stats
    +
     # function to extract match team stats
     liv_mci_2020_team_stats <- fb_team_match_stats(match_url = "https://fbref.com/en/matches/47880eb7/Liverpool-Manchester-City-November-10-2019-Premier-League")
     dplyr::glimpse(liv_mci_2020_team_stats)
    @@ -433,7 +433,7 @@

    Get match summaries
    +
     # function to extract match summary data
     liv_mci_2020_summary <- fb_match_summary(match_url = "https://fbref.com/en/matches/47880eb7/Liverpool-Manchester-City-November-10-2019-Premier-League")
     dplyr::glimpse(liv_mci_2020_summary)
    @@ -446,7 +446,7 @@

    Get match lineups
    +
     # function to extract match lineups
     liv_mci_2020_lineups <- fb_match_lineups(match_url = "https://fbref.com/en/matches/47880eb7/Liverpool-Manchester-City-November-10-2019-Premier-League")
     dplyr::glimpse(liv_mci_2020_lineups)
    @@ -459,7 +459,7 @@

    Get shooting and shot creation ev who took the shot, when, with which body part and from how far away. Additionally, the player creating the chance and also the creation before this are included in the data.

    -
    +
     #----- Get shots data for a single match played: -----#
     shot_one_match <- fb_match_shooting(match_url = "https://fbref.com/en/matches/a3eb7a37/Sheffield-United-Wolverhampton-Wanderers-September-14-2020-Premier-League")
     
    @@ -487,14 +487,14 @@ 

    Get advanced match statistics
    +
     test_urls_multiple <- c("https://fbref.com/en/matches/c0996cac/Bordeaux-Nantes-August-21-2020-Ligue-1",
                             "https://fbref.com/en/matches/9cbccb37/Dijon-Angers-August-22-2020-Ligue-1")
     
     advanced_match_stats <- fb_advanced_match_stats(match_url = test_urls_multiple, stat_type = "possession", team_or_player = "player")
     dplyr::glimpse(advanced_match_stats)

    Or used for the team totals for each match:

    -
    +
     test_urls_multiple <- c("https://fbref.com/en/matches/c0996cac/Bordeaux-Nantes-August-21-2020-Ligue-1",
                             "https://fbref.com/en/matches/9cbccb37/Dijon-Angers-August-22-2020-Ligue-1")
     
    @@ -515,7 +515,7 @@ 

    Match Results by team -
    +
     #----- for single teams: -----#
     man_city_2021_url <- "https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats"
     man_city_2021_results <- fb_team_match_results(man_city_2021_url)
    @@ -544,7 +544,7 @@ 

    Stat Logs for Season
    +
     # can do it for one team:
     man_city_url <- "https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats"
     man_city_logs <- fb_team_match_log_stats(team_urls = man_city_url, stat_type = "passing")
    @@ -597,7 +597,7 @@ 

    Get Player Scouting Report

    This results in the full scouting report for the player selected.

    -
    +
     #----- Get scouting report for the players primary position (first position listed in fbref): -----#
     messi_primary <- fb_player_scouting_report(player_url = "https://fbref.com/en/players/d70ce98e/Lionel-Messi", pos_versus = "primary")
     dplyr::glimpse(messi_primary)
    @@ -638,7 +638,7 @@ 

    Get Player Season Statskeeper
  • keeper_adv
  • -
    +
     #----- can use for a single player: -----#
     mo_shooting <- fb_player_season_stats("https://fbref.com/en/players/e342ad68/Mohamed-Salah", stat_type = 'shooting')
     dplyr::glimpse(mo_shooting)
    @@ -671,7 +671,7 @@ 

    The Big 5 Euro League Players
    +
     big5_player_possession <- fb_big5_advanced_season_stats(season_end_year= 2021, stat_type= "possession", team_or_player= "player")
     dplyr::glimpse(big5_player_possession)

    @@ -695,7 +695,7 @@

    Player Season Statistics fo
  • keepers
  • keepers_adv
  • -
    +
     #----- to get stats for just a single team: -----#
     fleetwood_standard_stats <- fb_team_player_stats(team_urls= "https://fbref.com/en/squads/d6a369a2/Fleetwood-Town-Stats", stat_type= 'standard')
     dplyr::glimpse(fleetwood_standard_stats)
    @@ -734,7 +734,7 @@ 

    Player Match Logs
    +
     ederson_summary <- fb_player_match_logs("https://fbref.com/en/players/3bb7b8b4/Ederson", season_end_year = 2021, stat_type = 'summary')
     dplyr::glimpse(ederson_summary)

    @@ -744,7 +744,7 @@

    Player Wagesfb_squad_wages() function below. Notw, this can be used with multiple team_urls.

    -
    +
     man_city_url <- "https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats"
     man_city_wages <- fb_squad_wages(team_urls = man_city_url)

    diff --git a/articles/extract-transfermarkt-data.html b/articles/extract-transfermarkt-data.html index 47aba5b6..76f29ad7 100644 --- a/articles/extract-transfermarkt-data.html +++ b/articles/extract-transfermarkt-data.html @@ -98,7 +98,7 @@

    Jason Zivkovic

    -

    2024-05-07

    +

    2024-06-29

    Source: vignettes/extract-transfermarkt-data.Rmd
    extract-transfermarkt-data.Rmd
    @@ -121,17 +121,17 @@

    Overview

    Installation

    -

    You can install the CRAN version of worldfootballR -with:

    -
    -install.packages("worldfootballR")
    +

    As at 2024-06-29, we are no longer including instructions to install +from CRAN. The version pushed to CRAN is very much out of date, and with +very regular updates to this library, we advise installing from GitHub +only.

    You can install the released version of worldfootballR from GitHub with:

    -
    +
     # install.packages("devtools")
     devtools::install_github("JaseZiv/worldfootballR")
    - @@ -164,7 +164,7 @@

    Join FBref and Transfermarkt datahere

    -
    +
     mapped_players <- player_dictionary_mapping()
     dplyr::glimpse(mapped_players)
    @@ -184,7 +184,7 @@

    Team URLs
    +
     team_urls <- tm_league_team_urls(country_name = "England", start_year = 2020)
     # if it's not a league in the stored leagues data in worldfootballR_data repo:
     league_one_teams <- tm_league_team_urls(start_year = 2020, league_url = "https://www.transfermarkt.com/league-one/startseite/wettbewerb/GB3")
    @@ -195,7 +195,7 @@

    Player URLstm_team_player_urls() function can be used.

    -
    +
     tm_team_player_urls(team_url = "https://www.transfermarkt.com/fc-burnley/startseite/verein/1132/saison_id/2020")
    @@ -213,7 +213,7 @@

    Staff URLs
    +
     # get a list of team URLs for the EPL 2021/22 season
     epl_teams <- tm_league_team_urls(country_name = "England", start_year = 2021)
     # get all EPL managers for the 2021/22 season
    @@ -238,7 +238,7 @@ 

    League Table by MatchdaysworldfootballR_data repository, it can accept the league URL, season start year and matchday number(s).

    -
    +
     #----- to get the EPL table after matchday 1 of the 20/21 season: -----#
     epl_matchday_1_table <- tm_matchday_table(country_name="England", start_year="2020", matchday=1)
     dplyr::glimpse(epl_matchday_1_table)
    @@ -266,7 +266,7 @@ 

    League Debutants -
    +
     # Laliga players making their LaLiga debut in 2021/2022
     laliga_debutants <- tm_league_debutants(country_name = "Spain", debut_type = "league", debut_start_year = 2021, debut_end_year = 2021)
     dplyr::glimpse(laliga_debutants)
    @@ -283,7 +283,7 @@ 

    Expiring Contracts
    +
     #----- LaLiga players with expiring contracts in 2022: -----#
     laliga_expiring <- tm_expiring_contracts(country_name = "Spain", contract_end_year = 2023)
     dplyr::glimpse(laliga_expiring)
    @@ -298,7 +298,7 @@ 

    League Injuries

    To get a list of all reported current injuries for a selected league, use the tm_league_injuries() function:

    -
    +
     # to get all current injuries for LaLiga
     laliga_injuries <- tm_league_injuries(country_name = "Spain")
     dplyr::glimpse(laliga_injuries)
    @@ -323,7 +323,7 @@ 

    Transfer activity by teamsummer, winter or all for both transfer_windows:

    -
    +
     #----- for one team: -----#
     bayern <- tm_team_transfers(team_url = "https://www.transfermarkt.com/fc-bayern-munchen/startseite/verein/27/saison_id/2020", transfer_window = "all")
     dplyr::glimpse(bayern)
    @@ -338,7 +338,7 @@ 

    Squad Player Statstm_squad_stats() function can be used:

    -
    +
     #----- for one team: -----#
     bayern <- tm_squad_stats(team_url = "https://www.transfermarkt.com/fc-bayern-munchen/startseite/verein/27/saison_id/2020")
     dplyr::glimpse(bayern)
    @@ -352,7 +352,7 @@ 

    Player Valuationstm_player_market_values() function:

    -
    +
     #----- Can do it for a single league: -----#
     a_league_valuations <- tm_player_market_values(country_name = "Australia",
                                            start_year = 2021)
    @@ -381,7 +381,7 @@ 

    Player Biostm_player_bio() function.:

    -
    +
     #----- for a single player: -----#
     hazard_bio <- tm_player_bio(player_url = "https://www.transfermarkt.com/eden-hazard/profil/spieler/50202")
     dplyr::glimpse(hazard_bio)
    @@ -398,7 +398,7 @@ 

    Player Injury HistoryTo be able to get an individual player(s) injury history from transfermarkt, use the tm_player_injury_history() function.

    -
    +
     #----- for a single player: -----#
     hazard_injuries <- tm_player_injury_history(player_urls = "https://www.transfermarkt.com/eden-hazard/profil/spieler/50202")
     dplyr::glimpse(hazard_injuries)
    @@ -420,7 +420,7 @@ 

    Player Transfer HistoryTRUE.

    -
    +
     #----- for a single player, get_extra_info defaulting TRUE: -----#
     jack_rodwell_transfer_history <- tm_player_transfer_history(player_urls = "https://www.transfermarkt.com/jack-rodwell/profil/spieler/57079")
     dplyr::glimpse(jack_rodwell_transfer_history)
    @@ -440,7 +440,7 @@ 

    Player AbsenceTo be able to get a player’s (or players’) absence history as a result of suspensions from transfermarkt, use the tm_get_player_absence() function.

    -
    +
     #----- for a single player: -----#
     romero_absence <- tm_get_player_absence(player_urls = "https://www.transfermarkt.com/cristian-romero/profil/spieler/355915")
     dplyr::glimpse(romero_absence)
    @@ -469,7 +469,7 @@ 

    Club Staff Historyhere, and they’re also listed below:

    -
    +
     # get a list of team URLs for the EPL 2021/22 season
     epl_teams <- tm_league_team_urls(country_name = "England", start_year = 2021)
     #----- then use the URLs to pass to the function, and select the role you wish to see results for: -----#
    @@ -487,7 +487,7 @@ 

    Staff Member’s HistoryThe function accepts one argument, staff_urls, which can be extracted using tm_team_staff_urls() explained in the helpers section above.

    -
    +
     # get a list of team URLs for the EPL 2021/22 season
     # epl_teams <- tm_league_team_urls(country_name = "England", start_year = 2021)
     
    diff --git a/articles/extract-understat-data.html b/articles/extract-understat-data.html
    index bbff9280..777ebb9c 100644
    --- a/articles/extract-understat-data.html
    +++ b/articles/extract-understat-data.html
    @@ -98,7 +98,7 @@
                             

    Jason Zivkovic

    -

    2024-05-07

    +

    2024-06-29

    Source: vignettes/extract-understat-data.Rmd
    extract-understat-data.Rmd
    @@ -121,17 +121,17 @@

    Overview

    Installation

    -

    You can install the CRAN version of worldfootballR -with:

    -
    -install.packages("worldfootballR")
    +

    As at 2024-06-29, we are no longer including instructions to install +from CRAN. The version pushed to CRAN is very much out of date, and with +very regular updates to this library, we advise installing from GitHub +only.

    You can install the released version of worldfootballR from GitHub with:

    -
    +
     # install.packages("devtools")
     devtools::install_github("JaseZiv/worldfootballR")
    - @@ -166,7 +166,7 @@

    Team Namesunderstat_team_meta() function.

    -
    +
     team_names <- understat_team_meta(team_name = understat_avalaible_teams(league = 'EPL'))
    @@ -176,7 +176,7 @@

    Team URLsunderstat_team_meta() function (note, to get team names, it might be advisable to look at Understat.com’s spelling of the team names and pass that through to the function):

    -
    +
     team_urls <- understat_team_meta(team_name = c("Liverpool", "Manchester City"))

    @@ -205,7 +205,7 @@

    Match Resultsunderstat_league_match_results() function:

    -
    +
     # to get the EPL results:
     epl_results <- understat_league_match_results(league = "EPL", season_start_year = 2020)
     dplyr::glimpse(epl_results)
    @@ -235,7 +235,7 @@ 

    Season Shooting locations

    To get shooting locations for a whole season in supported leagues, use the understat_league_season_shots() function:

    -
    +
     ligue1_shot_location <- understat_league_season_shots(league = "Ligue 1", season_start_year = 2020)

    @@ -250,7 +250,7 @@

    Match Shooting Locations

    To get shooting locations for an individual match, use the understat_match_shots() function:

    -
    +
     wba_liv_shots <- understat_match_shots(match_url = "https://understat.com/match/14789")
     dplyr::glimpse(wba_liv_shots)
     #> Rows: 36
    @@ -288,7 +288,7 @@ 

    Team Shooting Locations

    To get all shots taken and conceded by a team during a season, use the understat_team_season_shots() function:

    -
    +
     # for one team:
     man_city_shots <- understat_team_season_shots(team_url = "https://understat.com/team/Manchester_City/2020")
     dplyr::glimpse(man_city_shots)
    @@ -331,7 +331,7 @@ 

    Team Stat Breakdowns
    +
    +
    +
     #----- Or for multiple teams: -----#
     # team_urls <- c("https://understat.com/team/Liverpool/2020",
     #                "https://understat.com/team/Manchester_City/2020")
    @@ -370,7 +371,7 @@ 

    Player Shooting Locations
     raheem_sterling_shots <- understat_player_shots(player_url = "https://understat.com/player/618")
     dplyr::glimpse(raheem_sterling_shots)
    -#> Rows: 680
    +#> Rows: 684
     #> Columns: 20
     #> $ id              <chr> "14490", "14491", "14496", "14497", "14779", "15104", …
     #> $ minute          <dbl> 20, 22, 47, 53, 8, 7, 69, 74, 65, 81, 19, 25, 47, 50, …
    diff --git a/articles/fbref-data-internationals.html b/articles/fbref-data-internationals.html
    index ed78e089..77d713e3 100644
    --- a/articles/fbref-data-internationals.html
    +++ b/articles/fbref-data-internationals.html
    @@ -98,7 +98,7 @@
                             

    Jason Zivkovic

    -

    2024-05-07

    +

    2024-06-29

    Source: vignettes/fbref-data-internationals.Rmd
    fbref-data-internationals.Rmd
    @@ -121,17 +121,17 @@

    Overview

    Installation

    -

    You can install the CRAN version of worldfootballR -with:

    -
    -install.packages("worldfootballR")
    +

    As at 2024-06-29, we are no longer including instructions to install +from CRAN. The version pushed to CRAN is very much out of date, and with +very regular updates to this library, we advise installing from GitHub +only.

    You can install the released version of worldfootballR from GitHub with:

    -
    +
     # install.packages("devtools")
     devtools::install_github("JaseZiv/worldfootballR")
    - @@ -178,7 +178,7 @@

    Get match urls

    To get the match URLs needed to pass in to some of the match-level functions below, fb_match_urls() can be used.

    -
    +
     wc_2018_urls <- fb_match_urls(country = "", gender = "M", season_end_year = 2018, tier = "", non_dom_league_url = "https://fbref.com/en/comps/1/history/World-Cup-Seasons")
     
     friendly_int_2021_urls <- fb_match_urls(country = "", gender = "M", season_end_year = 2021, tier = "", non_dom_league_url = "https://fbref.com/en/comps/218/history/Friendlies-M-Seasons")
    @@ -201,7 +201,7 @@ 

    Get match results
    +
     # euro 2016 results
     euro_2016_results <- fb_match_results(country = "", gender = "M", season_end_year = 2016, tier = "", non_dom_league_url = "https://fbref.com/en/comps/676/history/European-Championship-Seasons")
     
    @@ -218,7 +218,7 @@ 

    Get match reportfb_match_results(), however fb_match_report() will provide some additional information. It will also only provide it for a single match, not the whole season:

    -
    +
     # function to extract match report data for 2018 world cup
     wc_2018_report <- fb_match_report(match_url = wc_2018_urls)
     # function to extract match report data for 2021 international friendlies
    @@ -229,7 +229,7 @@ 

    Get match summaries
    +
     # first get the URLs for the 2016 Euros
     euro_2016_match_urls <- fb_match_urls(country = "", gender = "M", season_end_year = 2016, tier = "", non_dom_league_url = "https://fbref.com/en/comps/676/history/European-Championship-Seasons")
     
    @@ -244,7 +244,7 @@ 

    Get match lineups
    +
     

    @@ -256,7 +256,7 @@

    Get shooting and shot creation ev who took the shot, when, with which body part and from how far away. Additionally, the player creating the chance and also the creation before this are included in the data.

    -
    +
     shots_wc_2018 <- fb_match_shooting(wc_2018_urls)
    @@ -276,10 +276,10 @@

    Get advanced match statistics
    +
     advanced_match_stats_player <- fb_advanced_match_stats(match_url = wc_2018_urls, stat_type = "possession", team_or_player = "player")

    Or used for the team totals for each match:

    -
    +
     advanced_match_stats_team <- fb_advanced_match_stats(match_url = wc_2018_urls, stat_type = "passing_types", team_or_player = "team")

    diff --git a/articles/load-scraped-data.html b/articles/load-scraped-data.html index c18c89ee..b7c64364 100644 --- a/articles/load-scraped-data.html +++ b/articles/load-scraped-data.html @@ -98,7 +98,7 @@

    Jason Zivkovic

    -

    2024-05-07

    +

    2024-06-29

    Source: vignettes/load-scraped-data.Rmd
    load-scraped-data.Rmd
    @@ -121,17 +121,17 @@

    Overview

    Installation

    -

    You can install the CRAN version of worldfootballR -with:

    -
    -install.packages("worldfootballR")
    +

    As at 2024-06-29, we are no longer including instructions to install +from CRAN. The version pushed to CRAN is very much out of date, and with +very regular updates to this library, we advise installing from GitHub +only.

    You can install the released version of worldfootballR from GitHub with:

    -
    +
     # install.packages("devtools")
     devtools::install_github("JaseZiv/worldfootballR")
    -
    +
     
    @@ -177,7 +177,7 @@

    Load FBref match results

    This is the load function equivalent of fb_match_results().

    -
    +
     eng_match_results <- load_match_results(country = "ENG", gender = c("M", "F"), season_end_year = c(2020:2022), tier = "1st")
     dplyr::glimpse(eng_match_results)
     #> Rows: 1,536
    @@ -264,7 +264,7 @@ 

    Load FBref ma #> [49] "UEFA Women's Champions League" #> [50] "UEFA Women's Championship" #> [51] "UEFA Women's Euro Qualification"

    -
    +
     cups <- c("FIFA Women's World Cup","FIFA World Cup")
     world_cups <- load_match_comp_results(comp_name = cups)
     dplyr::glimpse(world_cups)
    @@ -301,7 +301,7 @@ 

    Load FBref big 5 league a the user of when the data was last updated.

    This is the load function equivalent of fb_big5_advanced_season_stats().

    -
    +
     all_season_player <- load_fb_big5_advanced_season_stats(stat_type = "defense", team_or_player = "player")
     current_season_player <- load_fb_big5_advanced_season_stats(season_end_year = 2022, stat_type = "defense", team_or_player = "player")
     
    @@ -315,14 +315,14 @@ 

    Load FBref match shootingfb_match_shooting(). Only a handful of leagues are supported.

    -
    +
    +
    +
    +
     ## just 2019, for multiple leagues at the same time
     load_fb_match_summary(
       country = c("ITA", "ESP"),
    @@ -437,7 +439,7 @@ 

    Load FBref advanced match statsfb_advanced_match_stats(). Not all leagues and stat types are supported.

    -
    +
    +
    +
     ## just 2019, for multiple leagues at the same time
     load_fb_advanced_match_stats(
       country = c("ITA", "ESP"),
    @@ -476,30622 +479,26 @@ 

    Load FBref advanced match stats stat_type = "defense", team_or_player = "player" ) -#> MatchURL -#> 1 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 2 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 3 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 4 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 5 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 6 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 7 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 8 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 9 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 10 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 11 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 12 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 13 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 14 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 15 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 16 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 17 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 18 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 19 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 20 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 21 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 22 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 23 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 24 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 25 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 26 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 27 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 28 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 29 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 30 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 31 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 32 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 33 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 34 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 35 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 36 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 37 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 38 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 39 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 40 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 41 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 42 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 43 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 44 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 45 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 46 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 47 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 48 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 49 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 50 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 51 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 52 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 53 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 54 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 55 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 56 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 57 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 58 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 59 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 60 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 61 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 62 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 63 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 64 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 65 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 66 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 67 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 68 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 69 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 70 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 71 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 72 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 73 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 74 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 75 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 76 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 77 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 78 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 79 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 80 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 81 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 82 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 83 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 84 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 85 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 86 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 87 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 88 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 89 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 90 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 91 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 92 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 93 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 94 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 95 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 96 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 97 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 98 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 99 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 100 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 101 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 102 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 103 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 104 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 105 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 106 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 107 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 108 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 109 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 110 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 111 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 112 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 113 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 114 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 115 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 116 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 117 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 118 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 119 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 120 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 121 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 122 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 123 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 124 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 125 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 126 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 127 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 128 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 129 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 130 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 131 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 132 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 133 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 134 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 135 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 136 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 137 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 138 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 139 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 140 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 141 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 142 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 143 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 144 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 145 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 146 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 147 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 148 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 149 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 150 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 151 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 152 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 153 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 154 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 155 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 156 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 157 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 158 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 159 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 160 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 161 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 162 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 163 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 164 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 165 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 166 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 167 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 168 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 169 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 170 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 171 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 172 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 173 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 174 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 175 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 176 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 177 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 178 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 179 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 180 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 181 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 182 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 183 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 184 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 185 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 186 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 187 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 188 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 189 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 190 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 191 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 192 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 193 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 194 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 195 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 196 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 197 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 198 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 199 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 200 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 201 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 202 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 203 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 204 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 205 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 206 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 207 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 208 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 209 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 210 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 211 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 212 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 213 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 214 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 215 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 216 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 217 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 218 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 219 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 220 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 221 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 222 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 223 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 224 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 225 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 226 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 227 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 228 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 229 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 230 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 231 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 232 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 233 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 234 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 235 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 236 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 237 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 238 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 239 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 240 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 241 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 242 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 243 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 244 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 245 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 246 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 247 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 248 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 249 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 250 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 251 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 252 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 253 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 254 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 255 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 256 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 257 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 258 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 259 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 260 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 261 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 262 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 263 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 264 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 265 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 266 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 267 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 268 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 269 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 270 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 271 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 272 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 273 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 274 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 275 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 276 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 277 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 278 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 279 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 280 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 281 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 282 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 283 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 284 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 285 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 286 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 287 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 288 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 289 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 290 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 291 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 292 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 293 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 294 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 295 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 296 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 297 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 298 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 299 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 300 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 301 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 302 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 303 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 304 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 305 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 306 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 307 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 308 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 309 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 310 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 311 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 312 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 313 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 314 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 315 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 316 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 317 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 318 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 319 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 320 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 321 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 322 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 323 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 324 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 325 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 326 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 327 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 328 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 329 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 330 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 331 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 332 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 333 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 334 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 335 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 336 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 337 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 338 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 339 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 340 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 341 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 342 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 343 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 344 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 345 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 346 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 347 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 348 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 349 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 350 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 351 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 352 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 353 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 354 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 355 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 356 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 357 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 358 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 359 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 360 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 361 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 362 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 363 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 364 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 365 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 366 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 367 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 368 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 369 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 370 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 371 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 372 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 373 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 374 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 375 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 376 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 377 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 378 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 379 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 380 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 381 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 382 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 383 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 384 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 385 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 386 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 387 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 388 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 389 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 390 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 391 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 392 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 393 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 394 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 395 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 396 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 397 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 398 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 399 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 400 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 401 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 402 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 403 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 404 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 405 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 406 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 407 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 408 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 409 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 410 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 411 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 412 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 413 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 414 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 415 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 416 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 417 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 418 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 419 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 420 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 421 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 422 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 423 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 424 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 425 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 426 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 427 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 428 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 429 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 430 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 431 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 432 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 433 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 434 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 435 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 436 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 437 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 438 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 439 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 440 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 441 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 442 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 443 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 444 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 445 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 446 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 447 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 448 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 449 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 450 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 451 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 452 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 453 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 454 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 455 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 456 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 457 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 458 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 459 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 460 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 461 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 462 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 463 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 464 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 465 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 466 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 467 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 468 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 469 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 470 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 471 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 472 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 473 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 474 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 475 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 476 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 477 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 478 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 479 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 480 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 481 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 482 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 483 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 484 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 485 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 486 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 487 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 488 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 489 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 490 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 491 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 492 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 493 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 494 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 495 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 496 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 497 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 498 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 499 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 500 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 501 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 502 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 503 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 504 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 505 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 506 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 507 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 508 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 509 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 510 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 511 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 512 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 513 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 514 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 515 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 516 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 517 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 518 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 519 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 520 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 521 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 522 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 523 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 524 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 525 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 526 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 527 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 528 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 529 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 530 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 531 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 532 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 533 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 534 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 535 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 536 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 537 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 538 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 539 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 540 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 541 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 542 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 543 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 544 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 545 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 546 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 547 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 548 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 549 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 550 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 551 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 552 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 553 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 554 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 555 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 556 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 557 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 558 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 559 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 560 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 561 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 562 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 563 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 564 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 565 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 566 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 567 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 568 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 569 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 570 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 571 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 572 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 573 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 574 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 575 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 576 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 577 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 578 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 579 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 580 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 581 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 582 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 583 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 584 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 585 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 586 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 587 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 588 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 589 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 590 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 591 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 592 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 593 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 594 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 595 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 596 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 597 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 598 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 599 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 600 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 601 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 602 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 603 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 604 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 605 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 606 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 607 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 608 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 609 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 610 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 611 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 612 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 613 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 614 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 615 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 616 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 617 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 618 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 619 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 620 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 621 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 622 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 623 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 624 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 625 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 626 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 627 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 628 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 629 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 630 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 631 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 632 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 633 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 634 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 635 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 636 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 637 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 638 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 639 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 640 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 641 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 642 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 643 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 644 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 645 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 646 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 647 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 648 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 649 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 650 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 651 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 652 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 653 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 654 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 655 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 656 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 657 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 658 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 659 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 660 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 661 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 662 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 663 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 664 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 665 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 666 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 667 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 668 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 669 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 670 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 671 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 672 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 673 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 674 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 675 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 676 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 677 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 678 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 679 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 680 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 681 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 682 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 683 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 684 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 685 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 686 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 687 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 688 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 689 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 690 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 691 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 692 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 693 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 694 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 695 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 696 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 697 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 698 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 699 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 700 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 701 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 702 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 703 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 704 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 705 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 706 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 707 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 708 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 709 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 710 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 711 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 712 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 713 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 714 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 715 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 716 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 717 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 718 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 719 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 720 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 721 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 722 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 723 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 724 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 725 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 726 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 727 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 728 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 729 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 730 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 731 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 732 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 733 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 734 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 735 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 736 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 737 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 738 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 739 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 740 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 741 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 742 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 743 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 744 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 745 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 746 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 747 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 748 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 749 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 750 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 751 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 752 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 753 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 754 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 755 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 756 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 757 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 758 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 759 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 760 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 761 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 762 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 763 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 764 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 765 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 766 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 767 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 768 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 769 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 770 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 771 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 772 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 773 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 774 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 775 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 776 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 777 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 778 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 779 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 780 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 781 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 782 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 783 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 784 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 785 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 786 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 787 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 788 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 789 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 790 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 791 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 792 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 793 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 794 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 795 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 796 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 797 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 798 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 799 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 800 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 801 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 802 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 803 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 804 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 805 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 806 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 807 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 808 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 809 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 810 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 811 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 812 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 813 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 814 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 815 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 816 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 817 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 818 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 819 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 820 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 821 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 822 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 823 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 824 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 825 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 826 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 827 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 828 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 829 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 830 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 831 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 832 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 833 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 834 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 835 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 836 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 837 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 838 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 839 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 840 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 841 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 842 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 843 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 844 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 845 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 846 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 847 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 848 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 849 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 850 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 851 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 852 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 853 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 854 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 855 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 856 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 857 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 858 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 859 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 860 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 861 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 862 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 863 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 864 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 865 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 866 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 867 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 868 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 869 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 870 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 871 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 872 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 873 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 874 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 875 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 876 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 877 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 878 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 879 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 880 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 881 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 882 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 883 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 884 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 885 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 886 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 887 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 888 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 889 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 890 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 891 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 892 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 893 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 894 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 895 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 896 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 897 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 898 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 899 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 900 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 901 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 902 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 903 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 904 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 905 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 906 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 907 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 908 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 909 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 910 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 911 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 912 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 913 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 914 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 915 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 916 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 917 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 918 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 919 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 920 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 921 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 922 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 923 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 924 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 925 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 926 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 927 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 928 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 929 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 930 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 931 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 932 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 933 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 934 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 935 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 936 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 937 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 938 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 939 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 940 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 941 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 942 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 943 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 944 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 945 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 946 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 947 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 948 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 949 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 950 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 951 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 952 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 953 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 954 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 955 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 956 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 957 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 958 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 959 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 960 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 961 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 962 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 963 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 964 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 965 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 966 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 967 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 968 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 969 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 970 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 971 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 972 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 973 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 974 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 975 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 976 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 977 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 978 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 979 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 980 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 981 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 982 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 983 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 984 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 985 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 986 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 987 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 988 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 989 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 990 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 991 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 992 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 993 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 994 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 995 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 996 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 997 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 998 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 999 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1000 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1001 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1002 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1003 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1004 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1005 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1006 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1007 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1008 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1009 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1010 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1011 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1012 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1013 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1014 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1015 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1016 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1017 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1018 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1019 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1020 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1021 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1022 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1023 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1024 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1025 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1026 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1027 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1028 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1029 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1030 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1031 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1032 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1033 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1034 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1035 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1036 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1037 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1038 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1039 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1040 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1041 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1042 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1043 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1044 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1045 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1046 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1047 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1048 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1049 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1050 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1051 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1052 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1053 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1054 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1055 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1056 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1057 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1058 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1059 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1060 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1061 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1062 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1063 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1064 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1065 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1066 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1067 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1068 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1069 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1070 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1071 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1072 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1073 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1074 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1075 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1076 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1077 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1078 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1079 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1080 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1081 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1082 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1083 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1084 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1085 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1086 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1087 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1088 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1089 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1090 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1091 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1092 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1093 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1094 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1095 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1096 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1097 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1098 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1099 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1100 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1101 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1102 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1103 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1104 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1105 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1106 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1107 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1108 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1109 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1110 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1111 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1112 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1113 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1114 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1115 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1116 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1117 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1118 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1119 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1120 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1121 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1122 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1123 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1124 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1125 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1126 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1127 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1128 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1129 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1130 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1131 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1132 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1133 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1134 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1135 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1136 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1137 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1138 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1139 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1140 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1141 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1142 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1143 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1144 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1145 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1146 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1147 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1148 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1149 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1150 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1151 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1152 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1153 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1154 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1155 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1156 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1157 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1158 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1159 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1160 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1161 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1162 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1163 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1164 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1165 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1166 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1167 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1168 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1169 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1170 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1171 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1172 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1173 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1174 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1175 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1176 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1177 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1178 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1179 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1180 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1181 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1182 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1183 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1184 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1185 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1186 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1187 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1188 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1189 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1190 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1191 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1192 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1193 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1194 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1195 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1196 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1197 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1198 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1199 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1200 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1201 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1202 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1203 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1204 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1205 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1206 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1207 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1208 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1209 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1210 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1211 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1212 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1213 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1214 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1215 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1216 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1217 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1218 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1219 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1220 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1221 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1222 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1223 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1224 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1225 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1226 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1227 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1228 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1229 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1230 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1231 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1232 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1233 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1234 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1235 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1236 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1237 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1238 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1239 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1240 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1241 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1242 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1243 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1244 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1245 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1246 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1247 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1248 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1249 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1250 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1251 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1252 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1253 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1254 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1255 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1256 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1257 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1258 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1259 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1260 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1261 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1262 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1263 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1264 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1265 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1266 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1267 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1268 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1269 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1270 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1271 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1272 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1273 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1274 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1275 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1276 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1277 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1278 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1279 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1280 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1281 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1282 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1283 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1284 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1285 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1286 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1287 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1288 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1289 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1290 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1291 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1292 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1293 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1294 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1295 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1296 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1297 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1298 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1299 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1300 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1301 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1302 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1303 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1304 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1305 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1306 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1307 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1308 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1309 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1310 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1311 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1312 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1313 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1314 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1315 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1316 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1317 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1318 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1319 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1320 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1321 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1322 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1323 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1324 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1325 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1326 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1327 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1328 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1329 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1330 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1331 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1332 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1333 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1334 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1335 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1336 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1337 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1338 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1339 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1340 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1341 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1342 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1343 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1344 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1345 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1346 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1347 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1348 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1349 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1350 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1351 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1352 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1353 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1354 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1355 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1356 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1357 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1358 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1359 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1360 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1361 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1362 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1363 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1364 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1365 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1366 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1367 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1368 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1369 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1370 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1371 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1372 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1373 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1374 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1375 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1376 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1377 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1378 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1379 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1380 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1381 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1382 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1383 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1384 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1385 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1386 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1387 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1388 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1389 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1390 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1391 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1392 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1393 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1394 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1395 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1396 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1397 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1398 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1399 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1400 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1401 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1402 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1403 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1404 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1405 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1406 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1407 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1408 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1409 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1410 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1411 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1412 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1413 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1414 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1415 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1416 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1417 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1418 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1419 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1420 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1421 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1422 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1423 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1424 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1425 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1426 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1427 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1428 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1429 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1430 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1431 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1432 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1433 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1434 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1435 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1436 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1437 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1438 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1439 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1440 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1441 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1442 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1443 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1444 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1445 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1446 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1447 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1448 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1449 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1450 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1451 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1452 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1453 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1454 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1455 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1456 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1457 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1458 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1459 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1460 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1461 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1462 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1463 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1464 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1465 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1466 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1467 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1468 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1469 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1470 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1471 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1472 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1473 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1474 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1475 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1476 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1477 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1478 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1479 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1480 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1481 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1482 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1483 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1484 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1485 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1486 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1487 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1488 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1489 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1490 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1491 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1492 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1493 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1494 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1495 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1496 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1497 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1498 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1499 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1500 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1501 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1502 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1503 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1504 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1505 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1506 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1507 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1508 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1509 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1510 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1511 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1512 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1513 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1514 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1515 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1516 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1517 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1518 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1519 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1520 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1521 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1522 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1523 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1524 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1525 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1526 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1527 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1528 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1529 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1530 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1531 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1532 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1533 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1534 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1535 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1536 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1537 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1538 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1539 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1540 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1541 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1542 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1543 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1544 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1545 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1546 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1547 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1548 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1549 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1550 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1551 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1552 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1553 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1554 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1555 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1556 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1557 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1558 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1559 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1560 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1561 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1562 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1563 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1564 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1565 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1566 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1567 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1568 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1569 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1570 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1571 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1572 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1573 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1574 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1575 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1576 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1577 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1578 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1579 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1580 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1581 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1582 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1583 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1584 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1585 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1586 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1587 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1588 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1589 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1590 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1591 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1592 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1593 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1594 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1595 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1596 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1597 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1598 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1599 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1600 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1601 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1602 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1603 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1604 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1605 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1606 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1607 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1608 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1609 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1610 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1611 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1612 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1613 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1614 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1615 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1616 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1617 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1618 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1619 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1620 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1621 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1622 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1623 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1624 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1625 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1626 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1627 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1628 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1629 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1630 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1631 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1632 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1633 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1634 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1635 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1636 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1637 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1638 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1639 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1640 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1641 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1642 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1643 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1644 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1645 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1646 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1647 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1648 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1649 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1650 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1651 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1652 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1653 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1654 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1655 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1656 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1657 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1658 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1659 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1660 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1661 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1662 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1663 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1664 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1665 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1666 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1667 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1668 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1669 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1670 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1671 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1672 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1673 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1674 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1675 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1676 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1677 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1678 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1679 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1680 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1681 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1682 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1683 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1684 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1685 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1686 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1687 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1688 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1689 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1690 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1691 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1692 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1693 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1694 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1695 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1696 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1697 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1698 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1699 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1700 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1701 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1702 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1703 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1704 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1705 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1706 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1707 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1708 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1709 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1710 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1711 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1712 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1713 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1714 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1715 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1716 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1717 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1718 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1719 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1720 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1721 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1722 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1723 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1724 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1725 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1726 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1727 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1728 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1729 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1730 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1731 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1732 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1733 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1734 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1735 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1736 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1737 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1738 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1739 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1740 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1741 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1742 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1743 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1744 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1745 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1746 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1747 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1748 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1749 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1750 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1751 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1752 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1753 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1754 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1755 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1756 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1757 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1758 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1759 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1760 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1761 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1762 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1763 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1764 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1765 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1766 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1767 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1768 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1769 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1770 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1771 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1772 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1773 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1774 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1775 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1776 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1777 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1778 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1779 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1780 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1781 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1782 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1783 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1784 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1785 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1786 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1787 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1788 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1789 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1790 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1791 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1792 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1793 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1794 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1795 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1796 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1797 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1798 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1799 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1800 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1801 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1802 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1803 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1804 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1805 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1806 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1807 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1808 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1809 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1810 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1811 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1812 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1813 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1814 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1815 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1816 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1817 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1818 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1819 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1820 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1821 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1822 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1823 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1824 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1825 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1826 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1827 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1828 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1829 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1830 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1831 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1832 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1833 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1834 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1835 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1836 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1837 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1838 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1839 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1840 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1841 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1842 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1843 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1844 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1845 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1846 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1847 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1848 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1849 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1850 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1851 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1852 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1853 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1854 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1855 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1856 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1857 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1858 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1859 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1860 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1861 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1862 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1863 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1864 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1865 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1866 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1867 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1868 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1869 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1870 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1871 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1872 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1873 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1874 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1875 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1876 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1877 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1878 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1879 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1880 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1881 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1882 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1883 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1884 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1885 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1886 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1887 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1888 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1889 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1890 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1891 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1892 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1893 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1894 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1895 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1896 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1897 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1898 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1899 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1900 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1901 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1902 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1903 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1904 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1905 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1906 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1907 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1908 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1909 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1910 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1911 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1912 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1913 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1914 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1915 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1916 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1917 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1918 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1919 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1920 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1921 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1922 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1923 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1924 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1925 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1926 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1927 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1928 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1929 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1930 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1931 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1932 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1933 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1934 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1935 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1936 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1937 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1938 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1939 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1940 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1941 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1942 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1943 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1944 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1945 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1946 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1947 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1948 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1949 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1950 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1951 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1952 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1953 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1954 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1955 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1956 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1957 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1958 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1959 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1960 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1961 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1962 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1963 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1964 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1965 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1966 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1967 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1968 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1969 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1970 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1971 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1972 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1973 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1974 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1975 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1976 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1977 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1978 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1979 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1980 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1981 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1982 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1983 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1984 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1985 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1986 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1987 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1988 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1989 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1990 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1991 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1992 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1993 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1994 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1995 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1996 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1997 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1998 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1999 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2000 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2001 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2002 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2003 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2004 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2005 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2006 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2007 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2008 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2009 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2010 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2011 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2012 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2013 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2014 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2015 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2016 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2017 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2018 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2019 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2020 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2021 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2022 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2023 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2024 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2025 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2026 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2027 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2028 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2029 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2030 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2031 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2032 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2033 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2034 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2035 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2036 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2037 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2038 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2039 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2040 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> League Match_Date Matchweek Home_Team Home_Formation -#> 1 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 2 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 3 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 4 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 5 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 6 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 7 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 8 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 9 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 10 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 11 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 12 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 13 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 14 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 15 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 16 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 17 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 18 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 19 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 20 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 21 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 22 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 23 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 24 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 25 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 26 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 27 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 28 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 -#> 29 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 30 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 31 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 32 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 33 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 34 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 35 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 36 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 37 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 38 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 39 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 40 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 41 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 42 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 43 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 44 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 45 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 46 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 47 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 48 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 49 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 50 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 51 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 52 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 53 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 54 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 55 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 56 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 -#> 57 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 58 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 59 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 60 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 61 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 62 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 63 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 64 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 65 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 66 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 67 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 68 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 69 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 70 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 71 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 72 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 73 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 74 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 75 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 76 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 77 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 78 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 79 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 80 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 81 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 82 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 83 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 84 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 -#> 85 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 86 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 87 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 88 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 89 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 90 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 91 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 92 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 93 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 94 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 95 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 96 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 97 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 98 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 99 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 100 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 101 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 102 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 103 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 104 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 105 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 106 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 107 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 108 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 109 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 110 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 111 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 112 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 -#> 113 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 114 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 115 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 116 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 117 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 118 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 119 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 120 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 121 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 122 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 123 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 124 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 125 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 126 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 127 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 128 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 129 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 130 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 131 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 132 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 133 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 134 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 135 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 136 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 137 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 138 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 139 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 140 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 -#> 141 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 142 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 143 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 144 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 145 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 146 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 147 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 148 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 149 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 150 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 151 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 152 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 153 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 154 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 155 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 156 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 157 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 158 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 159 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 160 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 161 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 162 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 163 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 164 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 165 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 166 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 167 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 168 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 -#> 169 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 170 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 171 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 172 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 173 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 174 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 175 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 176 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 177 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 178 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 179 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 180 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 181 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 182 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 183 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 184 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 185 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 186 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 187 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 188 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 189 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 190 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 191 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 192 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 193 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 194 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 195 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 -#> 196 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 197 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 198 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 199 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 200 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 201 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 202 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 203 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 204 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 205 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 206 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 207 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 208 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 209 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 210 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 211 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 212 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 213 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 214 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 215 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 216 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 217 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 218 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 219 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 220 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 221 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 222 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 223 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 -#> 224 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 225 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 226 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 227 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 228 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 229 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 230 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 231 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 232 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 233 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 234 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 235 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 236 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 237 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 238 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 239 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 240 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 241 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 242 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 243 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 244 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 245 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 246 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 247 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 248 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 249 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 250 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 251 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 -#> 252 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 253 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 254 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 255 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 256 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 257 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 258 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 259 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 260 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 261 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 262 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 263 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 264 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 265 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 266 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 267 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 268 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 269 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 270 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 271 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 272 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 273 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 274 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 275 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 276 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 277 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 278 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 279 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 280 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 281 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 282 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 283 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 284 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 285 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 286 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 287 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 288 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 289 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 290 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 291 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 292 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 293 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 294 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 295 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 296 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 297 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 298 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 299 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 300 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 301 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 302 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 303 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 304 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 305 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 306 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 307 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 -#> 308 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 309 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 310 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 311 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 312 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 313 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 314 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 315 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 316 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 317 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 318 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 319 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 320 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 321 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 322 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 323 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 324 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 325 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 326 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 327 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 328 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 329 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 330 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 331 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 332 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 333 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 334 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 335 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 -#> 336 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 337 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 338 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 339 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 340 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 341 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 342 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 343 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 344 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 345 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 346 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 347 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 348 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 349 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 350 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 351 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 352 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 353 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 354 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 355 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 356 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 357 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 358 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 359 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 360 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 361 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 362 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 363 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 -#> 364 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 365 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 366 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 367 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 368 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 369 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 370 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 371 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 372 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 373 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 374 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 375 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 376 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 377 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 378 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 379 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 380 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 381 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 382 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 383 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 384 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 385 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 386 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 387 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 388 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 389 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 390 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 391 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 -#> 392 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 393 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 394 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 395 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 396 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 397 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 398 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 399 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 400 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 401 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 402 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 403 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 404 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 405 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 406 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 407 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 408 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 409 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 410 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 411 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 412 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 413 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 414 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 415 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 416 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 417 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 418 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 419 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 -#> 420 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 421 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 422 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 423 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 424 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 425 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 426 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 427 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 428 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 429 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 430 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 431 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 432 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 433 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 434 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 435 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 436 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 437 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 438 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 439 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 440 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 441 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 442 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 443 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 444 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 445 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 446 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 447 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 -#> 448 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 449 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 450 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 451 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 452 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 453 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 454 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 455 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 456 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 457 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 458 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 459 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 460 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 461 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 462 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 463 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 464 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 465 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 466 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 467 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 468 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 469 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 470 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 471 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 472 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 473 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 474 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 475 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 -#> 476 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 477 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 478 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 479 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 480 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 481 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 482 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 483 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 484 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 485 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 486 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 487 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 488 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 489 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 490 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 491 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 492 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 493 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 494 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 495 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 496 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 497 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 498 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 499 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 500 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 501 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 502 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 503 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 -#> 504 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 505 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 506 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 507 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 508 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 509 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 510 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 511 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 512 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 513 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 514 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 515 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 516 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 517 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 518 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 519 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 520 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 521 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 522 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 523 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 524 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 525 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 526 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 527 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 528 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 529 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 530 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 531 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 -#> 532 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 533 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 534 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 535 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 536 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 537 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 538 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 539 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 540 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 541 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 542 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 543 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 544 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 545 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 546 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 547 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 548 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 549 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 550 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 551 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 552 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 553 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 554 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 555 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 556 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 557 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 558 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 559 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 -#> 560 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 561 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 562 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 563 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 564 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 565 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 566 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 567 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 568 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 569 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 570 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 571 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 572 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 573 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 574 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 575 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 576 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 577 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 578 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 579 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 580 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 581 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 582 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 583 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 584 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 585 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 586 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 587 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 -#> 588 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 589 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 590 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 591 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 592 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 593 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 594 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 595 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 596 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 597 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 598 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 599 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 600 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 601 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 602 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 603 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 604 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 605 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 606 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 607 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 608 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 609 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 610 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 611 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 612 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 613 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 614 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 615 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 -#> 616 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 617 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 618 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 619 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 620 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 621 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 622 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 623 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 624 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 625 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 626 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 627 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 628 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 629 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 630 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 631 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 632 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 633 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 634 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 635 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 636 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 637 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 638 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 639 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 640 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 641 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 642 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 643 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 -#> 644 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 645 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 646 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 647 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 648 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 649 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 650 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 651 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 652 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 653 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 654 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 655 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 656 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 657 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 658 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 659 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 660 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 661 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 662 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 663 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 664 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 665 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 666 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 667 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 668 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 669 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 670 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 671 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 -#> 672 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 673 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 674 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 675 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 676 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 677 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 678 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 679 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 680 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 681 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 682 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 683 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 684 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 685 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 686 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 687 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 688 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 689 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 690 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 691 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 692 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 693 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 694 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 695 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 696 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 697 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 698 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 699 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 -#> 700 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 701 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 702 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 703 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 704 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 705 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 706 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 707 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 708 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 709 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 710 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 711 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 712 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 713 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 714 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 715 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 716 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 717 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 718 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 719 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 720 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 721 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 722 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 723 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 724 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 725 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 726 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 727 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 -#> 728 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 729 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 730 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 731 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 732 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 733 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 734 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 735 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 736 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 737 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 738 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 739 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 740 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 741 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 742 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 743 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 744 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 745 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 746 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 747 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 748 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 749 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 750 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 751 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 752 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 753 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 754 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 755 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 -#> 756 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 757 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 758 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 759 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 760 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 761 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 762 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 763 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 764 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 765 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 766 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 767 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 768 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 769 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 770 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 771 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 772 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 773 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 774 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 775 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 776 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 777 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 778 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 779 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 780 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 781 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 782 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 783 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 784 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 785 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 786 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 787 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 788 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 789 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 790 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 791 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 792 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 793 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 794 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 795 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 796 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 797 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 798 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 799 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 800 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 801 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 802 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 803 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 804 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 805 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 806 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 807 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 808 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 809 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 810 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 811 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 -#> 812 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 813 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 814 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 815 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 816 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 817 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 818 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 819 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 820 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 821 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 822 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 823 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 824 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 825 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 826 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 827 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 828 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 829 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 830 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 831 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 832 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 833 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 834 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 835 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 836 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 837 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 838 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 839 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 -#> 840 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 841 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 842 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 843 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 844 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 845 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 846 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 847 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 848 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 849 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 850 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 851 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 852 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 853 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 854 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 855 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 856 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 857 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 858 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 859 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 860 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 861 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 862 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 863 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 864 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 865 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 866 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 -#> 867 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 868 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 869 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 870 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 871 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 872 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 873 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 874 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 875 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 876 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 877 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 878 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 879 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 880 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 881 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 882 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 883 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 884 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 885 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 886 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 887 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 888 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 889 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 890 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 891 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 892 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 893 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 894 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 895 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 896 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 897 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 898 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 899 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 900 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 901 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 902 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 903 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 904 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 905 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 906 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 907 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 908 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 909 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 910 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 911 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 912 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 913 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 914 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 915 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 916 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 917 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 918 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 919 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 920 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 921 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 922 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 -#> 923 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 924 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 925 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 926 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 927 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 928 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 929 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 930 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 931 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 932 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 933 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 934 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 935 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 936 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 937 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 938 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 939 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 940 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 941 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 942 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 943 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 944 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 945 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 946 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 947 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 948 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 949 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 950 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 951 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 952 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 953 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 954 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 955 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 956 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 957 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 958 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 959 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 960 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 961 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 962 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 963 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 964 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 965 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 966 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 967 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 968 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 969 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 970 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 971 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 972 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 973 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 974 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 975 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 976 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 977 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 978 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 -#> 979 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 980 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 981 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 982 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 983 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 984 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 985 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 986 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 987 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 988 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 989 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 990 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 991 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 992 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 993 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 994 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 995 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 996 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 997 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 998 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 999 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 1000 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 1001 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 1002 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 1003 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 1004 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 1005 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 1006 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 -#> 1007 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1008 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1009 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1010 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1011 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1012 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1013 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1014 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1015 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1016 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1017 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1018 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1019 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1020 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1021 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1022 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1023 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1024 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1025 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1026 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1027 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1028 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1029 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1030 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1031 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1032 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1033 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1034 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 -#> 1035 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1036 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1037 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1038 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1039 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1040 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1041 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1042 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1043 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1044 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1045 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1046 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1047 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1048 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1049 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1050 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1051 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1052 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1053 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1054 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1055 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1056 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1057 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1058 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1059 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1060 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1061 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1062 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 -#> 1063 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1064 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1065 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1066 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1067 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1068 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1069 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1070 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1071 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1072 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1073 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1074 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1075 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1076 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1077 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1078 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1079 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1080 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1081 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1082 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1083 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1084 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1085 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1086 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1087 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1088 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1089 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1090 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 -#> 1091 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1092 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1093 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1094 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1095 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1096 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1097 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1098 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1099 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1100 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1101 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1102 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1103 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1104 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1105 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1106 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1107 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1108 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1109 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1110 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1111 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1112 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1113 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1114 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1115 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1116 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1117 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1118 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 -#> 1119 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1120 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1121 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1122 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1123 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1124 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1125 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1126 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1127 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1128 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1129 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1130 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1131 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1132 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1133 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1134 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1135 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1136 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1137 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1138 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1139 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1140 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1141 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1142 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1143 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1144 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1145 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1146 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 -#> 1147 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1148 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1149 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1150 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1151 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1152 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1153 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1154 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1155 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1156 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1157 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1158 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1159 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1160 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1161 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1162 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1163 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1164 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1165 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1166 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1167 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1168 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1169 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1170 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1171 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1172 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1173 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1174 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 -#> 1175 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1176 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1177 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1178 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1179 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1180 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1181 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1182 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1183 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1184 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1185 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1186 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1187 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1188 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1189 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1190 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1191 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1192 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1193 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1194 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1195 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1196 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1197 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1198 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1199 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1200 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1201 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1202 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 -#> 1203 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1204 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1205 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1206 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1207 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1208 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1209 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1210 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1211 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1212 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1213 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1214 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1215 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1216 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1217 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1218 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1219 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1220 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1221 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1222 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1223 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1224 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1225 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1226 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1227 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1228 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1229 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1230 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 -#> 1231 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1232 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1233 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1234 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1235 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1236 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1237 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1238 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1239 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1240 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1241 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1242 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1243 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1244 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1245 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1246 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1247 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1248 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1249 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1250 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1251 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1252 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1253 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1254 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1255 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1256 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1257 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1258 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1259 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1260 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1261 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1262 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1263 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1264 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1265 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1266 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1267 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1268 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1269 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1270 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1271 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1272 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1273 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1274 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1275 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1276 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1277 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1278 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1279 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1280 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1281 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1282 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1283 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1284 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1285 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1286 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 -#> 1287 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1288 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1289 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1290 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1291 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1292 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1293 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1294 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1295 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1296 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1297 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1298 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1299 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1300 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1301 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1302 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1303 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1304 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1305 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1306 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1307 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1308 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1309 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1310 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1311 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1312 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1313 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1314 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 -#> 1315 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1316 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1317 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1318 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1319 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1320 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1321 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1322 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1323 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1324 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1325 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1326 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1327 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1328 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1329 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1330 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1331 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1332 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1333 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1334 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1335 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1336 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1337 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1338 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1339 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1340 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1341 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1342 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 -#> 1343 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1344 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1345 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1346 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1347 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1348 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1349 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1350 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1351 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1352 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1353 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1354 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1355 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1356 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1357 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1358 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1359 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1360 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1361 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1362 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1363 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1364 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1365 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1366 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1367 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1368 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1369 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1370 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 -#> 1371 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1372 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1373 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1374 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1375 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1376 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1377 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1378 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1379 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1380 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1381 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1382 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1383 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1384 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1385 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1386 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1387 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1388 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1389 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1390 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1391 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1392 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1393 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1394 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1395 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1396 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1397 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1398 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 -#> 1399 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1400 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1401 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1402 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1403 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1404 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1405 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1406 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1407 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1408 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1409 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1410 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1411 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1412 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1413 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1414 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1415 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1416 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1417 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1418 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1419 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1420 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1421 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1422 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1423 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1424 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1425 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1426 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 -#> 1427 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1428 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1429 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1430 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1431 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1432 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1433 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1434 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1435 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1436 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1437 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1438 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1439 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1440 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1441 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1442 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1443 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1444 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1445 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1446 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1447 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1448 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1449 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1450 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1451 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1452 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1453 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1454 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 -#> 1455 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1456 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1457 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1458 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1459 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1460 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1461 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1462 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1463 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1464 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1465 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1466 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1467 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1468 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1469 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1470 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1471 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1472 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1473 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1474 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1475 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1476 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1477 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1478 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1479 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1480 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1481 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1482 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 -#> 1483 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1484 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1485 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1486 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1487 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1488 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1489 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1490 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1491 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1492 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1493 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1494 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1495 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1496 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1497 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1498 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1499 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1500 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1501 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1502 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1503 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1504 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1505 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1506 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1507 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1508 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1509 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1510 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1511 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1512 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1513 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1514 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1515 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1516 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1517 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1518 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1519 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1520 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1521 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1522 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1523 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1524 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1525 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1526 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1527 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1528 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1529 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1530 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1531 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1532 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1533 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1534 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1535 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1536 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1537 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1538 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 -#> 1539 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1540 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1541 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1542 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1543 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1544 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1545 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1546 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1547 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1548 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1549 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1550 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1551 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1552 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1553 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1554 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1555 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1556 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1557 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1558 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1559 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1560 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1561 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1562 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1563 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1564 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1565 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1566 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 -#> 1567 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1568 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1569 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1570 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1571 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1572 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1573 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1574 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1575 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1576 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1577 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1578 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1579 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1580 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1581 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1582 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1583 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1584 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1585 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1586 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1587 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1588 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1589 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1590 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1591 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1592 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1593 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1594 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 -#> 1595 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1596 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1597 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1598 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1599 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1600 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1601 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1602 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1603 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1604 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1605 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1606 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1607 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1608 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1609 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1610 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1611 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1612 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1613 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1614 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1615 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1616 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1617 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1618 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1619 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1620 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1621 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1622 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 -#> 1623 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1624 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1625 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1626 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1627 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1628 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1629 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1630 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1631 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1632 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1633 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1634 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1635 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1636 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1637 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1638 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1639 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1640 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1641 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1642 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1643 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1644 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1645 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1646 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1647 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1648 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1649 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1650 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 -#> 1651 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1652 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1653 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1654 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1655 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1656 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1657 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1658 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1659 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1660 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1661 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1662 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1663 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1664 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1665 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1666 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1667 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1668 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1669 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1670 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1671 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1672 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1673 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1674 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1675 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1676 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1677 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1678 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 -#> 1679 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1680 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1681 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1682 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1683 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1684 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1685 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1686 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1687 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1688 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1689 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1690 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1691 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1692 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1693 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1694 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1695 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1696 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1697 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1698 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1699 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1700 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1701 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1702 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1703 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1704 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1705 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1706 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 -#> 1707 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1708 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1709 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1710 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1711 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1712 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1713 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1714 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1715 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1716 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1717 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1718 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1719 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1720 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1721 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1722 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1723 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1724 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1725 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1726 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1727 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1728 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1729 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1730 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1731 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1732 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1733 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1734 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 -#> 1735 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1736 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1737 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1738 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1739 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1740 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1741 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1742 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1743 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1744 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1745 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1746 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1747 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1748 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1749 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1750 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1751 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1752 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1753 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1754 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1755 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1756 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1757 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1758 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1759 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1760 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1761 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1762 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 -#> 1763 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1764 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1765 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1766 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1767 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1768 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1769 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1770 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1771 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1772 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1773 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1774 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1775 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1776 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1777 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1778 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1779 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1780 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1781 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1782 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1783 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1784 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1785 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1786 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1787 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1788 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1789 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1790 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 -#> 1791 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1792 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1793 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1794 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1795 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1796 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1797 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1798 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1799 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1800 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1801 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1802 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1803 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1804 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1805 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1806 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1807 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1808 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1809 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1810 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1811 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1812 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1813 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1814 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1815 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1816 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1817 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1818 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 -#> 1819 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1820 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1821 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1822 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1823 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1824 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1825 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1826 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1827 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1828 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1829 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1830 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1831 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1832 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1833 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1834 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1835 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1836 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1837 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1838 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1839 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1840 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1841 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1842 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1843 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1844 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1845 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1846 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 -#> 1847 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1848 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1849 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1850 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1851 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1852 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1853 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1854 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1855 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1856 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1857 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1858 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1859 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1860 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1861 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1862 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1863 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1864 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1865 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1866 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1867 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1868 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1869 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1870 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1871 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1872 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1873 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1874 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 -#> 1875 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1876 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1877 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1878 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1879 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1880 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1881 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1882 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1883 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1884 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1885 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1886 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1887 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1888 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1889 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1890 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1891 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1892 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1893 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1894 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1895 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1896 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1897 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1898 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1899 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1900 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1901 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1902 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 -#> 1903 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1904 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1905 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1906 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1907 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1908 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1909 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1910 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1911 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1912 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1913 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1914 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1915 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1916 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1917 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1918 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1919 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1920 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1921 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1922 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1923 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1924 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1925 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1926 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1927 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1928 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1929 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1930 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 -#> 1931 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1932 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1933 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1934 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1935 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1936 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1937 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1938 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1939 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1940 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1941 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1942 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1943 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1944 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1945 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1946 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1947 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1948 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1949 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1950 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1951 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1952 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1953 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1954 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1955 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1956 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1957 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1958 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 -#> 1959 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1960 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1961 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1962 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1963 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1964 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1965 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1966 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1967 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1968 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1969 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1970 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1971 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1972 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1973 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1974 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1975 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1976 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1977 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1978 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1979 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1980 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1981 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1982 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1983 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1984 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1985 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1986 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 -#> 1987 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 1988 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 1989 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 1990 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 1991 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 1992 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 1993 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 1994 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 1995 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 1996 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 1997 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 1998 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 1999 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2000 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2001 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2002 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2003 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2004 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2005 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2006 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2007 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2008 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2009 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2010 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2011 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2012 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2013 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2014 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 -#> 2015 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2016 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2017 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2018 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2019 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2020 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2021 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2022 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2023 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2024 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2025 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2026 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2027 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2028 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2029 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2030 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2031 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2032 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2033 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2034 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2035 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2036 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2037 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2038 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2039 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> 2040 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 -#> Home_Score Home_xG -#> 1 0 0.7 -#> 2 0 0.7 -#> 3 0 0.7 -#> 4 0 0.7 -#> 5 0 0.7 -#> 6 0 0.7 -#> 7 0 0.7 -#> 8 0 0.7 -#> 9 0 0.7 -#> 10 0 0.7 -#> 11 0 0.7 -#> 12 0 0.7 -#> 13 0 0.7 -#> 14 0 0.7 -#> 15 0 0.7 -#> 16 0 0.7 -#> 17 0 0.7 -#> 18 0 0.7 -#> 19 0 0.7 -#> 20 0 0.7 -#> 21 0 0.7 -#> 22 0 0.7 -#> 23 0 0.7 -#> 24 0 0.7 -#> 25 0 0.7 -#> 26 0 0.7 -#> 27 0 0.7 -#> 28 0 0.7 -#> 29 0 0.9 -#> 30 0 0.9 -#> 31 0 0.9 -#> 32 0 0.9 -#> 33 0 0.9 -#> 34 0 0.9 -#> 35 0 0.9 -#> 36 0 0.9 -#> 37 0 0.9 -#> 38 0 0.9 -#> 39 0 0.9 -#> 40 0 0.9 -#> 41 0 0.9 -#> 42 0 0.9 -#> 43 0 0.9 -#> 44 0 0.9 -#> 45 0 0.9 -#> 46 0 0.9 -#> 47 0 0.9 -#> 48 0 0.9 -#> 49 0 0.9 -#> 50 0 0.9 -#> 51 0 0.9 -#> 52 0 0.9 -#> 53 0 0.9 -#> 54 0 0.9 -#> 55 0 0.9 -#> 56 0 0.9 -#> 57 1 0.6 -#> 58 1 0.6 -#> 59 1 0.6 -#> 60 1 0.6 -#> 61 1 0.6 -#> 62 1 0.6 -#> 63 1 0.6 -#> 64 1 0.6 -#> 65 1 0.6 -#> 66 1 0.6 -#> 67 1 0.6 -#> 68 1 0.6 -#> 69 1 0.6 -#> 70 1 0.6 -#> 71 1 0.6 -#> 72 1 0.6 -#> 73 1 0.6 -#> 74 1 0.6 -#> 75 1 0.6 -#> 76 1 0.6 -#> 77 1 0.6 -#> 78 1 0.6 -#> 79 1 0.6 -#> 80 1 0.6 -#> 81 1 0.6 -#> 82 1 0.6 -#> 83 1 0.6 -#> 84 1 0.6 -#> 85 1 1.6 -#> 86 1 1.6 -#> 87 1 1.6 -#> 88 1 1.6 -#> 89 1 1.6 -#> 90 1 1.6 -#> 91 1 1.6 -#> 92 1 1.6 -#> 93 1 1.6 -#> 94 1 1.6 -#> 95 1 1.6 -#> 96 1 1.6 -#> 97 1 1.6 -#> 98 1 1.6 -#> 99 1 1.6 -#> 100 1 1.6 -#> 101 1 1.6 -#> 102 1 1.6 -#> 103 1 1.6 -#> 104 1 1.6 -#> 105 1 1.6 -#> 106 1 1.6 -#> 107 1 1.6 -#> 108 1 1.6 -#> 109 1 1.6 -#> 110 1 1.6 -#> 111 1 1.6 -#> 112 1 1.6 -#> 113 3 3.2 -#> 114 3 3.2 -#> 115 3 3.2 -#> 116 3 3.2 -#> 117 3 3.2 -#> 118 3 3.2 -#> 119 3 3.2 -#> 120 3 3.2 -#> 121 3 3.2 -#> 122 3 3.2 -#> 123 3 3.2 -#> 124 3 3.2 -#> 125 3 3.2 -#> 126 3 3.2 -#> 127 3 3.2 -#> 128 3 3.2 -#> 129 3 3.2 -#> 130 3 3.2 -#> 131 3 3.2 -#> 132 3 3.2 -#> 133 3 3.2 -#> 134 3 3.2 -#> 135 3 3.2 -#> 136 3 3.2 -#> 137 3 3.2 -#> 138 3 3.2 -#> 139 3 3.2 -#> 140 3 3.2 -#> 141 1 1.3 -#> 142 1 1.3 -#> 143 1 1.3 -#> 144 1 1.3 -#> 145 1 1.3 -#> 146 1 1.3 -#> 147 1 1.3 -#> 148 1 1.3 -#> 149 1 1.3 -#> 150 1 1.3 -#> 151 1 1.3 -#> 152 1 1.3 -#> 153 1 1.3 -#> 154 1 1.3 -#> 155 1 1.3 -#> 156 1 1.3 -#> 157 1 1.3 -#> 158 1 1.3 -#> 159 1 1.3 -#> 160 1 1.3 -#> 161 1 1.3 -#> 162 1 1.3 -#> 163 1 1.3 -#> 164 1 1.3 -#> 165 1 1.3 -#> 166 1 1.3 -#> 167 1 1.3 -#> 168 1 1.3 -#> 169 1 2.1 -#> 170 1 2.1 -#> 171 1 2.1 -#> 172 1 2.1 -#> 173 1 2.1 -#> 174 1 2.1 -#> 175 1 2.1 -#> 176 1 2.1 -#> 177 1 2.1 -#> 178 1 2.1 -#> 179 1 2.1 -#> 180 1 2.1 -#> 181 1 2.1 -#> 182 1 2.1 -#> 183 1 2.1 -#> 184 1 2.1 -#> 185 1 2.1 -#> 186 1 2.1 -#> 187 1 2.1 -#> 188 1 2.1 -#> 189 1 2.1 -#> 190 1 2.1 -#> 191 1 2.1 -#> 192 1 2.1 -#> 193 1 2.1 -#> 194 1 2.1 -#> 195 1 2.1 -#> 196 2 1.0 -#> 197 2 1.0 -#> 198 2 1.0 -#> 199 2 1.0 -#> 200 2 1.0 -#> 201 2 1.0 -#> 202 2 1.0 -#> 203 2 1.0 -#> 204 2 1.0 -#> 205 2 1.0 -#> 206 2 1.0 -#> 207 2 1.0 -#> 208 2 1.0 -#> 209 2 1.0 -#> 210 2 1.0 -#> 211 2 1.0 -#> 212 2 1.0 -#> 213 2 1.0 -#> 214 2 1.0 -#> 215 2 1.0 -#> 216 2 1.0 -#> 217 2 1.0 -#> 218 2 1.0 -#> 219 2 1.0 -#> 220 2 1.0 -#> 221 2 1.0 -#> 222 2 1.0 -#> 223 2 1.0 -#> 224 1 1.1 -#> 225 1 1.1 -#> 226 1 1.1 -#> 227 1 1.1 -#> 228 1 1.1 -#> 229 1 1.1 -#> 230 1 1.1 -#> 231 1 1.1 -#> 232 1 1.1 -#> 233 1 1.1 -#> 234 1 1.1 -#> 235 1 1.1 -#> 236 1 1.1 -#> 237 1 1.1 -#> 238 1 1.1 -#> 239 1 1.1 -#> 240 1 1.1 -#> 241 1 1.1 -#> 242 1 1.1 -#> 243 1 1.1 -#> 244 1 1.1 -#> 245 1 1.1 -#> 246 1 1.1 -#> 247 1 1.1 -#> 248 1 1.1 -#> 249 1 1.1 -#> 250 1 1.1 -#> 251 1 1.1 -#> 252 2 2.2 -#> 253 2 2.2 -#> 254 2 2.2 -#> 255 2 2.2 -#> 256 2 2.2 -#> 257 2 2.2 -#> 258 2 2.2 -#> 259 2 2.2 -#> 260 2 2.2 -#> 261 2 2.2 -#> 262 2 2.2 -#> 263 2 2.2 -#> 264 2 2.2 -#> 265 2 2.2 -#> 266 2 2.2 -#> 267 2 2.2 -#> 268 2 2.2 -#> 269 2 2.2 -#> 270 2 2.2 -#> 271 2 2.2 -#> 272 2 2.2 -#> 273 2 2.2 -#> 274 2 2.2 -#> 275 2 2.2 -#> 276 2 2.2 -#> 277 2 2.2 -#> 278 2 2.2 -#> 279 2 2.2 -#> 280 2 1.4 -#> 281 2 1.4 -#> 282 2 1.4 -#> 283 2 1.4 -#> 284 2 1.4 -#> 285 2 1.4 -#> 286 2 1.4 -#> 287 2 1.4 -#> 288 2 1.4 -#> 289 2 1.4 -#> 290 2 1.4 -#> 291 2 1.4 -#> 292 2 1.4 -#> 293 2 1.4 -#> 294 2 1.4 -#> 295 2 1.4 -#> 296 2 1.4 -#> 297 2 1.4 -#> 298 2 1.4 -#> 299 2 1.4 -#> 300 2 1.4 -#> 301 2 1.4 -#> 302 2 1.4 -#> 303 2 1.4 -#> 304 2 1.4 -#> 305 2 1.4 -#> 306 2 1.4 -#> 307 2 1.4 -#> 308 2 1.7 -#> 309 2 1.7 -#> 310 2 1.7 -#> 311 2 1.7 -#> 312 2 1.7 -#> 313 2 1.7 -#> 314 2 1.7 -#> 315 2 1.7 -#> 316 2 1.7 -#> 317 2 1.7 -#> 318 2 1.7 -#> 319 2 1.7 -#> 320 2 1.7 -#> 321 2 1.7 -#> 322 2 1.7 -#> 323 2 1.7 -#> 324 2 1.7 -#> 325 2 1.7 -#> 326 2 1.7 -#> 327 2 1.7 -#> 328 2 1.7 -#> 329 2 1.7 -#> 330 2 1.7 -#> 331 2 1.7 -#> 332 2 1.7 -#> 333 2 1.7 -#> 334 2 1.7 -#> 335 2 1.7 -#> 336 0 0.6 -#> 337 0 0.6 -#> 338 0 0.6 -#> 339 0 0.6 -#> 340 0 0.6 -#> 341 0 0.6 -#> 342 0 0.6 -#> 343 0 0.6 -#> 344 0 0.6 -#> 345 0 0.6 -#> 346 0 0.6 -#> 347 0 0.6 -#> 348 0 0.6 -#> 349 0 0.6 -#> 350 0 0.6 -#> 351 0 0.6 -#> 352 0 0.6 -#> 353 0 0.6 -#> 354 0 0.6 -#> 355 0 0.6 -#> 356 0 0.6 -#> 357 0 0.6 -#> 358 0 0.6 -#> 359 0 0.6 -#> 360 0 0.6 -#> 361 0 0.6 -#> 362 0 0.6 -#> 363 0 0.6 -#> 364 1 0.9 -#> 365 1 0.9 -#> 366 1 0.9 -#> 367 1 0.9 -#> 368 1 0.9 -#> 369 1 0.9 -#> 370 1 0.9 -#> 371 1 0.9 -#> 372 1 0.9 -#> 373 1 0.9 -#> 374 1 0.9 -#> 375 1 0.9 -#> 376 1 0.9 -#> 377 1 0.9 -#> 378 1 0.9 -#> 379 1 0.9 -#> 380 1 0.9 -#> 381 1 0.9 -#> 382 1 0.9 -#> 383 1 0.9 -#> 384 1 0.9 -#> 385 1 0.9 -#> 386 1 0.9 -#> 387 1 0.9 -#> 388 1 0.9 -#> 389 1 0.9 -#> 390 1 0.9 -#> 391 1 0.9 -#> 392 0 0.4 -#> 393 0 0.4 -#> 394 0 0.4 -#> 395 0 0.4 -#> 396 0 0.4 -#> 397 0 0.4 -#> 398 0 0.4 -#> 399 0 0.4 -#> 400 0 0.4 -#> 401 0 0.4 -#> 402 0 0.4 -#> 403 0 0.4 -#> 404 0 0.4 -#> 405 0 0.4 -#> 406 0 0.4 -#> 407 0 0.4 -#> 408 0 0.4 -#> 409 0 0.4 -#> 410 0 0.4 -#> 411 0 0.4 -#> 412 0 0.4 -#> 413 0 0.4 -#> 414 0 0.4 -#> 415 0 0.4 -#> 416 0 0.4 -#> 417 0 0.4 -#> 418 0 0.4 -#> 419 0 0.4 -#> 420 2 1.3 -#> 421 2 1.3 -#> 422 2 1.3 -#> 423 2 1.3 -#> 424 2 1.3 -#> 425 2 1.3 -#> 426 2 1.3 -#> 427 2 1.3 -#> 428 2 1.3 -#> 429 2 1.3 -#> 430 2 1.3 -#> 431 2 1.3 -#> 432 2 1.3 -#> 433 2 1.3 -#> 434 2 1.3 -#> 435 2 1.3 -#> 436 2 1.3 -#> 437 2 1.3 -#> 438 2 1.3 -#> 439 2 1.3 -#> 440 2 1.3 -#> 441 2 1.3 -#> 442 2 1.3 -#> 443 2 1.3 -#> 444 2 1.3 -#> 445 2 1.3 -#> 446 2 1.3 -#> 447 2 1.3 -#> 448 1 0.4 -#> 449 1 0.4 -#> 450 1 0.4 -#> 451 1 0.4 -#> 452 1 0.4 -#> 453 1 0.4 -#> 454 1 0.4 -#> 455 1 0.4 -#> 456 1 0.4 -#> 457 1 0.4 -#> 458 1 0.4 -#> 459 1 0.4 -#> 460 1 0.4 -#> 461 1 0.4 -#> 462 1 0.4 -#> 463 1 0.4 -#> 464 1 0.4 -#> 465 1 0.4 -#> 466 1 0.4 -#> 467 1 0.4 -#> 468 1 0.4 -#> 469 1 0.4 -#> 470 1 0.4 -#> 471 1 0.4 -#> 472 1 0.4 -#> 473 1 0.4 -#> 474 1 0.4 -#> 475 1 0.4 -#> 476 0 1.9 -#> 477 0 1.9 -#> 478 0 1.9 -#> 479 0 1.9 -#> 480 0 1.9 -#> 481 0 1.9 -#> 482 0 1.9 -#> 483 0 1.9 -#> 484 0 1.9 -#> 485 0 1.9 -#> 486 0 1.9 -#> 487 0 1.9 -#> 488 0 1.9 -#> 489 0 1.9 -#> 490 0 1.9 -#> 491 0 1.9 -#> 492 0 1.9 -#> 493 0 1.9 -#> 494 0 1.9 -#> 495 0 1.9 -#> 496 0 1.9 -#> 497 0 1.9 -#> 498 0 1.9 -#> 499 0 1.9 -#> 500 0 1.9 -#> 501 0 1.9 -#> 502 0 1.9 -#> 503 0 1.9 -#> 504 1 1.9 -#> 505 1 1.9 -#> 506 1 1.9 -#> 507 1 1.9 -#> 508 1 1.9 -#> 509 1 1.9 -#> 510 1 1.9 -#> 511 1 1.9 -#> 512 1 1.9 -#> 513 1 1.9 -#> 514 1 1.9 -#> 515 1 1.9 -#> 516 1 1.9 -#> 517 1 1.9 -#> 518 1 1.9 -#> 519 1 1.9 -#> 520 1 1.9 -#> 521 1 1.9 -#> 522 1 1.9 -#> 523 1 1.9 -#> 524 1 1.9 -#> 525 1 1.9 -#> 526 1 1.9 -#> 527 1 1.9 -#> 528 1 1.9 -#> 529 1 1.9 -#> 530 1 1.9 -#> 531 1 1.9 -#> 532 2 0.6 -#> 533 2 0.6 -#> 534 2 0.6 -#> 535 2 0.6 -#> 536 2 0.6 -#> 537 2 0.6 -#> 538 2 0.6 -#> 539 2 0.6 -#> 540 2 0.6 -#> 541 2 0.6 -#> 542 2 0.6 -#> 543 2 0.6 -#> 544 2 0.6 -#> 545 2 0.6 -#> 546 2 0.6 -#> 547 2 0.6 -#> 548 2 0.6 -#> 549 2 0.6 -#> 550 2 0.6 -#> 551 2 0.6 -#> 552 2 0.6 -#> 553 2 0.6 -#> 554 2 0.6 -#> 555 2 0.6 -#> 556 2 0.6 -#> 557 2 0.6 -#> 558 2 0.6 -#> 559 2 0.6 -#> 560 0 1.2 -#> 561 0 1.2 -#> 562 0 1.2 -#> 563 0 1.2 -#> 564 0 1.2 -#> 565 0 1.2 -#> 566 0 1.2 -#> 567 0 1.2 -#> 568 0 1.2 -#> 569 0 1.2 -#> 570 0 1.2 -#> 571 0 1.2 -#> 572 0 1.2 -#> 573 0 1.2 -#> 574 0 1.2 -#> 575 0 1.2 -#> 576 0 1.2 -#> 577 0 1.2 -#> 578 0 1.2 -#> 579 0 1.2 -#> 580 0 1.2 -#> 581 0 1.2 -#> 582 0 1.2 -#> 583 0 1.2 -#> 584 0 1.2 -#> 585 0 1.2 -#> 586 0 1.2 -#> 587 0 1.2 -#> 588 0 1.1 -#> 589 0 1.1 -#> 590 0 1.1 -#> 591 0 1.1 -#> 592 0 1.1 -#> 593 0 1.1 -#> 594 0 1.1 -#> 595 0 1.1 -#> 596 0 1.1 -#> 597 0 1.1 -#> 598 0 1.1 -#> 599 0 1.1 -#> 600 0 1.1 -#> 601 0 1.1 -#> 602 0 1.1 -#> 603 0 1.1 -#> 604 0 1.1 -#> 605 0 1.1 -#> 606 0 1.1 -#> 607 0 1.1 -#> 608 0 1.1 -#> 609 0 1.1 -#> 610 0 1.1 -#> 611 0 1.1 -#> 612 0 1.1 -#> 613 0 1.1 -#> 614 0 1.1 -#> 615 0 1.1 -#> 616 2 1.0 -#> 617 2 1.0 -#> 618 2 1.0 -#> 619 2 1.0 -#> 620 2 1.0 -#> 621 2 1.0 -#> 622 2 1.0 -#> 623 2 1.0 -#> 624 2 1.0 -#> 625 2 1.0 -#> 626 2 1.0 -#> 627 2 1.0 -#> 628 2 1.0 -#> 629 2 1.0 -#> 630 2 1.0 -#> 631 2 1.0 -#> 632 2 1.0 -#> 633 2 1.0 -#> 634 2 1.0 -#> 635 2 1.0 -#> 636 2 1.0 -#> 637 2 1.0 -#> 638 2 1.0 -#> 639 2 1.0 -#> 640 2 1.0 -#> 641 2 1.0 -#> 642 2 1.0 -#> 643 2 1.0 -#> 644 2 0.5 -#> 645 2 0.5 -#> 646 2 0.5 -#> 647 2 0.5 -#> 648 2 0.5 -#> 649 2 0.5 -#> 650 2 0.5 -#> 651 2 0.5 -#> 652 2 0.5 -#> 653 2 0.5 -#> 654 2 0.5 -#> 655 2 0.5 -#> 656 2 0.5 -#> 657 2 0.5 -#> 658 2 0.5 -#> 659 2 0.5 -#> 660 2 0.5 -#> 661 2 0.5 -#> 662 2 0.5 -#> 663 2 0.5 -#> 664 2 0.5 -#> 665 2 0.5 -#> 666 2 0.5 -#> 667 2 0.5 -#> 668 2 0.5 -#> 669 2 0.5 -#> 670 2 0.5 -#> 671 2 0.5 -#> 672 4 2.5 -#> 673 4 2.5 -#> 674 4 2.5 -#> 675 4 2.5 -#> 676 4 2.5 -#> 677 4 2.5 -#> 678 4 2.5 -#> 679 4 2.5 -#> 680 4 2.5 -#> 681 4 2.5 -#> 682 4 2.5 -#> 683 4 2.5 -#> 684 4 2.5 -#> 685 4 2.5 -#> 686 4 2.5 -#> 687 4 2.5 -#> 688 4 2.5 -#> 689 4 2.5 -#> 690 4 2.5 -#> 691 4 2.5 -#> 692 4 2.5 -#> 693 4 2.5 -#> 694 4 2.5 -#> 695 4 2.5 -#> 696 4 2.5 -#> 697 4 2.5 -#> 698 4 2.5 -#> 699 4 2.5 -#> 700 2 1.6 -#> 701 2 1.6 -#> 702 2 1.6 -#> 703 2 1.6 -#> 704 2 1.6 -#> 705 2 1.6 -#> 706 2 1.6 -#> 707 2 1.6 -#> 708 2 1.6 -#> 709 2 1.6 -#> 710 2 1.6 -#> 711 2 1.6 -#> 712 2 1.6 -#> 713 2 1.6 -#> 714 2 1.6 -#> 715 2 1.6 -#> 716 2 1.6 -#> 717 2 1.6 -#> 718 2 1.6 -#> 719 2 1.6 -#> 720 2 1.6 -#> 721 2 1.6 -#> 722 2 1.6 -#> 723 2 1.6 -#> 724 2 1.6 -#> 725 2 1.6 -#> 726 2 1.6 -#> 727 2 1.6 -#> 728 2 1.4 -#> 729 2 1.4 -#> 730 2 1.4 -#> 731 2 1.4 -#> 732 2 1.4 -#> 733 2 1.4 -#> 734 2 1.4 -#> 735 2 1.4 -#> 736 2 1.4 -#> 737 2 1.4 -#> 738 2 1.4 -#> 739 2 1.4 -#> 740 2 1.4 -#> 741 2 1.4 -#> 742 2 1.4 -#> 743 2 1.4 -#> 744 2 1.4 -#> 745 2 1.4 -#> 746 2 1.4 -#> 747 2 1.4 -#> 748 2 1.4 -#> 749 2 1.4 -#> 750 2 1.4 -#> 751 2 1.4 -#> 752 2 1.4 -#> 753 2 1.4 -#> 754 2 1.4 -#> 755 2 1.4 -#> 756 8 5.3 -#> 757 8 5.3 -#> 758 8 5.3 -#> 759 8 5.3 -#> 760 8 5.3 -#> 761 8 5.3 -#> 762 8 5.3 -#> 763 8 5.3 -#> 764 8 5.3 -#> 765 8 5.3 -#> 766 8 5.3 -#> 767 8 5.3 -#> 768 8 5.3 -#> 769 8 5.3 -#> 770 8 5.3 -#> 771 8 5.3 -#> 772 8 5.3 -#> 773 8 5.3 -#> 774 8 5.3 -#> 775 8 5.3 -#> 776 8 5.3 -#> 777 8 5.3 -#> 778 8 5.3 -#> 779 8 5.3 -#> 780 8 5.3 -#> 781 8 5.3 -#> 782 8 5.3 -#> 783 8 5.3 -#> 784 1 0.9 -#> 785 1 0.9 -#> 786 1 0.9 -#> 787 1 0.9 -#> 788 1 0.9 -#> 789 1 0.9 -#> 790 1 0.9 -#> 791 1 0.9 -#> 792 1 0.9 -#> 793 1 0.9 -#> 794 1 0.9 -#> 795 1 0.9 -#> 796 1 0.9 -#> 797 1 0.9 -#> 798 1 0.9 -#> 799 1 0.9 -#> 800 1 0.9 -#> 801 1 0.9 -#> 802 1 0.9 -#> 803 1 0.9 -#> 804 1 0.9 -#> 805 1 0.9 -#> 806 1 0.9 -#> 807 1 0.9 -#> 808 1 0.9 -#> 809 1 0.9 -#> 810 1 0.9 -#> 811 1 0.9 -#> 812 0 1.7 -#> 813 0 1.7 -#> 814 0 1.7 -#> 815 0 1.7 -#> 816 0 1.7 -#> 817 0 1.7 -#> 818 0 1.7 -#> 819 0 1.7 -#> 820 0 1.7 -#> 821 0 1.7 -#> 822 0 1.7 -#> 823 0 1.7 -#> 824 0 1.7 -#> 825 0 1.7 -#> 826 0 1.7 -#> 827 0 1.7 -#> 828 0 1.7 -#> 829 0 1.7 -#> 830 0 1.7 -#> 831 0 1.7 -#> 832 0 1.7 -#> 833 0 1.7 -#> 834 0 1.7 -#> 835 0 1.7 -#> 836 0 1.7 -#> 837 0 1.7 -#> 838 0 1.7 -#> 839 0 1.7 -#> 840 1 2.3 -#> 841 1 2.3 -#> 842 1 2.3 -#> 843 1 2.3 -#> 844 1 2.3 -#> 845 1 2.3 -#> 846 1 2.3 -#> 847 1 2.3 -#> 848 1 2.3 -#> 849 1 2.3 -#> 850 1 2.3 -#> 851 1 2.3 -#> 852 1 2.3 -#> 853 1 2.3 -#> 854 1 2.3 -#> 855 1 2.3 -#> 856 1 2.3 -#> 857 1 2.3 -#> 858 1 2.3 -#> 859 1 2.3 -#> 860 1 2.3 -#> 861 1 2.3 -#> 862 1 2.3 -#> 863 1 2.3 -#> 864 1 2.3 -#> 865 1 2.3 -#> 866 1 2.3 -#> 867 1 1.4 -#> 868 1 1.4 -#> 869 1 1.4 -#> 870 1 1.4 -#> 871 1 1.4 -#> 872 1 1.4 -#> 873 1 1.4 -#> 874 1 1.4 -#> 875 1 1.4 -#> 876 1 1.4 -#> 877 1 1.4 -#> 878 1 1.4 -#> 879 1 1.4 -#> 880 1 1.4 -#> 881 1 1.4 -#> 882 1 1.4 -#> 883 1 1.4 -#> 884 1 1.4 -#> 885 1 1.4 -#> 886 1 1.4 -#> 887 1 1.4 -#> 888 1 1.4 -#> 889 1 1.4 -#> 890 1 1.4 -#> 891 1 1.4 -#> 892 1 1.4 -#> 893 1 1.4 -#> 894 1 1.4 -#> 895 0 1.0 -#> 896 0 1.0 -#> 897 0 1.0 -#> 898 0 1.0 -#> 899 0 1.0 -#> 900 0 1.0 -#> 901 0 1.0 -#> 902 0 1.0 -#> 903 0 1.0 -#> 904 0 1.0 -#> 905 0 1.0 -#> 906 0 1.0 -#> 907 0 1.0 -#> 908 0 1.0 -#> 909 0 1.0 -#> 910 0 1.0 -#> 911 0 1.0 -#> 912 0 1.0 -#> 913 0 1.0 -#> 914 0 1.0 -#> 915 0 1.0 -#> 916 0 1.0 -#> 917 0 1.0 -#> 918 0 1.0 -#> 919 0 1.0 -#> 920 0 1.0 -#> 921 0 1.0 -#> 922 0 1.0 -#> 923 1 1.4 -#> 924 1 1.4 -#> 925 1 1.4 -#> 926 1 1.4 -#> 927 1 1.4 -#> 928 1 1.4 -#> 929 1 1.4 -#> 930 1 1.4 -#> 931 1 1.4 -#> 932 1 1.4 -#> 933 1 1.4 -#> 934 1 1.4 -#> 935 1 1.4 -#> 936 1 1.4 -#> 937 1 1.4 -#> 938 1 1.4 -#> 939 1 1.4 -#> 940 1 1.4 -#> 941 1 1.4 -#> 942 1 1.4 -#> 943 1 1.4 -#> 944 1 1.4 -#> 945 1 1.4 -#> 946 1 1.4 -#> 947 1 1.4 -#> 948 1 1.4 -#> 949 1 1.4 -#> 950 1 1.4 -#> 951 0 1.4 -#> 952 0 1.4 -#> 953 0 1.4 -#> 954 0 1.4 -#> 955 0 1.4 -#> 956 0 1.4 -#> 957 0 1.4 -#> 958 0 1.4 -#> 959 0 1.4 -#> 960 0 1.4 -#> 961 0 1.4 -#> 962 0 1.4 -#> 963 0 1.4 -#> 964 0 1.4 -#> 965 0 1.4 -#> 966 0 1.4 -#> 967 0 1.4 -#> 968 0 1.4 -#> 969 0 1.4 -#> 970 0 1.4 -#> 971 0 1.4 -#> 972 0 1.4 -#> 973 0 1.4 -#> 974 0 1.4 -#> 975 0 1.4 -#> 976 0 1.4 -#> 977 0 1.4 -#> 978 0 1.4 -#> 979 1 1.6 -#> 980 1 1.6 -#> 981 1 1.6 -#> 982 1 1.6 -#> 983 1 1.6 -#> 984 1 1.6 -#> 985 1 1.6 -#> 986 1 1.6 -#> 987 1 1.6 -#> 988 1 1.6 -#> 989 1 1.6 -#> 990 1 1.6 -#> 991 1 1.6 -#> 992 1 1.6 -#> 993 1 1.6 -#> 994 1 1.6 -#> 995 1 1.6 -#> 996 1 1.6 -#> 997 1 1.6 -#> 998 1 1.6 -#> 999 1 1.6 -#> 1000 1 1.6 -#> 1001 1 1.6 -#> 1002 1 1.6 -#> 1003 1 1.6 -#> 1004 1 1.6 -#> 1005 1 1.6 -#> 1006 1 1.6 -#> 1007 0 1.1 -#> 1008 0 1.1 -#> 1009 0 1.1 -#> 1010 0 1.1 -#> 1011 0 1.1 -#> 1012 0 1.1 -#> 1013 0 1.1 -#> 1014 0 1.1 -#> 1015 0 1.1 -#> 1016 0 1.1 -#> 1017 0 1.1 -#> 1018 0 1.1 -#> 1019 0 1.1 -#> 1020 0 1.1 -#> 1021 0 1.1 -#> 1022 0 1.1 -#> 1023 0 1.1 -#> 1024 0 1.1 -#> 1025 0 1.1 -#> 1026 0 1.1 -#> 1027 0 1.1 -#> 1028 0 1.1 -#> 1029 0 1.1 -#> 1030 0 1.1 -#> 1031 0 1.1 -#> 1032 0 1.1 -#> 1033 0 1.1 -#> 1034 0 1.1 -#> 1035 0 1.2 -#> 1036 0 1.2 -#> 1037 0 1.2 -#> 1038 0 1.2 -#> 1039 0 1.2 -#> 1040 0 1.2 -#> 1041 0 1.2 -#> 1042 0 1.2 -#> 1043 0 1.2 -#> 1044 0 1.2 -#> 1045 0 1.2 -#> 1046 0 1.2 -#> 1047 0 1.2 -#> 1048 0 1.2 -#> 1049 0 1.2 -#> 1050 0 1.2 -#> 1051 0 1.2 -#> 1052 0 1.2 -#> 1053 0 1.2 -#> 1054 0 1.2 -#> 1055 0 1.2 -#> 1056 0 1.2 -#> 1057 0 1.2 -#> 1058 0 1.2 -#> 1059 0 1.2 -#> 1060 0 1.2 -#> 1061 0 1.2 -#> 1062 0 1.2 -#> 1063 3 1.7 -#> 1064 3 1.7 -#> 1065 3 1.7 -#> 1066 3 1.7 -#> 1067 3 1.7 -#> 1068 3 1.7 -#> 1069 3 1.7 -#> 1070 3 1.7 -#> 1071 3 1.7 -#> 1072 3 1.7 -#> 1073 3 1.7 -#> 1074 3 1.7 -#> 1075 3 1.7 -#> 1076 3 1.7 -#> 1077 3 1.7 -#> 1078 3 1.7 -#> 1079 3 1.7 -#> 1080 3 1.7 -#> 1081 3 1.7 -#> 1082 3 1.7 -#> 1083 3 1.7 -#> 1084 3 1.7 -#> 1085 3 1.7 -#> 1086 3 1.7 -#> 1087 3 1.7 -#> 1088 3 1.7 -#> 1089 3 1.7 -#> 1090 3 1.7 -#> 1091 0 0.6 -#> 1092 0 0.6 -#> 1093 0 0.6 -#> 1094 0 0.6 -#> 1095 0 0.6 -#> 1096 0 0.6 -#> 1097 0 0.6 -#> 1098 0 0.6 -#> 1099 0 0.6 -#> 1100 0 0.6 -#> 1101 0 0.6 -#> 1102 0 0.6 -#> 1103 0 0.6 -#> 1104 0 0.6 -#> 1105 0 0.6 -#> 1106 0 0.6 -#> 1107 0 0.6 -#> 1108 0 0.6 -#> 1109 0 0.6 -#> 1110 0 0.6 -#> 1111 0 0.6 -#> 1112 0 0.6 -#> 1113 0 0.6 -#> 1114 0 0.6 -#> 1115 0 0.6 -#> 1116 0 0.6 -#> 1117 0 0.6 -#> 1118 0 0.6 -#> 1119 1 1.5 -#> 1120 1 1.5 -#> 1121 1 1.5 -#> 1122 1 1.5 -#> 1123 1 1.5 -#> 1124 1 1.5 -#> 1125 1 1.5 -#> 1126 1 1.5 -#> 1127 1 1.5 -#> 1128 1 1.5 -#> 1129 1 1.5 -#> 1130 1 1.5 -#> 1131 1 1.5 -#> 1132 1 1.5 -#> 1133 1 1.5 -#> 1134 1 1.5 -#> 1135 1 1.5 -#> 1136 1 1.5 -#> 1137 1 1.5 -#> 1138 1 1.5 -#> 1139 1 1.5 -#> 1140 1 1.5 -#> 1141 1 1.5 -#> 1142 1 1.5 -#> 1143 1 1.5 -#> 1144 1 1.5 -#> 1145 1 1.5 -#> 1146 1 1.5 -#> 1147 1 1.3 -#> 1148 1 1.3 -#> 1149 1 1.3 -#> 1150 1 1.3 -#> 1151 1 1.3 -#> 1152 1 1.3 -#> 1153 1 1.3 -#> 1154 1 1.3 -#> 1155 1 1.3 -#> 1156 1 1.3 -#> 1157 1 1.3 -#> 1158 1 1.3 -#> 1159 1 1.3 -#> 1160 1 1.3 -#> 1161 1 1.3 -#> 1162 1 1.3 -#> 1163 1 1.3 -#> 1164 1 1.3 -#> 1165 1 1.3 -#> 1166 1 1.3 -#> 1167 1 1.3 -#> 1168 1 1.3 -#> 1169 1 1.3 -#> 1170 1 1.3 -#> 1171 1 1.3 -#> 1172 1 1.3 -#> 1173 1 1.3 -#> 1174 1 1.3 -#> 1175 3 1.9 -#> 1176 3 1.9 -#> 1177 3 1.9 -#> 1178 3 1.9 -#> 1179 3 1.9 -#> 1180 3 1.9 -#> 1181 3 1.9 -#> 1182 3 1.9 -#> 1183 3 1.9 -#> 1184 3 1.9 -#> 1185 3 1.9 -#> 1186 3 1.9 -#> 1187 3 1.9 -#> 1188 3 1.9 -#> 1189 3 1.9 -#> 1190 3 1.9 -#> 1191 3 1.9 -#> 1192 3 1.9 -#> 1193 3 1.9 -#> 1194 3 1.9 -#> 1195 3 1.9 -#> 1196 3 1.9 -#> 1197 3 1.9 -#> 1198 3 1.9 -#> 1199 3 1.9 -#> 1200 3 1.9 -#> 1201 3 1.9 -#> 1202 3 1.9 -#> 1203 0 0.6 -#> 1204 0 0.6 -#> 1205 0 0.6 -#> 1206 0 0.6 -#> 1207 0 0.6 -#> 1208 0 0.6 -#> 1209 0 0.6 -#> 1210 0 0.6 -#> 1211 0 0.6 -#> 1212 0 0.6 -#> 1213 0 0.6 -#> 1214 0 0.6 -#> 1215 0 0.6 -#> 1216 0 0.6 -#> 1217 0 0.6 -#> 1218 0 0.6 -#> 1219 0 0.6 -#> 1220 0 0.6 -#> 1221 0 0.6 -#> 1222 0 0.6 -#> 1223 0 0.6 -#> 1224 0 0.6 -#> 1225 0 0.6 -#> 1226 0 0.6 -#> 1227 0 0.6 -#> 1228 0 0.6 -#> 1229 0 0.6 -#> 1230 0 0.6 -#> 1231 1 1.0 -#> 1232 1 1.0 -#> 1233 1 1.0 -#> 1234 1 1.0 -#> 1235 1 1.0 -#> 1236 1 1.0 -#> 1237 1 1.0 -#> 1238 1 1.0 -#> 1239 1 1.0 -#> 1240 1 1.0 -#> 1241 1 1.0 -#> 1242 1 1.0 -#> 1243 1 1.0 -#> 1244 1 1.0 -#> 1245 1 1.0 -#> 1246 1 1.0 -#> 1247 1 1.0 -#> 1248 1 1.0 -#> 1249 1 1.0 -#> 1250 1 1.0 -#> 1251 1 1.0 -#> 1252 1 1.0 -#> 1253 1 1.0 -#> 1254 1 1.0 -#> 1255 1 1.0 -#> 1256 1 1.0 -#> 1257 1 1.0 -#> 1258 1 1.0 -#> 1259 2 2.3 -#> 1260 2 2.3 -#> 1261 2 2.3 -#> 1262 2 2.3 -#> 1263 2 2.3 -#> 1264 2 2.3 -#> 1265 2 2.3 -#> 1266 2 2.3 -#> 1267 2 2.3 -#> 1268 2 2.3 -#> 1269 2 2.3 -#> 1270 2 2.3 -#> 1271 2 2.3 -#> 1272 2 2.3 -#> 1273 2 2.3 -#> 1274 2 2.3 -#> 1275 2 2.3 -#> 1276 2 2.3 -#> 1277 2 2.3 -#> 1278 2 2.3 -#> 1279 2 2.3 -#> 1280 2 2.3 -#> 1281 2 2.3 -#> 1282 2 2.3 -#> 1283 2 2.3 -#> 1284 2 2.3 -#> 1285 2 2.3 -#> 1286 2 2.3 -#> 1287 0 0.7 -#> 1288 0 0.7 -#> 1289 0 0.7 -#> 1290 0 0.7 -#> 1291 0 0.7 -#> 1292 0 0.7 -#> 1293 0 0.7 -#> 1294 0 0.7 -#> 1295 0 0.7 -#> 1296 0 0.7 -#> 1297 0 0.7 -#> 1298 0 0.7 -#> 1299 0 0.7 -#> 1300 0 0.7 -#> 1301 0 0.7 -#> 1302 0 0.7 -#> 1303 0 0.7 -#> 1304 0 0.7 -#> 1305 0 0.7 -#> 1306 0 0.7 -#> 1307 0 0.7 -#> 1308 0 0.7 -#> 1309 0 0.7 -#> 1310 0 0.7 -#> 1311 0 0.7 -#> 1312 0 0.7 -#> 1313 0 0.7 -#> 1314 0 0.7 -#> 1315 2 1.1 -#> 1316 2 1.1 -#> 1317 2 1.1 -#> 1318 2 1.1 -#> 1319 2 1.1 -#> 1320 2 1.1 -#> 1321 2 1.1 -#> 1322 2 1.1 -#> 1323 2 1.1 -#> 1324 2 1.1 -#> 1325 2 1.1 -#> 1326 2 1.1 -#> 1327 2 1.1 -#> 1328 2 1.1 -#> 1329 2 1.1 -#> 1330 2 1.1 -#> 1331 2 1.1 -#> 1332 2 1.1 -#> 1333 2 1.1 -#> 1334 2 1.1 -#> 1335 2 1.1 -#> 1336 2 1.1 -#> 1337 2 1.1 -#> 1338 2 1.1 -#> 1339 2 1.1 -#> 1340 2 1.1 -#> 1341 2 1.1 -#> 1342 2 1.1 -#> 1343 2 1.4 -#> 1344 2 1.4 -#> 1345 2 1.4 -#> 1346 2 1.4 -#> 1347 2 1.4 -#> 1348 2 1.4 -#> 1349 2 1.4 -#> 1350 2 1.4 -#> 1351 2 1.4 -#> 1352 2 1.4 -#> 1353 2 1.4 -#> 1354 2 1.4 -#> 1355 2 1.4 -#> 1356 2 1.4 -#> 1357 2 1.4 -#> 1358 2 1.4 -#> 1359 2 1.4 -#> 1360 2 1.4 -#> 1361 2 1.4 -#> 1362 2 1.4 -#> 1363 2 1.4 -#> 1364 2 1.4 -#> 1365 2 1.4 -#> 1366 2 1.4 -#> 1367 2 1.4 -#> 1368 2 1.4 -#> 1369 2 1.4 -#> 1370 2 1.4 -#> 1371 1 0.9 -#> 1372 1 0.9 -#> 1373 1 0.9 -#> 1374 1 0.9 -#> 1375 1 0.9 -#> 1376 1 0.9 -#> 1377 1 0.9 -#> 1378 1 0.9 -#> 1379 1 0.9 -#> 1380 1 0.9 -#> 1381 1 0.9 -#> 1382 1 0.9 -#> 1383 1 0.9 -#> 1384 1 0.9 -#> 1385 1 0.9 -#> 1386 1 0.9 -#> 1387 1 0.9 -#> 1388 1 0.9 -#> 1389 1 0.9 -#> 1390 1 0.9 -#> 1391 1 0.9 -#> 1392 1 0.9 -#> 1393 1 0.9 -#> 1394 1 0.9 -#> 1395 1 0.9 -#> 1396 1 0.9 -#> 1397 1 0.9 -#> 1398 1 0.9 -#> 1399 2 1.6 -#> 1400 2 1.6 -#> 1401 2 1.6 -#> 1402 2 1.6 -#> 1403 2 1.6 -#> 1404 2 1.6 -#> 1405 2 1.6 -#> 1406 2 1.6 -#> 1407 2 1.6 -#> 1408 2 1.6 -#> 1409 2 1.6 -#> 1410 2 1.6 -#> 1411 2 1.6 -#> 1412 2 1.6 -#> 1413 2 1.6 -#> 1414 2 1.6 -#> 1415 2 1.6 -#> 1416 2 1.6 -#> 1417 2 1.6 -#> 1418 2 1.6 -#> 1419 2 1.6 -#> 1420 2 1.6 -#> 1421 2 1.6 -#> 1422 2 1.6 -#> 1423 2 1.6 -#> 1424 2 1.6 -#> 1425 2 1.6 -#> 1426 2 1.6 -#> 1427 3 0.9 -#> 1428 3 0.9 -#> 1429 3 0.9 -#> 1430 3 0.9 -#> 1431 3 0.9 -#> 1432 3 0.9 -#> 1433 3 0.9 -#> 1434 3 0.9 -#> 1435 3 0.9 -#> 1436 3 0.9 -#> 1437 3 0.9 -#> 1438 3 0.9 -#> 1439 3 0.9 -#> 1440 3 0.9 -#> 1441 3 0.9 -#> 1442 3 0.9 -#> 1443 3 0.9 -#> 1444 3 0.9 -#> 1445 3 0.9 -#> 1446 3 0.9 -#> 1447 3 0.9 -#> 1448 3 0.9 -#> 1449 3 0.9 -#> 1450 3 0.9 -#> 1451 3 0.9 -#> 1452 3 0.9 -#> 1453 3 0.9 -#> 1454 3 0.9 -#> 1455 2 1.1 -#> 1456 2 1.1 -#> 1457 2 1.1 -#> 1458 2 1.1 -#> 1459 2 1.1 -#> 1460 2 1.1 -#> 1461 2 1.1 -#> 1462 2 1.1 -#> 1463 2 1.1 -#> 1464 2 1.1 -#> 1465 2 1.1 -#> 1466 2 1.1 -#> 1467 2 1.1 -#> 1468 2 1.1 -#> 1469 2 1.1 -#> 1470 2 1.1 -#> 1471 2 1.1 -#> 1472 2 1.1 -#> 1473 2 1.1 -#> 1474 2 1.1 -#> 1475 2 1.1 -#> 1476 2 1.1 -#> 1477 2 1.1 -#> 1478 2 1.1 -#> 1479 2 1.1 -#> 1480 2 1.1 -#> 1481 2 1.1 -#> 1482 2 1.1 -#> 1483 0 0.8 -#> 1484 0 0.8 -#> 1485 0 0.8 -#> 1486 0 0.8 -#> 1487 0 0.8 -#> 1488 0 0.8 -#> 1489 0 0.8 -#> 1490 0 0.8 -#> 1491 0 0.8 -#> 1492 0 0.8 -#> 1493 0 0.8 -#> 1494 0 0.8 -#> 1495 0 0.8 -#> 1496 0 0.8 -#> 1497 0 0.8 -#> 1498 0 0.8 -#> 1499 0 0.8 -#> 1500 0 0.8 -#> 1501 0 0.8 -#> 1502 0 0.8 -#> 1503 0 0.8 -#> 1504 0 0.8 -#> 1505 0 0.8 -#> 1506 0 0.8 -#> 1507 0 0.8 -#> 1508 0 0.8 -#> 1509 0 0.8 -#> 1510 0 0.8 -#> 1511 3 2.4 -#> 1512 3 2.4 -#> 1513 3 2.4 -#> 1514 3 2.4 -#> 1515 3 2.4 -#> 1516 3 2.4 -#> 1517 3 2.4 -#> 1518 3 2.4 -#> 1519 3 2.4 -#> 1520 3 2.4 -#> 1521 3 2.4 -#> 1522 3 2.4 -#> 1523 3 2.4 -#> 1524 3 2.4 -#> 1525 3 2.4 -#> 1526 3 2.4 -#> 1527 3 2.4 -#> 1528 3 2.4 -#> 1529 3 2.4 -#> 1530 3 2.4 -#> 1531 3 2.4 -#> 1532 3 2.4 -#> 1533 3 2.4 -#> 1534 3 2.4 -#> 1535 3 2.4 -#> 1536 3 2.4 -#> 1537 3 2.4 -#> 1538 3 2.4 -#> 1539 1 1.1 -#> 1540 1 1.1 -#> 1541 1 1.1 -#> 1542 1 1.1 -#> 1543 1 1.1 -#> 1544 1 1.1 -#> 1545 1 1.1 -#> 1546 1 1.1 -#> 1547 1 1.1 -#> 1548 1 1.1 -#> 1549 1 1.1 -#> 1550 1 1.1 -#> 1551 1 1.1 -#> 1552 1 1.1 -#> 1553 1 1.1 -#> 1554 1 1.1 -#> 1555 1 1.1 -#> 1556 1 1.1 -#> 1557 1 1.1 -#> 1558 1 1.1 -#> 1559 1 1.1 -#> 1560 1 1.1 -#> 1561 1 1.1 -#> 1562 1 1.1 -#> 1563 1 1.1 -#> 1564 1 1.1 -#> 1565 1 1.1 -#> 1566 1 1.1 -#> 1567 1 1.7 -#> 1568 1 1.7 -#> 1569 1 1.7 -#> 1570 1 1.7 -#> 1571 1 1.7 -#> 1572 1 1.7 -#> 1573 1 1.7 -#> 1574 1 1.7 -#> 1575 1 1.7 -#> 1576 1 1.7 -#> 1577 1 1.7 -#> 1578 1 1.7 -#> 1579 1 1.7 -#> 1580 1 1.7 -#> 1581 1 1.7 -#> 1582 1 1.7 -#> 1583 1 1.7 -#> 1584 1 1.7 -#> 1585 1 1.7 -#> 1586 1 1.7 -#> 1587 1 1.7 -#> 1588 1 1.7 -#> 1589 1 1.7 -#> 1590 1 1.7 -#> 1591 1 1.7 -#> 1592 1 1.7 -#> 1593 1 1.7 -#> 1594 1 1.7 -#> 1595 2 1.0 -#> 1596 2 1.0 -#> 1597 2 1.0 -#> 1598 2 1.0 -#> 1599 2 1.0 -#> 1600 2 1.0 -#> 1601 2 1.0 -#> 1602 2 1.0 -#> 1603 2 1.0 -#> 1604 2 1.0 -#> 1605 2 1.0 -#> 1606 2 1.0 -#> 1607 2 1.0 -#> 1608 2 1.0 -#> 1609 2 1.0 -#> 1610 2 1.0 -#> 1611 2 1.0 -#> 1612 2 1.0 -#> 1613 2 1.0 -#> 1614 2 1.0 -#> 1615 2 1.0 -#> 1616 2 1.0 -#> 1617 2 1.0 -#> 1618 2 1.0 -#> 1619 2 1.0 -#> 1620 2 1.0 -#> 1621 2 1.0 -#> 1622 2 1.0 -#> 1623 0 0.8 -#> 1624 0 0.8 -#> 1625 0 0.8 -#> 1626 0 0.8 -#> 1627 0 0.8 -#> 1628 0 0.8 -#> 1629 0 0.8 -#> 1630 0 0.8 -#> 1631 0 0.8 -#> 1632 0 0.8 -#> 1633 0 0.8 -#> 1634 0 0.8 -#> 1635 0 0.8 -#> 1636 0 0.8 -#> 1637 0 0.8 -#> 1638 0 0.8 -#> 1639 0 0.8 -#> 1640 0 0.8 -#> 1641 0 0.8 -#> 1642 0 0.8 -#> 1643 0 0.8 -#> 1644 0 0.8 -#> 1645 0 0.8 -#> 1646 0 0.8 -#> 1647 0 0.8 -#> 1648 0 0.8 -#> 1649 0 0.8 -#> 1650 0 0.8 -#> 1651 2 1.3 -#> 1652 2 1.3 -#> 1653 2 1.3 -#> 1654 2 1.3 -#> 1655 2 1.3 -#> 1656 2 1.3 -#> 1657 2 1.3 -#> 1658 2 1.3 -#> 1659 2 1.3 -#> 1660 2 1.3 -#> 1661 2 1.3 -#> 1662 2 1.3 -#> 1663 2 1.3 -#> 1664 2 1.3 -#> 1665 2 1.3 -#> 1666 2 1.3 -#> 1667 2 1.3 -#> 1668 2 1.3 -#> 1669 2 1.3 -#> 1670 2 1.3 -#> 1671 2 1.3 -#> 1672 2 1.3 -#> 1673 2 1.3 -#> 1674 2 1.3 -#> 1675 2 1.3 -#> 1676 2 1.3 -#> 1677 2 1.3 -#> 1678 2 1.3 -#> 1679 0 1.3 -#> 1680 0 1.3 -#> 1681 0 1.3 -#> 1682 0 1.3 -#> 1683 0 1.3 -#> 1684 0 1.3 -#> 1685 0 1.3 -#> 1686 0 1.3 -#> 1687 0 1.3 -#> 1688 0 1.3 -#> 1689 0 1.3 -#> 1690 0 1.3 -#> 1691 0 1.3 -#> 1692 0 1.3 -#> 1693 0 1.3 -#> 1694 0 1.3 -#> 1695 0 1.3 -#> 1696 0 1.3 -#> 1697 0 1.3 -#> 1698 0 1.3 -#> 1699 0 1.3 -#> 1700 0 1.3 -#> 1701 0 1.3 -#> 1702 0 1.3 -#> 1703 0 1.3 -#> 1704 0 1.3 -#> 1705 0 1.3 -#> 1706 0 1.3 -#> 1707 1 3.2 -#> 1708 1 3.2 -#> 1709 1 3.2 -#> 1710 1 3.2 -#> 1711 1 3.2 -#> 1712 1 3.2 -#> 1713 1 3.2 -#> 1714 1 3.2 -#> 1715 1 3.2 -#> 1716 1 3.2 -#> 1717 1 3.2 -#> 1718 1 3.2 -#> 1719 1 3.2 -#> 1720 1 3.2 -#> 1721 1 3.2 -#> 1722 1 3.2 -#> 1723 1 3.2 -#> 1724 1 3.2 -#> 1725 1 3.2 -#> 1726 1 3.2 -#> 1727 1 3.2 -#> 1728 1 3.2 -#> 1729 1 3.2 -#> 1730 1 3.2 -#> 1731 1 3.2 -#> 1732 1 3.2 -#> 1733 1 3.2 -#> 1734 1 3.2 -#> 1735 1 0.8 -#> 1736 1 0.8 -#> 1737 1 0.8 -#> 1738 1 0.8 -#> 1739 1 0.8 -#> 1740 1 0.8 -#> 1741 1 0.8 -#> 1742 1 0.8 -#> 1743 1 0.8 -#> 1744 1 0.8 -#> 1745 1 0.8 -#> 1746 1 0.8 -#> 1747 1 0.8 -#> 1748 1 0.8 -#> 1749 1 0.8 -#> 1750 1 0.8 -#> 1751 1 0.8 -#> 1752 1 0.8 -#> 1753 1 0.8 -#> 1754 1 0.8 -#> 1755 1 0.8 -#> 1756 1 0.8 -#> 1757 1 0.8 -#> 1758 1 0.8 -#> 1759 1 0.8 -#> 1760 1 0.8 -#> 1761 1 0.8 -#> 1762 1 0.8 -#> 1763 0 1.2 -#> 1764 0 1.2 -#> 1765 0 1.2 -#> 1766 0 1.2 -#> 1767 0 1.2 -#> 1768 0 1.2 -#> 1769 0 1.2 -#> 1770 0 1.2 -#> 1771 0 1.2 -#> 1772 0 1.2 -#> 1773 0 1.2 -#> 1774 0 1.2 -#> 1775 0 1.2 -#> 1776 0 1.2 -#> 1777 0 1.2 -#> 1778 0 1.2 -#> 1779 0 1.2 -#> 1780 0 1.2 -#> 1781 0 1.2 -#> 1782 0 1.2 -#> 1783 0 1.2 -#> 1784 0 1.2 -#> 1785 0 1.2 -#> 1786 0 1.2 -#> 1787 0 1.2 -#> 1788 0 1.2 -#> 1789 0 1.2 -#> 1790 0 1.2 -#> 1791 1 1.5 -#> 1792 1 1.5 -#> 1793 1 1.5 -#> 1794 1 1.5 -#> 1795 1 1.5 -#> 1796 1 1.5 -#> 1797 1 1.5 -#> 1798 1 1.5 -#> 1799 1 1.5 -#> 1800 1 1.5 -#> 1801 1 1.5 -#> 1802 1 1.5 -#> 1803 1 1.5 -#> 1804 1 1.5 -#> 1805 1 1.5 -#> 1806 1 1.5 -#> 1807 1 1.5 -#> 1808 1 1.5 -#> 1809 1 1.5 -#> 1810 1 1.5 -#> 1811 1 1.5 -#> 1812 1 1.5 -#> 1813 1 1.5 -#> 1814 1 1.5 -#> 1815 1 1.5 -#> 1816 1 1.5 -#> 1817 1 1.5 -#> 1818 1 1.5 -#> 1819 0 2.8 -#> 1820 0 2.8 -#> 1821 0 2.8 -#> 1822 0 2.8 -#> 1823 0 2.8 -#> 1824 0 2.8 -#> 1825 0 2.8 -#> 1826 0 2.8 -#> 1827 0 2.8 -#> 1828 0 2.8 -#> 1829 0 2.8 -#> 1830 0 2.8 -#> 1831 0 2.8 -#> 1832 0 2.8 -#> 1833 0 2.8 -#> 1834 0 2.8 -#> 1835 0 2.8 -#> 1836 0 2.8 -#> 1837 0 2.8 -#> 1838 0 2.8 -#> 1839 0 2.8 -#> 1840 0 2.8 -#> 1841 0 2.8 -#> 1842 0 2.8 -#> 1843 0 2.8 -#> 1844 0 2.8 -#> 1845 0 2.8 -#> 1846 0 2.8 -#> 1847 2 1.6 -#> 1848 2 1.6 -#> 1849 2 1.6 -#> 1850 2 1.6 -#> 1851 2 1.6 -#> 1852 2 1.6 -#> 1853 2 1.6 -#> 1854 2 1.6 -#> 1855 2 1.6 -#> 1856 2 1.6 -#> 1857 2 1.6 -#> 1858 2 1.6 -#> 1859 2 1.6 -#> 1860 2 1.6 -#> 1861 2 1.6 -#> 1862 2 1.6 -#> 1863 2 1.6 -#> 1864 2 1.6 -#> 1865 2 1.6 -#> 1866 2 1.6 -#> 1867 2 1.6 -#> 1868 2 1.6 -#> 1869 2 1.6 -#> 1870 2 1.6 -#> 1871 2 1.6 -#> 1872 2 1.6 -#> 1873 2 1.6 -#> 1874 2 1.6 -#> 1875 1 1.7 -#> 1876 1 1.7 -#> 1877 1 1.7 -#> 1878 1 1.7 -#> 1879 1 1.7 -#> 1880 1 1.7 -#> 1881 1 1.7 -#> 1882 1 1.7 -#> 1883 1 1.7 -#> 1884 1 1.7 -#> 1885 1 1.7 -#> 1886 1 1.7 -#> 1887 1 1.7 -#> 1888 1 1.7 -#> 1889 1 1.7 -#> 1890 1 1.7 -#> 1891 1 1.7 -#> 1892 1 1.7 -#> 1893 1 1.7 -#> 1894 1 1.7 -#> 1895 1 1.7 -#> 1896 1 1.7 -#> 1897 1 1.7 -#> 1898 1 1.7 -#> 1899 1 1.7 -#> 1900 1 1.7 -#> 1901 1 1.7 -#> 1902 1 1.7 -#> 1903 1 0.5 -#> 1904 1 0.5 -#> 1905 1 0.5 -#> 1906 1 0.5 -#> 1907 1 0.5 -#> 1908 1 0.5 -#> 1909 1 0.5 -#> 1910 1 0.5 -#> 1911 1 0.5 -#> 1912 1 0.5 -#> 1913 1 0.5 -#> 1914 1 0.5 -#> 1915 1 0.5 -#> 1916 1 0.5 -#> 1917 1 0.5 -#> 1918 1 0.5 -#> 1919 1 0.5 -#> 1920 1 0.5 -#> 1921 1 0.5 -#> 1922 1 0.5 -#> 1923 1 0.5 -#> 1924 1 0.5 -#> 1925 1 0.5 -#> 1926 1 0.5 -#> 1927 1 0.5 -#> 1928 1 0.5 -#> 1929 1 0.5 -#> 1930 1 0.5 -#> 1931 1 1.4 -#> 1932 1 1.4 -#> 1933 1 1.4 -#> 1934 1 1.4 -#> 1935 1 1.4 -#> 1936 1 1.4 -#> 1937 1 1.4 -#> 1938 1 1.4 -#> 1939 1 1.4 -#> 1940 1 1.4 -#> 1941 1 1.4 -#> 1942 1 1.4 -#> 1943 1 1.4 -#> 1944 1 1.4 -#> 1945 1 1.4 -#> 1946 1 1.4 -#> 1947 1 1.4 -#> 1948 1 1.4 -#> 1949 1 1.4 -#> 1950 1 1.4 -#> 1951 1 1.4 -#> 1952 1 1.4 -#> 1953 1 1.4 -#> 1954 1 1.4 -#> 1955 1 1.4 -#> 1956 1 1.4 -#> 1957 1 1.4 -#> 1958 1 1.4 -#> 1959 2 1.2 -#> 1960 2 1.2 -#> 1961 2 1.2 -#> 1962 2 1.2 -#> 1963 2 1.2 -#> 1964 2 1.2 -#> 1965 2 1.2 -#> 1966 2 1.2 -#> 1967 2 1.2 -#> 1968 2 1.2 -#> 1969 2 1.2 -#> 1970 2 1.2 -#> 1971 2 1.2 -#> 1972 2 1.2 -#> 1973 2 1.2 -#> 1974 2 1.2 -#> 1975 2 1.2 -#> 1976 2 1.2 -#> 1977 2 1.2 -#> 1978 2 1.2 -#> 1979 2 1.2 -#> 1980 2 1.2 -#> 1981 2 1.2 -#> 1982 2 1.2 -#> 1983 2 1.2 -#> 1984 2 1.2 -#> 1985 2 1.2 -#> 1986 2 1.2 -#> 1987 0 1.1 -#> 1988 0 1.1 -#> 1989 0 1.1 -#> 1990 0 1.1 -#> 1991 0 1.1 -#> 1992 0 1.1 -#> 1993 0 1.1 -#> 1994 0 1.1 -#> 1995 0 1.1 -#> 1996 0 1.1 -#> 1997 0 1.1 -#> 1998 0 1.1 -#> 1999 0 1.1 -#> 2000 0 1.1 -#> 2001 0 1.1 -#> 2002 0 1.1 -#> 2003 0 1.1 -#> 2004 0 1.1 -#> 2005 0 1.1 -#> 2006 0 1.1 -#> 2007 0 1.1 -#> 2008 0 1.1 -#> 2009 0 1.1 -#> 2010 0 1.1 -#> 2011 0 1.1 -#> 2012 0 1.1 -#> 2013 0 1.1 -#> 2014 0 1.1 -#> 2015 1 1.1 -#> 2016 1 1.1 -#> 2017 1 1.1 -#> 2018 1 1.1 -#> 2019 1 1.1 -#> 2020 1 1.1 -#> 2021 1 1.1 -#> 2022 1 1.1 -#> 2023 1 1.1 -#> 2024 1 1.1 -#> 2025 1 1.1 -#> 2026 1 1.1 -#> 2027 1 1.1 -#> 2028 1 1.1 -#> 2029 1 1.1 -#> 2030 1 1.1 -#> 2031 1 1.1 -#> 2032 1 1.1 -#> 2033 1 1.1 -#> 2034 1 1.1 -#> 2035 1 1.1 -#> 2036 1 1.1 -#> 2037 1 1.1 -#> 2038 1 1.1 -#> 2039 1 1.1 -#> 2040 1 1.1 -#> Home_Goals -#> 1 -#> 2 -#> 3 -#> 4 -#> 5 -#> 6 -#> 7 -#> 8 -#> 9 -#> 10 -#> 11 -#> 12 -#> 13 -#> 14 -#> 15 -#> 16 -#> 17 -#> 18 -#> 19 -#> 20 -#> 21 -#> 22 -#> 23 -#> 24 -#> 25 -#> 26 -#> 27 -#> 28 -#> 29 -#> 30 -#> 31 -#> 32 -#> 33 -#> 34 -#> 35 -#> 36 -#> 37 -#> 38 -#> 39 -#> 40 -#> 41 -#> 42 -#> 43 -#> 44 -#> 45 -#> 46 -#> 47 -#> 48 -#> 49 -#> 50 -#> 51 -#> 52 -#> 53 -#> 54 -#> 55 -#> 56 -#> 57 David López (OG) · 52&rsquor; -#> 58 David López (OG) · 52&rsquor; -#> 59 David López (OG) · 52&rsquor; -#> 60 David López (OG) · 52&rsquor; -#> 61 David López (OG) · 52&rsquor; -#> 62 David López (OG) · 52&rsquor; -#> 63 David López (OG) · 52&rsquor; -#> 64 David López (OG) · 52&rsquor; -#> 65 David López (OG) · 52&rsquor; -#> 66 David López (OG) · 52&rsquor; -#> 67 David López (OG) · 52&rsquor; -#> 68 David López (OG) · 52&rsquor; -#> 69 David López (OG) · 52&rsquor; -#> 70 David López (OG) · 52&rsquor; -#> 71 David López (OG) · 52&rsquor; -#> 72 David López (OG) · 52&rsquor; -#> 73 David López (OG) · 52&rsquor; -#> 74 David López (OG) · 52&rsquor; -#> 75 David López (OG) · 52&rsquor; -#> 76 David López (OG) · 52&rsquor; -#> 77 David López (OG) · 52&rsquor; -#> 78 David López (OG) · 52&rsquor; -#> 79 David López (OG) · 52&rsquor; -#> 80 David López (OG) · 52&rsquor; -#> 81 David López (OG) · 52&rsquor; -#> 82 David López (OG) · 52&rsquor; -#> 83 David López (OG) · 52&rsquor; -#> 84 David López (OG) · 52&rsquor; -#> 85 Gerard Moreno · 16&rsquor; -#> 86 Gerard Moreno · 16&rsquor; -#> 87 Gerard Moreno · 16&rsquor; -#> 88 Gerard Moreno · 16&rsquor; -#> 89 Gerard Moreno · 16&rsquor; -#> 90 Gerard Moreno · 16&rsquor; -#> 91 Gerard Moreno · 16&rsquor; -#> 92 Gerard Moreno · 16&rsquor; -#> 93 Gerard Moreno · 16&rsquor; -#> 94 Gerard Moreno · 16&rsquor; -#> 95 Gerard Moreno · 16&rsquor; -#> 96 Gerard Moreno · 16&rsquor; -#> 97 Gerard Moreno · 16&rsquor; -#> 98 Gerard Moreno · 16&rsquor; -#> 99 Gerard Moreno · 16&rsquor; -#> 100 Gerard Moreno · 16&rsquor; -#> 101 Gerard Moreno · 16&rsquor; -#> 102 Gerard Moreno · 16&rsquor; -#> 103 Gerard Moreno · 16&rsquor; -#> 104 Gerard Moreno · 16&rsquor; -#> 105 Gerard Moreno · 16&rsquor; -#> 106 Gerard Moreno · 16&rsquor; -#> 107 Gerard Moreno · 16&rsquor; -#> 108 Gerard Moreno · 16&rsquor; -#> 109 Gerard Moreno · 16&rsquor; -#> 110 Gerard Moreno · 16&rsquor; -#> 111 Gerard Moreno · 16&rsquor; -#> 112 Gerard Moreno · 16&rsquor; -#> 113 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 114 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 115 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 116 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 117 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 118 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 119 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 120 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 121 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 122 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 123 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 124 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 125 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 126 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 127 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 128 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 129 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 130 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 131 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 132 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 133 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 134 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 135 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 136 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 137 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 138 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 139 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 140 Lionel Messi · 64&rsquor; Philippe Coutinho · 83&rsquor; Lionel Messi · 90+2&rsquor; -#> 141 Gonzalo Escalante · 69&rsquor; -#> 142 Gonzalo Escalante · 69&rsquor; -#> 143 Gonzalo Escalante · 69&rsquor; -#> 144 Gonzalo Escalante · 69&rsquor; -#> 145 Gonzalo Escalante · 69&rsquor; -#> 146 Gonzalo Escalante · 69&rsquor; -#> 147 Gonzalo Escalante · 69&rsquor; -#> 148 Gonzalo Escalante · 69&rsquor; -#> 149 Gonzalo Escalante · 69&rsquor; -#> 150 Gonzalo Escalante · 69&rsquor; -#> 151 Gonzalo Escalante · 69&rsquor; -#> 152 Gonzalo Escalante · 69&rsquor; -#> 153 Gonzalo Escalante · 69&rsquor; -#> 154 Gonzalo Escalante · 69&rsquor; -#> 155 Gonzalo Escalante · 69&rsquor; -#> 156 Gonzalo Escalante · 69&rsquor; -#> 157 Gonzalo Escalante · 69&rsquor; -#> 158 Gonzalo Escalante · 69&rsquor; -#> 159 Gonzalo Escalante · 69&rsquor; -#> 160 Gonzalo Escalante · 69&rsquor; -#> 161 Gonzalo Escalante · 69&rsquor; -#> 162 Gonzalo Escalante · 69&rsquor; -#> 163 Gonzalo Escalante · 69&rsquor; -#> 164 Gonzalo Escalante · 69&rsquor; -#> 165 Gonzalo Escalante · 69&rsquor; -#> 166 Gonzalo Escalante · 69&rsquor; -#> 167 Gonzalo Escalante · 69&rsquor; -#> 168 Gonzalo Escalante · 69&rsquor; -#> 169 Adri Embarba (P) · 85&rsquor; -#> 170 Adri Embarba (P) · 85&rsquor; -#> 171 Adri Embarba (P) · 85&rsquor; -#> 172 Adri Embarba (P) · 85&rsquor; -#> 173 Adri Embarba (P) · 85&rsquor; -#> 174 Adri Embarba (P) · 85&rsquor; -#> 175 Adri Embarba (P) · 85&rsquor; -#> 176 Adri Embarba (P) · 85&rsquor; -#> 177 Adri Embarba (P) · 85&rsquor; -#> 178 Adri Embarba (P) · 85&rsquor; -#> 179 Adri Embarba (P) · 85&rsquor; -#> 180 Adri Embarba (P) · 85&rsquor; -#> 181 Adri Embarba (P) · 85&rsquor; -#> 182 Adri Embarba (P) · 85&rsquor; -#> 183 Adri Embarba (P) · 85&rsquor; -#> 184 Adri Embarba (P) · 85&rsquor; -#> 185 Adri Embarba (P) · 85&rsquor; -#> 186 Adri Embarba (P) · 85&rsquor; -#> 187 Adri Embarba (P) · 85&rsquor; -#> 188 Adri Embarba (P) · 85&rsquor; -#> 189 Adri Embarba (P) · 85&rsquor; -#> 190 Adri Embarba (P) · 85&rsquor; -#> 191 Adri Embarba (P) · 85&rsquor; -#> 192 Adri Embarba (P) · 85&rsquor; -#> 193 Adri Embarba (P) · 85&rsquor; -#> 194 Adri Embarba (P) · 85&rsquor; -#> 195 Adri Embarba (P) · 85&rsquor; -#> 196 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 197 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 198 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 199 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 200 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 201 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 202 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 203 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 204 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 205 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 206 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 207 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 208 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 209 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 210 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 211 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 212 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 213 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 214 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 215 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 216 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 217 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 218 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 219 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 220 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 221 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 222 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 223 Dani Carvajal · 20&rsquor; Gareth Bale · 51&rsquor; -#> 224 Rodrigo · 56&rsquor; -#> 225 Rodrigo · 56&rsquor; -#> 226 Rodrigo · 56&rsquor; -#> 227 Rodrigo · 56&rsquor; -#> 228 Rodrigo · 56&rsquor; -#> 229 Rodrigo · 56&rsquor; -#> 230 Rodrigo · 56&rsquor; -#> 231 Rodrigo · 56&rsquor; -#> 232 Rodrigo · 56&rsquor; -#> 233 Rodrigo · 56&rsquor; -#> 234 Rodrigo · 56&rsquor; -#> 235 Rodrigo · 56&rsquor; -#> 236 Rodrigo · 56&rsquor; -#> 237 Rodrigo · 56&rsquor; -#> 238 Rodrigo · 56&rsquor; -#> 239 Rodrigo · 56&rsquor; -#> 240 Rodrigo · 56&rsquor; -#> 241 Rodrigo · 56&rsquor; -#> 242 Rodrigo · 56&rsquor; -#> 243 Rodrigo · 56&rsquor; -#> 244 Rodrigo · 56&rsquor; -#> 245 Rodrigo · 56&rsquor; -#> 246 Rodrigo · 56&rsquor; -#> 247 Rodrigo · 56&rsquor; -#> 248 Rodrigo · 56&rsquor; -#> 249 Rodrigo · 56&rsquor; -#> 250 Rodrigo · 56&rsquor; -#> 251 Rodrigo · 56&rsquor; -#> 252 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 253 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 254 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 255 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 256 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 257 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 258 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 259 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 260 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 261 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 262 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 263 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 264 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 265 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 266 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 267 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 268 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 269 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 270 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 271 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 272 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 273 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 274 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 275 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 276 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 277 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 278 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 279 Peru Nolaskoain · 27&rsquor; Iker Muniain · 90+3&rsquor; -#> 280 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 281 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 282 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 283 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 284 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 285 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 286 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 287 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 288 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 289 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 290 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 291 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 292 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 293 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 294 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 295 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 296 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 297 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 298 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 299 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 300 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 301 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 302 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 303 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 304 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 305 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 306 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 307 Ángel Rodríguez · 18&rsquor; Jorge Molina · 90&rsquor; -#> 308 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 309 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 310 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 311 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 312 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 313 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 314 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 315 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 316 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 317 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 318 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 319 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 320 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 321 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 322 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 323 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 324 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 325 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 326 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 327 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 328 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 329 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 330 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 331 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 332 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 333 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 334 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 335 Nabil El Zhar · 54&rsquor; Nabil El Zhar · 88&rsquor; -#> 336 -#> 337 -#> 338 -#> 339 -#> 340 -#> 341 -#> 342 -#> 343 -#> 344 -#> 345 -#> 346 -#> 347 -#> 348 -#> 349 -#> 350 -#> 351 -#> 352 -#> 353 -#> 354 -#> 355 -#> 356 -#> 357 -#> 358 -#> 359 -#> 360 -#> 361 -#> 362 -#> 363 -#> 364 Antoine Griezmann · 63&rsquor; -#> 365 Antoine Griezmann · 63&rsquor; -#> 366 Antoine Griezmann · 63&rsquor; -#> 367 Antoine Griezmann · 63&rsquor; -#> 368 Antoine Griezmann · 63&rsquor; -#> 369 Antoine Griezmann · 63&rsquor; -#> 370 Antoine Griezmann · 63&rsquor; -#> 371 Antoine Griezmann · 63&rsquor; -#> 372 Antoine Griezmann · 63&rsquor; -#> 373 Antoine Griezmann · 63&rsquor; -#> 374 Antoine Griezmann · 63&rsquor; -#> 375 Antoine Griezmann · 63&rsquor; -#> 376 Antoine Griezmann · 63&rsquor; -#> 377 Antoine Griezmann · 63&rsquor; -#> 378 Antoine Griezmann · 63&rsquor; -#> 379 Antoine Griezmann · 63&rsquor; -#> 380 Antoine Griezmann · 63&rsquor; -#> 381 Antoine Griezmann · 63&rsquor; -#> 382 Antoine Griezmann · 63&rsquor; -#> 383 Antoine Griezmann · 63&rsquor; -#> 384 Antoine Griezmann · 63&rsquor; -#> 385 Antoine Griezmann · 63&rsquor; -#> 386 Antoine Griezmann · 63&rsquor; -#> 387 Antoine Griezmann · 63&rsquor; -#> 388 Antoine Griezmann · 63&rsquor; -#> 389 Antoine Griezmann · 63&rsquor; -#> 390 Antoine Griezmann · 63&rsquor; -#> 391 Antoine Griezmann · 63&rsquor; -#> 392 -#> 393 -#> 394 -#> 395 -#> 396 -#> 397 -#> 398 -#> 399 -#> 400 -#> 401 -#> 402 -#> 403 -#> 404 -#> 405 -#> 406 -#> 407 -#> 408 -#> 409 -#> 410 -#> 411 -#> 412 -#> 413 -#> 414 -#> 415 -#> 416 -#> 417 -#> 418 -#> 419 -#> 420 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 421 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 422 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 423 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 424 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 425 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 426 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 427 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 428 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 429 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 430 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 431 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 432 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 433 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 434 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 435 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 436 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 437 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 438 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 439 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 440 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 441 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 442 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 443 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 444 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 445 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 446 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 447 Esteban Granero · 62&rsquor; Borja Iglesias · 68&rsquor; -#> 448 Borja García · 16&rsquor; -#> 449 Borja García · 16&rsquor; -#> 450 Borja García · 16&rsquor; -#> 451 Borja García · 16&rsquor; -#> 452 Borja García · 16&rsquor; -#> 453 Borja García · 16&rsquor; -#> 454 Borja García · 16&rsquor; -#> 455 Borja García · 16&rsquor; -#> 456 Borja García · 16&rsquor; -#> 457 Borja García · 16&rsquor; -#> 458 Borja García · 16&rsquor; -#> 459 Borja García · 16&rsquor; -#> 460 Borja García · 16&rsquor; -#> 461 Borja García · 16&rsquor; -#> 462 Borja García · 16&rsquor; -#> 463 Borja García · 16&rsquor; -#> 464 Borja García · 16&rsquor; -#> 465 Borja García · 16&rsquor; -#> 466 Borja García · 16&rsquor; -#> 467 Borja García · 16&rsquor; -#> 468 Borja García · 16&rsquor; -#> 469 Borja García · 16&rsquor; -#> 470 Borja García · 16&rsquor; -#> 471 Borja García · 16&rsquor; -#> 472 Borja García · 16&rsquor; -#> 473 Borja García · 16&rsquor; -#> 474 Borja García · 16&rsquor; -#> 475 Borja García · 16&rsquor; -#> 476 -#> 477 -#> 478 -#> 479 -#> 480 -#> 481 -#> 482 -#> 483 -#> 484 -#> 485 -#> 486 -#> 487 -#> 488 -#> 489 -#> 490 -#> 491 -#> 492 -#> 493 -#> 494 -#> 495 -#> 496 -#> 497 -#> 498 -#> 499 -#> 500 -#> 501 -#> 502 -#> 503 -#> 504 José Luis Morales (P) · 78&rsquor; -#> 505 José Luis Morales (P) · 78&rsquor; -#> 506 José Luis Morales (P) · 78&rsquor; -#> 507 José Luis Morales (P) · 78&rsquor; -#> 508 José Luis Morales (P) · 78&rsquor; -#> 509 José Luis Morales (P) · 78&rsquor; -#> 510 José Luis Morales (P) · 78&rsquor; -#> 511 José Luis Morales (P) · 78&rsquor; -#> 512 José Luis Morales (P) · 78&rsquor; -#> 513 José Luis Morales (P) · 78&rsquor; -#> 514 José Luis Morales (P) · 78&rsquor; -#> 515 José Luis Morales (P) · 78&rsquor; -#> 516 José Luis Morales (P) · 78&rsquor; -#> 517 José Luis Morales (P) · 78&rsquor; -#> 518 José Luis Morales (P) · 78&rsquor; -#> 519 José Luis Morales (P) · 78&rsquor; -#> 520 José Luis Morales (P) · 78&rsquor; -#> 521 José Luis Morales (P) · 78&rsquor; -#> 522 José Luis Morales (P) · 78&rsquor; -#> 523 José Luis Morales (P) · 78&rsquor; -#> 524 José Luis Morales (P) · 78&rsquor; -#> 525 José Luis Morales (P) · 78&rsquor; -#> 526 José Luis Morales (P) · 78&rsquor; -#> 527 José Luis Morales (P) · 78&rsquor; -#> 528 José Luis Morales (P) · 78&rsquor; -#> 529 José Luis Morales (P) · 78&rsquor; -#> 530 José Luis Morales (P) · 78&rsquor; -#> 531 José Luis Morales (P) · 78&rsquor; -#> 532 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 533 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 534 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 535 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 536 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 537 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 538 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 539 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 540 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 541 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 542 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 543 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 544 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 545 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 546 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 547 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 548 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 549 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 550 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 551 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 552 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 553 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 554 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 555 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 556 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 557 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 558 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 559 Markel Susaeta · 47&rsquor; Yuri Berchiche · 63&rsquor; -#> 560 -#> 561 -#> 562 -#> 563 -#> 564 -#> 565 -#> 566 -#> 567 -#> 568 -#> 569 -#> 570 -#> 571 -#> 572 -#> 573 -#> 574 -#> 575 -#> 576 -#> 577 -#> 578 -#> 579 -#> 580 -#> 581 -#> 582 -#> 583 -#> 584 -#> 585 -#> 586 -#> 587 -#> 588 -#> 589 -#> 590 -#> 591 -#> 592 -#> 593 -#> 594 -#> 595 -#> 596 -#> 597 -#> 598 -#> 599 -#> 600 -#> 601 -#> 602 -#> 603 -#> 604 -#> 605 -#> 606 -#> 607 -#> 608 -#> 609 -#> 610 -#> 611 -#> 612 -#> 613 -#> 614 -#> 615 -#> 616 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 617 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 618 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 619 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 620 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 621 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 622 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 623 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 624 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 625 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 626 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 627 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 628 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 629 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 630 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 631 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 632 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 633 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 634 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 635 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 636 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 637 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 638 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 639 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 640 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 641 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 642 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 643 Marc Cardona · 26&rsquor; Charles · 90+1&rsquor; -#> 644 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 645 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 646 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 647 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 648 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 649 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 650 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 651 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 652 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 653 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 654 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 655 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 656 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 657 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 658 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 659 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 660 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 661 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 662 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 663 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 664 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 665 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 666 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 667 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 668 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 669 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 670 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 671 Maxi Gómez · 46&rsquor; Iago Aspas · 52&rsquor; -#> 672 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 673 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 674 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 675 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 676 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 677 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 678 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 679 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 680 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 681 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 682 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 683 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 684 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 685 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 686 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 687 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 688 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 689 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 690 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 691 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 692 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 693 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 694 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 695 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 696 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 697 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 698 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 699 Gareth Bale · 17&rsquor; Karim Benzema · 48&rsquor; Karim Benzema · 61&rsquor; Sergio Ramos (P) · 66&rsquor; -#> 700 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 701 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 702 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 703 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 704 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 705 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 706 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 707 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 708 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 709 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 710 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 711 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 712 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 713 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 714 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 715 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 716 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 717 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 718 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 719 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 720 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 721 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 722 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 723 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 724 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 725 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 726 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 727 Roger Martí · 13&rsquor; Roger Martí · 33&rsquor; Coke · 76&rsquor; -#> 728 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 729 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 730 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 731 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 732 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 733 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 734 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 735 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 736 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 737 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 738 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 739 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 740 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 741 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 742 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 743 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 744 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 745 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 746 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 747 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 748 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 749 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 750 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 751 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 752 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 753 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 754 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 755 Borja Bastón · 57&rsquor; Rubén Sobrino · 59&rsquor; -#> 756 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 757 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 758 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 759 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 760 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 761 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 762 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 763 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 764 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 765 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 766 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 767 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 768 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 769 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 770 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 771 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 772 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 773 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 774 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 775 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 776 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 777 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 778 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 779 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 780 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 781 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 782 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 783 Lionel Messi · 16&rsquor; Jorge Pulido (OG) · 24&rsquor; Luis Suárez · 39&rsquor; Ousmane Dembélé · 48&rsquor; Ivan Rakitić · 52&rsquor; Lionel Messi · 61&rsquor; Jordi Alba · 81&rsquor; Luis Suárez (P) · 90+3&rsquor; -#> 784 Joaquín · 80&rsquor; -#> 785 Joaquín · 80&rsquor; -#> 786 Joaquín · 80&rsquor; -#> 787 Joaquín · 80&rsquor; -#> 788 Joaquín · 80&rsquor; -#> 789 Joaquín · 80&rsquor; -#> 790 Joaquín · 80&rsquor; -#> 791 Joaquín · 80&rsquor; -#> 792 Joaquín · 80&rsquor; -#> 793 Joaquín · 80&rsquor; -#> 794 Joaquín · 80&rsquor; -#> 795 Joaquín · 80&rsquor; -#> 796 Joaquín · 80&rsquor; -#> 797 Joaquín · 80&rsquor; -#> 798 Joaquín · 80&rsquor; -#> 799 Joaquín · 80&rsquor; -#> 800 Joaquín · 80&rsquor; -#> 801 Joaquín · 80&rsquor; -#> 802 Joaquín · 80&rsquor; -#> 803 Joaquín · 80&rsquor; -#> 804 Joaquín · 80&rsquor; -#> 805 Joaquín · 80&rsquor; -#> 806 Joaquín · 80&rsquor; -#> 807 Joaquín · 80&rsquor; -#> 808 Joaquín · 80&rsquor; -#> 809 Joaquín · 80&rsquor; -#> 810 Joaquín · 80&rsquor; -#> 811 Joaquín · 80&rsquor; -#> 812 -#> 813 -#> 814 -#> 815 -#> 816 -#> 817 -#> 818 -#> 819 -#> 820 -#> 821 -#> 822 -#> 823 -#> 824 -#> 825 -#> 826 -#> 827 -#> 828 -#> 829 -#> 830 -#> 831 -#> 832 -#> 833 -#> 834 -#> 835 -#> 836 -#> 837 -#> 838 -#> 839 -#> 840 Borja Garcés · 90+4&rsquor; -#> 841 Borja Garcés · 90+4&rsquor; -#> 842 Borja Garcés · 90+4&rsquor; -#> 843 Borja Garcés · 90+4&rsquor; -#> 844 Borja Garcés · 90+4&rsquor; -#> 845 Borja Garcés · 90+4&rsquor; -#> 846 Borja Garcés · 90+4&rsquor; -#> 847 Borja Garcés · 90+4&rsquor; -#> 848 Borja Garcés · 90+4&rsquor; -#> 849 Borja Garcés · 90+4&rsquor; -#> 850 Borja Garcés · 90+4&rsquor; -#> 851 Borja Garcés · 90+4&rsquor; -#> 852 Borja Garcés · 90+4&rsquor; -#> 853 Borja Garcés · 90+4&rsquor; -#> 854 Borja Garcés · 90+4&rsquor; -#> 855 Borja Garcés · 90+4&rsquor; -#> 856 Borja Garcés · 90+4&rsquor; -#> 857 Borja Garcés · 90+4&rsquor; -#> 858 Borja Garcés · 90+4&rsquor; -#> 859 Borja Garcés · 90+4&rsquor; -#> 860 Borja Garcés · 90+4&rsquor; -#> 861 Borja Garcés · 90+4&rsquor; -#> 862 Borja Garcés · 90+4&rsquor; -#> 863 Borja Garcés · 90+4&rsquor; -#> 864 Borja Garcés · 90+4&rsquor; -#> 865 Borja Garcés · 90+4&rsquor; -#> 866 Borja Garcés · 90+4&rsquor; -#> 867 Aritz Elustondo · 12&rsquor; -#> 868 Aritz Elustondo · 12&rsquor; -#> 869 Aritz Elustondo · 12&rsquor; -#> 870 Aritz Elustondo · 12&rsquor; -#> 871 Aritz Elustondo · 12&rsquor; -#> 872 Aritz Elustondo · 12&rsquor; -#> 873 Aritz Elustondo · 12&rsquor; -#> 874 Aritz Elustondo · 12&rsquor; -#> 875 Aritz Elustondo · 12&rsquor; -#> 876 Aritz Elustondo · 12&rsquor; -#> 877 Aritz Elustondo · 12&rsquor; -#> 878 Aritz Elustondo · 12&rsquor; -#> 879 Aritz Elustondo · 12&rsquor; -#> 880 Aritz Elustondo · 12&rsquor; -#> 881 Aritz Elustondo · 12&rsquor; -#> 882 Aritz Elustondo · 12&rsquor; -#> 883 Aritz Elustondo · 12&rsquor; -#> 884 Aritz Elustondo · 12&rsquor; -#> 885 Aritz Elustondo · 12&rsquor; -#> 886 Aritz Elustondo · 12&rsquor; -#> 887 Aritz Elustondo · 12&rsquor; -#> 888 Aritz Elustondo · 12&rsquor; -#> 889 Aritz Elustondo · 12&rsquor; -#> 890 Aritz Elustondo · 12&rsquor; -#> 891 Aritz Elustondo · 12&rsquor; -#> 892 Aritz Elustondo · 12&rsquor; -#> 893 Aritz Elustondo · 12&rsquor; -#> 894 Aritz Elustondo · 12&rsquor; -#> 895 -#> 896 -#> 897 -#> 898 -#> 899 -#> 900 -#> 901 -#> 902 -#> 903 -#> 904 -#> 905 -#> 906 -#> 907 -#> 908 -#> 909 -#> 910 -#> 911 -#> 912 -#> 913 -#> 914 -#> 915 -#> 916 -#> 917 -#> 918 -#> 919 -#> 920 -#> 921 -#> 922 -#> 923 Iker Muniain · 32&rsquor; -#> 924 Iker Muniain · 32&rsquor; -#> 925 Iker Muniain · 32&rsquor; -#> 926 Iker Muniain · 32&rsquor; -#> 927 Iker Muniain · 32&rsquor; -#> 928 Iker Muniain · 32&rsquor; -#> 929 Iker Muniain · 32&rsquor; -#> 930 Iker Muniain · 32&rsquor; -#> 931 Iker Muniain · 32&rsquor; -#> 932 Iker Muniain · 32&rsquor; -#> 933 Iker Muniain · 32&rsquor; -#> 934 Iker Muniain · 32&rsquor; -#> 935 Iker Muniain · 32&rsquor; -#> 936 Iker Muniain · 32&rsquor; -#> 937 Iker Muniain · 32&rsquor; -#> 938 Iker Muniain · 32&rsquor; -#> 939 Iker Muniain · 32&rsquor; -#> 940 Iker Muniain · 32&rsquor; -#> 941 Iker Muniain · 32&rsquor; -#> 942 Iker Muniain · 32&rsquor; -#> 943 Iker Muniain · 32&rsquor; -#> 944 Iker Muniain · 32&rsquor; -#> 945 Iker Muniain · 32&rsquor; -#> 946 Iker Muniain · 32&rsquor; -#> 947 Iker Muniain · 32&rsquor; -#> 948 Iker Muniain · 32&rsquor; -#> 949 Iker Muniain · 32&rsquor; -#> 950 Iker Muniain · 32&rsquor; -#> 951 -#> 952 -#> 953 -#> 954 -#> 955 -#> 956 -#> 957 -#> 958 -#> 959 -#> 960 -#> 961 -#> 962 -#> 963 -#> 964 -#> 965 -#> 966 -#> 967 -#> 968 -#> 969 -#> 970 -#> 971 -#> 972 -#> 973 -#> 974 -#> 975 -#> 976 -#> 977 -#> 978 -#> 979 Sergio García · 52&rsquor; -#> 980 Sergio García · 52&rsquor; -#> 981 Sergio García · 52&rsquor; -#> 982 Sergio García · 52&rsquor; -#> 983 Sergio García · 52&rsquor; -#> 984 Sergio García · 52&rsquor; -#> 985 Sergio García · 52&rsquor; -#> 986 Sergio García · 52&rsquor; -#> 987 Sergio García · 52&rsquor; -#> 988 Sergio García · 52&rsquor; -#> 989 Sergio García · 52&rsquor; -#> 990 Sergio García · 52&rsquor; -#> 991 Sergio García · 52&rsquor; -#> 992 Sergio García · 52&rsquor; -#> 993 Sergio García · 52&rsquor; -#> 994 Sergio García · 52&rsquor; -#> 995 Sergio García · 52&rsquor; -#> 996 Sergio García · 52&rsquor; -#> 997 Sergio García · 52&rsquor; -#> 998 Sergio García · 52&rsquor; -#> 999 Sergio García · 52&rsquor; -#> 1000 Sergio García · 52&rsquor; -#> 1001 Sergio García · 52&rsquor; -#> 1002 Sergio García · 52&rsquor; -#> 1003 Sergio García · 52&rsquor; -#> 1004 Sergio García · 52&rsquor; -#> 1005 Sergio García · 52&rsquor; -#> 1006 Sergio García · 52&rsquor; -#> 1007 -#> 1008 -#> 1009 -#> 1010 -#> 1011 -#> 1012 -#> 1013 -#> 1014 -#> 1015 -#> 1016 -#> 1017 -#> 1018 -#> 1019 -#> 1020 -#> 1021 -#> 1022 -#> 1023 -#> 1024 -#> 1025 -#> 1026 -#> 1027 -#> 1028 -#> 1029 -#> 1030 -#> 1031 -#> 1032 -#> 1033 -#> 1034 -#> 1035 -#> 1036 -#> 1037 -#> 1038 -#> 1039 -#> 1040 -#> 1041 -#> 1042 -#> 1043 -#> 1044 -#> 1045 -#> 1046 -#> 1047 -#> 1048 -#> 1049 -#> 1050 -#> 1051 -#> 1052 -#> 1053 -#> 1054 -#> 1055 -#> 1056 -#> 1057 -#> 1058 -#> 1059 -#> 1060 -#> 1061 -#> 1062 -#> 1063 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1064 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1065 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1066 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1067 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1068 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1069 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1070 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1071 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1072 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1073 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1074 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1075 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1076 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1077 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1078 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1079 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1080 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1081 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1082 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1083 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1084 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1085 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1086 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1087 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1088 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1089 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1090 Cristhian Stuani · 22&rsquor; Pedro Alcalá · 37&rsquor; Cristhian Stuani · 56&rsquor; -#> 1091 -#> 1092 -#> 1093 -#> 1094 -#> 1095 -#> 1096 -#> 1097 -#> 1098 -#> 1099 -#> 1100 -#> 1101 -#> 1102 -#> 1103 -#> 1104 -#> 1105 -#> 1106 -#> 1107 -#> 1108 -#> 1109 -#> 1110 -#> 1111 -#> 1112 -#> 1113 -#> 1114 -#> 1115 -#> 1116 -#> 1117 -#> 1118 -#> 1119 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1120 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1121 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1122 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1123 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1124 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1125 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1126 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1127 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1128 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1129 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1130 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1131 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1132 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1133 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1134 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1135 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1136 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1137 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1138 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1139 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1140 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1141 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1142 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1143 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1144 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1145 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1146 Raúl de Tomás · 30&rsquor; Abdoulaye Ba · 35&rsquor; -#> 1147 Kiké · 52&rsquor; -#> 1148 Kiké · 52&rsquor; -#> 1149 Kiké · 52&rsquor; -#> 1150 Kiké · 52&rsquor; -#> 1151 Kiké · 52&rsquor; -#> 1152 Kiké · 52&rsquor; -#> 1153 Kiké · 52&rsquor; -#> 1154 Kiké · 52&rsquor; -#> 1155 Kiké · 52&rsquor; -#> 1156 Kiké · 52&rsquor; -#> 1157 Kiké · 52&rsquor; -#> 1158 Kiké · 52&rsquor; -#> 1159 Kiké · 52&rsquor; -#> 1160 Kiké · 52&rsquor; -#> 1161 Kiké · 52&rsquor; -#> 1162 Kiké · 52&rsquor; -#> 1163 Kiké · 52&rsquor; -#> 1164 Kiké · 52&rsquor; -#> 1165 Kiké · 52&rsquor; -#> 1166 Kiké · 52&rsquor; -#> 1167 Kiké · 52&rsquor; -#> 1168 Kiké · 52&rsquor; -#> 1169 Kiké · 52&rsquor; -#> 1170 Kiké · 52&rsquor; -#> 1171 Kiké · 52&rsquor; -#> 1172 Kiké · 52&rsquor; -#> 1173 Kiké · 52&rsquor; -#> 1174 Kiké · 52&rsquor; -#> 1175 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1176 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1177 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1178 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1179 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1180 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1181 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1182 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1183 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1184 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1185 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1186 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1187 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1188 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1189 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1190 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1191 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1192 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1193 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1194 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1195 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1196 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1197 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1198 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1199 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1200 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1201 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1202 Iago Aspas · 5&rsquor; Maxi Gómez · 9&rsquor; Iago Aspas · 54&rsquor; -#> 1203 Iván Alejo · 67&rsquor; -#> 1204 Iván Alejo · 67&rsquor; -#> 1205 Iván Alejo · 67&rsquor; -#> 1206 Iván Alejo · 67&rsquor; -#> 1207 Iván Alejo · 67&rsquor; -#> 1208 Iván Alejo · 67&rsquor; -#> 1209 Iván Alejo · 67&rsquor; -#> 1210 Iván Alejo · 67&rsquor; -#> 1211 Iván Alejo · 67&rsquor; -#> 1212 Iván Alejo · 67&rsquor; -#> 1213 Iván Alejo · 67&rsquor; -#> 1214 Iván Alejo · 67&rsquor; -#> 1215 Iván Alejo · 67&rsquor; -#> 1216 Iván Alejo · 67&rsquor; -#> 1217 Iván Alejo · 67&rsquor; -#> 1218 Iván Alejo · 67&rsquor; -#> 1219 Iván Alejo · 67&rsquor; -#> 1220 Iván Alejo · 67&rsquor; -#> 1221 Iván Alejo · 67&rsquor; -#> 1222 Iván Alejo · 67&rsquor; -#> 1223 Iván Alejo · 67&rsquor; -#> 1224 Iván Alejo · 67&rsquor; -#> 1225 Iván Alejo · 67&rsquor; -#> 1226 Iván Alejo · 67&rsquor; -#> 1227 Iván Alejo · 67&rsquor; -#> 1228 Iván Alejo · 67&rsquor; -#> 1229 Iván Alejo · 67&rsquor; -#> 1230 Iván Alejo · 67&rsquor; -#> 1231 Marco Asensio · 41&rsquor; -#> 1232 Marco Asensio · 41&rsquor; -#> 1233 Marco Asensio · 41&rsquor; -#> 1234 Marco Asensio · 41&rsquor; -#> 1235 Marco Asensio · 41&rsquor; -#> 1236 Marco Asensio · 41&rsquor; -#> 1237 Marco Asensio · 41&rsquor; -#> 1238 Marco Asensio · 41&rsquor; -#> 1239 Marco Asensio · 41&rsquor; -#> 1240 Marco Asensio · 41&rsquor; -#> 1241 Marco Asensio · 41&rsquor; -#> 1242 Marco Asensio · 41&rsquor; -#> 1243 Marco Asensio · 41&rsquor; -#> 1244 Marco Asensio · 41&rsquor; -#> 1245 Marco Asensio · 41&rsquor; -#> 1246 Marco Asensio · 41&rsquor; -#> 1247 Marco Asensio · 41&rsquor; -#> 1248 Marco Asensio · 41&rsquor; -#> 1249 Marco Asensio · 41&rsquor; -#> 1250 Marco Asensio · 41&rsquor; -#> 1251 Marco Asensio · 41&rsquor; -#> 1252 Marco Asensio · 41&rsquor; -#> 1253 Marco Asensio · 41&rsquor; -#> 1254 Marco Asensio · 41&rsquor; -#> 1255 Marco Asensio · 41&rsquor; -#> 1256 Marco Asensio · 41&rsquor; -#> 1257 Marco Asensio · 41&rsquor; -#> 1258 Marco Asensio · 41&rsquor; -#> 1259 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1260 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1261 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1262 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1263 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1264 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1265 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1266 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1267 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1268 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1269 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1270 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1271 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1272 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1273 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1274 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1275 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1276 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1277 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1278 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1279 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1280 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1281 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1282 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1283 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1284 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1285 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1286 Roger Martí · 12&rsquor; Simon Kjær (OG) · 90&rsquor; -#> 1287 -#> 1288 -#> 1289 -#> 1290 -#> 1291 -#> 1292 -#> 1293 -#> 1294 -#> 1295 -#> 1296 -#> 1297 -#> 1298 -#> 1299 -#> 1300 -#> 1301 -#> 1302 -#> 1303 -#> 1304 -#> 1305 -#> 1306 -#> 1307 -#> 1308 -#> 1309 -#> 1310 -#> 1311 -#> 1312 -#> 1313 -#> 1314 -#> 1315 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1316 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1317 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1318 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1319 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1320 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1321 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1322 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1323 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1324 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1325 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1326 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1327 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1328 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1329 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1330 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1331 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1332 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1333 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1334 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1335 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1336 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1337 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1338 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1339 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1340 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1341 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1342 Marc Bartra · 51&rsquor; Sergio Canales · 68&rsquor; -#> 1343 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1344 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1345 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1346 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1347 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1348 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1349 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1350 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1351 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1352 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1353 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1354 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1355 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1356 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1357 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1358 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1359 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1360 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1361 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1362 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1363 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1364 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1365 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1366 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1367 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1368 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1369 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1370 Lionel Messi · 19&rsquor; Clément Lenglet · 35&rsquor; Gerard Piqué · 63&rsquor; -#> 1371 Mario Hermoso · 68&rsquor; -#> 1372 Mario Hermoso · 68&rsquor; -#> 1373 Mario Hermoso · 68&rsquor; -#> 1374 Mario Hermoso · 68&rsquor; -#> 1375 Mario Hermoso · 68&rsquor; -#> 1376 Mario Hermoso · 68&rsquor; -#> 1377 Mario Hermoso · 68&rsquor; -#> 1378 Mario Hermoso · 68&rsquor; -#> 1379 Mario Hermoso · 68&rsquor; -#> 1380 Mario Hermoso · 68&rsquor; -#> 1381 Mario Hermoso · 68&rsquor; -#> 1382 Mario Hermoso · 68&rsquor; -#> 1383 Mario Hermoso · 68&rsquor; -#> 1384 Mario Hermoso · 68&rsquor; -#> 1385 Mario Hermoso · 68&rsquor; -#> 1386 Mario Hermoso · 68&rsquor; -#> 1387 Mario Hermoso · 68&rsquor; -#> 1388 Mario Hermoso · 68&rsquor; -#> 1389 Mario Hermoso · 68&rsquor; -#> 1390 Mario Hermoso · 68&rsquor; -#> 1391 Mario Hermoso · 68&rsquor; -#> 1392 Mario Hermoso · 68&rsquor; -#> 1393 Mario Hermoso · 68&rsquor; -#> 1394 Mario Hermoso · 68&rsquor; -#> 1395 Mario Hermoso · 68&rsquor; -#> 1396 Mario Hermoso · 68&rsquor; -#> 1397 Mario Hermoso · 68&rsquor; -#> 1398 Mario Hermoso · 68&rsquor; -#> 1399 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1400 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1401 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1402 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1403 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1404 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1405 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1406 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1407 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1408 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1409 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1410 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1411 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1412 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1413 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1414 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1415 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1416 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1417 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1418 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1419 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1420 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1421 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1422 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1423 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1424 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1425 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1426 Jon Bautista · 5&rsquor; Willian José · 78&rsquor; -#> 1427 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1428 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1429 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1430 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1431 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1432 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1433 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1434 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1435 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1436 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1437 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1438 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1439 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1440 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1441 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1442 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1443 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1444 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1445 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1446 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1447 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1448 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1449 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1450 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1451 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1452 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1453 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1454 Antoine Griezmann · 16&rsquor; Thomas Partey · 29&rsquor; Koke · 33&rsquor; -#> 1455 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1456 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1457 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1458 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1459 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1460 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1461 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1462 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1463 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1464 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1465 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1466 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1467 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1468 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1469 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1470 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1471 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1472 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1473 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1474 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1475 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1476 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1477 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1478 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1479 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1480 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1481 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1482 Nabil El Zhar · 52&rsquor; Óscar Rodríguez Arnaiz · 53&rsquor; -#> 1483 -#> 1484 -#> 1485 -#> 1486 -#> 1487 -#> 1488 -#> 1489 -#> 1490 -#> 1491 -#> 1492 -#> 1493 -#> 1494 -#> 1495 -#> 1496 -#> 1497 -#> 1498 -#> 1499 -#> 1500 -#> 1501 -#> 1502 -#> 1503 -#> 1504 -#> 1505 -#> 1506 -#> 1507 -#> 1508 -#> 1509 -#> 1510 -#> 1511 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1512 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1513 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1514 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1515 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1516 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1517 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1518 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1519 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1520 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1521 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1522 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1523 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1524 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1525 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1526 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1527 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1528 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1529 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1530 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1531 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1532 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1533 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1534 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1535 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1536 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1537 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1538 André Silva · 17&rsquor; André Silva · 21&rsquor; Wissam Ben Yedder · 39&rsquor; -#> 1539 Michy Batshuayi · 25&rsquor; -#> 1540 Michy Batshuayi · 25&rsquor; -#> 1541 Michy Batshuayi · 25&rsquor; -#> 1542 Michy Batshuayi · 25&rsquor; -#> 1543 Michy Batshuayi · 25&rsquor; -#> 1544 Michy Batshuayi · 25&rsquor; -#> 1545 Michy Batshuayi · 25&rsquor; -#> 1546 Michy Batshuayi · 25&rsquor; -#> 1547 Michy Batshuayi · 25&rsquor; -#> 1548 Michy Batshuayi · 25&rsquor; -#> 1549 Michy Batshuayi · 25&rsquor; -#> 1550 Michy Batshuayi · 25&rsquor; -#> 1551 Michy Batshuayi · 25&rsquor; -#> 1552 Michy Batshuayi · 25&rsquor; -#> 1553 Michy Batshuayi · 25&rsquor; -#> 1554 Michy Batshuayi · 25&rsquor; -#> 1555 Michy Batshuayi · 25&rsquor; -#> 1556 Michy Batshuayi · 25&rsquor; -#> 1557 Michy Batshuayi · 25&rsquor; -#> 1558 Michy Batshuayi · 25&rsquor; -#> 1559 Michy Batshuayi · 25&rsquor; -#> 1560 Michy Batshuayi · 25&rsquor; -#> 1561 Michy Batshuayi · 25&rsquor; -#> 1562 Michy Batshuayi · 25&rsquor; -#> 1563 Michy Batshuayi · 25&rsquor; -#> 1564 Michy Batshuayi · 25&rsquor; -#> 1565 Michy Batshuayi · 25&rsquor; -#> 1566 Michy Batshuayi · 25&rsquor; -#> 1567 Jonathan Calleri · 90+3&rsquor; -#> 1568 Jonathan Calleri · 90+3&rsquor; -#> 1569 Jonathan Calleri · 90+3&rsquor; -#> 1570 Jonathan Calleri · 90+3&rsquor; -#> 1571 Jonathan Calleri · 90+3&rsquor; -#> 1572 Jonathan Calleri · 90+3&rsquor; -#> 1573 Jonathan Calleri · 90+3&rsquor; -#> 1574 Jonathan Calleri · 90+3&rsquor; -#> 1575 Jonathan Calleri · 90+3&rsquor; -#> 1576 Jonathan Calleri · 90+3&rsquor; -#> 1577 Jonathan Calleri · 90+3&rsquor; -#> 1578 Jonathan Calleri · 90+3&rsquor; -#> 1579 Jonathan Calleri · 90+3&rsquor; -#> 1580 Jonathan Calleri · 90+3&rsquor; -#> 1581 Jonathan Calleri · 90+3&rsquor; -#> 1582 Jonathan Calleri · 90+3&rsquor; -#> 1583 Jonathan Calleri · 90+3&rsquor; -#> 1584 Jonathan Calleri · 90+3&rsquor; -#> 1585 Jonathan Calleri · 90+3&rsquor; -#> 1586 Jonathan Calleri · 90+3&rsquor; -#> 1587 Jonathan Calleri · 90+3&rsquor; -#> 1588 Jonathan Calleri · 90+3&rsquor; -#> 1589 Jonathan Calleri · 90+3&rsquor; -#> 1590 Jonathan Calleri · 90+3&rsquor; -#> 1591 Jonathan Calleri · 90+3&rsquor; -#> 1592 Jonathan Calleri · 90+3&rsquor; -#> 1593 Jonathan Calleri · 90+3&rsquor; -#> 1594 Jonathan Calleri · 90+3&rsquor; -#> 1595 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1596 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1597 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1598 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1599 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1600 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1601 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1602 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1603 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1604 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1605 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1606 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1607 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1608 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1609 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1610 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1611 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1612 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1613 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1614 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1615 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1616 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1617 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1618 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1619 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1620 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1621 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1622 Enes Ünal · 50&rsquor; Nacho · 56&rsquor; -#> 1623 -#> 1624 -#> 1625 -#> 1626 -#> 1627 -#> 1628 -#> 1629 -#> 1630 -#> 1631 -#> 1632 -#> 1633 -#> 1634 -#> 1635 -#> 1636 -#> 1637 -#> 1638 -#> 1639 -#> 1640 -#> 1641 -#> 1642 -#> 1643 -#> 1644 -#> 1645 -#> 1646 -#> 1647 -#> 1648 -#> 1649 -#> 1650 -#> 1651 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1652 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1653 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1654 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1655 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1656 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1657 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1658 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1659 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1660 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1661 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1662 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1663 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1664 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1665 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1666 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1667 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1668 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1669 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1670 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1671 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1672 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1673 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1674 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1675 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1676 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1677 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1678 Raúl de Tomás · 6&rsquor; Gaël Kakuta (P) · 47&rsquor; -#> 1679 -#> 1680 -#> 1681 -#> 1682 -#> 1683 -#> 1684 -#> 1685 -#> 1686 -#> 1687 -#> 1688 -#> 1689 -#> 1690 -#> 1691 -#> 1692 -#> 1693 -#> 1694 -#> 1695 -#> 1696 -#> 1697 -#> 1698 -#> 1699 -#> 1700 -#> 1701 -#> 1702 -#> 1703 -#> 1704 -#> 1705 -#> 1706 -#> 1707 Munir El Haddadi · 84&rsquor; -#> 1708 Munir El Haddadi · 84&rsquor; -#> 1709 Munir El Haddadi · 84&rsquor; -#> 1710 Munir El Haddadi · 84&rsquor; -#> 1711 Munir El Haddadi · 84&rsquor; -#> 1712 Munir El Haddadi · 84&rsquor; -#> 1713 Munir El Haddadi · 84&rsquor; -#> 1714 Munir El Haddadi · 84&rsquor; -#> 1715 Munir El Haddadi · 84&rsquor; -#> 1716 Munir El Haddadi · 84&rsquor; -#> 1717 Munir El Haddadi · 84&rsquor; -#> 1718 Munir El Haddadi · 84&rsquor; -#> 1719 Munir El Haddadi · 84&rsquor; -#> 1720 Munir El Haddadi · 84&rsquor; -#> 1721 Munir El Haddadi · 84&rsquor; -#> 1722 Munir El Haddadi · 84&rsquor; -#> 1723 Munir El Haddadi · 84&rsquor; -#> 1724 Munir El Haddadi · 84&rsquor; -#> 1725 Munir El Haddadi · 84&rsquor; -#> 1726 Munir El Haddadi · 84&rsquor; -#> 1727 Munir El Haddadi · 84&rsquor; -#> 1728 Munir El Haddadi · 84&rsquor; -#> 1729 Munir El Haddadi · 84&rsquor; -#> 1730 Munir El Haddadi · 84&rsquor; -#> 1731 Munir El Haddadi · 84&rsquor; -#> 1732 Munir El Haddadi · 84&rsquor; -#> 1733 Munir El Haddadi · 84&rsquor; -#> 1734 Munir El Haddadi · 84&rsquor; -#> 1735 Joan Jordán · 90+9&rsquor; -#> 1736 Joan Jordán · 90+9&rsquor; -#> 1737 Joan Jordán · 90+9&rsquor; -#> 1738 Joan Jordán · 90+9&rsquor; -#> 1739 Joan Jordán · 90+9&rsquor; -#> 1740 Joan Jordán · 90+9&rsquor; -#> 1741 Joan Jordán · 90+9&rsquor; -#> 1742 Joan Jordán · 90+9&rsquor; -#> 1743 Joan Jordán · 90+9&rsquor; -#> 1744 Joan Jordán · 90+9&rsquor; -#> 1745 Joan Jordán · 90+9&rsquor; -#> 1746 Joan Jordán · 90+9&rsquor; -#> 1747 Joan Jordán · 90+9&rsquor; -#> 1748 Joan Jordán · 90+9&rsquor; -#> 1749 Joan Jordán · 90+9&rsquor; -#> 1750 Joan Jordán · 90+9&rsquor; -#> 1751 Joan Jordán · 90+9&rsquor; -#> 1752 Joan Jordán · 90+9&rsquor; -#> 1753 Joan Jordán · 90+9&rsquor; -#> 1754 Joan Jordán · 90+9&rsquor; -#> 1755 Joan Jordán · 90+9&rsquor; -#> 1756 Joan Jordán · 90+9&rsquor; -#> 1757 Joan Jordán · 90+9&rsquor; -#> 1758 Joan Jordán · 90+9&rsquor; -#> 1759 Joan Jordán · 90+9&rsquor; -#> 1760 Joan Jordán · 90+9&rsquor; -#> 1761 Joan Jordán · 90+9&rsquor; -#> 1762 Joan Jordán · 90+9&rsquor; -#> 1763 -#> 1764 -#> 1765 -#> 1766 -#> 1767 -#> 1768 -#> 1769 -#> 1770 -#> 1771 -#> 1772 -#> 1773 -#> 1774 -#> 1775 -#> 1776 -#> 1777 -#> 1778 -#> 1779 -#> 1780 -#> 1781 -#> 1782 -#> 1783 -#> 1784 -#> 1785 -#> 1786 -#> 1787 -#> 1788 -#> 1789 -#> 1790 -#> 1791 Gonzalo Melero (P) · 72&rsquor; -#> 1792 Gonzalo Melero (P) · 72&rsquor; -#> 1793 Gonzalo Melero (P) · 72&rsquor; -#> 1794 Gonzalo Melero (P) · 72&rsquor; -#> 1795 Gonzalo Melero (P) · 72&rsquor; -#> 1796 Gonzalo Melero (P) · 72&rsquor; -#> 1797 Gonzalo Melero (P) · 72&rsquor; -#> 1798 Gonzalo Melero (P) · 72&rsquor; -#> 1799 Gonzalo Melero (P) · 72&rsquor; -#> 1800 Gonzalo Melero (P) · 72&rsquor; -#> 1801 Gonzalo Melero (P) · 72&rsquor; -#> 1802 Gonzalo Melero (P) · 72&rsquor; -#> 1803 Gonzalo Melero (P) · 72&rsquor; -#> 1804 Gonzalo Melero (P) · 72&rsquor; -#> 1805 Gonzalo Melero (P) · 72&rsquor; -#> 1806 Gonzalo Melero (P) · 72&rsquor; -#> 1807 Gonzalo Melero (P) · 72&rsquor; -#> 1808 Gonzalo Melero (P) · 72&rsquor; -#> 1809 Gonzalo Melero (P) · 72&rsquor; -#> 1810 Gonzalo Melero (P) · 72&rsquor; -#> 1811 Gonzalo Melero (P) · 72&rsquor; -#> 1812 Gonzalo Melero (P) · 72&rsquor; -#> 1813 Gonzalo Melero (P) · 72&rsquor; -#> 1814 Gonzalo Melero (P) · 72&rsquor; -#> 1815 Gonzalo Melero (P) · 72&rsquor; -#> 1816 Gonzalo Melero (P) · 72&rsquor; -#> 1817 Gonzalo Melero (P) · 72&rsquor; -#> 1818 Gonzalo Melero (P) · 72&rsquor; -#> 1819 -#> 1820 -#> 1821 -#> 1822 -#> 1823 -#> 1824 -#> 1825 -#> 1826 -#> 1827 -#> 1828 -#> 1829 -#> 1830 -#> 1831 -#> 1832 -#> 1833 -#> 1834 -#> 1835 -#> 1836 -#> 1837 -#> 1838 -#> 1839 -#> 1840 -#> 1841 -#> 1842 -#> 1843 -#> 1844 -#> 1845 -#> 1846 -#> 1847 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1848 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1849 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1850 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1851 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1852 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1853 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1854 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1855 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1856 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1857 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1858 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1859 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1860 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1861 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1862 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1863 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1864 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1865 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1866 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1867 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1868 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1869 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1870 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1871 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1872 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1873 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1874 Jason · 19&rsquor; Toño · 36&rsquor; -#> 1875 Loren Morón · 89&rsquor; -#> 1876 Loren Morón · 89&rsquor; -#> 1877 Loren Morón · 89&rsquor; -#> 1878 Loren Morón · 89&rsquor; -#> 1879 Loren Morón · 89&rsquor; -#> 1880 Loren Morón · 89&rsquor; -#> 1881 Loren Morón · 89&rsquor; -#> 1882 Loren Morón · 89&rsquor; -#> 1883 Loren Morón · 89&rsquor; -#> 1884 Loren Morón · 89&rsquor; -#> 1885 Loren Morón · 89&rsquor; -#> 1886 Loren Morón · 89&rsquor; -#> 1887 Loren Morón · 89&rsquor; -#> 1888 Loren Morón · 89&rsquor; -#> 1889 Loren Morón · 89&rsquor; -#> 1890 Loren Morón · 89&rsquor; -#> 1891 Loren Morón · 89&rsquor; -#> 1892 Loren Morón · 89&rsquor; -#> 1893 Loren Morón · 89&rsquor; -#> 1894 Loren Morón · 89&rsquor; -#> 1895 Loren Morón · 89&rsquor; -#> 1896 Loren Morón · 89&rsquor; -#> 1897 Loren Morón · 89&rsquor; -#> 1898 Loren Morón · 89&rsquor; -#> 1899 Loren Morón · 89&rsquor; -#> 1900 Loren Morón · 89&rsquor; -#> 1901 Loren Morón · 89&rsquor; -#> 1902 Loren Morón · 89&rsquor; -#> 1903 Maxi Gómez · 33&rsquor; -#> 1904 Maxi Gómez · 33&rsquor; -#> 1905 Maxi Gómez · 33&rsquor; -#> 1906 Maxi Gómez · 33&rsquor; -#> 1907 Maxi Gómez · 33&rsquor; -#> 1908 Maxi Gómez · 33&rsquor; -#> 1909 Maxi Gómez · 33&rsquor; -#> 1910 Maxi Gómez · 33&rsquor; -#> 1911 Maxi Gómez · 33&rsquor; -#> 1912 Maxi Gómez · 33&rsquor; -#> 1913 Maxi Gómez · 33&rsquor; -#> 1914 Maxi Gómez · 33&rsquor; -#> 1915 Maxi Gómez · 33&rsquor; -#> 1916 Maxi Gómez · 33&rsquor; -#> 1917 Maxi Gómez · 33&rsquor; -#> 1918 Maxi Gómez · 33&rsquor; -#> 1919 Maxi Gómez · 33&rsquor; -#> 1920 Maxi Gómez · 33&rsquor; -#> 1921 Maxi Gómez · 33&rsquor; -#> 1922 Maxi Gómez · 33&rsquor; -#> 1923 Maxi Gómez · 33&rsquor; -#> 1924 Maxi Gómez · 33&rsquor; -#> 1925 Maxi Gómez · 33&rsquor; -#> 1926 Maxi Gómez · 33&rsquor; -#> 1927 Maxi Gómez · 33&rsquor; -#> 1928 Maxi Gómez · 33&rsquor; -#> 1929 Maxi Gómez · 33&rsquor; -#> 1930 Maxi Gómez · 33&rsquor; -#> 1931 Iker Muniain · 32&rsquor; -#> 1932 Iker Muniain · 32&rsquor; -#> 1933 Iker Muniain · 32&rsquor; -#> 1934 Iker Muniain · 32&rsquor; -#> 1935 Iker Muniain · 32&rsquor; -#> 1936 Iker Muniain · 32&rsquor; -#> 1937 Iker Muniain · 32&rsquor; -#> 1938 Iker Muniain · 32&rsquor; -#> 1939 Iker Muniain · 32&rsquor; -#> 1940 Iker Muniain · 32&rsquor; -#> 1941 Iker Muniain · 32&rsquor; -#> 1942 Iker Muniain · 32&rsquor; -#> 1943 Iker Muniain · 32&rsquor; -#> 1944 Iker Muniain · 32&rsquor; -#> 1945 Iker Muniain · 32&rsquor; -#> 1946 Iker Muniain · 32&rsquor; -#> 1947 Iker Muniain · 32&rsquor; -#> 1948 Iker Muniain · 32&rsquor; -#> 1949 Iker Muniain · 32&rsquor; -#> 1950 Iker Muniain · 32&rsquor; -#> 1951 Iker Muniain · 32&rsquor; -#> 1952 Iker Muniain · 32&rsquor; -#> 1953 Iker Muniain · 32&rsquor; -#> 1954 Iker Muniain · 32&rsquor; -#> 1955 Iker Muniain · 32&rsquor; -#> 1956 Iker Muniain · 32&rsquor; -#> 1957 Iker Muniain · 32&rsquor; -#> 1958 Iker Muniain · 32&rsquor; -#> 1959 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1960 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1961 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1962 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1963 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1964 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1965 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1966 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1967 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1968 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1969 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1970 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1971 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1972 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1973 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1974 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1975 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1976 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1977 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1978 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1979 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1980 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1981 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1982 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1983 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1984 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1985 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1986 Cristhian Stuani · 40&rsquor; Cristhian Stuani · 42&rsquor; -#> 1987 Francisco Portillo · 90+1&rsquor; -#> 1988 Francisco Portillo · 90+1&rsquor; -#> 1989 Francisco Portillo · 90+1&rsquor; -#> 1990 Francisco Portillo · 90+1&rsquor; -#> 1991 Francisco Portillo · 90+1&rsquor; -#> 1992 Francisco Portillo · 90+1&rsquor; -#> 1993 Francisco Portillo · 90+1&rsquor; -#> 1994 Francisco Portillo · 90+1&rsquor; -#> 1995 Francisco Portillo · 90+1&rsquor; -#> 1996 Francisco Portillo · 90+1&rsquor; -#> 1997 Francisco Portillo · 90+1&rsquor; -#> 1998 Francisco Portillo · 90+1&rsquor; -#> 1999 Francisco Portillo · 90+1&rsquor; -#> 2000 Francisco Portillo · 90+1&rsquor; -#> 2001 Francisco Portillo · 90+1&rsquor; -#> 2002 Francisco Portillo · 90+1&rsquor; -#> 2003 Francisco Portillo · 90+1&rsquor; -#> 2004 Francisco Portillo · 90+1&rsquor; -#> 2005 Francisco Portillo · 90+1&rsquor; -#> 2006 Francisco Portillo · 90+1&rsquor; -#> 2007 Francisco Portillo · 90+1&rsquor; -#> 2008 Francisco Portillo · 90+1&rsquor; -#> 2009 Francisco Portillo · 90+1&rsquor; -#> 2010 Francisco Portillo · 90+1&rsquor; -#> 2011 Francisco Portillo · 90+1&rsquor; -#> 2012 Francisco Portillo · 90+1&rsquor; -#> 2013 Francisco Portillo · 90+1&rsquor; -#> 2014 Francisco Portillo · 90+1&rsquor; -#> 2015 Manu García · 90+5&rsquor; -#> 2016 Manu García · 90+5&rsquor; -#> 2017 Manu García · 90+5&rsquor; -#> 2018 Manu García · 90+5&rsquor; -#> 2019 Manu García · 90+5&rsquor; -#> 2020 Manu García · 90+5&rsquor; -#> 2021 Manu García · 90+5&rsquor; -#> 2022 Manu García · 90+5&rsquor; -#> 2023 Manu García · 90+5&rsquor; -#> 2024 Manu García · 90+5&rsquor; -#> 2025 Manu García · 90+5&rsquor; -#> 2026 Manu García · 90+5&rsquor; -#> 2027 Manu García · 90+5&rsquor; -#> 2028 Manu García · 90+5&rsquor; -#> 2029 Manu García · 90+5&rsquor; -#> 2030 Manu García · 90+5&rsquor; -#> 2031 Manu García · 90+5&rsquor; -#> 2032 Manu García · 90+5&rsquor; -#> 2033 Manu García · 90+5&rsquor; -#> 2034 Manu García · 90+5&rsquor; -#> 2035 Manu García · 90+5&rsquor; -#> 2036 Manu García · 90+5&rsquor; -#> 2037 Manu García · 90+5&rsquor; -#> 2038 Manu García · 90+5&rsquor; -#> 2039 Manu García · 90+5&rsquor; -#> 2040 Manu García · 90+5&rsquor; -#> Home_Yellow_Cards Home_Red_Cards Away_Team Away_Formation Away_Score -#> 1 1 0 Valladolid 4-2-3-1 0 -#> 2 1 0 Valladolid 4-2-3-1 0 -#> 3 1 0 Valladolid 4-2-3-1 0 -#> 4 1 0 Valladolid 4-2-3-1 0 -#> 5 1 0 Valladolid 4-2-3-1 0 -#> 6 1 0 Valladolid 4-2-3-1 0 -#> 7 1 0 Valladolid 4-2-3-1 0 -#> 8 1 0 Valladolid 4-2-3-1 0 -#> 9 1 0 Valladolid 4-2-3-1 0 -#> 10 1 0 Valladolid 4-2-3-1 0 -#> 11 1 0 Valladolid 4-2-3-1 0 -#> 12 1 0 Valladolid 4-2-3-1 0 -#> 13 1 0 Valladolid 4-2-3-1 0 -#> 14 1 0 Valladolid 4-2-3-1 0 -#> 15 1 0 Valladolid 4-2-3-1 0 -#> 16 1 0 Valladolid 4-2-3-1 0 -#> 17 1 0 Valladolid 4-2-3-1 0 -#> 18 1 0 Valladolid 4-2-3-1 0 -#> 19 1 0 Valladolid 4-2-3-1 0 -#> 20 1 0 Valladolid 4-2-3-1 0 -#> 21 1 0 Valladolid 4-2-3-1 0 -#> 22 1 0 Valladolid 4-2-3-1 0 -#> 23 1 0 Valladolid 4-2-3-1 0 -#> 24 1 0 Valladolid 4-2-3-1 0 -#> 25 1 0 Valladolid 4-2-3-1 0 -#> 26 1 0 Valladolid 4-2-3-1 0 -#> 27 1 0 Valladolid 4-2-3-1 0 -#> 28 1 0 Valladolid 4-2-3-1 0 -#> 29 0 0 Levante 4-4-2 3 -#> 30 0 0 Levante 4-4-2 3 -#> 31 0 0 Levante 4-4-2 3 -#> 32 0 0 Levante 4-4-2 3 -#> 33 0 0 Levante 4-4-2 3 -#> 34 0 0 Levante 4-4-2 3 -#> 35 0 0 Levante 4-4-2 3 -#> 36 0 0 Levante 4-4-2 3 -#> 37 0 0 Levante 4-4-2 3 -#> 38 0 0 Levante 4-4-2 3 -#> 39 0 0 Levante 4-4-2 3 -#> 40 0 0 Levante 4-4-2 3 -#> 41 0 0 Levante 4-4-2 3 -#> 42 0 0 Levante 4-4-2 3 -#> 43 0 0 Levante 4-4-2 3 -#> 44 0 0 Levante 4-4-2 3 -#> 45 0 0 Levante 4-4-2 3 -#> 46 0 0 Levante 4-4-2 3 -#> 47 0 0 Levante 4-4-2 3 -#> 48 0 0 Levante 4-4-2 3 -#> 49 0 0 Levante 4-4-2 3 -#> 50 0 0 Levante 4-4-2 3 -#> 51 0 0 Levante 4-4-2 3 -#> 52 0 0 Levante 4-4-2 3 -#> 53 0 0 Levante 4-4-2 3 -#> 54 0 0 Levante 4-4-2 3 -#> 55 0 0 Levante 4-4-2 3 -#> 56 0 0 Levante 4-4-2 3 -#> 57 3 0 Espanyol 4-3-3 1 -#> 58 3 0 Espanyol 4-3-3 1 -#> 59 3 0 Espanyol 4-3-3 1 -#> 60 3 0 Espanyol 4-3-3 1 -#> 61 3 0 Espanyol 4-3-3 1 -#> 62 3 0 Espanyol 4-3-3 1 -#> 63 3 0 Espanyol 4-3-3 1 -#> 64 3 0 Espanyol 4-3-3 1 -#> 65 3 0 Espanyol 4-3-3 1 -#> 66 3 0 Espanyol 4-3-3 1 -#> 67 3 0 Espanyol 4-3-3 1 -#> 68 3 0 Espanyol 4-3-3 1 -#> 69 3 0 Espanyol 4-3-3 1 -#> 70 3 0 Espanyol 4-3-3 1 -#> 71 3 0 Espanyol 4-3-3 1 -#> 72 3 0 Espanyol 4-3-3 1 -#> 73 3 0 Espanyol 4-3-3 1 -#> 74 3 0 Espanyol 4-3-3 1 -#> 75 3 0 Espanyol 4-3-3 1 -#> 76 3 0 Espanyol 4-3-3 1 -#> 77 3 0 Espanyol 4-3-3 1 -#> 78 3 0 Espanyol 4-3-3 1 -#> 79 3 0 Espanyol 4-3-3 1 -#> 80 3 0 Espanyol 4-3-3 1 -#> 81 3 0 Espanyol 4-3-3 1 -#> 82 3 0 Espanyol 4-3-3 1 -#> 83 3 0 Espanyol 4-3-3 1 -#> 84 3 0 Espanyol 4-3-3 1 -#> 85 2 0 Real Sociedad 4-4-1-1 2 -#> 86 2 0 Real Sociedad 4-4-1-1 2 -#> 87 2 0 Real Sociedad 4-4-1-1 2 -#> 88 2 0 Real Sociedad 4-4-1-1 2 -#> 89 2 0 Real Sociedad 4-4-1-1 2 -#> 90 2 0 Real Sociedad 4-4-1-1 2 -#> 91 2 0 Real Sociedad 4-4-1-1 2 -#> 92 2 0 Real Sociedad 4-4-1-1 2 -#> 93 2 0 Real Sociedad 4-4-1-1 2 -#> 94 2 0 Real Sociedad 4-4-1-1 2 -#> 95 2 0 Real Sociedad 4-4-1-1 2 -#> 96 2 0 Real Sociedad 4-4-1-1 2 -#> 97 2 0 Real Sociedad 4-4-1-1 2 -#> 98 2 0 Real Sociedad 4-4-1-1 2 -#> 99 2 0 Real Sociedad 4-4-1-1 2 -#> 100 2 0 Real Sociedad 4-4-1-1 2 -#> 101 2 0 Real Sociedad 4-4-1-1 2 -#> 102 2 0 Real Sociedad 4-4-1-1 2 -#> 103 2 0 Real Sociedad 4-4-1-1 2 -#> 104 2 0 Real Sociedad 4-4-1-1 2 -#> 105 2 0 Real Sociedad 4-4-1-1 2 -#> 106 2 0 Real Sociedad 4-4-1-1 2 -#> 107 2 0 Real Sociedad 4-4-1-1 2 -#> 108 2 0 Real Sociedad 4-4-1-1 2 -#> 109 2 0 Real Sociedad 4-4-1-1 2 -#> 110 2 0 Real Sociedad 4-4-1-1 2 -#> 111 2 0 Real Sociedad 4-4-1-1 2 -#> 112 2 0 Real Sociedad 4-4-1-1 2 -#> 113 0 0 Alavés 4-5-1 0 -#> 114 0 0 Alavés 4-5-1 0 -#> 115 0 0 Alavés 4-5-1 0 -#> 116 0 0 Alavés 4-5-1 0 -#> 117 0 0 Alavés 4-5-1 0 -#> 118 0 0 Alavés 4-5-1 0 -#> 119 0 0 Alavés 4-5-1 0 -#> 120 0 0 Alavés 4-5-1 0 -#> 121 0 0 Alavés 4-5-1 0 -#> 122 0 0 Alavés 4-5-1 0 -#> 123 0 0 Alavés 4-5-1 0 -#> 124 0 0 Alavés 4-5-1 0 -#> 125 0 0 Alavés 4-5-1 0 -#> 126 0 0 Alavés 4-5-1 0 -#> 127 0 0 Alavés 4-5-1 0 -#> 128 0 0 Alavés 4-5-1 0 -#> 129 0 0 Alavés 4-5-1 0 -#> 130 0 0 Alavés 4-5-1 0 -#> 131 0 0 Alavés 4-5-1 0 -#> 132 0 0 Alavés 4-5-1 0 -#> 133 0 0 Alavés 4-5-1 0 -#> 134 0 0 Alavés 4-5-1 0 -#> 135 0 0 Alavés 4-5-1 0 -#> 136 0 0 Alavés 4-5-1 0 -#> 137 0 0 Alavés 4-5-1 0 -#> 138 0 0 Alavés 4-5-1 0 -#> 139 0 0 Alavés 4-5-1 0 -#> 140 0 0 Alavés 4-5-1 0 -#> 141 1 0 Huesca 4-4-2 2 -#> 142 1 0 Huesca 4-4-2 2 -#> 143 1 0 Huesca 4-4-2 2 -#> 144 1 0 Huesca 4-4-2 2 -#> 145 1 0 Huesca 4-4-2 2 -#> 146 1 0 Huesca 4-4-2 2 -#> 147 1 0 Huesca 4-4-2 2 -#> 148 1 0 Huesca 4-4-2 2 -#> 149 1 0 Huesca 4-4-2 2 -#> 150 1 0 Huesca 4-4-2 2 -#> 151 1 0 Huesca 4-4-2 2 -#> 152 1 0 Huesca 4-4-2 2 -#> 153 1 0 Huesca 4-4-2 2 -#> 154 1 0 Huesca 4-4-2 2 -#> 155 1 0 Huesca 4-4-2 2 -#> 156 1 0 Huesca 4-4-2 2 -#> 157 1 0 Huesca 4-4-2 2 -#> 158 1 0 Huesca 4-4-2 2 -#> 159 1 0 Huesca 4-4-2 2 -#> 160 1 0 Huesca 4-4-2 2 -#> 161 1 0 Huesca 4-4-2 2 -#> 162 1 0 Huesca 4-4-2 2 -#> 163 1 0 Huesca 4-4-2 2 -#> 164 1 0 Huesca 4-4-2 2 -#> 165 1 0 Huesca 4-4-2 2 -#> 166 1 0 Huesca 4-4-2 2 -#> 167 1 0 Huesca 4-4-2 2 -#> 168 1 0 Huesca 4-4-2 2 -#> 169 1 0 Sevilla 3-4-3 4 -#> 170 1 0 Sevilla 3-4-3 4 -#> 171 1 0 Sevilla 3-4-3 4 -#> 172 1 0 Sevilla 3-4-3 4 -#> 173 1 0 Sevilla 3-4-3 4 -#> 174 1 0 Sevilla 3-4-3 4 -#> 175 1 0 Sevilla 3-4-3 4 -#> 176 1 0 Sevilla 3-4-3 4 -#> 177 1 0 Sevilla 3-4-3 4 -#> 178 1 0 Sevilla 3-4-3 4 -#> 179 1 0 Sevilla 3-4-3 4 -#> 180 1 0 Sevilla 3-4-3 4 -#> 181 1 0 Sevilla 3-4-3 4 -#> 182 1 0 Sevilla 3-4-3 4 -#> 183 1 0 Sevilla 3-4-3 4 -#> 184 1 0 Sevilla 3-4-3 4 -#> 185 1 0 Sevilla 3-4-3 4 -#> 186 1 0 Sevilla 3-4-3 4 -#> 187 1 0 Sevilla 3-4-3 4 -#> 188 1 0 Sevilla 3-4-3 4 -#> 189 1 0 Sevilla 3-4-3 4 -#> 190 1 0 Sevilla 3-4-3 4 -#> 191 1 0 Sevilla 3-4-3 4 -#> 192 1 0 Sevilla 3-4-3 4 -#> 193 1 0 Sevilla 3-4-3 4 -#> 194 1 0 Sevilla 3-4-3 4 -#> 195 1 0 Sevilla 3-4-3 4 -#> 196 1 0 Getafe 4-1-4-1 0 -#> 197 1 0 Getafe 4-1-4-1 0 -#> 198 1 0 Getafe 4-1-4-1 0 -#> 199 1 0 Getafe 4-1-4-1 0 -#> 200 1 0 Getafe 4-1-4-1 0 -#> 201 1 0 Getafe 4-1-4-1 0 -#> 202 1 0 Getafe 4-1-4-1 0 -#> 203 1 0 Getafe 4-1-4-1 0 -#> 204 1 0 Getafe 4-1-4-1 0 -#> 205 1 0 Getafe 4-1-4-1 0 -#> 206 1 0 Getafe 4-1-4-1 0 -#> 207 1 0 Getafe 4-1-4-1 0 -#> 208 1 0 Getafe 4-1-4-1 0 -#> 209 1 0 Getafe 4-1-4-1 0 -#> 210 1 0 Getafe 4-1-4-1 0 -#> 211 1 0 Getafe 4-1-4-1 0 -#> 212 1 0 Getafe 4-1-4-1 0 -#> 213 1 0 Getafe 4-1-4-1 0 -#> 214 1 0 Getafe 4-1-4-1 0 -#> 215 1 0 Getafe 4-1-4-1 0 -#> 216 1 0 Getafe 4-1-4-1 0 -#> 217 1 0 Getafe 4-1-4-1 0 -#> 218 1 0 Getafe 4-1-4-1 0 -#> 219 1 0 Getafe 4-1-4-1 0 -#> 220 1 0 Getafe 4-1-4-1 0 -#> 221 1 0 Getafe 4-1-4-1 0 -#> 222 1 0 Getafe 4-1-4-1 0 -#> 223 1 0 Getafe 4-1-4-1 0 -#> 224 2 0 Atlético Madrid 4-4-2 1 -#> 225 2 0 Atlético Madrid 4-4-2 1 -#> 226 2 0 Atlético Madrid 4-4-2 1 -#> 227 2 0 Atlético Madrid 4-4-2 1 -#> 228 2 0 Atlético Madrid 4-4-2 1 -#> 229 2 0 Atlético Madrid 4-4-2 1 -#> 230 2 0 Atlético Madrid 4-4-2 1 -#> 231 2 0 Atlético Madrid 4-4-2 1 -#> 232 2 0 Atlético Madrid 4-4-2 1 -#> 233 2 0 Atlético Madrid 4-4-2 1 -#> 234 2 0 Atlético Madrid 4-4-2 1 -#> 235 2 0 Atlético Madrid 4-4-2 1 -#> 236 2 0 Atlético Madrid 4-4-2 1 -#> 237 2 0 Atlético Madrid 4-4-2 1 -#> 238 2 0 Atlético Madrid 4-4-2 1 -#> 239 2 0 Atlético Madrid 4-4-2 1 -#> 240 2 0 Atlético Madrid 4-4-2 1 -#> 241 2 0 Atlético Madrid 4-4-2 1 -#> 242 2 0 Atlético Madrid 4-4-2 1 -#> 243 2 0 Atlético Madrid 4-4-2 1 -#> 244 2 0 Atlético Madrid 4-4-2 1 -#> 245 2 0 Atlético Madrid 4-4-2 1 -#> 246 2 0 Atlético Madrid 4-4-2 1 -#> 247 2 0 Atlético Madrid 4-4-2 1 -#> 248 2 0 Atlético Madrid 4-4-2 1 -#> 249 2 0 Atlético Madrid 4-4-2 1 -#> 250 2 0 Atlético Madrid 4-4-2 1 -#> 251 2 0 Atlético Madrid 4-4-2 1 -#> 252 4 0 Leganés 4-4-1-1 1 -#> 253 4 0 Leganés 4-4-1-1 1 -#> 254 4 0 Leganés 4-4-1-1 1 -#> 255 4 0 Leganés 4-4-1-1 1 -#> 256 4 0 Leganés 4-4-1-1 1 -#> 257 4 0 Leganés 4-4-1-1 1 -#> 258 4 0 Leganés 4-4-1-1 1 -#> 259 4 0 Leganés 4-4-1-1 1 -#> 260 4 0 Leganés 4-4-1-1 1 -#> 261 4 0 Leganés 4-4-1-1 1 -#> 262 4 0 Leganés 4-4-1-1 1 -#> 263 4 0 Leganés 4-4-1-1 1 -#> 264 4 0 Leganés 4-4-1-1 1 -#> 265 4 0 Leganés 4-4-1-1 1 -#> 266 4 0 Leganés 4-4-1-1 1 -#> 267 4 0 Leganés 4-4-1-1 1 -#> 268 4 0 Leganés 4-4-1-1 1 -#> 269 4 0 Leganés 4-4-1-1 1 -#> 270 4 0 Leganés 4-4-1-1 1 -#> 271 4 0 Leganés 4-4-1-1 1 -#> 272 4 0 Leganés 4-4-1-1 1 -#> 273 4 0 Leganés 4-4-1-1 1 -#> 274 4 0 Leganés 4-4-1-1 1 -#> 275 4 0 Leganés 4-4-1-1 1 -#> 276 4 0 Leganés 4-4-1-1 1 -#> 277 4 0 Leganés 4-4-1-1 1 -#> 278 4 0 Leganés 4-4-1-1 1 -#> 279 4 0 Leganés 4-4-1-1 1 -#> 280 2 0 Eibar 4-4-2 0 -#> 281 2 0 Eibar 4-4-2 0 -#> 282 2 0 Eibar 4-4-2 0 -#> 283 2 0 Eibar 4-4-2 0 -#> 284 2 0 Eibar 4-4-2 0 -#> 285 2 0 Eibar 4-4-2 0 -#> 286 2 0 Eibar 4-4-2 0 -#> 287 2 0 Eibar 4-4-2 0 -#> 288 2 0 Eibar 4-4-2 0 -#> 289 2 0 Eibar 4-4-2 0 -#> 290 2 0 Eibar 4-4-2 0 -#> 291 2 0 Eibar 4-4-2 0 -#> 292 2 0 Eibar 4-4-2 0 -#> 293 2 0 Eibar 4-4-2 0 -#> 294 2 0 Eibar 4-4-2 0 -#> 295 2 0 Eibar 4-4-2 0 -#> 296 2 0 Eibar 4-4-2 0 -#> 297 2 0 Eibar 4-4-2 0 -#> 298 2 0 Eibar 4-4-2 0 -#> 299 2 0 Eibar 4-4-2 0 -#> 300 2 0 Eibar 4-4-2 0 -#> 301 2 0 Eibar 4-4-2 0 -#> 302 2 0 Eibar 4-4-2 0 -#> 303 2 0 Eibar 4-4-2 0 -#> 304 2 0 Eibar 4-4-2 0 -#> 305 2 0 Eibar 4-4-2 0 -#> 306 2 0 Eibar 4-4-2 0 -#> 307 2 0 Eibar 4-4-2 0 -#> 308 1 0 Real Sociedad 4-4-2 2 -#> 309 1 0 Real Sociedad 4-4-2 2 -#> 310 1 0 Real Sociedad 4-4-2 2 -#> 311 1 0 Real Sociedad 4-4-2 2 -#> 312 1 0 Real Sociedad 4-4-2 2 -#> 313 1 0 Real Sociedad 4-4-2 2 -#> 314 1 0 Real Sociedad 4-4-2 2 -#> 315 1 0 Real Sociedad 4-4-2 2 -#> 316 1 0 Real Sociedad 4-4-2 2 -#> 317 1 0 Real Sociedad 4-4-2 2 -#> 318 1 0 Real Sociedad 4-4-2 2 -#> 319 1 0 Real Sociedad 4-4-2 2 -#> 320 1 0 Real Sociedad 4-4-2 2 -#> 321 1 0 Real Sociedad 4-4-2 2 -#> 322 1 0 Real Sociedad 4-4-2 2 -#> 323 1 0 Real Sociedad 4-4-2 2 -#> 324 1 0 Real Sociedad 4-4-2 2 -#> 325 1 0 Real Sociedad 4-4-2 2 -#> 326 1 0 Real Sociedad 4-4-2 2 -#> 327 1 0 Real Sociedad 4-4-2 2 -#> 328 1 0 Real Sociedad 4-4-2 2 -#> 329 1 0 Real Sociedad 4-4-2 2 -#> 330 1 0 Real Sociedad 4-4-2 2 -#> 331 1 0 Real Sociedad 4-4-2 2 -#> 332 1 0 Real Sociedad 4-4-2 2 -#> 333 1 0 Real Sociedad 4-4-2 2 -#> 334 1 0 Real Sociedad 4-4-2 2 -#> 335 1 0 Real Sociedad 4-4-2 2 -#> 336 3 0 Real Betis 3-4-3 0 -#> 337 3 0 Real Betis 3-4-3 0 -#> 338 3 0 Real Betis 3-4-3 0 -#> 339 3 0 Real Betis 3-4-3 0 -#> 340 3 0 Real Betis 3-4-3 0 -#> 341 3 0 Real Betis 3-4-3 0 -#> 342 3 0 Real Betis 3-4-3 0 -#> 343 3 0 Real Betis 3-4-3 0 -#> 344 3 0 Real Betis 3-4-3 0 -#> 345 3 0 Real Betis 3-4-3 0 -#> 346 3 0 Real Betis 3-4-3 0 -#> 347 3 0 Real Betis 3-4-3 0 -#> 348 3 0 Real Betis 3-4-3 0 -#> 349 3 0 Real Betis 3-4-3 0 -#> 350 3 0 Real Betis 3-4-3 0 -#> 351 3 0 Real Betis 3-4-3 0 -#> 352 3 0 Real Betis 3-4-3 0 -#> 353 3 0 Real Betis 3-4-3 0 -#> 354 3 0 Real Betis 3-4-3 0 -#> 355 3 0 Real Betis 3-4-3 0 -#> 356 3 0 Real Betis 3-4-3 0 -#> 357 3 0 Real Betis 3-4-3 0 -#> 358 3 0 Real Betis 3-4-3 0 -#> 359 3 0 Real Betis 3-4-3 0 -#> 360 3 0 Real Betis 3-4-3 0 -#> 361 3 0 Real Betis 3-4-3 0 -#> 362 3 0 Real Betis 3-4-3 0 -#> 363 3 0 Real Betis 3-4-3 0 -#> 364 1 0 Rayo Vallecano 4-1-4-1 0 -#> 365 1 0 Rayo Vallecano 4-1-4-1 0 -#> 366 1 0 Rayo Vallecano 4-1-4-1 0 -#> 367 1 0 Rayo Vallecano 4-1-4-1 0 -#> 368 1 0 Rayo Vallecano 4-1-4-1 0 -#> 369 1 0 Rayo Vallecano 4-1-4-1 0 -#> 370 1 0 Rayo Vallecano 4-1-4-1 0 -#> 371 1 0 Rayo Vallecano 4-1-4-1 0 -#> 372 1 0 Rayo Vallecano 4-1-4-1 0 -#> 373 1 0 Rayo Vallecano 4-1-4-1 0 -#> 374 1 0 Rayo Vallecano 4-1-4-1 0 -#> 375 1 0 Rayo Vallecano 4-1-4-1 0 -#> 376 1 0 Rayo Vallecano 4-1-4-1 0 -#> 377 1 0 Rayo Vallecano 4-1-4-1 0 -#> 378 1 0 Rayo Vallecano 4-1-4-1 0 -#> 379 1 0 Rayo Vallecano 4-1-4-1 0 -#> 380 1 0 Rayo Vallecano 4-1-4-1 0 -#> 381 1 0 Rayo Vallecano 4-1-4-1 0 -#> 382 1 0 Rayo Vallecano 4-1-4-1 0 -#> 383 1 0 Rayo Vallecano 4-1-4-1 0 -#> 384 1 0 Rayo Vallecano 4-1-4-1 0 -#> 385 1 0 Rayo Vallecano 4-1-4-1 0 -#> 386 1 0 Rayo Vallecano 4-1-4-1 0 -#> 387 1 0 Rayo Vallecano 4-1-4-1 0 -#> 388 1 0 Rayo Vallecano 4-1-4-1 0 -#> 389 1 0 Rayo Vallecano 4-1-4-1 0 -#> 390 1 0 Rayo Vallecano 4-1-4-1 0 -#> 391 1 0 Rayo Vallecano 4-1-4-1 0 -#> 392 1 0 Barcelona 4-3-3 1 -#> 393 1 0 Barcelona 4-3-3 1 -#> 394 1 0 Barcelona 4-3-3 1 -#> 395 1 0 Barcelona 4-3-3 1 -#> 396 1 0 Barcelona 4-3-3 1 -#> 397 1 0 Barcelona 4-3-3 1 -#> 398 1 0 Barcelona 4-3-3 1 -#> 399 1 0 Barcelona 4-3-3 1 -#> 400 1 0 Barcelona 4-3-3 1 -#> 401 1 0 Barcelona 4-3-3 1 -#> 402 1 0 Barcelona 4-3-3 1 -#> 403 1 0 Barcelona 4-3-3 1 -#> 404 1 0 Barcelona 4-3-3 1 -#> 405 1 0 Barcelona 4-3-3 1 -#> 406 1 0 Barcelona 4-3-3 1 -#> 407 1 0 Barcelona 4-3-3 1 -#> 408 1 0 Barcelona 4-3-3 1 -#> 409 1 0 Barcelona 4-3-3 1 -#> 410 1 0 Barcelona 4-3-3 1 -#> 411 1 0 Barcelona 4-3-3 1 -#> 412 1 0 Barcelona 4-3-3 1 -#> 413 1 0 Barcelona 4-3-3 1 -#> 414 1 0 Barcelona 4-3-3 1 -#> 415 1 0 Barcelona 4-3-3 1 -#> 416 1 0 Barcelona 4-3-3 1 -#> 417 1 0 Barcelona 4-3-3 1 -#> 418 1 0 Barcelona 4-3-3 1 -#> 419 1 0 Barcelona 4-3-3 1 -#> 420 1 0 Valencia 4-4-2 0 -#> 421 1 0 Valencia 4-4-2 0 -#> 422 1 0 Valencia 4-4-2 0 -#> 423 1 0 Valencia 4-4-2 0 -#> 424 1 0 Valencia 4-4-2 0 -#> 425 1 0 Valencia 4-4-2 0 -#> 426 1 0 Valencia 4-4-2 0 -#> 427 1 0 Valencia 4-4-2 0 -#> 428 1 0 Valencia 4-4-2 0 -#> 429 1 0 Valencia 4-4-2 0 -#> 430 1 0 Valencia 4-4-2 0 -#> 431 1 0 Valencia 4-4-2 0 -#> 432 1 0 Valencia 4-4-2 0 -#> 433 1 0 Valencia 4-4-2 0 -#> 434 1 0 Valencia 4-4-2 0 -#> 435 1 0 Valencia 4-4-2 0 -#> 436 1 0 Valencia 4-4-2 0 -#> 437 1 0 Valencia 4-4-2 0 -#> 438 1 0 Valencia 4-4-2 0 -#> 439 1 0 Valencia 4-4-2 0 -#> 440 1 0 Valencia 4-4-2 0 -#> 441 1 0 Valencia 4-4-2 0 -#> 442 1 0 Valencia 4-4-2 0 -#> 443 1 0 Valencia 4-4-2 0 -#> 444 1 0 Valencia 4-4-2 0 -#> 445 1 0 Valencia 4-4-2 0 -#> 446 1 0 Valencia 4-4-2 0 -#> 447 1 0 Valencia 4-4-2 0 -#> 448 2 0 Real Madrid 4-2-3-1 4 -#> 449 2 0 Real Madrid 4-2-3-1 4 -#> 450 2 0 Real Madrid 4-2-3-1 4 -#> 451 2 0 Real Madrid 4-2-3-1 4 -#> 452 2 0 Real Madrid 4-2-3-1 4 -#> 453 2 0 Real Madrid 4-2-3-1 4 -#> 454 2 0 Real Madrid 4-2-3-1 4 -#> 455 2 0 Real Madrid 4-2-3-1 4 -#> 456 2 0 Real Madrid 4-2-3-1 4 -#> 457 2 0 Real Madrid 4-2-3-1 4 -#> 458 2 0 Real Madrid 4-2-3-1 4 -#> 459 2 0 Real Madrid 4-2-3-1 4 -#> 460 2 0 Real Madrid 4-2-3-1 4 -#> 461 2 0 Real Madrid 4-2-3-1 4 -#> 462 2 0 Real Madrid 4-2-3-1 4 -#> 463 2 0 Real Madrid 4-2-3-1 4 -#> 464 2 0 Real Madrid 4-2-3-1 4 -#> 465 2 0 Real Madrid 4-2-3-1 4 -#> 466 2 0 Real Madrid 4-2-3-1 4 -#> 467 2 0 Real Madrid 4-2-3-1 4 -#> 468 2 0 Real Madrid 4-2-3-1 4 -#> 469 2 0 Real Madrid 4-2-3-1 4 -#> 470 2 0 Real Madrid 4-2-3-1 4 -#> 471 2 0 Real Madrid 4-2-3-1 4 -#> 472 2 0 Real Madrid 4-2-3-1 4 -#> 473 2 0 Real Madrid 4-2-3-1 4 -#> 474 2 0 Real Madrid 4-2-3-1 4 -#> 475 2 0 Real Madrid 4-2-3-1 4 -#> 476 3 0 Villarreal 4-1-2-1-2 0 -#> 477 3 0 Villarreal 4-1-2-1-2 0 -#> 478 3 0 Villarreal 4-1-2-1-2 0 -#> 479 3 0 Villarreal 4-1-2-1-2 0 -#> 480 3 0 Villarreal 4-1-2-1-2 0 -#> 481 3 0 Villarreal 4-1-2-1-2 0 -#> 482 3 0 Villarreal 4-1-2-1-2 0 -#> 483 3 0 Villarreal 4-1-2-1-2 0 -#> 484 3 0 Villarreal 4-1-2-1-2 0 -#> 485 3 0 Villarreal 4-1-2-1-2 0 -#> 486 3 0 Villarreal 4-1-2-1-2 0 -#> 487 3 0 Villarreal 4-1-2-1-2 0 -#> 488 3 0 Villarreal 4-1-2-1-2 0 -#> 489 3 0 Villarreal 4-1-2-1-2 0 -#> 490 3 0 Villarreal 4-1-2-1-2 0 -#> 491 3 0 Villarreal 4-1-2-1-2 0 -#> 492 3 0 Villarreal 4-1-2-1-2 0 -#> 493 3 0 Villarreal 4-1-2-1-2 0 -#> 494 3 0 Villarreal 4-1-2-1-2 0 -#> 495 3 0 Villarreal 4-1-2-1-2 0 -#> 496 3 0 Villarreal 4-1-2-1-2 0 -#> 497 3 0 Villarreal 4-1-2-1-2 0 -#> 498 3 0 Villarreal 4-1-2-1-2 0 -#> 499 3 0 Villarreal 4-1-2-1-2 0 -#> 500 3 0 Villarreal 4-1-2-1-2 0 -#> 501 3 0 Villarreal 4-1-2-1-2 0 -#> 502 3 0 Villarreal 4-1-2-1-2 0 -#> 503 3 0 Villarreal 4-1-2-1-2 0 -#> 504 2 0 Celta Vigo 3-4-3 2 -#> 505 2 0 Celta Vigo 3-4-3 2 -#> 506 2 0 Celta Vigo 3-4-3 2 -#> 507 2 0 Celta Vigo 3-4-3 2 -#> 508 2 0 Celta Vigo 3-4-3 2 -#> 509 2 0 Celta Vigo 3-4-3 2 -#> 510 2 0 Celta Vigo 3-4-3 2 -#> 511 2 0 Celta Vigo 3-4-3 2 -#> 512 2 0 Celta Vigo 3-4-3 2 -#> 513 2 0 Celta Vigo 3-4-3 2 -#> 514 2 0 Celta Vigo 3-4-3 2 -#> 515 2 0 Celta Vigo 3-4-3 2 -#> 516 2 0 Celta Vigo 3-4-3 2 -#> 517 2 0 Celta Vigo 3-4-3 2 -#> 518 2 0 Celta Vigo 3-4-3 2 -#> 519 2 0 Celta Vigo 3-4-3 2 -#> 520 2 0 Celta Vigo 3-4-3 2 -#> 521 2 0 Celta Vigo 3-4-3 2 -#> 522 2 0 Celta Vigo 3-4-3 2 -#> 523 2 0 Celta Vigo 3-4-3 2 -#> 524 2 0 Celta Vigo 3-4-3 2 -#> 525 2 0 Celta Vigo 3-4-3 2 -#> 526 2 0 Celta Vigo 3-4-3 2 -#> 527 2 0 Celta Vigo 3-4-3 2 -#> 528 2 0 Celta Vigo 3-4-3 2 -#> 529 2 0 Celta Vigo 3-4-3 2 -#> 530 2 0 Celta Vigo 3-4-3 2 -#> 531 2 0 Celta Vigo 3-4-3 2 -#> 532 2 0 Huesca 4-4-2 2 -#> 533 2 0 Huesca 4-4-2 2 -#> 534 2 0 Huesca 4-4-2 2 -#> 535 2 0 Huesca 4-4-2 2 -#> 536 2 0 Huesca 4-4-2 2 -#> 537 2 0 Huesca 4-4-2 2 -#> 538 2 0 Huesca 4-4-2 2 -#> 539 2 0 Huesca 4-4-2 2 -#> 540 2 0 Huesca 4-4-2 2 -#> 541 2 0 Huesca 4-4-2 2 -#> 542 2 0 Huesca 4-4-2 2 -#> 543 2 0 Huesca 4-4-2 2 -#> 544 2 0 Huesca 4-4-2 2 -#> 545 2 0 Huesca 4-4-2 2 -#> 546 2 0 Huesca 4-4-2 2 -#> 547 2 0 Huesca 4-4-2 2 -#> 548 2 0 Huesca 4-4-2 2 -#> 549 2 0 Huesca 4-4-2 2 -#> 550 2 0 Huesca 4-4-2 2 -#> 551 2 0 Huesca 4-4-2 2 -#> 552 2 0 Huesca 4-4-2 2 -#> 553 2 0 Huesca 4-4-2 2 -#> 554 2 0 Huesca 4-4-2 2 -#> 555 2 0 Huesca 4-4-2 2 -#> 556 2 0 Huesca 4-4-2 2 -#> 557 2 0 Huesca 4-4-2 2 -#> 558 2 0 Huesca 4-4-2 2 -#> 559 2 0 Huesca 4-4-2 2 -#> 560 3 0 Valladolid 4-2-3-1 0 -#> 561 3 0 Valladolid 4-2-3-1 0 -#> 562 3 0 Valladolid 4-2-3-1 0 -#> 563 3 0 Valladolid 4-2-3-1 0 -#> 564 3 0 Valladolid 4-2-3-1 0 -#> 565 3 0 Valladolid 4-2-3-1 0 -#> 566 3 0 Valladolid 4-2-3-1 0 -#> 567 3 0 Valladolid 4-2-3-1 0 -#> 568 3 0 Valladolid 4-2-3-1 0 -#> 569 3 0 Valladolid 4-2-3-1 0 -#> 570 3 0 Valladolid 4-2-3-1 0 -#> 571 3 0 Valladolid 4-2-3-1 0 -#> 572 3 0 Valladolid 4-2-3-1 0 -#> 573 3 0 Valladolid 4-2-3-1 0 -#> 574 3 0 Valladolid 4-2-3-1 0 -#> 575 3 0 Valladolid 4-2-3-1 0 -#> 576 3 0 Valladolid 4-2-3-1 0 -#> 577 3 0 Valladolid 4-2-3-1 0 -#> 578 3 0 Valladolid 4-2-3-1 0 -#> 579 3 0 Valladolid 4-2-3-1 0 -#> 580 3 0 Valladolid 4-2-3-1 0 -#> 581 3 0 Valladolid 4-2-3-1 0 -#> 582 3 0 Valladolid 4-2-3-1 0 -#> 583 3 0 Valladolid 4-2-3-1 0 -#> 584 3 0 Valladolid 4-2-3-1 0 -#> 585 3 0 Valladolid 4-2-3-1 0 -#> 586 3 0 Valladolid 4-2-3-1 0 -#> 587 3 0 Valladolid 4-2-3-1 0 -#> 588 3 0 Girona 3-4-3 1 -#> 589 3 0 Girona 3-4-3 1 -#> 590 3 0 Girona 3-4-3 1 -#> 591 3 0 Girona 3-4-3 1 -#> 592 3 0 Girona 3-4-3 1 -#> 593 3 0 Girona 3-4-3 1 -#> 594 3 0 Girona 3-4-3 1 -#> 595 3 0 Girona 3-4-3 1 -#> 596 3 0 Girona 3-4-3 1 -#> 597 3 0 Girona 3-4-3 1 -#> 598 3 0 Girona 3-4-3 1 -#> 599 3 0 Girona 3-4-3 1 -#> 600 3 0 Girona 3-4-3 1 -#> 601 3 0 Girona 3-4-3 1 -#> 602 3 0 Girona 3-4-3 1 -#> 603 3 0 Girona 3-4-3 1 -#> 604 3 0 Girona 3-4-3 1 -#> 605 3 0 Girona 3-4-3 1 -#> 606 3 0 Girona 3-4-3 1 -#> 607 3 0 Girona 3-4-3 1 -#> 608 3 0 Girona 3-4-3 1 -#> 609 3 0 Girona 3-4-3 1 -#> 610 3 0 Girona 3-4-3 1 -#> 611 3 0 Girona 3-4-3 1 -#> 612 3 0 Girona 3-4-3 1 -#> 613 3 0 Girona 3-4-3 1 -#> 614 3 0 Girona 3-4-3 1 -#> 615 3 0 Girona 3-4-3 1 -#> 616 3 0 Real Sociedad 4-4-2 1 -#> 617 3 0 Real Sociedad 4-4-2 1 -#> 618 3 0 Real Sociedad 4-4-2 1 -#> 619 3 0 Real Sociedad 4-4-2 1 -#> 620 3 0 Real Sociedad 4-4-2 1 -#> 621 3 0 Real Sociedad 4-4-2 1 -#> 622 3 0 Real Sociedad 4-4-2 1 -#> 623 3 0 Real Sociedad 4-4-2 1 -#> 624 3 0 Real Sociedad 4-4-2 1 -#> 625 3 0 Real Sociedad 4-4-2 1 -#> 626 3 0 Real Sociedad 4-4-2 1 -#> 627 3 0 Real Sociedad 4-4-2 1 -#> 628 3 0 Real Sociedad 4-4-2 1 -#> 629 3 0 Real Sociedad 4-4-2 1 -#> 630 3 0 Real Sociedad 4-4-2 1 -#> 631 3 0 Real Sociedad 4-4-2 1 -#> 632 3 0 Real Sociedad 4-4-2 1 -#> 633 3 0 Real Sociedad 4-4-2 1 -#> 634 3 0 Real Sociedad 4-4-2 1 -#> 635 3 0 Real Sociedad 4-4-2 1 -#> 636 3 0 Real Sociedad 4-4-2 1 -#> 637 3 0 Real Sociedad 4-4-2 1 -#> 638 3 0 Real Sociedad 4-4-2 1 -#> 639 3 0 Real Sociedad 4-4-2 1 -#> 640 3 0 Real Sociedad 4-4-2 1 -#> 641 3 0 Real Sociedad 4-4-2 1 -#> 642 3 0 Real Sociedad 4-4-2 1 -#> 643 3 0 Real Sociedad 4-4-2 1 -#> 644 4 0 Atlético Madrid 4-4-2 0 -#> 645 4 0 Atlético Madrid 4-4-2 0 -#> 646 4 0 Atlético Madrid 4-4-2 0 -#> 647 4 0 Atlético Madrid 4-4-2 0 -#> 648 4 0 Atlético Madrid 4-4-2 0 -#> 649 4 0 Atlético Madrid 4-4-2 0 -#> 650 4 0 Atlético Madrid 4-4-2 0 -#> 651 4 0 Atlético Madrid 4-4-2 0 -#> 652 4 0 Atlético Madrid 4-4-2 0 -#> 653 4 0 Atlético Madrid 4-4-2 0 -#> 654 4 0 Atlético Madrid 4-4-2 0 -#> 655 4 0 Atlético Madrid 4-4-2 0 -#> 656 4 0 Atlético Madrid 4-4-2 0 -#> 657 4 0 Atlético Madrid 4-4-2 0 -#> 658 4 0 Atlético Madrid 4-4-2 0 -#> 659 4 0 Atlético Madrid 4-4-2 0 -#> 660 4 0 Atlético Madrid 4-4-2 0 -#> 661 4 0 Atlético Madrid 4-4-2 0 -#> 662 4 0 Atlético Madrid 4-4-2 0 -#> 663 4 0 Atlético Madrid 4-4-2 0 -#> 664 4 0 Atlético Madrid 4-4-2 0 -#> 665 4 0 Atlético Madrid 4-4-2 0 -#> 666 4 0 Atlético Madrid 4-4-2 0 -#> 667 4 0 Atlético Madrid 4-4-2 0 -#> 668 4 0 Atlético Madrid 4-4-2 0 -#> 669 4 0 Atlético Madrid 4-4-2 0 -#> 670 4 0 Atlético Madrid 4-4-2 0 -#> 671 4 0 Atlético Madrid 4-4-2 0 -#> 672 1 0 Leganés 4-4-2 1 -#> 673 1 0 Leganés 4-4-2 1 -#> 674 1 0 Leganés 4-4-2 1 -#> 675 1 0 Leganés 4-4-2 1 -#> 676 1 0 Leganés 4-4-2 1 -#> 677 1 0 Leganés 4-4-2 1 -#> 678 1 0 Leganés 4-4-2 1 -#> 679 1 0 Leganés 4-4-2 1 -#> 680 1 0 Leganés 4-4-2 1 -#> 681 1 0 Leganés 4-4-2 1 -#> 682 1 0 Leganés 4-4-2 1 -#> 683 1 0 Leganés 4-4-2 1 -#> 684 1 0 Leganés 4-4-2 1 -#> 685 1 0 Leganés 4-4-2 1 -#> 686 1 0 Leganés 4-4-2 1 -#> 687 1 0 Leganés 4-4-2 1 -#> 688 1 0 Leganés 4-4-2 1 -#> 689 1 0 Leganés 4-4-2 1 -#> 690 1 0 Leganés 4-4-2 1 -#> 691 1 0 Leganés 4-4-2 1 -#> 692 1 0 Leganés 4-4-2 1 -#> 693 1 0 Leganés 4-4-2 1 -#> 694 1 0 Leganés 4-4-2 1 -#> 695 1 0 Leganés 4-4-2 1 -#> 696 1 0 Leganés 4-4-2 1 -#> 697 1 0 Leganés 4-4-2 1 -#> 698 1 0 Leganés 4-4-2 1 -#> 699 1 0 Leganés 4-4-2 1 -#> 700 5 1 Valencia 4-4-2 2 -#> 701 5 1 Valencia 4-4-2 2 -#> 702 5 1 Valencia 4-4-2 2 -#> 703 5 1 Valencia 4-4-2 2 -#> 704 5 1 Valencia 4-4-2 2 -#> 705 5 1 Valencia 4-4-2 2 -#> 706 5 1 Valencia 4-4-2 2 -#> 707 5 1 Valencia 4-4-2 2 -#> 708 5 1 Valencia 4-4-2 2 -#> 709 5 1 Valencia 4-4-2 2 -#> 710 5 1 Valencia 4-4-2 2 -#> 711 5 1 Valencia 4-4-2 2 -#> 712 5 1 Valencia 4-4-2 2 -#> 713 5 1 Valencia 4-4-2 2 -#> 714 5 1 Valencia 4-4-2 2 -#> 715 5 1 Valencia 4-4-2 2 -#> 716 5 1 Valencia 4-4-2 2 -#> 717 5 1 Valencia 4-4-2 2 -#> 718 5 1 Valencia 4-4-2 2 -#> 719 5 1 Valencia 4-4-2 2 -#> 720 5 1 Valencia 4-4-2 2 -#> 721 5 1 Valencia 4-4-2 2 -#> 722 5 1 Valencia 4-4-2 2 -#> 723 5 1 Valencia 4-4-2 2 -#> 724 5 1 Valencia 4-4-2 2 -#> 725 5 1 Valencia 4-4-2 2 -#> 726 5 1 Valencia 4-4-2 2 -#> 727 5 1 Valencia 4-4-2 2 -#> 728 4 0 Espanyol 4-3-3 1 -#> 729 4 0 Espanyol 4-3-3 1 -#> 730 4 0 Espanyol 4-3-3 1 -#> 731 4 0 Espanyol 4-3-3 1 -#> 732 4 0 Espanyol 4-3-3 1 -#> 733 4 0 Espanyol 4-3-3 1 -#> 734 4 0 Espanyol 4-3-3 1 -#> 735 4 0 Espanyol 4-3-3 1 -#> 736 4 0 Espanyol 4-3-3 1 -#> 737 4 0 Espanyol 4-3-3 1 -#> 738 4 0 Espanyol 4-3-3 1 -#> 739 4 0 Espanyol 4-3-3 1 -#> 740 4 0 Espanyol 4-3-3 1 -#> 741 4 0 Espanyol 4-3-3 1 -#> 742 4 0 Espanyol 4-3-3 1 -#> 743 4 0 Espanyol 4-3-3 1 -#> 744 4 0 Espanyol 4-3-3 1 -#> 745 4 0 Espanyol 4-3-3 1 -#> 746 4 0 Espanyol 4-3-3 1 -#> 747 4 0 Espanyol 4-3-3 1 -#> 748 4 0 Espanyol 4-3-3 1 -#> 749 4 0 Espanyol 4-3-3 1 -#> 750 4 0 Espanyol 4-3-3 1 -#> 751 4 0 Espanyol 4-3-3 1 -#> 752 4 0 Espanyol 4-3-3 1 -#> 753 4 0 Espanyol 4-3-3 1 -#> 754 4 0 Espanyol 4-3-3 1 -#> 755 4 0 Espanyol 4-3-3 1 -#> 756 1 0 Huesca 4-4-2 2 -#> 757 1 0 Huesca 4-4-2 2 -#> 758 1 0 Huesca 4-4-2 2 -#> 759 1 0 Huesca 4-4-2 2 -#> 760 1 0 Huesca 4-4-2 2 -#> 761 1 0 Huesca 4-4-2 2 -#> 762 1 0 Huesca 4-4-2 2 -#> 763 1 0 Huesca 4-4-2 2 -#> 764 1 0 Huesca 4-4-2 2 -#> 765 1 0 Huesca 4-4-2 2 -#> 766 1 0 Huesca 4-4-2 2 -#> 767 1 0 Huesca 4-4-2 2 -#> 768 1 0 Huesca 4-4-2 2 -#> 769 1 0 Huesca 4-4-2 2 -#> 770 1 0 Huesca 4-4-2 2 -#> 771 1 0 Huesca 4-4-2 2 -#> 772 1 0 Huesca 4-4-2 2 -#> 773 1 0 Huesca 4-4-2 2 -#> 774 1 0 Huesca 4-4-2 2 -#> 775 1 0 Huesca 4-4-2 2 -#> 776 1 0 Huesca 4-4-2 2 -#> 777 1 0 Huesca 4-4-2 2 -#> 778 1 0 Huesca 4-4-2 2 -#> 779 1 0 Huesca 4-4-2 2 -#> 780 1 0 Huesca 4-4-2 2 -#> 781 1 0 Huesca 4-4-2 2 -#> 782 1 0 Huesca 4-4-2 2 -#> 783 1 0 Huesca 4-4-2 2 -#> 784 3 0 Sevilla 3-4-3 0 -#> 785 3 0 Sevilla 3-4-3 0 -#> 786 3 0 Sevilla 3-4-3 0 -#> 787 3 0 Sevilla 3-4-3 0 -#> 788 3 0 Sevilla 3-4-3 0 -#> 789 3 0 Sevilla 3-4-3 0 -#> 790 3 0 Sevilla 3-4-3 0 -#> 791 3 0 Sevilla 3-4-3 0 -#> 792 3 0 Sevilla 3-4-3 0 -#> 793 3 0 Sevilla 3-4-3 0 -#> 794 3 0 Sevilla 3-4-3 0 -#> 795 3 0 Sevilla 3-4-3 0 -#> 796 3 0 Sevilla 3-4-3 0 -#> 797 3 0 Sevilla 3-4-3 0 -#> 798 3 0 Sevilla 3-4-3 0 -#> 799 3 0 Sevilla 3-4-3 0 -#> 800 3 0 Sevilla 3-4-3 0 -#> 801 3 0 Sevilla 3-4-3 0 -#> 802 3 0 Sevilla 3-4-3 0 -#> 803 3 0 Sevilla 3-4-3 0 -#> 804 3 0 Sevilla 3-4-3 0 -#> 805 3 0 Sevilla 3-4-3 0 -#> 806 3 0 Sevilla 3-4-3 0 -#> 807 3 0 Sevilla 3-4-3 0 -#> 808 3 0 Sevilla 3-4-3 0 -#> 809 3 0 Sevilla 3-4-3 0 -#> 810 3 0 Sevilla 3-4-3 0 -#> 811 3 0 Sevilla 3-4-3 0 -#> 812 2 0 Rayo Vallecano 4-2-3-1 1 -#> 813 2 0 Rayo Vallecano 4-2-3-1 1 -#> 814 2 0 Rayo Vallecano 4-2-3-1 1 -#> 815 2 0 Rayo Vallecano 4-2-3-1 1 -#> 816 2 0 Rayo Vallecano 4-2-3-1 1 -#> 817 2 0 Rayo Vallecano 4-2-3-1 1 -#> 818 2 0 Rayo Vallecano 4-2-3-1 1 -#> 819 2 0 Rayo Vallecano 4-2-3-1 1 -#> 820 2 0 Rayo Vallecano 4-2-3-1 1 -#> 821 2 0 Rayo Vallecano 4-2-3-1 1 -#> 822 2 0 Rayo Vallecano 4-2-3-1 1 -#> 823 2 0 Rayo Vallecano 4-2-3-1 1 -#> 824 2 0 Rayo Vallecano 4-2-3-1 1 -#> 825 2 0 Rayo Vallecano 4-2-3-1 1 -#> 826 2 0 Rayo Vallecano 4-2-3-1 1 -#> 827 2 0 Rayo Vallecano 4-2-3-1 1 -#> 828 2 0 Rayo Vallecano 4-2-3-1 1 -#> 829 2 0 Rayo Vallecano 4-2-3-1 1 -#> 830 2 0 Rayo Vallecano 4-2-3-1 1 -#> 831 2 0 Rayo Vallecano 4-2-3-1 1 -#> 832 2 0 Rayo Vallecano 4-2-3-1 1 -#> 833 2 0 Rayo Vallecano 4-2-3-1 1 -#> 834 2 0 Rayo Vallecano 4-2-3-1 1 -#> 835 2 0 Rayo Vallecano 4-2-3-1 1 -#> 836 2 0 Rayo Vallecano 4-2-3-1 1 -#> 837 2 0 Rayo Vallecano 4-2-3-1 1 -#> 838 2 0 Rayo Vallecano 4-2-3-1 1 -#> 839 2 0 Rayo Vallecano 4-2-3-1 1 -#> 840 2 0 Eibar 4-2-3-1 1 -#> 841 2 0 Eibar 4-2-3-1 1 -#> 842 2 0 Eibar 4-2-3-1 1 -#> 843 2 0 Eibar 4-2-3-1 1 -#> 844 2 0 Eibar 4-2-3-1 1 -#> 845 2 0 Eibar 4-2-3-1 1 -#> 846 2 0 Eibar 4-2-3-1 1 -#> 847 2 0 Eibar 4-2-3-1 1 -#> 848 2 0 Eibar 4-2-3-1 1 -#> 849 2 0 Eibar 4-2-3-1 1 -#> 850 2 0 Eibar 4-2-3-1 1 -#> 851 2 0 Eibar 4-2-3-1 1 -#> 852 2 0 Eibar 4-2-3-1 1 -#> 853 2 0 Eibar 4-2-3-1 1 -#> 854 2 0 Eibar 4-2-3-1 1 -#> 855 2 0 Eibar 4-2-3-1 1 -#> 856 2 0 Eibar 4-2-3-1 1 -#> 857 2 0 Eibar 4-2-3-1 1 -#> 858 2 0 Eibar 4-2-3-1 1 -#> 859 2 0 Eibar 4-2-3-1 1 -#> 860 2 0 Eibar 4-2-3-1 1 -#> 861 2 0 Eibar 4-2-3-1 1 -#> 862 2 0 Eibar 4-2-3-1 1 -#> 863 2 0 Eibar 4-2-3-1 1 -#> 864 2 0 Eibar 4-2-3-1 1 -#> 865 2 0 Eibar 4-2-3-1 1 -#> 866 2 0 Eibar 4-2-3-1 1 -#> 867 1 0 Barcelona 4-3-3 2 -#> 868 1 0 Barcelona 4-3-3 2 -#> 869 1 0 Barcelona 4-3-3 2 -#> 870 1 0 Barcelona 4-3-3 2 -#> 871 1 0 Barcelona 4-3-3 2 -#> 872 1 0 Barcelona 4-3-3 2 -#> 873 1 0 Barcelona 4-3-3 2 -#> 874 1 0 Barcelona 4-3-3 2 -#> 875 1 0 Barcelona 4-3-3 2 -#> 876 1 0 Barcelona 4-3-3 2 -#> 877 1 0 Barcelona 4-3-3 2 -#> 878 1 0 Barcelona 4-3-3 2 -#> 879 1 0 Barcelona 4-3-3 2 -#> 880 1 0 Barcelona 4-3-3 2 -#> 881 1 0 Barcelona 4-3-3 2 -#> 882 1 0 Barcelona 4-3-3 2 -#> 883 1 0 Barcelona 4-3-3 2 -#> 884 1 0 Barcelona 4-3-3 2 -#> 885 1 0 Barcelona 4-3-3 2 -#> 886 1 0 Barcelona 4-3-3 2 -#> 887 1 0 Barcelona 4-3-3 2 -#> 888 1 0 Barcelona 4-3-3 2 -#> 889 1 0 Barcelona 4-3-3 2 -#> 890 1 0 Barcelona 4-3-3 2 -#> 891 1 0 Barcelona 4-3-3 2 -#> 892 1 0 Barcelona 4-3-3 2 -#> 893 1 0 Barcelona 4-3-3 2 -#> 894 1 0 Barcelona 4-3-3 2 -#> 895 6 0 Real Betis 3-4-3 0 -#> 896 6 0 Real Betis 3-4-3 0 -#> 897 6 0 Real Betis 3-4-3 0 -#> 898 6 0 Real Betis 3-4-3 0 -#> 899 6 0 Real Betis 3-4-3 0 -#> 900 6 0 Real Betis 3-4-3 0 -#> 901 6 0 Real Betis 3-4-3 0 -#> 902 6 0 Real Betis 3-4-3 0 -#> 903 6 0 Real Betis 3-4-3 0 -#> 904 6 0 Real Betis 3-4-3 0 -#> 905 6 0 Real Betis 3-4-3 0 -#> 906 6 0 Real Betis 3-4-3 0 -#> 907 6 0 Real Betis 3-4-3 0 -#> 908 6 0 Real Betis 3-4-3 0 -#> 909 6 0 Real Betis 3-4-3 0 -#> 910 6 0 Real Betis 3-4-3 0 -#> 911 6 0 Real Betis 3-4-3 0 -#> 912 6 0 Real Betis 3-4-3 0 -#> 913 6 0 Real Betis 3-4-3 0 -#> 914 6 0 Real Betis 3-4-3 0 -#> 915 6 0 Real Betis 3-4-3 0 -#> 916 6 0 Real Betis 3-4-3 0 -#> 917 6 0 Real Betis 3-4-3 0 -#> 918 6 0 Real Betis 3-4-3 0 -#> 919 6 0 Real Betis 3-4-3 0 -#> 920 6 0 Real Betis 3-4-3 0 -#> 921 6 0 Real Betis 3-4-3 0 -#> 922 6 0 Real Betis 3-4-3 0 -#> 923 6 0 Real Madrid 4-3-3 1 -#> 924 6 0 Real Madrid 4-3-3 1 -#> 925 6 0 Real Madrid 4-3-3 1 -#> 926 6 0 Real Madrid 4-3-3 1 -#> 927 6 0 Real Madrid 4-3-3 1 -#> 928 6 0 Real Madrid 4-3-3 1 -#> 929 6 0 Real Madrid 4-3-3 1 -#> 930 6 0 Real Madrid 4-3-3 1 -#> 931 6 0 Real Madrid 4-3-3 1 -#> 932 6 0 Real Madrid 4-3-3 1 -#> 933 6 0 Real Madrid 4-3-3 1 -#> 934 6 0 Real Madrid 4-3-3 1 -#> 935 6 0 Real Madrid 4-3-3 1 -#> 936 6 0 Real Madrid 4-3-3 1 -#> 937 6 0 Real Madrid 4-3-3 1 -#> 938 6 0 Real Madrid 4-3-3 1 -#> 939 6 0 Real Madrid 4-3-3 1 -#> 940 6 0 Real Madrid 4-3-3 1 -#> 941 6 0 Real Madrid 4-3-3 1 -#> 942 6 0 Real Madrid 4-3-3 1 -#> 943 6 0 Real Madrid 4-3-3 1 -#> 944 6 0 Real Madrid 4-3-3 1 -#> 945 6 0 Real Madrid 4-3-3 1 -#> 946 6 0 Real Madrid 4-3-3 1 -#> 947 6 0 Real Madrid 4-3-3 1 -#> 948 6 0 Real Madrid 4-3-3 1 -#> 949 6 0 Real Madrid 4-3-3 1 -#> 950 6 0 Real Madrid 4-3-3 1 -#> 951 4 0 Villarreal 4-4-2 1 -#> 952 4 0 Villarreal 4-4-2 1 -#> 953 4 0 Villarreal 4-4-2 1 -#> 954 4 0 Villarreal 4-4-2 1 -#> 955 4 0 Villarreal 4-4-2 1 -#> 956 4 0 Villarreal 4-4-2 1 -#> 957 4 0 Villarreal 4-4-2 1 -#> 958 4 0 Villarreal 4-4-2 1 -#> 959 4 0 Villarreal 4-4-2 1 -#> 960 4 0 Villarreal 4-4-2 1 -#> 961 4 0 Villarreal 4-4-2 1 -#> 962 4 0 Villarreal 4-4-2 1 -#> 963 4 0 Villarreal 4-4-2 1 -#> 964 4 0 Villarreal 4-4-2 1 -#> 965 4 0 Villarreal 4-4-2 1 -#> 966 4 0 Villarreal 4-4-2 1 -#> 967 4 0 Villarreal 4-4-2 1 -#> 968 4 0 Villarreal 4-4-2 1 -#> 969 4 0 Villarreal 4-4-2 1 -#> 970 4 0 Villarreal 4-4-2 1 -#> 971 4 0 Villarreal 4-4-2 1 -#> 972 4 0 Villarreal 4-4-2 1 -#> 973 4 0 Villarreal 4-4-2 1 -#> 974 4 0 Villarreal 4-4-2 1 -#> 975 4 0 Villarreal 4-4-2 1 -#> 976 4 0 Villarreal 4-4-2 1 -#> 977 4 0 Villarreal 4-4-2 1 -#> 978 4 0 Villarreal 4-4-2 1 -#> 979 1 0 Levante 4-4-2 0 -#> 980 1 0 Levante 4-4-2 0 -#> 981 1 0 Levante 4-4-2 0 -#> 982 1 0 Levante 4-4-2 0 -#> 983 1 0 Levante 4-4-2 0 -#> 984 1 0 Levante 4-4-2 0 -#> 985 1 0 Levante 4-4-2 0 -#> 986 1 0 Levante 4-4-2 0 -#> 987 1 0 Levante 4-4-2 0 -#> 988 1 0 Levante 4-4-2 0 -#> 989 1 0 Levante 4-4-2 0 -#> 990 1 0 Levante 4-4-2 0 -#> 991 1 0 Levante 4-4-2 0 -#> 992 1 0 Levante 4-4-2 0 -#> 993 1 0 Levante 4-4-2 0 -#> 994 1 0 Levante 4-4-2 0 -#> 995 1 0 Levante 4-4-2 0 -#> 996 1 0 Levante 4-4-2 0 -#> 997 1 0 Levante 4-4-2 0 -#> 998 1 0 Levante 4-4-2 0 -#> 999 1 0 Levante 4-4-2 0 -#> 1000 1 0 Levante 4-4-2 0 -#> 1001 1 0 Levante 4-4-2 0 -#> 1002 1 0 Levante 4-4-2 0 -#> 1003 1 0 Levante 4-4-2 0 -#> 1004 1 0 Levante 4-4-2 0 -#> 1005 1 0 Levante 4-4-2 0 -#> 1006 1 0 Levante 4-4-2 0 -#> 1007 3 0 Alavés 4-4-2 1 -#> 1008 3 0 Alavés 4-4-2 1 -#> 1009 3 0 Alavés 4-4-2 1 -#> 1010 3 0 Alavés 4-4-2 1 -#> 1011 3 0 Alavés 4-4-2 1 -#> 1012 3 0 Alavés 4-4-2 1 -#> 1013 3 0 Alavés 4-4-2 1 -#> 1014 3 0 Alavés 4-4-2 1 -#> 1015 3 0 Alavés 4-4-2 1 -#> 1016 3 0 Alavés 4-4-2 1 -#> 1017 3 0 Alavés 4-4-2 1 -#> 1018 3 0 Alavés 4-4-2 1 -#> 1019 3 0 Alavés 4-4-2 1 -#> 1020 3 0 Alavés 4-4-2 1 -#> 1021 3 0 Alavés 4-4-2 1 -#> 1022 3 0 Alavés 4-4-2 1 -#> 1023 3 0 Alavés 4-4-2 1 -#> 1024 3 0 Alavés 4-4-2 1 -#> 1025 3 0 Alavés 4-4-2 1 -#> 1026 3 0 Alavés 4-4-2 1 -#> 1027 3 0 Alavés 4-4-2 1 -#> 1028 3 0 Alavés 4-4-2 1 -#> 1029 3 0 Alavés 4-4-2 1 -#> 1030 3 0 Alavés 4-4-2 1 -#> 1031 3 0 Alavés 4-4-2 1 -#> 1032 3 0 Alavés 4-4-2 1 -#> 1033 3 0 Alavés 4-4-2 1 -#> 1034 3 0 Alavés 4-4-2 1 -#> 1035 3 0 Getafe 4-4-2 2 -#> 1036 3 0 Getafe 4-4-2 2 -#> 1037 3 0 Getafe 4-4-2 2 -#> 1038 3 0 Getafe 4-4-2 2 -#> 1039 3 0 Getafe 4-4-2 2 -#> 1040 3 0 Getafe 4-4-2 2 -#> 1041 3 0 Getafe 4-4-2 2 -#> 1042 3 0 Getafe 4-4-2 2 -#> 1043 3 0 Getafe 4-4-2 2 -#> 1044 3 0 Getafe 4-4-2 2 -#> 1045 3 0 Getafe 4-4-2 2 -#> 1046 3 0 Getafe 4-4-2 2 -#> 1047 3 0 Getafe 4-4-2 2 -#> 1048 3 0 Getafe 4-4-2 2 -#> 1049 3 0 Getafe 4-4-2 2 -#> 1050 3 0 Getafe 4-4-2 2 -#> 1051 3 0 Getafe 4-4-2 2 -#> 1052 3 0 Getafe 4-4-2 2 -#> 1053 3 0 Getafe 4-4-2 2 -#> 1054 3 0 Getafe 4-4-2 2 -#> 1055 3 0 Getafe 4-4-2 2 -#> 1056 3 0 Getafe 4-4-2 2 -#> 1057 3 0 Getafe 4-4-2 2 -#> 1058 3 0 Getafe 4-4-2 2 -#> 1059 3 0 Getafe 4-4-2 2 -#> 1060 3 0 Getafe 4-4-2 2 -#> 1061 3 0 Getafe 4-4-2 2 -#> 1062 3 0 Getafe 4-4-2 2 -#> 1063 1 0 Celta Vigo 3-4-3 2 -#> 1064 1 0 Celta Vigo 3-4-3 2 -#> 1065 1 0 Celta Vigo 3-4-3 2 -#> 1066 1 0 Celta Vigo 3-4-3 2 -#> 1067 1 0 Celta Vigo 3-4-3 2 -#> 1068 1 0 Celta Vigo 3-4-3 2 -#> 1069 1 0 Celta Vigo 3-4-3 2 -#> 1070 1 0 Celta Vigo 3-4-3 2 -#> 1071 1 0 Celta Vigo 3-4-3 2 -#> 1072 1 0 Celta Vigo 3-4-3 2 -#> 1073 1 0 Celta Vigo 3-4-3 2 -#> 1074 1 0 Celta Vigo 3-4-3 2 -#> 1075 1 0 Celta Vigo 3-4-3 2 -#> 1076 1 0 Celta Vigo 3-4-3 2 -#> 1077 1 0 Celta Vigo 3-4-3 2 -#> 1078 1 0 Celta Vigo 3-4-3 2 -#> 1079 1 0 Celta Vigo 3-4-3 2 -#> 1080 1 0 Celta Vigo 3-4-3 2 -#> 1081 1 0 Celta Vigo 3-4-3 2 -#> 1082 1 0 Celta Vigo 3-4-3 2 -#> 1083 1 0 Celta Vigo 3-4-3 2 -#> 1084 1 0 Celta Vigo 3-4-3 2 -#> 1085 1 0 Celta Vigo 3-4-3 2 -#> 1086 1 0 Celta Vigo 3-4-3 2 -#> 1087 1 0 Celta Vigo 3-4-3 2 -#> 1088 1 0 Celta Vigo 3-4-3 2 -#> 1089 1 0 Celta Vigo 3-4-3 2 -#> 1090 1 0 Celta Vigo 3-4-3 2 -#> 1091 5 0 Real Sociedad 4-3-3 1 -#> 1092 5 0 Real Sociedad 4-3-3 1 -#> 1093 5 0 Real Sociedad 4-3-3 1 -#> 1094 5 0 Real Sociedad 4-3-3 1 -#> 1095 5 0 Real Sociedad 4-3-3 1 -#> 1096 5 0 Real Sociedad 4-3-3 1 -#> 1097 5 0 Real Sociedad 4-3-3 1 -#> 1098 5 0 Real Sociedad 4-3-3 1 -#> 1099 5 0 Real Sociedad 4-3-3 1 -#> 1100 5 0 Real Sociedad 4-3-3 1 -#> 1101 5 0 Real Sociedad 4-3-3 1 -#> 1102 5 0 Real Sociedad 4-3-3 1 -#> 1103 5 0 Real Sociedad 4-3-3 1 -#> 1104 5 0 Real Sociedad 4-3-3 1 -#> 1105 5 0 Real Sociedad 4-3-3 1 -#> 1106 5 0 Real Sociedad 4-3-3 1 -#> 1107 5 0 Real Sociedad 4-3-3 1 -#> 1108 5 0 Real Sociedad 4-3-3 1 -#> 1109 5 0 Real Sociedad 4-3-3 1 -#> 1110 5 0 Real Sociedad 4-3-3 1 -#> 1111 5 0 Real Sociedad 4-3-3 1 -#> 1112 5 0 Real Sociedad 4-3-3 1 -#> 1113 5 0 Real Sociedad 4-3-3 1 -#> 1114 5 0 Real Sociedad 4-3-3 1 -#> 1115 5 0 Real Sociedad 4-3-3 1 -#> 1116 5 0 Real Sociedad 4-3-3 1 -#> 1117 5 0 Real Sociedad 4-3-3 1 -#> 1118 5 0 Real Sociedad 4-3-3 1 -#> 1119 1 1 Alavés 4-4-2 5 -#> 1120 1 1 Alavés 4-4-2 5 -#> 1121 1 1 Alavés 4-4-2 5 -#> 1122 1 1 Alavés 4-4-2 5 -#> 1123 1 1 Alavés 4-4-2 5 -#> 1124 1 1 Alavés 4-4-2 5 -#> 1125 1 1 Alavés 4-4-2 5 -#> 1126 1 1 Alavés 4-4-2 5 -#> 1127 1 1 Alavés 4-4-2 5 -#> 1128 1 1 Alavés 4-4-2 5 -#> 1129 1 1 Alavés 4-4-2 5 -#> 1130 1 1 Alavés 4-4-2 5 -#> 1131 1 1 Alavés 4-4-2 5 -#> 1132 1 1 Alavés 4-4-2 5 -#> 1133 1 1 Alavés 4-4-2 5 -#> 1134 1 1 Alavés 4-4-2 5 -#> 1135 1 1 Alavés 4-4-2 5 -#> 1136 1 1 Alavés 4-4-2 5 -#> 1137 1 1 Alavés 4-4-2 5 -#> 1138 1 1 Alavés 4-4-2 5 -#> 1139 1 1 Alavés 4-4-2 5 -#> 1140 1 1 Alavés 4-4-2 5 -#> 1141 1 1 Alavés 4-4-2 5 -#> 1142 1 1 Alavés 4-4-2 5 -#> 1143 1 1 Alavés 4-4-2 5 -#> 1144 1 1 Alavés 4-4-2 5 -#> 1145 1 1 Alavés 4-4-2 5 -#> 1146 1 1 Alavés 4-4-2 5 -#> 1147 1 0 Leganés 4-4-2 0 -#> 1148 1 0 Leganés 4-4-2 0 -#> 1149 1 0 Leganés 4-4-2 0 -#> 1150 1 0 Leganés 4-4-2 0 -#> 1151 1 0 Leganés 4-4-2 0 -#> 1152 1 0 Leganés 4-4-2 0 -#> 1153 1 0 Leganés 4-4-2 0 -#> 1154 1 0 Leganés 4-4-2 0 -#> 1155 1 0 Leganés 4-4-2 0 -#> 1156 1 0 Leganés 4-4-2 0 -#> 1157 1 0 Leganés 4-4-2 0 -#> 1158 1 0 Leganés 4-4-2 0 -#> 1159 1 0 Leganés 4-4-2 0 -#> 1160 1 0 Leganés 4-4-2 0 -#> 1161 1 0 Leganés 4-4-2 0 -#> 1162 1 0 Leganés 4-4-2 0 -#> 1163 1 0 Leganés 4-4-2 0 -#> 1164 1 0 Leganés 4-4-2 0 -#> 1165 1 0 Leganés 4-4-2 0 -#> 1166 1 0 Leganés 4-4-2 0 -#> 1167 1 0 Leganés 4-4-2 0 -#> 1168 1 0 Leganés 4-4-2 0 -#> 1169 1 0 Leganés 4-4-2 0 -#> 1170 1 0 Leganés 4-4-2 0 -#> 1171 1 0 Leganés 4-4-2 0 -#> 1172 1 0 Leganés 4-4-2 0 -#> 1173 1 0 Leganés 4-4-2 0 -#> 1174 1 0 Leganés 4-4-2 0 -#> 1175 2 0 Valladolid 4-1-4-1 3 -#> 1176 2 0 Valladolid 4-1-4-1 3 -#> 1177 2 0 Valladolid 4-1-4-1 3 -#> 1178 2 0 Valladolid 4-1-4-1 3 -#> 1179 2 0 Valladolid 4-1-4-1 3 -#> 1180 2 0 Valladolid 4-1-4-1 3 -#> 1181 2 0 Valladolid 4-1-4-1 3 -#> 1182 2 0 Valladolid 4-1-4-1 3 -#> 1183 2 0 Valladolid 4-1-4-1 3 -#> 1184 2 0 Valladolid 4-1-4-1 3 -#> 1185 2 0 Valladolid 4-1-4-1 3 -#> 1186 2 0 Valladolid 4-1-4-1 3 -#> 1187 2 0 Valladolid 4-1-4-1 3 -#> 1188 2 0 Valladolid 4-1-4-1 3 -#> 1189 2 0 Valladolid 4-1-4-1 3 -#> 1190 2 0 Valladolid 4-1-4-1 3 -#> 1191 2 0 Valladolid 4-1-4-1 3 -#> 1192 2 0 Valladolid 4-1-4-1 3 -#> 1193 2 0 Valladolid 4-1-4-1 3 -#> 1194 2 0 Valladolid 4-1-4-1 3 -#> 1195 2 0 Valladolid 4-1-4-1 3 -#> 1196 2 0 Valladolid 4-1-4-1 3 -#> 1197 2 0 Valladolid 4-1-4-1 3 -#> 1198 2 0 Valladolid 4-1-4-1 3 -#> 1199 2 0 Valladolid 4-1-4-1 3 -#> 1200 2 0 Valladolid 4-1-4-1 3 -#> 1201 2 0 Valladolid 4-1-4-1 3 -#> 1202 2 0 Valladolid 4-1-4-1 3 -#> 1203 1 1 Atlético Madrid 4-4-2 2 -#> 1204 1 1 Atlético Madrid 4-4-2 2 -#> 1205 1 1 Atlético Madrid 4-4-2 2 -#> 1206 1 1 Atlético Madrid 4-4-2 2 -#> 1207 1 1 Atlético Madrid 4-4-2 2 -#> 1208 1 1 Atlético Madrid 4-4-2 2 -#> 1209 1 1 Atlético Madrid 4-4-2 2 -#> 1210 1 1 Atlético Madrid 4-4-2 2 -#> 1211 1 1 Atlético Madrid 4-4-2 2 -#> 1212 1 1 Atlético Madrid 4-4-2 2 -#> 1213 1 1 Atlético Madrid 4-4-2 2 -#> 1214 1 1 Atlético Madrid 4-4-2 2 -#> 1215 1 1 Atlético Madrid 4-4-2 2 -#> 1216 1 1 Atlético Madrid 4-4-2 2 -#> 1217 1 1 Atlético Madrid 4-4-2 2 -#> 1218 1 1 Atlético Madrid 4-4-2 2 -#> 1219 1 1 Atlético Madrid 4-4-2 2 -#> 1220 1 1 Atlético Madrid 4-4-2 2 -#> 1221 1 1 Atlético Madrid 4-4-2 2 -#> 1222 1 1 Atlético Madrid 4-4-2 2 -#> 1223 1 1 Atlético Madrid 4-4-2 2 -#> 1224 1 1 Atlético Madrid 4-4-2 2 -#> 1225 1 1 Atlético Madrid 4-4-2 2 -#> 1226 1 1 Atlético Madrid 4-4-2 2 -#> 1227 1 1 Atlético Madrid 4-4-2 2 -#> 1228 1 1 Atlético Madrid 4-4-2 2 -#> 1229 1 1 Atlético Madrid 4-4-2 2 -#> 1230 1 1 Atlético Madrid 4-4-2 2 -#> 1231 2 0 Espanyol 4-1-4-1 0 -#> 1232 2 0 Espanyol 4-1-4-1 0 -#> 1233 2 0 Espanyol 4-1-4-1 0 -#> 1234 2 0 Espanyol 4-1-4-1 0 -#> 1235 2 0 Espanyol 4-1-4-1 0 -#> 1236 2 0 Espanyol 4-1-4-1 0 -#> 1237 2 0 Espanyol 4-1-4-1 0 -#> 1238 2 0 Espanyol 4-1-4-1 0 -#> 1239 2 0 Espanyol 4-1-4-1 0 -#> 1240 2 0 Espanyol 4-1-4-1 0 -#> 1241 2 0 Espanyol 4-1-4-1 0 -#> 1242 2 0 Espanyol 4-1-4-1 0 -#> 1243 2 0 Espanyol 4-1-4-1 0 -#> 1244 2 0 Espanyol 4-1-4-1 0 -#> 1245 2 0 Espanyol 4-1-4-1 0 -#> 1246 2 0 Espanyol 4-1-4-1 0 -#> 1247 2 0 Espanyol 4-1-4-1 0 -#> 1248 2 0 Espanyol 4-1-4-1 0 -#> 1249 2 0 Espanyol 4-1-4-1 0 -#> 1250 2 0 Espanyol 4-1-4-1 0 -#> 1251 2 0 Espanyol 4-1-4-1 0 -#> 1252 2 0 Espanyol 4-1-4-1 0 -#> 1253 2 0 Espanyol 4-1-4-1 0 -#> 1254 2 0 Espanyol 4-1-4-1 0 -#> 1255 2 0 Espanyol 4-1-4-1 0 -#> 1256 2 0 Espanyol 4-1-4-1 0 -#> 1257 2 0 Espanyol 4-1-4-1 0 -#> 1258 2 0 Espanyol 4-1-4-1 0 -#> 1259 1 0 Sevilla 3-5-2 6 -#> 1260 1 0 Sevilla 3-5-2 6 -#> 1261 1 0 Sevilla 3-5-2 6 -#> 1262 1 0 Sevilla 3-5-2 6 -#> 1263 1 0 Sevilla 3-5-2 6 -#> 1264 1 0 Sevilla 3-5-2 6 -#> 1265 1 0 Sevilla 3-5-2 6 -#> 1266 1 0 Sevilla 3-5-2 6 -#> 1267 1 0 Sevilla 3-5-2 6 -#> 1268 1 0 Sevilla 3-5-2 6 -#> 1269 1 0 Sevilla 3-5-2 6 -#> 1270 1 0 Sevilla 3-5-2 6 -#> 1271 1 0 Sevilla 3-5-2 6 -#> 1272 1 0 Sevilla 3-5-2 6 -#> 1273 1 0 Sevilla 3-5-2 6 -#> 1274 1 0 Sevilla 3-5-2 6 -#> 1275 1 0 Sevilla 3-5-2 6 -#> 1276 1 0 Sevilla 3-5-2 6 -#> 1277 1 0 Sevilla 3-5-2 6 -#> 1278 1 0 Sevilla 3-5-2 6 -#> 1279 1 0 Sevilla 3-5-2 6 -#> 1280 1 0 Sevilla 3-5-2 6 -#> 1281 1 0 Sevilla 3-5-2 6 -#> 1282 1 0 Sevilla 3-5-2 6 -#> 1283 1 0 Sevilla 3-5-2 6 -#> 1284 1 0 Sevilla 3-5-2 6 -#> 1285 1 0 Sevilla 3-5-2 6 -#> 1286 1 0 Sevilla 3-5-2 6 -#> 1287 4 0 Valencia 4-4-2 0 -#> 1288 4 0 Valencia 4-4-2 0 -#> 1289 4 0 Valencia 4-4-2 0 -#> 1290 4 0 Valencia 4-4-2 0 -#> 1291 4 0 Valencia 4-4-2 0 -#> 1292 4 0 Valencia 4-4-2 0 -#> 1293 4 0 Valencia 4-4-2 0 -#> 1294 4 0 Valencia 4-4-2 0 -#> 1295 4 0 Valencia 4-4-2 0 -#> 1296 4 0 Valencia 4-4-2 0 -#> 1297 4 0 Valencia 4-4-2 0 -#> 1298 4 0 Valencia 4-4-2 0 -#> 1299 4 0 Valencia 4-4-2 0 -#> 1300 4 0 Valencia 4-4-2 0 -#> 1301 4 0 Valencia 4-4-2 0 -#> 1302 4 0 Valencia 4-4-2 0 -#> 1303 4 0 Valencia 4-4-2 0 -#> 1304 4 0 Valencia 4-4-2 0 -#> 1305 4 0 Valencia 4-4-2 0 -#> 1306 4 0 Valencia 4-4-2 0 -#> 1307 4 0 Valencia 4-4-2 0 -#> 1308 4 0 Valencia 4-4-2 0 -#> 1309 4 0 Valencia 4-4-2 0 -#> 1310 4 0 Valencia 4-4-2 0 -#> 1311 4 0 Valencia 4-4-2 0 -#> 1312 4 0 Valencia 4-4-2 0 -#> 1313 4 0 Valencia 4-4-2 0 -#> 1314 4 0 Valencia 4-4-2 0 -#> 1315 2 0 Athletic Club 4-2-3-1 2 -#> 1316 2 0 Athletic Club 4-2-3-1 2 -#> 1317 2 0 Athletic Club 4-2-3-1 2 -#> 1318 2 0 Athletic Club 4-2-3-1 2 -#> 1319 2 0 Athletic Club 4-2-3-1 2 -#> 1320 2 0 Athletic Club 4-2-3-1 2 -#> 1321 2 0 Athletic Club 4-2-3-1 2 -#> 1322 2 0 Athletic Club 4-2-3-1 2 -#> 1323 2 0 Athletic Club 4-2-3-1 2 -#> 1324 2 0 Athletic Club 4-2-3-1 2 -#> 1325 2 0 Athletic Club 4-2-3-1 2 -#> 1326 2 0 Athletic Club 4-2-3-1 2 -#> 1327 2 0 Athletic Club 4-2-3-1 2 -#> 1328 2 0 Athletic Club 4-2-3-1 2 -#> 1329 2 0 Athletic Club 4-2-3-1 2 -#> 1330 2 0 Athletic Club 4-2-3-1 2 -#> 1331 2 0 Athletic Club 4-2-3-1 2 -#> 1332 2 0 Athletic Club 4-2-3-1 2 -#> 1333 2 0 Athletic Club 4-2-3-1 2 -#> 1334 2 0 Athletic Club 4-2-3-1 2 -#> 1335 2 0 Athletic Club 4-2-3-1 2 -#> 1336 2 0 Athletic Club 4-2-3-1 2 -#> 1337 2 0 Athletic Club 4-2-3-1 2 -#> 1338 2 0 Athletic Club 4-2-3-1 2 -#> 1339 2 0 Athletic Club 4-2-3-1 2 -#> 1340 2 0 Athletic Club 4-2-3-1 2 -#> 1341 2 0 Athletic Club 4-2-3-1 2 -#> 1342 2 0 Athletic Club 4-2-3-1 2 -#> 1343 3 1 Girona 5-3-2 2 -#> 1344 3 1 Girona 5-3-2 2 -#> 1345 3 1 Girona 5-3-2 2 -#> 1346 3 1 Girona 5-3-2 2 -#> 1347 3 1 Girona 5-3-2 2 -#> 1348 3 1 Girona 5-3-2 2 -#> 1349 3 1 Girona 5-3-2 2 -#> 1350 3 1 Girona 5-3-2 2 -#> 1351 3 1 Girona 5-3-2 2 -#> 1352 3 1 Girona 5-3-2 2 -#> 1353 3 1 Girona 5-3-2 2 -#> 1354 3 1 Girona 5-3-2 2 -#> 1355 3 1 Girona 5-3-2 2 -#> 1356 3 1 Girona 5-3-2 2 -#> 1357 3 1 Girona 5-3-2 2 -#> 1358 3 1 Girona 5-3-2 2 -#> 1359 3 1 Girona 5-3-2 2 -#> 1360 3 1 Girona 5-3-2 2 -#> 1361 3 1 Girona 5-3-2 2 -#> 1362 3 1 Girona 5-3-2 2 -#> 1363 3 1 Girona 5-3-2 2 -#> 1364 3 1 Girona 5-3-2 2 -#> 1365 3 1 Girona 5-3-2 2 -#> 1366 3 1 Girona 5-3-2 2 -#> 1367 3 1 Girona 5-3-2 2 -#> 1368 3 1 Girona 5-3-2 2 -#> 1369 3 1 Girona 5-3-2 2 -#> 1370 3 1 Girona 5-3-2 2 -#> 1371 2 0 Eibar 4-2-3-1 0 -#> 1372 2 0 Eibar 4-2-3-1 0 -#> 1373 2 0 Eibar 4-2-3-1 0 -#> 1374 2 0 Eibar 4-2-3-1 0 -#> 1375 2 0 Eibar 4-2-3-1 0 -#> 1376 2 0 Eibar 4-2-3-1 0 -#> 1377 2 0 Eibar 4-2-3-1 0 -#> 1378 2 0 Eibar 4-2-3-1 0 -#> 1379 2 0 Eibar 4-2-3-1 0 -#> 1380 2 0 Eibar 4-2-3-1 0 -#> 1381 2 0 Eibar 4-2-3-1 0 -#> 1382 2 0 Eibar 4-2-3-1 0 -#> 1383 2 0 Eibar 4-2-3-1 0 -#> 1384 2 0 Eibar 4-2-3-1 0 -#> 1385 2 0 Eibar 4-2-3-1 0 -#> 1386 2 0 Eibar 4-2-3-1 0 -#> 1387 2 0 Eibar 4-2-3-1 0 -#> 1388 2 0 Eibar 4-2-3-1 0 -#> 1389 2 0 Eibar 4-2-3-1 0 -#> 1390 2 0 Eibar 4-2-3-1 0 -#> 1391 2 0 Eibar 4-2-3-1 0 -#> 1392 2 0 Eibar 4-2-3-1 0 -#> 1393 2 0 Eibar 4-2-3-1 0 -#> 1394 2 0 Eibar 4-2-3-1 0 -#> 1395 2 0 Eibar 4-2-3-1 0 -#> 1396 2 0 Eibar 4-2-3-1 0 -#> 1397 2 0 Eibar 4-2-3-1 0 -#> 1398 2 0 Eibar 4-2-3-1 0 -#> 1399 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1400 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1401 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1402 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1403 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1404 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1405 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1406 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1407 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1408 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1409 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1410 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1411 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1412 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1413 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1414 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1415 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1416 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1417 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1418 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1419 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1420 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1421 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1422 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1423 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1424 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1425 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1426 4 0 Rayo Vallecano 4-1-4-1 2 -#> 1427 0 0 Huesca 4-4-2 0 -#> 1428 0 0 Huesca 4-4-2 0 -#> 1429 0 0 Huesca 4-4-2 0 -#> 1430 0 0 Huesca 4-4-2 0 -#> 1431 0 0 Huesca 4-4-2 0 -#> 1432 0 0 Huesca 4-4-2 0 -#> 1433 0 0 Huesca 4-4-2 0 -#> 1434 0 0 Huesca 4-4-2 0 -#> 1435 0 0 Huesca 4-4-2 0 -#> 1436 0 0 Huesca 4-4-2 0 -#> 1437 0 0 Huesca 4-4-2 0 -#> 1438 0 0 Huesca 4-4-2 0 -#> 1439 0 0 Huesca 4-4-2 0 -#> 1440 0 0 Huesca 4-4-2 0 -#> 1441 0 0 Huesca 4-4-2 0 -#> 1442 0 0 Huesca 4-4-2 0 -#> 1443 0 0 Huesca 4-4-2 0 -#> 1444 0 0 Huesca 4-4-2 0 -#> 1445 0 0 Huesca 4-4-2 0 -#> 1446 0 0 Huesca 4-4-2 0 -#> 1447 0 0 Huesca 4-4-2 0 -#> 1448 0 0 Huesca 4-4-2 0 -#> 1449 0 0 Huesca 4-4-2 0 -#> 1450 0 0 Huesca 4-4-2 0 -#> 1451 0 0 Huesca 4-4-2 0 -#> 1452 0 0 Huesca 4-4-2 0 -#> 1453 0 0 Huesca 4-4-2 0 -#> 1454 0 0 Huesca 4-4-2 0 -#> 1455 4 0 Barcelona 4-3-3 1 -#> 1456 4 0 Barcelona 4-3-3 1 -#> 1457 4 0 Barcelona 4-3-3 1 -#> 1458 4 0 Barcelona 4-3-3 1 -#> 1459 4 0 Barcelona 4-3-3 1 -#> 1460 4 0 Barcelona 4-3-3 1 -#> 1461 4 0 Barcelona 4-3-3 1 -#> 1462 4 0 Barcelona 4-3-3 1 -#> 1463 4 0 Barcelona 4-3-3 1 -#> 1464 4 0 Barcelona 4-3-3 1 -#> 1465 4 0 Barcelona 4-3-3 1 -#> 1466 4 0 Barcelona 4-3-3 1 -#> 1467 4 0 Barcelona 4-3-3 1 -#> 1468 4 0 Barcelona 4-3-3 1 -#> 1469 4 0 Barcelona 4-3-3 1 -#> 1470 4 0 Barcelona 4-3-3 1 -#> 1471 4 0 Barcelona 4-3-3 1 -#> 1472 4 0 Barcelona 4-3-3 1 -#> 1473 4 0 Barcelona 4-3-3 1 -#> 1474 4 0 Barcelona 4-3-3 1 -#> 1475 4 0 Barcelona 4-3-3 1 -#> 1476 4 0 Barcelona 4-3-3 1 -#> 1477 4 0 Barcelona 4-3-3 1 -#> 1478 4 0 Barcelona 4-3-3 1 -#> 1479 4 0 Barcelona 4-3-3 1 -#> 1480 4 0 Barcelona 4-3-3 1 -#> 1481 4 0 Barcelona 4-3-3 1 -#> 1482 4 0 Barcelona 4-3-3 1 -#> 1483 1 0 Villarreal 4-4-2 3 -#> 1484 1 0 Villarreal 4-4-2 3 -#> 1485 1 0 Villarreal 4-4-2 3 -#> 1486 1 0 Villarreal 4-4-2 3 -#> 1487 1 0 Villarreal 4-4-2 3 -#> 1488 1 0 Villarreal 4-4-2 3 -#> 1489 1 0 Villarreal 4-4-2 3 -#> 1490 1 0 Villarreal 4-4-2 3 -#> 1491 1 0 Villarreal 4-4-2 3 -#> 1492 1 0 Villarreal 4-4-2 3 -#> 1493 1 0 Villarreal 4-4-2 3 -#> 1494 1 0 Villarreal 4-4-2 3 -#> 1495 1 0 Villarreal 4-4-2 3 -#> 1496 1 0 Villarreal 4-4-2 3 -#> 1497 1 0 Villarreal 4-4-2 3 -#> 1498 1 0 Villarreal 4-4-2 3 -#> 1499 1 0 Villarreal 4-4-2 3 -#> 1500 1 0 Villarreal 4-4-2 3 -#> 1501 1 0 Villarreal 4-4-2 3 -#> 1502 1 0 Villarreal 4-4-2 3 -#> 1503 1 0 Villarreal 4-4-2 3 -#> 1504 1 0 Villarreal 4-4-2 3 -#> 1505 1 0 Villarreal 4-4-2 3 -#> 1506 1 0 Villarreal 4-4-2 3 -#> 1507 1 0 Villarreal 4-4-2 3 -#> 1508 1 0 Villarreal 4-4-2 3 -#> 1509 1 0 Villarreal 4-4-2 3 -#> 1510 1 0 Villarreal 4-4-2 3 -#> 1511 3 0 Real Madrid 4-3-3 0 -#> 1512 3 0 Real Madrid 4-3-3 0 -#> 1513 3 0 Real Madrid 4-3-3 0 -#> 1514 3 0 Real Madrid 4-3-3 0 -#> 1515 3 0 Real Madrid 4-3-3 0 -#> 1516 3 0 Real Madrid 4-3-3 0 -#> 1517 3 0 Real Madrid 4-3-3 0 -#> 1518 3 0 Real Madrid 4-3-3 0 -#> 1519 3 0 Real Madrid 4-3-3 0 -#> 1520 3 0 Real Madrid 4-3-3 0 -#> 1521 3 0 Real Madrid 4-3-3 0 -#> 1522 3 0 Real Madrid 4-3-3 0 -#> 1523 3 0 Real Madrid 4-3-3 0 -#> 1524 3 0 Real Madrid 4-3-3 0 -#> 1525 3 0 Real Madrid 4-3-3 0 -#> 1526 3 0 Real Madrid 4-3-3 0 -#> 1527 3 0 Real Madrid 4-3-3 0 -#> 1528 3 0 Real Madrid 4-3-3 0 -#> 1529 3 0 Real Madrid 4-3-3 0 -#> 1530 3 0 Real Madrid 4-3-3 0 -#> 1531 3 0 Real Madrid 4-3-3 0 -#> 1532 3 0 Real Madrid 4-3-3 0 -#> 1533 3 0 Real Madrid 4-3-3 0 -#> 1534 3 0 Real Madrid 4-3-3 0 -#> 1535 3 0 Real Madrid 4-3-3 0 -#> 1536 3 0 Real Madrid 4-3-3 0 -#> 1537 3 0 Real Madrid 4-3-3 0 -#> 1538 3 0 Real Madrid 4-3-3 0 -#> 1539 1 0 Celta Vigo 5-3-2 1 -#> 1540 1 0 Celta Vigo 5-3-2 1 -#> 1541 1 0 Celta Vigo 5-3-2 1 -#> 1542 1 0 Celta Vigo 5-3-2 1 -#> 1543 1 0 Celta Vigo 5-3-2 1 -#> 1544 1 0 Celta Vigo 5-3-2 1 -#> 1545 1 0 Celta Vigo 5-3-2 1 -#> 1546 1 0 Celta Vigo 5-3-2 1 -#> 1547 1 0 Celta Vigo 5-3-2 1 -#> 1548 1 0 Celta Vigo 5-3-2 1 -#> 1549 1 0 Celta Vigo 5-3-2 1 -#> 1550 1 0 Celta Vigo 5-3-2 1 -#> 1551 1 0 Celta Vigo 5-3-2 1 -#> 1552 1 0 Celta Vigo 5-3-2 1 -#> 1553 1 0 Celta Vigo 5-3-2 1 -#> 1554 1 0 Celta Vigo 5-3-2 1 -#> 1555 1 0 Celta Vigo 5-3-2 1 -#> 1556 1 0 Celta Vigo 5-3-2 1 -#> 1557 1 0 Celta Vigo 5-3-2 1 -#> 1558 1 0 Celta Vigo 5-3-2 1 -#> 1559 1 0 Celta Vigo 5-3-2 1 -#> 1560 1 0 Celta Vigo 5-3-2 1 -#> 1561 1 0 Celta Vigo 5-3-2 1 -#> 1562 1 0 Celta Vigo 5-3-2 1 -#> 1563 1 0 Celta Vigo 5-3-2 1 -#> 1564 1 0 Celta Vigo 5-3-2 1 -#> 1565 1 0 Celta Vigo 5-3-2 1 -#> 1566 1 0 Celta Vigo 5-3-2 1 -#> 1567 4 0 Getafe 4-4-2 1 -#> 1568 4 0 Getafe 4-4-2 1 -#> 1569 4 0 Getafe 4-4-2 1 -#> 1570 4 0 Getafe 4-4-2 1 -#> 1571 4 0 Getafe 4-4-2 1 -#> 1572 4 0 Getafe 4-4-2 1 -#> 1573 4 0 Getafe 4-4-2 1 -#> 1574 4 0 Getafe 4-4-2 1 -#> 1575 4 0 Getafe 4-4-2 1 -#> 1576 4 0 Getafe 4-4-2 1 -#> 1577 4 0 Getafe 4-4-2 1 -#> 1578 4 0 Getafe 4-4-2 1 -#> 1579 4 0 Getafe 4-4-2 1 -#> 1580 4 0 Getafe 4-4-2 1 -#> 1581 4 0 Getafe 4-4-2 1 -#> 1582 4 0 Getafe 4-4-2 1 -#> 1583 4 0 Getafe 4-4-2 1 -#> 1584 4 0 Getafe 4-4-2 1 -#> 1585 4 0 Getafe 4-4-2 1 -#> 1586 4 0 Getafe 4-4-2 1 -#> 1587 4 0 Getafe 4-4-2 1 -#> 1588 4 0 Getafe 4-4-2 1 -#> 1589 4 0 Getafe 4-4-2 1 -#> 1590 4 0 Getafe 4-4-2 1 -#> 1591 4 0 Getafe 4-4-2 1 -#> 1592 4 0 Getafe 4-4-2 1 -#> 1593 4 0 Getafe 4-4-2 1 -#> 1594 4 0 Getafe 4-4-2 1 -#> 1595 1 0 Levante 4-4-2 1 -#> 1596 1 0 Levante 4-4-2 1 -#> 1597 1 0 Levante 4-4-2 1 -#> 1598 1 0 Levante 4-4-2 1 -#> 1599 1 0 Levante 4-4-2 1 -#> 1600 1 0 Levante 4-4-2 1 -#> 1601 1 0 Levante 4-4-2 1 -#> 1602 1 0 Levante 4-4-2 1 -#> 1603 1 0 Levante 4-4-2 1 -#> 1604 1 0 Levante 4-4-2 1 -#> 1605 1 0 Levante 4-4-2 1 -#> 1606 1 0 Levante 4-4-2 1 -#> 1607 1 0 Levante 4-4-2 1 -#> 1608 1 0 Levante 4-4-2 1 -#> 1609 1 0 Levante 4-4-2 1 -#> 1610 1 0 Levante 4-4-2 1 -#> 1611 1 0 Levante 4-4-2 1 -#> 1612 1 0 Levante 4-4-2 1 -#> 1613 1 0 Levante 4-4-2 1 -#> 1614 1 0 Levante 4-4-2 1 -#> 1615 1 0 Levante 4-4-2 1 -#> 1616 1 0 Levante 4-4-2 1 -#> 1617 1 0 Levante 4-4-2 1 -#> 1618 1 0 Levante 4-4-2 1 -#> 1619 1 0 Levante 4-4-2 1 -#> 1620 1 0 Levante 4-4-2 1 -#> 1621 1 0 Levante 4-4-2 1 -#> 1622 1 0 Levante 4-4-2 1 -#> 1623 1 0 Real Betis 3-4-3 1 -#> 1624 1 0 Real Betis 3-4-3 1 -#> 1625 1 0 Real Betis 3-4-3 1 -#> 1626 1 0 Real Betis 3-4-3 1 -#> 1627 1 0 Real Betis 3-4-3 1 -#> 1628 1 0 Real Betis 3-4-3 1 -#> 1629 1 0 Real Betis 3-4-3 1 -#> 1630 1 0 Real Betis 3-4-3 1 -#> 1631 1 0 Real Betis 3-4-3 1 -#> 1632 1 0 Real Betis 3-4-3 1 -#> 1633 1 0 Real Betis 3-4-3 1 -#> 1634 1 0 Real Betis 3-4-3 1 -#> 1635 1 0 Real Betis 3-4-3 1 -#> 1636 1 0 Real Betis 3-4-3 1 -#> 1637 1 0 Real Betis 3-4-3 1 -#> 1638 1 0 Real Betis 3-4-3 1 -#> 1639 1 0 Real Betis 3-4-3 1 -#> 1640 1 0 Real Betis 3-4-3 1 -#> 1641 1 0 Real Betis 3-4-3 1 -#> 1642 1 0 Real Betis 3-4-3 1 -#> 1643 1 0 Real Betis 3-4-3 1 -#> 1644 1 0 Real Betis 3-4-3 1 -#> 1645 1 0 Real Betis 3-4-3 1 -#> 1646 1 0 Real Betis 3-4-3 1 -#> 1647 1 0 Real Betis 3-4-3 1 -#> 1648 1 0 Real Betis 3-4-3 1 -#> 1649 1 0 Real Betis 3-4-3 1 -#> 1650 1 0 Real Betis 3-4-3 1 -#> 1651 3 0 Espanyol 4-1-4-1 2 -#> 1652 3 0 Espanyol 4-1-4-1 2 -#> 1653 3 0 Espanyol 4-1-4-1 2 -#> 1654 3 0 Espanyol 4-1-4-1 2 -#> 1655 3 0 Espanyol 4-1-4-1 2 -#> 1656 3 0 Espanyol 4-1-4-1 2 -#> 1657 3 0 Espanyol 4-1-4-1 2 -#> 1658 3 0 Espanyol 4-1-4-1 2 -#> 1659 3 0 Espanyol 4-1-4-1 2 -#> 1660 3 0 Espanyol 4-1-4-1 2 -#> 1661 3 0 Espanyol 4-1-4-1 2 -#> 1662 3 0 Espanyol 4-1-4-1 2 -#> 1663 3 0 Espanyol 4-1-4-1 2 -#> 1664 3 0 Espanyol 4-1-4-1 2 -#> 1665 3 0 Espanyol 4-1-4-1 2 -#> 1666 3 0 Espanyol 4-1-4-1 2 -#> 1667 3 0 Espanyol 4-1-4-1 2 -#> 1668 3 0 Espanyol 4-1-4-1 2 -#> 1669 3 0 Espanyol 4-1-4-1 2 -#> 1670 3 0 Espanyol 4-1-4-1 2 -#> 1671 3 0 Espanyol 4-1-4-1 2 -#> 1672 3 0 Espanyol 4-1-4-1 2 -#> 1673 3 0 Espanyol 4-1-4-1 2 -#> 1674 3 0 Espanyol 4-1-4-1 2 -#> 1675 3 0 Espanyol 4-1-4-1 2 -#> 1676 3 0 Espanyol 4-1-4-1 2 -#> 1677 3 0 Espanyol 4-1-4-1 2 -#> 1678 3 0 Espanyol 4-1-4-1 2 -#> 1679 3 0 Valencia 4-4-2 1 -#> 1680 3 0 Valencia 4-4-2 1 -#> 1681 3 0 Valencia 4-4-2 1 -#> 1682 3 0 Valencia 4-4-2 1 -#> 1683 3 0 Valencia 4-4-2 1 -#> 1684 3 0 Valencia 4-4-2 1 -#> 1685 3 0 Valencia 4-4-2 1 -#> 1686 3 0 Valencia 4-4-2 1 -#> 1687 3 0 Valencia 4-4-2 1 -#> 1688 3 0 Valencia 4-4-2 1 -#> 1689 3 0 Valencia 4-4-2 1 -#> 1690 3 0 Valencia 4-4-2 1 -#> 1691 3 0 Valencia 4-4-2 1 -#> 1692 3 0 Valencia 4-4-2 1 -#> 1693 3 0 Valencia 4-4-2 1 -#> 1694 3 0 Valencia 4-4-2 1 -#> 1695 3 0 Valencia 4-4-2 1 -#> 1696 3 0 Valencia 4-4-2 1 -#> 1697 3 0 Valencia 4-4-2 1 -#> 1698 3 0 Valencia 4-4-2 1 -#> 1699 3 0 Valencia 4-4-2 1 -#> 1700 3 0 Valencia 4-4-2 1 -#> 1701 3 0 Valencia 4-4-2 1 -#> 1702 3 0 Valencia 4-4-2 1 -#> 1703 3 0 Valencia 4-4-2 1 -#> 1704 3 0 Valencia 4-4-2 1 -#> 1705 3 0 Valencia 4-4-2 1 -#> 1706 3 0 Valencia 4-4-2 1 -#> 1707 3 0 Athletic Club 4-2-3-1 1 -#> 1708 3 0 Athletic Club 4-2-3-1 1 -#> 1709 3 0 Athletic Club 4-2-3-1 1 -#> 1710 3 0 Athletic Club 4-2-3-1 1 -#> 1711 3 0 Athletic Club 4-2-3-1 1 -#> 1712 3 0 Athletic Club 4-2-3-1 1 -#> 1713 3 0 Athletic Club 4-2-3-1 1 -#> 1714 3 0 Athletic Club 4-2-3-1 1 -#> 1715 3 0 Athletic Club 4-2-3-1 1 -#> 1716 3 0 Athletic Club 4-2-3-1 1 -#> 1717 3 0 Athletic Club 4-2-3-1 1 -#> 1718 3 0 Athletic Club 4-2-3-1 1 -#> 1719 3 0 Athletic Club 4-2-3-1 1 -#> 1720 3 0 Athletic Club 4-2-3-1 1 -#> 1721 3 0 Athletic Club 4-2-3-1 1 -#> 1722 3 0 Athletic Club 4-2-3-1 1 -#> 1723 3 0 Athletic Club 4-2-3-1 1 -#> 1724 3 0 Athletic Club 4-2-3-1 1 -#> 1725 3 0 Athletic Club 4-2-3-1 1 -#> 1726 3 0 Athletic Club 4-2-3-1 1 -#> 1727 3 0 Athletic Club 4-2-3-1 1 -#> 1728 3 0 Athletic Club 4-2-3-1 1 -#> 1729 3 0 Athletic Club 4-2-3-1 1 -#> 1730 3 0 Athletic Club 4-2-3-1 1 -#> 1731 3 0 Athletic Club 4-2-3-1 1 -#> 1732 3 0 Athletic Club 4-2-3-1 1 -#> 1733 3 0 Athletic Club 4-2-3-1 1 -#> 1734 3 0 Athletic Club 4-2-3-1 1 -#> 1735 2 0 Sevilla 3-5-2 3 -#> 1736 2 0 Sevilla 3-5-2 3 -#> 1737 2 0 Sevilla 3-5-2 3 -#> 1738 2 0 Sevilla 3-5-2 3 -#> 1739 2 0 Sevilla 3-5-2 3 -#> 1740 2 0 Sevilla 3-5-2 3 -#> 1741 2 0 Sevilla 3-5-2 3 -#> 1742 2 0 Sevilla 3-5-2 3 -#> 1743 2 0 Sevilla 3-5-2 3 -#> 1744 2 0 Sevilla 3-5-2 3 -#> 1745 2 0 Sevilla 3-5-2 3 -#> 1746 2 0 Sevilla 3-5-2 3 -#> 1747 2 0 Sevilla 3-5-2 3 -#> 1748 2 0 Sevilla 3-5-2 3 -#> 1749 2 0 Sevilla 3-5-2 3 -#> 1750 2 0 Sevilla 3-5-2 3 -#> 1751 2 0 Sevilla 3-5-2 3 -#> 1752 2 0 Sevilla 3-5-2 3 -#> 1753 2 0 Sevilla 3-5-2 3 -#> 1754 2 0 Sevilla 3-5-2 3 -#> 1755 2 0 Sevilla 3-5-2 3 -#> 1756 2 0 Sevilla 3-5-2 3 -#> 1757 2 0 Sevilla 3-5-2 3 -#> 1758 2 0 Sevilla 3-5-2 3 -#> 1759 2 0 Sevilla 3-5-2 3 -#> 1760 2 0 Sevilla 3-5-2 3 -#> 1761 2 0 Sevilla 3-5-2 3 -#> 1762 2 0 Sevilla 3-5-2 3 -#> 1763 3 0 Atlético Madrid 4-4-2 0 -#> 1764 3 0 Atlético Madrid 4-4-2 0 -#> 1765 3 0 Atlético Madrid 4-4-2 0 -#> 1766 3 0 Atlético Madrid 4-4-2 0 -#> 1767 3 0 Atlético Madrid 4-4-2 0 -#> 1768 3 0 Atlético Madrid 4-4-2 0 -#> 1769 3 0 Atlético Madrid 4-4-2 0 -#> 1770 3 0 Atlético Madrid 4-4-2 0 -#> 1771 3 0 Atlético Madrid 4-4-2 0 -#> 1772 3 0 Atlético Madrid 4-4-2 0 -#> 1773 3 0 Atlético Madrid 4-4-2 0 -#> 1774 3 0 Atlético Madrid 4-4-2 0 -#> 1775 3 0 Atlético Madrid 4-4-2 0 -#> 1776 3 0 Atlético Madrid 4-4-2 0 -#> 1777 3 0 Atlético Madrid 4-4-2 0 -#> 1778 3 0 Atlético Madrid 4-4-2 0 -#> 1779 3 0 Atlético Madrid 4-4-2 0 -#> 1780 3 0 Atlético Madrid 4-4-2 0 -#> 1781 3 0 Atlético Madrid 4-4-2 0 -#> 1782 3 0 Atlético Madrid 4-4-2 0 -#> 1783 3 0 Atlético Madrid 4-4-2 0 -#> 1784 3 0 Atlético Madrid 4-4-2 0 -#> 1785 3 0 Atlético Madrid 4-4-2 0 -#> 1786 3 0 Atlético Madrid 4-4-2 0 -#> 1787 3 0 Atlético Madrid 4-4-2 0 -#> 1788 3 0 Atlético Madrid 4-4-2 0 -#> 1789 3 0 Atlético Madrid 4-4-2 0 -#> 1790 3 0 Atlético Madrid 4-4-2 0 -#> 1791 4 0 Girona 4-4-2 1 -#> 1792 4 0 Girona 4-4-2 1 -#> 1793 4 0 Girona 4-4-2 1 -#> 1794 4 0 Girona 4-4-2 1 -#> 1795 4 0 Girona 4-4-2 1 -#> 1796 4 0 Girona 4-4-2 1 -#> 1797 4 0 Girona 4-4-2 1 -#> 1798 4 0 Girona 4-4-2 1 -#> 1799 4 0 Girona 4-4-2 1 -#> 1800 4 0 Girona 4-4-2 1 -#> 1801 4 0 Girona 4-4-2 1 -#> 1802 4 0 Girona 4-4-2 1 -#> 1803 4 0 Girona 4-4-2 1 -#> 1804 4 0 Girona 4-4-2 1 -#> 1805 4 0 Girona 4-4-2 1 -#> 1806 4 0 Girona 4-4-2 1 -#> 1807 4 0 Girona 4-4-2 1 -#> 1808 4 0 Girona 4-4-2 1 -#> 1809 4 0 Girona 4-4-2 1 -#> 1810 4 0 Girona 4-4-2 1 -#> 1811 4 0 Girona 4-4-2 1 -#> 1812 4 0 Girona 4-4-2 1 -#> 1813 4 0 Girona 4-4-2 1 -#> 1814 4 0 Girona 4-4-2 1 -#> 1815 4 0 Girona 4-4-2 1 -#> 1816 4 0 Girona 4-4-2 1 -#> 1817 4 0 Girona 4-4-2 1 -#> 1818 4 0 Girona 4-4-2 1 -#> 1819 3 0 Valladolid 4-4-2 1 -#> 1820 3 0 Valladolid 4-4-2 1 -#> 1821 3 0 Valladolid 4-4-2 1 -#> 1822 3 0 Valladolid 4-4-2 1 -#> 1823 3 0 Valladolid 4-4-2 1 -#> 1824 3 0 Valladolid 4-4-2 1 -#> 1825 3 0 Valladolid 4-4-2 1 -#> 1826 3 0 Valladolid 4-4-2 1 -#> 1827 3 0 Valladolid 4-4-2 1 -#> 1828 3 0 Valladolid 4-4-2 1 -#> 1829 3 0 Valladolid 4-4-2 1 -#> 1830 3 0 Valladolid 4-4-2 1 -#> 1831 3 0 Valladolid 4-4-2 1 -#> 1832 3 0 Valladolid 4-4-2 1 -#> 1833 3 0 Valladolid 4-4-2 1 -#> 1834 3 0 Valladolid 4-4-2 1 -#> 1835 3 0 Valladolid 4-4-2 1 -#> 1836 3 0 Valladolid 4-4-2 1 -#> 1837 3 0 Valladolid 4-4-2 1 -#> 1838 3 0 Valladolid 4-4-2 1 -#> 1839 3 0 Valladolid 4-4-2 1 -#> 1840 3 0 Valladolid 4-4-2 1 -#> 1841 3 0 Valladolid 4-4-2 1 -#> 1842 3 0 Valladolid 4-4-2 1 -#> 1843 3 0 Valladolid 4-4-2 1 -#> 1844 3 0 Valladolid 4-4-2 1 -#> 1845 3 0 Valladolid 4-4-2 1 -#> 1846 3 0 Valladolid 4-4-2 1 -#> 1847 7 0 Alavés 4-4-2 1 -#> 1848 7 0 Alavés 4-4-2 1 -#> 1849 7 0 Alavés 4-4-2 1 -#> 1850 7 0 Alavés 4-4-2 1 -#> 1851 7 0 Alavés 4-4-2 1 -#> 1852 7 0 Alavés 4-4-2 1 -#> 1853 7 0 Alavés 4-4-2 1 -#> 1854 7 0 Alavés 4-4-2 1 -#> 1855 7 0 Alavés 4-4-2 1 -#> 1856 7 0 Alavés 4-4-2 1 -#> 1857 7 0 Alavés 4-4-2 1 -#> 1858 7 0 Alavés 4-4-2 1 -#> 1859 7 0 Alavés 4-4-2 1 -#> 1860 7 0 Alavés 4-4-2 1 -#> 1861 7 0 Alavés 4-4-2 1 -#> 1862 7 0 Alavés 4-4-2 1 -#> 1863 7 0 Alavés 4-4-2 1 -#> 1864 7 0 Alavés 4-4-2 1 -#> 1865 7 0 Alavés 4-4-2 1 -#> 1866 7 0 Alavés 4-4-2 1 -#> 1867 7 0 Alavés 4-4-2 1 -#> 1868 7 0 Alavés 4-4-2 1 -#> 1869 7 0 Alavés 4-4-2 1 -#> 1870 7 0 Alavés 4-4-2 1 -#> 1871 7 0 Alavés 4-4-2 1 -#> 1872 7 0 Alavés 4-4-2 1 -#> 1873 7 0 Alavés 4-4-2 1 -#> 1874 7 0 Alavés 4-4-2 1 -#> 1875 0 0 Leganés 5-4-1 0 -#> 1876 0 0 Leganés 5-4-1 0 -#> 1877 0 0 Leganés 5-4-1 0 -#> 1878 0 0 Leganés 5-4-1 0 -#> 1879 0 0 Leganés 5-4-1 0 -#> 1880 0 0 Leganés 5-4-1 0 -#> 1881 0 0 Leganés 5-4-1 0 -#> 1882 0 0 Leganés 5-4-1 0 -#> 1883 0 0 Leganés 5-4-1 0 -#> 1884 0 0 Leganés 5-4-1 0 -#> 1885 0 0 Leganés 5-4-1 0 -#> 1886 0 0 Leganés 5-4-1 0 -#> 1887 0 0 Leganés 5-4-1 0 -#> 1888 0 0 Leganés 5-4-1 0 -#> 1889 0 0 Leganés 5-4-1 0 -#> 1890 0 0 Leganés 5-4-1 0 -#> 1891 0 0 Leganés 5-4-1 0 -#> 1892 0 0 Leganés 5-4-1 0 -#> 1893 0 0 Leganés 5-4-1 0 -#> 1894 0 0 Leganés 5-4-1 0 -#> 1895 0 0 Leganés 5-4-1 0 -#> 1896 0 0 Leganés 5-4-1 0 -#> 1897 0 0 Leganés 5-4-1 0 -#> 1898 0 0 Leganés 5-4-1 0 -#> 1899 0 0 Leganés 5-4-1 0 -#> 1900 0 0 Leganés 5-4-1 0 -#> 1901 0 0 Leganés 5-4-1 0 -#> 1902 0 0 Leganés 5-4-1 0 -#> 1903 2 0 Getafe 4-4-2 1 -#> 1904 2 0 Getafe 4-4-2 1 -#> 1905 2 0 Getafe 4-4-2 1 -#> 1906 2 0 Getafe 4-4-2 1 -#> 1907 2 0 Getafe 4-4-2 1 -#> 1908 2 0 Getafe 4-4-2 1 -#> 1909 2 0 Getafe 4-4-2 1 -#> 1910 2 0 Getafe 4-4-2 1 -#> 1911 2 0 Getafe 4-4-2 1 -#> 1912 2 0 Getafe 4-4-2 1 -#> 1913 2 0 Getafe 4-4-2 1 -#> 1914 2 0 Getafe 4-4-2 1 -#> 1915 2 0 Getafe 4-4-2 1 -#> 1916 2 0 Getafe 4-4-2 1 -#> 1917 2 0 Getafe 4-4-2 1 -#> 1918 2 0 Getafe 4-4-2 1 -#> 1919 2 0 Getafe 4-4-2 1 -#> 1920 2 0 Getafe 4-4-2 1 -#> 1921 2 0 Getafe 4-4-2 1 -#> 1922 2 0 Getafe 4-4-2 1 -#> 1923 2 0 Getafe 4-4-2 1 -#> 1924 2 0 Getafe 4-4-2 1 -#> 1925 2 0 Getafe 4-4-2 1 -#> 1926 2 0 Getafe 4-4-2 1 -#> 1927 2 0 Getafe 4-4-2 1 -#> 1928 2 0 Getafe 4-4-2 1 -#> 1929 2 0 Getafe 4-4-2 1 -#> 1930 2 0 Getafe 4-4-2 1 -#> 1931 6 0 Real Sociedad 4-2-3-1 3 -#> 1932 6 0 Real Sociedad 4-2-3-1 3 -#> 1933 6 0 Real Sociedad 4-2-3-1 3 -#> 1934 6 0 Real Sociedad 4-2-3-1 3 -#> 1935 6 0 Real Sociedad 4-2-3-1 3 -#> 1936 6 0 Real Sociedad 4-2-3-1 3 -#> 1937 6 0 Real Sociedad 4-2-3-1 3 -#> 1938 6 0 Real Sociedad 4-2-3-1 3 -#> 1939 6 0 Real Sociedad 4-2-3-1 3 -#> 1940 6 0 Real Sociedad 4-2-3-1 3 -#> 1941 6 0 Real Sociedad 4-2-3-1 3 -#> 1942 6 0 Real Sociedad 4-2-3-1 3 -#> 1943 6 0 Real Sociedad 4-2-3-1 3 -#> 1944 6 0 Real Sociedad 4-2-3-1 3 -#> 1945 6 0 Real Sociedad 4-2-3-1 3 -#> 1946 6 0 Real Sociedad 4-2-3-1 3 -#> 1947 6 0 Real Sociedad 4-2-3-1 3 -#> 1948 6 0 Real Sociedad 4-2-3-1 3 -#> 1949 6 0 Real Sociedad 4-2-3-1 3 -#> 1950 6 0 Real Sociedad 4-2-3-1 3 -#> 1951 6 0 Real Sociedad 4-2-3-1 3 -#> 1952 6 0 Real Sociedad 4-2-3-1 3 -#> 1953 6 0 Real Sociedad 4-2-3-1 3 -#> 1954 6 0 Real Sociedad 4-2-3-1 3 -#> 1955 6 0 Real Sociedad 4-2-3-1 3 -#> 1956 6 0 Real Sociedad 4-2-3-1 3 -#> 1957 6 0 Real Sociedad 4-2-3-1 3 -#> 1958 6 0 Real Sociedad 4-2-3-1 3 -#> 1959 3 0 Eibar 4-4-2 3 -#> 1960 3 0 Eibar 4-4-2 3 -#> 1961 3 0 Eibar 4-4-2 3 -#> 1962 3 0 Eibar 4-4-2 3 -#> 1963 3 0 Eibar 4-4-2 3 -#> 1964 3 0 Eibar 4-4-2 3 -#> 1965 3 0 Eibar 4-4-2 3 -#> 1966 3 0 Eibar 4-4-2 3 -#> 1967 3 0 Eibar 4-4-2 3 -#> 1968 3 0 Eibar 4-4-2 3 -#> 1969 3 0 Eibar 4-4-2 3 -#> 1970 3 0 Eibar 4-4-2 3 -#> 1971 3 0 Eibar 4-4-2 3 -#> 1972 3 0 Eibar 4-4-2 3 -#> 1973 3 0 Eibar 4-4-2 3 -#> 1974 3 0 Eibar 4-4-2 3 -#> 1975 3 0 Eibar 4-4-2 3 -#> 1976 3 0 Eibar 4-4-2 3 -#> 1977 3 0 Eibar 4-4-2 3 -#> 1978 3 0 Eibar 4-4-2 3 -#> 1979 3 0 Eibar 4-4-2 3 -#> 1980 3 0 Eibar 4-4-2 3 -#> 1981 3 0 Eibar 4-4-2 3 -#> 1982 3 0 Eibar 4-4-2 3 -#> 1983 3 0 Eibar 4-4-2 3 -#> 1984 3 0 Eibar 4-4-2 3 -#> 1985 3 0 Eibar 4-4-2 3 -#> 1986 3 0 Eibar 4-4-2 3 -#> 1987 4 1 Levante 3-5-2 1 -#> 1988 4 1 Levante 3-5-2 1 -#> 1989 4 1 Levante 3-5-2 1 -#> 1990 4 1 Levante 3-5-2 1 -#> 1991 4 1 Levante 3-5-2 1 -#> 1992 4 1 Levante 3-5-2 1 -#> 1993 4 1 Levante 3-5-2 1 -#> 1994 4 1 Levante 3-5-2 1 -#> 1995 4 1 Levante 3-5-2 1 -#> 1996 4 1 Levante 3-5-2 1 -#> 1997 4 1 Levante 3-5-2 1 -#> 1998 4 1 Levante 3-5-2 1 -#> 1999 4 1 Levante 3-5-2 1 -#> 2000 4 1 Levante 3-5-2 1 -#> 2001 4 1 Levante 3-5-2 1 -#> 2002 4 1 Levante 3-5-2 1 -#> 2003 4 1 Levante 3-5-2 1 -#> 2004 4 1 Levante 3-5-2 1 -#> 2005 4 1 Levante 3-5-2 1 -#> 2006 4 1 Levante 3-5-2 1 -#> 2007 4 1 Levante 3-5-2 1 -#> 2008 4 1 Levante 3-5-2 1 -#> 2009 4 1 Levante 3-5-2 1 -#> 2010 4 1 Levante 3-5-2 1 -#> 2011 4 1 Levante 3-5-2 1 -#> 2012 4 1 Levante 3-5-2 1 -#> 2013 4 1 Levante 3-5-2 1 -#> 2014 4 1 Levante 3-5-2 1 -#> 2015 1 0 Real Madrid 4-3-3 0 -#> 2016 1 0 Real Madrid 4-3-3 0 -#> 2017 1 0 Real Madrid 4-3-3 0 -#> 2018 1 0 Real Madrid 4-3-3 0 -#> 2019 1 0 Real Madrid 4-3-3 0 -#> 2020 1 0 Real Madrid 4-3-3 0 -#> 2021 1 0 Real Madrid 4-3-3 0 -#> 2022 1 0 Real Madrid 4-3-3 0 -#> 2023 1 0 Real Madrid 4-3-3 0 -#> 2024 1 0 Real Madrid 4-3-3 0 -#> 2025 1 0 Real Madrid 4-3-3 0 -#> 2026 1 0 Real Madrid 4-3-3 0 -#> 2027 1 0 Real Madrid 4-3-3 0 -#> 2028 1 0 Real Madrid 4-3-3 0 -#> 2029 1 0 Real Madrid 4-3-3 0 -#> 2030 1 0 Real Madrid 4-3-3 0 -#> 2031 1 0 Real Madrid 4-3-3 0 -#> 2032 1 0 Real Madrid 4-3-3 0 -#> 2033 1 0 Real Madrid 4-3-3 0 -#> 2034 1 0 Real Madrid 4-3-3 0 -#> 2035 1 0 Real Madrid 4-3-3 0 -#> 2036 1 0 Real Madrid 4-3-3 0 -#> 2037 1 0 Real Madrid 4-3-3 0 -#> 2038 1 0 Real Madrid 4-3-3 0 -#> 2039 1 0 Real Madrid 4-3-3 0 -#> 2040 1 0 Real Madrid 4-3-3 0 -#> Away_xG -#> 1 0.0 -#> 2 0.0 -#> 3 0.0 -#> 4 0.0 -#> 5 0.0 -#> 6 0.0 -#> 7 0.0 -#> 8 0.0 -#> 9 0.0 -#> 10 0.0 -#> 11 0.0 -#> 12 0.0 -#> 13 0.0 -#> 14 0.0 -#> 15 0.0 -#> 16 0.0 -#> 17 0.0 -#> 18 0.0 -#> 19 0.0 -#> 20 0.0 -#> 21 0.0 -#> 22 0.0 -#> 23 0.0 -#> 24 0.0 -#> 25 0.0 -#> 26 0.0 -#> 27 0.0 -#> 28 0.0 -#> 29 2.5 -#> 30 2.5 -#> 31 2.5 -#> 32 2.5 -#> 33 2.5 -#> 34 2.5 -#> 35 2.5 -#> 36 2.5 -#> 37 2.5 -#> 38 2.5 -#> 39 2.5 -#> 40 2.5 -#> 41 2.5 -#> 42 2.5 -#> 43 2.5 -#> 44 2.5 -#> 45 2.5 -#> 46 2.5 -#> 47 2.5 -#> 48 2.5 -#> 49 2.5 -#> 50 2.5 -#> 51 2.5 -#> 52 2.5 -#> 53 2.5 -#> 54 2.5 -#> 55 2.5 -#> 56 2.5 -#> 57 0.6 -#> 58 0.6 -#> 59 0.6 -#> 60 0.6 -#> 61 0.6 -#> 62 0.6 -#> 63 0.6 -#> 64 0.6 -#> 65 0.6 -#> 66 0.6 -#> 67 0.6 -#> 68 0.6 -#> 69 0.6 -#> 70 0.6 -#> 71 0.6 -#> 72 0.6 -#> 73 0.6 -#> 74 0.6 -#> 75 0.6 -#> 76 0.6 -#> 77 0.6 -#> 78 0.6 -#> 79 0.6 -#> 80 0.6 -#> 81 0.6 -#> 82 0.6 -#> 83 0.6 -#> 84 0.6 -#> 85 0.7 -#> 86 0.7 -#> 87 0.7 -#> 88 0.7 -#> 89 0.7 -#> 90 0.7 -#> 91 0.7 -#> 92 0.7 -#> 93 0.7 -#> 94 0.7 -#> 95 0.7 -#> 96 0.7 -#> 97 0.7 -#> 98 0.7 -#> 99 0.7 -#> 100 0.7 -#> 101 0.7 -#> 102 0.7 -#> 103 0.7 -#> 104 0.7 -#> 105 0.7 -#> 106 0.7 -#> 107 0.7 -#> 108 0.7 -#> 109 0.7 -#> 110 0.7 -#> 111 0.7 -#> 112 0.7 -#> 113 0.3 -#> 114 0.3 -#> 115 0.3 -#> 116 0.3 -#> 117 0.3 -#> 118 0.3 -#> 119 0.3 -#> 120 0.3 -#> 121 0.3 -#> 122 0.3 -#> 123 0.3 -#> 124 0.3 -#> 125 0.3 -#> 126 0.3 -#> 127 0.3 -#> 128 0.3 -#> 129 0.3 -#> 130 0.3 -#> 131 0.3 -#> 132 0.3 -#> 133 0.3 -#> 134 0.3 -#> 135 0.3 -#> 136 0.3 -#> 137 0.3 -#> 138 0.3 -#> 139 0.3 -#> 140 0.3 -#> 141 1.7 -#> 142 1.7 -#> 143 1.7 -#> 144 1.7 -#> 145 1.7 -#> 146 1.7 -#> 147 1.7 -#> 148 1.7 -#> 149 1.7 -#> 150 1.7 -#> 151 1.7 -#> 152 1.7 -#> 153 1.7 -#> 154 1.7 -#> 155 1.7 -#> 156 1.7 -#> 157 1.7 -#> 158 1.7 -#> 159 1.7 -#> 160 1.7 -#> 161 1.7 -#> 162 1.7 -#> 163 1.7 -#> 164 1.7 -#> 165 1.7 -#> 166 1.7 -#> 167 1.7 -#> 168 1.7 -#> 169 2.8 -#> 170 2.8 -#> 171 2.8 -#> 172 2.8 -#> 173 2.8 -#> 174 2.8 -#> 175 2.8 -#> 176 2.8 -#> 177 2.8 -#> 178 2.8 -#> 179 2.8 -#> 180 2.8 -#> 181 2.8 -#> 182 2.8 -#> 183 2.8 -#> 184 2.8 -#> 185 2.8 -#> 186 2.8 -#> 187 2.8 -#> 188 2.8 -#> 189 2.8 -#> 190 2.8 -#> 191 2.8 -#> 192 2.8 -#> 193 2.8 -#> 194 2.8 -#> 195 2.8 -#> 196 0.2 -#> 197 0.2 -#> 198 0.2 -#> 199 0.2 -#> 200 0.2 -#> 201 0.2 -#> 202 0.2 -#> 203 0.2 -#> 204 0.2 -#> 205 0.2 -#> 206 0.2 -#> 207 0.2 -#> 208 0.2 -#> 209 0.2 -#> 210 0.2 -#> 211 0.2 -#> 212 0.2 -#> 213 0.2 -#> 214 0.2 -#> 215 0.2 -#> 216 0.2 -#> 217 0.2 -#> 218 0.2 -#> 219 0.2 -#> 220 0.2 -#> 221 0.2 -#> 222 0.2 -#> 223 0.2 -#> 224 0.9 -#> 225 0.9 -#> 226 0.9 -#> 227 0.9 -#> 228 0.9 -#> 229 0.9 -#> 230 0.9 -#> 231 0.9 -#> 232 0.9 -#> 233 0.9 -#> 234 0.9 -#> 235 0.9 -#> 236 0.9 -#> 237 0.9 -#> 238 0.9 -#> 239 0.9 -#> 240 0.9 -#> 241 0.9 -#> 242 0.9 -#> 243 0.9 -#> 244 0.9 -#> 245 0.9 -#> 246 0.9 -#> 247 0.9 -#> 248 0.9 -#> 249 0.9 -#> 250 0.9 -#> 251 0.9 -#> 252 1.0 -#> 253 1.0 -#> 254 1.0 -#> 255 1.0 -#> 256 1.0 -#> 257 1.0 -#> 258 1.0 -#> 259 1.0 -#> 260 1.0 -#> 261 1.0 -#> 262 1.0 -#> 263 1.0 -#> 264 1.0 -#> 265 1.0 -#> 266 1.0 -#> 267 1.0 -#> 268 1.0 -#> 269 1.0 -#> 270 1.0 -#> 271 1.0 -#> 272 1.0 -#> 273 1.0 -#> 274 1.0 -#> 275 1.0 -#> 276 1.0 -#> 277 1.0 -#> 278 1.0 -#> 279 1.0 -#> 280 0.6 -#> 281 0.6 -#> 282 0.6 -#> 283 0.6 -#> 284 0.6 -#> 285 0.6 -#> 286 0.6 -#> 287 0.6 -#> 288 0.6 -#> 289 0.6 -#> 290 0.6 -#> 291 0.6 -#> 292 0.6 -#> 293 0.6 -#> 294 0.6 -#> 295 0.6 -#> 296 0.6 -#> 297 0.6 -#> 298 0.6 -#> 299 0.6 -#> 300 0.6 -#> 301 0.6 -#> 302 0.6 -#> 303 0.6 -#> 304 0.6 -#> 305 0.6 -#> 306 0.6 -#> 307 0.6 -#> 308 1.6 -#> 309 1.6 -#> 310 1.6 -#> 311 1.6 -#> 312 1.6 -#> 313 1.6 -#> 314 1.6 -#> 315 1.6 -#> 316 1.6 -#> 317 1.6 -#> 318 1.6 -#> 319 1.6 -#> 320 1.6 -#> 321 1.6 -#> 322 1.6 -#> 323 1.6 -#> 324 1.6 -#> 325 1.6 -#> 326 1.6 -#> 327 1.6 -#> 328 1.6 -#> 329 1.6 -#> 330 1.6 -#> 331 1.6 -#> 332 1.6 -#> 333 1.6 -#> 334 1.6 -#> 335 1.6 -#> 336 0.9 -#> 337 0.9 -#> 338 0.9 -#> 339 0.9 -#> 340 0.9 -#> 341 0.9 -#> 342 0.9 -#> 343 0.9 -#> 344 0.9 -#> 345 0.9 -#> 346 0.9 -#> 347 0.9 -#> 348 0.9 -#> 349 0.9 -#> 350 0.9 -#> 351 0.9 -#> 352 0.9 -#> 353 0.9 -#> 354 0.9 -#> 355 0.9 -#> 356 0.9 -#> 357 0.9 -#> 358 0.9 -#> 359 0.9 -#> 360 0.9 -#> 361 0.9 -#> 362 0.9 -#> 363 0.9 -#> 364 1.5 -#> 365 1.5 -#> 366 1.5 -#> 367 1.5 -#> 368 1.5 -#> 369 1.5 -#> 370 1.5 -#> 371 1.5 -#> 372 1.5 -#> 373 1.5 -#> 374 1.5 -#> 375 1.5 -#> 376 1.5 -#> 377 1.5 -#> 378 1.5 -#> 379 1.5 -#> 380 1.5 -#> 381 1.5 -#> 382 1.5 -#> 383 1.5 -#> 384 1.5 -#> 385 1.5 -#> 386 1.5 -#> 387 1.5 -#> 388 1.5 -#> 389 1.5 -#> 390 1.5 -#> 391 1.5 -#> 392 1.0 -#> 393 1.0 -#> 394 1.0 -#> 395 1.0 -#> 396 1.0 -#> 397 1.0 -#> 398 1.0 -#> 399 1.0 -#> 400 1.0 -#> 401 1.0 -#> 402 1.0 -#> 403 1.0 -#> 404 1.0 -#> 405 1.0 -#> 406 1.0 -#> 407 1.0 -#> 408 1.0 -#> 409 1.0 -#> 410 1.0 -#> 411 1.0 -#> 412 1.0 -#> 413 1.0 -#> 414 1.0 -#> 415 1.0 -#> 416 1.0 -#> 417 1.0 -#> 418 1.0 -#> 419 1.0 -#> 420 1.9 -#> 421 1.9 -#> 422 1.9 -#> 423 1.9 -#> 424 1.9 -#> 425 1.9 -#> 426 1.9 -#> 427 1.9 -#> 428 1.9 -#> 429 1.9 -#> 430 1.9 -#> 431 1.9 -#> 432 1.9 -#> 433 1.9 -#> 434 1.9 -#> 435 1.9 -#> 436 1.9 -#> 437 1.9 -#> 438 1.9 -#> 439 1.9 -#> 440 1.9 -#> 441 1.9 -#> 442 1.9 -#> 443 1.9 -#> 444 1.9 -#> 445 1.9 -#> 446 1.9 -#> 447 1.9 -#> 448 3.9 -#> 449 3.9 -#> 450 3.9 -#> 451 3.9 -#> 452 3.9 -#> 453 3.9 -#> 454 3.9 -#> 455 3.9 -#> 456 3.9 -#> 457 3.9 -#> 458 3.9 -#> 459 3.9 -#> 460 3.9 -#> 461 3.9 -#> 462 3.9 -#> 463 3.9 -#> 464 3.9 -#> 465 3.9 -#> 466 3.9 -#> 467 3.9 -#> 468 3.9 -#> 469 3.9 -#> 470 3.9 -#> 471 3.9 -#> 472 3.9 -#> 473 3.9 -#> 474 3.9 -#> 475 3.9 -#> 476 1.0 -#> 477 1.0 -#> 478 1.0 -#> 479 1.0 -#> 480 1.0 -#> 481 1.0 -#> 482 1.0 -#> 483 1.0 -#> 484 1.0 -#> 485 1.0 -#> 486 1.0 -#> 487 1.0 -#> 488 1.0 -#> 489 1.0 -#> 490 1.0 -#> 491 1.0 -#> 492 1.0 -#> 493 1.0 -#> 494 1.0 -#> 495 1.0 -#> 496 1.0 -#> 497 1.0 -#> 498 1.0 -#> 499 1.0 -#> 500 1.0 -#> 501 1.0 -#> 502 1.0 -#> 503 1.0 -#> 504 2.5 -#> 505 2.5 -#> 506 2.5 -#> 507 2.5 -#> 508 2.5 -#> 509 2.5 -#> 510 2.5 -#> 511 2.5 -#> 512 2.5 -#> 513 2.5 -#> 514 2.5 -#> 515 2.5 -#> 516 2.5 -#> 517 2.5 -#> 518 2.5 -#> 519 2.5 -#> 520 2.5 -#> 521 2.5 -#> 522 2.5 -#> 523 2.5 -#> 524 2.5 -#> 525 2.5 -#> 526 2.5 -#> 527 2.5 -#> 528 2.5 -#> 529 2.5 -#> 530 2.5 -#> 531 2.5 -#> 532 0.3 -#> 533 0.3 -#> 534 0.3 -#> 535 0.3 -#> 536 0.3 -#> 537 0.3 -#> 538 0.3 -#> 539 0.3 -#> 540 0.3 -#> 541 0.3 -#> 542 0.3 -#> 543 0.3 -#> 544 0.3 -#> 545 0.3 -#> 546 0.3 -#> 547 0.3 -#> 548 0.3 -#> 549 0.3 -#> 550 0.3 -#> 551 0.3 -#> 552 0.3 -#> 553 0.3 -#> 554 0.3 -#> 555 0.3 -#> 556 0.3 -#> 557 0.3 -#> 558 0.3 -#> 559 0.3 -#> 560 0.9 -#> 561 0.9 -#> 562 0.9 -#> 563 0.9 -#> 564 0.9 -#> 565 0.9 -#> 566 0.9 -#> 567 0.9 -#> 568 0.9 -#> 569 0.9 -#> 570 0.9 -#> 571 0.9 -#> 572 0.9 -#> 573 0.9 -#> 574 0.9 -#> 575 0.9 -#> 576 0.9 -#> 577 0.9 -#> 578 0.9 -#> 579 0.9 -#> 580 0.9 -#> 581 0.9 -#> 582 0.9 -#> 583 0.9 -#> 584 0.9 -#> 585 0.9 -#> 586 0.9 -#> 587 0.9 -#> 588 1.0 -#> 589 1.0 -#> 590 1.0 -#> 591 1.0 -#> 592 1.0 -#> 593 1.0 -#> 594 1.0 -#> 595 1.0 -#> 596 1.0 -#> 597 1.0 -#> 598 1.0 -#> 599 1.0 -#> 600 1.0 -#> 601 1.0 -#> 602 1.0 -#> 603 1.0 -#> 604 1.0 -#> 605 1.0 -#> 606 1.0 -#> 607 1.0 -#> 608 1.0 -#> 609 1.0 -#> 610 1.0 -#> 611 1.0 -#> 612 1.0 -#> 613 1.0 -#> 614 1.0 -#> 615 1.0 -#> 616 1.3 -#> 617 1.3 -#> 618 1.3 -#> 619 1.3 -#> 620 1.3 -#> 621 1.3 -#> 622 1.3 -#> 623 1.3 -#> 624 1.3 -#> 625 1.3 -#> 626 1.3 -#> 627 1.3 -#> 628 1.3 -#> 629 1.3 -#> 630 1.3 -#> 631 1.3 -#> 632 1.3 -#> 633 1.3 -#> 634 1.3 -#> 635 1.3 -#> 636 1.3 -#> 637 1.3 -#> 638 1.3 -#> 639 1.3 -#> 640 1.3 -#> 641 1.3 -#> 642 1.3 -#> 643 1.3 -#> 644 0.4 -#> 645 0.4 -#> 646 0.4 -#> 647 0.4 -#> 648 0.4 -#> 649 0.4 -#> 650 0.4 -#> 651 0.4 -#> 652 0.4 -#> 653 0.4 -#> 654 0.4 -#> 655 0.4 -#> 656 0.4 -#> 657 0.4 -#> 658 0.4 -#> 659 0.4 -#> 660 0.4 -#> 661 0.4 -#> 662 0.4 -#> 663 0.4 -#> 664 0.4 -#> 665 0.4 -#> 666 0.4 -#> 667 0.4 -#> 668 0.4 -#> 669 0.4 -#> 670 0.4 -#> 671 0.4 -#> 672 1.1 -#> 673 1.1 -#> 674 1.1 -#> 675 1.1 -#> 676 1.1 -#> 677 1.1 -#> 678 1.1 -#> 679 1.1 -#> 680 1.1 -#> 681 1.1 -#> 682 1.1 -#> 683 1.1 -#> 684 1.1 -#> 685 1.1 -#> 686 1.1 -#> 687 1.1 -#> 688 1.1 -#> 689 1.1 -#> 690 1.1 -#> 691 1.1 -#> 692 1.1 -#> 693 1.1 -#> 694 1.1 -#> 695 1.1 -#> 696 1.1 -#> 697 1.1 -#> 698 1.1 -#> 699 1.1 -#> 700 4.1 -#> 701 4.1 -#> 702 4.1 -#> 703 4.1 -#> 704 4.1 -#> 705 4.1 -#> 706 4.1 -#> 707 4.1 -#> 708 4.1 -#> 709 4.1 -#> 710 4.1 -#> 711 4.1 -#> 712 4.1 -#> 713 4.1 -#> 714 4.1 -#> 715 4.1 -#> 716 4.1 -#> 717 4.1 -#> 718 4.1 -#> 719 4.1 -#> 720 4.1 -#> 721 4.1 -#> 722 4.1 -#> 723 4.1 -#> 724 4.1 -#> 725 4.1 -#> 726 4.1 -#> 727 4.1 -#> 728 1.2 -#> 729 1.2 -#> 730 1.2 -#> 731 1.2 -#> 732 1.2 -#> 733 1.2 -#> 734 1.2 -#> 735 1.2 -#> 736 1.2 -#> 737 1.2 -#> 738 1.2 -#> 739 1.2 -#> 740 1.2 -#> 741 1.2 -#> 742 1.2 -#> 743 1.2 -#> 744 1.2 -#> 745 1.2 -#> 746 1.2 -#> 747 1.2 -#> 748 1.2 -#> 749 1.2 -#> 750 1.2 -#> 751 1.2 -#> 752 1.2 -#> 753 1.2 -#> 754 1.2 -#> 755 1.2 -#> 756 1.7 -#> 757 1.7 -#> 758 1.7 -#> 759 1.7 -#> 760 1.7 -#> 761 1.7 -#> 762 1.7 -#> 763 1.7 -#> 764 1.7 -#> 765 1.7 -#> 766 1.7 -#> 767 1.7 -#> 768 1.7 -#> 769 1.7 -#> 770 1.7 -#> 771 1.7 -#> 772 1.7 -#> 773 1.7 -#> 774 1.7 -#> 775 1.7 -#> 776 1.7 -#> 777 1.7 -#> 778 1.7 -#> 779 1.7 -#> 780 1.7 -#> 781 1.7 -#> 782 1.7 -#> 783 1.7 -#> 784 0.6 -#> 785 0.6 -#> 786 0.6 -#> 787 0.6 -#> 788 0.6 -#> 789 0.6 -#> 790 0.6 -#> 791 0.6 -#> 792 0.6 -#> 793 0.6 -#> 794 0.6 -#> 795 0.6 -#> 796 0.6 -#> 797 0.6 -#> 798 0.6 -#> 799 0.6 -#> 800 0.6 -#> 801 0.6 -#> 802 0.6 -#> 803 0.6 -#> 804 0.6 -#> 805 0.6 -#> 806 0.6 -#> 807 0.6 -#> 808 0.6 -#> 809 0.6 -#> 810 0.6 -#> 811 0.6 -#> 812 1.2 -#> 813 1.2 -#> 814 1.2 -#> 815 1.2 -#> 816 1.2 -#> 817 1.2 -#> 818 1.2 -#> 819 1.2 -#> 820 1.2 -#> 821 1.2 -#> 822 1.2 -#> 823 1.2 -#> 824 1.2 -#> 825 1.2 -#> 826 1.2 -#> 827 1.2 -#> 828 1.2 -#> 829 1.2 -#> 830 1.2 -#> 831 1.2 -#> 832 1.2 -#> 833 1.2 -#> 834 1.2 -#> 835 1.2 -#> 836 1.2 -#> 837 1.2 -#> 838 1.2 -#> 839 1.2 -#> 840 1.3 -#> 841 1.3 -#> 842 1.3 -#> 843 1.3 -#> 844 1.3 -#> 845 1.3 -#> 846 1.3 -#> 847 1.3 -#> 848 1.3 -#> 849 1.3 -#> 850 1.3 -#> 851 1.3 -#> 852 1.3 -#> 853 1.3 -#> 854 1.3 -#> 855 1.3 -#> 856 1.3 -#> 857 1.3 -#> 858 1.3 -#> 859 1.3 -#> 860 1.3 -#> 861 1.3 -#> 862 1.3 -#> 863 1.3 -#> 864 1.3 -#> 865 1.3 -#> 866 1.3 -#> 867 1.4 -#> 868 1.4 -#> 869 1.4 -#> 870 1.4 -#> 871 1.4 -#> 872 1.4 -#> 873 1.4 -#> 874 1.4 -#> 875 1.4 -#> 876 1.4 -#> 877 1.4 -#> 878 1.4 -#> 879 1.4 -#> 880 1.4 -#> 881 1.4 -#> 882 1.4 -#> 883 1.4 -#> 884 1.4 -#> 885 1.4 -#> 886 1.4 -#> 887 1.4 -#> 888 1.4 -#> 889 1.4 -#> 890 1.4 -#> 891 1.4 -#> 892 1.4 -#> 893 1.4 -#> 894 1.4 -#> 895 1.0 -#> 896 1.0 -#> 897 1.0 -#> 898 1.0 -#> 899 1.0 -#> 900 1.0 -#> 901 1.0 -#> 902 1.0 -#> 903 1.0 -#> 904 1.0 -#> 905 1.0 -#> 906 1.0 -#> 907 1.0 -#> 908 1.0 -#> 909 1.0 -#> 910 1.0 -#> 911 1.0 -#> 912 1.0 -#> 913 1.0 -#> 914 1.0 -#> 915 1.0 -#> 916 1.0 -#> 917 1.0 -#> 918 1.0 -#> 919 1.0 -#> 920 1.0 -#> 921 1.0 -#> 922 1.0 -#> 923 1.8 -#> 924 1.8 -#> 925 1.8 -#> 926 1.8 -#> 927 1.8 -#> 928 1.8 -#> 929 1.8 -#> 930 1.8 -#> 931 1.8 -#> 932 1.8 -#> 933 1.8 -#> 934 1.8 -#> 935 1.8 -#> 936 1.8 -#> 937 1.8 -#> 938 1.8 -#> 939 1.8 -#> 940 1.8 -#> 941 1.8 -#> 942 1.8 -#> 943 1.8 -#> 944 1.8 -#> 945 1.8 -#> 946 1.8 -#> 947 1.8 -#> 948 1.8 -#> 949 1.8 -#> 950 1.8 -#> 951 0.5 -#> 952 0.5 -#> 953 0.5 -#> 954 0.5 -#> 955 0.5 -#> 956 0.5 -#> 957 0.5 -#> 958 0.5 -#> 959 0.5 -#> 960 0.5 -#> 961 0.5 -#> 962 0.5 -#> 963 0.5 -#> 964 0.5 -#> 965 0.5 -#> 966 0.5 -#> 967 0.5 -#> 968 0.5 -#> 969 0.5 -#> 970 0.5 -#> 971 0.5 -#> 972 0.5 -#> 973 0.5 -#> 974 0.5 -#> 975 0.5 -#> 976 0.5 -#> 977 0.5 -#> 978 0.5 -#> 979 0.8 -#> 980 0.8 -#> 981 0.8 -#> 982 0.8 -#> 983 0.8 -#> 984 0.8 -#> 985 0.8 -#> 986 0.8 -#> 987 0.8 -#> 988 0.8 -#> 989 0.8 -#> 990 0.8 -#> 991 0.8 -#> 992 0.8 -#> 993 0.8 -#> 994 0.8 -#> 995 0.8 -#> 996 0.8 -#> 997 0.8 -#> 998 0.8 -#> 999 0.8 -#> 1000 0.8 -#> 1001 0.8 -#> 1002 0.8 -#> 1003 0.8 -#> 1004 0.8 -#> 1005 0.8 -#> 1006 0.8 -#> 1007 0.8 -#> 1008 0.8 -#> 1009 0.8 -#> 1010 0.8 -#> 1011 0.8 -#> 1012 0.8 -#> 1013 0.8 -#> 1014 0.8 -#> 1015 0.8 -#> 1016 0.8 -#> 1017 0.8 -#> 1018 0.8 -#> 1019 0.8 -#> 1020 0.8 -#> 1021 0.8 -#> 1022 0.8 -#> 1023 0.8 -#> 1024 0.8 -#> 1025 0.8 -#> 1026 0.8 -#> 1027 0.8 -#> 1028 0.8 -#> 1029 0.8 -#> 1030 0.8 -#> 1031 0.8 -#> 1032 0.8 -#> 1033 0.8 -#> 1034 0.8 -#> 1035 1.9 -#> 1036 1.9 -#> 1037 1.9 -#> 1038 1.9 -#> 1039 1.9 -#> 1040 1.9 -#> 1041 1.9 -#> 1042 1.9 -#> 1043 1.9 -#> 1044 1.9 -#> 1045 1.9 -#> 1046 1.9 -#> 1047 1.9 -#> 1048 1.9 -#> 1049 1.9 -#> 1050 1.9 -#> 1051 1.9 -#> 1052 1.9 -#> 1053 1.9 -#> 1054 1.9 -#> 1055 1.9 -#> 1056 1.9 -#> 1057 1.9 -#> 1058 1.9 -#> 1059 1.9 -#> 1060 1.9 -#> 1061 1.9 -#> 1062 1.9 -#> 1063 1.0 -#> 1064 1.0 -#> 1065 1.0 -#> 1066 1.0 -#> 1067 1.0 -#> 1068 1.0 -#> 1069 1.0 -#> 1070 1.0 -#> 1071 1.0 -#> 1072 1.0 -#> 1073 1.0 -#> 1074 1.0 -#> 1075 1.0 -#> 1076 1.0 -#> 1077 1.0 -#> 1078 1.0 -#> 1079 1.0 -#> 1080 1.0 -#> 1081 1.0 -#> 1082 1.0 -#> 1083 1.0 -#> 1084 1.0 -#> 1085 1.0 -#> 1086 1.0 -#> 1087 1.0 -#> 1088 1.0 -#> 1089 1.0 -#> 1090 1.0 -#> 1091 0.2 -#> 1092 0.2 -#> 1093 0.2 -#> 1094 0.2 -#> 1095 0.2 -#> 1096 0.2 -#> 1097 0.2 -#> 1098 0.2 -#> 1099 0.2 -#> 1100 0.2 -#> 1101 0.2 -#> 1102 0.2 -#> 1103 0.2 -#> 1104 0.2 -#> 1105 0.2 -#> 1106 0.2 -#> 1107 0.2 -#> 1108 0.2 -#> 1109 0.2 -#> 1110 0.2 -#> 1111 0.2 -#> 1112 0.2 -#> 1113 0.2 -#> 1114 0.2 -#> 1115 0.2 -#> 1116 0.2 -#> 1117 0.2 -#> 1118 0.2 -#> 1119 1.3 -#> 1120 1.3 -#> 1121 1.3 -#> 1122 1.3 -#> 1123 1.3 -#> 1124 1.3 -#> 1125 1.3 -#> 1126 1.3 -#> 1127 1.3 -#> 1128 1.3 -#> 1129 1.3 -#> 1130 1.3 -#> 1131 1.3 -#> 1132 1.3 -#> 1133 1.3 -#> 1134 1.3 -#> 1135 1.3 -#> 1136 1.3 -#> 1137 1.3 -#> 1138 1.3 -#> 1139 1.3 -#> 1140 1.3 -#> 1141 1.3 -#> 1142 1.3 -#> 1143 1.3 -#> 1144 1.3 -#> 1145 1.3 -#> 1146 1.3 -#> 1147 0.3 -#> 1148 0.3 -#> 1149 0.3 -#> 1150 0.3 -#> 1151 0.3 -#> 1152 0.3 -#> 1153 0.3 -#> 1154 0.3 -#> 1155 0.3 -#> 1156 0.3 -#> 1157 0.3 -#> 1158 0.3 -#> 1159 0.3 -#> 1160 0.3 -#> 1161 0.3 -#> 1162 0.3 -#> 1163 0.3 -#> 1164 0.3 -#> 1165 0.3 -#> 1166 0.3 -#> 1167 0.3 -#> 1168 0.3 -#> 1169 0.3 -#> 1170 0.3 -#> 1171 0.3 -#> 1172 0.3 -#> 1173 0.3 -#> 1174 0.3 -#> 1175 2.1 -#> 1176 2.1 -#> 1177 2.1 -#> 1178 2.1 -#> 1179 2.1 -#> 1180 2.1 -#> 1181 2.1 -#> 1182 2.1 -#> 1183 2.1 -#> 1184 2.1 -#> 1185 2.1 -#> 1186 2.1 -#> 1187 2.1 -#> 1188 2.1 -#> 1189 2.1 -#> 1190 2.1 -#> 1191 2.1 -#> 1192 2.1 -#> 1193 2.1 -#> 1194 2.1 -#> 1195 2.1 -#> 1196 2.1 -#> 1197 2.1 -#> 1198 2.1 -#> 1199 2.1 -#> 1200 2.1 -#> 1201 2.1 -#> 1202 2.1 -#> 1203 1.1 -#> 1204 1.1 -#> 1205 1.1 -#> 1206 1.1 -#> 1207 1.1 -#> 1208 1.1 -#> 1209 1.1 -#> 1210 1.1 -#> 1211 1.1 -#> 1212 1.1 -#> 1213 1.1 -#> 1214 1.1 -#> 1215 1.1 -#> 1216 1.1 -#> 1217 1.1 -#> 1218 1.1 -#> 1219 1.1 -#> 1220 1.1 -#> 1221 1.1 -#> 1222 1.1 -#> 1223 1.1 -#> 1224 1.1 -#> 1225 1.1 -#> 1226 1.1 -#> 1227 1.1 -#> 1228 1.1 -#> 1229 1.1 -#> 1230 1.1 -#> 1231 0.4 -#> 1232 0.4 -#> 1233 0.4 -#> 1234 0.4 -#> 1235 0.4 -#> 1236 0.4 -#> 1237 0.4 -#> 1238 0.4 -#> 1239 0.4 -#> 1240 0.4 -#> 1241 0.4 -#> 1242 0.4 -#> 1243 0.4 -#> 1244 0.4 -#> 1245 0.4 -#> 1246 0.4 -#> 1247 0.4 -#> 1248 0.4 -#> 1249 0.4 -#> 1250 0.4 -#> 1251 0.4 -#> 1252 0.4 -#> 1253 0.4 -#> 1254 0.4 -#> 1255 0.4 -#> 1256 0.4 -#> 1257 0.4 -#> 1258 0.4 -#> 1259 3.2 -#> 1260 3.2 -#> 1261 3.2 -#> 1262 3.2 -#> 1263 3.2 -#> 1264 3.2 -#> 1265 3.2 -#> 1266 3.2 -#> 1267 3.2 -#> 1268 3.2 -#> 1269 3.2 -#> 1270 3.2 -#> 1271 3.2 -#> 1272 3.2 -#> 1273 3.2 -#> 1274 3.2 -#> 1275 3.2 -#> 1276 3.2 -#> 1277 3.2 -#> 1278 3.2 -#> 1279 3.2 -#> 1280 3.2 -#> 1281 3.2 -#> 1282 3.2 -#> 1283 3.2 -#> 1284 3.2 -#> 1285 3.2 -#> 1286 3.2 -#> 1287 0.4 -#> 1288 0.4 -#> 1289 0.4 -#> 1290 0.4 -#> 1291 0.4 -#> 1292 0.4 -#> 1293 0.4 -#> 1294 0.4 -#> 1295 0.4 -#> 1296 0.4 -#> 1297 0.4 -#> 1298 0.4 -#> 1299 0.4 -#> 1300 0.4 -#> 1301 0.4 -#> 1302 0.4 -#> 1303 0.4 -#> 1304 0.4 -#> 1305 0.4 -#> 1306 0.4 -#> 1307 0.4 -#> 1308 0.4 -#> 1309 0.4 -#> 1310 0.4 -#> 1311 0.4 -#> 1312 0.4 -#> 1313 0.4 -#> 1314 0.4 -#> 1315 0.6 -#> 1316 0.6 -#> 1317 0.6 -#> 1318 0.6 -#> 1319 0.6 -#> 1320 0.6 -#> 1321 0.6 -#> 1322 0.6 -#> 1323 0.6 -#> 1324 0.6 -#> 1325 0.6 -#> 1326 0.6 -#> 1327 0.6 -#> 1328 0.6 -#> 1329 0.6 -#> 1330 0.6 -#> 1331 0.6 -#> 1332 0.6 -#> 1333 0.6 -#> 1334 0.6 -#> 1335 0.6 -#> 1336 0.6 -#> 1337 0.6 -#> 1338 0.6 -#> 1339 0.6 -#> 1340 0.6 -#> 1341 0.6 -#> 1342 0.6 -#> 1343 1.5 -#> 1344 1.5 -#> 1345 1.5 -#> 1346 1.5 -#> 1347 1.5 -#> 1348 1.5 -#> 1349 1.5 -#> 1350 1.5 -#> 1351 1.5 -#> 1352 1.5 -#> 1353 1.5 -#> 1354 1.5 -#> 1355 1.5 -#> 1356 1.5 -#> 1357 1.5 -#> 1358 1.5 -#> 1359 1.5 -#> 1360 1.5 -#> 1361 1.5 -#> 1362 1.5 -#> 1363 1.5 -#> 1364 1.5 -#> 1365 1.5 -#> 1366 1.5 -#> 1367 1.5 -#> 1368 1.5 -#> 1369 1.5 -#> 1370 1.5 -#> 1371 0.3 -#> 1372 0.3 -#> 1373 0.3 -#> 1374 0.3 -#> 1375 0.3 -#> 1376 0.3 -#> 1377 0.3 -#> 1378 0.3 -#> 1379 0.3 -#> 1380 0.3 -#> 1381 0.3 -#> 1382 0.3 -#> 1383 0.3 -#> 1384 0.3 -#> 1385 0.3 -#> 1386 0.3 -#> 1387 0.3 -#> 1388 0.3 -#> 1389 0.3 -#> 1390 0.3 -#> 1391 0.3 -#> 1392 0.3 -#> 1393 0.3 -#> 1394 0.3 -#> 1395 0.3 -#> 1396 0.3 -#> 1397 0.3 -#> 1398 0.3 -#> 1399 2.1 -#> 1400 2.1 -#> 1401 2.1 -#> 1402 2.1 -#> 1403 2.1 -#> 1404 2.1 -#> 1405 2.1 -#> 1406 2.1 -#> 1407 2.1 -#> 1408 2.1 -#> 1409 2.1 -#> 1410 2.1 -#> 1411 2.1 -#> 1412 2.1 -#> 1413 2.1 -#> 1414 2.1 -#> 1415 2.1 -#> 1416 2.1 -#> 1417 2.1 -#> 1418 2.1 -#> 1419 2.1 -#> 1420 2.1 -#> 1421 2.1 -#> 1422 2.1 -#> 1423 2.1 -#> 1424 2.1 -#> 1425 2.1 -#> 1426 2.1 -#> 1427 0.9 -#> 1428 0.9 -#> 1429 0.9 -#> 1430 0.9 -#> 1431 0.9 -#> 1432 0.9 -#> 1433 0.9 -#> 1434 0.9 -#> 1435 0.9 -#> 1436 0.9 -#> 1437 0.9 -#> 1438 0.9 -#> 1439 0.9 -#> 1440 0.9 -#> 1441 0.9 -#> 1442 0.9 -#> 1443 0.9 -#> 1444 0.9 -#> 1445 0.9 -#> 1446 0.9 -#> 1447 0.9 -#> 1448 0.9 -#> 1449 0.9 -#> 1450 0.9 -#> 1451 0.9 -#> 1452 0.9 -#> 1453 0.9 -#> 1454 0.9 -#> 1455 0.4 -#> 1456 0.4 -#> 1457 0.4 -#> 1458 0.4 -#> 1459 0.4 -#> 1460 0.4 -#> 1461 0.4 -#> 1462 0.4 -#> 1463 0.4 -#> 1464 0.4 -#> 1465 0.4 -#> 1466 0.4 -#> 1467 0.4 -#> 1468 0.4 -#> 1469 0.4 -#> 1470 0.4 -#> 1471 0.4 -#> 1472 0.4 -#> 1473 0.4 -#> 1474 0.4 -#> 1475 0.4 -#> 1476 0.4 -#> 1477 0.4 -#> 1478 0.4 -#> 1479 0.4 -#> 1480 0.4 -#> 1481 0.4 -#> 1482 0.4 -#> 1483 2.5 -#> 1484 2.5 -#> 1485 2.5 -#> 1486 2.5 -#> 1487 2.5 -#> 1488 2.5 -#> 1489 2.5 -#> 1490 2.5 -#> 1491 2.5 -#> 1492 2.5 -#> 1493 2.5 -#> 1494 2.5 -#> 1495 2.5 -#> 1496 2.5 -#> 1497 2.5 -#> 1498 2.5 -#> 1499 2.5 -#> 1500 2.5 -#> 1501 2.5 -#> 1502 2.5 -#> 1503 2.5 -#> 1504 2.5 -#> 1505 2.5 -#> 1506 2.5 -#> 1507 2.5 -#> 1508 2.5 -#> 1509 2.5 -#> 1510 2.5 -#> 1511 1.5 -#> 1512 1.5 -#> 1513 1.5 -#> 1514 1.5 -#> 1515 1.5 -#> 1516 1.5 -#> 1517 1.5 -#> 1518 1.5 -#> 1519 1.5 -#> 1520 1.5 -#> 1521 1.5 -#> 1522 1.5 -#> 1523 1.5 -#> 1524 1.5 -#> 1525 1.5 -#> 1526 1.5 -#> 1527 1.5 -#> 1528 1.5 -#> 1529 1.5 -#> 1530 1.5 -#> 1531 1.5 -#> 1532 1.5 -#> 1533 1.5 -#> 1534 1.5 -#> 1535 1.5 -#> 1536 1.5 -#> 1537 1.5 -#> 1538 1.5 -#> 1539 0.4 -#> 1540 0.4 -#> 1541 0.4 -#> 1542 0.4 -#> 1543 0.4 -#> 1544 0.4 -#> 1545 0.4 -#> 1546 0.4 -#> 1547 0.4 -#> 1548 0.4 -#> 1549 0.4 -#> 1550 0.4 -#> 1551 0.4 -#> 1552 0.4 -#> 1553 0.4 -#> 1554 0.4 -#> 1555 0.4 -#> 1556 0.4 -#> 1557 0.4 -#> 1558 0.4 -#> 1559 0.4 -#> 1560 0.4 -#> 1561 0.4 -#> 1562 0.4 -#> 1563 0.4 -#> 1564 0.4 -#> 1565 0.4 -#> 1566 0.4 -#> 1567 1.1 -#> 1568 1.1 -#> 1569 1.1 -#> 1570 1.1 -#> 1571 1.1 -#> 1572 1.1 -#> 1573 1.1 -#> 1574 1.1 -#> 1575 1.1 -#> 1576 1.1 -#> 1577 1.1 -#> 1578 1.1 -#> 1579 1.1 -#> 1580 1.1 -#> 1581 1.1 -#> 1582 1.1 -#> 1583 1.1 -#> 1584 1.1 -#> 1585 1.1 -#> 1586 1.1 -#> 1587 1.1 -#> 1588 1.1 -#> 1589 1.1 -#> 1590 1.1 -#> 1591 1.1 -#> 1592 1.1 -#> 1593 1.1 -#> 1594 1.1 -#> 1595 0.8 -#> 1596 0.8 -#> 1597 0.8 -#> 1598 0.8 -#> 1599 0.8 -#> 1600 0.8 -#> 1601 0.8 -#> 1602 0.8 -#> 1603 0.8 -#> 1604 0.8 -#> 1605 0.8 -#> 1606 0.8 -#> 1607 0.8 -#> 1608 0.8 -#> 1609 0.8 -#> 1610 0.8 -#> 1611 0.8 -#> 1612 0.8 -#> 1613 0.8 -#> 1614 0.8 -#> 1615 0.8 -#> 1616 0.8 -#> 1617 0.8 -#> 1618 0.8 -#> 1619 0.8 -#> 1620 0.8 -#> 1621 0.8 -#> 1622 0.8 -#> 1623 1.6 -#> 1624 1.6 -#> 1625 1.6 -#> 1626 1.6 -#> 1627 1.6 -#> 1628 1.6 -#> 1629 1.6 -#> 1630 1.6 -#> 1631 1.6 -#> 1632 1.6 -#> 1633 1.6 -#> 1634 1.6 -#> 1635 1.6 -#> 1636 1.6 -#> 1637 1.6 -#> 1638 1.6 -#> 1639 1.6 -#> 1640 1.6 -#> 1641 1.6 -#> 1642 1.6 -#> 1643 1.6 -#> 1644 1.6 -#> 1645 1.6 -#> 1646 1.6 -#> 1647 1.6 -#> 1648 1.6 -#> 1649 1.6 -#> 1650 1.6 -#> 1651 1.5 -#> 1652 1.5 -#> 1653 1.5 -#> 1654 1.5 -#> 1655 1.5 -#> 1656 1.5 -#> 1657 1.5 -#> 1658 1.5 -#> 1659 1.5 -#> 1660 1.5 -#> 1661 1.5 -#> 1662 1.5 -#> 1663 1.5 -#> 1664 1.5 -#> 1665 1.5 -#> 1666 1.5 -#> 1667 1.5 -#> 1668 1.5 -#> 1669 1.5 -#> 1670 1.5 -#> 1671 1.5 -#> 1672 1.5 -#> 1673 1.5 -#> 1674 1.5 -#> 1675 1.5 -#> 1676 1.5 -#> 1677 1.5 -#> 1678 1.5 -#> 1679 0.9 -#> 1680 0.9 -#> 1681 0.9 -#> 1682 0.9 -#> 1683 0.9 -#> 1684 0.9 -#> 1685 0.9 -#> 1686 0.9 -#> 1687 0.9 -#> 1688 0.9 -#> 1689 0.9 -#> 1690 0.9 -#> 1691 0.9 -#> 1692 0.9 -#> 1693 0.9 -#> 1694 0.9 -#> 1695 0.9 -#> 1696 0.9 -#> 1697 0.9 -#> 1698 0.9 -#> 1699 0.9 -#> 1700 0.9 -#> 1701 0.9 -#> 1702 0.9 -#> 1703 0.9 -#> 1704 0.9 -#> 1705 0.9 -#> 1706 0.9 -#> 1707 0.9 -#> 1708 0.9 -#> 1709 0.9 -#> 1710 0.9 -#> 1711 0.9 -#> 1712 0.9 -#> 1713 0.9 -#> 1714 0.9 -#> 1715 0.9 -#> 1716 0.9 -#> 1717 0.9 -#> 1718 0.9 -#> 1719 0.9 -#> 1720 0.9 -#> 1721 0.9 -#> 1722 0.9 -#> 1723 0.9 -#> 1724 0.9 -#> 1725 0.9 -#> 1726 0.9 -#> 1727 0.9 -#> 1728 0.9 -#> 1729 0.9 -#> 1730 0.9 -#> 1731 0.9 -#> 1732 0.9 -#> 1733 0.9 -#> 1734 0.9 -#> 1735 2.0 -#> 1736 2.0 -#> 1737 2.0 -#> 1738 2.0 -#> 1739 2.0 -#> 1740 2.0 -#> 1741 2.0 -#> 1742 2.0 -#> 1743 2.0 -#> 1744 2.0 -#> 1745 2.0 -#> 1746 2.0 -#> 1747 2.0 -#> 1748 2.0 -#> 1749 2.0 -#> 1750 2.0 -#> 1751 2.0 -#> 1752 2.0 -#> 1753 2.0 -#> 1754 2.0 -#> 1755 2.0 -#> 1756 2.0 -#> 1757 2.0 -#> 1758 2.0 -#> 1759 2.0 -#> 1760 2.0 -#> 1761 2.0 -#> 1762 2.0 -#> 1763 0.8 -#> 1764 0.8 -#> 1765 0.8 -#> 1766 0.8 -#> 1767 0.8 -#> 1768 0.8 -#> 1769 0.8 -#> 1770 0.8 -#> 1771 0.8 -#> 1772 0.8 -#> 1773 0.8 -#> 1774 0.8 -#> 1775 0.8 -#> 1776 0.8 -#> 1777 0.8 -#> 1778 0.8 -#> 1779 0.8 -#> 1780 0.8 -#> 1781 0.8 -#> 1782 0.8 -#> 1783 0.8 -#> 1784 0.8 -#> 1785 0.8 -#> 1786 0.8 -#> 1787 0.8 -#> 1788 0.8 -#> 1789 0.8 -#> 1790 0.8 -#> 1791 1.7 -#> 1792 1.7 -#> 1793 1.7 -#> 1794 1.7 -#> 1795 1.7 -#> 1796 1.7 -#> 1797 1.7 -#> 1798 1.7 -#> 1799 1.7 -#> 1800 1.7 -#> 1801 1.7 -#> 1802 1.7 -#> 1803 1.7 -#> 1804 1.7 -#> 1805 1.7 -#> 1806 1.7 -#> 1807 1.7 -#> 1808 1.7 -#> 1809 1.7 -#> 1810 1.7 -#> 1811 1.7 -#> 1812 1.7 -#> 1813 1.7 -#> 1814 1.7 -#> 1815 1.7 -#> 1816 1.7 -#> 1817 1.7 -#> 1818 1.7 -#> 1819 0.8 -#> 1820 0.8 -#> 1821 0.8 -#> 1822 0.8 -#> 1823 0.8 -#> 1824 0.8 -#> 1825 0.8 -#> 1826 0.8 -#> 1827 0.8 -#> 1828 0.8 -#> 1829 0.8 -#> 1830 0.8 -#> 1831 0.8 -#> 1832 0.8 -#> 1833 0.8 -#> 1834 0.8 -#> 1835 0.8 -#> 1836 0.8 -#> 1837 0.8 -#> 1838 0.8 -#> 1839 0.8 -#> 1840 0.8 -#> 1841 0.8 -#> 1842 0.8 -#> 1843 0.8 -#> 1844 0.8 -#> 1845 0.8 -#> 1846 0.8 -#> 1847 0.9 -#> 1848 0.9 -#> 1849 0.9 -#> 1850 0.9 -#> 1851 0.9 -#> 1852 0.9 -#> 1853 0.9 -#> 1854 0.9 -#> 1855 0.9 -#> 1856 0.9 -#> 1857 0.9 -#> 1858 0.9 -#> 1859 0.9 -#> 1860 0.9 -#> 1861 0.9 -#> 1862 0.9 -#> 1863 0.9 -#> 1864 0.9 -#> 1865 0.9 -#> 1866 0.9 -#> 1867 0.9 -#> 1868 0.9 -#> 1869 0.9 -#> 1870 0.9 -#> 1871 0.9 -#> 1872 0.9 -#> 1873 0.9 -#> 1874 0.9 -#> 1875 0.5 -#> 1876 0.5 -#> 1877 0.5 -#> 1878 0.5 -#> 1879 0.5 -#> 1880 0.5 -#> 1881 0.5 -#> 1882 0.5 -#> 1883 0.5 -#> 1884 0.5 -#> 1885 0.5 -#> 1886 0.5 -#> 1887 0.5 -#> 1888 0.5 -#> 1889 0.5 -#> 1890 0.5 -#> 1891 0.5 -#> 1892 0.5 -#> 1893 0.5 -#> 1894 0.5 -#> 1895 0.5 -#> 1896 0.5 -#> 1897 0.5 -#> 1898 0.5 -#> 1899 0.5 -#> 1900 0.5 -#> 1901 0.5 -#> 1902 0.5 -#> 1903 1.2 -#> 1904 1.2 -#> 1905 1.2 -#> 1906 1.2 -#> 1907 1.2 -#> 1908 1.2 -#> 1909 1.2 -#> 1910 1.2 -#> 1911 1.2 -#> 1912 1.2 -#> 1913 1.2 -#> 1914 1.2 -#> 1915 1.2 -#> 1916 1.2 -#> 1917 1.2 -#> 1918 1.2 -#> 1919 1.2 -#> 1920 1.2 -#> 1921 1.2 -#> 1922 1.2 -#> 1923 1.2 -#> 1924 1.2 -#> 1925 1.2 -#> 1926 1.2 -#> 1927 1.2 -#> 1928 1.2 -#> 1929 1.2 -#> 1930 1.2 -#> 1931 2.2 -#> 1932 2.2 -#> 1933 2.2 -#> 1934 2.2 -#> 1935 2.2 -#> 1936 2.2 -#> 1937 2.2 -#> 1938 2.2 -#> 1939 2.2 -#> 1940 2.2 -#> 1941 2.2 -#> 1942 2.2 -#> 1943 2.2 -#> 1944 2.2 -#> 1945 2.2 -#> 1946 2.2 -#> 1947 2.2 -#> 1948 2.2 -#> 1949 2.2 -#> 1950 2.2 -#> 1951 2.2 -#> 1952 2.2 -#> 1953 2.2 -#> 1954 2.2 -#> 1955 2.2 -#> 1956 2.2 -#> 1957 2.2 -#> 1958 2.2 -#> 1959 1.7 -#> 1960 1.7 -#> 1961 1.7 -#> 1962 1.7 -#> 1963 1.7 -#> 1964 1.7 -#> 1965 1.7 -#> 1966 1.7 -#> 1967 1.7 -#> 1968 1.7 -#> 1969 1.7 -#> 1970 1.7 -#> 1971 1.7 -#> 1972 1.7 -#> 1973 1.7 -#> 1974 1.7 -#> 1975 1.7 -#> 1976 1.7 -#> 1977 1.7 -#> 1978 1.7 -#> 1979 1.7 -#> 1980 1.7 -#> 1981 1.7 -#> 1982 1.7 -#> 1983 1.7 -#> 1984 1.7 -#> 1985 1.7 -#> 1986 1.7 -#> 1987 1.0 -#> 1988 1.0 -#> 1989 1.0 -#> 1990 1.0 -#> 1991 1.0 -#> 1992 1.0 -#> 1993 1.0 -#> 1994 1.0 -#> 1995 1.0 -#> 1996 1.0 -#> 1997 1.0 -#> 1998 1.0 -#> 1999 1.0 -#> 2000 1.0 -#> 2001 1.0 -#> 2002 1.0 -#> 2003 1.0 -#> 2004 1.0 -#> 2005 1.0 -#> 2006 1.0 -#> 2007 1.0 -#> 2008 1.0 -#> 2009 1.0 -#> 2010 1.0 -#> 2011 1.0 -#> 2012 1.0 -#> 2013 1.0 -#> 2014 1.0 -#> 2015 0.8 -#> 2016 0.8 -#> 2017 0.8 -#> 2018 0.8 -#> 2019 0.8 -#> 2020 0.8 -#> 2021 0.8 -#> 2022 0.8 -#> 2023 0.8 -#> 2024 0.8 -#> 2025 0.8 -#> 2026 0.8 -#> 2027 0.8 -#> 2028 0.8 -#> 2029 0.8 -#> 2030 0.8 -#> 2031 0.8 -#> 2032 0.8 -#> 2033 0.8 -#> 2034 0.8 -#> 2035 0.8 -#> 2036 0.8 -#> 2037 0.8 -#> 2038 0.8 -#> 2039 0.8 -#> 2040 0.8 -#> Away_Goals -#> 1 -#> 2 -#> 3 -#> 4 -#> 5 -#> 6 -#> 7 -#> 8 -#> 9 -#> 10 -#> 11 -#> 12 -#> 13 -#> 14 -#> 15 -#> 16 -#> 17 -#> 18 -#> 19 -#> 20 -#> 21 -#> 22 -#> 23 -#> 24 -#> 25 -#> 26 -#> 27 -#> 28 -#> 29 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 30 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 31 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 32 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 33 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 34 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 35 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 36 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 37 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 38 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 39 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 40 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 41 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 42 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 43 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 44 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 45 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 46 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 47 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 48 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 49 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 50 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 51 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 52 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 53 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 54 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 55 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 56 Roger Martí · 38&rsquor; José Luis Morales · 54&rsquor; José Luis Morales · 90+5&rsquor; -#> 57 Mario Hermoso · 45&rsquor; -#> 58 Mario Hermoso · 45&rsquor; -#> 59 Mario Hermoso · 45&rsquor; -#> 60 Mario Hermoso · 45&rsquor; -#> 61 Mario Hermoso · 45&rsquor; -#> 62 Mario Hermoso · 45&rsquor; -#> 63 Mario Hermoso · 45&rsquor; -#> 64 Mario Hermoso · 45&rsquor; -#> 65 Mario Hermoso · 45&rsquor; -#> 66 Mario Hermoso · 45&rsquor; -#> 67 Mario Hermoso · 45&rsquor; -#> 68 Mario Hermoso · 45&rsquor; -#> 69 Mario Hermoso · 45&rsquor; -#> 70 Mario Hermoso · 45&rsquor; -#> 71 Mario Hermoso · 45&rsquor; -#> 72 Mario Hermoso · 45&rsquor; -#> 73 Mario Hermoso · 45&rsquor; -#> 74 Mario Hermoso · 45&rsquor; -#> 75 Mario Hermoso · 45&rsquor; -#> 76 Mario Hermoso · 45&rsquor; -#> 77 Mario Hermoso · 45&rsquor; -#> 78 Mario Hermoso · 45&rsquor; -#> 79 Mario Hermoso · 45&rsquor; -#> 80 Mario Hermoso · 45&rsquor; -#> 81 Mario Hermoso · 45&rsquor; -#> 82 Mario Hermoso · 45&rsquor; -#> 83 Mario Hermoso · 45&rsquor; -#> 84 Mario Hermoso · 45&rsquor; -#> 85 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 86 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 87 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 88 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 89 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 90 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 91 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 92 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 93 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 94 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 95 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 96 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 97 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 98 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 99 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 100 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 101 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 102 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 103 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 104 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 105 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 106 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 107 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 108 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 109 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 110 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 111 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 112 Willian José · 40&rsquor; Juanmi · 71&rsquor; -#> 113 -#> 114 -#> 115 -#> 116 -#> 117 -#> 118 -#> 119 -#> 120 -#> 121 -#> 122 -#> 123 -#> 124 -#> 125 -#> 126 -#> 127 -#> 128 -#> 129 -#> 130 -#> 131 -#> 132 -#> 133 -#> 134 -#> 135 -#> 136 -#> 137 -#> 138 -#> 139 -#> 140 -#> 141 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 142 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 143 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 144 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 145 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 146 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 147 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 148 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 149 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 150 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 151 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 152 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 153 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 154 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 155 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 156 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 157 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 158 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 159 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 160 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 161 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 162 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 163 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 164 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 165 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 166 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 167 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 168 Álex Gallar · 5&rsquor; Álex Gallar · 40&rsquor; -#> 169 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 170 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 171 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 172 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 173 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 174 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 175 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 176 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 177 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 178 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 179 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 180 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 181 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 182 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 183 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 184 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 185 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 186 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 187 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 188 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 189 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 190 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 191 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 192 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 193 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 194 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 195 Franco Vázquez · 15&rsquor; André Silva · 31&rsquor; André Silva · 45+1&rsquor; André Silva · 79&rsquor; -#> 196 -#> 197 -#> 198 -#> 199 -#> 200 -#> 201 -#> 202 -#> 203 -#> 204 -#> 205 -#> 206 -#> 207 -#> 208 -#> 209 -#> 210 -#> 211 -#> 212 -#> 213 -#> 214 -#> 215 -#> 216 -#> 217 -#> 218 -#> 219 -#> 220 -#> 221 -#> 222 -#> 223 -#> 224 Ángel Correa · 26&rsquor; -#> 225 Ángel Correa · 26&rsquor; -#> 226 Ángel Correa · 26&rsquor; -#> 227 Ángel Correa · 26&rsquor; -#> 228 Ángel Correa · 26&rsquor; -#> 229 Ángel Correa · 26&rsquor; -#> 230 Ángel Correa · 26&rsquor; -#> 231 Ángel Correa · 26&rsquor; -#> 232 Ángel Correa · 26&rsquor; -#> 233 Ángel Correa · 26&rsquor; -#> 234 Ángel Correa · 26&rsquor; -#> 235 Ángel Correa · 26&rsquor; -#> 236 Ángel Correa · 26&rsquor; -#> 237 Ángel Correa · 26&rsquor; -#> 238 Ángel Correa · 26&rsquor; -#> 239 Ángel Correa · 26&rsquor; -#> 240 Ángel Correa · 26&rsquor; -#> 241 Ángel Correa · 26&rsquor; -#> 242 Ángel Correa · 26&rsquor; -#> 243 Ángel Correa · 26&rsquor; -#> 244 Ángel Correa · 26&rsquor; -#> 245 Ángel Correa · 26&rsquor; -#> 246 Ángel Correa · 26&rsquor; -#> 247 Ángel Correa · 26&rsquor; -#> 248 Ángel Correa · 26&rsquor; -#> 249 Ángel Correa · 26&rsquor; -#> 250 Ángel Correa · 26&rsquor; -#> 251 Ángel Correa · 26&rsquor; -#> 252 Jonathan Silva · 33&rsquor; -#> 253 Jonathan Silva · 33&rsquor; -#> 254 Jonathan Silva · 33&rsquor; -#> 255 Jonathan Silva · 33&rsquor; -#> 256 Jonathan Silva · 33&rsquor; -#> 257 Jonathan Silva · 33&rsquor; -#> 258 Jonathan Silva · 33&rsquor; -#> 259 Jonathan Silva · 33&rsquor; -#> 260 Jonathan Silva · 33&rsquor; -#> 261 Jonathan Silva · 33&rsquor; -#> 262 Jonathan Silva · 33&rsquor; -#> 263 Jonathan Silva · 33&rsquor; -#> 264 Jonathan Silva · 33&rsquor; -#> 265 Jonathan Silva · 33&rsquor; -#> 266 Jonathan Silva · 33&rsquor; -#> 267 Jonathan Silva · 33&rsquor; -#> 268 Jonathan Silva · 33&rsquor; -#> 269 Jonathan Silva · 33&rsquor; -#> 270 Jonathan Silva · 33&rsquor; -#> 271 Jonathan Silva · 33&rsquor; -#> 272 Jonathan Silva · 33&rsquor; -#> 273 Jonathan Silva · 33&rsquor; -#> 274 Jonathan Silva · 33&rsquor; -#> 275 Jonathan Silva · 33&rsquor; -#> 276 Jonathan Silva · 33&rsquor; -#> 277 Jonathan Silva · 33&rsquor; -#> 278 Jonathan Silva · 33&rsquor; -#> 279 Jonathan Silva · 33&rsquor; -#> 280 -#> 281 -#> 282 -#> 283 -#> 284 -#> 285 -#> 286 -#> 287 -#> 288 -#> 289 -#> 290 -#> 291 -#> 292 -#> 293 -#> 294 -#> 295 -#> 296 -#> 297 -#> 298 -#> 299 -#> 300 -#> 301 -#> 302 -#> 303 -#> 304 -#> 305 -#> 306 -#> 307 -#> 308 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 309 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 310 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 311 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 312 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 313 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 314 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 315 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 316 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 317 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 318 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 319 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 320 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 321 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 322 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 323 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 324 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 325 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 326 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 327 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 328 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 329 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 330 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 331 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 332 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 333 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 334 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 335 David Zurutuza · 11&rsquor; Asier Illarramendi · 17&rsquor; -#> 336 -#> 337 -#> 338 -#> 339 -#> 340 -#> 341 -#> 342 -#> 343 -#> 344 -#> 345 -#> 346 -#> 347 -#> 348 -#> 349 -#> 350 -#> 351 -#> 352 -#> 353 -#> 354 -#> 355 -#> 356 -#> 357 -#> 358 -#> 359 -#> 360 -#> 361 -#> 362 -#> 363 -#> 364 -#> 365 -#> 366 -#> 367 -#> 368 -#> 369 -#> 370 -#> 371 -#> 372 -#> 373 -#> 374 -#> 375 -#> 376 -#> 377 -#> 378 -#> 379 -#> 380 -#> 381 -#> 382 -#> 383 -#> 384 -#> 385 -#> 386 -#> 387 -#> 388 -#> 389 -#> 390 -#> 391 -#> 392 Ousmane Dembélé · 57&rsquor; -#> 393 Ousmane Dembélé · 57&rsquor; -#> 394 Ousmane Dembélé · 57&rsquor; -#> 395 Ousmane Dembélé · 57&rsquor; -#> 396 Ousmane Dembélé · 57&rsquor; -#> 397 Ousmane Dembélé · 57&rsquor; -#> 398 Ousmane Dembélé · 57&rsquor; -#> 399 Ousmane Dembélé · 57&rsquor; -#> 400 Ousmane Dembélé · 57&rsquor; -#> 401 Ousmane Dembélé · 57&rsquor; -#> 402 Ousmane Dembélé · 57&rsquor; -#> 403 Ousmane Dembélé · 57&rsquor; -#> 404 Ousmane Dembélé · 57&rsquor; -#> 405 Ousmane Dembélé · 57&rsquor; -#> 406 Ousmane Dembélé · 57&rsquor; -#> 407 Ousmane Dembélé · 57&rsquor; -#> 408 Ousmane Dembélé · 57&rsquor; -#> 409 Ousmane Dembélé · 57&rsquor; -#> 410 Ousmane Dembélé · 57&rsquor; -#> 411 Ousmane Dembélé · 57&rsquor; -#> 412 Ousmane Dembélé · 57&rsquor; -#> 413 Ousmane Dembélé · 57&rsquor; -#> 414 Ousmane Dembélé · 57&rsquor; -#> 415 Ousmane Dembélé · 57&rsquor; -#> 416 Ousmane Dembélé · 57&rsquor; -#> 417 Ousmane Dembélé · 57&rsquor; -#> 418 Ousmane Dembélé · 57&rsquor; -#> 419 Ousmane Dembélé · 57&rsquor; -#> 420 -#> 421 -#> 422 -#> 423 -#> 424 -#> 425 -#> 426 -#> 427 -#> 428 -#> 429 -#> 430 -#> 431 -#> 432 -#> 433 -#> 434 -#> 435 -#> 436 -#> 437 -#> 438 -#> 439 -#> 440 -#> 441 -#> 442 -#> 443 -#> 444 -#> 445 -#> 446 -#> 447 -#> 448 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 449 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 450 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 451 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 452 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 453 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 454 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 455 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 456 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 457 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 458 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 459 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 460 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 461 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 462 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 463 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 464 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 465 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 466 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 467 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 468 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 469 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 470 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 471 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 472 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 473 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 474 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 475 Sergio Ramos (P) · 39&rsquor; Karim Benzema (P) · 52&rsquor; Gareth Bale · 59&rsquor; Karim Benzema · 80&rsquor; -#> 476 -#> 477 -#> 478 -#> 479 -#> 480 -#> 481 -#> 482 -#> 483 -#> 484 -#> 485 -#> 486 -#> 487 -#> 488 -#> 489 -#> 490 -#> 491 -#> 492 -#> 493 -#> 494 -#> 495 -#> 496 -#> 497 -#> 498 -#> 499 -#> 500 -#> 501 -#> 502 -#> 503 -#> 504 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 505 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 506 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 507 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 508 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 509 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 510 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 511 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 512 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 513 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 514 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 515 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 516 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 517 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 518 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 519 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 520 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 521 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 522 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 523 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 524 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 525 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 526 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 527 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 528 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 529 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 530 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 531 Pione Sisto · 10&rsquor; Maxi Gómez · 35&rsquor; -#> 532 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 533 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 534 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 535 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 536 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 537 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 538 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 539 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 540 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 541 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 542 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 543 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 544 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 545 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 546 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 547 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 548 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 549 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 550 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 551 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 552 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 553 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 554 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 555 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 556 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 557 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 558 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 559 Jorge Miramón · 71&rsquor; Ezequiel Ávila · 87&rsquor; -#> 560 -#> 561 -#> 562 -#> 563 -#> 564 -#> 565 -#> 566 -#> 567 -#> 568 -#> 569 -#> 570 -#> 571 -#> 572 -#> 573 -#> 574 -#> 575 -#> 576 -#> 577 -#> 578 -#> 579 -#> 580 -#> 581 -#> 582 -#> 583 -#> 584 -#> 585 -#> 586 -#> 587 -#> 588 Cristhian Stuani · 54&rsquor; -#> 589 Cristhian Stuani · 54&rsquor; -#> 590 Cristhian Stuani · 54&rsquor; -#> 591 Cristhian Stuani · 54&rsquor; -#> 592 Cristhian Stuani · 54&rsquor; -#> 593 Cristhian Stuani · 54&rsquor; -#> 594 Cristhian Stuani · 54&rsquor; -#> 595 Cristhian Stuani · 54&rsquor; -#> 596 Cristhian Stuani · 54&rsquor; -#> 597 Cristhian Stuani · 54&rsquor; -#> 598 Cristhian Stuani · 54&rsquor; -#> 599 Cristhian Stuani · 54&rsquor; -#> 600 Cristhian Stuani · 54&rsquor; -#> 601 Cristhian Stuani · 54&rsquor; -#> 602 Cristhian Stuani · 54&rsquor; -#> 603 Cristhian Stuani · 54&rsquor; -#> 604 Cristhian Stuani · 54&rsquor; -#> 605 Cristhian Stuani · 54&rsquor; -#> 606 Cristhian Stuani · 54&rsquor; -#> 607 Cristhian Stuani · 54&rsquor; -#> 608 Cristhian Stuani · 54&rsquor; -#> 609 Cristhian Stuani · 54&rsquor; -#> 610 Cristhian Stuani · 54&rsquor; -#> 611 Cristhian Stuani · 54&rsquor; -#> 612 Cristhian Stuani · 54&rsquor; -#> 613 Cristhian Stuani · 54&rsquor; -#> 614 Cristhian Stuani · 54&rsquor; -#> 615 Cristhian Stuani · 54&rsquor; -#> 616 Willian José (P) · 15&rsquor; -#> 617 Willian José (P) · 15&rsquor; -#> 618 Willian José (P) · 15&rsquor; -#> 619 Willian José (P) · 15&rsquor; -#> 620 Willian José (P) · 15&rsquor; -#> 621 Willian José (P) · 15&rsquor; -#> 622 Willian José (P) · 15&rsquor; -#> 623 Willian José (P) · 15&rsquor; -#> 624 Willian José (P) · 15&rsquor; -#> 625 Willian José (P) · 15&rsquor; -#> 626 Willian José (P) · 15&rsquor; -#> 627 Willian José (P) · 15&rsquor; -#> 628 Willian José (P) · 15&rsquor; -#> 629 Willian José (P) · 15&rsquor; -#> 630 Willian José (P) · 15&rsquor; -#> 631 Willian José (P) · 15&rsquor; -#> 632 Willian José (P) · 15&rsquor; -#> 633 Willian José (P) · 15&rsquor; -#> 634 Willian José (P) · 15&rsquor; -#> 635 Willian José (P) · 15&rsquor; -#> 636 Willian José (P) · 15&rsquor; -#> 637 Willian José (P) · 15&rsquor; -#> 638 Willian José (P) · 15&rsquor; -#> 639 Willian José (P) · 15&rsquor; -#> 640 Willian José (P) · 15&rsquor; -#> 641 Willian José (P) · 15&rsquor; -#> 642 Willian José (P) · 15&rsquor; -#> 643 Willian José (P) · 15&rsquor; -#> 644 Stefan Savić · 70&rsquor; -#> 645 Stefan Savić · 70&rsquor; -#> 646 Stefan Savić · 70&rsquor; -#> 647 Stefan Savić · 70&rsquor; -#> 648 Stefan Savić · 70&rsquor; -#> 649 Stefan Savić · 70&rsquor; -#> 650 Stefan Savić · 70&rsquor; -#> 651 Stefan Savić · 70&rsquor; -#> 652 Stefan Savić · 70&rsquor; -#> 653 Stefan Savić · 70&rsquor; -#> 654 Stefan Savić · 70&rsquor; -#> 655 Stefan Savić · 70&rsquor; -#> 656 Stefan Savić · 70&rsquor; -#> 657 Stefan Savić · 70&rsquor; -#> 658 Stefan Savić · 70&rsquor; -#> 659 Stefan Savić · 70&rsquor; -#> 660 Stefan Savić · 70&rsquor; -#> 661 Stefan Savić · 70&rsquor; -#> 662 Stefan Savić · 70&rsquor; -#> 663 Stefan Savić · 70&rsquor; -#> 664 Stefan Savić · 70&rsquor; -#> 665 Stefan Savić · 70&rsquor; -#> 666 Stefan Savić · 70&rsquor; -#> 667 Stefan Savić · 70&rsquor; -#> 668 Stefan Savić · 70&rsquor; -#> 669 Stefan Savić · 70&rsquor; -#> 670 Stefan Savić · 70&rsquor; -#> 671 Stefan Savić · 70&rsquor; -#> 672 Guido Carrillo (P) · 24&rsquor; -#> 673 Guido Carrillo (P) · 24&rsquor; -#> 674 Guido Carrillo (P) · 24&rsquor; -#> 675 Guido Carrillo (P) · 24&rsquor; -#> 676 Guido Carrillo (P) · 24&rsquor; -#> 677 Guido Carrillo (P) · 24&rsquor; -#> 678 Guido Carrillo (P) · 24&rsquor; -#> 679 Guido Carrillo (P) · 24&rsquor; -#> 680 Guido Carrillo (P) · 24&rsquor; -#> 681 Guido Carrillo (P) · 24&rsquor; -#> 682 Guido Carrillo (P) · 24&rsquor; -#> 683 Guido Carrillo (P) · 24&rsquor; -#> 684 Guido Carrillo (P) · 24&rsquor; -#> 685 Guido Carrillo (P) · 24&rsquor; -#> 686 Guido Carrillo (P) · 24&rsquor; -#> 687 Guido Carrillo (P) · 24&rsquor; -#> 688 Guido Carrillo (P) · 24&rsquor; -#> 689 Guido Carrillo (P) · 24&rsquor; -#> 690 Guido Carrillo (P) · 24&rsquor; -#> 691 Guido Carrillo (P) · 24&rsquor; -#> 692 Guido Carrillo (P) · 24&rsquor; -#> 693 Guido Carrillo (P) · 24&rsquor; -#> 694 Guido Carrillo (P) · 24&rsquor; -#> 695 Guido Carrillo (P) · 24&rsquor; -#> 696 Guido Carrillo (P) · 24&rsquor; -#> 697 Guido Carrillo (P) · 24&rsquor; -#> 698 Guido Carrillo (P) · 24&rsquor; -#> 699 Guido Carrillo (P) · 24&rsquor; -#> 700 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 701 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 702 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 703 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 704 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 705 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 706 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 707 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 708 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 709 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 710 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 711 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 712 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 713 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 714 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 715 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 716 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 717 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 718 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 719 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 720 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 721 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 722 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 723 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 724 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 725 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 726 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 727 Denis Cheryshev · 16&rsquor; Daniel Parejo (P) · 52&rsquor; -#> 728 Léo Baptistão (P) · 42&rsquor; -#> 729 Léo Baptistão (P) · 42&rsquor; -#> 730 Léo Baptistão (P) · 42&rsquor; -#> 731 Léo Baptistão (P) · 42&rsquor; -#> 732 Léo Baptistão (P) · 42&rsquor; -#> 733 Léo Baptistão (P) · 42&rsquor; -#> 734 Léo Baptistão (P) · 42&rsquor; -#> 735 Léo Baptistão (P) · 42&rsquor; -#> 736 Léo Baptistão (P) · 42&rsquor; -#> 737 Léo Baptistão (P) · 42&rsquor; -#> 738 Léo Baptistão (P) · 42&rsquor; -#> 739 Léo Baptistão (P) · 42&rsquor; -#> 740 Léo Baptistão (P) · 42&rsquor; -#> 741 Léo Baptistão (P) · 42&rsquor; -#> 742 Léo Baptistão (P) · 42&rsquor; -#> 743 Léo Baptistão (P) · 42&rsquor; -#> 744 Léo Baptistão (P) · 42&rsquor; -#> 745 Léo Baptistão (P) · 42&rsquor; -#> 746 Léo Baptistão (P) · 42&rsquor; -#> 747 Léo Baptistão (P) · 42&rsquor; -#> 748 Léo Baptistão (P) · 42&rsquor; -#> 749 Léo Baptistão (P) · 42&rsquor; -#> 750 Léo Baptistão (P) · 42&rsquor; -#> 751 Léo Baptistão (P) · 42&rsquor; -#> 752 Léo Baptistão (P) · 42&rsquor; -#> 753 Léo Baptistão (P) · 42&rsquor; -#> 754 Léo Baptistão (P) · 42&rsquor; -#> 755 Léo Baptistão (P) · 42&rsquor; -#> 756 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 757 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 758 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 759 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 760 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 761 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 762 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 763 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 764 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 765 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 766 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 767 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 768 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 769 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 770 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 771 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 772 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 773 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 774 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 775 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 776 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 777 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 778 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 779 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 780 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 781 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 782 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 783 Cucho · 3&rsquor; Álex Gallar · 42&rsquor; -#> 784 Roque Mesa · 66&rsquor; -#> 785 Roque Mesa · 66&rsquor; -#> 786 Roque Mesa · 66&rsquor; -#> 787 Roque Mesa · 66&rsquor; -#> 788 Roque Mesa · 66&rsquor; -#> 789 Roque Mesa · 66&rsquor; -#> 790 Roque Mesa · 66&rsquor; -#> 791 Roque Mesa · 66&rsquor; -#> 792 Roque Mesa · 66&rsquor; -#> 793 Roque Mesa · 66&rsquor; -#> 794 Roque Mesa · 66&rsquor; -#> 795 Roque Mesa · 66&rsquor; -#> 796 Roque Mesa · 66&rsquor; -#> 797 Roque Mesa · 66&rsquor; -#> 798 Roque Mesa · 66&rsquor; -#> 799 Roque Mesa · 66&rsquor; -#> 800 Roque Mesa · 66&rsquor; -#> 801 Roque Mesa · 66&rsquor; -#> 802 Roque Mesa · 66&rsquor; -#> 803 Roque Mesa · 66&rsquor; -#> 804 Roque Mesa · 66&rsquor; -#> 805 Roque Mesa · 66&rsquor; -#> 806 Roque Mesa · 66&rsquor; -#> 807 Roque Mesa · 66&rsquor; -#> 808 Roque Mesa · 66&rsquor; -#> 809 Roque Mesa · 66&rsquor; -#> 810 Roque Mesa · 66&rsquor; -#> 811 Roque Mesa · 66&rsquor; -#> 812 Giannelli Imbula · 29&rsquor; -#> 813 Giannelli Imbula · 29&rsquor; -#> 814 Giannelli Imbula · 29&rsquor; -#> 815 Giannelli Imbula · 29&rsquor; -#> 816 Giannelli Imbula · 29&rsquor; -#> 817 Giannelli Imbula · 29&rsquor; -#> 818 Giannelli Imbula · 29&rsquor; -#> 819 Giannelli Imbula · 29&rsquor; -#> 820 Giannelli Imbula · 29&rsquor; -#> 821 Giannelli Imbula · 29&rsquor; -#> 822 Giannelli Imbula · 29&rsquor; -#> 823 Giannelli Imbula · 29&rsquor; -#> 824 Giannelli Imbula · 29&rsquor; -#> 825 Giannelli Imbula · 29&rsquor; -#> 826 Giannelli Imbula · 29&rsquor; -#> 827 Giannelli Imbula · 29&rsquor; -#> 828 Giannelli Imbula · 29&rsquor; -#> 829 Giannelli Imbula · 29&rsquor; -#> 830 Giannelli Imbula · 29&rsquor; -#> 831 Giannelli Imbula · 29&rsquor; -#> 832 Giannelli Imbula · 29&rsquor; -#> 833 Giannelli Imbula · 29&rsquor; -#> 834 Giannelli Imbula · 29&rsquor; -#> 835 Giannelli Imbula · 29&rsquor; -#> 836 Giannelli Imbula · 29&rsquor; -#> 837 Giannelli Imbula · 29&rsquor; -#> 838 Giannelli Imbula · 29&rsquor; -#> 839 Giannelli Imbula · 29&rsquor; -#> 840 Sergi Enrich · 87&rsquor; -#> 841 Sergi Enrich · 87&rsquor; -#> 842 Sergi Enrich · 87&rsquor; -#> 843 Sergi Enrich · 87&rsquor; -#> 844 Sergi Enrich · 87&rsquor; -#> 845 Sergi Enrich · 87&rsquor; -#> 846 Sergi Enrich · 87&rsquor; -#> 847 Sergi Enrich · 87&rsquor; -#> 848 Sergi Enrich · 87&rsquor; -#> 849 Sergi Enrich · 87&rsquor; -#> 850 Sergi Enrich · 87&rsquor; -#> 851 Sergi Enrich · 87&rsquor; -#> 852 Sergi Enrich · 87&rsquor; -#> 853 Sergi Enrich · 87&rsquor; -#> 854 Sergi Enrich · 87&rsquor; -#> 855 Sergi Enrich · 87&rsquor; -#> 856 Sergi Enrich · 87&rsquor; -#> 857 Sergi Enrich · 87&rsquor; -#> 858 Sergi Enrich · 87&rsquor; -#> 859 Sergi Enrich · 87&rsquor; -#> 860 Sergi Enrich · 87&rsquor; -#> 861 Sergi Enrich · 87&rsquor; -#> 862 Sergi Enrich · 87&rsquor; -#> 863 Sergi Enrich · 87&rsquor; -#> 864 Sergi Enrich · 87&rsquor; -#> 865 Sergi Enrich · 87&rsquor; -#> 866 Sergi Enrich · 87&rsquor; -#> 867 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 868 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 869 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 870 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 871 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 872 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 873 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 874 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 875 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 876 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 877 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 878 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 879 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 880 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 881 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 882 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 883 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 884 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 885 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 886 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 887 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 888 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 889 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 890 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 891 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 892 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 893 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 894 Luis Suárez · 63&rsquor; Ousmane Dembélé · 66&rsquor; -#> 895 -#> 896 -#> 897 -#> 898 -#> 899 -#> 900 -#> 901 -#> 902 -#> 903 -#> 904 -#> 905 -#> 906 -#> 907 -#> 908 -#> 909 -#> 910 -#> 911 -#> 912 -#> 913 -#> 914 -#> 915 -#> 916 -#> 917 -#> 918 -#> 919 -#> 920 -#> 921 -#> 922 -#> 923 Isco · 63&rsquor; -#> 924 Isco · 63&rsquor; -#> 925 Isco · 63&rsquor; -#> 926 Isco · 63&rsquor; -#> 927 Isco · 63&rsquor; -#> 928 Isco · 63&rsquor; -#> 929 Isco · 63&rsquor; -#> 930 Isco · 63&rsquor; -#> 931 Isco · 63&rsquor; -#> 932 Isco · 63&rsquor; -#> 933 Isco · 63&rsquor; -#> 934 Isco · 63&rsquor; -#> 935 Isco · 63&rsquor; -#> 936 Isco · 63&rsquor; -#> 937 Isco · 63&rsquor; -#> 938 Isco · 63&rsquor; -#> 939 Isco · 63&rsquor; -#> 940 Isco · 63&rsquor; -#> 941 Isco · 63&rsquor; -#> 942 Isco · 63&rsquor; -#> 943 Isco · 63&rsquor; -#> 944 Isco · 63&rsquor; -#> 945 Isco · 63&rsquor; -#> 946 Isco · 63&rsquor; -#> 947 Isco · 63&rsquor; -#> 948 Isco · 63&rsquor; -#> 949 Isco · 63&rsquor; -#> 950 Isco · 63&rsquor; -#> 951 Carlos Bacca · 65&rsquor; -#> 952 Carlos Bacca · 65&rsquor; -#> 953 Carlos Bacca · 65&rsquor; -#> 954 Carlos Bacca · 65&rsquor; -#> 955 Carlos Bacca · 65&rsquor; -#> 956 Carlos Bacca · 65&rsquor; -#> 957 Carlos Bacca · 65&rsquor; -#> 958 Carlos Bacca · 65&rsquor; -#> 959 Carlos Bacca · 65&rsquor; -#> 960 Carlos Bacca · 65&rsquor; -#> 961 Carlos Bacca · 65&rsquor; -#> 962 Carlos Bacca · 65&rsquor; -#> 963 Carlos Bacca · 65&rsquor; -#> 964 Carlos Bacca · 65&rsquor; -#> 965 Carlos Bacca · 65&rsquor; -#> 966 Carlos Bacca · 65&rsquor; -#> 967 Carlos Bacca · 65&rsquor; -#> 968 Carlos Bacca · 65&rsquor; -#> 969 Carlos Bacca · 65&rsquor; -#> 970 Carlos Bacca · 65&rsquor; -#> 971 Carlos Bacca · 65&rsquor; -#> 972 Carlos Bacca · 65&rsquor; -#> 973 Carlos Bacca · 65&rsquor; -#> 974 Carlos Bacca · 65&rsquor; -#> 975 Carlos Bacca · 65&rsquor; -#> 976 Carlos Bacca · 65&rsquor; -#> 977 Carlos Bacca · 65&rsquor; -#> 978 Carlos Bacca · 65&rsquor; -#> 979 -#> 980 -#> 981 -#> 982 -#> 983 -#> 984 -#> 985 -#> 986 -#> 987 -#> 988 -#> 989 -#> 990 -#> 991 -#> 992 -#> 993 -#> 994 -#> 995 -#> 996 -#> 997 -#> 998 -#> 999 -#> 1000 -#> 1001 -#> 1002 -#> 1003 -#> 1004 -#> 1005 -#> 1006 -#> 1007 Ibai Gómez · 90+3&rsquor; -#> 1008 Ibai Gómez · 90+3&rsquor; -#> 1009 Ibai Gómez · 90+3&rsquor; -#> 1010 Ibai Gómez · 90+3&rsquor; -#> 1011 Ibai Gómez · 90+3&rsquor; -#> 1012 Ibai Gómez · 90+3&rsquor; -#> 1013 Ibai Gómez · 90+3&rsquor; -#> 1014 Ibai Gómez · 90+3&rsquor; -#> 1015 Ibai Gómez · 90+3&rsquor; -#> 1016 Ibai Gómez · 90+3&rsquor; -#> 1017 Ibai Gómez · 90+3&rsquor; -#> 1018 Ibai Gómez · 90+3&rsquor; -#> 1019 Ibai Gómez · 90+3&rsquor; -#> 1020 Ibai Gómez · 90+3&rsquor; -#> 1021 Ibai Gómez · 90+3&rsquor; -#> 1022 Ibai Gómez · 90+3&rsquor; -#> 1023 Ibai Gómez · 90+3&rsquor; -#> 1024 Ibai Gómez · 90+3&rsquor; -#> 1025 Ibai Gómez · 90+3&rsquor; -#> 1026 Ibai Gómez · 90+3&rsquor; -#> 1027 Ibai Gómez · 90+3&rsquor; -#> 1028 Ibai Gómez · 90+3&rsquor; -#> 1029 Ibai Gómez · 90+3&rsquor; -#> 1030 Ibai Gómez · 90+3&rsquor; -#> 1031 Ibai Gómez · 90+3&rsquor; -#> 1032 Ibai Gómez · 90+3&rsquor; -#> 1033 Ibai Gómez · 90+3&rsquor; -#> 1034 Ibai Gómez · 90+3&rsquor; -#> 1035 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1036 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1037 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1038 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1039 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1040 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1041 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1042 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1043 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1044 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1045 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1046 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1047 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1048 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1049 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1050 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1051 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1052 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1053 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1054 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1055 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1056 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1057 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1058 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1059 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1060 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1061 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1062 Ángel Rodríguez · 3&rsquor; Ángel Rodríguez · 38&rsquor; -#> 1063 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1064 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1065 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1066 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1067 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1068 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1069 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1070 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1071 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1072 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1073 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1074 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1075 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1076 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1077 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1078 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1079 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1080 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1081 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1082 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1083 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1084 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1085 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1086 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1087 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1088 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1089 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1090 Iago Aspas · 34&rsquor; Sofiane Boufal · 87&rsquor; Gustavo Cabral · 90+2&rsquor; -#> 1091 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1092 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1093 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1094 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1095 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1096 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1097 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1098 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1099 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1100 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1101 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1102 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1103 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1104 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1105 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1106 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1107 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1108 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1109 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1110 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1111 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1112 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1113 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1114 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1115 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1116 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1117 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1118 Mikel Merino · 64&rsquor; Juanmi · 71&rsquor; Theo Hernández · 82&rsquor; -#> 1119 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1120 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1121 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1122 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1123 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1124 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1125 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1126 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1127 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1128 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1129 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1130 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1131 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1132 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1133 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1134 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1135 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1136 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1137 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1138 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1139 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1140 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1141 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1142 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1143 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1144 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1145 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1146 Ximo Navarro · 8&rsquor; Ibai Gómez · 34&rsquor; Jonathan Calleri · 56&rsquor; Ibai Gómez · 77&rsquor; Burgui · 90+5&rsquor; -#> 1147 -#> 1148 -#> 1149 -#> 1150 -#> 1151 -#> 1152 -#> 1153 -#> 1154 -#> 1155 -#> 1156 -#> 1157 -#> 1158 -#> 1159 -#> 1160 -#> 1161 -#> 1162 -#> 1163 -#> 1164 -#> 1165 -#> 1166 -#> 1167 -#> 1168 -#> 1169 -#> 1170 -#> 1171 -#> 1172 -#> 1173 -#> 1174 -#> 1175 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1176 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1177 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1178 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1179 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1180 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1181 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1182 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1183 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1184 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1185 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1186 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1187 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1188 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1189 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1190 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1191 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1192 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1193 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1194 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1195 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1196 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1197 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1198 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1199 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1200 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1201 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1202 Óscar Plano · 39&rsquor; Enes Ünal · 65&rsquor; Leonardo Suárez · 90+4&rsquor; -#> 1203 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1204 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1205 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1206 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1207 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1208 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1209 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1210 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1211 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1212 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1213 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1214 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1215 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1216 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1217 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1218 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1219 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1220 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1221 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1222 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1223 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1224 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1225 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1226 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1227 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1228 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1229 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1230 David Soria (OG) · 14&rsquor; Thomas Lemar · 60&rsquor; -#> 1231 -#> 1232 -#> 1233 -#> 1234 -#> 1235 -#> 1236 -#> 1237 -#> 1238 -#> 1239 -#> 1240 -#> 1241 -#> 1242 -#> 1243 -#> 1244 -#> 1245 -#> 1246 -#> 1247 -#> 1248 -#> 1249 -#> 1250 -#> 1251 -#> 1252 -#> 1253 -#> 1254 -#> 1255 -#> 1256 -#> 1257 -#> 1258 -#> 1259 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1260 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1261 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1262 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1263 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1264 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1265 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1266 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1267 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1268 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1269 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1270 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1271 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1272 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1273 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1274 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1275 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1276 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1277 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1278 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1279 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1280 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1281 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1282 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1283 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1284 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1285 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1286 Wissam Ben Yedder · 11&rsquor; Daniel Carriço · 21&rsquor; Wissam Ben Yedder · 35&rsquor; Wissam Ben Yedder · 45&rsquor; André Silva · 49&rsquor; Pablo Sarabia · 59&rsquor; -#> 1287 Daniel Parejo · 58&rsquor; -#> 1288 Daniel Parejo · 58&rsquor; -#> 1289 Daniel Parejo · 58&rsquor; -#> 1290 Daniel Parejo · 58&rsquor; -#> 1291 Daniel Parejo · 58&rsquor; -#> 1292 Daniel Parejo · 58&rsquor; -#> 1293 Daniel Parejo · 58&rsquor; -#> 1294 Daniel Parejo · 58&rsquor; -#> 1295 Daniel Parejo · 58&rsquor; -#> 1296 Daniel Parejo · 58&rsquor; -#> 1297 Daniel Parejo · 58&rsquor; -#> 1298 Daniel Parejo · 58&rsquor; -#> 1299 Daniel Parejo · 58&rsquor; -#> 1300 Daniel Parejo · 58&rsquor; -#> 1301 Daniel Parejo · 58&rsquor; -#> 1302 Daniel Parejo · 58&rsquor; -#> 1303 Daniel Parejo · 58&rsquor; -#> 1304 Daniel Parejo · 58&rsquor; -#> 1305 Daniel Parejo · 58&rsquor; -#> 1306 Daniel Parejo · 58&rsquor; -#> 1307 Daniel Parejo · 58&rsquor; -#> 1308 Daniel Parejo · 58&rsquor; -#> 1309 Daniel Parejo · 58&rsquor; -#> 1310 Daniel Parejo · 58&rsquor; -#> 1311 Daniel Parejo · 58&rsquor; -#> 1312 Daniel Parejo · 58&rsquor; -#> 1313 Daniel Parejo · 58&rsquor; -#> 1314 Daniel Parejo · 58&rsquor; -#> 1315 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1316 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1317 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1318 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1319 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1320 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1321 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1322 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1323 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1324 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1325 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1326 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1327 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1328 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1329 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1330 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1331 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1332 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1333 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1334 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1335 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1336 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1337 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1338 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1339 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1340 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1341 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1342 Iñaki Williams · 7&rsquor; Raúl García · 18&rsquor; Markel Susaeta · 45&rsquor; -#> 1343 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1344 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1345 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1346 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1347 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1348 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1349 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1350 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1351 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1352 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1353 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1354 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1355 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1356 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1357 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1358 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1359 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1360 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1361 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1362 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1363 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1364 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1365 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1366 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1367 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1368 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1369 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1370 Cristhian Stuani · 45&rsquor; Cristhian Stuani · 51&rsquor; -#> 1371 -#> 1372 -#> 1373 -#> 1374 -#> 1375 -#> 1376 -#> 1377 -#> 1378 -#> 1379 -#> 1380 -#> 1381 -#> 1382 -#> 1383 -#> 1384 -#> 1385 -#> 1386 -#> 1387 -#> 1388 -#> 1389 -#> 1390 -#> 1391 -#> 1392 -#> 1393 -#> 1394 -#> 1395 -#> 1396 -#> 1397 -#> 1398 -#> 1399 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1400 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1401 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1402 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1403 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1404 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1405 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1406 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1407 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1408 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1409 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1410 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1411 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1412 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1413 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1414 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1415 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1416 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1417 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1418 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1419 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1420 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1421 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1422 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1423 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1424 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1425 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1426 Luis Advíncula · 31&rsquor; Óscar Trejo (P) · 36&rsquor; -#> 1427 -#> 1428 -#> 1429 -#> 1430 -#> 1431 -#> 1432 -#> 1433 -#> 1434 -#> 1435 -#> 1436 -#> 1437 -#> 1438 -#> 1439 -#> 1440 -#> 1441 -#> 1442 -#> 1443 -#> 1444 -#> 1445 -#> 1446 -#> 1447 -#> 1448 -#> 1449 -#> 1450 -#> 1451 -#> 1452 -#> 1453 -#> 1454 -#> 1455 Philippe Coutinho · 12&rsquor; -#> 1456 Philippe Coutinho · 12&rsquor; -#> 1457 Philippe Coutinho · 12&rsquor; -#> 1458 Philippe Coutinho · 12&rsquor; -#> 1459 Philippe Coutinho · 12&rsquor; -#> 1460 Philippe Coutinho · 12&rsquor; -#> 1461 Philippe Coutinho · 12&rsquor; -#> 1462 Philippe Coutinho · 12&rsquor; -#> 1463 Philippe Coutinho · 12&rsquor; -#> 1464 Philippe Coutinho · 12&rsquor; -#> 1465 Philippe Coutinho · 12&rsquor; -#> 1466 Philippe Coutinho · 12&rsquor; -#> 1467 Philippe Coutinho · 12&rsquor; -#> 1468 Philippe Coutinho · 12&rsquor; -#> 1469 Philippe Coutinho · 12&rsquor; -#> 1470 Philippe Coutinho · 12&rsquor; -#> 1471 Philippe Coutinho · 12&rsquor; -#> 1472 Philippe Coutinho · 12&rsquor; -#> 1473 Philippe Coutinho · 12&rsquor; -#> 1474 Philippe Coutinho · 12&rsquor; -#> 1475 Philippe Coutinho · 12&rsquor; -#> 1476 Philippe Coutinho · 12&rsquor; -#> 1477 Philippe Coutinho · 12&rsquor; -#> 1478 Philippe Coutinho · 12&rsquor; -#> 1479 Philippe Coutinho · 12&rsquor; -#> 1480 Philippe Coutinho · 12&rsquor; -#> 1481 Philippe Coutinho · 12&rsquor; -#> 1482 Philippe Coutinho · 12&rsquor; -#> 1483 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1484 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1485 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1486 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1487 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1488 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1489 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1490 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1491 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1492 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1493 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1494 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1495 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1496 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1497 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1498 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1499 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1500 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1501 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1502 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1503 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1504 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1505 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1506 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1507 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1508 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1509 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1510 Pablo Fornals · 65&rsquor; Ramiro Funes Mori · 80&rsquor; Karl Toko Ekambi · 89&rsquor; -#> 1511 -#> 1512 -#> 1513 -#> 1514 -#> 1515 -#> 1516 -#> 1517 -#> 1518 -#> 1519 -#> 1520 -#> 1521 -#> 1522 -#> 1523 -#> 1524 -#> 1525 -#> 1526 -#> 1527 -#> 1528 -#> 1529 -#> 1530 -#> 1531 -#> 1532 -#> 1533 -#> 1534 -#> 1535 -#> 1536 -#> 1537 -#> 1538 -#> 1539 Iago Aspas · 82&rsquor; -#> 1540 Iago Aspas · 82&rsquor; -#> 1541 Iago Aspas · 82&rsquor; -#> 1542 Iago Aspas · 82&rsquor; -#> 1543 Iago Aspas · 82&rsquor; -#> 1544 Iago Aspas · 82&rsquor; -#> 1545 Iago Aspas · 82&rsquor; -#> 1546 Iago Aspas · 82&rsquor; -#> 1547 Iago Aspas · 82&rsquor; -#> 1548 Iago Aspas · 82&rsquor; -#> 1549 Iago Aspas · 82&rsquor; -#> 1550 Iago Aspas · 82&rsquor; -#> 1551 Iago Aspas · 82&rsquor; -#> 1552 Iago Aspas · 82&rsquor; -#> 1553 Iago Aspas · 82&rsquor; -#> 1554 Iago Aspas · 82&rsquor; -#> 1555 Iago Aspas · 82&rsquor; -#> 1556 Iago Aspas · 82&rsquor; -#> 1557 Iago Aspas · 82&rsquor; -#> 1558 Iago Aspas · 82&rsquor; -#> 1559 Iago Aspas · 82&rsquor; -#> 1560 Iago Aspas · 82&rsquor; -#> 1561 Iago Aspas · 82&rsquor; -#> 1562 Iago Aspas · 82&rsquor; -#> 1563 Iago Aspas · 82&rsquor; -#> 1564 Iago Aspas · 82&rsquor; -#> 1565 Iago Aspas · 82&rsquor; -#> 1566 Iago Aspas · 82&rsquor; -#> 1567 Amath · 80&rsquor; -#> 1568 Amath · 80&rsquor; -#> 1569 Amath · 80&rsquor; -#> 1570 Amath · 80&rsquor; -#> 1571 Amath · 80&rsquor; -#> 1572 Amath · 80&rsquor; -#> 1573 Amath · 80&rsquor; -#> 1574 Amath · 80&rsquor; -#> 1575 Amath · 80&rsquor; -#> 1576 Amath · 80&rsquor; -#> 1577 Amath · 80&rsquor; -#> 1578 Amath · 80&rsquor; -#> 1579 Amath · 80&rsquor; -#> 1580 Amath · 80&rsquor; -#> 1581 Amath · 80&rsquor; -#> 1582 Amath · 80&rsquor; -#> 1583 Amath · 80&rsquor; -#> 1584 Amath · 80&rsquor; -#> 1585 Amath · 80&rsquor; -#> 1586 Amath · 80&rsquor; -#> 1587 Amath · 80&rsquor; -#> 1588 Amath · 80&rsquor; -#> 1589 Amath · 80&rsquor; -#> 1590 Amath · 80&rsquor; -#> 1591 Amath · 80&rsquor; -#> 1592 Amath · 80&rsquor; -#> 1593 Amath · 80&rsquor; -#> 1594 Amath · 80&rsquor; -#> 1595 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1596 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1597 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1598 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1599 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1600 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1601 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1602 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1603 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1604 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1605 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1606 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1607 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1608 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1609 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1610 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1611 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1612 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1613 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1614 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1615 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1616 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1617 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1618 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1619 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1620 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1621 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1622 Sergio Postigo · 47&rsquor; Nikola Vukčević · 54&rsquor; -#> 1623 Loren Morón · 64&rsquor; -#> 1624 Loren Morón · 64&rsquor; -#> 1625 Loren Morón · 64&rsquor; -#> 1626 Loren Morón · 64&rsquor; -#> 1627 Loren Morón · 64&rsquor; -#> 1628 Loren Morón · 64&rsquor; -#> 1629 Loren Morón · 64&rsquor; -#> 1630 Loren Morón · 64&rsquor; -#> 1631 Loren Morón · 64&rsquor; -#> 1632 Loren Morón · 64&rsquor; -#> 1633 Loren Morón · 64&rsquor; -#> 1634 Loren Morón · 64&rsquor; -#> 1635 Loren Morón · 64&rsquor; -#> 1636 Loren Morón · 64&rsquor; -#> 1637 Loren Morón · 64&rsquor; -#> 1638 Loren Morón · 64&rsquor; -#> 1639 Loren Morón · 64&rsquor; -#> 1640 Loren Morón · 64&rsquor; -#> 1641 Loren Morón · 64&rsquor; -#> 1642 Loren Morón · 64&rsquor; -#> 1643 Loren Morón · 64&rsquor; -#> 1644 Loren Morón · 64&rsquor; -#> 1645 Loren Morón · 64&rsquor; -#> 1646 Loren Morón · 64&rsquor; -#> 1647 Loren Morón · 64&rsquor; -#> 1648 Loren Morón · 64&rsquor; -#> 1649 Loren Morón · 64&rsquor; -#> 1650 Loren Morón · 64&rsquor; -#> 1651 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1652 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1653 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1654 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1655 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1656 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1657 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1658 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1659 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1660 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1661 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1662 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1663 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1664 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1665 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1666 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1667 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1668 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1669 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1670 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1671 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1672 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1673 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1674 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1675 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1676 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1677 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1678 Borja Iglesias · 19&rsquor; Esteban Granero · 45+1&rsquor; -#> 1679 Kévin Gameiro · 36&rsquor; -#> 1680 Kévin Gameiro · 36&rsquor; -#> 1681 Kévin Gameiro · 36&rsquor; -#> 1682 Kévin Gameiro · 36&rsquor; -#> 1683 Kévin Gameiro · 36&rsquor; -#> 1684 Kévin Gameiro · 36&rsquor; -#> 1685 Kévin Gameiro · 36&rsquor; -#> 1686 Kévin Gameiro · 36&rsquor; -#> 1687 Kévin Gameiro · 36&rsquor; -#> 1688 Kévin Gameiro · 36&rsquor; -#> 1689 Kévin Gameiro · 36&rsquor; -#> 1690 Kévin Gameiro · 36&rsquor; -#> 1691 Kévin Gameiro · 36&rsquor; -#> 1692 Kévin Gameiro · 36&rsquor; -#> 1693 Kévin Gameiro · 36&rsquor; -#> 1694 Kévin Gameiro · 36&rsquor; -#> 1695 Kévin Gameiro · 36&rsquor; -#> 1696 Kévin Gameiro · 36&rsquor; -#> 1697 Kévin Gameiro · 36&rsquor; -#> 1698 Kévin Gameiro · 36&rsquor; -#> 1699 Kévin Gameiro · 36&rsquor; -#> 1700 Kévin Gameiro · 36&rsquor; -#> 1701 Kévin Gameiro · 36&rsquor; -#> 1702 Kévin Gameiro · 36&rsquor; -#> 1703 Kévin Gameiro · 36&rsquor; -#> 1704 Kévin Gameiro · 36&rsquor; -#> 1705 Kévin Gameiro · 36&rsquor; -#> 1706 Kévin Gameiro · 36&rsquor; -#> 1707 Óscar de Marcos · 41&rsquor; -#> 1708 Óscar de Marcos · 41&rsquor; -#> 1709 Óscar de Marcos · 41&rsquor; -#> 1710 Óscar de Marcos · 41&rsquor; -#> 1711 Óscar de Marcos · 41&rsquor; -#> 1712 Óscar de Marcos · 41&rsquor; -#> 1713 Óscar de Marcos · 41&rsquor; -#> 1714 Óscar de Marcos · 41&rsquor; -#> 1715 Óscar de Marcos · 41&rsquor; -#> 1716 Óscar de Marcos · 41&rsquor; -#> 1717 Óscar de Marcos · 41&rsquor; -#> 1718 Óscar de Marcos · 41&rsquor; -#> 1719 Óscar de Marcos · 41&rsquor; -#> 1720 Óscar de Marcos · 41&rsquor; -#> 1721 Óscar de Marcos · 41&rsquor; -#> 1722 Óscar de Marcos · 41&rsquor; -#> 1723 Óscar de Marcos · 41&rsquor; -#> 1724 Óscar de Marcos · 41&rsquor; -#> 1725 Óscar de Marcos · 41&rsquor; -#> 1726 Óscar de Marcos · 41&rsquor; -#> 1727 Óscar de Marcos · 41&rsquor; -#> 1728 Óscar de Marcos · 41&rsquor; -#> 1729 Óscar de Marcos · 41&rsquor; -#> 1730 Óscar de Marcos · 41&rsquor; -#> 1731 Óscar de Marcos · 41&rsquor; -#> 1732 Óscar de Marcos · 41&rsquor; -#> 1733 Óscar de Marcos · 41&rsquor; -#> 1734 Óscar de Marcos · 41&rsquor; -#> 1735 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1736 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1737 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1738 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1739 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1740 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1741 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1742 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1743 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1744 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1745 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1746 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1747 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1748 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1749 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1750 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1751 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1752 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1753 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1754 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1755 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1756 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1757 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1758 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1759 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1760 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1761 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1762 André Silva · 47&rsquor; Éver Banega (P) · 59&rsquor; Éver Banega · 90+4&rsquor; -#> 1763 -#> 1764 -#> 1765 -#> 1766 -#> 1767 -#> 1768 -#> 1769 -#> 1770 -#> 1771 -#> 1772 -#> 1773 -#> 1774 -#> 1775 -#> 1776 -#> 1777 -#> 1778 -#> 1779 -#> 1780 -#> 1781 -#> 1782 -#> 1783 -#> 1784 -#> 1785 -#> 1786 -#> 1787 -#> 1788 -#> 1789 -#> 1790 -#> 1791 Cristhian Stuani (P) · 37&rsquor; -#> 1792 Cristhian Stuani (P) · 37&rsquor; -#> 1793 Cristhian Stuani (P) · 37&rsquor; -#> 1794 Cristhian Stuani (P) · 37&rsquor; -#> 1795 Cristhian Stuani (P) · 37&rsquor; -#> 1796 Cristhian Stuani (P) · 37&rsquor; -#> 1797 Cristhian Stuani (P) · 37&rsquor; -#> 1798 Cristhian Stuani (P) · 37&rsquor; -#> 1799 Cristhian Stuani (P) · 37&rsquor; -#> 1800 Cristhian Stuani (P) · 37&rsquor; -#> 1801 Cristhian Stuani (P) · 37&rsquor; -#> 1802 Cristhian Stuani (P) · 37&rsquor; -#> 1803 Cristhian Stuani (P) · 37&rsquor; -#> 1804 Cristhian Stuani (P) · 37&rsquor; -#> 1805 Cristhian Stuani (P) · 37&rsquor; -#> 1806 Cristhian Stuani (P) · 37&rsquor; -#> 1807 Cristhian Stuani (P) · 37&rsquor; -#> 1808 Cristhian Stuani (P) · 37&rsquor; -#> 1809 Cristhian Stuani (P) · 37&rsquor; -#> 1810 Cristhian Stuani (P) · 37&rsquor; -#> 1811 Cristhian Stuani (P) · 37&rsquor; -#> 1812 Cristhian Stuani (P) · 37&rsquor; -#> 1813 Cristhian Stuani (P) · 37&rsquor; -#> 1814 Cristhian Stuani (P) · 37&rsquor; -#> 1815 Cristhian Stuani (P) · 37&rsquor; -#> 1816 Cristhian Stuani (P) · 37&rsquor; -#> 1817 Cristhian Stuani (P) · 37&rsquor; -#> 1818 Cristhian Stuani (P) · 37&rsquor; -#> 1819 Leonardo Suárez · 53&rsquor; -#> 1820 Leonardo Suárez · 53&rsquor; -#> 1821 Leonardo Suárez · 53&rsquor; -#> 1822 Leonardo Suárez · 53&rsquor; -#> 1823 Leonardo Suárez · 53&rsquor; -#> 1824 Leonardo Suárez · 53&rsquor; -#> 1825 Leonardo Suárez · 53&rsquor; -#> 1826 Leonardo Suárez · 53&rsquor; -#> 1827 Leonardo Suárez · 53&rsquor; -#> 1828 Leonardo Suárez · 53&rsquor; -#> 1829 Leonardo Suárez · 53&rsquor; -#> 1830 Leonardo Suárez · 53&rsquor; -#> 1831 Leonardo Suárez · 53&rsquor; -#> 1832 Leonardo Suárez · 53&rsquor; -#> 1833 Leonardo Suárez · 53&rsquor; -#> 1834 Leonardo Suárez · 53&rsquor; -#> 1835 Leonardo Suárez · 53&rsquor; -#> 1836 Leonardo Suárez · 53&rsquor; -#> 1837 Leonardo Suárez · 53&rsquor; -#> 1838 Leonardo Suárez · 53&rsquor; -#> 1839 Leonardo Suárez · 53&rsquor; -#> 1840 Leonardo Suárez · 53&rsquor; -#> 1841 Leonardo Suárez · 53&rsquor; -#> 1842 Leonardo Suárez · 53&rsquor; -#> 1843 Leonardo Suárez · 53&rsquor; -#> 1844 Leonardo Suárez · 53&rsquor; -#> 1845 Leonardo Suárez · 53&rsquor; -#> 1846 Leonardo Suárez · 53&rsquor; -#> 1847 Rubén Sobrino · 5&rsquor; -#> 1848 Rubén Sobrino · 5&rsquor; -#> 1849 Rubén Sobrino · 5&rsquor; -#> 1850 Rubén Sobrino · 5&rsquor; -#> 1851 Rubén Sobrino · 5&rsquor; -#> 1852 Rubén Sobrino · 5&rsquor; -#> 1853 Rubén Sobrino · 5&rsquor; -#> 1854 Rubén Sobrino · 5&rsquor; -#> 1855 Rubén Sobrino · 5&rsquor; -#> 1856 Rubén Sobrino · 5&rsquor; -#> 1857 Rubén Sobrino · 5&rsquor; -#> 1858 Rubén Sobrino · 5&rsquor; -#> 1859 Rubén Sobrino · 5&rsquor; -#> 1860 Rubén Sobrino · 5&rsquor; -#> 1861 Rubén Sobrino · 5&rsquor; -#> 1862 Rubén Sobrino · 5&rsquor; -#> 1863 Rubén Sobrino · 5&rsquor; -#> 1864 Rubén Sobrino · 5&rsquor; -#> 1865 Rubén Sobrino · 5&rsquor; -#> 1866 Rubén Sobrino · 5&rsquor; -#> 1867 Rubén Sobrino · 5&rsquor; -#> 1868 Rubén Sobrino · 5&rsquor; -#> 1869 Rubén Sobrino · 5&rsquor; -#> 1870 Rubén Sobrino · 5&rsquor; -#> 1871 Rubén Sobrino · 5&rsquor; -#> 1872 Rubén Sobrino · 5&rsquor; -#> 1873 Rubén Sobrino · 5&rsquor; -#> 1874 Rubén Sobrino · 5&rsquor; -#> 1875 -#> 1876 -#> 1877 -#> 1878 -#> 1879 -#> 1880 -#> 1881 -#> 1882 -#> 1883 -#> 1884 -#> 1885 -#> 1886 -#> 1887 -#> 1888 -#> 1889 -#> 1890 -#> 1891 -#> 1892 -#> 1893 -#> 1894 -#> 1895 -#> 1896 -#> 1897 -#> 1898 -#> 1899 -#> 1900 -#> 1901 -#> 1902 -#> 1903 Jaime Mata · 78&rsquor; -#> 1904 Jaime Mata · 78&rsquor; -#> 1905 Jaime Mata · 78&rsquor; -#> 1906 Jaime Mata · 78&rsquor; -#> 1907 Jaime Mata · 78&rsquor; -#> 1908 Jaime Mata · 78&rsquor; -#> 1909 Jaime Mata · 78&rsquor; -#> 1910 Jaime Mata · 78&rsquor; -#> 1911 Jaime Mata · 78&rsquor; -#> 1912 Jaime Mata · 78&rsquor; -#> 1913 Jaime Mata · 78&rsquor; -#> 1914 Jaime Mata · 78&rsquor; -#> 1915 Jaime Mata · 78&rsquor; -#> 1916 Jaime Mata · 78&rsquor; -#> 1917 Jaime Mata · 78&rsquor; -#> 1918 Jaime Mata · 78&rsquor; -#> 1919 Jaime Mata · 78&rsquor; -#> 1920 Jaime Mata · 78&rsquor; -#> 1921 Jaime Mata · 78&rsquor; -#> 1922 Jaime Mata · 78&rsquor; -#> 1923 Jaime Mata · 78&rsquor; -#> 1924 Jaime Mata · 78&rsquor; -#> 1925 Jaime Mata · 78&rsquor; -#> 1926 Jaime Mata · 78&rsquor; -#> 1927 Jaime Mata · 78&rsquor; -#> 1928 Jaime Mata · 78&rsquor; -#> 1929 Jaime Mata · 78&rsquor; -#> 1930 Jaime Mata · 78&rsquor; -#> 1931 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1932 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1933 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1934 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1935 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1936 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1937 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1938 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1939 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1940 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1941 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1942 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1943 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1944 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1945 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1946 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1947 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1948 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1949 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1950 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1951 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1952 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1953 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1954 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1955 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1956 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1957 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1958 Mikel Oyarzabal (P) · 30&rsquor; Luca Sangalli · 47&rsquor; Mikel Oyarzabal (P) · 74&rsquor; -#> 1959 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1960 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1961 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1962 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1963 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1964 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1965 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1966 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1967 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1968 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1969 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1970 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1971 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1972 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1973 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1974 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1975 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1976 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1977 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1978 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1979 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1980 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1981 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1982 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1983 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1984 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1985 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1986 Charles (P) · 12&rsquor; Anaitz Arbilla · 45+5&rsquor; Sergi Enrich · 72&rsquor; -#> 1987 Enis Bardhi · 60&rsquor; -#> 1988 Enis Bardhi · 60&rsquor; -#> 1989 Enis Bardhi · 60&rsquor; -#> 1990 Enis Bardhi · 60&rsquor; -#> 1991 Enis Bardhi · 60&rsquor; -#> 1992 Enis Bardhi · 60&rsquor; -#> 1993 Enis Bardhi · 60&rsquor; -#> 1994 Enis Bardhi · 60&rsquor; -#> 1995 Enis Bardhi · 60&rsquor; -#> 1996 Enis Bardhi · 60&rsquor; -#> 1997 Enis Bardhi · 60&rsquor; -#> 1998 Enis Bardhi · 60&rsquor; -#> 1999 Enis Bardhi · 60&rsquor; -#> 2000 Enis Bardhi · 60&rsquor; -#> 2001 Enis Bardhi · 60&rsquor; -#> 2002 Enis Bardhi · 60&rsquor; -#> 2003 Enis Bardhi · 60&rsquor; -#> 2004 Enis Bardhi · 60&rsquor; -#> 2005 Enis Bardhi · 60&rsquor; -#> 2006 Enis Bardhi · 60&rsquor; -#> 2007 Enis Bardhi · 60&rsquor; -#> 2008 Enis Bardhi · 60&rsquor; -#> 2009 Enis Bardhi · 60&rsquor; -#> 2010 Enis Bardhi · 60&rsquor; -#> 2011 Enis Bardhi · 60&rsquor; -#> 2012 Enis Bardhi · 60&rsquor; -#> 2013 Enis Bardhi · 60&rsquor; -#> 2014 Enis Bardhi · 60&rsquor; -#> 2015 -#> 2016 -#> 2017 -#> 2018 -#> 2019 -#> 2020 -#> 2021 -#> 2022 -#> 2023 -#> 2024 -#> 2025 -#> 2026 -#> 2027 -#> 2028 -#> 2029 -#> 2030 -#> 2031 -#> 2032 -#> 2033 -#> 2034 -#> 2035 -#> 2036 -#> 2037 -#> 2038 -#> 2039 -#> 2040 -#> Away_Yellow_Cards Away_Red_Cards -#> 1 1 0 -#> 2 1 0 -#> 3 1 0 -#> 4 1 0 -#> 5 1 0 -#> 6 1 0 -#> 7 1 0 -#> 8 1 0 -#> 9 1 0 -#> 10 1 0 -#> 11 1 0 -#> 12 1 0 -#> 13 1 0 -#> 14 1 0 -#> 15 1 0 -#> 16 1 0 -#> 17 1 0 -#> 18 1 0 -#> 19 1 0 -#> 20 1 0 -#> 21 1 0 -#> 22 1 0 -#> 23 1 0 -#> 24 1 0 -#> 25 1 0 -#> 26 1 0 -#> 27 1 0 -#> 28 1 0 -#> 29 2 0 -#> 30 2 0 -#> 31 2 0 -#> 32 2 0 -#> 33 2 0 -#> 34 2 0 -#> 35 2 0 -#> 36 2 0 -#> 37 2 0 -#> 38 2 0 -#> 39 2 0 -#> 40 2 0 -#> 41 2 0 -#> 42 2 0 -#> 43 2 0 -#> 44 2 0 -#> 45 2 0 -#> 46 2 0 -#> 47 2 0 -#> 48 2 0 -#> 49 2 0 -#> 50 2 0 -#> 51 2 0 -#> 52 2 0 -#> 53 2 0 -#> 54 2 0 -#> 55 2 0 -#> 56 2 0 -#> 57 2 0 -#> 58 2 0 -#> 59 2 0 -#> 60 2 0 -#> 61 2 0 -#> 62 2 0 -#> 63 2 0 -#> 64 2 0 -#> 65 2 0 -#> 66 2 0 -#> 67 2 0 -#> 68 2 0 -#> 69 2 0 -#> 70 2 0 -#> 71 2 0 -#> 72 2 0 -#> 73 2 0 -#> 74 2 0 -#> 75 2 0 -#> 76 2 0 -#> 77 2 0 -#> 78 2 0 -#> 79 2 0 -#> 80 2 0 -#> 81 2 0 -#> 82 2 0 -#> 83 2 0 -#> 84 2 0 -#> 85 3 0 -#> 86 3 0 -#> 87 3 0 -#> 88 3 0 -#> 89 3 0 -#> 90 3 0 -#> 91 3 0 -#> 92 3 0 -#> 93 3 0 -#> 94 3 0 -#> 95 3 0 -#> 96 3 0 -#> 97 3 0 -#> 98 3 0 -#> 99 3 0 -#> 100 3 0 -#> 101 3 0 -#> 102 3 0 -#> 103 3 0 -#> 104 3 0 -#> 105 3 0 -#> 106 3 0 -#> 107 3 0 -#> 108 3 0 -#> 109 3 0 -#> 110 3 0 -#> 111 3 0 -#> 112 3 0 -#> 113 2 0 -#> 114 2 0 -#> 115 2 0 -#> 116 2 0 -#> 117 2 0 -#> 118 2 0 -#> 119 2 0 -#> 120 2 0 -#> 121 2 0 -#> 122 2 0 -#> 123 2 0 -#> 124 2 0 -#> 125 2 0 -#> 126 2 0 -#> 127 2 0 -#> 128 2 0 -#> 129 2 0 -#> 130 2 0 -#> 131 2 0 -#> 132 2 0 -#> 133 2 0 -#> 134 2 0 -#> 135 2 0 -#> 136 2 0 -#> 137 2 0 -#> 138 2 0 -#> 139 2 0 -#> 140 2 0 -#> 141 1 0 -#> 142 1 0 -#> 143 1 0 -#> 144 1 0 -#> 145 1 0 -#> 146 1 0 -#> 147 1 0 -#> 148 1 0 -#> 149 1 0 -#> 150 1 0 -#> 151 1 0 -#> 152 1 0 -#> 153 1 0 -#> 154 1 0 -#> 155 1 0 -#> 156 1 0 -#> 157 1 0 -#> 158 1 0 -#> 159 1 0 -#> 160 1 0 -#> 161 1 0 -#> 162 1 0 -#> 163 1 0 -#> 164 1 0 -#> 165 1 0 -#> 166 1 0 -#> 167 1 0 -#> 168 1 0 -#> 169 0 0 -#> 170 0 0 -#> 171 0 0 -#> 172 0 0 -#> 173 0 0 -#> 174 0 0 -#> 175 0 0 -#> 176 0 0 -#> 177 0 0 -#> 178 0 0 -#> 179 0 0 -#> 180 0 0 -#> 181 0 0 -#> 182 0 0 -#> 183 0 0 -#> 184 0 0 -#> 185 0 0 -#> 186 0 0 -#> 187 0 0 -#> 188 0 0 -#> 189 0 0 -#> 190 0 0 -#> 191 0 0 -#> 192 0 0 -#> 193 0 0 -#> 194 0 0 -#> 195 0 0 -#> 196 7 0 -#> 197 7 0 -#> 198 7 0 -#> 199 7 0 -#> 200 7 0 -#> 201 7 0 -#> 202 7 0 -#> 203 7 0 -#> 204 7 0 -#> 205 7 0 -#> 206 7 0 -#> 207 7 0 -#> 208 7 0 -#> 209 7 0 -#> 210 7 0 -#> 211 7 0 -#> 212 7 0 -#> 213 7 0 -#> 214 7 0 -#> 215 7 0 -#> 216 7 0 -#> 217 7 0 -#> 218 7 0 -#> 219 7 0 -#> 220 7 0 -#> 221 7 0 -#> 222 7 0 -#> 223 7 0 -#> 224 3 0 -#> 225 3 0 -#> 226 3 0 -#> 227 3 0 -#> 228 3 0 -#> 229 3 0 -#> 230 3 0 -#> 231 3 0 -#> 232 3 0 -#> 233 3 0 -#> 234 3 0 -#> 235 3 0 -#> 236 3 0 -#> 237 3 0 -#> 238 3 0 -#> 239 3 0 -#> 240 3 0 -#> 241 3 0 -#> 242 3 0 -#> 243 3 0 -#> 244 3 0 -#> 245 3 0 -#> 246 3 0 -#> 247 3 0 -#> 248 3 0 -#> 249 3 0 -#> 250 3 0 -#> 251 3 0 -#> 252 5 0 -#> 253 5 0 -#> 254 5 0 -#> 255 5 0 -#> 256 5 0 -#> 257 5 0 -#> 258 5 0 -#> 259 5 0 -#> 260 5 0 -#> 261 5 0 -#> 262 5 0 -#> 263 5 0 -#> 264 5 0 -#> 265 5 0 -#> 266 5 0 -#> 267 5 0 -#> 268 5 0 -#> 269 5 0 -#> 270 5 0 -#> 271 5 0 -#> 272 5 0 -#> 273 5 0 -#> 274 5 0 -#> 275 5 0 -#> 276 5 0 -#> 277 5 0 -#> 278 5 0 -#> 279 5 0 -#> 280 1 0 -#> 281 1 0 -#> 282 1 0 -#> 283 1 0 -#> 284 1 0 -#> 285 1 0 -#> 286 1 0 -#> 287 1 0 -#> 288 1 0 -#> 289 1 0 -#> 290 1 0 -#> 291 1 0 -#> 292 1 0 -#> 293 1 0 -#> 294 1 0 -#> 295 1 0 -#> 296 1 0 -#> 297 1 0 -#> 298 1 0 -#> 299 1 0 -#> 300 1 0 -#> 301 1 0 -#> 302 1 0 -#> 303 1 0 -#> 304 1 0 -#> 305 1 0 -#> 306 1 0 -#> 307 1 0 -#> 308 2 0 -#> 309 2 0 -#> 310 2 0 -#> 311 2 0 -#> 312 2 0 -#> 313 2 0 -#> 314 2 0 -#> 315 2 0 -#> 316 2 0 -#> 317 2 0 -#> 318 2 0 -#> 319 2 0 -#> 320 2 0 -#> 321 2 0 -#> 322 2 0 -#> 323 2 0 -#> 324 2 0 -#> 325 2 0 -#> 326 2 0 -#> 327 2 0 -#> 328 2 0 -#> 329 2 0 -#> 330 2 0 -#> 331 2 0 -#> 332 2 0 -#> 333 2 0 -#> 334 2 0 -#> 335 2 0 -#> 336 1 0 -#> 337 1 0 -#> 338 1 0 -#> 339 1 0 -#> 340 1 0 -#> 341 1 0 -#> 342 1 0 -#> 343 1 0 -#> 344 1 0 -#> 345 1 0 -#> 346 1 0 -#> 347 1 0 -#> 348 1 0 -#> 349 1 0 -#> 350 1 0 -#> 351 1 0 -#> 352 1 0 -#> 353 1 0 -#> 354 1 0 -#> 355 1 0 -#> 356 1 0 -#> 357 1 0 -#> 358 1 0 -#> 359 1 0 -#> 360 1 0 -#> 361 1 0 -#> 362 1 0 -#> 363 1 0 -#> 364 1 0 -#> 365 1 0 -#> 366 1 0 -#> 367 1 0 -#> 368 1 0 -#> 369 1 0 -#> 370 1 0 -#> 371 1 0 -#> 372 1 0 -#> 373 1 0 -#> 374 1 0 -#> 375 1 0 -#> 376 1 0 -#> 377 1 0 -#> 378 1 0 -#> 379 1 0 -#> 380 1 0 -#> 381 1 0 -#> 382 1 0 -#> 383 1 0 -#> 384 1 0 -#> 385 1 0 -#> 386 1 0 -#> 387 1 0 -#> 388 1 0 -#> 389 1 0 -#> 390 1 0 -#> 391 1 0 -#> 392 1 0 -#> 393 1 0 -#> 394 1 0 -#> 395 1 0 -#> 396 1 0 -#> 397 1 0 -#> 398 1 0 -#> 399 1 0 -#> 400 1 0 -#> 401 1 0 -#> 402 1 0 -#> 403 1 0 -#> 404 1 0 -#> 405 1 0 -#> 406 1 0 -#> 407 1 0 -#> 408 1 0 -#> 409 1 0 -#> 410 1 0 -#> 411 1 0 -#> 412 1 0 -#> 413 1 0 -#> 414 1 0 -#> 415 1 0 -#> 416 1 0 -#> 417 1 0 -#> 418 1 0 -#> 419 1 0 -#> 420 1 0 -#> 421 1 0 -#> 422 1 0 -#> 423 1 0 -#> 424 1 0 -#> 425 1 0 -#> 426 1 0 -#> 427 1 0 -#> 428 1 0 -#> 429 1 0 -#> 430 1 0 -#> 431 1 0 -#> 432 1 0 -#> 433 1 0 -#> 434 1 0 -#> 435 1 0 -#> 436 1 0 -#> 437 1 0 -#> 438 1 0 -#> 439 1 0 -#> 440 1 0 -#> 441 1 0 -#> 442 1 0 -#> 443 1 0 -#> 444 1 0 -#> 445 1 0 -#> 446 1 0 -#> 447 1 0 -#> 448 3 0 -#> 449 3 0 -#> 450 3 0 -#> 451 3 0 -#> 452 3 0 -#> 453 3 0 -#> 454 3 0 -#> 455 3 0 -#> 456 3 0 -#> 457 3 0 -#> 458 3 0 -#> 459 3 0 -#> 460 3 0 -#> 461 3 0 -#> 462 3 0 -#> 463 3 0 -#> 464 3 0 -#> 465 3 0 -#> 466 3 0 -#> 467 3 0 -#> 468 3 0 -#> 469 3 0 -#> 470 3 0 -#> 471 3 0 -#> 472 3 0 -#> 473 3 0 -#> 474 3 0 -#> 475 3 0 -#> 476 2 0 -#> 477 2 0 -#> 478 2 0 -#> 479 2 0 -#> 480 2 0 -#> 481 2 0 -#> 482 2 0 -#> 483 2 0 -#> 484 2 0 -#> 485 2 0 -#> 486 2 0 -#> 487 2 0 -#> 488 2 0 -#> 489 2 0 -#> 490 2 0 -#> 491 2 0 -#> 492 2 0 -#> 493 2 0 -#> 494 2 0 -#> 495 2 0 -#> 496 2 0 -#> 497 2 0 -#> 498 2 0 -#> 499 2 0 -#> 500 2 0 -#> 501 2 0 -#> 502 2 0 -#> 503 2 0 -#> 504 3 0 -#> 505 3 0 -#> 506 3 0 -#> 507 3 0 -#> 508 3 0 -#> 509 3 0 -#> 510 3 0 -#> 511 3 0 -#> 512 3 0 -#> 513 3 0 -#> 514 3 0 -#> 515 3 0 -#> 516 3 0 -#> 517 3 0 -#> 518 3 0 -#> 519 3 0 -#> 520 3 0 -#> 521 3 0 -#> 522 3 0 -#> 523 3 0 -#> 524 3 0 -#> 525 3 0 -#> 526 3 0 -#> 527 3 0 -#> 528 3 0 -#> 529 3 0 -#> 530 3 0 -#> 531 3 0 -#> 532 2 0 -#> 533 2 0 -#> 534 2 0 -#> 535 2 0 -#> 536 2 0 -#> 537 2 0 -#> 538 2 0 -#> 539 2 0 -#> 540 2 0 -#> 541 2 0 -#> 542 2 0 -#> 543 2 0 -#> 544 2 0 -#> 545 2 0 -#> 546 2 0 -#> 547 2 0 -#> 548 2 0 -#> 549 2 0 -#> 550 2 0 -#> 551 2 0 -#> 552 2 0 -#> 553 2 0 -#> 554 2 0 -#> 555 2 0 -#> 556 2 0 -#> 557 2 0 -#> 558 2 0 -#> 559 2 0 -#> 560 1 0 -#> 561 1 0 -#> 562 1 0 -#> 563 1 0 -#> 564 1 0 -#> 565 1 0 -#> 566 1 0 -#> 567 1 0 -#> 568 1 0 -#> 569 1 0 -#> 570 1 0 -#> 571 1 0 -#> 572 1 0 -#> 573 1 0 -#> 574 1 0 -#> 575 1 0 -#> 576 1 0 -#> 577 1 0 -#> 578 1 0 -#> 579 1 0 -#> 580 1 0 -#> 581 1 0 -#> 582 1 0 -#> 583 1 0 -#> 584 1 0 -#> 585 1 0 -#> 586 1 0 -#> 587 1 0 -#> 588 2 0 -#> 589 2 0 -#> 590 2 0 -#> 591 2 0 -#> 592 2 0 -#> 593 2 0 -#> 594 2 0 -#> 595 2 0 -#> 596 2 0 -#> 597 2 0 -#> 598 2 0 -#> 599 2 0 -#> 600 2 0 -#> 601 2 0 -#> 602 2 0 -#> 603 2 0 -#> 604 2 0 -#> 605 2 0 -#> 606 2 0 -#> 607 2 0 -#> 608 2 0 -#> 609 2 0 -#> 610 2 0 -#> 611 2 0 -#> 612 2 0 -#> 613 2 0 -#> 614 2 0 -#> 615 2 0 -#> 616 2 0 -#> 617 2 0 -#> 618 2 0 -#> 619 2 0 -#> 620 2 0 -#> 621 2 0 -#> 622 2 0 -#> 623 2 0 -#> 624 2 0 -#> 625 2 0 -#> 626 2 0 -#> 627 2 0 -#> 628 2 0 -#> 629 2 0 -#> 630 2 0 -#> 631 2 0 -#> 632 2 0 -#> 633 2 0 -#> 634 2 0 -#> 635 2 0 -#> 636 2 0 -#> 637 2 0 -#> 638 2 0 -#> 639 2 0 -#> 640 2 0 -#> 641 2 0 -#> 642 2 0 -#> 643 2 0 -#> 644 6 1 -#> 645 6 1 -#> 646 6 1 -#> 647 6 1 -#> 648 6 1 -#> 649 6 1 -#> 650 6 1 -#> 651 6 1 -#> 652 6 1 -#> 653 6 1 -#> 654 6 1 -#> 655 6 1 -#> 656 6 1 -#> 657 6 1 -#> 658 6 1 -#> 659 6 1 -#> 660 6 1 -#> 661 6 1 -#> 662 6 1 -#> 663 6 1 -#> 664 6 1 -#> 665 6 1 -#> 666 6 1 -#> 667 6 1 -#> 668 6 1 -#> 669 6 1 -#> 670 6 1 -#> 671 6 1 -#> 672 1 0 -#> 673 1 0 -#> 674 1 0 -#> 675 1 0 -#> 676 1 0 -#> 677 1 0 -#> 678 1 0 -#> 679 1 0 -#> 680 1 0 -#> 681 1 0 -#> 682 1 0 -#> 683 1 0 -#> 684 1 0 -#> 685 1 0 -#> 686 1 0 -#> 687 1 0 -#> 688 1 0 -#> 689 1 0 -#> 690 1 0 -#> 691 1 0 -#> 692 1 0 -#> 693 1 0 -#> 694 1 0 -#> 695 1 0 -#> 696 1 0 -#> 697 1 0 -#> 698 1 0 -#> 699 1 0 -#> 700 2 0 -#> 701 2 0 -#> 702 2 0 -#> 703 2 0 -#> 704 2 0 -#> 705 2 0 -#> 706 2 0 -#> 707 2 0 -#> 708 2 0 -#> 709 2 0 -#> 710 2 0 -#> 711 2 0 -#> 712 2 0 -#> 713 2 0 -#> 714 2 0 -#> 715 2 0 -#> 716 2 0 -#> 717 2 0 -#> 718 2 0 -#> 719 2 0 -#> 720 2 0 -#> 721 2 0 -#> 722 2 0 -#> 723 2 0 -#> 724 2 0 -#> 725 2 0 -#> 726 2 0 -#> 727 2 0 -#> 728 3 0 -#> 729 3 0 -#> 730 3 0 -#> 731 3 0 -#> 732 3 0 -#> 733 3 0 -#> 734 3 0 -#> 735 3 0 -#> 736 3 0 -#> 737 3 0 -#> 738 3 0 -#> 739 3 0 -#> 740 3 0 -#> 741 3 0 -#> 742 3 0 -#> 743 3 0 -#> 744 3 0 -#> 745 3 0 -#> 746 3 0 -#> 747 3 0 -#> 748 3 0 -#> 749 3 0 -#> 750 3 0 -#> 751 3 0 -#> 752 3 0 -#> 753 3 0 -#> 754 3 0 -#> 755 3 0 -#> 756 2 0 -#> 757 2 0 -#> 758 2 0 -#> 759 2 0 -#> 760 2 0 -#> 761 2 0 -#> 762 2 0 -#> 763 2 0 -#> 764 2 0 -#> 765 2 0 -#> 766 2 0 -#> 767 2 0 -#> 768 2 0 -#> 769 2 0 -#> 770 2 0 -#> 771 2 0 -#> 772 2 0 -#> 773 2 0 -#> 774 2 0 -#> 775 2 0 -#> 776 2 0 -#> 777 2 0 -#> 778 2 0 -#> 779 2 0 -#> 780 2 0 -#> 781 2 0 -#> 782 2 0 -#> 783 2 0 -#> 784 7 1 -#> 785 7 1 -#> 786 7 1 -#> 787 7 1 -#> 788 7 1 -#> 789 7 1 -#> 790 7 1 -#> 791 7 1 -#> 792 7 1 -#> 793 7 1 -#> 794 7 1 -#> 795 7 1 -#> 796 7 1 -#> 797 7 1 -#> 798 7 1 -#> 799 7 1 -#> 800 7 1 -#> 801 7 1 -#> 802 7 1 -#> 803 7 1 -#> 804 7 1 -#> 805 7 1 -#> 806 7 1 -#> 807 7 1 -#> 808 7 1 -#> 809 7 1 -#> 810 7 1 -#> 811 7 1 -#> 812 1 0 -#> 813 1 0 -#> 814 1 0 -#> 815 1 0 -#> 816 1 0 -#> 817 1 0 -#> 818 1 0 -#> 819 1 0 -#> 820 1 0 -#> 821 1 0 -#> 822 1 0 -#> 823 1 0 -#> 824 1 0 -#> 825 1 0 -#> 826 1 0 -#> 827 1 0 -#> 828 1 0 -#> 829 1 0 -#> 830 1 0 -#> 831 1 0 -#> 832 1 0 -#> 833 1 0 -#> 834 1 0 -#> 835 1 0 -#> 836 1 0 -#> 837 1 0 -#> 838 1 0 -#> 839 1 0 -#> 840 2 0 -#> 841 2 0 -#> 842 2 0 -#> 843 2 0 -#> 844 2 0 -#> 845 2 0 -#> 846 2 0 -#> 847 2 0 -#> 848 2 0 -#> 849 2 0 -#> 850 2 0 -#> 851 2 0 -#> 852 2 0 -#> 853 2 0 -#> 854 2 0 -#> 855 2 0 -#> 856 2 0 -#> 857 2 0 -#> 858 2 0 -#> 859 2 0 -#> 860 2 0 -#> 861 2 0 -#> 862 2 0 -#> 863 2 0 -#> 864 2 0 -#> 865 2 0 -#> 866 2 0 -#> 867 1 0 -#> 868 1 0 -#> 869 1 0 -#> 870 1 0 -#> 871 1 0 -#> 872 1 0 -#> 873 1 0 -#> 874 1 0 -#> 875 1 0 -#> 876 1 0 -#> 877 1 0 -#> 878 1 0 -#> 879 1 0 -#> 880 1 0 -#> 881 1 0 -#> 882 1 0 -#> 883 1 0 -#> 884 1 0 -#> 885 1 0 -#> 886 1 0 -#> 887 1 0 -#> 888 1 0 -#> 889 1 0 -#> 890 1 0 -#> 891 1 0 -#> 892 1 0 -#> 893 1 0 -#> 894 1 0 -#> 895 3 0 -#> 896 3 0 -#> 897 3 0 -#> 898 3 0 -#> 899 3 0 -#> 900 3 0 -#> 901 3 0 -#> 902 3 0 -#> 903 3 0 -#> 904 3 0 -#> 905 3 0 -#> 906 3 0 -#> 907 3 0 -#> 908 3 0 -#> 909 3 0 -#> 910 3 0 -#> 911 3 0 -#> 912 3 0 -#> 913 3 0 -#> 914 3 0 -#> 915 3 0 -#> 916 3 0 -#> 917 3 0 -#> 918 3 0 -#> 919 3 0 -#> 920 3 0 -#> 921 3 0 -#> 922 3 0 -#> 923 2 0 -#> 924 2 0 -#> 925 2 0 -#> 926 2 0 -#> 927 2 0 -#> 928 2 0 -#> 929 2 0 -#> 930 2 0 -#> 931 2 0 -#> 932 2 0 -#> 933 2 0 -#> 934 2 0 -#> 935 2 0 -#> 936 2 0 -#> 937 2 0 -#> 938 2 0 -#> 939 2 0 -#> 940 2 0 -#> 941 2 0 -#> 942 2 0 -#> 943 2 0 -#> 944 2 0 -#> 945 2 0 -#> 946 2 0 -#> 947 2 0 -#> 948 2 0 -#> 949 2 0 -#> 950 2 0 -#> 951 3 0 -#> 952 3 0 -#> 953 3 0 -#> 954 3 0 -#> 955 3 0 -#> 956 3 0 -#> 957 3 0 -#> 958 3 0 -#> 959 3 0 -#> 960 3 0 -#> 961 3 0 -#> 962 3 0 -#> 963 3 0 -#> 964 3 0 -#> 965 3 0 -#> 966 3 0 -#> 967 3 0 -#> 968 3 0 -#> 969 3 0 -#> 970 3 0 -#> 971 3 0 -#> 972 3 0 -#> 973 3 0 -#> 974 3 0 -#> 975 3 0 -#> 976 3 0 -#> 977 3 0 -#> 978 3 0 -#> 979 2 0 -#> 980 2 0 -#> 981 2 0 -#> 982 2 0 -#> 983 2 0 -#> 984 2 0 -#> 985 2 0 -#> 986 2 0 -#> 987 2 0 -#> 988 2 0 -#> 989 2 0 -#> 990 2 0 -#> 991 2 0 -#> 992 2 0 -#> 993 2 0 -#> 994 2 0 -#> 995 2 0 -#> 996 2 0 -#> 997 2 0 -#> 998 2 0 -#> 999 2 0 -#> 1000 2 0 -#> 1001 2 0 -#> 1002 2 0 -#> 1003 2 0 -#> 1004 2 0 -#> 1005 2 0 -#> 1006 2 0 -#> 1007 2 0 -#> 1008 2 0 -#> 1009 2 0 -#> 1010 2 0 -#> 1011 2 0 -#> 1012 2 0 -#> 1013 2 0 -#> 1014 2 0 -#> 1015 2 0 -#> 1016 2 0 -#> 1017 2 0 -#> 1018 2 0 -#> 1019 2 0 -#> 1020 2 0 -#> 1021 2 0 -#> 1022 2 0 -#> 1023 2 0 -#> 1024 2 0 -#> 1025 2 0 -#> 1026 2 0 -#> 1027 2 0 -#> 1028 2 0 -#> 1029 2 0 -#> 1030 2 0 -#> 1031 2 0 -#> 1032 2 0 -#> 1033 2 0 -#> 1034 2 0 -#> 1035 6 0 -#> 1036 6 0 -#> 1037 6 0 -#> 1038 6 0 -#> 1039 6 0 -#> 1040 6 0 -#> 1041 6 0 -#> 1042 6 0 -#> 1043 6 0 -#> 1044 6 0 -#> 1045 6 0 -#> 1046 6 0 -#> 1047 6 0 -#> 1048 6 0 -#> 1049 6 0 -#> 1050 6 0 -#> 1051 6 0 -#> 1052 6 0 -#> 1053 6 0 -#> 1054 6 0 -#> 1055 6 0 -#> 1056 6 0 -#> 1057 6 0 -#> 1058 6 0 -#> 1059 6 0 -#> 1060 6 0 -#> 1061 6 0 -#> 1062 6 0 -#> 1063 4 1 -#> 1064 4 1 -#> 1065 4 1 -#> 1066 4 1 -#> 1067 4 1 -#> 1068 4 1 -#> 1069 4 1 -#> 1070 4 1 -#> 1071 4 1 -#> 1072 4 1 -#> 1073 4 1 -#> 1074 4 1 -#> 1075 4 1 -#> 1076 4 1 -#> 1077 4 1 -#> 1078 4 1 -#> 1079 4 1 -#> 1080 4 1 -#> 1081 4 1 -#> 1082 4 1 -#> 1083 4 1 -#> 1084 4 1 -#> 1085 4 1 -#> 1086 4 1 -#> 1087 4 1 -#> 1088 4 1 -#> 1089 4 1 -#> 1090 4 1 -#> 1091 4 2 -#> 1092 4 2 -#> 1093 4 2 -#> 1094 4 2 -#> 1095 4 2 -#> 1096 4 2 -#> 1097 4 2 -#> 1098 4 2 -#> 1099 4 2 -#> 1100 4 2 -#> 1101 4 2 -#> 1102 4 2 -#> 1103 4 2 -#> 1104 4 2 -#> 1105 4 2 -#> 1106 4 2 -#> 1107 4 2 -#> 1108 4 2 -#> 1109 4 2 -#> 1110 4 2 -#> 1111 4 2 -#> 1112 4 2 -#> 1113 4 2 -#> 1114 4 2 -#> 1115 4 2 -#> 1116 4 2 -#> 1117 4 2 -#> 1118 4 2 -#> 1119 2 0 -#> 1120 2 0 -#> 1121 2 0 -#> 1122 2 0 -#> 1123 2 0 -#> 1124 2 0 -#> 1125 2 0 -#> 1126 2 0 -#> 1127 2 0 -#> 1128 2 0 -#> 1129 2 0 -#> 1130 2 0 -#> 1131 2 0 -#> 1132 2 0 -#> 1133 2 0 -#> 1134 2 0 -#> 1135 2 0 -#> 1136 2 0 -#> 1137 2 0 -#> 1138 2 0 -#> 1139 2 0 -#> 1140 2 0 -#> 1141 2 0 -#> 1142 2 0 -#> 1143 2 0 -#> 1144 2 0 -#> 1145 2 0 -#> 1146 2 0 -#> 1147 1 0 -#> 1148 1 0 -#> 1149 1 0 -#> 1150 1 0 -#> 1151 1 0 -#> 1152 1 0 -#> 1153 1 0 -#> 1154 1 0 -#> 1155 1 0 -#> 1156 1 0 -#> 1157 1 0 -#> 1158 1 0 -#> 1159 1 0 -#> 1160 1 0 -#> 1161 1 0 -#> 1162 1 0 -#> 1163 1 0 -#> 1164 1 0 -#> 1165 1 0 -#> 1166 1 0 -#> 1167 1 0 -#> 1168 1 0 -#> 1169 1 0 -#> 1170 1 0 -#> 1171 1 0 -#> 1172 1 0 -#> 1173 1 0 -#> 1174 1 0 -#> 1175 2 0 -#> 1176 2 0 -#> 1177 2 0 -#> 1178 2 0 -#> 1179 2 0 -#> 1180 2 0 -#> 1181 2 0 -#> 1182 2 0 -#> 1183 2 0 -#> 1184 2 0 -#> 1185 2 0 -#> 1186 2 0 -#> 1187 2 0 -#> 1188 2 0 -#> 1189 2 0 -#> 1190 2 0 -#> 1191 2 0 -#> 1192 2 0 -#> 1193 2 0 -#> 1194 2 0 -#> 1195 2 0 -#> 1196 2 0 -#> 1197 2 0 -#> 1198 2 0 -#> 1199 2 0 -#> 1200 2 0 -#> 1201 2 0 -#> 1202 2 0 -#> 1203 2 0 -#> 1204 2 0 -#> 1205 2 0 -#> 1206 2 0 -#> 1207 2 0 -#> 1208 2 0 -#> 1209 2 0 -#> 1210 2 0 -#> 1211 2 0 -#> 1212 2 0 -#> 1213 2 0 -#> 1214 2 0 -#> 1215 2 0 -#> 1216 2 0 -#> 1217 2 0 -#> 1218 2 0 -#> 1219 2 0 -#> 1220 2 0 -#> 1221 2 0 -#> 1222 2 0 -#> 1223 2 0 -#> 1224 2 0 -#> 1225 2 0 -#> 1226 2 0 -#> 1227 2 0 -#> 1228 2 0 -#> 1229 2 0 -#> 1230 2 0 -#> 1231 2 0 -#> 1232 2 0 -#> 1233 2 0 -#> 1234 2 0 -#> 1235 2 0 -#> 1236 2 0 -#> 1237 2 0 -#> 1238 2 0 -#> 1239 2 0 -#> 1240 2 0 -#> 1241 2 0 -#> 1242 2 0 -#> 1243 2 0 -#> 1244 2 0 -#> 1245 2 0 -#> 1246 2 0 -#> 1247 2 0 -#> 1248 2 0 -#> 1249 2 0 -#> 1250 2 0 -#> 1251 2 0 -#> 1252 2 0 -#> 1253 2 0 -#> 1254 2 0 -#> 1255 2 0 -#> 1256 2 0 -#> 1257 2 0 -#> 1258 2 0 -#> 1259 1 0 -#> 1260 1 0 -#> 1261 1 0 -#> 1262 1 0 -#> 1263 1 0 -#> 1264 1 0 -#> 1265 1 0 -#> 1266 1 0 -#> 1267 1 0 -#> 1268 1 0 -#> 1269 1 0 -#> 1270 1 0 -#> 1271 1 0 -#> 1272 1 0 -#> 1273 1 0 -#> 1274 1 0 -#> 1275 1 0 -#> 1276 1 0 -#> 1277 1 0 -#> 1278 1 0 -#> 1279 1 0 -#> 1280 1 0 -#> 1281 1 0 -#> 1282 1 0 -#> 1283 1 0 -#> 1284 1 0 -#> 1285 1 0 -#> 1286 1 0 -#> 1287 1 1 -#> 1288 1 1 -#> 1289 1 1 -#> 1290 1 1 -#> 1291 1 1 -#> 1292 1 1 -#> 1293 1 1 -#> 1294 1 1 -#> 1295 1 1 -#> 1296 1 1 -#> 1297 1 1 -#> 1298 1 1 -#> 1299 1 1 -#> 1300 1 1 -#> 1301 1 1 -#> 1302 1 1 -#> 1303 1 1 -#> 1304 1 1 -#> 1305 1 1 -#> 1306 1 1 -#> 1307 1 1 -#> 1308 1 1 -#> 1309 1 1 -#> 1310 1 1 -#> 1311 1 1 -#> 1312 1 1 -#> 1313 1 1 -#> 1314 1 1 -#> 1315 8 1 -#> 1316 8 1 -#> 1317 8 1 -#> 1318 8 1 -#> 1319 8 1 -#> 1320 8 1 -#> 1321 8 1 -#> 1322 8 1 -#> 1323 8 1 -#> 1324 8 1 -#> 1325 8 1 -#> 1326 8 1 -#> 1327 8 1 -#> 1328 8 1 -#> 1329 8 1 -#> 1330 8 1 -#> 1331 8 1 -#> 1332 8 1 -#> 1333 8 1 -#> 1334 8 1 -#> 1335 8 1 -#> 1336 8 1 -#> 1337 8 1 -#> 1338 8 1 -#> 1339 8 1 -#> 1340 8 1 -#> 1341 8 1 -#> 1342 8 1 -#> 1343 5 0 -#> 1344 5 0 -#> 1345 5 0 -#> 1346 5 0 -#> 1347 5 0 -#> 1348 5 0 -#> 1349 5 0 -#> 1350 5 0 -#> 1351 5 0 -#> 1352 5 0 -#> 1353 5 0 -#> 1354 5 0 -#> 1355 5 0 -#> 1356 5 0 -#> 1357 5 0 -#> 1358 5 0 -#> 1359 5 0 -#> 1360 5 0 -#> 1361 5 0 -#> 1362 5 0 -#> 1363 5 0 -#> 1364 5 0 -#> 1365 5 0 -#> 1366 5 0 -#> 1367 5 0 -#> 1368 5 0 -#> 1369 5 0 -#> 1370 5 0 -#> 1371 2 0 -#> 1372 2 0 -#> 1373 2 0 -#> 1374 2 0 -#> 1375 2 0 -#> 1376 2 0 -#> 1377 2 0 -#> 1378 2 0 -#> 1379 2 0 -#> 1380 2 0 -#> 1381 2 0 -#> 1382 2 0 -#> 1383 2 0 -#> 1384 2 0 -#> 1385 2 0 -#> 1386 2 0 -#> 1387 2 0 -#> 1388 2 0 -#> 1389 2 0 -#> 1390 2 0 -#> 1391 2 0 -#> 1392 2 0 -#> 1393 2 0 -#> 1394 2 0 -#> 1395 2 0 -#> 1396 2 0 -#> 1397 2 0 -#> 1398 2 0 -#> 1399 3 0 -#> 1400 3 0 -#> 1401 3 0 -#> 1402 3 0 -#> 1403 3 0 -#> 1404 3 0 -#> 1405 3 0 -#> 1406 3 0 -#> 1407 3 0 -#> 1408 3 0 -#> 1409 3 0 -#> 1410 3 0 -#> 1411 3 0 -#> 1412 3 0 -#> 1413 3 0 -#> 1414 3 0 -#> 1415 3 0 -#> 1416 3 0 -#> 1417 3 0 -#> 1418 3 0 -#> 1419 3 0 -#> 1420 3 0 -#> 1421 3 0 -#> 1422 3 0 -#> 1423 3 0 -#> 1424 3 0 -#> 1425 3 0 -#> 1426 3 0 -#> 1427 2 0 -#> 1428 2 0 -#> 1429 2 0 -#> 1430 2 0 -#> 1431 2 0 -#> 1432 2 0 -#> 1433 2 0 -#> 1434 2 0 -#> 1435 2 0 -#> 1436 2 0 -#> 1437 2 0 -#> 1438 2 0 -#> 1439 2 0 -#> 1440 2 0 -#> 1441 2 0 -#> 1442 2 0 -#> 1443 2 0 -#> 1444 2 0 -#> 1445 2 0 -#> 1446 2 0 -#> 1447 2 0 -#> 1448 2 0 -#> 1449 2 0 -#> 1450 2 0 -#> 1451 2 0 -#> 1452 2 0 -#> 1453 2 0 -#> 1454 2 0 -#> 1455 2 0 -#> 1456 2 0 -#> 1457 2 0 -#> 1458 2 0 -#> 1459 2 0 -#> 1460 2 0 -#> 1461 2 0 -#> 1462 2 0 -#> 1463 2 0 -#> 1464 2 0 -#> 1465 2 0 -#> 1466 2 0 -#> 1467 2 0 -#> 1468 2 0 -#> 1469 2 0 -#> 1470 2 0 -#> 1471 2 0 -#> 1472 2 0 -#> 1473 2 0 -#> 1474 2 0 -#> 1475 2 0 -#> 1476 2 0 -#> 1477 2 0 -#> 1478 2 0 -#> 1479 2 0 -#> 1480 2 0 -#> 1481 2 0 -#> 1482 2 0 -#> 1483 1 0 -#> 1484 1 0 -#> 1485 1 0 -#> 1486 1 0 -#> 1487 1 0 -#> 1488 1 0 -#> 1489 1 0 -#> 1490 1 0 -#> 1491 1 0 -#> 1492 1 0 -#> 1493 1 0 -#> 1494 1 0 -#> 1495 1 0 -#> 1496 1 0 -#> 1497 1 0 -#> 1498 1 0 -#> 1499 1 0 -#> 1500 1 0 -#> 1501 1 0 -#> 1502 1 0 -#> 1503 1 0 -#> 1504 1 0 -#> 1505 1 0 -#> 1506 1 0 -#> 1507 1 0 -#> 1508 1 0 -#> 1509 1 0 -#> 1510 1 0 -#> 1511 4 0 -#> 1512 4 0 -#> 1513 4 0 -#> 1514 4 0 -#> 1515 4 0 -#> 1516 4 0 -#> 1517 4 0 -#> 1518 4 0 -#> 1519 4 0 -#> 1520 4 0 -#> 1521 4 0 -#> 1522 4 0 -#> 1523 4 0 -#> 1524 4 0 -#> 1525 4 0 -#> 1526 4 0 -#> 1527 4 0 -#> 1528 4 0 -#> 1529 4 0 -#> 1530 4 0 -#> 1531 4 0 -#> 1532 4 0 -#> 1533 4 0 -#> 1534 4 0 -#> 1535 4 0 -#> 1536 4 0 -#> 1537 4 0 -#> 1538 4 0 -#> 1539 3 0 -#> 1540 3 0 -#> 1541 3 0 -#> 1542 3 0 -#> 1543 3 0 -#> 1544 3 0 -#> 1545 3 0 -#> 1546 3 0 -#> 1547 3 0 -#> 1548 3 0 -#> 1549 3 0 -#> 1550 3 0 -#> 1551 3 0 -#> 1552 3 0 -#> 1553 3 0 -#> 1554 3 0 -#> 1555 3 0 -#> 1556 3 0 -#> 1557 3 0 -#> 1558 3 0 -#> 1559 3 0 -#> 1560 3 0 -#> 1561 3 0 -#> 1562 3 0 -#> 1563 3 0 -#> 1564 3 0 -#> 1565 3 0 -#> 1566 3 0 -#> 1567 2 0 -#> 1568 2 0 -#> 1569 2 0 -#> 1570 2 0 -#> 1571 2 0 -#> 1572 2 0 -#> 1573 2 0 -#> 1574 2 0 -#> 1575 2 0 -#> 1576 2 0 -#> 1577 2 0 -#> 1578 2 0 -#> 1579 2 0 -#> 1580 2 0 -#> 1581 2 0 -#> 1582 2 0 -#> 1583 2 0 -#> 1584 2 0 -#> 1585 2 0 -#> 1586 2 0 -#> 1587 2 0 -#> 1588 2 0 -#> 1589 2 0 -#> 1590 2 0 -#> 1591 2 0 -#> 1592 2 0 -#> 1593 2 0 -#> 1594 2 0 -#> 1595 5 1 -#> 1596 5 1 -#> 1597 5 1 -#> 1598 5 1 -#> 1599 5 1 -#> 1600 5 1 -#> 1601 5 1 -#> 1602 5 1 -#> 1603 5 1 -#> 1604 5 1 -#> 1605 5 1 -#> 1606 5 1 -#> 1607 5 1 -#> 1608 5 1 -#> 1609 5 1 -#> 1610 5 1 -#> 1611 5 1 -#> 1612 5 1 -#> 1613 5 1 -#> 1614 5 1 -#> 1615 5 1 -#> 1616 5 1 -#> 1617 5 1 -#> 1618 5 1 -#> 1619 5 1 -#> 1620 5 1 -#> 1621 5 1 -#> 1622 5 1 -#> 1623 3 0 -#> 1624 3 0 -#> 1625 3 0 -#> 1626 3 0 -#> 1627 3 0 -#> 1628 3 0 -#> 1629 3 0 -#> 1630 3 0 -#> 1631 3 0 -#> 1632 3 0 -#> 1633 3 0 -#> 1634 3 0 -#> 1635 3 0 -#> 1636 3 0 -#> 1637 3 0 -#> 1638 3 0 -#> 1639 3 0 -#> 1640 3 0 -#> 1641 3 0 -#> 1642 3 0 -#> 1643 3 0 -#> 1644 3 0 -#> 1645 3 0 -#> 1646 3 0 -#> 1647 3 0 -#> 1648 3 0 -#> 1649 3 0 -#> 1650 3 0 -#> 1651 3 0 -#> 1652 3 0 -#> 1653 3 0 -#> 1654 3 0 -#> 1655 3 0 -#> 1656 3 0 -#> 1657 3 0 -#> 1658 3 0 -#> 1659 3 0 -#> 1660 3 0 -#> 1661 3 0 -#> 1662 3 0 -#> 1663 3 0 -#> 1664 3 0 -#> 1665 3 0 -#> 1666 3 0 -#> 1667 3 0 -#> 1668 3 0 -#> 1669 3 0 -#> 1670 3 0 -#> 1671 3 0 -#> 1672 3 0 -#> 1673 3 0 -#> 1674 3 0 -#> 1675 3 0 -#> 1676 3 0 -#> 1677 3 0 -#> 1678 3 0 -#> 1679 5 0 -#> 1680 5 0 -#> 1681 5 0 -#> 1682 5 0 -#> 1683 5 0 -#> 1684 5 0 -#> 1685 5 0 -#> 1686 5 0 -#> 1687 5 0 -#> 1688 5 0 -#> 1689 5 0 -#> 1690 5 0 -#> 1691 5 0 -#> 1692 5 0 -#> 1693 5 0 -#> 1694 5 0 -#> 1695 5 0 -#> 1696 5 0 -#> 1697 5 0 -#> 1698 5 0 -#> 1699 5 0 -#> 1700 5 0 -#> 1701 5 0 -#> 1702 5 0 -#> 1703 5 0 -#> 1704 5 0 -#> 1705 5 0 -#> 1706 5 0 -#> 1707 3 0 -#> 1708 3 0 -#> 1709 3 0 -#> 1710 3 0 -#> 1711 3 0 -#> 1712 3 0 -#> 1713 3 0 -#> 1714 3 0 -#> 1715 3 0 -#> 1716 3 0 -#> 1717 3 0 -#> 1718 3 0 -#> 1719 3 0 -#> 1720 3 0 -#> 1721 3 0 -#> 1722 3 0 -#> 1723 3 0 -#> 1724 3 0 -#> 1725 3 0 -#> 1726 3 0 -#> 1727 3 0 -#> 1728 3 0 -#> 1729 3 0 -#> 1730 3 0 -#> 1731 3 0 -#> 1732 3 0 -#> 1733 3 0 -#> 1734 3 0 -#> 1735 3 0 -#> 1736 3 0 -#> 1737 3 0 -#> 1738 3 0 -#> 1739 3 0 -#> 1740 3 0 -#> 1741 3 0 -#> 1742 3 0 -#> 1743 3 0 -#> 1744 3 0 -#> 1745 3 0 -#> 1746 3 0 -#> 1747 3 0 -#> 1748 3 0 -#> 1749 3 0 -#> 1750 3 0 -#> 1751 3 0 -#> 1752 3 0 -#> 1753 3 0 -#> 1754 3 0 -#> 1755 3 0 -#> 1756 3 0 -#> 1757 3 0 -#> 1758 3 0 -#> 1759 3 0 -#> 1760 3 0 -#> 1761 3 0 -#> 1762 3 0 -#> 1763 4 0 -#> 1764 4 0 -#> 1765 4 0 -#> 1766 4 0 -#> 1767 4 0 -#> 1768 4 0 -#> 1769 4 0 -#> 1770 4 0 -#> 1771 4 0 -#> 1772 4 0 -#> 1773 4 0 -#> 1774 4 0 -#> 1775 4 0 -#> 1776 4 0 -#> 1777 4 0 -#> 1778 4 0 -#> 1779 4 0 -#> 1780 4 0 -#> 1781 4 0 -#> 1782 4 0 -#> 1783 4 0 -#> 1784 4 0 -#> 1785 4 0 -#> 1786 4 0 -#> 1787 4 0 -#> 1788 4 0 -#> 1789 4 0 -#> 1790 4 0 -#> 1791 2 0 -#> 1792 2 0 -#> 1793 2 0 -#> 1794 2 0 -#> 1795 2 0 -#> 1796 2 0 -#> 1797 2 0 -#> 1798 2 0 -#> 1799 2 0 -#> 1800 2 0 -#> 1801 2 0 -#> 1802 2 0 -#> 1803 2 0 -#> 1804 2 0 -#> 1805 2 0 -#> 1806 2 0 -#> 1807 2 0 -#> 1808 2 0 -#> 1809 2 0 -#> 1810 2 0 -#> 1811 2 0 -#> 1812 2 0 -#> 1813 2 0 -#> 1814 2 0 -#> 1815 2 0 -#> 1816 2 0 -#> 1817 2 0 -#> 1818 2 0 -#> 1819 3 0 -#> 1820 3 0 -#> 1821 3 0 -#> 1822 3 0 -#> 1823 3 0 -#> 1824 3 0 -#> 1825 3 0 -#> 1826 3 0 -#> 1827 3 0 -#> 1828 3 0 -#> 1829 3 0 -#> 1830 3 0 -#> 1831 3 0 -#> 1832 3 0 -#> 1833 3 0 -#> 1834 3 0 -#> 1835 3 0 -#> 1836 3 0 -#> 1837 3 0 -#> 1838 3 0 -#> 1839 3 0 -#> 1840 3 0 -#> 1841 3 0 -#> 1842 3 0 -#> 1843 3 0 -#> 1844 3 0 -#> 1845 3 0 -#> 1846 3 0 -#> 1847 1 0 -#> 1848 1 0 -#> 1849 1 0 -#> 1850 1 0 -#> 1851 1 0 -#> 1852 1 0 -#> 1853 1 0 -#> 1854 1 0 -#> 1855 1 0 -#> 1856 1 0 -#> 1857 1 0 -#> 1858 1 0 -#> 1859 1 0 -#> 1860 1 0 -#> 1861 1 0 -#> 1862 1 0 -#> 1863 1 0 -#> 1864 1 0 -#> 1865 1 0 -#> 1866 1 0 -#> 1867 1 0 -#> 1868 1 0 -#> 1869 1 0 -#> 1870 1 0 -#> 1871 1 0 -#> 1872 1 0 -#> 1873 1 0 -#> 1874 1 0 -#> 1875 4 0 -#> 1876 4 0 -#> 1877 4 0 -#> 1878 4 0 -#> 1879 4 0 -#> 1880 4 0 -#> 1881 4 0 -#> 1882 4 0 -#> 1883 4 0 -#> 1884 4 0 -#> 1885 4 0 -#> 1886 4 0 -#> 1887 4 0 -#> 1888 4 0 -#> 1889 4 0 -#> 1890 4 0 -#> 1891 4 0 -#> 1892 4 0 -#> 1893 4 0 -#> 1894 4 0 -#> 1895 4 0 -#> 1896 4 0 -#> 1897 4 0 -#> 1898 4 0 -#> 1899 4 0 -#> 1900 4 0 -#> 1901 4 0 -#> 1902 4 0 -#> 1903 2 0 -#> 1904 2 0 -#> 1905 2 0 -#> 1906 2 0 -#> 1907 2 0 -#> 1908 2 0 -#> 1909 2 0 -#> 1910 2 0 -#> 1911 2 0 -#> 1912 2 0 -#> 1913 2 0 -#> 1914 2 0 -#> 1915 2 0 -#> 1916 2 0 -#> 1917 2 0 -#> 1918 2 0 -#> 1919 2 0 -#> 1920 2 0 -#> 1921 2 0 -#> 1922 2 0 -#> 1923 2 0 -#> 1924 2 0 -#> 1925 2 0 -#> 1926 2 0 -#> 1927 2 0 -#> 1928 2 0 -#> 1929 2 0 -#> 1930 2 0 -#> 1931 5 0 -#> 1932 5 0 -#> 1933 5 0 -#> 1934 5 0 -#> 1935 5 0 -#> 1936 5 0 -#> 1937 5 0 -#> 1938 5 0 -#> 1939 5 0 -#> 1940 5 0 -#> 1941 5 0 -#> 1942 5 0 -#> 1943 5 0 -#> 1944 5 0 -#> 1945 5 0 -#> 1946 5 0 -#> 1947 5 0 -#> 1948 5 0 -#> 1949 5 0 -#> 1950 5 0 -#> 1951 5 0 -#> 1952 5 0 -#> 1953 5 0 -#> 1954 5 0 -#> 1955 5 0 -#> 1956 5 0 -#> 1957 5 0 -#> 1958 5 0 -#> 1959 6 0 -#> 1960 6 0 -#> 1961 6 0 -#> 1962 6 0 -#> 1963 6 0 -#> 1964 6 0 -#> 1965 6 0 -#> 1966 6 0 -#> 1967 6 0 -#> 1968 6 0 -#> 1969 6 0 -#> 1970 6 0 -#> 1971 6 0 -#> 1972 6 0 -#> 1973 6 0 -#> 1974 6 0 -#> 1975 6 0 -#> 1976 6 0 -#> 1977 6 0 -#> 1978 6 0 -#> 1979 6 0 -#> 1980 6 0 -#> 1981 6 0 -#> 1982 6 0 -#> 1983 6 0 -#> 1984 6 0 -#> 1985 6 0 -#> 1986 6 0 -#> 1987 5 0 -#> 1988 5 0 -#> 1989 5 0 -#> 1990 5 0 -#> 1991 5 0 -#> 1992 5 0 -#> 1993 5 0 -#> 1994 5 0 -#> 1995 5 0 -#> 1996 5 0 -#> 1997 5 0 -#> 1998 5 0 -#> 1999 5 0 -#> 2000 5 0 -#> 2001 5 0 -#> 2002 5 0 -#> 2003 5 0 -#> 2004 5 0 -#> 2005 5 0 -#> 2006 5 0 -#> 2007 5 0 -#> 2008 5 0 -#> 2009 5 0 -#> 2010 5 0 -#> 2011 5 0 -#> 2012 5 0 -#> 2013 5 0 -#> 2014 5 0 -#> 2015 0 0 -#> 2016 0 0 -#> 2017 0 0 -#> 2018 0 0 -#> 2019 0 0 -#> 2020 0 0 -#> 2021 0 0 -#> 2022 0 0 -#> 2023 0 0 -#> 2024 0 0 -#> 2025 0 0 -#> 2026 0 0 -#> 2027 0 0 -#> 2028 0 0 -#> 2029 0 0 -#> 2030 0 0 -#> 2031 0 0 -#> 2032 0 0 -#> 2033 0 0 -#> 2034 0 0 -#> 2035 0 0 -#> 2036 0 0 -#> 2037 0 0 -#> 2038 0 0 -#> 2039 0 0 -#> 2040 0 0 -#> Game_URL -#> 1 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 2 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 3 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 4 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 5 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 6 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 7 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 8 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 9 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 10 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 11 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 12 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 13 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 14 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 15 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 16 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 17 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 18 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 19 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 20 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 21 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 22 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 23 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 24 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 25 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 26 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 27 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 28 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga -#> 29 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 30 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 31 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 32 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 33 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 34 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 35 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 36 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 37 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 38 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 39 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 40 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 41 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 42 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 43 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 44 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 45 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 46 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 47 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 48 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 49 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 50 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 51 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 52 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 53 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 54 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 55 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 56 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga -#> 57 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 58 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 59 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 60 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 61 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 62 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 63 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 64 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 65 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 66 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 67 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 68 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 69 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 70 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 71 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 72 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 73 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 74 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 75 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 76 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 77 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 78 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 79 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 80 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 81 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 82 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 83 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 84 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga -#> 85 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 86 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 87 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 88 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 89 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 90 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 91 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 92 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 93 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 94 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 95 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 96 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 97 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 98 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 99 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 100 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 101 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 102 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 103 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 104 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 105 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 106 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 107 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 108 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 109 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 110 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 111 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 112 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga -#> 113 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 114 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 115 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 116 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 117 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 118 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 119 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 120 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 121 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 122 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 123 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 124 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 125 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 126 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 127 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 128 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 129 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 130 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 131 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 132 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 133 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 134 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 135 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 136 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 137 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 138 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 139 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 140 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga -#> 141 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 142 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 143 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 144 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 145 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 146 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 147 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 148 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 149 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 150 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 151 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 152 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 153 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 154 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 155 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 156 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 157 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 158 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 159 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 160 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 161 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 162 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 163 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 164 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 165 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 166 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 167 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 168 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga -#> 169 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 170 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 171 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 172 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 173 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 174 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 175 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 176 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 177 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 178 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 179 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 180 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 181 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 182 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 183 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 184 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 185 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 186 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 187 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 188 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 189 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 190 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 191 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 192 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 193 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 194 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 195 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga -#> 196 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 197 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 198 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 199 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 200 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 201 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 202 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 203 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 204 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 205 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 206 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 207 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 208 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 209 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 210 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 211 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 212 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 213 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 214 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 215 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 216 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 217 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 218 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 219 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 220 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 221 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 222 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 223 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga -#> 224 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 225 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 226 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 227 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 228 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 229 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 230 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 231 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 232 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 233 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 234 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 235 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 236 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 237 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 238 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 239 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 240 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 241 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 242 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 243 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 244 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 245 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 246 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 247 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 248 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 249 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 250 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 251 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga -#> 252 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 253 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 254 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 255 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 256 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 257 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 258 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 259 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 260 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 261 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 262 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 263 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 264 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 265 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 266 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 267 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 268 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 269 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 270 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 271 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 272 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 273 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 274 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 275 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 276 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 277 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 278 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 279 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga -#> 280 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 281 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 282 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 283 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 284 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 285 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 286 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 287 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 288 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 289 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 290 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 291 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 292 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 293 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 294 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 295 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 296 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 297 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 298 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 299 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 300 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 301 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 302 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 303 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 304 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 305 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 306 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 307 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga -#> 308 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 309 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 310 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 311 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 312 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 313 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 314 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 315 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 316 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 317 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 318 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 319 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 320 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 321 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 322 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 323 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 324 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 325 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 326 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 327 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 328 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 329 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 330 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 331 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 332 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 333 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 334 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 335 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga -#> 336 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 337 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 338 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 339 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 340 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 341 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 342 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 343 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 344 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 345 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 346 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 347 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 348 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 349 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 350 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 351 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 352 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 353 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 354 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 355 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 356 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 357 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 358 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 359 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 360 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 361 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 362 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 363 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga -#> 364 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 365 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 366 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 367 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 368 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 369 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 370 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 371 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 372 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 373 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 374 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 375 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 376 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 377 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 378 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 379 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 380 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 381 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 382 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 383 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 384 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 385 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 386 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 387 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 388 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 389 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 390 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 391 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga -#> 392 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 393 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 394 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 395 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 396 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 397 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 398 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 399 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 400 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 401 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 402 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 403 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 404 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 405 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 406 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 407 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 408 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 409 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 410 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 411 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 412 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 413 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 414 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 415 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 416 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 417 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 418 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 419 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga -#> 420 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 421 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 422 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 423 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 424 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 425 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 426 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 427 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 428 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 429 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 430 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 431 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 432 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 433 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 434 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 435 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 436 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 437 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 438 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 439 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 440 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 441 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 442 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 443 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 444 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 445 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 446 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 447 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga -#> 448 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 449 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 450 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 451 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 452 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 453 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 454 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 455 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 456 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 457 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 458 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 459 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 460 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 461 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 462 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 463 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 464 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 465 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 466 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 467 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 468 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 469 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 470 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 471 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 472 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 473 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 474 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 475 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga -#> 476 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 477 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 478 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 479 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 480 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 481 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 482 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 483 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 484 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 485 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 486 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 487 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 488 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 489 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 490 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 491 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 492 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 493 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 494 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 495 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 496 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 497 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 498 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 499 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 500 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 501 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 502 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 503 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga -#> 504 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 505 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 506 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 507 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 508 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 509 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 510 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 511 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 512 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 513 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 514 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 515 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 516 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 517 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 518 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 519 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 520 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 521 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 522 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 523 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 524 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 525 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 526 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 527 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 528 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 529 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 530 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 531 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga -#> 532 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 533 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 534 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 535 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 536 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 537 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 538 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 539 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 540 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 541 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 542 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 543 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 544 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 545 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 546 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 547 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 548 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 549 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 550 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 551 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 552 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 553 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 554 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 555 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 556 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 557 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 558 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 559 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga -#> 560 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 561 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 562 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 563 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 564 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 565 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 566 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 567 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 568 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 569 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 570 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 571 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 572 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 573 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 574 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 575 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 576 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 577 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 578 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 579 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 580 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 581 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 582 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 583 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 584 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 585 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 586 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 587 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga -#> 588 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 589 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 590 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 591 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 592 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 593 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 594 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 595 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 596 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 597 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 598 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 599 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 600 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 601 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 602 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 603 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 604 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 605 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 606 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 607 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 608 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 609 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 610 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 611 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 612 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 613 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 614 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 615 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga -#> 616 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 617 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 618 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 619 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 620 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 621 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 622 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 623 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 624 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 625 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 626 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 627 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 628 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 629 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 630 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 631 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 632 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 633 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 634 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 635 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 636 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 637 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 638 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 639 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 640 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 641 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 642 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 643 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga -#> 644 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 645 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 646 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 647 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 648 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 649 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 650 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 651 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 652 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 653 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 654 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 655 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 656 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 657 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 658 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 659 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 660 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 661 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 662 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 663 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 664 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 665 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 666 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 667 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 668 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 669 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 670 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 671 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga -#> 672 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 673 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 674 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 675 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 676 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 677 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 678 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 679 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 680 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 681 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 682 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 683 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 684 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 685 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 686 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 687 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 688 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 689 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 690 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 691 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 692 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 693 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 694 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 695 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 696 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 697 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 698 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 699 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga -#> 700 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 701 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 702 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 703 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 704 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 705 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 706 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 707 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 708 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 709 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 710 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 711 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 712 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 713 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 714 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 715 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 716 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 717 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 718 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 719 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 720 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 721 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 722 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 723 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 724 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 725 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 726 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 727 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga -#> 728 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 729 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 730 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 731 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 732 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 733 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 734 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 735 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 736 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 737 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 738 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 739 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 740 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 741 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 742 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 743 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 744 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 745 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 746 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 747 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 748 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 749 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 750 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 751 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 752 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 753 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 754 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 755 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga -#> 756 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 757 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 758 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 759 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 760 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 761 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 762 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 763 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 764 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 765 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 766 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 767 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 768 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 769 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 770 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 771 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 772 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 773 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 774 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 775 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 776 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 777 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 778 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 779 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 780 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 781 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 782 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 783 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga -#> 784 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 785 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 786 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 787 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 788 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 789 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 790 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 791 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 792 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 793 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 794 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 795 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 796 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 797 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 798 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 799 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 800 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 801 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 802 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 803 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 804 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 805 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 806 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 807 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 808 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 809 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 810 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 811 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga -#> 812 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 813 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 814 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 815 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 816 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 817 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 818 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 819 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 820 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 821 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 822 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 823 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 824 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 825 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 826 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 827 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 828 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 829 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 830 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 831 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 832 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 833 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 834 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 835 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 836 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 837 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 838 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 839 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga -#> 840 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 841 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 842 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 843 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 844 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 845 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 846 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 847 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 848 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 849 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 850 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 851 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 852 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 853 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 854 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 855 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 856 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 857 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 858 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 859 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 860 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 861 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 862 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 863 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 864 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 865 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 866 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga -#> 867 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 868 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 869 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 870 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 871 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 872 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 873 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 874 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 875 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 876 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 877 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 878 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 879 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 880 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 881 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 882 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 883 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 884 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 885 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 886 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 887 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 888 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 889 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 890 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 891 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 892 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 893 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 894 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga -#> 895 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 896 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 897 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 898 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 899 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 900 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 901 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 902 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 903 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 904 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 905 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 906 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 907 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 908 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 909 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 910 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 911 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 912 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 913 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 914 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 915 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 916 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 917 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 918 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 919 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 920 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 921 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 922 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga -#> 923 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 924 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 925 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 926 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 927 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 928 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 929 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 930 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 931 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 932 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 933 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 934 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 935 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 936 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 937 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 938 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 939 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 940 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 941 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 942 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 943 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 944 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 945 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 946 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 947 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 948 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 949 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 950 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga -#> 951 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 952 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 953 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 954 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 955 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 956 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 957 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 958 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 959 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 960 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 961 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 962 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 963 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 964 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 965 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 966 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 967 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 968 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 969 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 970 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 971 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 972 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 973 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 974 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 975 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 976 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 977 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 978 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga -#> 979 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 980 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 981 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 982 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 983 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 984 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 985 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 986 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 987 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 988 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 989 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 990 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 991 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 992 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 993 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 994 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 995 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 996 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 997 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 998 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 999 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1000 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1001 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1002 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1003 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1004 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1005 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1006 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga -#> 1007 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1008 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1009 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1010 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1011 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1012 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1013 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1014 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1015 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1016 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1017 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1018 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1019 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1020 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1021 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1022 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1023 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1024 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1025 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1026 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1027 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1028 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1029 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1030 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1031 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1032 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1033 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1034 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga -#> 1035 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1036 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1037 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1038 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1039 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1040 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1041 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1042 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1043 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1044 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1045 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1046 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1047 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1048 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1049 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1050 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1051 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1052 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1053 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1054 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1055 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1056 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1057 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1058 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1059 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1060 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1061 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1062 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga -#> 1063 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1064 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1065 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1066 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1067 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1068 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1069 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1070 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1071 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1072 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1073 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1074 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1075 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1076 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1077 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1078 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1079 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1080 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1081 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1082 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1083 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1084 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1085 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1086 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1087 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1088 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1089 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1090 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga -#> 1091 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1092 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1093 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1094 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1095 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1096 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1097 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1098 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1099 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1100 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1101 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1102 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1103 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1104 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1105 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1106 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1107 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1108 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1109 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1110 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1111 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1112 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1113 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1114 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1115 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1116 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1117 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1118 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga -#> 1119 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1120 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1121 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1122 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1123 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1124 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1125 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1126 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1127 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1128 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1129 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1130 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1131 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1132 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1133 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1134 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1135 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1136 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1137 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1138 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1139 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1140 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1141 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1142 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1143 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1144 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1145 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1146 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga -#> 1147 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1148 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1149 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1150 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1151 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1152 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1153 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1154 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1155 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1156 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1157 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1158 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1159 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1160 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1161 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1162 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1163 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1164 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1165 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1166 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1167 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1168 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1169 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1170 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1171 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1172 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1173 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1174 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga -#> 1175 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1176 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1177 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1178 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1179 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1180 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1181 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1182 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1183 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1184 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1185 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1186 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1187 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1188 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1189 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1190 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1191 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1192 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1193 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1194 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1195 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1196 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1197 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1198 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1199 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1200 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1201 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1202 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga -#> 1203 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1204 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1205 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1206 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1207 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1208 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1209 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1210 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1211 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1212 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1213 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1214 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1215 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1216 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1217 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1218 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1219 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1220 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1221 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1222 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1223 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1224 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1225 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1226 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1227 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1228 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1229 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1230 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga -#> 1231 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1232 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1233 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1234 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1235 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1236 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1237 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1238 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1239 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1240 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1241 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1242 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1243 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1244 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1245 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1246 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1247 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1248 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1249 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1250 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1251 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1252 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1253 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1254 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1255 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1256 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1257 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1258 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga -#> 1259 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1260 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1261 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1262 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1263 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1264 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1265 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1266 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1267 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1268 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1269 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1270 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1271 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1272 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1273 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1274 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1275 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1276 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1277 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1278 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1279 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1280 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1281 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1282 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1283 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1284 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1285 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1286 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga -#> 1287 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1288 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1289 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1290 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1291 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1292 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1293 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1294 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1295 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1296 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1297 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1298 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1299 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1300 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1301 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1302 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1303 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1304 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1305 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1306 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1307 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1308 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1309 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1310 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1311 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1312 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1313 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1314 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga -#> 1315 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1316 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1317 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1318 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1319 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1320 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1321 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1322 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1323 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1324 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1325 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1326 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1327 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1328 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1329 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1330 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1331 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1332 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1333 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1334 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1335 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1336 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1337 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1338 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1339 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1340 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1341 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1342 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga -#> 1343 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1344 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1345 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1346 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1347 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1348 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1349 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1350 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1351 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1352 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1353 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1354 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1355 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1356 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1357 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1358 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1359 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1360 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1361 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1362 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1363 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1364 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1365 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1366 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1367 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1368 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1369 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1370 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga -#> 1371 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1372 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1373 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1374 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1375 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1376 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1377 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1378 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1379 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1380 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1381 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1382 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1383 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1384 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1385 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1386 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1387 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1388 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1389 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1390 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1391 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1392 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1393 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1394 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1395 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1396 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1397 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1398 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga -#> 1399 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1400 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1401 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1402 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1403 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1404 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1405 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1406 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1407 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1408 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1409 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1410 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1411 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1412 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1413 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1414 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1415 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1416 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1417 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1418 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1419 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1420 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1421 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1422 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1423 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1424 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1425 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1426 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga -#> 1427 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1428 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1429 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1430 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1431 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1432 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1433 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1434 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1435 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1436 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1437 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1438 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1439 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1440 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1441 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1442 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1443 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1444 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1445 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1446 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1447 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1448 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1449 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1450 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1451 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1452 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1453 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1454 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga -#> 1455 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1456 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1457 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1458 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1459 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1460 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1461 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1462 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1463 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1464 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1465 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1466 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1467 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1468 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1469 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1470 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1471 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1472 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1473 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1474 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1475 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1476 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1477 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1478 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1479 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1480 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1481 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1482 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga -#> 1483 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1484 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1485 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1486 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1487 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1488 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1489 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1490 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1491 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1492 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1493 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1494 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1495 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1496 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1497 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1498 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1499 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1500 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1501 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1502 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1503 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1504 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1505 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1506 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1507 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1508 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1509 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1510 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga -#> 1511 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1512 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1513 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1514 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1515 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1516 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1517 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1518 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1519 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1520 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1521 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1522 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1523 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1524 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1525 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1526 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1527 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1528 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1529 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1530 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1531 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1532 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1533 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1534 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1535 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1536 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1537 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1538 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga -#> 1539 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1540 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1541 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1542 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1543 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1544 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1545 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1546 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1547 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1548 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1549 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1550 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1551 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1552 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1553 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1554 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1555 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1556 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1557 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1558 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1559 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1560 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1561 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1562 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1563 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1564 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1565 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1566 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga -#> 1567 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1568 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1569 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1570 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1571 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1572 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1573 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1574 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1575 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1576 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1577 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1578 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1579 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1580 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1581 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1582 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1583 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1584 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1585 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1586 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1587 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1588 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1589 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1590 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1591 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1592 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1593 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1594 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga -#> 1595 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1596 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1597 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1598 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1599 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1600 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1601 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1602 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1603 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1604 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1605 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1606 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1607 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1608 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1609 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1610 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1611 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1612 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1613 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1614 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1615 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1616 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1617 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1618 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1619 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1620 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1621 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1622 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga -#> 1623 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1624 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1625 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1626 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1627 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1628 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1629 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1630 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1631 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1632 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1633 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1634 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1635 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1636 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1637 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1638 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1639 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1640 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1641 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1642 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1643 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1644 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1645 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1646 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1647 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1648 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1649 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1650 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga -#> 1651 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1652 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1653 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1654 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1655 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1656 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1657 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1658 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1659 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1660 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1661 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1662 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1663 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1664 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1665 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1666 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1667 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1668 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1669 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1670 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1671 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1672 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1673 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1674 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1675 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1676 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1677 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1678 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga -#> 1679 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1680 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1681 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1682 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1683 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1684 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1685 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1686 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1687 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1688 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1689 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1690 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1691 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1692 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1693 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1694 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1695 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1696 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1697 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1698 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1699 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1700 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1701 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1702 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1703 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1704 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1705 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1706 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga -#> 1707 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1708 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1709 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1710 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1711 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1712 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1713 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1714 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1715 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1716 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1717 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1718 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1719 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1720 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1721 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1722 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1723 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1724 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1725 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1726 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1727 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1728 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1729 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1730 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1731 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1732 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1733 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1734 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga -#> 1735 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1736 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1737 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1738 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1739 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1740 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1741 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1742 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1743 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1744 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1745 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1746 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1747 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1748 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1749 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1750 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1751 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1752 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1753 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1754 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1755 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1756 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1757 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1758 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1759 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1760 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1761 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1762 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga -#> 1763 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1764 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1765 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1766 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1767 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1768 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1769 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1770 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1771 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1772 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1773 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1774 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1775 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1776 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1777 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1778 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1779 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1780 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1781 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1782 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1783 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1784 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1785 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1786 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1787 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1788 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1789 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1790 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga -#> 1791 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1792 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1793 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1794 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1795 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1796 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1797 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1798 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1799 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1800 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1801 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1802 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1803 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1804 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1805 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1806 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1807 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1808 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1809 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1810 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1811 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1812 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1813 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1814 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1815 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1816 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1817 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1818 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga -#> 1819 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1820 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1821 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1822 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1823 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1824 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1825 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1826 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1827 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1828 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1829 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1830 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1831 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1832 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1833 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1834 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1835 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1836 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1837 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1838 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1839 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1840 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1841 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1842 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1843 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1844 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1845 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1846 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga -#> 1847 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1848 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1849 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1850 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1851 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1852 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1853 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1854 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1855 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1856 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1857 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1858 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1859 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1860 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1861 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1862 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1863 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1864 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1865 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1866 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1867 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1868 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1869 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1870 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1871 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1872 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1873 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1874 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga -#> 1875 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1876 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1877 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1878 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1879 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1880 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1881 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1882 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1883 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1884 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1885 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1886 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1887 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1888 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1889 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1890 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1891 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1892 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1893 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1894 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1895 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1896 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1897 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1898 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1899 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1900 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1901 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1902 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga -#> 1903 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1904 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1905 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1906 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1907 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1908 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1909 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1910 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1911 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1912 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1913 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1914 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1915 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1916 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1917 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1918 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1919 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1920 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1921 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1922 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1923 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1924 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1925 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1926 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1927 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1928 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1929 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1930 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga -#> 1931 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1932 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1933 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1934 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1935 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1936 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1937 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1938 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1939 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1940 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1941 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1942 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1943 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1944 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1945 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1946 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1947 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1948 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1949 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1950 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1951 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1952 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1953 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1954 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1955 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1956 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1957 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1958 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga -#> 1959 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1960 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1961 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1962 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1963 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1964 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1965 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1966 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1967 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1968 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1969 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1970 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1971 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1972 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1973 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1974 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1975 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1976 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1977 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1978 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1979 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1980 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1981 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1982 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1983 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1984 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1985 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1986 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga -#> 1987 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1988 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1989 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1990 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1991 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1992 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1993 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1994 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1995 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1996 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1997 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1998 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 1999 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2000 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2001 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2002 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2003 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2004 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2005 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2006 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2007 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2008 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2009 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2010 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2011 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2012 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2013 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2014 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga -#> 2015 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2016 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2017 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2018 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2019 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2020 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2021 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2022 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2023 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2024 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2025 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2026 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2027 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2028 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2029 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2030 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2031 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2032 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2033 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2034 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2035 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2036 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2037 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2038 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2039 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> 2040 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga -#> Team Home_Away Player -#> 1 Girona Home Cristhian Stuani -#> 2 Girona Home Patrick Roberts -#> 3 Girona Home Borja García -#> 4 Girona Home Portu -#> 5 Girona Home Aleix García -#> 6 Girona Home Anthony Lozano -#> 7 Girona Home David Timor -#> 8 Girona Home Pere Pons -#> 9 Girona Home Álex Granell -#> 10 Girona Home Marc Muniesa -#> 11 Girona Home Bernardo Espinosa -#> 12 Girona Home Juanpe -#> 13 Girona Home Pedro Porro -#> 14 Girona Home Yassine Bounou -#> 15 Valladolid Away Chris Ramos -#> 16 Valladolid Away Óscar Plano -#> 17 Valladolid Away Toni Villa -#> 18 Valladolid Away Míchel -#> 19 Valladolid Away Keko -#> 20 Valladolid Away Anuar -#> 21 Valladolid Away Daniele Verde -#> 22 Valladolid Away Rubén Alcaraz -#> 23 Valladolid Away Borja Fernández -#> 24 Valladolid Away Nacho -#> 25 Valladolid Away Fernando Calero -#> 26 Valladolid Away Kiko Olivas -#> 27 Valladolid Away Javi Moyano -#> 28 Valladolid Away Jordi Masip -#> 29 Real Betis Home Loren Morón -#> 30 Real Betis Home Ryad Boudebouz -#> 31 Real Betis Home Antonio Sanabria -#> 32 Real Betis Home Junior Firpo -#> 33 Real Betis Home Francis Guerrero -#> 34 Real Betis Home Antonio Barragán -#> 35 Real Betis Home Andrés Guardado -#> 36 Real Betis Home Sergio Canales -#> 37 Real Betis Home William Carvalho -#> 38 Real Betis Home Takashi Inui -#> 39 Real Betis Home Zouhair Feddal -#> 40 Real Betis Home Marc Bartra -#> 41 Real Betis Home Aïssa Mandi -#> 42 Real Betis Home Pau López -#> 43 Levante Away Roger Martí -#> 44 Levante Away Antonio Luna -#> 45 Levante Away José Luis Morales -#> 46 Levante Away Enis Bardhi -#> 47 Levante Away José Campaña -#> 48 Levante Away Cheick Doukouré -#> 49 Levante Away Sanjin Prcić -#> 50 Levante Away Jason -#> 51 Levante Away Raphael Dwamena -#> 52 Levante Away Toño -#> 53 Levante Away Chema -#> 54 Levante Away Sergio Postigo -#> 55 Levante Away Coke -#> 56 Levante Away Oier Olazábal -#> 57 Celta Vigo Home Maxi Gómez -#> 58 Celta Vigo Home Dennis Eckert -#> 59 Celta Vigo Home Pione Sisto -#> 60 Celta Vigo Home Emre Mor -#> 61 Celta Vigo Home Brais Méndez -#> 62 Celta Vigo Home Sofiane Boufal -#> 63 Celta Vigo Home Iago Aspas -#> 64 Celta Vigo Home Stanislav Lobotka -#> 65 Celta Vigo Home Fran Beltrán -#> 66 Celta Vigo Home Júnior Alonso -#> 67 Celta Vigo Home Gustavo Cabral -#> 68 Celta Vigo Home Néstor Araujo -#> 69 Celta Vigo Home Hugo Mallo -#> 70 Celta Vigo Home Sergio Álvarez -#> 71 Espanyol Away Borja Iglesias -#> 72 Espanyol Away Sergio García -#> 73 Espanyol Away Pablo Piatti -#> 74 Espanyol Away Javi Puado -#> 75 Espanyol Away Léo Baptistão -#> 76 Espanyol Away Hernán Pérez -#> 77 Espanyol Away Sergi Darder -#> 78 Espanyol Away Marc Roca -#> 79 Espanyol Away Víctor Sánchez -#> 80 Espanyol Away Dídac Vilà -#> 81 Espanyol Away Mario Hermoso -#> 82 Espanyol Away David López -#> 83 Espanyol Away Javi López -#> 84 Espanyol Away Diego López -#> 85 Villarreal Home Karl Toko Ekambi -#> 86 Villarreal Home Gerard Moreno -#> 87 Villarreal Home Santi Cazorla -#> 88 Villarreal Home Manu Trigueros -#> 89 Villarreal Home Manu Morlanes -#> 90 Villarreal Home Dani Raba -#> 91 Villarreal Home Santiago Cáseres -#> 92 Villarreal Home Pablo Fornals -#> 93 Villarreal Home Carlos Bacca -#> 94 Villarreal Home Alfonso Pedraza -#> 95 Villarreal Home Ramiro Funes Mori -#> 96 Villarreal Home Álvaro González -#> 97 Villarreal Home Mario Gaspar -#> 98 Villarreal Home Sergio Asenjo -#> 99 Real Sociedad Away Willian José -#> 100 Real Sociedad Away Rubén Pardo -#> 101 Real Sociedad Away Juanmi -#> 102 Real Sociedad Away Mikel Merino -#> 103 Real Sociedad Away David Zurutuza -#> 104 Real Sociedad Away Igor Zubeldia -#> 105 Real Sociedad Away Asier Illarramendi -#> 106 Real Sociedad Away Mikel Oyarzabal -#> 107 Real Sociedad Away Aritz Elustondo -#> 108 Real Sociedad Away Theo Hernández -#> 109 Real Sociedad Away Héctor Moreno -#> 110 Real Sociedad Away Diego Llorente -#> 111 Real Sociedad Away Joseba Zaldúa -#> 112 Real Sociedad Away Gerónimo Rulli -#> 113 Barcelona Home Lionel Messi -#> 114 Barcelona Home Luis Suárez -#> 115 Barcelona Home Ousmane Dembélé -#> 116 Barcelona Home Arthur Melo -#> 117 Barcelona Home Ivan Rakitić -#> 118 Barcelona Home Sergio Busquets -#> 119 Barcelona Home Arturo Vidal -#> 120 Barcelona Home Sergi Roberto -#> 121 Barcelona Home Jordi Alba -#> 122 Barcelona Home Samuel Umtiti -#> 123 Barcelona Home Gerard Piqué -#> 124 Barcelona Home Nélson Semedo -#> 125 Barcelona Home Philippe Coutinho -#> 126 Barcelona Home Marc-André ter Stegen -#> 127 Alavés Away Rubén Sobrino -#> 128 Alavés Away Burgui -#> 129 Alavés Away Jony -#> 130 Alavés Away Borja Bastón -#> 131 Alavés Away Ibai Gómez -#> 132 Alavés Away Manu García -#> 133 Alavés Away Daniel Torres -#> 134 Alavés Away Adrián Marín -#> 135 Alavés Away Wakaso -#> 136 Alavés Away Rubén Duarte -#> 137 Alavés Away Guillermo Maripán -#> 138 Alavés Away Víctor Laguardia -#> 139 Alavés Away Martin Agirregabiria -#> 140 Alavés Away Fernando Pacheco -#> 141 Eibar Home Kiké -#> 142 Eibar Home Charles -#> 143 Eibar Home Sergi Enrich -#> 144 Eibar Home Bebé -#> 145 Eibar Home Gonzalo Escalante -#> 146 Eibar Home Joan Jordán -#> 147 Eibar Home Papakouli Diop -#> 148 Eibar Home Fabián Orellana -#> 149 Eibar Home José Ángel -#> 150 Eibar Home Anaitz Arbilla -#> 151 Eibar Home Pedro Bigas -#> 152 Eibar Home Paulo Oliveira -#> 153 Eibar Home Rubén Peña -#> 154 Eibar Home Marko Dmitrović -#> 155 Huesca Away Samuele Longo -#> 156 Huesca Away Cucho -#> 157 Huesca Away Rúben Semedo -#> 158 Huesca Away Moi Gómez -#> 159 Huesca Away Gonzalo Melero -#> 160 Huesca Away Damián Musto -#> 161 Huesca Away David Ferreiro -#> 162 Huesca Away Álex Gallar -#> 163 Huesca Away Ezequiel Ávila -#> 164 Huesca Away Luisinho -#> 165 Huesca Away Xabier Etxeita -#> 166 Huesca Away Jorge Pulido -#> 167 Huesca Away Jorge Miramón -#> 168 Huesca Away Axel Werner -#> 169 Rayo Vallecano Home Óscar Trejo -#> 170 Rayo Vallecano Home Adri Embarba -#> 171 Rayo Vallecano Home José Pozo -#> 172 Rayo Vallecano Home Luis Advíncula -#> 173 Rayo Vallecano Home Álvaro Medrán -#> 174 Rayo Vallecano Home Javi Guerra -#> 175 Rayo Vallecano Home Gaël Kakuta -#> 176 Rayo Vallecano Home Jordi Amat -#> 177 Rayo Vallecano Home Álex Moreno -#> 178 Rayo Vallecano Home Chechu -#> 179 Rayo Vallecano Home Abdoulaye Ba -#> 180 Rayo Vallecano Home Tito -#> 181 Rayo Vallecano Home Alberto García -#> 182 Sevilla Away André Silva -#> 183 Sevilla Away Franco Vázquez -#> 184 Sevilla Away Pablo Sarabia -#> 185 Sevilla Away Luis Muriel -#> 186 Sevilla Away Éver Banega -#> 187 Sevilla Away Ibrahim Amadou -#> 188 Sevilla Away Roque Mesa -#> 189 Sevilla Away Sergio Escudero -#> 190 Sevilla Away Aleix Vidal -#> 191 Sevilla Away Jesús Navas -#> 192 Sevilla Away Sergi Gómez -#> 193 Sevilla Away Simon Kjær -#> 194 Sevilla Away Gabriel Mercado -#> 195 Sevilla Away Tomáš Vaclík -#> 196 Real Madrid Home Karim Benzema -#> 197 Real Madrid Home Marco Asensio -#> 198 Real Madrid Home Gareth Bale -#> 199 Real Madrid Home Lucas Vázquez -#> 200 Real Madrid Home Isco -#> 201 Real Madrid Home Casemiro -#> 202 Real Madrid Home Toni Kroos -#> 203 Real Madrid Home Dani Ceballos -#> 204 Real Madrid Home Luka Modrić -#> 205 Real Madrid Home Marcelo -#> 206 Real Madrid Home Sergio Ramos -#> 207 Real Madrid Home Nacho -#> 208 Real Madrid Home Dani Carvajal -#> 209 Real Madrid Home Keylor Navas -#> 210 Getafe Away Jorge Molina -#> 211 Getafe Away Ángel Rodríguez -#> 212 Getafe Away Amath -#> 213 Getafe Away Jaime Mata -#> 214 Getafe Away Gaku Shibasaki -#> 215 Getafe Away Mauro Arambarri -#> 216 Getafe Away Francisco Portillo -#> 217 Getafe Away Iván Alejo -#> 218 Getafe Away Nemanja Maksimović -#> 219 Getafe Away Leandro Cabrera -#> 220 Getafe Away Bruno González -#> 221 Getafe Away Djené -#> 222 Getafe Away Damián Suárez -#> 223 Getafe Away David Soria -#> 224 Valencia Home Santi Mina -#> 225 Valencia Home Kévin Gameiro -#> 226 Valencia Home Rodrigo -#> 227 Valencia Home Daniel Wass -#> 228 Valencia Home Geoffrey Kondogbia -#> 229 Valencia Home Daniel Parejo -#> 230 Valencia Home Carlos Soler -#> 231 Valencia Home Michy Batshuayi -#> 232 Valencia Home José Luis Gayà -#> 233 Valencia Home Gabriel Paulista -#> 234 Valencia Home Ezequiel Garay -#> 235 Valencia Home Mouctar Diakhaby -#> 236 Valencia Home Cristiano Piccini -#> 237 Valencia Home Neto -#> 238 Atlético Madrid Away Antoine Griezmann -#> 239 Atlético Madrid Away Gelson Martins -#> 240 Atlético Madrid Away Diego Costa -#> 241 Atlético Madrid Away Thomas Lemar -#> 242 Atlético Madrid Away Vitolo -#> 243 Atlético Madrid Away Saúl Ñíguez -#> 244 Atlético Madrid Away Koke -#> 245 Atlético Madrid Away Ángel Correa -#> 246 Atlético Madrid Away Thomas Partey -#> 247 Atlético Madrid Away Filipe Luís -#> 248 Atlético Madrid Away Diego Godín -#> 249 Atlético Madrid Away Stefan Savić -#> 250 Atlético Madrid Away Juanfran -#> 251 Atlético Madrid Away Jan Oblak -#> 252 Athletic Club Home Aritz Aduriz -#> 253 Athletic Club Home Iñigo Córdoba -#> 254 Athletic Club Home Iñaki Williams -#> 255 Athletic Club Home Markel Susaeta -#> 256 Athletic Club Home Iker Muniain -#> 257 Athletic Club Home Dani García -#> 258 Athletic Club Home Unai López -#> 259 Athletic Club Home Raúl García -#> 260 Athletic Club Home Yuri Berchiche -#> 261 Athletic Club Home Peru Nolaskoain -#> 262 Athletic Club Home Yeray Álvarez -#> 263 Athletic Club Home Óscar de Marcos -#> 264 Athletic Club Home Ander Capa -#> 265 Athletic Club Home Unai Simón -#> 266 Leganés Away Guido Carrillo -#> 267 Leganés Away Youssef En-Nesyri -#> 268 Leganés Away Javier Eraso -#> 269 Leganés Away Michael Santos -#> 270 Leganés Away Jonathan Silva -#> 271 Leganés Away Gerard Gumbau -#> 272 Leganés Away Rubén Pérez -#> 273 Leganés Away Nabil El Zhar -#> 274 Leganés Away Dani Ojeda -#> 275 Leganés Away Raúl García -#> 276 Leganés Away Dimitris Siovas -#> 277 Leganés Away Ezequiel Muñoz -#> 278 Leganés Away Juanfran -#> 279 Leganés Away Iván Cuéllar -#> 280 Getafe Home Jaime Mata -#> 281 Getafe Home Jorge Molina -#> 282 Getafe Home Ángel Rodríguez -#> 283 Getafe Home Leandro Cabrera -#> 284 Getafe Home Francisco Portillo -#> 285 Getafe Home Nemanja Maksimović -#> 286 Getafe Home Mauro Arambarri -#> 287 Getafe Home Iván Alejo -#> 288 Getafe Home Amath -#> 289 Getafe Home Vitorino Antunes -#> 290 Getafe Home Bruno González -#> 291 Getafe Home Djené -#> 292 Getafe Home Damián Suárez -#> 293 Getafe Home David Soria -#> 294 Eibar Away Sergi Enrich -#> 295 Eibar Away Kiké -#> 296 Eibar Away Charles -#> 297 Eibar Away Pere Milla -#> 298 Eibar Away Pablo Hervías -#> 299 Eibar Away Papakouli Diop -#> 300 Eibar Away Gonzalo Escalante -#> 301 Eibar Away Joan Jordán -#> 302 Eibar Away Bebé -#> 303 Eibar Away José Ángel -#> 304 Eibar Away Anaitz Arbilla -#> 305 Eibar Away Paulo Oliveira -#> 306 Eibar Away Rubén Peña -#> 307 Eibar Away Marko Dmitrović -#> 308 Leganés Home Guido Carrillo -#> 309 Leganés Home Javier Eraso -#> 310 Leganés Home Michael Santos -#> 311 Leganés Home Dani Ojeda -#> 312 Leganés Home Diego Rolán -#> 313 Leganés Home Gerard Gumbau -#> 314 Leganés Home Rubén Pérez -#> 315 Leganés Home Nabil El Zhar -#> 316 Leganés Home Jonathan Silva -#> 317 Leganés Home Dimitris Siovas -#> 318 Leganés Home Ezequiel Muñoz -#> 319 Leganés Home Youssef En-Nesyri -#> 320 Leganés Home Juanfran -#> 321 Leganés Home Iván Cuéllar -#> 322 Real Sociedad Away Willian José -#> 323 Real Sociedad Away Juanmi -#> 324 Real Sociedad Away David Zurutuza -#> 325 Real Sociedad Away Mikel Merino -#> 326 Real Sociedad Away Asier Illarramendi -#> 327 Real Sociedad Away Igor Zubeldia -#> 328 Real Sociedad Away Mikel Oyarzabal -#> 329 Real Sociedad Away Rubén Pardo -#> 330 Real Sociedad Away Theo Hernández -#> 331 Real Sociedad Away Héctor Moreno -#> 332 Real Sociedad Away Diego Llorente -#> 333 Real Sociedad Away Aritz Elustondo -#> 334 Real Sociedad Away Joseba Zaldúa -#> 335 Real Sociedad Away Gerónimo Rulli -#> 336 Alavés Home Rubén Sobrino -#> 337 Alavés Home Burgui -#> 338 Alavés Home Borja Bastón -#> 339 Alavés Home John Guidetti -#> 340 Alavés Home Jony -#> 341 Alavés Home Patrick Twumasi -#> 342 Alavés Home Manu García -#> 343 Alavés Home Wakaso -#> 344 Alavés Home Ibai Gómez -#> 345 Alavés Home Rubén Duarte -#> 346 Alavés Home Guillermo Maripán -#> 347 Alavés Home Víctor Laguardia -#> 348 Alavés Home Martin Agirregabiria -#> 349 Alavés Home Fernando Pacheco -#> 350 Real Betis Away Loren Morón -#> 351 Real Betis Away Takashi Inui -#> 352 Real Betis Away Antonio Sanabria -#> 353 Real Betis Away Sergio Canales -#> 354 Real Betis Away William Carvalho -#> 355 Real Betis Away Ryad Boudebouz -#> 356 Real Betis Away Andrés Guardado -#> 357 Real Betis Away Junior Firpo -#> 358 Real Betis Away Francis Guerrero -#> 359 Real Betis Away Cristian Tello -#> 360 Real Betis Away Zouhair Feddal -#> 361 Real Betis Away Marc Bartra -#> 362 Real Betis Away Aïssa Mandi -#> 363 Real Betis Away Pau López -#> 364 Atlético Madrid Home Diego Costa -#> 365 Atlético Madrid Home Antoine Griezmann -#> 366 Atlético Madrid Home Gelson Martins -#> 367 Atlético Madrid Home Thomas Lemar -#> 368 Atlético Madrid Home Saúl Ñíguez -#> 369 Atlético Madrid Home Rodri -#> 370 Atlético Madrid Home Ángel Correa -#> 371 Atlético Madrid Home Koke -#> 372 Atlético Madrid Home Lucas Hernández -#> 373 Atlético Madrid Home Diego Godín -#> 374 Atlético Madrid Home Stefan Savić -#> 375 Atlético Madrid Home Juanfran -#> 376 Atlético Madrid Home Thomas Partey -#> 377 Atlético Madrid Home Jan Oblak -#> 378 Rayo Vallecano Away Adri Embarba -#> 379 Rayo Vallecano Away Álvaro García -#> 380 Rayo Vallecano Away Sergio Moreno -#> 381 Rayo Vallecano Away Santi Comesaña -#> 382 Rayo Vallecano Away José Pozo -#> 383 Rayo Vallecano Away Óscar Trejo -#> 384 Rayo Vallecano Away Gaël Kakuta -#> 385 Rayo Vallecano Away Álvaro Medrán -#> 386 Rayo Vallecano Away Gorka Elustondo -#> 387 Rayo Vallecano Away Álex Moreno -#> 388 Rayo Vallecano Away Jordi Amat -#> 389 Rayo Vallecano Away Abdoulaye Ba -#> 390 Rayo Vallecano Away Luis Advíncula -#> 391 Rayo Vallecano Away Alberto García -#> 392 Valladolid Home Óscar Plano -#> 393 Valladolid Home Enes Ünal -#> 394 Valladolid Home Duje Čop -#> 395 Valladolid Home Toni Villa -#> 396 Valladolid Home Daniele Verde -#> 397 Valladolid Home Rubén Alcaraz -#> 398 Valladolid Home Borja Fernández -#> 399 Valladolid Home Keko -#> 400 Valladolid Home Anuar -#> 401 Valladolid Home Nacho -#> 402 Valladolid Home Fernando Calero -#> 403 Valladolid Home Kiko Olivas -#> 404 Valladolid Home Javi Moyano -#> 405 Valladolid Home Jordi Masip -#> 406 Barcelona Away Luis Suárez -#> 407 Barcelona Away Munir El Haddadi -#> 408 Barcelona Away Ousmane Dembélé -#> 409 Barcelona Away Arturo Vidal -#> 410 Barcelona Away Lionel Messi -#> 411 Barcelona Away Philippe Coutinho -#> 412 Barcelona Away Malcom -#> 413 Barcelona Away Sergio Busquets -#> 414 Barcelona Away Ivan Rakitić -#> 415 Barcelona Away Jordi Alba -#> 416 Barcelona Away Samuel Umtiti -#> 417 Barcelona Away Gerard Piqué -#> 418 Barcelona Away Sergi Roberto -#> 419 Barcelona Away Marc-André ter Stegen -#> 420 Espanyol Home Borja Iglesias -#> 421 Espanyol Home Sergio García -#> 422 Espanyol Home Hernán Pérez -#> 423 Espanyol Home Esteban Granero -#> 424 Espanyol Home Víctor Sánchez -#> 425 Espanyol Home Sergi Darder -#> 426 Espanyol Home Léo Baptistão -#> 427 Espanyol Home Pablo Piatti -#> 428 Espanyol Home Marc Roca -#> 429 Espanyol Home Dídac Vilà -#> 430 Espanyol Home Mario Hermoso -#> 431 Espanyol Home David López -#> 432 Espanyol Home Javi López -#> 433 Espanyol Home Diego López -#> 434 Valencia Away Santi Mina -#> 435 Valencia Away Kévin Gameiro -#> 436 Valencia Away Rodrigo -#> 437 Valencia Away Michy Batshuayi -#> 438 Valencia Away Daniel Wass -#> 439 Valencia Away Denis Cheryshev -#> 440 Valencia Away Geoffrey Kondogbia -#> 441 Valencia Away Daniel Parejo -#> 442 Valencia Away Carlos Soler -#> 443 Valencia Away José Luis Gayà -#> 444 Valencia Away Mouctar Diakhaby -#> 445 Valencia Away Gabriel Paulista -#> 446 Valencia Away Cristiano Piccini -#> 447 Valencia Away Neto -#> 448 Girona Home Anthony Lozano -#> 449 Girona Home Cristhian Stuani -#> 450 Girona Home Borja García -#> 451 Girona Home Portu -#> 452 Girona Home Álex Granell -#> 453 Girona Home David Timor -#> 454 Girona Home Pere Pons -#> 455 Girona Home Aleix García -#> 456 Girona Home Marc Muniesa -#> 457 Girona Home Bernardo Espinosa -#> 458 Girona Home Juanpe -#> 459 Girona Home Pedro Porro -#> 460 Girona Home Aday -#> 461 Girona Home Yassine Bounou -#> 462 Real Madrid Away Karim Benzema -#> 463 Real Madrid Away Marco Asensio -#> 464 Real Madrid Away Gareth Bale -#> 465 Real Madrid Away Lucas Vázquez -#> 466 Real Madrid Away Isco -#> 467 Real Madrid Away Luka Modrić -#> 468 Real Madrid Away Toni Kroos -#> 469 Real Madrid Away Casemiro -#> 470 Real Madrid Away Marcelo -#> 471 Real Madrid Away Raphaël Varane -#> 472 Real Madrid Away Sergio Ramos -#> 473 Real Madrid Away Nacho -#> 474 Real Madrid Away Dani Carvajal -#> 475 Real Madrid Away Keylor Navas -#> 476 Sevilla Home André Silva -#> 477 Sevilla Home Franco Vázquez -#> 478 Sevilla Home Aleix Vidal -#> 479 Sevilla Home Pablo Sarabia -#> 480 Sevilla Home Éver Banega -#> 481 Sevilla Home Maxime Gonalons -#> 482 Sevilla Home Roque Mesa -#> 483 Sevilla Home Sergio Escudero -#> 484 Sevilla Home Wissam Ben Yedder -#> 485 Sevilla Home Jesús Navas -#> 486 Sevilla Home Sergi Gómez -#> 487 Sevilla Home Simon Kjær -#> 488 Sevilla Home Gabriel Mercado -#> 489 Sevilla Home Tomáš Vaclík -#> 490 Villarreal Away Karl Toko Ekambi -#> 491 Villarreal Away Jaume Costa -#> 492 Villarreal Away Gerard Moreno -#> 493 Villarreal Away Pablo Fornals -#> 494 Villarreal Away Carlos Bacca -#> 495 Villarreal Away Manu Trigueros -#> 496 Villarreal Away Santi Cazorla -#> 497 Villarreal Away Dani Raba -#> 498 Villarreal Away Santiago Cáseres -#> 499 Villarreal Away Alfonso Pedraza -#> 500 Villarreal Away Víctor Ruiz -#> 501 Villarreal Away Álvaro González -#> 502 Villarreal Away Mario Gaspar -#> 503 Villarreal Away Sergio Asenjo -#> 504 Levante Home Roger Martí -#> 505 Levante Home José Luis Morales -#> 506 Levante Home Jason -#> 507 Levante Home Raphael Dwamena -#> 508 Levante Home Enis Bardhi -#> 509 Levante Home Rubén Rochina -#> 510 Levante Home Cheick Doukouré -#> 511 Levante Home Sanjin Prcić -#> 512 Levante Home José Campaña -#> 513 Levante Home Toño -#> 514 Levante Home Rober -#> 515 Levante Home Sergio Postigo -#> 516 Levante Home Coke -#> 517 Levante Home Oier Olazábal -#> 518 Celta Vigo Away Maxi Gómez -#> 519 Celta Vigo Away Dennis Eckert -#> 520 Celta Vigo Away Pione Sisto -#> 521 Celta Vigo Away Okay Yokuşlu -#> 522 Celta Vigo Away Iago Aspas -#> 523 Celta Vigo Away Sofiane Boufal -#> 524 Celta Vigo Away Júnior Alonso -#> 525 Celta Vigo Away Fran Beltrán -#> 526 Celta Vigo Away Stanislav Lobotka -#> 527 Celta Vigo Away Hugo Mallo -#> 528 Celta Vigo Away Néstor Araujo -#> 529 Celta Vigo Away Gustavo Cabral -#> 530 Celta Vigo Away Facundo Roncaglia -#> 531 Celta Vigo Away Sergio Álvarez -#> 532 Athletic Club Home Iñaki Williams -#> 533 Athletic Club Home Iñigo Córdoba -#> 534 Athletic Club Home Ander Iturraspe -#> 535 Athletic Club Home Iker Muniain -#> 536 Athletic Club Home Raúl García -#> 537 Athletic Club Home Markel Susaeta -#> 538 Athletic Club Home Gorka Guruzeta -#> 539 Athletic Club Home Dani García -#> 540 Athletic Club Home Yuri Berchiche -#> 541 Athletic Club Home Peru Nolaskoain -#> 542 Athletic Club Home Yeray Álvarez -#> 543 Athletic Club Home Óscar de Marcos -#> 544 Athletic Club Home Ander Capa -#> 545 Athletic Club Home Unai Simón -#> 546 Huesca Away Samuele Longo -#> 547 Huesca Away Ezequiel Ávila -#> 548 Huesca Away Cucho -#> 549 Huesca Away Moi Gómez -#> 550 Huesca Away David Ferreiro -#> 551 Huesca Away Gonzalo Melero -#> 552 Huesca Away Damián Musto -#> 553 Huesca Away Álex Gallar -#> 554 Huesca Away Serdar Gürler -#> 555 Huesca Away Luisinho -#> 556 Huesca Away Xabier Etxeita -#> 557 Huesca Away Jorge Pulido -#> 558 Huesca Away Jorge Miramón -#> 559 Huesca Away Axel Werner -#> 560 Getafe Home Jaime Mata -#> 561 Getafe Home Jorge Molina -#> 562 Getafe Home Ángel Rodríguez -#> 563 Getafe Home Sergi Guardiola -#> 564 Getafe Home Iván Alejo -#> 565 Getafe Home Amath -#> 566 Getafe Home Nemanja Maksimović -#> 567 Getafe Home Mauro Arambarri -#> 568 Getafe Home Francisco Portillo -#> 569 Getafe Home Vitorino Antunes -#> 570 Getafe Home Bruno González -#> 571 Getafe Home Djené -#> 572 Getafe Home Damián Suárez -#> 573 Getafe Home David Soria -#> 574 Valladolid Away Enes Ünal -#> 575 Valladolid Away Duje Čop -#> 576 Valladolid Away Toni Villa -#> 577 Valladolid Away Míchel -#> 578 Valladolid Away Keko -#> 579 Valladolid Away Daniele Verde -#> 580 Valladolid Away Óscar Plano -#> 581 Valladolid Away Rubén Alcaraz -#> 582 Valladolid Away Anuar -#> 583 Valladolid Away Nacho -#> 584 Valladolid Away Fernando Calero -#> 585 Valladolid Away Kiko Olivas -#> 586 Valladolid Away Javi Moyano -#> 587 Valladolid Away Jordi Masip -#> 588 Villarreal Home Karl Toko Ekambi -#> 589 Villarreal Home Nicola Sansone -#> 590 Villarreal Home Gerard Moreno -#> 591 Villarreal Home Manu Trigueros -#> 592 Villarreal Home Pablo Fornals -#> 593 Villarreal Home Santi Cazorla -#> 594 Villarreal Home Miguel Layún -#> 595 Villarreal Home Santiago Cáseres -#> 596 Villarreal Home Carlos Bacca -#> 597 Villarreal Home Alfonso Pedraza -#> 598 Villarreal Home Víctor Ruiz -#> 599 Villarreal Home Álvaro González -#> 600 Villarreal Home Mario Gaspar -#> 601 Villarreal Home Sergio Asenjo -#> 602 Girona Away Cristhian Stuani -#> 603 Girona Away Borja García -#> 604 Girona Away Patrick Roberts -#> 605 Girona Away Anthony Lozano -#> 606 Girona Away Aleix García -#> 607 Girona Away Aday -#> 608 Girona Away Marc Muniesa -#> 609 Girona Away Álex Granell -#> 610 Girona Away Pere Pons -#> 611 Girona Away Pedro Porro -#> 612 Girona Away Juanpe -#> 613 Girona Away Bernardo Espinosa -#> 614 Girona Away Pedro Alcalá -#> 615 Girona Away Yassine Bounou -#> 616 Eibar Home Marc Cardona -#> 617 Eibar Home Charles -#> 618 Eibar Home Sergi Enrich -#> 619 Eibar Home Pere Milla -#> 620 Eibar Home Papakouli Diop -#> 621 Eibar Home Sergio Álvarez -#> 622 Eibar Home Fabián Orellana -#> 623 Eibar Home Joan Jordán -#> 624 Eibar Home Anaitz Arbilla -#> 625 Eibar Home Pedro Bigas -#> 626 Eibar Home José Ángel -#> 627 Eibar Home Paulo Oliveira -#> 628 Eibar Home Rubén Peña -#> 629 Eibar Home Marko Dmitrović -#> 630 Real Sociedad Away Willian José -#> 631 Real Sociedad Away Jon Bautista -#> 632 Real Sociedad Away Juanmi -#> 633 Real Sociedad Away David Zurutuza -#> 634 Real Sociedad Away Mikel Oyarzabal -#> 635 Real Sociedad Away Igor Zubeldia -#> 636 Real Sociedad Away Asier Illarramendi -#> 637 Real Sociedad Away Martín Merquelanz -#> 638 Real Sociedad Away Luca Sangalli -#> 639 Real Sociedad Away Theo Hernández -#> 640 Real Sociedad Away Héctor Moreno -#> 641 Real Sociedad Away Aritz Elustondo -#> 642 Real Sociedad Away Joseba Zaldúa -#> 643 Real Sociedad Away Gerónimo Rulli -#> 644 Celta Vigo Home Maxi Gómez -#> 645 Celta Vigo Home Pione Sisto -#> 646 Celta Vigo Home Okay Yokuşlu -#> 647 Celta Vigo Home Iago Aspas -#> 648 Celta Vigo Home Sofiane Boufal -#> 649 Celta Vigo Home Júnior Alonso -#> 650 Celta Vigo Home Fran Beltrán -#> 651 Celta Vigo Home Stanislav Lobotka -#> 652 Celta Vigo Home Brais Méndez -#> 653 Celta Vigo Home Hugo Mallo -#> 654 Celta Vigo Home Néstor Araujo -#> 655 Celta Vigo Home Gustavo Cabral -#> 656 Celta Vigo Home Facundo Roncaglia -#> 657 Celta Vigo Home Sergio Álvarez -#> 658 Atlético Madrid Away Antoine Griezmann -#> 659 Atlético Madrid Away Diego Costa -#> 660 Atlético Madrid Away Koke -#> 661 Atlético Madrid Away Thomas Partey -#> 662 Atlético Madrid Away Thomas Lemar -#> 663 Atlético Madrid Away Saúl Ñíguez -#> 664 Atlético Madrid Away Ángel Correa -#> 665 Atlético Madrid Away Nikola Kalinić -#> 666 Atlético Madrid Away Filipe Luís -#> 667 Atlético Madrid Away Diego Godín -#> 668 Atlético Madrid Away José María Giménez -#> 669 Atlético Madrid Away Santiago Arias -#> 670 Atlético Madrid Away Stefan Savić -#> 671 Atlético Madrid Away Jan Oblak -#> 672 Real Madrid Home Karim Benzema -#> 673 Real Madrid Home Marco Asensio -#> 674 Real Madrid Home Dani Ceballos -#> 675 Real Madrid Home Gareth Bale -#> 676 Real Madrid Home Lucas Vázquez -#> 677 Real Madrid Home Toni Kroos -#> 678 Real Madrid Home Casemiro -#> 679 Real Madrid Home Luka Modrić -#> 680 Real Madrid Home Isco -#> 681 Real Madrid Home Marcelo -#> 682 Real Madrid Home Sergio Ramos -#> 683 Real Madrid Home Raphaël Varane -#> 684 Real Madrid Home Dani Carvajal -#> 685 Real Madrid Home Thibaut Courtois -#> 686 Leganés Away Guido Carrillo -#> 687 Leganés Away Michael Santos -#> 688 Leganés Away Diego Rolán -#> 689 Leganés Away Nabil El Zhar -#> 690 Leganés Away Youssef En-Nesyri -#> 691 Leganés Away Gerard Gumbau -#> 692 Leganés Away Rubén Pérez -#> 693 Leganés Away Javier Eraso -#> 694 Leganés Away Mikel Vesga -#> 695 Leganés Away Jonathan Silva -#> 696 Leganés Away Dimitris Siovas -#> 697 Leganés Away Unai Bustinza -#> 698 Leganés Away Juanfran -#> 699 Leganés Away Iván Cuéllar -#> 700 Levante Home Roger Martí -#> 701 Levante Home Emmanuel Boateng -#> 702 Levante Home Raphael Dwamena -#> 703 Levante Home Enis Bardhi -#> 704 Levante Home José Campaña -#> 705 Levante Home Sanjin Prcić -#> 706 Levante Home Jason -#> 707 Levante Home José Luis Morales -#> 708 Levante Home Toño -#> 709 Levante Home Chema -#> 710 Levante Home Sergio Postigo -#> 711 Levante Home Rober -#> 712 Levante Home Coke -#> 713 Levante Home Oier Olazábal -#> 714 Valencia Away Kévin Gameiro -#> 715 Valencia Away Michy Batshuayi -#> 716 Valencia Away Rodrigo -#> 717 Valencia Away Denis Cheryshev -#> 718 Valencia Away Ferrán Torres -#> 719 Valencia Away Daniel Wass -#> 720 Valencia Away Daniel Parejo -#> 721 Valencia Away Carlos Soler -#> 722 Valencia Away Santi Mina -#> 723 Valencia Away José Luis Gayà -#> 724 Valencia Away Mouctar Diakhaby -#> 725 Valencia Away Gabriel Paulista -#> 726 Valencia Away Cristiano Piccini -#> 727 Valencia Away Neto -#> 728 Alavés Home Rubén Sobrino -#> 729 Alavés Home Borja Bastón -#> 730 Alavés Home John Guidetti -#> 731 Alavés Home Jony -#> 732 Alavés Home Adrián Marín -#> 733 Alavés Home Manu García -#> 734 Alavés Home Wakaso -#> 735 Alavés Home Ibai Gómez -#> 736 Alavés Home Ximo Navarro -#> 737 Alavés Home Rubén Duarte -#> 738 Alavés Home Guillermo Maripán -#> 739 Alavés Home Víctor Laguardia -#> 740 Alavés Home Martin Agirregabiria -#> 741 Alavés Home Fernando Pacheco -#> 742 Espanyol Away Borja Iglesias -#> 743 Espanyol Away Sergio García -#> 744 Espanyol Away Léo Baptistão -#> 745 Espanyol Away Sergi Darder -#> 746 Espanyol Away Marc Roca -#> 747 Espanyol Away Pablo Piatti -#> 748 Espanyol Away Esteban Granero -#> 749 Espanyol Away Óscar Melendo -#> 750 Espanyol Away Dídac Vilà -#> 751 Espanyol Away Mario Hermoso -#> 752 Espanyol Away David López -#> 753 Espanyol Away Javi López -#> 754 Espanyol Away Hernán Pérez -#> 755 Espanyol Away Diego López -#> 756 Barcelona Home Luis Suárez -#> 757 Barcelona Home Ousmane Dembélé -#> 758 Barcelona Home Lionel Messi -#> 759 Barcelona Home Philippe Coutinho -#> 760 Barcelona Home Sergio Busquets -#> 761 Barcelona Home Arthur Melo -#> 762 Barcelona Home Ivan Rakitić -#> 763 Barcelona Home Arturo Vidal -#> 764 Barcelona Home Jordi Alba -#> 765 Barcelona Home Samuel Umtiti -#> 766 Barcelona Home Clément Lenglet -#> 767 Barcelona Home Gerard Piqué -#> 768 Barcelona Home Sergi Roberto -#> 769 Barcelona Home Marc-André ter Stegen -#> 770 Huesca Away Cucho -#> 771 Huesca Away Ezequiel Ávila -#> 772 Huesca Away Samuele Longo -#> 773 Huesca Away Serdar Gürler -#> 774 Huesca Away Moi Gómez -#> 775 Huesca Away Gonzalo Melero -#> 776 Huesca Away Damián Musto -#> 777 Huesca Away Álex Gallar -#> 778 Huesca Away Rúben Semedo -#> 779 Huesca Away Luisinho -#> 780 Huesca Away Xabier Etxeita -#> 781 Huesca Away Jorge Pulido -#> 782 Huesca Away Jorge Miramón -#> 783 Huesca Away Axel Werner -#> 784 Real Betis Home Loren Morón -#> 785 Real Betis Home Antonio Sanabria -#> 786 Real Betis Home Takashi Inui -#> 787 Real Betis Home Sergio Canales -#> 788 Real Betis Home William Carvalho -#> 789 Real Betis Home Joaquín -#> 790 Real Betis Home Andrés Guardado -#> 791 Real Betis Home Junior Firpo -#> 792 Real Betis Home Cristian Tello -#> 793 Real Betis Home Zouhair Feddal -#> 794 Real Betis Home Marc Bartra -#> 795 Real Betis Home Sidnei -#> 796 Real Betis Home Aïssa Mandi -#> 797 Real Betis Home Pau López -#> 798 Sevilla Away André Silva -#> 799 Sevilla Away Franco Vázquez -#> 800 Sevilla Away Maxime Gonalons -#> 801 Sevilla Away Pablo Sarabia -#> 802 Sevilla Away Roque Mesa -#> 803 Sevilla Away Éver Banega -#> 804 Sevilla Away Guilherme Arana -#> 805 Sevilla Away Aleix Vidal -#> 806 Sevilla Away Jesús Navas -#> 807 Sevilla Away Sergi Gómez -#> 808 Sevilla Away Simon Kjær -#> 809 Sevilla Away Quincy Promes -#> 810 Sevilla Away Gabriel Mercado -#> 811 Sevilla Away Tomáš Vaclík -#> 812 Huesca Home Samuele Longo -#> 813 Huesca Home Cucho -#> 814 Huesca Home Ezequiel Ávila -#> 815 Huesca Home Moi Gómez -#> 816 Huesca Home David Ferreiro -#> 817 Huesca Home Gonzalo Melero -#> 818 Huesca Home Damián Musto -#> 819 Huesca Home Serdar Gürler -#> 820 Huesca Home Álex Gallar -#> 821 Huesca Home Luisinho -#> 822 Huesca Home Rúben Semedo -#> 823 Huesca Home Jorge Pulido -#> 824 Huesca Home Jorge Miramón -#> 825 Huesca Home Axel Werner -#> 826 Rayo Vallecano Away Raúl de Tomás -#> 827 Rayo Vallecano Away Álex Alegría -#> 828 Rayo Vallecano Away Álvaro García -#> 829 Rayo Vallecano Away Adri Embarba -#> 830 Rayo Vallecano Away Gaël Kakuta -#> 831 Rayo Vallecano Away Bebé -#> 832 Rayo Vallecano Away Óscar Trejo -#> 833 Rayo Vallecano Away Giannelli Imbula -#> 834 Rayo Vallecano Away Gorka Elustondo -#> 835 Rayo Vallecano Away Álex Moreno -#> 836 Rayo Vallecano Away Jordi Amat -#> 837 Rayo Vallecano Away Abdoulaye Ba -#> 838 Rayo Vallecano Away Luis Advíncula -#> 839 Rayo Vallecano Away Alberto García -#> 840 Atlético Madrid Home Diego Costa -#> 841 Atlético Madrid Home Thomas Lemar -#> 842 Atlético Madrid Home Ángel Correa -#> 843 Atlético Madrid Home Saúl Ñíguez -#> 844 Atlético Madrid Home Koke -#> 845 Atlético Madrid Home Antoine Griezmann -#> 846 Atlético Madrid Home Rodri -#> 847 Atlético Madrid Home Borja Garcés -#> 848 Atlético Madrid Home Filipe Luís -#> 849 Atlético Madrid Home Diego Godín -#> 850 Atlético Madrid Home José María Giménez -#> 851 Atlético Madrid Home Juanfran -#> 852 Atlético Madrid Home Jan Oblak -#> 853 Eibar Away Charles -#> 854 Eibar Away Sergi Enrich -#> 855 Eibar Away Pere Milla -#> 856 Eibar Away Gonzalo Escalante -#> 857 Eibar Away Pablo de Blasis -#> 858 Eibar Away Joan Jordán -#> 859 Eibar Away Sergio Álvarez -#> 860 Eibar Away Papakouli Diop -#> 861 Eibar Away Marc Cardona -#> 862 Eibar Away José Ángel -#> 863 Eibar Away Anaitz Arbilla -#> 864 Eibar Away Paulo Oliveira -#> 865 Eibar Away Rubén Peña -#> 866 Eibar Away Marko Dmitrović -#> 867 Real Sociedad Home Juanmi -#> 868 Real Sociedad Home Mikel Oyarzabal -#> 869 Real Sociedad Home Rubén Pardo -#> 870 Real Sociedad Home Luca Sangalli -#> 871 Real Sociedad Home David Zurutuza -#> 872 Real Sociedad Home Jon Bautista -#> 873 Real Sociedad Home Asier Illarramendi -#> 874 Real Sociedad Home Mikel Merino -#> 875 Real Sociedad Home Igor Zubeldia -#> 876 Real Sociedad Home Theo Hernández -#> 877 Real Sociedad Home Héctor Moreno -#> 878 Real Sociedad Home Aritz Elustondo -#> 879 Real Sociedad Home Joseba Zaldúa -#> 880 Real Sociedad Home Gerónimo Rulli -#> 881 Barcelona Away Luis Suárez -#> 882 Barcelona Away Ousmane Dembélé -#> 883 Barcelona Away Arturo Vidal -#> 884 Barcelona Away Lionel Messi -#> 885 Barcelona Away Rafinha -#> 886 Barcelona Away Sergio Busquets -#> 887 Barcelona Away Ivan Rakitić -#> 888 Barcelona Away Sergi Roberto -#> 889 Barcelona Away Jordi Alba -#> 890 Barcelona Away Samuel Umtiti -#> 891 Barcelona Away Gerard Piqué -#> 892 Barcelona Away Nélson Semedo -#> 893 Barcelona Away Philippe Coutinho -#> 894 Barcelona Away Marc-André ter Stegen -#> 895 Valencia Home Rodrigo -#> 896 Valencia Home Kévin Gameiro -#> 897 Valencia Home Denis Cheryshev -#> 898 Valencia Home Michy Batshuayi -#> 899 Valencia Home Geoffrey Kondogbia -#> 900 Valencia Home Daniel Wass -#> 901 Valencia Home Daniel Parejo -#> 902 Valencia Home Ferrán Torres -#> 903 Valencia Home Gonçalo Guedes -#> 904 Valencia Home José Luis Gayà -#> 905 Valencia Home Mouctar Diakhaby -#> 906 Valencia Home Gabriel Paulista -#> 907 Valencia Home Cristiano Piccini -#> 908 Valencia Home Jaume Doménech -#> 909 Real Betis Away Antonio Sanabria -#> 910 Real Betis Away Sergio León -#> 911 Real Betis Away Takashi Inui -#> 912 Real Betis Away Joaquín -#> 913 Real Betis Away Ryad Boudebouz -#> 914 Real Betis Away Giovani Lo Celso -#> 915 Real Betis Away Andrés Guardado -#> 916 Real Betis Away Sergio Canales -#> 917 Real Betis Away Junior Firpo -#> 918 Real Betis Away Francis Guerrero -#> 919 Real Betis Away Sidnei -#> 920 Real Betis Away Marc Bartra -#> 921 Real Betis Away Aïssa Mandi -#> 922 Real Betis Away Pau López -#> 923 Athletic Club Home Iñaki Williams -#> 924 Athletic Club Home Mikel San José -#> 925 Athletic Club Home Iker Muniain -#> 926 Athletic Club Home Ander Capa -#> 927 Athletic Club Home Markel Susaeta -#> 928 Athletic Club Home Raúl García -#> 929 Athletic Club Home Beñat Etxebarria -#> 930 Athletic Club Home Mikel Rico -#> 931 Athletic Club Home Dani García -#> 932 Athletic Club Home Yuri Berchiche -#> 933 Athletic Club Home Iñigo Martínez -#> 934 Athletic Club Home Yeray Álvarez -#> 935 Athletic Club Home Óscar de Marcos -#> 936 Athletic Club Home Unai Simón -#> 937 Real Madrid Away Karim Benzema -#> 938 Real Madrid Away Marco Asensio -#> 939 Real Madrid Away Gareth Bale -#> 940 Real Madrid Away Lucas Vázquez -#> 941 Real Madrid Away Dani Ceballos -#> 942 Real Madrid Away Casemiro -#> 943 Real Madrid Away Toni Kroos -#> 944 Real Madrid Away Luka Modrić -#> 945 Real Madrid Away Isco -#> 946 Real Madrid Away Marcelo -#> 947 Real Madrid Away Sergio Ramos -#> 948 Real Madrid Away Raphaël Varane -#> 949 Real Madrid Away Dani Carvajal -#> 950 Real Madrid Away Thibaut Courtois -#> 951 Leganés Home Guido Carrillo -#> 952 Leganés Home Diego Rolán -#> 953 Leganés Home Óscar Rodríguez Arnaiz -#> 954 Leganés Home Nabil El Zhar -#> 955 Leganés Home Javier Eraso -#> 956 Leganés Home Michael Santos -#> 957 Leganés Home Rubén Pérez -#> 958 Leganés Home Gerard Gumbau -#> 959 Leganés Home Jonathan Silva -#> 960 Leganés Home Dimitris Siovas -#> 961 Leganés Home Unai Bustinza -#> 962 Leganés Home Allan Nyom -#> 963 Leganés Home Juanfran -#> 964 Leganés Home Iván Cuéllar -#> 965 Villarreal Away Gerard Moreno -#> 966 Villarreal Away Karl Toko Ekambi -#> 967 Villarreal Away Carlos Bacca -#> 968 Villarreal Away Miguel Layún -#> 969 Villarreal Away Manu Morlanes -#> 970 Villarreal Away Manuel Iturra -#> 971 Villarreal Away Manu Trigueros -#> 972 Villarreal Away Dani Raba -#> 973 Villarreal Away Pablo Fornals -#> 974 Villarreal Away Jaume Costa -#> 975 Villarreal Away Víctor Ruiz -#> 976 Villarreal Away Álvaro González -#> 977 Villarreal Away Mario Gaspar -#> 978 Villarreal Away Sergio Asenjo -#> 979 Espanyol Home Borja Iglesias -#> 980 Espanyol Home Hernán Pérez -#> 981 Espanyol Home Sergio García -#> 982 Espanyol Home Pablo Piatti -#> 983 Espanyol Home Léo Baptistão -#> 984 Espanyol Home Esteban Granero -#> 985 Espanyol Home Marc Roca -#> 986 Espanyol Home Sergi Darder -#> 987 Espanyol Home Víctor Sánchez -#> 988 Espanyol Home Dídac Vilà -#> 989 Espanyol Home Mario Hermoso -#> 990 Espanyol Home David López -#> 991 Espanyol Home Javi López -#> 992 Espanyol Home Diego López -#> 993 Levante Away Emmanuel Boateng -#> 994 Levante Away Borja Mayoral -#> 995 Levante Away Roger Martí -#> 996 Levante Away Jason -#> 997 Levante Away Rubén Rochina -#> 998 Levante Away Enis Bardhi -#> 999 Levante Away José Campaña -#> 1000 Levante Away José Luis Morales -#> 1001 Levante Away Antonio Luna -#> 1002 Levante Away Chema -#> 1003 Levante Away Sergio Postigo -#> 1004 Levante Away Rober -#> 1005 Levante Away Pedro López Muñoz -#> 1006 Levante Away Oier Olazábal -#> 1007 Valladolid Home Enes Ünal -#> 1008 Valladolid Home Duje Čop -#> 1009 Valladolid Home Toni Villa -#> 1010 Valladolid Home Keko -#> 1011 Valladolid Home Ivi -#> 1012 Valladolid Home Óscar Plano -#> 1013 Valladolid Home Borja Fernández -#> 1014 Valladolid Home Anuar -#> 1015 Valladolid Home Míchel -#> 1016 Valladolid Home Nacho -#> 1017 Valladolid Home Fernando Calero -#> 1018 Valladolid Home Kiko Olivas -#> 1019 Valladolid Home Javi Moyano -#> 1020 Valladolid Home Jordi Masip -#> 1021 Alavés Away Jonathan Calleri -#> 1022 Alavés Away Burgui -#> 1023 Alavés Away John Guidetti -#> 1024 Alavés Away Patrick Twumasi -#> 1025 Alavés Away Jony -#> 1026 Alavés Away Wakaso -#> 1027 Alavés Away Darko Brašanac -#> 1028 Alavés Away Manu García -#> 1029 Alavés Away Ibai Gómez -#> 1030 Alavés Away Rubén Duarte -#> 1031 Alavés Away Ximo Navarro -#> 1032 Alavés Away Víctor Laguardia -#> 1033 Alavés Away Martin Agirregabiria -#> 1034 Alavés Away Fernando Pacheco -#> 1035 Sevilla Home André Silva -#> 1036 Sevilla Home Nolito -#> 1037 Sevilla Home Franco Vázquez -#> 1038 Sevilla Home Pablo Sarabia -#> 1039 Sevilla Home Aleix Vidal -#> 1040 Sevilla Home Quincy Promes -#> 1041 Sevilla Home Éver Banega -#> 1042 Sevilla Home Roque Mesa -#> 1043 Sevilla Home Wissam Ben Yedder -#> 1044 Sevilla Home Jesús Navas -#> 1045 Sevilla Home Sergi Gómez -#> 1046 Sevilla Home Simon Kjær -#> 1047 Sevilla Home Joris Gnagnon -#> 1048 Sevilla Home Tomáš Vaclík -#> 1049 Getafe Away Ángel Rodríguez -#> 1050 Getafe Away Gaku Shibasaki -#> 1051 Getafe Away Jorge Molina -#> 1052 Getafe Away Amath -#> 1053 Getafe Away Dimitri Foulquier -#> 1054 Getafe Away Djené -#> 1055 Getafe Away Sebastián Cristóforo -#> 1056 Getafe Away Nemanja Maksimović -#> 1057 Getafe Away Francisco Portillo -#> 1058 Getafe Away Vitorino Antunes -#> 1059 Getafe Away Leandro Cabrera -#> 1060 Getafe Away Bruno González -#> 1061 Getafe Away Damián Suárez -#> 1062 Getafe Away David Soria -#> 1063 Girona Home Cristhian Stuani -#> 1064 Girona Home Borja García -#> 1065 Girona Home Patrick Roberts -#> 1066 Girona Home Portu -#> 1067 Girona Home Aleix García -#> 1068 Girona Home Douglas Luiz -#> 1069 Girona Home Álex Granell -#> 1070 Girona Home Aday -#> 1071 Girona Home Marc Muniesa -#> 1072 Girona Home Pedro Porro -#> 1073 Girona Home Juanpe -#> 1074 Girona Home Bernardo Espinosa -#> 1075 Girona Home Pedro Alcalá -#> 1076 Girona Home Yassine Bounou -#> 1077 Celta Vigo Away Maxi Gómez -#> 1078 Celta Vigo Away Pione Sisto -#> 1079 Celta Vigo Away Dennis Eckert -#> 1080 Celta Vigo Away Iago Aspas -#> 1081 Celta Vigo Away Stanislav Lobotka -#> 1082 Celta Vigo Away Fran Beltrán -#> 1083 Celta Vigo Away Brais Méndez -#> 1084 Celta Vigo Away Júnior Alonso -#> 1085 Celta Vigo Away Sofiane Boufal -#> 1086 Celta Vigo Away Hugo Mallo -#> 1087 Celta Vigo Away Néstor Araujo -#> 1088 Celta Vigo Away Gustavo Cabral -#> 1089 Celta Vigo Away Facundo Roncaglia -#> 1090 Celta Vigo Away Sergio Álvarez -#> 1091 Huesca Home Cucho -#> 1092 Huesca Home David Ferreiro -#> 1093 Huesca Home Álex Gallar -#> 1094 Huesca Home Moi Gómez -#> 1095 Huesca Home Samuele Longo -#> 1096 Huesca Home Gonzalo Melero -#> 1097 Huesca Home Damián Musto -#> 1098 Huesca Home Luisinho -#> 1099 Huesca Home Ezequiel Ávila -#> 1100 Huesca Home Rúben Semedo -#> 1101 Huesca Home Jorge Pulido -#> 1102 Huesca Home Serdar Gürler -#> 1103 Huesca Home Jorge Miramón -#> 1104 Huesca Home Axel Werner -#> 1105 Real Sociedad Away Jon Bautista -#> 1106 Real Sociedad Away Raúl Navas -#> 1107 Real Sociedad Away Juanmi -#> 1108 Real Sociedad Away Mikel Oyarzabal -#> 1109 Real Sociedad Away Kévin Rodrigues -#> 1110 Real Sociedad Away Rubén Pardo -#> 1111 Real Sociedad Away David Zurutuza -#> 1112 Real Sociedad Away Igor Zubeldia -#> 1113 Real Sociedad Away Mikel Merino -#> 1114 Real Sociedad Away Theo Hernández -#> 1115 Real Sociedad Away Héctor Moreno -#> 1116 Real Sociedad Away Aritz Elustondo -#> 1117 Real Sociedad Away Joseba Zaldúa -#> 1118 Real Sociedad Away Gerónimo Rulli -#> 1119 Rayo Vallecano Home Raúl de Tomás -#> 1120 Rayo Vallecano Home Álvaro García -#> 1121 Rayo Vallecano Home Adri Embarba -#> 1122 Rayo Vallecano Home Giannelli Imbula -#> 1123 Rayo Vallecano Home Óscar Trejo -#> 1124 Rayo Vallecano Home Álex Alegría -#> 1125 Rayo Vallecano Home Gaël Kakuta -#> 1126 Rayo Vallecano Home Gorka Elustondo -#> 1127 Rayo Vallecano Home Emiliano Velázquez -#> 1128 Rayo Vallecano Home Álex Moreno -#> 1129 Rayo Vallecano Home Jordi Amat -#> 1130 Rayo Vallecano Home Abdoulaye Ba -#> 1131 Rayo Vallecano Home Luis Advíncula -#> 1132 Rayo Vallecano Home Alberto García -#> 1133 Alavés Away John Guidetti -#> 1134 Alavés Away Rubén Sobrino -#> 1135 Alavés Away Jonathan Calleri -#> 1136 Alavés Away Jony -#> 1137 Alavés Away Burgui -#> 1138 Alavés Away Wakaso -#> 1139 Alavés Away Darko Brašanac -#> 1140 Alavés Away Ibai Gómez -#> 1141 Alavés Away Rubén Duarte -#> 1142 Alavés Away Martin Agirregabiria -#> 1143 Alavés Away Guillermo Maripán -#> 1144 Alavés Away Víctor Laguardia -#> 1145 Alavés Away Ximo Navarro -#> 1146 Alavés Away Fernando Pacheco -#> 1147 Eibar Home Kiké -#> 1148 Eibar Home Joan Jordán -#> 1149 Eibar Home Sergi Enrich -#> 1150 Eibar Home Pablo de Blasis -#> 1151 Eibar Home Papakouli Diop -#> 1152 Eibar Home Gonzalo Escalante -#> 1153 Eibar Home Pablo Hervías -#> 1154 Eibar Home Fabián Orellana -#> 1155 Eibar Home José Ángel -#> 1156 Eibar Home Anaitz Arbilla -#> 1157 Eibar Home Iván Ramis -#> 1158 Eibar Home Paulo Oliveira -#> 1159 Eibar Home Rubén Peña -#> 1160 Eibar Home Marko Dmitrović -#> 1161 Leganés Away Guido Carrillo -#> 1162 Leganés Away Michael Santos -#> 1163 Leganés Away Youssef En-Nesyri -#> 1164 Leganés Away Diego Rolán -#> 1165 Leganés Away Óscar Rodríguez Arnaiz -#> 1166 Leganés Away Gerard Gumbau -#> 1167 Leganés Away Rubén Pérez -#> 1168 Leganés Away Juanfran -#> 1169 Leganés Away Nabil El Zhar -#> 1170 Leganés Away Raúl García -#> 1171 Leganés Away Dimitris Siovas -#> 1172 Leganés Away Unai Bustinza -#> 1173 Leganés Away Allan Nyom -#> 1174 Leganés Away Iván Cuéllar -#> 1175 Celta Vigo Home Maxi Gómez -#> 1176 Celta Vigo Home Iago Aspas -#> 1177 Celta Vigo Home Sofiane Boufal -#> 1178 Celta Vigo Home Pione Sisto -#> 1179 Celta Vigo Home Stanislav Lobotka -#> 1180 Celta Vigo Home Okay Yokuşlu -#> 1181 Celta Vigo Home Brais Méndez -#> 1182 Celta Vigo Home Fran Beltrán -#> 1183 Celta Vigo Home David Juncà -#> 1184 Celta Vigo Home Júnior Alonso -#> 1185 Celta Vigo Home Néstor Araujo -#> 1186 Celta Vigo Home David Costas -#> 1187 Celta Vigo Home Facundo Roncaglia -#> 1188 Celta Vigo Home Sergio Álvarez -#> 1189 Valladolid Away Duje Čop -#> 1190 Valladolid Away Óscar Plano -#> 1191 Valladolid Away Rubén Alcaraz -#> 1192 Valladolid Away Míchel -#> 1193 Valladolid Away Keko -#> 1194 Valladolid Away Toni Villa -#> 1195 Valladolid Away Borja Fernández -#> 1196 Valladolid Away Enes Ünal -#> 1197 Valladolid Away Nacho -#> 1198 Valladolid Away Fernando Calero -#> 1199 Valladolid Away Kiko Olivas -#> 1200 Valladolid Away Javi Moyano -#> 1201 Valladolid Away Leonardo Suárez -#> 1202 Valladolid Away Jordi Masip -#> 1203 Getafe Home Jorge Molina -#> 1204 Getafe Home Sergi Guardiola -#> 1205 Getafe Home Ángel Rodríguez -#> 1206 Getafe Home Amath -#> 1207 Getafe Home Iván Alejo -#> 1208 Getafe Home Djené -#> 1209 Getafe Home Sebastián Cristóforo -#> 1210 Getafe Home Mauro Arambarri -#> 1211 Getafe Home Francisco Portillo -#> 1212 Getafe Home Vitorino Antunes -#> 1213 Getafe Home Leandro Cabrera -#> 1214 Getafe Home Bruno González -#> 1215 Getafe Home Damián Suárez -#> 1216 Getafe Home David Soria -#> 1217 Atlético Madrid Away Antoine Griezmann -#> 1218 Atlético Madrid Away Diego Costa -#> 1219 Atlético Madrid Away Koke -#> 1220 Atlético Madrid Away Saúl Ñíguez -#> 1221 Atlético Madrid Away Rodri -#> 1222 Atlético Madrid Away Thomas Partey -#> 1223 Atlético Madrid Away Thomas Lemar -#> 1224 Atlético Madrid Away Ángel Correa -#> 1225 Atlético Madrid Away Filipe Luís -#> 1226 Atlético Madrid Away Diego Godín -#> 1227 Atlético Madrid Away Lucas Hernández -#> 1228 Atlético Madrid Away José María Giménez -#> 1229 Atlético Madrid Away Juanfran -#> 1230 Atlético Madrid Away Jan Oblak -#> 1231 Real Madrid Home Karim Benzema -#> 1232 Real Madrid Home Mariano -#> 1233 Real Madrid Home Marco Asensio -#> 1234 Real Madrid Home Isco -#> 1235 Real Madrid Home Marcos Llorente -#> 1236 Real Madrid Home Dani Ceballos -#> 1237 Real Madrid Home Lucas Vázquez -#> 1238 Real Madrid Home Casemiro -#> 1239 Real Madrid Home Luka Modrić -#> 1240 Real Madrid Home Nacho -#> 1241 Real Madrid Home Sergio Ramos -#> 1242 Real Madrid Home Raphaël Varane -#> 1243 Real Madrid Home Álvaro Odriozola -#> 1244 Real Madrid Home Thibaut Courtois -#> 1245 Espanyol Away Borja Iglesias -#> 1246 Espanyol Away Pablo Piatti -#> 1247 Espanyol Away Léo Baptistão -#> 1248 Espanyol Away Esteban Granero -#> 1249 Espanyol Away Sergi Darder -#> 1250 Espanyol Away Víctor Sánchez -#> 1251 Espanyol Away Hernán Pérez -#> 1252 Espanyol Away Sergio García -#> 1253 Espanyol Away Marc Roca -#> 1254 Espanyol Away Dídac Vilà -#> 1255 Espanyol Away Mario Hermoso -#> 1256 Espanyol Away Naldo -#> 1257 Espanyol Away Javi López -#> 1258 Espanyol Away Diego López -#> 1259 Levante Home Borja Mayoral -#> 1260 Levante Home Roger Martí -#> 1261 Levante Home Emmanuel Boateng -#> 1262 Levante Home José Luis Morales -#> 1263 Levante Home José Campaña -#> 1264 Levante Home Moses Simon -#> 1265 Levante Home Sanjin Prcić -#> 1266 Levante Home Nikola Vukčević -#> 1267 Levante Home Enis Bardhi -#> 1268 Levante Home Antonio Luna -#> 1269 Levante Home Rober -#> 1270 Levante Home Sergio Postigo -#> 1271 Levante Home Pedro López Muñoz -#> 1272 Levante Home Oier Olazábal -#> 1273 Sevilla Away André Silva -#> 1274 Sevilla Away Wissam Ben Yedder -#> 1275 Sevilla Away Quincy Promes -#> 1276 Sevilla Away Pablo Sarabia -#> 1277 Sevilla Away Luis Muriel -#> 1278 Sevilla Away Éver Banega -#> 1279 Sevilla Away Roque Mesa -#> 1280 Sevilla Away Franco Vázquez -#> 1281 Sevilla Away Aleix Vidal -#> 1282 Sevilla Away Jesús Navas -#> 1283 Sevilla Away Daniel Carriço -#> 1284 Sevilla Away Simon Kjær -#> 1285 Sevilla Away Sergi Gómez -#> 1286 Sevilla Away Tomáš Vaclík -#> 1287 Villarreal Home Carlos Bacca -#> 1288 Villarreal Home Karl Toko Ekambi -#> 1289 Villarreal Home Gerard Moreno -#> 1290 Villarreal Home Miguel Layún -#> 1291 Villarreal Home Ramiro Funes Mori -#> 1292 Villarreal Home Manu Trigueros -#> 1293 Villarreal Home Pablo Fornals -#> 1294 Villarreal Home Alfonso Pedraza -#> 1295 Villarreal Home Jaume Costa -#> 1296 Villarreal Home Santi Cazorla -#> 1297 Villarreal Home Víctor Ruiz -#> 1298 Villarreal Home Álvaro González -#> 1299 Villarreal Home Mario Gaspar -#> 1300 Villarreal Home Sergio Asenjo -#> 1301 Valencia Away Kévin Gameiro -#> 1302 Valencia Away Francis Coquelin -#> 1303 Valencia Away Santi Mina -#> 1304 Valencia Away Michy Batshuayi -#> 1305 Valencia Away Denis Cheryshev -#> 1306 Valencia Away Daniel Parejo -#> 1307 Valencia Away Carlos Soler -#> 1308 Valencia Away Ferrán Torres -#> 1309 Valencia Away Gonçalo Guedes -#> 1310 Valencia Away José Luis Gayà -#> 1311 Valencia Away Mouctar Diakhaby -#> 1312 Valencia Away Gabriel Paulista -#> 1313 Valencia Away Cristiano Piccini -#> 1314 Valencia Away Neto -#> 1315 Real Betis Home Antonio Sanabria -#> 1316 Real Betis Home Joaquín -#> 1317 Real Betis Home Sergio Canales -#> 1318 Real Betis Home Andrés Guardado -#> 1319 Real Betis Home Giovani Lo Celso -#> 1320 Real Betis Home Loren Morón -#> 1321 Real Betis Home Junior Firpo -#> 1322 Real Betis Home Cristian Tello -#> 1323 Real Betis Home Francis Guerrero -#> 1324 Real Betis Home Takashi Inui -#> 1325 Real Betis Home Sidnei -#> 1326 Real Betis Home Marc Bartra -#> 1327 Real Betis Home Aïssa Mandi -#> 1328 Real Betis Home Pau López -#> 1329 Athletic Club Away Iñaki Williams -#> 1330 Athletic Club Away Iker Muniain -#> 1331 Athletic Club Away Yuri Berchiche -#> 1332 Athletic Club Away Markel Susaeta -#> 1333 Athletic Club Away Raúl García -#> 1334 Athletic Club Away Ander Capa -#> 1335 Athletic Club Away Dani García -#> 1336 Athletic Club Away Beñat Etxebarria -#> 1337 Athletic Club Away Mikel San José -#> 1338 Athletic Club Away Mikel Balenziaga -#> 1339 Athletic Club Away Iñigo Martínez -#> 1340 Athletic Club Away Yeray Álvarez -#> 1341 Athletic Club Away Óscar de Marcos -#> 1342 Athletic Club Away Unai Simón -#> 1343 Barcelona Home Luis Suárez -#> 1344 Barcelona Home Ousmane Dembélé -#> 1345 Barcelona Home Samuel Umtiti -#> 1346 Barcelona Home Lionel Messi -#> 1347 Barcelona Home Arthur Melo -#> 1348 Barcelona Home Philippe Coutinho -#> 1349 Barcelona Home Sergio Busquets -#> 1350 Barcelona Home Arturo Vidal -#> 1351 Barcelona Home Ivan Rakitić -#> 1352 Barcelona Home Jordi Alba -#> 1353 Barcelona Home Clément Lenglet -#> 1354 Barcelona Home Gerard Piqué -#> 1355 Barcelona Home Nélson Semedo -#> 1356 Barcelona Home Marc-André ter Stegen -#> 1357 Girona Away Cristhian Stuani -#> 1358 Girona Away Portu -#> 1359 Girona Away Seydou Doumbia -#> 1360 Girona Away Aleix García -#> 1361 Girona Away Borja García -#> 1362 Girona Away Pere Pons -#> 1363 Girona Away Álex Granell -#> 1364 Girona Away Douglas Luiz -#> 1365 Girona Away Marc Muniesa -#> 1366 Girona Away Juanpe -#> 1367 Girona Away Bernardo Espinosa -#> 1368 Girona Away Pedro Alcalá -#> 1369 Girona Away Aday -#> 1370 Girona Away Yassine Bounou -#> 1371 Espanyol Home Sergio García -#> 1372 Espanyol Home Borja Iglesias -#> 1373 Espanyol Home Pablo Piatti -#> 1374 Espanyol Home Léo Baptistão -#> 1375 Espanyol Home Hernán Pérez -#> 1376 Espanyol Home Sergi Darder -#> 1377 Espanyol Home Marc Roca -#> 1378 Espanyol Home Óscar Melendo -#> 1379 Espanyol Home Víctor Sánchez -#> 1380 Espanyol Home Dídac Vilà -#> 1381 Espanyol Home Mario Hermoso -#> 1382 Espanyol Home Óscar Duarte -#> 1383 Espanyol Home Roberto Rosales -#> 1384 Espanyol Home Diego López -#> 1385 Eibar Away Marc Cardona -#> 1386 Eibar Away Charles -#> 1387 Eibar Away Pere Milla -#> 1388 Eibar Away Gonzalo Escalante -#> 1389 Eibar Away Pablo de Blasis -#> 1390 Eibar Away Fabián Orellana -#> 1391 Eibar Away Joan Jordán -#> 1392 Eibar Away Sergio Álvarez -#> 1393 Eibar Away Sergi Enrich -#> 1394 Eibar Away Marc Cucurella -#> 1395 Eibar Away Pedro Bigas -#> 1396 Eibar Away Paulo Oliveira -#> 1397 Eibar Away Anaitz Arbilla -#> 1398 Eibar Away Marko Dmitrović -#> 1399 Real Sociedad Home Jon Bautista -#> 1400 Real Sociedad Home Mikel Oyarzabal -#> 1401 Real Sociedad Home Luca Sangalli -#> 1402 Real Sociedad Home David Zurutuza -#> 1403 Real Sociedad Home Mikel Merino -#> 1404 Real Sociedad Home Igor Zubeldia -#> 1405 Real Sociedad Home Asier Illarramendi -#> 1406 Real Sociedad Home Rubén Pardo -#> 1407 Real Sociedad Home Willian José -#> 1408 Real Sociedad Home Kévin Rodrigues -#> 1409 Real Sociedad Home Héctor Moreno -#> 1410 Real Sociedad Home Aritz Elustondo -#> 1411 Real Sociedad Home Joseba Zaldúa -#> 1412 Real Sociedad Home Gerónimo Rulli -#> 1413 Rayo Vallecano Away Raúl de Tomás -#> 1414 Rayo Vallecano Away Álex Alegría -#> 1415 Rayo Vallecano Away Bebé -#> 1416 Rayo Vallecano Away Adri Embarba -#> 1417 Rayo Vallecano Away Óscar Trejo -#> 1418 Rayo Vallecano Away Álvaro Medrán -#> 1419 Rayo Vallecano Away Giannelli Imbula -#> 1420 Rayo Vallecano Away Gaël Kakuta -#> 1421 Rayo Vallecano Away Santi Comesaña -#> 1422 Rayo Vallecano Away Álex Moreno -#> 1423 Rayo Vallecano Away Jordi Amat -#> 1424 Rayo Vallecano Away Álex Gálvez -#> 1425 Rayo Vallecano Away Luis Advíncula -#> 1426 Rayo Vallecano Away Alberto García -#> 1427 Atlético Madrid Home Antoine Griezmann -#> 1428 Atlético Madrid Home Nikola Kalinić -#> 1429 Atlético Madrid Home Diego Costa -#> 1430 Atlético Madrid Home Gelson Martins -#> 1431 Atlético Madrid Home Thomas Lemar -#> 1432 Atlético Madrid Home Koke -#> 1433 Atlético Madrid Home Thomas Partey -#> 1434 Atlético Madrid Home Ángel Correa -#> 1435 Atlético Madrid Home Filipe Luís -#> 1436 Atlético Madrid Home Diego Godín -#> 1437 Atlético Madrid Home José María Giménez -#> 1438 Atlético Madrid Home Lucas Hernández -#> 1439 Atlético Madrid Home Carlos Isaac -#> 1440 Atlético Madrid Home Jan Oblak -#> 1441 Huesca Away Samuele Longo -#> 1442 Huesca Away Ezequiel Ávila -#> 1443 Huesca Away Cucho -#> 1444 Huesca Away Juan Aguilera -#> 1445 Huesca Away David Ferreiro -#> 1446 Huesca Away Damián Musto -#> 1447 Huesca Away Gonzalo Melero -#> 1448 Huesca Away Álex Gallar -#> 1449 Huesca Away Luisinho -#> 1450 Huesca Away Carlos Akapo -#> 1451 Huesca Away Rúben Semedo -#> 1452 Huesca Away Xabier Etxeita -#> 1453 Huesca Away Jorge Miramón -#> 1454 Huesca Away Axel Werner -#> 1455 Leganés Home Youssef En-Nesyri -#> 1456 Leganés Home Óscar Rodríguez Arnaiz -#> 1457 Leganés Home Gerard Gumbau -#> 1458 Leganés Home Rubén Pérez -#> 1459 Leganés Home Mikel Vesga -#> 1460 Leganés Home Sabin Merino -#> 1461 Leganés Home Nabil El Zhar -#> 1462 Leganés Home Allan Nyom -#> 1463 Leganés Home Jonathan Silva -#> 1464 Leganés Home Raúl García -#> 1465 Leganés Home Unai Bustinza -#> 1466 Leganés Home Rodrigo Tarín -#> 1467 Leganés Home Juanfran -#> 1468 Leganés Home Iván Cuéllar -#> 1469 Barcelona Away Munir El Haddadi -#> 1470 Barcelona Away Luis Suárez -#> 1471 Barcelona Away Ousmane Dembélé -#> 1472 Barcelona Away Malcom -#> 1473 Barcelona Away Lionel Messi -#> 1474 Barcelona Away Philippe Coutinho -#> 1475 Barcelona Away Sergio Busquets -#> 1476 Barcelona Away Ivan Rakitić -#> 1477 Barcelona Away Thomas Vermaelen -#> 1478 Barcelona Away Jordi Alba -#> 1479 Barcelona Away Samuel Umtiti -#> 1480 Barcelona Away Gerard Piqué -#> 1481 Barcelona Away Sergi Roberto -#> 1482 Barcelona Away Marc-André ter Stegen -#> 1483 Athletic Club Home Iñaki Williams -#> 1484 Athletic Club Home Iker Muniain -#> 1485 Athletic Club Home Ander Capa -#> 1486 Athletic Club Home Raúl García -#> 1487 Athletic Club Home Iñigo Córdoba -#> 1488 Athletic Club Home Ander Iturraspe -#> 1489 Athletic Club Home Unai López -#> 1490 Athletic Club Home Beñat Etxebarria -#> 1491 Athletic Club Home Yuri Berchiche -#> 1492 Athletic Club Home Iñigo Martínez -#> 1493 Athletic Club Home Unai Núñez -#> 1494 Athletic Club Home Óscar de Marcos -#> 1495 Athletic Club Home Gorka Guruzeta -#> 1496 Athletic Club Home Unai Simón -#> 1497 Villarreal Away Carlos Bacca -#> 1498 Villarreal Away Karl Toko Ekambi -#> 1499 Villarreal Away Gerard Moreno -#> 1500 Villarreal Away Alfonso Pedraza -#> 1501 Villarreal Away Miguel Layún -#> 1502 Villarreal Away Santi Cazorla -#> 1503 Villarreal Away Ramiro Funes Mori -#> 1504 Villarreal Away Manu Trigueros -#> 1505 Villarreal Away Pablo Fornals -#> 1506 Villarreal Away Jaume Costa -#> 1507 Villarreal Away Víctor Ruiz -#> 1508 Villarreal Away Álvaro González -#> 1509 Villarreal Away Mario Gaspar -#> 1510 Villarreal Away Sergio Asenjo -#> 1511 Sevilla Home Wissam Ben Yedder -#> 1512 Sevilla Home Quincy Promes -#> 1513 Sevilla Home André Silva -#> 1514 Sevilla Home Franco Vázquez -#> 1515 Sevilla Home Éver Banega -#> 1516 Sevilla Home Roque Mesa -#> 1517 Sevilla Home Pablo Sarabia -#> 1518 Sevilla Home Guilherme Arana -#> 1519 Sevilla Home Nolito -#> 1520 Sevilla Home Jesús Navas -#> 1521 Sevilla Home Sergi Gómez -#> 1522 Sevilla Home Simon Kjær -#> 1523 Sevilla Home Daniel Carriço -#> 1524 Sevilla Home Tomáš Vaclík -#> 1525 Real Madrid Away Karim Benzema -#> 1526 Real Madrid Away Mariano -#> 1527 Real Madrid Away Marco Asensio -#> 1528 Real Madrid Away Gareth Bale -#> 1529 Real Madrid Away Toni Kroos -#> 1530 Real Madrid Away Casemiro -#> 1531 Real Madrid Away Luka Modrić -#> 1532 Real Madrid Away Dani Ceballos -#> 1533 Real Madrid Away Marcelo -#> 1534 Real Madrid Away Sergio Ramos -#> 1535 Real Madrid Away Raphaël Varane -#> 1536 Real Madrid Away Nacho -#> 1537 Real Madrid Away Lucas Vázquez -#> 1538 Real Madrid Away Thibaut Courtois -#> 1539 Valencia Home Michy Batshuayi -#> 1540 Valencia Home Kévin Gameiro -#> 1541 Valencia Home Rodrigo -#> 1542 Valencia Home Gonçalo Guedes -#> 1543 Valencia Home Denis Cheryshev -#> 1544 Valencia Home Francis Coquelin -#> 1545 Valencia Home Geoffrey Kondogbia -#> 1546 Valencia Home Carlos Soler -#> 1547 Valencia Home Daniel Wass -#> 1548 Valencia Home José Luis Gayà -#> 1549 Valencia Home Jeison Murillo -#> 1550 Valencia Home Ezequiel Garay -#> 1551 Valencia Home Cristiano Piccini -#> 1552 Valencia Home Neto -#> 1553 Celta Vigo Away Maxi Gómez -#> 1554 Celta Vigo Away Iago Aspas -#> 1555 Celta Vigo Away Júnior Alonso -#> 1556 Celta Vigo Away Fran Beltrán -#> 1557 Celta Vigo Away Stanislav Lobotka -#> 1558 Celta Vigo Away Okay Yokuşlu -#> 1559 Celta Vigo Away Pione Sisto -#> 1560 Celta Vigo Away David Juncà -#> 1561 Celta Vigo Away Néstor Araujo -#> 1562 Celta Vigo Away Gustavo Cabral -#> 1563 Celta Vigo Away Facundo Roncaglia -#> 1564 Celta Vigo Away Hugo Mallo -#> 1565 Celta Vigo Away Dennis Eckert -#> 1566 Celta Vigo Away Sergio Álvarez -#> 1567 Alavés Home Rubén Sobrino -#> 1568 Alavés Home John Guidetti -#> 1569 Alavés Home Jonathan Calleri -#> 1570 Alavés Home Jony -#> 1571 Alavés Home Wakaso -#> 1572 Alavés Home Manu García -#> 1573 Alavés Home Darko Brašanac -#> 1574 Alavés Home Ibai Gómez -#> 1575 Alavés Home Burgui -#> 1576 Alavés Home Rubén Duarte -#> 1577 Alavés Home Ximo Navarro -#> 1578 Alavés Home Víctor Laguardia -#> 1579 Alavés Home Martin Agirregabiria -#> 1580 Alavés Home Fernando Pacheco -#> 1581 Getafe Away Ángel Rodríguez -#> 1582 Getafe Away Jorge Molina -#> 1583 Getafe Away Jaime Mata -#> 1584 Getafe Away Amath -#> 1585 Getafe Away Dimitri Foulquier -#> 1586 Getafe Away Nemanja Maksimović -#> 1587 Getafe Away Mauro Arambarri -#> 1588 Getafe Away Markel Bergara -#> 1589 Getafe Away Francisco Portillo -#> 1590 Getafe Away Leandro Cabrera -#> 1591 Getafe Away Bruno González -#> 1592 Getafe Away Djené -#> 1593 Getafe Away Damián Suárez -#> 1594 Getafe Away David Soria -#> 1595 Valladolid Home Duje Čop -#> 1596 Valladolid Home Borja Fernández -#> 1597 Valladolid Home Enes Ünal -#> 1598 Valladolid Home Toni Villa -#> 1599 Valladolid Home Rubén Alcaraz -#> 1600 Valladolid Home Míchel -#> 1601 Valladolid Home Óscar Plano -#> 1602 Valladolid Home Antoñito -#> 1603 Valladolid Home Nacho -#> 1604 Valladolid Home Fernando Calero -#> 1605 Valladolid Home Kiko Olivas -#> 1606 Valladolid Home Javi Moyano -#> 1607 Valladolid Home Leonardo Suárez -#> 1608 Valladolid Home Jordi Masip -#> 1609 Levante Away Roger Martí -#> 1610 Levante Away Emmanuel Boateng -#> 1611 Levante Away Borja Mayoral -#> 1612 Levante Away Jason -#> 1613 Levante Away José Luis Morales -#> 1614 Levante Away Nikola Vukčević -#> 1615 Levante Away José Campaña -#> 1616 Levante Away Enis Bardhi -#> 1617 Levante Away Antonio Luna -#> 1618 Levante Away Chema -#> 1619 Levante Away Sergio Postigo -#> 1620 Levante Away Pedro López Muñoz -#> 1621 Levante Away Moses Simon -#> 1622 Levante Away Oier Olazábal -#> 1623 Girona Home Cristhian Stuani -#> 1624 Girona Home Borja García -#> 1625 Girona Home Portu -#> 1626 Girona Home Aday -#> 1627 Girona Home Douglas Luiz -#> 1628 Girona Home Álex Granell -#> 1629 Girona Home Aleix García -#> 1630 Girona Home Pedro Porro -#> 1631 Girona Home Seydou Doumbia -#> 1632 Girona Home Juanpe -#> 1633 Girona Home Bernardo Espinosa -#> 1634 Girona Home Pedro Alcalá -#> 1635 Girona Home Patrick Roberts -#> 1636 Girona Home Yassine Bounou -#> 1637 Real Betis Away Loren Morón -#> 1638 Real Betis Away Takashi Inui -#> 1639 Real Betis Away Joaquín -#> 1640 Real Betis Away Ryad Boudebouz -#> 1641 Real Betis Away Giovani Lo Celso -#> 1642 Real Betis Away Andrés Guardado -#> 1643 Real Betis Away Javi García -#> 1644 Real Betis Away Sergio Canales -#> 1645 Real Betis Away Junior Firpo -#> 1646 Real Betis Away Francis Guerrero -#> 1647 Real Betis Away Sidnei -#> 1648 Real Betis Away Marc Bartra -#> 1649 Real Betis Away Aïssa Mandi -#> 1650 Real Betis Away Pau López -#> 1651 Rayo Vallecano Home Raúl de Tomás -#> 1652 Rayo Vallecano Home Bebé -#> 1653 Rayo Vallecano Home Álvaro García -#> 1654 Rayo Vallecano Home Giannelli Imbula -#> 1655 Rayo Vallecano Home Óscar Trejo -#> 1656 Rayo Vallecano Home José Pozo -#> 1657 Rayo Vallecano Home Gaël Kakuta -#> 1658 Rayo Vallecano Home Adri Embarba -#> 1659 Rayo Vallecano Home Santi Comesaña -#> 1660 Rayo Vallecano Home Álex Moreno -#> 1661 Rayo Vallecano Home Jordi Amat -#> 1662 Rayo Vallecano Home Abdoulaye Ba -#> 1663 Rayo Vallecano Home Luis Advíncula -#> 1664 Rayo Vallecano Home Alberto García -#> 1665 Espanyol Away Borja Iglesias -#> 1666 Espanyol Away Sergio García -#> 1667 Espanyol Away Esteban Granero -#> 1668 Espanyol Away Óscar Melendo -#> 1669 Espanyol Away Víctor Sánchez -#> 1670 Espanyol Away Léo Baptistão -#> 1671 Espanyol Away Hernán Pérez -#> 1672 Espanyol Away Marc Roca -#> 1673 Espanyol Away Sergi Darder -#> 1674 Espanyol Away Dídac Vilà -#> 1675 Espanyol Away Mario Hermoso -#> 1676 Espanyol Away Naldo -#> 1677 Espanyol Away Javi López -#> 1678 Espanyol Away Diego López -#> 1679 Real Sociedad Home Willian José -#> 1680 Real Sociedad Home David Zurutuza -#> 1681 Real Sociedad Home Mikel Merino -#> 1682 Real Sociedad Home Rubén Pardo -#> 1683 Real Sociedad Home Asier Illarramendi -#> 1684 Real Sociedad Home Igor Zubeldia -#> 1685 Real Sociedad Home Mikel Oyarzabal -#> 1686 Real Sociedad Home Jon Bautista -#> 1687 Real Sociedad Home Kévin Rodrigues -#> 1688 Real Sociedad Home Raúl Navas -#> 1689 Real Sociedad Home Aritz Elustondo -#> 1690 Real Sociedad Home Joseba Zaldúa -#> 1691 Real Sociedad Home Sandro Ramírez -#> 1692 Real Sociedad Home Miguel Ángel Moyá -#> 1693 Valencia Away Michy Batshuayi -#> 1694 Valencia Away Rodrigo -#> 1695 Valencia Away Kévin Gameiro -#> 1696 Valencia Away Denis Cheryshev -#> 1697 Valencia Away Gonçalo Guedes -#> 1698 Valencia Away Geoffrey Kondogbia -#> 1699 Valencia Away Francis Coquelin -#> 1700 Valencia Away Daniel Parejo -#> 1701 Valencia Away Carlos Soler -#> 1702 Valencia Away Toni Lato -#> 1703 Valencia Away Mouctar Diakhaby -#> 1704 Valencia Away Gabriel Paulista -#> 1705 Valencia Away Rúben Vezo -#> 1706 Valencia Away Neto -#> 1707 Barcelona Home Luis Suárez -#> 1708 Barcelona Home Philippe Coutinho -#> 1709 Barcelona Home Ousmane Dembélé -#> 1710 Barcelona Home Munir El Haddadi -#> 1711 Barcelona Home Ivan Rakitić -#> 1712 Barcelona Home Sergi Roberto -#> 1713 Barcelona Home Sergio Busquets -#> 1714 Barcelona Home Arturo Vidal -#> 1715 Barcelona Home Lionel Messi -#> 1716 Barcelona Home Jordi Alba -#> 1717 Barcelona Home Clément Lenglet -#> 1718 Barcelona Home Gerard Piqué -#> 1719 Barcelona Home Nélson Semedo -#> 1720 Barcelona Home Marc-André ter Stegen -#> 1721 Athletic Club Away Iñaki Williams -#> 1722 Athletic Club Away Aritz Aduriz -#> 1723 Athletic Club Away Yuri Berchiche -#> 1724 Athletic Club Away Markel Susaeta -#> 1725 Athletic Club Away Raúl García -#> 1726 Athletic Club Away Beñat Etxebarria -#> 1727 Athletic Club Away Mikel San José -#> 1728 Athletic Club Away Dani García -#> 1729 Athletic Club Away Mikel Balenziaga -#> 1730 Athletic Club Away Iñigo Martínez -#> 1731 Athletic Club Away Peru Nolaskoain -#> 1732 Athletic Club Away Yeray Álvarez -#> 1733 Athletic Club Away Óscar de Marcos -#> 1734 Athletic Club Away Unai Simón -#> 1735 Eibar Home Kiké -#> 1736 Eibar Home Charles -#> 1737 Eibar Home Sergi Enrich -#> 1738 Eibar Home Pablo Hervías -#> 1739 Eibar Home Sergio Álvarez -#> 1740 Eibar Home Joan Jordán -#> 1741 Eibar Home Papakouli Diop -#> 1742 Eibar Home Fabián Orellana -#> 1743 Eibar Home José Ángel -#> 1744 Eibar Home Pedro Bigas -#> 1745 Eibar Home Iván Ramis -#> 1746 Eibar Home Anaitz Arbilla -#> 1747 Eibar Home Rubén Peña -#> 1748 Eibar Home Marko Dmitrović -#> 1749 Sevilla Away André Silva -#> 1750 Sevilla Away Luis Muriel -#> 1751 Sevilla Away Wissam Ben Yedder -#> 1752 Sevilla Away Quincy Promes -#> 1753 Sevilla Away Franco Vázquez -#> 1754 Sevilla Away Éver Banega -#> 1755 Sevilla Away Pablo Sarabia -#> 1756 Sevilla Away Roque Mesa -#> 1757 Sevilla Away Guilherme Arana -#> 1758 Sevilla Away Jesús Navas -#> 1759 Sevilla Away Sergi Gómez -#> 1760 Sevilla Away Simon Kjær -#> 1761 Sevilla Away Daniel Carriço -#> 1762 Sevilla Away Tomáš Vaclík -#> 1763 Real Madrid Home Karim Benzema -#> 1764 Real Madrid Home Vinicius Júnior -#> 1765 Real Madrid Home Marco Asensio -#> 1766 Real Madrid Home Gareth Bale -#> 1767 Real Madrid Home Dani Ceballos -#> 1768 Real Madrid Home Toni Kroos -#> 1769 Real Madrid Home Casemiro -#> 1770 Real Madrid Home Luka Modrić -#> 1771 Real Madrid Home Lucas Vázquez -#> 1772 Real Madrid Home Nacho -#> 1773 Real Madrid Home Sergio Ramos -#> 1774 Real Madrid Home Raphaël Varane -#> 1775 Real Madrid Home Dani Carvajal -#> 1776 Real Madrid Home Thibaut Courtois -#> 1777 Atlético Madrid Away Antoine Griezmann -#> 1778 Atlético Madrid Away Diego Costa -#> 1779 Atlético Madrid Away Thomas Partey -#> 1780 Atlético Madrid Away Koke -#> 1781 Atlético Madrid Away Rodri -#> 1782 Atlético Madrid Away Nikola Kalinić -#> 1783 Atlético Madrid Away Saúl Ñíguez -#> 1784 Atlético Madrid Away Thomas Lemar -#> 1785 Atlético Madrid Away Ángel Correa -#> 1786 Atlético Madrid Away Filipe Luís -#> 1787 Atlético Madrid Away Diego Godín -#> 1788 Atlético Madrid Away José María Giménez -#> 1789 Atlético Madrid Away Juanfran -#> 1790 Atlético Madrid Away Jan Oblak -#> 1791 Huesca Home Cucho -#> 1792 Huesca Home Ezequiel Ávila -#> 1793 Huesca Home Álex Gallar -#> 1794 Huesca Home Gonzalo Melero -#> 1795 Huesca Home Juan Aguilera -#> 1796 Huesca Home Damián Musto -#> 1797 Huesca Home Moi Gómez -#> 1798 Huesca Home Carlos Akapo -#> 1799 Huesca Home Xabier Etxeita -#> 1800 Huesca Home Rúben Semedo -#> 1801 Huesca Home Jorge Pulido -#> 1802 Huesca Home Jorge Miramón -#> 1803 Huesca Home David Ferreiro -#> 1804 Huesca Home Aleksandar Jovanović -#> 1805 Girona Away Cristhian Stuani -#> 1806 Girona Away Portu -#> 1807 Girona Away Aleix García -#> 1808 Girona Away Álex Granell -#> 1809 Girona Away Borja García -#> 1810 Girona Away Pedro Alcalá -#> 1811 Girona Away Douglas Luiz -#> 1812 Girona Away Pere Pons -#> 1813 Girona Away Anthony Lozano -#> 1814 Girona Away Marc Muniesa -#> 1815 Girona Away Bernardo Espinosa -#> 1816 Girona Away Juanpe -#> 1817 Girona Away Aday -#> 1818 Girona Away Yassine Bounou -#> 1819 Villarreal Home Carlos Bacca -#> 1820 Villarreal Home Gerard Moreno -#> 1821 Villarreal Home Santi Cazorla -#> 1822 Villarreal Home Karl Toko Ekambi -#> 1823 Villarreal Home Ramiro Funes Mori -#> 1824 Villarreal Home Manu Trigueros -#> 1825 Villarreal Home Pablo Fornals -#> 1826 Villarreal Home Jaume Costa -#> 1827 Villarreal Home Alfonso Pedraza -#> 1828 Villarreal Home Víctor Ruiz -#> 1829 Villarreal Home Álvaro González -#> 1830 Villarreal Home Mario Gaspar -#> 1831 Villarreal Home Miguel Layún -#> 1832 Villarreal Home Sergio Asenjo -#> 1833 Valladolid Away Duje Čop -#> 1834 Valladolid Away Leonardo Suárez -#> 1835 Valladolid Away Anuar -#> 1836 Valladolid Away Toni Villa -#> 1837 Valladolid Away Ivi -#> 1838 Valladolid Away Rubén Alcaraz -#> 1839 Valladolid Away Míchel -#> 1840 Valladolid Away Borja Fernández -#> 1841 Valladolid Away Antoñito -#> 1842 Valladolid Away Nacho -#> 1843 Valladolid Away Fernando Calero -#> 1844 Valladolid Away Kiko Olivas -#> 1845 Valladolid Away Javi Moyano -#> 1846 Valladolid Away Jordi Masip -#> 1847 Levante Home José Luis Morales -#> 1848 Levante Home Emmanuel Boateng -#> 1849 Levante Home Rubén Rochina -#> 1850 Levante Home Cheick Doukouré -#> 1851 Levante Home Sanjin Prcić -#> 1852 Levante Home José Campaña -#> 1853 Levante Home Toño -#> 1854 Levante Home Jason -#> 1855 Levante Home Moses Simon -#> 1856 Levante Home Rober -#> 1857 Levante Home Sergio Postigo -#> 1858 Levante Home Erick Cabaco -#> 1859 Levante Home Chema -#> 1860 Levante Home Oier Olazábal -#> 1861 Alavés Away John Guidetti -#> 1862 Alavés Away Jonathan Calleri -#> 1863 Alavés Away Rubén Sobrino -#> 1864 Alavés Away Burgui -#> 1865 Alavés Away Jony -#> 1866 Alavés Away Manu García -#> 1867 Alavés Away Tomás Pina Isla -#> 1868 Alavés Away Ibai Gómez -#> 1869 Alavés Away Rubén Duarte -#> 1870 Alavés Away Ximo Navarro -#> 1871 Alavés Away Guillermo Maripán -#> 1872 Alavés Away Víctor Laguardia -#> 1873 Alavés Away Martin Agirregabiria -#> 1874 Alavés Away Fernando Pacheco -#> 1875 Real Betis Home Joaquín -#> 1876 Real Betis Home Sergio León -#> 1877 Real Betis Home Loren Morón -#> 1878 Real Betis Home Giovani Lo Celso -#> 1879 Real Betis Home Sergio Canales -#> 1880 Real Betis Home Antonio Sanabria -#> 1881 Real Betis Home Ryad Boudebouz -#> 1882 Real Betis Home Cristian Tello -#> 1883 Real Betis Home Antonio Barragán -#> 1884 Real Betis Home William Carvalho -#> 1885 Real Betis Home Marc Bartra -#> 1886 Real Betis Home Javi García -#> 1887 Real Betis Home Aïssa Mandi -#> 1888 Real Betis Home Joel Robles -#> 1889 Leganés Away Youssef En-Nesyri -#> 1890 Leganés Away Guido Carrillo -#> 1891 Leganés Away Óscar Rodríguez Arnaiz -#> 1892 Leganés Away Mikel Vesga -#> 1893 Leganés Away Gerard Gumbau -#> 1894 Leganés Away Rubén Pérez -#> 1895 Leganés Away Nabil El Zhar -#> 1896 Leganés Away Sabin Merino -#> 1897 Leganés Away Jonathan Silva -#> 1898 Leganés Away Raúl García -#> 1899 Leganés Away Unai Bustinza -#> 1900 Leganés Away Rodrigo Tarín -#> 1901 Leganés Away Juanfran -#> 1902 Leganés Away Iván Cuéllar -#> 1903 Celta Vigo Home Maxi Gómez -#> 1904 Celta Vigo Home Iago Aspas -#> 1905 Celta Vigo Home Brais Méndez -#> 1906 Celta Vigo Home Stanislav Lobotka -#> 1907 Celta Vigo Home Fran Beltrán -#> 1908 Celta Vigo Home Okay Yokuşlu -#> 1909 Celta Vigo Home Mathias Jensen -#> 1910 Celta Vigo Home Néstor Araujo -#> 1911 Celta Vigo Home Júnior Alonso -#> 1912 Celta Vigo Home Facundo Roncaglia -#> 1913 Celta Vigo Home Pione Sisto -#> 1914 Celta Vigo Home Gustavo Cabral -#> 1915 Celta Vigo Home Hugo Mallo -#> 1916 Celta Vigo Home Sergio Álvarez -#> 1917 Getafe Away Jorge Molina -#> 1918 Getafe Away Ángel Rodríguez -#> 1919 Getafe Away Robert Ibáñez -#> 1920 Getafe Away Amath -#> 1921 Getafe Away Markel Bergara -#> 1922 Getafe Away Nemanja Maksimović -#> 1923 Getafe Away Mauro Arambarri -#> 1924 Getafe Away Jaime Mata -#> 1925 Getafe Away Francisco Portillo -#> 1926 Getafe Away Vitorino Antunes -#> 1927 Getafe Away Bruno González -#> 1928 Getafe Away Djené -#> 1929 Getafe Away Damián Suárez -#> 1930 Getafe Away David Soria -#> 1931 Athletic Club Home Iñaki Williams -#> 1932 Athletic Club Home Iker Muniain -#> 1933 Athletic Club Home Markel Susaeta -#> 1934 Athletic Club Home Beñat Etxebarria -#> 1935 Athletic Club Home Mikel San José -#> 1936 Athletic Club Home Dani García -#> 1937 Athletic Club Home Raúl García -#> 1938 Athletic Club Home Aritz Aduriz -#> 1939 Athletic Club Home Yuri Berchiche -#> 1940 Athletic Club Home Iñigo Martínez -#> 1941 Athletic Club Home Yeray Álvarez -#> 1942 Athletic Club Home Óscar de Marcos -#> 1943 Athletic Club Home Ander Capa -#> 1944 Athletic Club Home Unai Simón -#> 1945 Real Sociedad Away Jon Bautista -#> 1946 Real Sociedad Away Mikel Oyarzabal -#> 1947 Real Sociedad Away Héctor Moreno -#> 1948 Real Sociedad Away Luca Sangalli -#> 1949 Real Sociedad Away Sandro Ramírez -#> 1950 Real Sociedad Away Rubén Pardo -#> 1951 Real Sociedad Away David Zurutuza -#> 1952 Real Sociedad Away Igor Zubeldia -#> 1953 Real Sociedad Away Asier Illarramendi -#> 1954 Real Sociedad Away Kévin Rodrigues -#> 1955 Real Sociedad Away Raúl Navas -#> 1956 Real Sociedad Away Aritz Elustondo -#> 1957 Real Sociedad Away Andoni Gorosabel -#> 1958 Real Sociedad Away Miguel Ángel Moyá -#> 1959 Girona Home Cristhian Stuani -#> 1960 Girona Home Portu -#> 1961 Girona Home Seydou Doumbia -#> 1962 Girona Home Álex Granell -#> 1963 Girona Home Borja García -#> 1964 Girona Home Douglas Luiz -#> 1965 Girona Home Aday -#> 1966 Girona Home Patrick Roberts -#> 1967 Girona Home Pedro Porro -#> 1968 Girona Home Anthony Lozano -#> 1969 Girona Home Marc Muniesa -#> 1970 Girona Home Bernardo Espinosa -#> 1971 Girona Home Juanpe -#> 1972 Girona Home Yassine Bounou -#> 1973 Eibar Away Charles -#> 1974 Eibar Away Kiké -#> 1975 Eibar Away Sergi Enrich -#> 1976 Eibar Away Sergio Álvarez -#> 1977 Eibar Away Pablo de Blasis -#> 1978 Eibar Away Joan Jordán -#> 1979 Eibar Away Papakouli Diop -#> 1980 Eibar Away Fabián Orellana -#> 1981 Eibar Away Marc Cucurella -#> 1982 Eibar Away José Ángel -#> 1983 Eibar Away Anaitz Arbilla -#> 1984 Eibar Away Paulo Oliveira -#> 1985 Eibar Away Rubén Peña -#> 1986 Eibar Away Marko Dmitrović -#> 1987 Getafe Home Jaime Mata -#> 1988 Getafe Home Ángel Rodríguez -#> 1989 Getafe Home Jorge Molina -#> 1990 Getafe Home Amath -#> 1991 Getafe Home Robert Ibáñez -#> 1992 Getafe Home Nemanja Maksimović -#> 1993 Getafe Home Mauro Arambarri -#> 1994 Getafe Home Markel Bergara -#> 1995 Getafe Home Francisco Portillo -#> 1996 Getafe Home Vitorino Antunes -#> 1997 Getafe Home Bruno González -#> 1998 Getafe Home Djené -#> 1999 Getafe Home Damián Suárez -#> 2000 Getafe Home David Soria -#> 2001 Levante Away Emmanuel Boateng -#> 2002 Levante Away Borja Mayoral -#> 2003 Levante Away José Luis Morales -#> 2004 Levante Away José Campaña -#> 2005 Levante Away Rubén Rochina -#> 2006 Levante Away Sanjin Prcić -#> 2007 Levante Away Enis Bardhi -#> 2008 Levante Away Toño -#> 2009 Levante Away Jason -#> 2010 Levante Away Rober -#> 2011 Levante Away Sergio Postigo -#> 2012 Levante Away Erick Cabaco -#> 2013 Levante Away Pedro López Muñoz -#> 2014 Levante Away Oier Olazábal -#> 2015 Alavés Home Jonathan Calleri -#> 2016 Alavés Home Jony -#> 2017 Alavés Home Ibai Gómez -#> 2018 Alavés Home Rubén Sobrino -#> 2019 Alavés Home Wakaso -#> 2020 Alavés Home Manu García -#> 2021 Alavés Home Tomás Pina Isla -#> 2022 Alavés Home Darko Brašanac -#> 2023 Alavés Home Rubén Duarte -#> 2024 Alavés Home Guillermo Maripán -#> 2025 Alavés Home Martin Agirregabiria -#> 2026 Alavés Home Víctor Laguardia -#> 2027 Alavés Home Ximo Navarro -#> 2028 Alavés Home Fernando Pacheco -#> 2029 Real Madrid Away Karim Benzema -#> 2030 Real Madrid Away Mariano -#> 2031 Real Madrid Away Dani Ceballos -#> 2032 Real Madrid Away Gareth Bale -#> 2033 Real Madrid Away Vinicius Júnior -#> 2034 Real Madrid Away Toni Kroos -#> 2035 Real Madrid Away Casemiro -#> 2036 Real Madrid Away Marco Asensio -#> 2037 Real Madrid Away Luka Modrić -#> 2038 Real Madrid Away Nacho -#> 2039 Real Madrid Away Sergio Ramos -#> 2040 Real Madrid Away Raphaël Varane -#> Player_Href Player_Num Nation Pos -#> 1 /en/players/220c11f1/Cristhian-Stuani 7 URU FW -#> 2 /en/players/59d93937/Patrick-Roberts 17 ENG RW,FW -#> 3 /en/players/e7f4603c/Borja-Garcia 10 ESP LW,AM,LM -#> 4 /en/players/1bda5842/Portu 9 ESP RW,LW -#> 5 /en/players/a10361d2/Aleix-Garcia 23 ESP LM -#> 6 /en/players/38699c72/Anthony-Lozano 19 HON LW,FW,LM -#> 7 /en/players/174651c8/David-Timor 24 ESP CM,DM -#> 8 /en/players/29b61deb/Pere-Pons 8 ESP DM -#> 9 /en/players/a25250f8/Alex-Granell 6 ESP RM,DM -#> 10 /en/players/4db76f57/Marc-Muniesa 20 ESP LB -#> 11 /en/players/4242011c/Bernardo-Espinosa 2 COL CB -#> 12 /en/players/1633fc8a/Juanpe 15 ESP CB -#> 13 /en/players/27d0a506/Pedro-Porro 29 ESP RB -#> 14 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK -#> 15 /en/players/44e07fac/Chris-Ramos 12 ESP FW -#> 16 /en/players/7c388b20/Oscar-Plano 10 ESP FW,LW -#> 17 /en/players/636eae97/Toni-Villa 19 ESP LW -#> 18 /en/players/418f8f61/Michel 21 ESP AM -#> 19 /en/players/1512328c/Keko 24 ESP RW -#> 20 /en/players/c93231dc/Anuar 23 MAR AM -#> 21 /en/players/d3298c99/Daniele-Verde 11 ITA AM,FW -#> 22 /en/players/036bba5f/Ruben-Alcaraz 14 ESP DM -#> 23 /en/players/9127f9ce/Borja-Fernandez 8 ESP DM -#> 24 /en/players/e29d1111/Nacho 22 ESP LB -#> 25 /en/players/41b3069f/Fernando-Calero 5 ESP CB -#> 26 /en/players/72b07a9c/Kiko-Olivas 4 ESP CB -#> 27 /en/players/933e8c8a/Javi-Moyano 17 ESP RB -#> 28 /en/players/8fae77ea/Jordi-Masip 1 ESP GK -#> 29 /en/players/3aa4a3be/Loren-Moron 16 ESP FW -#> 30 /en/players/1001ae82/Ryad-Boudebouz 10 ALG FW -#> 31 /en/players/0a447501/Antonio-Sanabria 9 PAR FW -#> 32 /en/players/24f59bb2/Junior-Firpo 20 ESP LW -#> 33 /en/players/59d53e8a/Francis-Guerrero 2 ESP RW -#> 34 /en/players/487d9b09/Antonio-Barragan 19 ESP RW -#> 35 /en/players/ef322658/Andres-Guardado 18 MEX CM,DM -#> 36 /en/players/a6de370d/Sergio-Canales 6 ESP CM -#> 37 /en/players/dee86451/William-Carvalho 14 POR DM -#> 38 /en/players/61bd33d0/Takashi-Inui 8 JPN CM,DM -#> 39 /en/players/89151b16/Zouhair-Feddal 4 MAR CB -#> 40 /en/players/b742cc0d/Marc-Bartra 5 ESP CB -#> 41 /en/players/fbd6378b/Aissa-Mandi 23 ALG CB -#> 42 /en/players/20b9f052/Pau-Lopez 13 ESP GK -#> 43 /en/players/0ae4e09a/Roger-Marti 9 ESP FW -#> 44 /en/players/ed239245/Antonio-Luna 22 ESP LB,FW -#> 45 /en/players/4a478107/Jose-Luis-Morales 11 ESP FW,RM -#> 46 /en/players/cac2537b/Enis-Bardhi 10 MKD LM,RM,FW -#> 47 /en/players/61220da2/Jose-Campana 24 ESP CM -#> 48 /en/players/e208bcc8/Cheick-Doukoure 5 CIV CM -#> 49 /en/players/51c30111/Sanjin-Prcic 8 BIH CM -#> 50 /en/players/9038c2a1/Jason 23 ESP RM,FW -#> 51 /en/players/525f9bf4/Raphael-Dwamena 20 GHA FW -#> 52 /en/players/d4ef9ac5/Tono 3 ESP LB,LM -#> 53 /en/players/7f203b54/Chema 6 ESP CB -#> 54 /en/players/474ecac8/Sergio-Postigo 15 ESP CB -#> 55 /en/players/6d8f8441/Coke 12 ESP RB -#> 56 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK -#> 57 /en/players/4c2e9442/Maxi-Gomez 9 URU FW -#> 58 /en/players/7f8fb807/Dennis-Eckert 32 GER FW -#> 59 /en/players/fd9c4805/Pione-Sisto 11 DEN LW -#> 60 /en/players/0c3f7197/Emre-Mor 7 TUR LW,RW -#> 61 /en/players/c9e39d91/Brais-Mendez 23 ESP RW -#> 62 /en/players/b0c71810/Sofiane-Boufal 19 MAR LW,RW -#> 63 /en/players/7dcf86f6/Iago-Aspas 10 ESP AM -#> 64 /en/players/e1cbb531/Stanislav-Lobotka 14 SVK DM -#> 65 /en/players/ed5c5fa3/Fran-Beltran 8 ESP DM -#> 66 /en/players/b18a3023/Junior-Alonso 25 PAR LB -#> 67 /en/players/92b4a127/Gustavo-Cabral 22 ARG CB -#> 68 /en/players/27a013f7/Nestor-Araujo 4 MEX CB -#> 69 /en/players/cb574619/Hugo-Mallo 2 ESP RB -#> 70 /en/players/8875b8c9/Sergio-Alvarez 1 ESP GK -#> 71 /en/players/75645f0e/Borja-Iglesias 7 ESP FW -#> 72 /en/players/2bee98fd/Sergio-Garcia 9 ESP FW -#> 73 /en/players/48e89655/Pablo-Piatti 19 ARG LW -#> 74 /en/players/2683eda7/Javi-Puado 20 ESP LW -#> 75 /en/players/35f6db55/Leo-Baptistao 11 BRA RW -#> 76 /en/players/e1cea3f7/Hernan-Perez 17 PAR RW -#> 77 /en/players/070a3904/Sergi-Darder 10 ESP LM -#> 78 /en/players/da27e268/Marc-Roca 21 ESP CM -#> 79 /en/players/ad4d0985/Victor-Sanchez 4 ESP RM -#> 80 /en/players/bad38a94/Didac-Vila 12 ESP LB -#> 81 /en/players/555f3a0b/Mario-Hermoso 22 ESP CB -#> 82 /en/players/f03f284b/David-Lopez 15 ESP CB -#> 83 /en/players/ffad706e/Javi-Lopez 16 ESP RB -#> 84 /en/players/73683fa9/Diego-Lopez 13 ESP GK -#> 85 /en/players/5ceba7fc/Karl-Toko-Ekambi 17 CMR FW -#> 86 /en/players/81f0781e/Gerard-Moreno 7 ESP FW,LM -#> 87 /en/players/e2e9c250/Santi-Cazorla 19 ESP LM -#> 88 /en/players/963829d0/Manu-Trigueros 14 ESP CM -#> 89 /en/players/a0255c67/Manu-Morlanes 28 ESP CM -#> 90 /en/players/ea6a7ab4/Dani-Raba 22 ESP RM,CM -#> 91 /en/players/958bba56/Santiago-Caseres 5 ARG CM -#> 92 /en/players/82927de4/Pablo-Fornals 8 ESP RM,CM,LM -#> 93 /en/players/09a9e921/Carlos-Bacca 9 COL FW,LM -#> 94 /en/players/63f04c6c/Alfonso-Pedraza 16 ESP LB -#> 95 /en/players/89cbc961/Ramiro-Funes-Mori 4 ARG CB -#> 96 /en/players/42dcf26d/Alvaro-Gonzalez 3 ESP CB -#> 97 /en/players/fb5d47b3/Mario-Gaspar 2 ESP RB -#> 98 /en/players/9f0ea33f/Sergio-Asenjo 1 ESP GK -#> 99 /en/players/d87e2cae/Willian-Jose 12 BRA FW -#> 100 /en/players/2306bfde/Ruben-Pardo 14 ESP FW -#> 101 /en/players/84399660/Juanmi 7 ESP RM,FW -#> 102 /en/players/d080ed5e/Mikel-Merino 8 ESP LM -#> 103 /en/players/d9bda115/David-Zurutuza 17 ESP LM -#> 104 /en/players/5c7845f6/Igor-Zubeldia 5 ESP CM -#> 105 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP CM -#> 106 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP RM -#> 107 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP CB -#> 108 /en/players/d4c9725f/Theo-Hernandez 19 FRA LB -#> 109 /en/players/5d311e8d/Hector-Moreno 6 MEX CB -#> 110 /en/players/bba30585/Diego-Llorente 3 ESP CB -#> 111 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP RB -#> 112 /en/players/625c144a/Geronimo-Rulli 1 ARG GK -#> 113 /en/players/d70ce98e/Lionel-Messi 10 ARG FW,RW -#> 114 /en/players/a6154613/Luis-Suarez 9 URU FW -#> 115 /en/players/b19db005/Ousmane-Dembele 11 FRA LM -#> 116 /en/players/48b3dd60/Arthur-Melo 8 BRA LM -#> 117 /en/players/89f951b5/Ivan-Rakitic 4 CRO CM,RM -#> 118 /en/players/5ab0ea87/Sergio-Busquets 5 ESP CM -#> 119 /en/players/67cdbc0e/Arturo-Vidal 22 CHI CM -#> 120 /en/players/335fa267/Sergi-Roberto 20 ESP RB,RM -#> 121 /en/players/4601e194/Jordi-Alba 18 ESP LB -#> 122 /en/players/3eed9821/Samuel-Umtiti 23 FRA CB -#> 123 /en/players/adfc9123/Gerard-Pique 3 ESP CB -#> 124 /en/players/d04b94db/Nelson-Semedo 2 POR RB -#> 125 /en/players/0ef89a37/Philippe-Coutinho 7 BRA RM,LW -#> 126 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER GK -#> 127 /en/players/19b776e9/Ruben-Sobrino 7 ESP FW -#> 128 /en/players/45e304c8/Burgui 14 ESP FW -#> 129 /en/players/244f57b9/Jony 23 ESP LW -#> 130 /en/players/8c44e37b/Borja-Baston 18 ESP FW -#> 131 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RW,RM -#> 132 /en/players/05a4465d/Manu-Garcia 19 ESP CM -#> 133 /en/players/87882adc/Daniel-Torres 16 COL CM -#> 134 /en/players/b7f2edff/Adrian-Marin 17 ESP LM,LB -#> 135 /en/players/999908af/Wakaso 22 GHA CM -#> 136 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB,LM -#> 137 /en/players/d9764034/Guillermo-Maripan 6 CHI CB -#> 138 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB -#> 139 /en/players/355c883a/Martin-Agirregabiria 21 ESP RB -#> 140 /en/players/97852360/Fernando-Pacheco 1 ESP GK -#> 141 /en/players/e897d8ba/Kike 17 ESP FW -#> 142 /en/players/c4b8bcf4/Charles 19 BRA FW -#> 143 /en/players/bb4b1242/Sergi-Enrich 9 ESP FW -#> 144 /en/players/d8712bf9/Bebe 10 CPV LM -#> 145 /en/players/3f79a1c8/Gonzalo-Escalante 5 ARG CM,LM -#> 146 /en/players/2a0c8ba4/Joan-Jordan 24 ESP CM,RM -#> 147 /en/players/7329018e/Papakouli-Diop 8 SEN CM -#> 148 /en/players/c90977db/Fabian-Orellana 14 CHI RM,LM -#> 149 /en/players/3024e383/Jose-Angel 15 ESP LB -#> 150 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP CB -#> 151 /en/players/697295b1/Pedro-Bigas 3 ESP CB -#> 152 /en/players/a8fbae1d/Paulo-Oliveira 12 POR CB -#> 153 /en/players/1f079188/Ruben-Pena 11 ESP RB -#> 154 /en/players/ac295d9e/Marko-Dmitrovic 25 SRB GK -#> 155 /en/players/1163de29/Samuele-Longo 12 ITA FW -#> 156 /en/players/71b47ab9/Cucho 9 COL FW -#> 157 /en/players/c904f3d5/Ruben-Semedo 4 POR DM -#> 158 /en/players/5a626448/Moi-Gomez 6 ESP LM,CM -#> 159 /en/players/3902e91b/Gonzalo-Melero 8 ESP CM -#> 160 /en/players/74e0a984/Damian-Musto 23 ARG CM -#> 161 /en/players/8970907e/David-Ferreiro 7 ESP LM -#> 162 /en/players/36d5469c/Alex-Gallar 11 ESP RM -#> 163 /en/players/253a06b9/Ezequiel-Avila 19 ARG RM -#> 164 /en/players/a7f00c8c/Luisinho 16 POR LB -#> 165 /en/players/4a895384/Xabier-Etxeita 3 ESP CB -#> 166 /en/players/978cd030/Jorge-Pulido 14 ESP CB -#> 167 /en/players/7f4c7c9f/Jorge-Miramon 24 ESP RB -#> 168 /en/players/c0b1a6da/Axel-Werner 1 ARG GK -#> 169 /en/players/fc647b34/Oscar-Trejo 8 ARG FW,CM -#> 170 /en/players/db8f0eba/Adri-Embarba 11 ESP LM,LW -#> 171 /en/players/fc8b614b/Jose-Pozo 22 ESP CM -#> 172 /en/players/cacadf4f/Luis-Advincula 17 PER RM -#> 173 /en/players/31223bcf/Alvaro-Medran 4 ESP CM -#> 174 /en/players/aa386464/Javi-Guerra 24 ESP FW,CM -#> 175 /en/players/5b1bf5e3/Gael-Kakuta 10 COD RM,CM,RW -#> 176 /en/players/d70a2141/Jordi-Amat 16 IDN DM,CM -#> 177 /en/players/16e9d0ea/Alex-Moreno 7 ESP LB,LM -#> 178 /en/players/e98f3a6a/Chechu 5 ESP CB -#> 179 /en/players/1f54ed90/Abdoulaye-Ba 21 SEN CB -#> 180 /en/players/7cefa219/Tito 2 ESP RB,CB -#> 181 /en/players/17d9e354/Alberto-Garcia 1 ESP GK -#> 182 /en/players/3effaa34/Andre-Silva 12 POR FW -#> 183 /en/players/467bae22/Franco-Vazquez 22 ARG AM,CM -#> 184 /en/players/9744ff80/Pablo-Sarabia 17 ESP AM -#> 185 /en/players/eb2fe5b6/Luis-Muriel 14 COL FW -#> 186 /en/players/fa937f7a/Ever-Banega 10 ARG CM -#> 187 /en/players/9260926b/Ibrahim-Amadou 5 FRA CM -#> 188 /en/players/7c4243d4/Roque-Mesa 7 ESP CM -#> 189 /en/players/b0616e3d/Sergio-Escudero 18 ESP WB -#> 190 /en/players/04965583/Aleix-Vidal 11 ESP WB -#> 191 /en/players/3f10bd22/Jesus-Navas 16 ESP WB -#> 192 /en/players/bc6f5f06/Sergi-Gomez 3 ESP CB -#> 193 /en/players/8b8a56ce/Simon-Kjaer 4 DEN CB -#> 194 /en/players/bf97c188/Gabriel-Mercado 25 ARG CB -#> 195 /en/players/7b456af7/Tomas-Vaclik 1 CZE GK -#> 196 /en/players/70d74ece/Karim-Benzema 9 FRA FW -#> 197 /en/players/45af8a54/Marco-Asensio 20 ESP LW -#> 198 /en/players/a58bb1e1/Gareth-Bale 11 WAL RW -#> 199 /en/players/fd51b456/Lucas-Vazquez 17 ESP RW -#> 200 /en/players/a0b4bb3e/Isco 22 ESP LM -#> 201 /en/players/4d224fe8/Casemiro 14 BRA CM -#> 202 /en/players/6ce1f46f/Toni-Kroos 8 GER CM,LM -#> 203 /en/players/c0617e2b/Dani-Ceballos 24 ESP RM -#> 204 /en/players/6025fab1/Luka-Modric 10 CRO RM -#> 205 /en/players/603116a7/Marcelo 12 BRA LB -#> 206 /en/players/08511d65/Sergio-Ramos 4 ESP CB -#> 207 /en/players/2946f9a1/Nacho 6 ESP CB -#> 208 /en/players/4958bfb2/Dani-Carvajal 2 ESP RB -#> 209 /en/players/ecada4fc/Keylor-Navas 1 CRC GK -#> 210 /en/players/43f71e77/Jorge-Molina 19 ESP FW -#> 211 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW -#> 212 /en/players/f3b1d9a2/Amath 11 SEN LM -#> 213 /en/players/02319ad7/Jaime-Mata 7 ESP FW,LM -#> 214 /en/players/d2ac648c/Gaku-Shibasaki 10 JPN CM,LM,FW -#> 215 /en/players/58afe001/Mauro-Arambarri 18 URU CM -#> 216 /en/players/8e010ff4/Francisco-Portillo 8 ESP RM -#> 217 /en/players/3d7e48ce/Ivan-Alejo 23 ESP RM -#> 218 /en/players/00b28772/Nemanja-Maksimovic 20 SRB CM,DM -#> 219 /en/players/69cbc8b6/Leandro-Cabrera 6 URU LB -#> 220 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB -#> 221 /en/players/a4971d84/Djene 2 TOG CB -#> 222 /en/players/ba5004e1/Damian-Suarez 22 URU RB -#> 223 /en/players/8f8c6934/David-Soria 13 ESP GK -#> 224 /en/players/0b90bb97/Santi-Mina 22 ESP FW -#> 225 /en/players/42276181/Kevin-Gameiro 9 FRA FW -#> 226 /en/players/1fb1c435/Rodrigo 19 ESP FW,LM -#> 227 /en/players/d83bbc54/Daniel-Wass 18 DEN LM,RM -#> 228 /en/players/cce181df/Geoffrey-Kondogbia 6 CTA CM -#> 229 /en/players/7460ca0d/Daniel-Parejo 10 ESP CM -#> 230 /en/players/fed17f5a/Carlos-Soler 8 ESP RM -#> 231 /en/players/2973d8ff/Michy-Batshuayi 23 BEL FW,RM -#> 232 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP LB -#> 233 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA CB -#> 234 /en/players/ac3fb1be/Ezequiel-Garay 24 ARG CB -#> 235 /en/players/d2110326/Mouctar-Diakhaby 12 GUI CB -#> 236 /en/players/32c0491f/Cristiano-Piccini 21 ITA RB -#> 237 /en/players/a9dc785c/Neto 13 BRA GK -#> 238 /en/players/df69b544/Antoine-Griezmann 7 FRA FW -#> 239 /en/players/3ef0fa48/Gelson-Martins 18 POR RW,RM -#> 240 /en/players/a190d597/Diego-Costa 19 ESP FW -#> 241 /en/players/4dbd0916/Thomas-Lemar 11 FRA LM -#> 242 /en/players/db750822/Vitolo 23 ESP LM,LW -#> 243 /en/players/c14bc029/Saul-Niguez 8 ESP CM,DM -#> 244 /en/players/55126f3b/Koke 6 ESP CM,DM -#> 245 /en/players/01eb744d/Angel-Correa 10 ARG RM,FW -#> 246 /en/players/529f49ab/Thomas-Partey 5 GHA AM,FW -#> 247 /en/players/e4ed2628/Filipe-Luis 3 BRA LB -#> 248 /en/players/fc4f85b1/Diego-Godin 2 URU CB -#> 249 /en/players/f6ac68c1/Stefan-Savic 15 MNE CB -#> 250 /en/players/cfd8d664/Juanfran 20 ESP RB -#> 251 /en/players/ee8508c0/Jan-Oblak 13 SVN GK -#> 252 /en/players/293211e1/Aritz-Aduriz 20 ESP FW -#> 253 /en/players/49ea92be/Inigo-Cordoba 11 ESP LW,FW -#> 254 /en/players/6a99e0b1/Inaki-Williams 9 GHA LW,FW -#> 255 /en/players/6fd1ba62/Markel-Susaeta 14 ESP RW -#> 256 /en/players/c05dfb74/Iker-Muniain 10 ESP LM -#> 257 /en/players/240d3a0b/Dani-Garcia 16 ESP CM -#> 258 /en/players/88050721/Unai-Lopez 23 ESP RM -#> 259 /en/players/b418dbd4/Raul-Garcia 22 ESP RM -#> 260 /en/players/b6e50615/Yuri-Berchiche 12 ESP LB -#> 261 /en/players/857cb4f3/Peru-Nolaskoain 31 ESP CB -#> 262 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP CB -#> 263 /en/players/9f323c71/Oscar-de-Marcos 18 ESP RB -#> 264 /en/players/37f1cf47/Ander-Capa 21 ESP RB -#> 265 /en/players/5dcf3e90/Unai-Simon 25 ESP GK -#> 266 /en/players/8f898ba8/Guido-Carrillo 9 ARG FW -#> 267 /en/players/04e17fd5/Youssef-En-Nesyri 26 MAR FW -#> 268 /en/players/aec0fb6f/Javier-Eraso 17 ESP FW -#> 269 /en/players/3cb6f224/Michael-Santos 20 URU FW -#> 270 /en/players/f2308b33/Jonathan-Silva 5 ARG LM -#> 271 /en/players/ac454a4f/Gerard-Gumbau 6 ESP CM -#> 272 /en/players/3c7bc9bd/Ruben-Perez 21 ESP CM -#> 273 /en/players/37f96552/Nabil-El-Zhar 10 MAR RM -#> 274 /en/players/375a669e/Dani-Ojeda 7 ESP RM -#> 275 /en/players/1a317a1b/Raul-Garcia 14 ESP LB -#> 276 /en/players/92d38e6c/Dimitris-Siovas 22 GRE CB -#> 277 /en/players/e4b8c5b6/Ezequiel-Munoz 19 ARG CB -#> 278 /en/players/9ba48d64/Juanfran 2 ESP RB -#> 279 /en/players/75751c99/Ivan-Cuellar 1 ESP GK -#> 280 /en/players/02319ad7/Jaime-Mata 7 ESP FW -#> 281 /en/players/43f71e77/Jorge-Molina 19 ESP FW -#> 282 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW -#> 283 /en/players/69cbc8b6/Leandro-Cabrera 6 URU LB -#> 284 /en/players/8e010ff4/Francisco-Portillo 8 ESP LM,RM -#> 285 /en/players/00b28772/Nemanja-Maksimovic 20 SRB CM -#> 286 /en/players/58afe001/Mauro-Arambarri 18 URU CM -#> 287 /en/players/3d7e48ce/Ivan-Alejo 23 ESP RM -#> 288 /en/players/f3b1d9a2/Amath 11 SEN LM,FW -#> 289 /en/players/3e4f735d/Vitorino-Antunes 3 POR LB,LM -#> 290 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB -#> 291 /en/players/a4971d84/Djene 2 TOG CB -#> 292 /en/players/ba5004e1/Damian-Suarez 22 URU RB -#> 293 /en/players/8f8c6934/David-Soria 13 ESP GK -#> 294 /en/players/bb4b1242/Sergi-Enrich 9 ESP FW -#> 295 /en/players/e897d8ba/Kike 17 ESP FW -#> 296 /en/players/c4b8bcf4/Charles 19 BRA FW -#> 297 /en/players/335039a2/Pere-Milla 22 ESP LM -#> 298 /en/players/ba5a9545/Pablo-Hervias 18 ESP RM -#> 299 /en/players/7329018e/Papakouli-Diop 8 SEN CM -#> 300 /en/players/3f79a1c8/Gonzalo-Escalante 5 ARG CM -#> 301 /en/players/2a0c8ba4/Joan-Jordan 24 ESP RM,LM -#> 302 /en/players/d8712bf9/Bebe 10 CPV LM -#> 303 /en/players/3024e383/Jose-Angel 15 ESP LB -#> 304 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP CB -#> 305 /en/players/a8fbae1d/Paulo-Oliveira 12 POR CB -#> 306 /en/players/1f079188/Ruben-Pena 11 ESP RB -#> 307 /en/players/ac295d9e/Marko-Dmitrovic 25 SRB GK -#> 308 /en/players/8f898ba8/Guido-Carrillo 9 ARG FW -#> 309 /en/players/aec0fb6f/Javier-Eraso 17 ESP FW -#> 310 /en/players/3cb6f224/Michael-Santos 20 URU FW,LW,RW -#> 311 /en/players/375a669e/Dani-Ojeda 7 ESP LM -#> 312 /en/players/d1491e00/Diego-Rolan 4 URU LM,LW -#> 313 /en/players/ac454a4f/Gerard-Gumbau 6 ESP CM -#> 314 /en/players/3c7bc9bd/Ruben-Perez 21 ESP CM -#> 315 /en/players/37f96552/Nabil-El-Zhar 10 MAR RM -#> 316 /en/players/f2308b33/Jonathan-Silva 5 ARG LB,CB -#> 317 /en/players/92d38e6c/Dimitris-Siovas 22 GRE CB -#> 318 /en/players/e4b8c5b6/Ezequiel-Munoz 19 ARG CB -#> 319 /en/players/04e17fd5/Youssef-En-Nesyri 26 MAR RW,CB -#> 320 /en/players/9ba48d64/Juanfran 2 ESP RB,CB -#> 321 /en/players/75751c99/Ivan-Cuellar 1 ESP GK -#> 322 /en/players/d87e2cae/Willian-Jose 12 BRA FW -#> 323 /en/players/84399660/Juanmi 7 ESP FW,RW,LW -#> 324 /en/players/d9bda115/David-Zurutuza 17 ESP LM -#> 325 /en/players/d080ed5e/Mikel-Merino 8 ESP AM -#> 326 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP CM,DM -#> 327 /en/players/5c7845f6/Igor-Zubeldia 5 ESP CM,DM -#> 328 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP RM,RW -#> 329 /en/players/2306bfde/Ruben-Pardo 14 ESP LW -#> 330 /en/players/d4c9725f/Theo-Hernandez 19 FRA LB -#> 331 /en/players/5d311e8d/Hector-Moreno 6 MEX CB -#> 332 /en/players/bba30585/Diego-Llorente 3 ESP CB -#> 333 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP CB -#> 334 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP RB -#> 335 /en/players/625c144a/Geronimo-Rulli 1 ARG GK -#> 336 /en/players/19b776e9/Ruben-Sobrino 7 ESP FW -#> 337 /en/players/45e304c8/Burgui 14 ESP FW -#> 338 /en/players/8c44e37b/Borja-Baston 18 ESP FW -#> 339 /en/players/99bebd12/John-Guidetti 10 SWE FW -#> 340 /en/players/244f57b9/Jony 23 ESP LM -#> 341 /en/players/e3993b65/Patrick-Twumasi 24 GHA LM -#> 342 /en/players/05a4465d/Manu-Garcia 19 ESP CM -#> 343 /en/players/999908af/Wakaso 22 GHA CM -#> 344 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RM -#> 345 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB -#> 346 /en/players/d9764034/Guillermo-Maripan 6 CHI CB -#> 347 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB -#> 348 /en/players/355c883a/Martin-Agirregabiria 21 ESP RB -#> 349 /en/players/97852360/Fernando-Pacheco 1 ESP GK -#> 350 /en/players/3aa4a3be/Loren-Moron 16 ESP FW,AM -#> 351 /en/players/61bd33d0/Takashi-Inui 8 JPN AM -#> 352 /en/players/0a447501/Antonio-Sanabria 9 PAR AM,FW -#> 353 /en/players/a6de370d/Sergio-Canales 6 ESP AM,CM -#> 354 /en/players/dee86451/William-Carvalho 14 POR CM -#> 355 /en/players/1001ae82/Ryad-Boudebouz 10 ALG AM,CM -#> 356 /en/players/ef322658/Andres-Guardado 18 MEX CM -#> 357 /en/players/24f59bb2/Junior-Firpo 20 ESP WB -#> 358 /en/players/59d53e8a/Francis-Guerrero 2 ESP WB -#> 359 /en/players/72a99e38/Cristian-Tello 11 ESP WB -#> 360 /en/players/89151b16/Zouhair-Feddal 4 MAR CB -#> 361 /en/players/b742cc0d/Marc-Bartra 5 ESP CB -#> 362 /en/players/fbd6378b/Aissa-Mandi 23 ALG CB -#> 363 /en/players/20b9f052/Pau-Lopez 13 ESP GK -#> 364 /en/players/a190d597/Diego-Costa 19 ESP FW -#> 365 /en/players/df69b544/Antoine-Griezmann 7 FRA FW -#> 366 /en/players/3ef0fa48/Gelson-Martins 18 POR RW -#> 367 /en/players/4dbd0916/Thomas-Lemar 11 FRA LM,LW,RM -#> 368 /en/players/c14bc029/Saul-Niguez 8 ESP CM -#> 369 /en/players/6434f10d/Rodri 14 ESP CM -#> 370 /en/players/01eb744d/Angel-Correa 10 ARG RM -#> 371 /en/players/55126f3b/Koke 6 ESP CM,LM -#> 372 /en/players/c3ee18ef/Lucas-Hernandez 21 FRA LB -#> 373 /en/players/fc4f85b1/Diego-Godin 2 URU CB -#> 374 /en/players/f6ac68c1/Stefan-Savic 15 MNE CB -#> 375 /en/players/cfd8d664/Juanfran 20 ESP RB -#> 376 /en/players/529f49ab/Thomas-Partey 5 GHA RB -#> 377 /en/players/ee8508c0/Jan-Oblak 13 SVN GK -#> 378 /en/players/db8f0eba/Adri-Embarba 11 ESP FW,LM,RM -#> 379 /en/players/90bbd822/Alvaro-Garcia 18 ESP LM -#> 380 /en/players/014b57f5/Sergio-Moreno 29 ESP FW -#> 381 /en/players/5ae499d0/Santi-Comesana 27 ESP CM -#> 382 /en/players/fc8b614b/Jose-Pozo 22 ESP RM,FW,CM -#> 383 /en/players/fc647b34/Oscar-Trejo 8 ARG CM -#> 384 /en/players/5b1bf5e3/Gael-Kakuta 10 COD RM -#> 385 /en/players/31223bcf/Alvaro-Medran 4 ESP CM,RM -#> 386 /en/players/7b309e55/Gorka-Elustondo 6 ESP DM -#> 387 /en/players/16e9d0ea/Alex-Moreno 7 ESP LB -#> 388 /en/players/d70a2141/Jordi-Amat 16 IDN CB -#> 389 /en/players/1f54ed90/Abdoulaye-Ba 21 SEN CB -#> 390 /en/players/cacadf4f/Luis-Advincula 17 PER RB -#> 391 /en/players/17d9e354/Alberto-Garcia 1 ESP GK -#> 392 /en/players/7c388b20/Oscar-Plano 10 ESP FW,LM -#> 393 /en/players/f8eca1b6/Enes-Unal 9 TUR FW -#> 394 /en/players/8b0b02c9/Duje-Cop 20 CRO FW -#> 395 /en/players/636eae97/Toni-Villa 19 ESP AM,LM -#> 396 /en/players/d3298c99/Daniele-Verde 11 ITA FW -#> 397 /en/players/036bba5f/Ruben-Alcaraz 14 ESP LM,CM -#> 398 /en/players/9127f9ce/Borja-Fernandez 8 ESP CM -#> 399 /en/players/1512328c/Keko 24 ESP RM -#> 400 /en/players/c93231dc/Anuar 23 MAR RM,CM -#> 401 /en/players/e29d1111/Nacho 22 ESP LB -#> 402 /en/players/41b3069f/Fernando-Calero 5 ESP CB -#> 403 /en/players/72b07a9c/Kiko-Olivas 4 ESP CB -#> 404 /en/players/933e8c8a/Javi-Moyano 17 ESP RB -#> 405 /en/players/8fae77ea/Jordi-Masip 1 ESP GK -#> 406 /en/players/a6154613/Luis-Suarez 9 URU FW -#> 407 /en/players/8696bc90/Munir-El-Haddadi 19 MAR FW -#> 408 /en/players/b19db005/Ousmane-Dembele 11 FRA LW -#> 409 /en/players/67cdbc0e/Arturo-Vidal 22 CHI RM -#> 410 /en/players/d70ce98e/Lionel-Messi 10 ARG RW,FW -#> 411 /en/players/0ef89a37/Philippe-Coutinho 7 BRA LM -#> 412 /en/players/6853490f/Malcom 14 BRA LM -#> 413 /en/players/5ab0ea87/Sergio-Busquets 5 ESP CM -#> 414 /en/players/89f951b5/Ivan-Rakitic 4 CRO RM,CM -#> 415 /en/players/4601e194/Jordi-Alba 18 ESP LB -#> 416 /en/players/3eed9821/Samuel-Umtiti 23 FRA CB -#> 417 /en/players/adfc9123/Gerard-Pique 3 ESP CB -#> 418 /en/players/335fa267/Sergi-Roberto 20 ESP RB -#> 419 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER GK -#> 420 /en/players/75645f0e/Borja-Iglesias 7 ESP FW -#> 421 /en/players/2bee98fd/Sergio-Garcia 9 ESP LM -#> 422 /en/players/e1cea3f7/Hernan-Perez 17 PAR RM,LM -#> 423 /en/players/1b17ed86/Esteban-Granero 23 ESP CM -#> 424 /en/players/ad4d0985/Victor-Sanchez 4 ESP CM -#> 425 /en/players/070a3904/Sergi-Darder 10 ESP CM -#> 426 /en/players/35f6db55/Leo-Baptistao 11 BRA RM -#> 427 /en/players/48e89655/Pablo-Piatti 19 ARG LM,RM -#> 428 /en/players/da27e268/Marc-Roca 21 ESP DM -#> 429 /en/players/bad38a94/Didac-Vila 12 ESP LB -#> 430 /en/players/555f3a0b/Mario-Hermoso 22 ESP CB -#> 431 /en/players/f03f284b/David-Lopez 15 ESP CB -#> 432 /en/players/ffad706e/Javi-Lopez 16 ESP RB -#> 433 /en/players/73683fa9/Diego-Lopez 13 ESP GK -#> 434 /en/players/0b90bb97/Santi-Mina 22 ESP FW -#> 435 /en/players/42276181/Kevin-Gameiro 9 FRA FW -#> 436 /en/players/1fb1c435/Rodrigo 19 ESP FW -#> 437 /en/players/2973d8ff/Michy-Batshuayi 23 BEL FW -#> 438 /en/players/d83bbc54/Daniel-Wass 18 DEN LM -#> 439 /en/players/0ac94a23/Denis-Cheryshev 11 RUS LM -#> 440 /en/players/cce181df/Geoffrey-Kondogbia 6 CTA CM -#> 441 /en/players/7460ca0d/Daniel-Parejo 10 ESP CM -#> 442 /en/players/fed17f5a/Carlos-Soler 8 ESP RM -#> 443 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP LB -#> 444 /en/players/d2110326/Mouctar-Diakhaby 12 GUI CB -#> 445 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA CB -#> 446 /en/players/32c0491f/Cristiano-Piccini 21 ITA RB -#> 447 /en/players/a9dc785c/Neto 13 BRA GK -#> 448 /en/players/38699c72/Anthony-Lozano 19 HON FW -#> 449 /en/players/220c11f1/Cristhian-Stuani 7 URU FW -#> 450 /en/players/e7f4603c/Borja-Garcia 10 ESP LW -#> 451 /en/players/1bda5842/Portu 9 ESP RW -#> 452 /en/players/a25250f8/Alex-Granell 6 ESP LM,RM -#> 453 /en/players/174651c8/David-Timor 24 ESP CM -#> 454 /en/players/29b61deb/Pere-Pons 8 ESP RM -#> 455 /en/players/a10361d2/Aleix-Garcia 23 ESP LM -#> 456 /en/players/4db76f57/Marc-Muniesa 20 ESP LB -#> 457 /en/players/4242011c/Bernardo-Espinosa 2 COL CB -#> 458 /en/players/1633fc8a/Juanpe 15 ESP CB -#> 459 /en/players/27d0a506/Pedro-Porro 29 ESP RB -#> 460 /en/players/5890cef1/Aday 11 ESP RB -#> 461 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK -#> 462 /en/players/70d74ece/Karim-Benzema 9 FRA FW -#> 463 /en/players/45af8a54/Marco-Asensio 20 ESP LW,RW -#> 464 /en/players/a58bb1e1/Gareth-Bale 11 WAL RW -#> 465 /en/players/fd51b456/Lucas-Vazquez 17 ESP LW,RW -#> 466 /en/players/a0b4bb3e/Isco 22 ESP AM -#> 467 /en/players/6025fab1/Luka-Modric 10 CRO AM -#> 468 /en/players/6ce1f46f/Toni-Kroos 8 GER DM -#> 469 /en/players/4d224fe8/Casemiro 14 BRA DM -#> 470 /en/players/603116a7/Marcelo 12 BRA LB -#> 471 /en/players/9f8e9423/Raphael-Varane 5 FRA CB -#> 472 /en/players/08511d65/Sergio-Ramos 4 ESP CB -#> 473 /en/players/2946f9a1/Nacho 6 ESP CB,LB -#> 474 /en/players/4958bfb2/Dani-Carvajal 2 ESP RB -#> 475 /en/players/ecada4fc/Keylor-Navas 1 CRC GK -#> 476 /en/players/3effaa34/Andre-Silva 12 POR FW -#> 477 /en/players/467bae22/Franco-Vazquez 22 ARG AM -#> 478 /en/players/04965583/Aleix-Vidal 11 ESP AM,WB -#> 479 /en/players/9744ff80/Pablo-Sarabia 17 ESP AM -#> 480 /en/players/fa937f7a/Ever-Banega 10 ARG CM -#> 481 /en/players/b8c1de25/Maxime-Gonalons 15 FRA CM -#> 482 /en/players/7c4243d4/Roque-Mesa 7 ESP CM -#> 483 /en/players/b0616e3d/Sergio-Escudero 18 ESP WB -#> 484 /en/players/942b4f90/Wissam-Ben-Yedder 9 FRA AM -#> 485 /en/players/3f10bd22/Jesus-Navas 16 ESP WB -#> 486 /en/players/bc6f5f06/Sergi-Gomez 3 ESP CB -#> 487 /en/players/8b8a56ce/Simon-Kjaer 4 DEN CB -#> 488 /en/players/bf97c188/Gabriel-Mercado 25 ARG CB -#> 489 /en/players/7b456af7/Tomas-Vaclik 1 CZE GK -#> 490 /en/players/5ceba7fc/Karl-Toko-Ekambi 17 CMR FW -#> 491 /en/players/808d48f3/Jaume-Costa 11 ESP LB -#> 492 /en/players/81f0781e/Gerard-Moreno 7 ESP FW -#> 493 /en/players/82927de4/Pablo-Fornals 8 ESP AM -#> 494 /en/players/09a9e921/Carlos-Bacca 9 COL FW -#> 495 /en/players/963829d0/Manu-Trigueros 14 ESP LM,CM -#> 496 /en/players/e2e9c250/Santi-Cazorla 19 ESP RM -#> 497 /en/players/ea6a7ab4/Dani-Raba 22 ESP RM -#> 498 /en/players/958bba56/Santiago-Caseres 5 ARG DM,CM -#> 499 /en/players/63f04c6c/Alfonso-Pedraza 16 ESP LB,LM -#> 500 /en/players/b3dc6eca/Victor-Ruiz 6 ESP CB -#> 501 /en/players/42dcf26d/Alvaro-Gonzalez 3 ESP CB -#> 502 /en/players/fb5d47b3/Mario-Gaspar 2 ESP RB -#> 503 /en/players/9f0ea33f/Sergio-Asenjo 1 ESP GK -#> 504 /en/players/0ae4e09a/Roger-Marti 9 ESP FW,RW -#> 505 /en/players/4a478107/Jose-Luis-Morales 11 ESP LW,AM -#> 506 /en/players/9038c2a1/Jason 23 ESP RW -#> 507 /en/players/525f9bf4/Raphael-Dwamena 20 GHA FW,RW -#> 508 /en/players/cac2537b/Enis-Bardhi 10 MKD AM -#> 509 /en/players/ecd8c01e/Ruben-Rochina 16 ESP LW -#> 510 /en/players/e208bcc8/Cheick-Doukoure 5 CIV DM -#> 511 /en/players/51c30111/Sanjin-Prcic 8 BIH DM -#> 512 /en/players/61220da2/Jose-Campana 24 ESP DM -#> 513 /en/players/d4ef9ac5/Tono 3 ESP LB -#> 514 /en/players/c00097d2/Rober 4 ESP CB -#> 515 /en/players/474ecac8/Sergio-Postigo 15 ESP CB -#> 516 /en/players/6d8f8441/Coke 12 ESP RB -#> 517 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK -#> 518 /en/players/4c2e9442/Maxi-Gomez 9 URU FW -#> 519 /en/players/7f8fb807/Dennis-Eckert 32 GER FW -#> 520 /en/players/fd9c4805/Pione-Sisto 11 DEN LW -#> 521 /en/players/e49ce451/Okay-Yokuslu 5 TUR CM -#> 522 /en/players/7dcf86f6/Iago-Aspas 10 ESP RW -#> 523 /en/players/b0c71810/Sofiane-Boufal 19 MAR RW,FW -#> 524 /en/players/b18a3023/Junior-Alonso 25 PAR LM,LB -#> 525 /en/players/ed5c5fa3/Fran-Beltran 8 ESP CM -#> 526 /en/players/e1cbb531/Stanislav-Lobotka 14 SVK CM -#> 527 /en/players/cb574619/Hugo-Mallo 2 ESP RM,RB -#> 528 /en/players/27a013f7/Nestor-Araujo 4 MEX CB -#> 529 /en/players/92b4a127/Gustavo-Cabral 22 ARG CB -#> 530 /en/players/51e3954c/Facundo-Roncaglia 24 ARG CB -#> 531 /en/players/8875b8c9/Sergio-Alvarez 1 ESP GK -#> 532 /en/players/6a99e0b1/Inaki-Williams 9 GHA FW,LM -#> 533 /en/players/49ea92be/Inigo-Cordoba 11 ESP LM -#> 534 /en/players/6dce77a5/Ander-Iturraspe 8 ESP LM,DM -#> 535 /en/players/c05dfb74/Iker-Muniain 10 ESP CM -#> 536 /en/players/b418dbd4/Raul-Garcia 22 ESP CM,RM -#> 537 /en/players/6fd1ba62/Markel-Susaeta 14 ESP RM -#> 538 /en/players/6b5ea2f4/Gorka-Guruzeta 30 ESP FW,RM -#> 539 /en/players/240d3a0b/Dani-Garcia 16 ESP DM,CM -#> 540 /en/players/b6e50615/Yuri-Berchiche 12 ESP LB -#> 541 /en/players/857cb4f3/Peru-Nolaskoain 31 ESP CB -#> 542 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP CB -#> 543 /en/players/9f323c71/Oscar-de-Marcos 18 ESP RB -#> 544 /en/players/37f1cf47/Ander-Capa 21 ESP RB -#> 545 /en/players/5dcf3e90/Unai-Simon 25 ESP GK -#> 546 /en/players/1163de29/Samuele-Longo 12 ITA FW -#> 547 /en/players/253a06b9/Ezequiel-Avila 19 ARG FW -#> 548 /en/players/71b47ab9/Cucho 9 COL FW -#> 549 /en/players/5a626448/Moi-Gomez 6 ESP LM -#> 550 /en/players/8970907e/David-Ferreiro 7 ESP LM -#> 551 /en/players/3902e91b/Gonzalo-Melero 8 ESP CM -#> 552 /en/players/74e0a984/Damian-Musto 23 ARG CM -#> 553 /en/players/36d5469c/Alex-Gallar 11 ESP RM -#> 554 /en/players/8d2ad5c0/Serdar-Gurler 21 TUR RM -#> 555 /en/players/a7f00c8c/Luisinho 16 POR LB -#> 556 /en/players/4a895384/Xabier-Etxeita 3 ESP CB -#> 557 /en/players/978cd030/Jorge-Pulido 14 ESP CB -#> 558 /en/players/7f4c7c9f/Jorge-Miramon 24 ESP RB -#> 559 /en/players/c0b1a6da/Axel-Werner 1 ARG GK -#> 560 /en/players/02319ad7/Jaime-Mata 7 ESP FW -#> 561 /en/players/43f71e77/Jorge-Molina 19 ESP FW -#> 562 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW -#> 563 /en/players/32974271/Sergi-Guardiola 14 ESP FW -#> 564 /en/players/3d7e48ce/Ivan-Alejo 23 ESP LM -#> 565 /en/players/f3b1d9a2/Amath 11 SEN LM -#> 566 /en/players/00b28772/Nemanja-Maksimovic 20 SRB CM -#> 567 /en/players/58afe001/Mauro-Arambarri 18 URU CM -#> 568 /en/players/8e010ff4/Francisco-Portillo 8 ESP RM -#> 569 /en/players/3e4f735d/Vitorino-Antunes 3 POR LB -#> 570 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB -#> 571 /en/players/a4971d84/Djene 2 TOG CB -#> 572 /en/players/ba5004e1/Damian-Suarez 22 URU RB -#> 573 /en/players/8f8c6934/David-Soria 13 ESP GK -#> 574 /en/players/f8eca1b6/Enes-Unal 9 TUR FW -#> 575 /en/players/8b0b02c9/Duje-Cop 20 CRO FW -#> 576 /en/players/636eae97/Toni-Villa 19 ESP LW -#> 577 /en/players/418f8f61/Michel 21 ESP FW -#> 578 /en/players/1512328c/Keko 24 ESP RW -#> 579 /en/players/d3298c99/Daniele-Verde 11 ITA RM,RW -#> 580 /en/players/7c388b20/Oscar-Plano 10 ESP AM,LM -#> 581 /en/players/036bba5f/Ruben-Alcaraz 14 ESP DM,CM -#> 582 /en/players/c93231dc/Anuar 23 MAR DM,CM -#> 583 /en/players/e29d1111/Nacho 22 ESP LB -#> 584 /en/players/41b3069f/Fernando-Calero 5 ESP CB -#> 585 /en/players/72b07a9c/Kiko-Olivas 4 ESP CB -#> 586 /en/players/933e8c8a/Javi-Moyano 17 ESP RB -#> 587 /en/players/8fae77ea/Jordi-Masip 1 ESP GK -#> 588 /en/players/5ceba7fc/Karl-Toko-Ekambi 17 CMR FW,RM -#> 589 /en/players/7eb97a8e/Nicola-Sansone 10 ITA RM -#> 590 /en/players/81f0781e/Gerard-Moreno 7 ESP FW -#> 591 /en/players/963829d0/Manu-Trigueros 14 ESP AM,CM -#> 592 /en/players/82927de4/Pablo-Fornals 8 ESP LM -#> 593 /en/players/e2e9c250/Santi-Cazorla 19 ESP RM,CM -#> 594 /en/players/ad6295d4/Miguel-Layun 24 MEX CM -#> 595 /en/players/958bba56/Santiago-Caseres 5 ARG DM -#> 596 /en/players/09a9e921/Carlos-Bacca 9 COL FW -#> 597 /en/players/63f04c6c/Alfonso-Pedraza 16 ESP LB -#> 598 /en/players/b3dc6eca/Victor-Ruiz 6 ESP CB -#> 599 /en/players/42dcf26d/Alvaro-Gonzalez 3 ESP CB -#> 600 /en/players/fb5d47b3/Mario-Gaspar 2 ESP RB -#> 601 /en/players/9f0ea33f/Sergio-Asenjo 1 ESP GK -#> 602 /en/players/220c11f1/Cristhian-Stuani 7 URU FW -#> 603 /en/players/e7f4603c/Borja-Garcia 10 ESP LW,AM -#> 604 /en/players/59d93937/Patrick-Roberts 17 ENG AM -#> 605 /en/players/38699c72/Anthony-Lozano 19 HON RW -#> 606 /en/players/a10361d2/Aleix-Garcia 23 ESP AM -#> 607 /en/players/5890cef1/Aday 11 ESP LM,WB -#> 608 /en/players/4db76f57/Marc-Muniesa 20 ESP WB -#> 609 /en/players/a25250f8/Alex-Granell 6 ESP CM -#> 610 /en/players/29b61deb/Pere-Pons 8 ESP CM -#> 611 /en/players/27d0a506/Pedro-Porro 29 ESP RM,WB -#> 612 /en/players/1633fc8a/Juanpe 15 ESP CB -#> 613 /en/players/4242011c/Bernardo-Espinosa 2 COL CB -#> 614 /en/players/ba71d071/Pedro-Alcala 5 ESP CB -#> 615 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK -#> 616 /en/players/b92b456a/Marc-Cardona 7 ESP FW -#> 617 /en/players/c4b8bcf4/Charles 19 BRA FW -#> 618 /en/players/bb4b1242/Sergi-Enrich 9 ESP FW -#> 619 /en/players/335039a2/Pere-Milla 22 ESP LM -#> 620 /en/players/7329018e/Papakouli-Diop 8 SEN CM -#> 621 /en/players/88d91621/Sergio-Alvarez 6 ESP CM -#> 622 /en/players/c90977db/Fabian-Orellana 14 CHI RM -#> 623 /en/players/2a0c8ba4/Joan-Jordan 24 ESP RM -#> 624 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP CB,LB -#> 625 /en/players/697295b1/Pedro-Bigas 3 ESP CB -#> 626 /en/players/3024e383/Jose-Angel 15 ESP LB -#> 627 /en/players/a8fbae1d/Paulo-Oliveira 12 POR CB -#> 628 /en/players/1f079188/Ruben-Pena 11 ESP RB -#> 629 /en/players/ac295d9e/Marko-Dmitrovic 1 SRB GK -#> 630 /en/players/d87e2cae/Willian-Jose 12 BRA FW -#> 631 /en/players/debc6b55/Jon-Bautista 21 ESP FW -#> 632 /en/players/84399660/Juanmi 7 ESP FW -#> 633 /en/players/d9bda115/David-Zurutuza 17 ESP CM,FW,LM -#> 634 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP LM,FW -#> 635 /en/players/5c7845f6/Igor-Zubeldia 5 ESP CM -#> 636 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP CM -#> 637 /en/players/ddd5348b/Martin-Merquelanz 16 ESP LM,CM -#> 638 /en/players/7958dc65/Luca-Sangalli 23 ESP RM -#> 639 /en/players/d4c9725f/Theo-Hernandez 19 FRA LB -#> 640 /en/players/5d311e8d/Hector-Moreno 6 MEX CB -#> 641 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP CB -#> 642 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP RB -#> 643 /en/players/625c144a/Geronimo-Rulli 1 ARG GK -#> 644 /en/players/4c2e9442/Maxi-Gomez 9 URU FW -#> 645 /en/players/fd9c4805/Pione-Sisto 11 DEN LW -#> 646 /en/players/e49ce451/Okay-Yokuslu 5 TUR LW -#> 647 /en/players/7dcf86f6/Iago-Aspas 10 ESP RW -#> 648 /en/players/b0c71810/Sofiane-Boufal 19 MAR RW -#> 649 /en/players/b18a3023/Junior-Alonso 25 PAR LM -#> 650 /en/players/ed5c5fa3/Fran-Beltran 8 ESP CM -#> 651 /en/players/e1cbb531/Stanislav-Lobotka 14 SVK CM -#> 652 /en/players/c9e39d91/Brais-Mendez 23 ESP CM -#> 653 /en/players/cb574619/Hugo-Mallo 2 ESP RM -#> 654 /en/players/27a013f7/Nestor-Araujo 4 MEX CB -#> 655 /en/players/92b4a127/Gustavo-Cabral 22 ARG CB -#> 656 /en/players/51e3954c/Facundo-Roncaglia 24 ARG CB -#> 657 /en/players/8875b8c9/Sergio-Alvarez 1 ESP GK -#> 658 /en/players/df69b544/Antoine-Griezmann 7 FRA FW,RM,AM,LM -#> 659 /en/players/a190d597/Diego-Costa 19 ESP FW -#> 660 /en/players/55126f3b/Koke 6 ESP LM,CM,DM -#> 661 /en/players/529f49ab/Thomas-Partey 5 GHA CM -#> 662 /en/players/4dbd0916/Thomas-Lemar 11 FRA LM,CM -#> 663 /en/players/c14bc029/Saul-Niguez 8 ESP CM,CB -#> 664 /en/players/01eb744d/Angel-Correa 10 ARG RM -#> 665 /en/players/d4931a5a/Nikola-Kalinic 9 CRO FW -#> 666 /en/players/e4ed2628/Filipe-Luis 3 BRA LB -#> 667 /en/players/fc4f85b1/Diego-Godin 2 URU CB -#> 668 /en/players/f0da930c/Jose-Maria-Gimenez 24 URU CB -#> 669 /en/players/fdd60087/Santiago-Arias 4 COL RB -#> 670 /en/players/f6ac68c1/Stefan-Savic 15 MNE RB -#> 671 /en/players/ee8508c0/Jan-Oblak 13 SVN GK -#> 672 /en/players/70d74ece/Karim-Benzema 9 FRA FW -#> 673 /en/players/45af8a54/Marco-Asensio 20 ESP LW -#> 674 /en/players/c0617e2b/Dani-Ceballos 24 ESP LW -#> 675 /en/players/a58bb1e1/Gareth-Bale 11 WAL RW -#> 676 /en/players/fd51b456/Lucas-Vazquez 17 ESP RW -#> 677 /en/players/6ce1f46f/Toni-Kroos 8 GER LM -#> 678 /en/players/4d224fe8/Casemiro 14 BRA CM -#> 679 /en/players/6025fab1/Luka-Modric 10 CRO RM -#> 680 /en/players/a0b4bb3e/Isco 22 ESP RM -#> 681 /en/players/603116a7/Marcelo 12 BRA LB -#> 682 /en/players/08511d65/Sergio-Ramos 4 ESP CB -#> 683 /en/players/9f8e9423/Raphael-Varane 5 FRA CB -#> 684 /en/players/4958bfb2/Dani-Carvajal 2 ESP RB -#> 685 /en/players/1840e36d/Thibaut-Courtois 25 BEL GK -#> 686 /en/players/8f898ba8/Guido-Carrillo 9 ARG FW -#> 687 /en/players/3cb6f224/Michael-Santos 20 URU LM,FW,LW -#> 688 /en/players/d1491e00/Diego-Rolan 4 URU LM -#> 689 /en/players/37f96552/Nabil-El-Zhar 10 MAR LM,RW,RM -#> 690 /en/players/04e17fd5/Youssef-En-Nesyri 26 MAR RM -#> 691 /en/players/ac454a4f/Gerard-Gumbau 6 ESP CM -#> 692 /en/players/3c7bc9bd/Ruben-Perez 21 ESP CM -#> 693 /en/players/aec0fb6f/Javier-Eraso 17 ESP RM,CM,FW -#> 694 /en/players/b0fce72c/Mikel-Vesga 23 ESP FW -#> 695 /en/players/f2308b33/Jonathan-Silva 5 ARG LB -#> 696 /en/players/92d38e6c/Dimitris-Siovas 22 GRE CB -#> 697 /en/players/f3112790/Unai-Bustinza 3 ESP CB -#> 698 /en/players/9ba48d64/Juanfran 2 ESP RB -#> 699 /en/players/75751c99/Ivan-Cuellar 1 ESP GK -#> 700 /en/players/0ae4e09a/Roger-Marti 9 ESP FW -#> 701 /en/players/2e23c66b/Emmanuel-Boateng 21 GHA FW -#> 702 /en/players/525f9bf4/Raphael-Dwamena 20 GHA FW -#> 703 /en/players/cac2537b/Enis-Bardhi 10 MKD LM -#> 704 /en/players/61220da2/Jose-Campana 24 ESP CM -#> 705 /en/players/51c30111/Sanjin-Prcic 8 BIH CM -#> 706 /en/players/9038c2a1/Jason 23 ESP CM -#> 707 /en/players/4a478107/Jose-Luis-Morales 11 ESP RM -#> 708 /en/players/d4ef9ac5/Tono 3 ESP LB -#> 709 /en/players/7f203b54/Chema 6 ESP CB -#> 710 /en/players/474ecac8/Sergio-Postigo 15 ESP CB -#> 711 /en/players/c00097d2/Rober 4 ESP CB -#> 712 /en/players/6d8f8441/Coke 12 ESP RB -#> 713 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK -#> 714 /en/players/42276181/Kevin-Gameiro 9 FRA FW -#> 715 /en/players/2973d8ff/Michy-Batshuayi 23 BEL FW -#> 716 /en/players/1fb1c435/Rodrigo 19 ESP FW -#> 717 /en/players/0ac94a23/Denis-Cheryshev 11 RUS LM -#> 718 /en/players/9e1035f8/Ferran-Torres 20 ESP LM -#> 719 /en/players/d83bbc54/Daniel-Wass 18 DEN CM -#> 720 /en/players/7460ca0d/Daniel-Parejo 10 ESP CM -#> 721 /en/players/fed17f5a/Carlos-Soler 8 ESP RM -#> 722 /en/players/0b90bb97/Santi-Mina 22 ESP RM -#> 723 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP LB -#> 724 /en/players/d2110326/Mouctar-Diakhaby 12 GUI CB -#> 725 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA CB -#> 726 /en/players/32c0491f/Cristiano-Piccini 21 ITA RB -#> 727 /en/players/a9dc785c/Neto 13 BRA GK -#> 728 /en/players/19b776e9/Ruben-Sobrino 7 ESP FW -#> 729 /en/players/8c44e37b/Borja-Baston 18 ESP FW -#> 730 /en/players/99bebd12/John-Guidetti 10 SWE FW -#> 731 /en/players/244f57b9/Jony 23 ESP LM -#> 732 /en/players/b7f2edff/Adrian-Marin 17 ESP LM -#> 733 /en/players/05a4465d/Manu-Garcia 19 ESP CM -#> 734 /en/players/999908af/Wakaso 22 GHA CM -#> 735 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RM -#> 736 /en/players/8db394aa/Ximo-Navarro 15 ESP RM -#> 737 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB -#> 738 /en/players/d9764034/Guillermo-Maripan 6 CHI CB -#> 739 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB -#> 740 /en/players/355c883a/Martin-Agirregabiria 21 ESP RB -#> 741 /en/players/97852360/Fernando-Pacheco 1 ESP GK -#> 742 /en/players/75645f0e/Borja-Iglesias 7 ESP FW -#> 743 /en/players/2bee98fd/Sergio-Garcia 9 ESP LW,FW -#> 744 /en/players/35f6db55/Leo-Baptistao 11 BRA RW,RM -#> 745 /en/players/070a3904/Sergi-Darder 10 ESP LM,CM -#> 746 /en/players/da27e268/Marc-Roca 21 ESP CM -#> 747 /en/players/48e89655/Pablo-Piatti 19 ARG LM,CM -#> 748 /en/players/1b17ed86/Esteban-Granero 23 ESP RM -#> 749 /en/players/379652be/Oscar-Melendo 14 ESP RM,CM -#> 750 /en/players/bad38a94/Didac-Vila 12 ESP LB -#> 751 /en/players/555f3a0b/Mario-Hermoso 22 ESP CB -#> 752 /en/players/f03f284b/David-Lopez 15 ESP CB -#> 753 /en/players/ffad706e/Javi-Lopez 16 ESP RB -#> 754 /en/players/e1cea3f7/Hernan-Perez 17 PAR RB -#> 755 /en/players/73683fa9/Diego-Lopez 13 ESP GK -#> 756 /en/players/a6154613/Luis-Suarez 9 URU FW -#> 757 /en/players/b19db005/Ousmane-Dembele 11 FRA LW,RM -#> 758 /en/players/d70ce98e/Lionel-Messi 10 ARG RW,FW -#> 759 /en/players/0ef89a37/Philippe-Coutinho 7 BRA LM -#> 760 /en/players/5ab0ea87/Sergio-Busquets 5 ESP CM -#> 761 /en/players/48b3dd60/Arthur-Melo 8 BRA CM -#> 762 /en/players/89f951b5/Ivan-Rakitic 4 CRO RM -#> 763 /en/players/67cdbc0e/Arturo-Vidal 22 CHI CM,RM -#> 764 /en/players/4601e194/Jordi-Alba 18 ESP LB -#> 765 /en/players/3eed9821/Samuel-Umtiti 23 FRA CB -#> 766 /en/players/4f28a6ff/Clement-Lenglet 15 FRA CB -#> 767 /en/players/adfc9123/Gerard-Pique 3 ESP CB -#> 768 /en/players/335fa267/Sergi-Roberto 20 ESP RB -#> 769 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER GK -#> 770 /en/players/71b47ab9/Cucho 9 COL FW -#> 771 /en/players/253a06b9/Ezequiel-Avila 19 ARG FW -#> 772 /en/players/1163de29/Samuele-Longo 12 ITA FW -#> 773 /en/players/8d2ad5c0/Serdar-Gurler 21 TUR LM,FW -#> 774 /en/players/5a626448/Moi-Gomez 6 ESP LM,FW -#> 775 /en/players/3902e91b/Gonzalo-Melero 8 ESP CM -#> 776 /en/players/74e0a984/Damian-Musto 23 ARG CM -#> 777 /en/players/36d5469c/Alex-Gallar 11 ESP RM -#> 778 /en/players/c904f3d5/Ruben-Semedo 4 POR CB -#> 779 /en/players/a7f00c8c/Luisinho 16 POR LB -#> 780 /en/players/4a895384/Xabier-Etxeita 3 ESP CB -#> 781 /en/players/978cd030/Jorge-Pulido 14 ESP CB,RB -#> 782 /en/players/7f4c7c9f/Jorge-Miramon 24 ESP RB,RM -#> 783 /en/players/c0b1a6da/Axel-Werner 1 ARG GK -#> 784 /en/players/3aa4a3be/Loren-Moron 16 ESP FW -#> 785 /en/players/0a447501/Antonio-Sanabria 9 PAR FW -#> 786 /en/players/61bd33d0/Takashi-Inui 8 JPN AM -#> 787 /en/players/a6de370d/Sergio-Canales 6 ESP AM -#> 788 /en/players/dee86451/William-Carvalho 14 POR CM -#> 789 /en/players/4c5b14d2/Joaquin 17 ESP AM -#> 790 /en/players/ef322658/Andres-Guardado 18 MEX CM -#> 791 /en/players/24f59bb2/Junior-Firpo 20 ESP WB -#> 792 /en/players/72a99e38/Cristian-Tello 11 ESP WB -#> 793 /en/players/89151b16/Zouhair-Feddal 4 MAR CB -#> 794 /en/players/b742cc0d/Marc-Bartra 5 ESP CB -#> 795 /en/players/b14d0c5d/Sidnei 12 BRA CB -#> 796 /en/players/fbd6378b/Aissa-Mandi 23 ALG CB -#> 797 /en/players/20b9f052/Pau-Lopez 13 ESP GK -#> 798 /en/players/3effaa34/Andre-Silva 12 POR FW -#> 799 /en/players/467bae22/Franco-Vazquez 22 ARG AM -#> 800 /en/players/b8c1de25/Maxime-Gonalons 15 FRA DM,CM -#> 801 /en/players/9744ff80/Pablo-Sarabia 17 ESP AM,DM,FW -#> 802 /en/players/7c4243d4/Roque-Mesa 7 ESP CM,DM -#> 803 /en/players/fa937f7a/Ever-Banega 10 ARG CM,DM -#> 804 /en/players/2b15a82a/Guilherme-Arana 23 BRA WB -#> 805 /en/players/04965583/Aleix-Vidal 11 ESP WB -#> 806 /en/players/3f10bd22/Jesus-Navas 16 ESP WB -#> 807 /en/players/bc6f5f06/Sergi-Gomez 3 ESP CB -#> 808 /en/players/8b8a56ce/Simon-Kjaer 4 DEN CB -#> 809 /en/players/b182a240/Quincy-Promes 21 NED AM,CB -#> 810 /en/players/bf97c188/Gabriel-Mercado 25 ARG CB -#> 811 /en/players/7b456af7/Tomas-Vaclik 1 CZE GK -#> 812 /en/players/1163de29/Samuele-Longo 12 ITA FW -#> 813 /en/players/71b47ab9/Cucho 9 COL FW -#> 814 /en/players/253a06b9/Ezequiel-Avila 19 ARG FW -#> 815 /en/players/5a626448/Moi-Gomez 6 ESP LM -#> 816 /en/players/8970907e/David-Ferreiro 7 ESP LM -#> 817 /en/players/3902e91b/Gonzalo-Melero 8 ESP CM -#> 818 /en/players/74e0a984/Damian-Musto 23 ARG CM -#> 819 /en/players/8d2ad5c0/Serdar-Gurler 21 TUR RM -#> 820 /en/players/36d5469c/Alex-Gallar 11 ESP RM -#> 821 /en/players/a7f00c8c/Luisinho 16 POR LB -#> 822 /en/players/c904f3d5/Ruben-Semedo 4 POR CB -#> 823 /en/players/978cd030/Jorge-Pulido 14 ESP CB -#> 824 /en/players/7f4c7c9f/Jorge-Miramon 24 ESP RB -#> 825 /en/players/c0b1a6da/Axel-Werner 1 ARG GK -#> 826 /en/players/02ef8778/Raul-de-Tomas 9 ESP FW -#> 827 /en/players/46166b49/Alex-Alegria 15 ESP FW -#> 828 /en/players/90bbd822/Alvaro-Garcia 18 ESP LW -#> 829 /en/players/db8f0eba/Adri-Embarba 11 ESP LW -#> 830 /en/players/5b1bf5e3/Gael-Kakuta 10 COD RW -#> 831 /en/players/d8712bf9/Bebe 14 CPV RW -#> 832 /en/players/fc647b34/Oscar-Trejo 8 ARG AM -#> 833 /en/players/b86fe156/Giannelli-Imbula 12 COD DM -#> 834 /en/players/7b309e55/Gorka-Elustondo 6 ESP DM -#> 835 /en/players/16e9d0ea/Alex-Moreno 7 ESP LB -#> 836 /en/players/d70a2141/Jordi-Amat 16 IDN CB -#> 837 /en/players/1f54ed90/Abdoulaye-Ba 21 SEN CB -#> 838 /en/players/cacadf4f/Luis-Advincula 17 PER RB -#> 839 /en/players/17d9e354/Alberto-Garcia 1 ESP GK -#> 840 /en/players/a190d597/Diego-Costa 19 ESP FW -#> 841 /en/players/4dbd0916/Thomas-Lemar 11 FRA LM -#> 842 /en/players/01eb744d/Angel-Correa 10 ARG RM,LM -#> 843 /en/players/c14bc029/Saul-Niguez 8 ESP CM -#> 844 /en/players/55126f3b/Koke 6 ESP CM,RM -#> 845 /en/players/df69b544/Antoine-Griezmann 7 FRA RM,FW,LM -#> 846 /en/players/6434f10d/Rodri 14 ESP DM,CM -#> 847 /en/players/bc39454c/Borja-Garces 32 ESP FW,CM -#> 848 /en/players/e4ed2628/Filipe-Luis 3 BRA LB -#> 849 /en/players/fc4f85b1/Diego-Godin 2 URU CB -#> 850 /en/players/f0da930c/Jose-Maria-Gimenez 24 URU CB -#> 851 /en/players/cfd8d664/Juanfran 20 ESP RB -#> 852 /en/players/ee8508c0/Jan-Oblak 13 SVN GK -#> 853 /en/players/c4b8bcf4/Charles 19 BRA FW -#> 854 /en/players/bb4b1242/Sergi-Enrich 9 ESP FW -#> 855 /en/players/335039a2/Pere-Milla 22 ESP LW -#> 856 /en/players/3f79a1c8/Gonzalo-Escalante 5 ARG AM -#> 857 /en/players/9ab48bde/Pablo-de-Blasis 16 ARG RW,LW -#> 858 /en/players/2a0c8ba4/Joan-Jordan 24 ESP AM,RW -#> 859 /en/players/88d91621/Sergio-Alvarez 6 ESP DM -#> 860 /en/players/7329018e/Papakouli-Diop 8 SEN DM -#> 861 /en/players/b92b456a/Marc-Cardona 7 ESP DM -#> 862 /en/players/3024e383/Jose-Angel 15 ESP LB -#> 863 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP CB -#> 864 /en/players/a8fbae1d/Paulo-Oliveira 12 POR CB -#> 865 /en/players/1f079188/Ruben-Pena 11 ESP RB -#> 866 /en/players/ac295d9e/Marko-Dmitrovic 1 SRB GK -#> 867 /en/players/84399660/Juanmi 7 ESP FW -#> 868 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP FW,RM -#> 869 /en/players/2306bfde/Ruben-Pardo 14 ESP AM -#> 870 /en/players/7958dc65/Luca-Sangalli 23 ESP AM -#> 871 /en/players/d9bda115/David-Zurutuza 17 ESP LM -#> 872 /en/players/debc6b55/Jon-Bautista 21 ESP FW -#> 873 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP RM,LM -#> 874 /en/players/d080ed5e/Mikel-Merino 8 ESP LM -#> 875 /en/players/5c7845f6/Igor-Zubeldia 5 ESP DM -#> 876 /en/players/d4c9725f/Theo-Hernandez 19 FRA LB -#> 877 /en/players/5d311e8d/Hector-Moreno 6 MEX CB -#> 878 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP CB -#> 879 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP RB -#> 880 /en/players/625c144a/Geronimo-Rulli 1 ARG GK -#> 881 /en/players/a6154613/Luis-Suarez 9 URU FW -#> 882 /en/players/b19db005/Ousmane-Dembele 11 FRA LW -#> 883 /en/players/67cdbc0e/Arturo-Vidal 22 CHI LM,LW -#> 884 /en/players/d70ce98e/Lionel-Messi 10 ARG RW -#> 885 /en/players/0c2ac3cb/Rafinha 12 BRA LM,RM -#> 886 /en/players/5ab0ea87/Sergio-Busquets 5 ESP RM -#> 887 /en/players/89f951b5/Ivan-Rakitic 4 CRO CM -#> 888 /en/players/335fa267/Sergi-Roberto 20 ESP RB,RM -#> 889 /en/players/4601e194/Jordi-Alba 18 ESP LB -#> 890 /en/players/3eed9821/Samuel-Umtiti 23 FRA CB -#> 891 /en/players/adfc9123/Gerard-Pique 3 ESP CB -#> 892 /en/players/d04b94db/Nelson-Semedo 2 POR RB -#> 893 /en/players/0ef89a37/Philippe-Coutinho 7 BRA LM,LW -#> 894 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER GK -#> 895 /en/players/1fb1c435/Rodrigo 19 ESP FW -#> 896 /en/players/42276181/Kevin-Gameiro 9 FRA FW -#> 897 /en/players/0ac94a23/Denis-Cheryshev 11 RUS LM -#> 898 /en/players/2973d8ff/Michy-Batshuayi 23 BEL LM -#> 899 /en/players/cce181df/Geoffrey-Kondogbia 6 CTA CM -#> 900 /en/players/d83bbc54/Daniel-Wass 18 DEN CM -#> 901 /en/players/7460ca0d/Daniel-Parejo 10 ESP CM -#> 902 /en/players/9e1035f8/Ferran-Torres 20 ESP RM -#> 903 /en/players/e6bc67d7/Goncalo-Guedes 7 POR RM -#> 904 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP LB -#> 905 /en/players/d2110326/Mouctar-Diakhaby 12 GUI CB -#> 906 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA CB -#> 907 /en/players/32c0491f/Cristiano-Piccini 21 ITA RB -#> 908 /en/players/c9cb972b/Jaume-Domenech 1 ESP GK -#> 909 /en/players/0a447501/Antonio-Sanabria 9 PAR FW -#> 910 /en/players/0a0cc13c/Sergio-Leon 7 ESP FW -#> 911 /en/players/61bd33d0/Takashi-Inui 8 JPN AM -#> 912 /en/players/4c5b14d2/Joaquin 17 ESP AM -#> 913 /en/players/1001ae82/Ryad-Boudebouz 10 ALG AM -#> 914 /en/players/d7553721/Giovani-Lo-Celso 21 ARG CM -#> 915 /en/players/ef322658/Andres-Guardado 18 MEX CM -#> 916 /en/players/a6de370d/Sergio-Canales 6 ESP CM,AM -#> 917 /en/players/24f59bb2/Junior-Firpo 20 ESP WB -#> 918 /en/players/59d53e8a/Francis-Guerrero 2 ESP WB -#> 919 /en/players/b14d0c5d/Sidnei 12 BRA CB -#> 920 /en/players/b742cc0d/Marc-Bartra 5 ESP CB -#> 921 /en/players/fbd6378b/Aissa-Mandi 23 ALG CB -#> 922 /en/players/20b9f052/Pau-Lopez 13 ESP GK -#> 923 /en/players/6a99e0b1/Inaki-Williams 9 GHA FW -#> 924 /en/players/003a5c72/Mikel-San-Jose 6 ESP DM,FW -#> 925 /en/players/c05dfb74/Iker-Muniain 10 ESP LW -#> 926 /en/players/37f1cf47/Ander-Capa 21 ESP RW -#> 927 /en/players/6fd1ba62/Markel-Susaeta 14 ESP RW,LW -#> 928 /en/players/b418dbd4/Raul-Garcia 22 ESP AM,FW -#> 929 /en/players/b037bd4f/Benat-Etxebarria 7 ESP DM -#> 930 /en/players/def69cd0/Mikel-Rico 17 ESP AM -#> 931 /en/players/240d3a0b/Dani-Garcia 16 ESP DM -#> 932 /en/players/b6e50615/Yuri-Berchiche 12 ESP LB -#> 933 /en/players/3fc45c73/Inigo-Martinez 4 ESP CB -#> 934 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP CB -#> 935 /en/players/9f323c71/Oscar-de-Marcos 18 ESP RB -#> 936 /en/players/5dcf3e90/Unai-Simon 25 ESP GK -#> 937 /en/players/70d74ece/Karim-Benzema 9 FRA FW -#> 938 /en/players/45af8a54/Marco-Asensio 20 ESP LW -#> 939 /en/players/a58bb1e1/Gareth-Bale 11 WAL RW -#> 940 /en/players/fd51b456/Lucas-Vazquez 17 ESP RW -#> 941 /en/players/c0617e2b/Dani-Ceballos 24 ESP LM -#> 942 /en/players/4d224fe8/Casemiro 14 BRA CM -#> 943 /en/players/6ce1f46f/Toni-Kroos 8 GER LM,CM -#> 944 /en/players/6025fab1/Luka-Modric 10 CRO RM -#> 945 /en/players/a0b4bb3e/Isco 22 ESP RM -#> 946 /en/players/603116a7/Marcelo 12 BRA LB -#> 947 /en/players/08511d65/Sergio-Ramos 4 ESP CB -#> 948 /en/players/9f8e9423/Raphael-Varane 5 FRA CB -#> 949 /en/players/4958bfb2/Dani-Carvajal 2 ESP RB -#> 950 /en/players/1840e36d/Thibaut-Courtois 25 BEL GK -#> 951 /en/players/8f898ba8/Guido-Carrillo 9 ARG FW -#> 952 /en/players/d1491e00/Diego-Rolan 4 URU LW -#> 953 /en/players/19709006/Oscar-Rodriguez-Arnaiz 27 ESP LW -#> 954 /en/players/37f96552/Nabil-El-Zhar 10 MAR RW -#> 955 /en/players/aec0fb6f/Javier-Eraso 17 ESP AM -#> 956 /en/players/3cb6f224/Michael-Santos 20 URU AM -#> 957 /en/players/3c7bc9bd/Ruben-Perez 21 ESP DM -#> 958 /en/players/ac454a4f/Gerard-Gumbau 6 ESP DM -#> 959 /en/players/f2308b33/Jonathan-Silva 5 ARG LB -#> 960 /en/players/92d38e6c/Dimitris-Siovas 22 GRE CB -#> 961 /en/players/f3112790/Unai-Bustinza 3 ESP CB -#> 962 /en/players/97572117/Allan-Nyom 12 CMR RB -#> 963 /en/players/9ba48d64/Juanfran 2 ESP RB -#> 964 /en/players/75751c99/Ivan-Cuellar 1 ESP GK -#> 965 /en/players/81f0781e/Gerard-Moreno 7 ESP FW -#> 966 /en/players/5ceba7fc/Karl-Toko-Ekambi 17 CMR FW -#> 967 /en/players/09a9e921/Carlos-Bacca 9 COL FW -#> 968 /en/players/ad6295d4/Miguel-Layun 24 MEX LM -#> 969 /en/players/a0255c67/Manu-Morlanes 28 ESP CM -#> 970 /en/players/000b3da6/Manuel-Iturra 20 CHI CM -#> 971 /en/players/963829d0/Manu-Trigueros 14 ESP CM -#> 972 /en/players/ea6a7ab4/Dani-Raba 22 ESP RM -#> 973 /en/players/82927de4/Pablo-Fornals 8 ESP RM -#> 974 /en/players/808d48f3/Jaume-Costa 11 ESP LB -#> 975 /en/players/b3dc6eca/Victor-Ruiz 6 ESP CB -#> 976 /en/players/42dcf26d/Alvaro-Gonzalez 3 ESP CB -#> 977 /en/players/fb5d47b3/Mario-Gaspar 2 ESP RB -#> 978 /en/players/9f0ea33f/Sergio-Asenjo 1 ESP GK -#> 979 /en/players/75645f0e/Borja-Iglesias 7 ESP FW -#> 980 /en/players/e1cea3f7/Hernan-Perez 17 PAR RW -#> 981 /en/players/2bee98fd/Sergio-Garcia 9 ESP LW -#> 982 /en/players/48e89655/Pablo-Piatti 19 ARG LW -#> 983 /en/players/35f6db55/Leo-Baptistao 11 BRA RW,FW -#> 984 /en/players/1b17ed86/Esteban-Granero 23 ESP LM -#> 985 /en/players/da27e268/Marc-Roca 21 ESP CM -#> 986 /en/players/070a3904/Sergi-Darder 10 ESP RM -#> 987 /en/players/ad4d0985/Victor-Sanchez 4 ESP RM -#> 988 /en/players/bad38a94/Didac-Vila 12 ESP LB -#> 989 /en/players/555f3a0b/Mario-Hermoso 22 ESP CB -#> 990 /en/players/f03f284b/David-Lopez 15 ESP CB -#> 991 /en/players/ffad706e/Javi-Lopez 16 ESP RB -#> 992 /en/players/73683fa9/Diego-Lopez 13 ESP GK -#> 993 /en/players/2e23c66b/Emmanuel-Boateng 21 GHA FW -#> 994 /en/players/64e8ed6d/Borja-Mayoral 2 ESP FW -#> 995 /en/players/0ae4e09a/Roger-Marti 9 ESP FW -#> 996 /en/players/9038c2a1/Jason 23 ESP LM -#> 997 /en/players/ecd8c01e/Ruben-Rochina 16 ESP LM -#> 998 /en/players/cac2537b/Enis-Bardhi 10 MKD CM -#> 999 /en/players/61220da2/Jose-Campana 24 ESP CM -#> 1000 /en/players/4a478107/Jose-Luis-Morales 11 ESP RM -#> 1001 /en/players/ed239245/Antonio-Luna 22 ESP LB -#> 1002 /en/players/7f203b54/Chema 6 ESP CB -#> 1003 /en/players/474ecac8/Sergio-Postigo 15 ESP CB -#> 1004 /en/players/c00097d2/Rober 4 ESP CB -#> 1005 /en/players/a60823a4/Pedro-Lopez-Munoz 19 ESP RB -#> 1006 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK -#> 1007 /en/players/f8eca1b6/Enes-Unal 9 TUR FW -#> 1008 /en/players/8b0b02c9/Duje-Cop 20 CRO FW -#> 1009 /en/players/636eae97/Toni-Villa 19 ESP LW,AM -#> 1010 /en/players/1512328c/Keko 24 ESP RW -#> 1011 /en/players/d2fa73e7/Ivi 7 ESP LW -#> 1012 /en/players/7c388b20/Oscar-Plano 10 ESP AM,RW -#> 1013 /en/players/9127f9ce/Borja-Fernandez 8 ESP DM -#> 1014 /en/players/c93231dc/Anuar 23 MAR DM -#> 1015 /en/players/418f8f61/Michel 21 ESP DM -#> 1016 /en/players/e29d1111/Nacho 22 ESP LB -#> 1017 /en/players/41b3069f/Fernando-Calero 5 ESP CB -#> 1018 /en/players/72b07a9c/Kiko-Olivas 4 ESP CB -#> 1019 /en/players/933e8c8a/Javi-Moyano 17 ESP RB -#> 1020 /en/players/8fae77ea/Jordi-Masip 1 ESP GK -#> 1021 /en/players/6922f806/Jonathan-Calleri 12 ARG FW -#> 1022 /en/players/45e304c8/Burgui 14 ESP FW -#> 1023 /en/players/99bebd12/John-Guidetti 10 SWE FW -#> 1024 /en/players/e3993b65/Patrick-Twumasi 24 GHA FW -#> 1025 /en/players/244f57b9/Jony 23 ESP LM -#> 1026 /en/players/999908af/Wakaso 22 GHA CM -#> 1027 /en/players/4accb7e0/Darko-Brasanac 20 SRB CM -#> 1028 /en/players/05a4465d/Manu-Garcia 19 ESP CM -#> 1029 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RM -#> 1030 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB -#> 1031 /en/players/8db394aa/Ximo-Navarro 15 ESP CB -#> 1032 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB -#> 1033 /en/players/355c883a/Martin-Agirregabiria 21 ESP RB -#> 1034 /en/players/97852360/Fernando-Pacheco 1 ESP GK -#> 1035 /en/players/3effaa34/Andre-Silva 12 POR FW -#> 1036 /en/players/b2d0ec1b/Nolito 8 ESP LW -#> 1037 /en/players/467bae22/Franco-Vazquez 22 ARG CM -#> 1038 /en/players/9744ff80/Pablo-Sarabia 17 ESP RW -#> 1039 /en/players/04965583/Aleix-Vidal 11 ESP LM -#> 1040 /en/players/b182a240/Quincy-Promes 21 NED LM -#> 1041 /en/players/fa937f7a/Ever-Banega 10 ARG CM -#> 1042 /en/players/7c4243d4/Roque-Mesa 7 ESP CM -#> 1043 /en/players/942b4f90/Wissam-Ben-Yedder 9 FRA LW -#> 1044 /en/players/3f10bd22/Jesus-Navas 16 ESP RM -#> 1045 /en/players/bc6f5f06/Sergi-Gomez 3 ESP CB -#> 1046 /en/players/8b8a56ce/Simon-Kjaer 4 DEN CB -#> 1047 /en/players/1232e1dc/Joris-Gnagnon 24 FRA CB -#> 1048 /en/players/7b456af7/Tomas-Vaclik 1 CZE GK -#> 1049 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW -#> 1050 /en/players/d2ac648c/Gaku-Shibasaki 10 JPN FW -#> 1051 /en/players/43f71e77/Jorge-Molina 19 ESP FW -#> 1052 /en/players/f3b1d9a2/Amath 11 SEN LM -#> 1053 /en/players/45e17712/Dimitri-Foulquier 24 FRA LM -#> 1054 /en/players/a4971d84/Djene 2 TOG CM -#> 1055 /en/players/3c05c659/Sebastian-Cristoforo 15 URU CM -#> 1056 /en/players/00b28772/Nemanja-Maksimovic 20 SRB CM -#> 1057 /en/players/8e010ff4/Francisco-Portillo 8 ESP RM -#> 1058 /en/players/3e4f735d/Vitorino-Antunes 3 POR LB -#> 1059 /en/players/69cbc8b6/Leandro-Cabrera 6 URU CB -#> 1060 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB -#> 1061 /en/players/ba5004e1/Damian-Suarez 22 URU RB -#> 1062 /en/players/8f8c6934/David-Soria 13 ESP GK -#> 1063 /en/players/220c11f1/Cristhian-Stuani 7 URU FW -#> 1064 /en/players/e7f4603c/Borja-Garcia 10 ESP AM -#> 1065 /en/players/59d93937/Patrick-Roberts 17 ENG AM -#> 1066 /en/players/1bda5842/Portu 9 ESP AM -#> 1067 /en/players/a10361d2/Aleix-Garcia 23 ESP AM -#> 1068 /en/players/6f7d826d/Douglas-Luiz 12 BRA CM -#> 1069 /en/players/a25250f8/Alex-Granell 6 ESP CM -#> 1070 /en/players/5890cef1/Aday 11 ESP WB -#> 1071 /en/players/4db76f57/Marc-Muniesa 20 ESP WB -#> 1072 /en/players/27d0a506/Pedro-Porro 29 ESP WB -#> 1073 /en/players/1633fc8a/Juanpe 15 ESP CB -#> 1074 /en/players/4242011c/Bernardo-Espinosa 2 COL CB -#> 1075 /en/players/ba71d071/Pedro-Alcala 5 ESP CB -#> 1076 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK -#> 1077 /en/players/4c2e9442/Maxi-Gomez 9 URU FW -#> 1078 /en/players/fd9c4805/Pione-Sisto 11 DEN AM,LM -#> 1079 /en/players/7f8fb807/Dennis-Eckert 32 GER FW,LM -#> 1080 /en/players/7dcf86f6/Iago-Aspas 10 ESP AM,FW,RM -#> 1081 /en/players/e1cbb531/Stanislav-Lobotka 14 SVK CM -#> 1082 /en/players/ed5c5fa3/Fran-Beltran 8 ESP CM -#> 1083 /en/players/c9e39d91/Brais-Mendez 23 ESP CM -#> 1084 /en/players/b18a3023/Junior-Alonso 25 PAR WB -#> 1085 /en/players/b0c71810/Sofiane-Boufal 19 MAR RM,LM -#> 1086 /en/players/cb574619/Hugo-Mallo 2 ESP RB,WB -#> 1087 /en/players/27a013f7/Nestor-Araujo 4 MEX CB -#> 1088 /en/players/92b4a127/Gustavo-Cabral 22 ARG CB -#> 1089 /en/players/51e3954c/Facundo-Roncaglia 24 ARG LB,CB -#> 1090 /en/players/8875b8c9/Sergio-Alvarez 1 ESP GK -#> 1091 /en/players/71b47ab9/Cucho 9 COL FW -#> 1092 /en/players/8970907e/David-Ferreiro 7 ESP LW,LM,LB -#> 1093 /en/players/36d5469c/Alex-Gallar 11 ESP RW,RM,LM -#> 1094 /en/players/5a626448/Moi-Gomez 6 ESP AM -#> 1095 /en/players/1163de29/Samuele-Longo 12 ITA FW -#> 1096 /en/players/3902e91b/Gonzalo-Melero 8 ESP DM,CM -#> 1097 /en/players/74e0a984/Damian-Musto 23 ARG DM,CM,CB -#> 1098 /en/players/a7f00c8c/Luisinho 16 POR LB -#> 1099 /en/players/253a06b9/Ezequiel-Avila 19 ARG CM,LB -#> 1100 /en/players/c904f3d5/Ruben-Semedo 4 POR CB -#> 1101 /en/players/978cd030/Jorge-Pulido 14 ESP CB -#> 1102 /en/players/8d2ad5c0/Serdar-Gurler 21 TUR RM -#> 1103 /en/players/7f4c7c9f/Jorge-Miramon 24 ESP RB -#> 1104 /en/players/c0b1a6da/Axel-Werner 1 ARG GK -#> 1105 /en/players/debc6b55/Jon-Bautista 21 ESP FW -#> 1106 /en/players/ad178594/Raul-Navas 22 ESP CB,FW -#> 1107 /en/players/84399660/Juanmi 7 ESP LW -#> 1108 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP RW,FW -#> 1109 /en/players/f1bed920/Kevin-Rodrigues 20 POR FW -#> 1110 /en/players/2306bfde/Ruben-Pardo 14 ESP LM -#> 1111 /en/players/d9bda115/David-Zurutuza 17 ESP LM -#> 1112 /en/players/5c7845f6/Igor-Zubeldia 5 ESP CM -#> 1113 /en/players/d080ed5e/Mikel-Merino 8 ESP RM -#> 1114 /en/players/d4c9725f/Theo-Hernandez 19 FRA LB -#> 1115 /en/players/5d311e8d/Hector-Moreno 6 MEX CB,LB -#> 1116 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP CB -#> 1117 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP RB -#> 1118 /en/players/625c144a/Geronimo-Rulli 1 ARG GK -#> 1119 /en/players/02ef8778/Raul-de-Tomas 9 ESP FW -#> 1120 /en/players/90bbd822/Alvaro-Garcia 18 ESP LM -#> 1121 /en/players/db8f0eba/Adri-Embarba 11 ESP RM,LM -#> 1122 /en/players/b86fe156/Giannelli-Imbula 12 COD CM,DM -#> 1123 /en/players/fc647b34/Oscar-Trejo 8 ARG CM -#> 1124 /en/players/46166b49/Alex-Alegria 15 ESP FW,CM -#> 1125 /en/players/5b1bf5e3/Gael-Kakuta 10 COD RM,LM -#> 1126 /en/players/7b309e55/Gorka-Elustondo 6 ESP CB,DM -#> 1127 /en/players/5efb80d5/Emiliano-Velazquez 20 URU CB -#> 1128 /en/players/16e9d0ea/Alex-Moreno 7 ESP LB -#> 1129 /en/players/d70a2141/Jordi-Amat 16 IDN CB -#> 1130 /en/players/1f54ed90/Abdoulaye-Ba 21 SEN CB -#> 1131 /en/players/cacadf4f/Luis-Advincula 17 PER RB -#> 1132 /en/players/17d9e354/Alberto-Garcia 1 ESP GK -#> 1133 /en/players/99bebd12/John-Guidetti 10 SWE FW -#> 1134 /en/players/19b776e9/Ruben-Sobrino 7 ESP FW -#> 1135 /en/players/6922f806/Jonathan-Calleri 12 ARG FW -#> 1136 /en/players/244f57b9/Jony 23 ESP LM -#> 1137 /en/players/45e304c8/Burgui 14 ESP LM -#> 1138 /en/players/999908af/Wakaso 22 GHA CM -#> 1139 /en/players/4accb7e0/Darko-Brasanac 20 SRB CM -#> 1140 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RM -#> 1141 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB -#> 1142 /en/players/355c883a/Martin-Agirregabiria 21 ESP LB -#> 1143 /en/players/d9764034/Guillermo-Maripan 6 CHI CB -#> 1144 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB -#> 1145 /en/players/8db394aa/Ximo-Navarro 15 ESP RB -#> 1146 /en/players/97852360/Fernando-Pacheco 1 ESP GK -#> 1147 /en/players/e897d8ba/Kike 17 ESP FW -#> 1148 /en/players/2a0c8ba4/Joan-Jordan 24 ESP FW -#> 1149 /en/players/bb4b1242/Sergi-Enrich 9 ESP FW -#> 1150 /en/players/9ab48bde/Pablo-de-Blasis 16 ARG LM -#> 1151 /en/players/7329018e/Papakouli-Diop 8 SEN CM -#> 1152 /en/players/3f79a1c8/Gonzalo-Escalante 5 ARG CM -#> 1153 /en/players/ba5a9545/Pablo-Hervias 18 ESP RM -#> 1154 /en/players/c90977db/Fabian-Orellana 14 CHI RM -#> 1155 /en/players/3024e383/Jose-Angel 15 ESP LB -#> 1156 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP LB -#> 1157 /en/players/d2be40f2/Ivan-Ramis 4 ESP CB -#> 1158 /en/players/a8fbae1d/Paulo-Oliveira 12 POR CB -#> 1159 /en/players/1f079188/Ruben-Pena 11 ESP RB -#> 1160 /en/players/ac295d9e/Marko-Dmitrovic 1 SRB GK -#> 1161 /en/players/8f898ba8/Guido-Carrillo 9 ARG FW -#> 1162 /en/players/3cb6f224/Michael-Santos 20 URU FW -#> 1163 /en/players/04e17fd5/Youssef-En-Nesyri 26 MAR FW -#> 1164 /en/players/d1491e00/Diego-Rolan 4 URU LM -#> 1165 /en/players/19709006/Oscar-Rodriguez-Arnaiz 27 ESP LM -#> 1166 /en/players/ac454a4f/Gerard-Gumbau 6 ESP CM -#> 1167 /en/players/3c7bc9bd/Ruben-Perez 21 ESP CM -#> 1168 /en/players/9ba48d64/Juanfran 2 ESP RM -#> 1169 /en/players/37f96552/Nabil-El-Zhar 10 MAR RM -#> 1170 /en/players/1a317a1b/Raul-Garcia 14 ESP LB -#> 1171 /en/players/92d38e6c/Dimitris-Siovas 22 GRE CB -#> 1172 /en/players/f3112790/Unai-Bustinza 3 ESP CB -#> 1173 /en/players/97572117/Allan-Nyom 12 CMR RB -#> 1174 /en/players/75751c99/Ivan-Cuellar 1 ESP GK -#> 1175 /en/players/4c2e9442/Maxi-Gomez 9 URU FW -#> 1176 /en/players/7dcf86f6/Iago-Aspas 10 ESP FW -#> 1177 /en/players/b0c71810/Sofiane-Boufal 19 MAR LM -#> 1178 /en/players/fd9c4805/Pione-Sisto 11 DEN LM -#> 1179 /en/players/e1cbb531/Stanislav-Lobotka 14 SVK CM -#> 1180 /en/players/e49ce451/Okay-Yokuslu 5 TUR CM -#> 1181 /en/players/c9e39d91/Brais-Mendez 23 ESP RM -#> 1182 /en/players/ed5c5fa3/Fran-Beltran 8 ESP RM -#> 1183 /en/players/de7d40d6/David-Junca 17 ESP LB -#> 1184 /en/players/b18a3023/Junior-Alonso 25 PAR LB -#> 1185 /en/players/27a013f7/Nestor-Araujo 4 MEX CB -#> 1186 /en/players/545e2f01/David-Costas 3 ESP CB -#> 1187 /en/players/51e3954c/Facundo-Roncaglia 24 ARG RB -#> 1188 /en/players/8875b8c9/Sergio-Alvarez 1 ESP GK -#> 1189 /en/players/8b0b02c9/Duje-Cop 20 CRO FW -#> 1190 /en/players/7c388b20/Oscar-Plano 10 ESP LM -#> 1191 /en/players/036bba5f/Ruben-Alcaraz 14 ESP CM -#> 1192 /en/players/418f8f61/Michel 21 ESP CM -#> 1193 /en/players/1512328c/Keko 24 ESP RM -#> 1194 /en/players/636eae97/Toni-Villa 19 ESP RM -#> 1195 /en/players/9127f9ce/Borja-Fernandez 8 ESP DM -#> 1196 /en/players/f8eca1b6/Enes-Unal 9 TUR DM -#> 1197 /en/players/e29d1111/Nacho 22 ESP LB -#> 1198 /en/players/41b3069f/Fernando-Calero 5 ESP CB -#> 1199 /en/players/72b07a9c/Kiko-Olivas 4 ESP CB -#> 1200 /en/players/933e8c8a/Javi-Moyano 17 ESP RB -#> 1201 /en/players/25c72b36/Leonardo-Suarez 32 ARG RB -#> 1202 /en/players/8fae77ea/Jordi-Masip 1 ESP GK -#> 1203 /en/players/43f71e77/Jorge-Molina 19 ESP FW -#> 1204 /en/players/32974271/Sergi-Guardiola 14 ESP LM,FW -#> 1205 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW,LM -#> 1206 /en/players/f3b1d9a2/Amath 11 SEN LM -#> 1207 /en/players/3d7e48ce/Ivan-Alejo 23 ESP RM -#> 1208 /en/players/a4971d84/Djene 2 TOG CM -#> 1209 /en/players/3c05c659/Sebastian-Cristoforo 15 URU CM -#> 1210 /en/players/58afe001/Mauro-Arambarri 18 URU CM -#> 1211 /en/players/8e010ff4/Francisco-Portillo 8 ESP RM,LM -#> 1212 /en/players/3e4f735d/Vitorino-Antunes 3 POR LB -#> 1213 /en/players/69cbc8b6/Leandro-Cabrera 6 URU CB -#> 1214 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB -#> 1215 /en/players/ba5004e1/Damian-Suarez 22 URU RB -#> 1216 /en/players/8f8c6934/David-Soria 13 ESP GK -#> 1217 /en/players/df69b544/Antoine-Griezmann 7 FRA FW,RW -#> 1218 /en/players/a190d597/Diego-Costa 19 ESP FW -#> 1219 /en/players/55126f3b/Koke 6 ESP LM,CM -#> 1220 /en/players/c14bc029/Saul-Niguez 8 ESP CM -#> 1221 /en/players/6434f10d/Rodri 14 ESP CM -#> 1222 /en/players/529f49ab/Thomas-Partey 5 GHA CM -#> 1223 /en/players/4dbd0916/Thomas-Lemar 11 FRA RM,LW -#> 1224 /en/players/01eb744d/Angel-Correa 10 ARG RM -#> 1225 /en/players/e4ed2628/Filipe-Luis 3 BRA LB -#> 1226 /en/players/fc4f85b1/Diego-Godin 2 URU CB -#> 1227 /en/players/c3ee18ef/Lucas-Hernandez 21 FRA CB,LB -#> 1228 /en/players/f0da930c/Jose-Maria-Gimenez 24 URU CB -#> 1229 /en/players/cfd8d664/Juanfran 20 ESP RB -#> 1230 /en/players/ee8508c0/Jan-Oblak 13 SVN GK -#> 1231 /en/players/70d74ece/Karim-Benzema 9 FRA FW -#> 1232 /en/players/5c4dc0ff/Mariano 7 DOM FW -#> 1233 /en/players/45af8a54/Marco-Asensio 20 ESP LW -#> 1234 /en/players/a0b4bb3e/Isco 22 ESP RW,LM -#> 1235 /en/players/02c15616/Marcos-Llorente 18 ESP LM -#> 1236 /en/players/c0617e2b/Dani-Ceballos 24 ESP LM -#> 1237 /en/players/fd51b456/Lucas-Vazquez 17 ESP RW -#> 1238 /en/players/4d224fe8/Casemiro 14 BRA CM -#> 1239 /en/players/6025fab1/Luka-Modric 10 CRO RM -#> 1240 /en/players/2946f9a1/Nacho 6 ESP LB -#> 1241 /en/players/08511d65/Sergio-Ramos 4 ESP CB -#> 1242 /en/players/9f8e9423/Raphael-Varane 5 FRA CB -#> 1243 /en/players/1d1691ad/Alvaro-Odriozola 19 ESP RB -#> 1244 /en/players/1840e36d/Thibaut-Courtois 25 BEL GK -#> 1245 /en/players/75645f0e/Borja-Iglesias 7 ESP FW -#> 1246 /en/players/48e89655/Pablo-Piatti 19 ARG LM -#> 1247 /en/players/35f6db55/Leo-Baptistao 11 BRA RM,LM -#> 1248 /en/players/1b17ed86/Esteban-Granero 23 ESP CM -#> 1249 /en/players/070a3904/Sergi-Darder 10 ESP CM -#> 1250 /en/players/ad4d0985/Victor-Sanchez 4 ESP CM -#> 1251 /en/players/e1cea3f7/Hernan-Perez 17 PAR RM -#> 1252 /en/players/2bee98fd/Sergio-Garcia 9 ESP LM -#> 1253 /en/players/da27e268/Marc-Roca 21 ESP DM -#> 1254 /en/players/bad38a94/Didac-Vila 12 ESP LB -#> 1255 /en/players/555f3a0b/Mario-Hermoso 22 ESP CB -#> 1256 /en/players/a2609621/Naldo 5 BRA CB -#> 1257 /en/players/ffad706e/Javi-Lopez 16 ESP RB -#> 1258 /en/players/73683fa9/Diego-Lopez 13 ESP GK -#> 1259 /en/players/64e8ed6d/Borja-Mayoral 2 ESP FW -#> 1260 /en/players/0ae4e09a/Roger-Marti 9 ESP FW -#> 1261 /en/players/2e23c66b/Emmanuel-Boateng 21 GHA FW -#> 1262 /en/players/4a478107/Jose-Luis-Morales 11 ESP LM,RM -#> 1263 /en/players/61220da2/Jose-Campana 24 ESP CM -#> 1264 /en/players/5f3eaaf5/Moses-Simon 7 NGA LM -#> 1265 /en/players/51c30111/Sanjin-Prcic 8 BIH CM -#> 1266 /en/players/4442fbcd/Nikola-Vukcevic 17 MNE CM -#> 1267 /en/players/cac2537b/Enis-Bardhi 10 MKD RM,CM -#> 1268 /en/players/ed239245/Antonio-Luna 22 ESP LB -#> 1269 /en/players/c00097d2/Rober 4 ESP CB -#> 1270 /en/players/474ecac8/Sergio-Postigo 15 ESP CB -#> 1271 /en/players/a60823a4/Pedro-Lopez-Munoz 19 ESP RB -#> 1272 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK -#> 1273 /en/players/3effaa34/Andre-Silva 12 POR FW -#> 1274 /en/players/942b4f90/Wissam-Ben-Yedder 9 FRA FW -#> 1275 /en/players/b182a240/Quincy-Promes 21 NED LW,FW -#> 1276 /en/players/9744ff80/Pablo-Sarabia 17 ESP CM -#> 1277 /en/players/eb2fe5b6/Luis-Muriel 14 COL RW -#> 1278 /en/players/fa937f7a/Ever-Banega 10 ARG CM -#> 1279 /en/players/7c4243d4/Roque-Mesa 7 ESP CM -#> 1280 /en/players/467bae22/Franco-Vazquez 22 ARG CM -#> 1281 /en/players/04965583/Aleix-Vidal 11 ESP WB,LM -#> 1282 /en/players/3f10bd22/Jesus-Navas 16 ESP WB,RM -#> 1283 /en/players/e1deea75/Daniel-Carrico 6 POR CB -#> 1284 /en/players/8b8a56ce/Simon-Kjaer 4 DEN CB -#> 1285 /en/players/bc6f5f06/Sergi-Gomez 3 ESP CB -#> 1286 /en/players/7b456af7/Tomas-Vaclik 1 CZE GK -#> 1287 /en/players/09a9e921/Carlos-Bacca 9 COL FW -#> 1288 /en/players/5ceba7fc/Karl-Toko-Ekambi 17 CMR FW -#> 1289 /en/players/81f0781e/Gerard-Moreno 7 ESP FW -#> 1290 /en/players/ad6295d4/Miguel-Layun 24 MEX LM,RM -#> 1291 /en/players/89cbc961/Ramiro-Funes-Mori 4 ARG CM -#> 1292 /en/players/963829d0/Manu-Trigueros 14 ESP CM -#> 1293 /en/players/82927de4/Pablo-Fornals 8 ESP RM -#> 1294 /en/players/63f04c6c/Alfonso-Pedraza 16 ESP LB,LM -#> 1295 /en/players/808d48f3/Jaume-Costa 11 ESP LB -#> 1296 /en/players/e2e9c250/Santi-Cazorla 19 ESP LM -#> 1297 /en/players/b3dc6eca/Victor-Ruiz 6 ESP CB -#> 1298 /en/players/42dcf26d/Alvaro-Gonzalez 3 ESP CB -#> 1299 /en/players/fb5d47b3/Mario-Gaspar 2 ESP RB -#> 1300 /en/players/9f0ea33f/Sergio-Asenjo 1 ESP GK -#> 1301 /en/players/42276181/Kevin-Gameiro 9 FRA FW -#> 1302 /en/players/a6951bf8/Francis-Coquelin 17 FRA CM -#> 1303 /en/players/0b90bb97/Santi-Mina 22 ESP FW -#> 1304 /en/players/2973d8ff/Michy-Batshuayi 23 BEL FW -#> 1305 /en/players/0ac94a23/Denis-Cheryshev 11 RUS LM -#> 1306 /en/players/7460ca0d/Daniel-Parejo 10 ESP CM -#> 1307 /en/players/fed17f5a/Carlos-Soler 8 ESP CM -#> 1308 /en/players/9e1035f8/Ferran-Torres 20 ESP RM -#> 1309 /en/players/e6bc67d7/Goncalo-Guedes 7 POR RM -#> 1310 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP LB -#> 1311 /en/players/d2110326/Mouctar-Diakhaby 12 GUI CB -#> 1312 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA CB -#> 1313 /en/players/32c0491f/Cristiano-Piccini 21 ITA RB -#> 1314 /en/players/a9dc785c/Neto 13 BRA GK -#> 1315 /en/players/0a447501/Antonio-Sanabria 9 PAR FW -#> 1316 /en/players/4c5b14d2/Joaquin 17 ESP AM,WB -#> 1317 /en/players/a6de370d/Sergio-Canales 6 ESP AM,CM -#> 1318 /en/players/ef322658/Andres-Guardado 18 MEX CM -#> 1319 /en/players/d7553721/Giovani-Lo-Celso 21 ARG CM -#> 1320 /en/players/3aa4a3be/Loren-Moron 16 ESP AM,FW -#> 1321 /en/players/24f59bb2/Junior-Firpo 20 ESP WB -#> 1322 /en/players/72a99e38/Cristian-Tello 11 ESP WB -#> 1323 /en/players/59d53e8a/Francis-Guerrero 2 ESP WB -#> 1324 /en/players/61bd33d0/Takashi-Inui 8 JPN AM,WB -#> 1325 /en/players/b14d0c5d/Sidnei 12 BRA CB -#> 1326 /en/players/b742cc0d/Marc-Bartra 5 ESP CB -#> 1327 /en/players/fbd6378b/Aissa-Mandi 23 ALG CB -#> 1328 /en/players/20b9f052/Pau-Lopez 13 ESP GK -#> 1329 /en/players/6a99e0b1/Inaki-Williams 9 GHA FW -#> 1330 /en/players/c05dfb74/Iker-Muniain 10 ESP FW -#> 1331 /en/players/b6e50615/Yuri-Berchiche 12 ESP LW -#> 1332 /en/players/6fd1ba62/Markel-Susaeta 14 ESP RW -#> 1333 /en/players/b418dbd4/Raul-Garcia 22 ESP AM,RW -#> 1334 /en/players/37f1cf47/Ander-Capa 21 ESP RW -#> 1335 /en/players/240d3a0b/Dani-Garcia 16 ESP DM -#> 1336 /en/players/b037bd4f/Benat-Etxebarria 7 ESP DM -#> 1337 /en/players/003a5c72/Mikel-San-Jose 6 ESP DM -#> 1338 /en/players/1fe67e86/Mikel-Balenziaga 24 ESP LB -#> 1339 /en/players/3fc45c73/Inigo-Martinez 4 ESP CB -#> 1340 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP CB -#> 1341 /en/players/9f323c71/Oscar-de-Marcos 18 ESP RB -#> 1342 /en/players/5dcf3e90/Unai-Simon 25 ESP GK -#> 1343 /en/players/a6154613/Luis-Suarez 9 URU FW -#> 1344 /en/players/b19db005/Ousmane-Dembele 11 FRA LW -#> 1345 /en/players/3eed9821/Samuel-Umtiti 23 FRA CB,LW -#> 1346 /en/players/d70ce98e/Lionel-Messi 10 ARG RW,FW -#> 1347 /en/players/48b3dd60/Arthur-Melo 8 BRA LM -#> 1348 /en/players/0ef89a37/Philippe-Coutinho 7 BRA AM,LM -#> 1349 /en/players/5ab0ea87/Sergio-Busquets 5 ESP CM,CB -#> 1350 /en/players/67cdbc0e/Arturo-Vidal 22 CHI RM -#> 1351 /en/players/89f951b5/Ivan-Rakitic 4 CRO RM -#> 1352 /en/players/4601e194/Jordi-Alba 18 ESP LB -#> 1353 /en/players/4f28a6ff/Clement-Lenglet 15 FRA CB -#> 1354 /en/players/adfc9123/Gerard-Pique 3 ESP CB -#> 1355 /en/players/d04b94db/Nelson-Semedo 2 POR RB -#> 1356 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER GK -#> 1357 /en/players/220c11f1/Cristhian-Stuani 7 URU FW -#> 1358 /en/players/1bda5842/Portu 9 ESP FW -#> 1359 /en/players/c49afee6/Seydou-Doumbia 22 CIV FW -#> 1360 /en/players/a10361d2/Aleix-Garcia 23 ESP CM -#> 1361 /en/players/e7f4603c/Borja-Garcia 10 ESP CM -#> 1362 /en/players/29b61deb/Pere-Pons 8 ESP CM -#> 1363 /en/players/a25250f8/Alex-Granell 6 ESP CM -#> 1364 /en/players/6f7d826d/Douglas-Luiz 12 BRA CM -#> 1365 /en/players/4db76f57/Marc-Muniesa 20 ESP LB -#> 1366 /en/players/1633fc8a/Juanpe 15 ESP CB -#> 1367 /en/players/4242011c/Bernardo-Espinosa 2 COL CB -#> 1368 /en/players/ba71d071/Pedro-Alcala 5 ESP CB -#> 1369 /en/players/5890cef1/Aday 11 ESP RB -#> 1370 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK -#> 1371 /en/players/2bee98fd/Sergio-Garcia 9 ESP FW -#> 1372 /en/players/75645f0e/Borja-Iglesias 7 ESP FW,LW -#> 1373 /en/players/48e89655/Pablo-Piatti 19 ARG LW -#> 1374 /en/players/35f6db55/Leo-Baptistao 11 BRA RW -#> 1375 /en/players/e1cea3f7/Hernan-Perez 17 PAR RW -#> 1376 /en/players/070a3904/Sergi-Darder 10 ESP LM -#> 1377 /en/players/da27e268/Marc-Roca 21 ESP CM -#> 1378 /en/players/379652be/Oscar-Melendo 14 ESP RM -#> 1379 /en/players/ad4d0985/Victor-Sanchez 4 ESP RM -#> 1380 /en/players/bad38a94/Didac-Vila 12 ESP LB -#> 1381 /en/players/555f3a0b/Mario-Hermoso 22 ESP CB -#> 1382 /en/players/aa0ac32d/Oscar-Duarte 6 CRC CB -#> 1383 /en/players/81069528/Roberto-Rosales 8 VEN RB -#> 1384 /en/players/73683fa9/Diego-Lopez 13 ESP GK -#> 1385 /en/players/b92b456a/Marc-Cardona 7 ESP FW -#> 1386 /en/players/c4b8bcf4/Charles 19 BRA FW -#> 1387 /en/players/335039a2/Pere-Milla 22 ESP LW -#> 1388 /en/players/3f79a1c8/Gonzalo-Escalante 5 ARG DM,LW -#> 1389 /en/players/9ab48bde/Pablo-de-Blasis 16 ARG RW,LW -#> 1390 /en/players/c90977db/Fabian-Orellana 14 CHI AM,RW -#> 1391 /en/players/2a0c8ba4/Joan-Jordan 24 ESP DM,AM -#> 1392 /en/players/88d91621/Sergio-Alvarez 6 ESP DM -#> 1393 /en/players/bb4b1242/Sergi-Enrich 9 ESP AM,DM -#> 1394 /en/players/1daec722/Marc-Cucurella 20 ESP LB -#> 1395 /en/players/697295b1/Pedro-Bigas 3 ESP CB -#> 1396 /en/players/a8fbae1d/Paulo-Oliveira 12 POR CB -#> 1397 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP RB -#> 1398 /en/players/ac295d9e/Marko-Dmitrovic 1 SRB GK -#> 1399 /en/players/debc6b55/Jon-Bautista 21 ESP FW -#> 1400 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP LW -#> 1401 /en/players/7958dc65/Luca-Sangalli 23 ESP RW -#> 1402 /en/players/d9bda115/David-Zurutuza 17 ESP RW -#> 1403 /en/players/d080ed5e/Mikel-Merino 8 ESP AM -#> 1404 /en/players/5c7845f6/Igor-Zubeldia 5 ESP DM -#> 1405 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP DM -#> 1406 /en/players/2306bfde/Ruben-Pardo 14 ESP DM -#> 1407 /en/players/d87e2cae/Willian-Jose 12 BRA AM -#> 1408 /en/players/f1bed920/Kevin-Rodrigues 20 POR LB -#> 1409 /en/players/5d311e8d/Hector-Moreno 6 MEX CB -#> 1410 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP CB -#> 1411 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP RB -#> 1412 /en/players/625c144a/Geronimo-Rulli 1 ARG GK -#> 1413 /en/players/02ef8778/Raul-de-Tomas 9 ESP FW -#> 1414 /en/players/46166b49/Alex-Alegria 15 ESP FW -#> 1415 /en/players/d8712bf9/Bebe 14 CPV LM,LW -#> 1416 /en/players/db8f0eba/Adri-Embarba 11 ESP LW -#> 1417 /en/players/fc647b34/Oscar-Trejo 8 ARG CM,AM -#> 1418 /en/players/31223bcf/Alvaro-Medran 4 ESP CM -#> 1419 /en/players/b86fe156/Giannelli-Imbula 12 COD DM -#> 1420 /en/players/5b1bf5e3/Gael-Kakuta 10 COD RM,RW -#> 1421 /en/players/5ae499d0/Santi-Comesana 27 ESP DM -#> 1422 /en/players/16e9d0ea/Alex-Moreno 7 ESP LB -#> 1423 /en/players/d70a2141/Jordi-Amat 16 IDN CB -#> 1424 /en/players/960fb42d/Alex-Galvez 23 ESP CB -#> 1425 /en/players/cacadf4f/Luis-Advincula 17 PER RB -#> 1426 /en/players/17d9e354/Alberto-Garcia 1 ESP GK -#> 1427 /en/players/df69b544/Antoine-Griezmann 7 FRA FW -#> 1428 /en/players/d4931a5a/Nikola-Kalinic 9 CRO FW -#> 1429 /en/players/a190d597/Diego-Costa 19 ESP FW -#> 1430 /en/players/3ef0fa48/Gelson-Martins 18 POR FW,RM -#> 1431 /en/players/4dbd0916/Thomas-Lemar 11 FRA LM -#> 1432 /en/players/55126f3b/Koke 6 ESP CM -#> 1433 /en/players/529f49ab/Thomas-Partey 5 GHA CM -#> 1434 /en/players/01eb744d/Angel-Correa 10 ARG RM,FW -#> 1435 /en/players/e4ed2628/Filipe-Luis 3 BRA LB -#> 1436 /en/players/fc4f85b1/Diego-Godin 2 URU CB -#> 1437 /en/players/f0da930c/Jose-Maria-Gimenez 24 URU CB -#> 1438 /en/players/c3ee18ef/Lucas-Hernandez 21 FRA CB -#> 1439 /en/players/3e5a168c/Carlos-Isaac 38 ESP RB -#> 1440 /en/players/ee8508c0/Jan-Oblak 13 SVN GK -#> 1441 /en/players/1163de29/Samuele-Longo 12 ITA FW -#> 1442 /en/players/253a06b9/Ezequiel-Avila 19 ARG FW -#> 1443 /en/players/71b47ab9/Cucho 9 COL FW -#> 1444 /en/players/18dc8533/Juan-Aguilera 5 ESP DM,FW -#> 1445 /en/players/8970907e/David-Ferreiro 7 ESP LM,LW -#> 1446 /en/players/74e0a984/Damian-Musto 23 ARG CM,DM -#> 1447 /en/players/3902e91b/Gonzalo-Melero 8 ESP CM,AM -#> 1448 /en/players/36d5469c/Alex-Gallar 11 ESP RM,RW -#> 1449 /en/players/a7f00c8c/Luisinho 16 POR LB -#> 1450 /en/players/f2a68b97/Carlos-Akapo 15 EQG LB -#> 1451 /en/players/c904f3d5/Ruben-Semedo 4 POR CB -#> 1452 /en/players/4a895384/Xabier-Etxeita 3 ESP CB -#> 1453 /en/players/7f4c7c9f/Jorge-Miramon 24 ESP RB -#> 1454 /en/players/c0b1a6da/Axel-Werner 1 ARG GK -#> 1455 /en/players/04e17fd5/Youssef-En-Nesyri 26 MAR FW -#> 1456 /en/players/19709006/Oscar-Rodriguez-Arnaiz 27 ESP LM -#> 1457 /en/players/ac454a4f/Gerard-Gumbau 6 ESP CM,LM -#> 1458 /en/players/3c7bc9bd/Ruben-Perez 21 ESP CM -#> 1459 /en/players/b0fce72c/Mikel-Vesga 23 ESP CM -#> 1460 /en/players/1d5f96d9/Sabin-Merino 18 ESP LM -#> 1461 /en/players/37f96552/Nabil-El-Zhar 10 MAR RM -#> 1462 /en/players/97572117/Allan-Nyom 12 CMR RB -#> 1463 /en/players/f2308b33/Jonathan-Silva 5 ARG LB -#> 1464 /en/players/1a317a1b/Raul-Garcia 14 ESP CB -#> 1465 /en/players/f3112790/Unai-Bustinza 3 ESP CB -#> 1466 /en/players/a03c82b2/Rodrigo-Tarin 28 ESP CB -#> 1467 /en/players/9ba48d64/Juanfran 2 ESP RB,RM -#> 1468 /en/players/75751c99/Ivan-Cuellar 1 ESP GK -#> 1469 /en/players/8696bc90/Munir-El-Haddadi 19 MAR FW -#> 1470 /en/players/a6154613/Luis-Suarez 9 URU FW -#> 1471 /en/players/b19db005/Ousmane-Dembele 11 FRA LW -#> 1472 /en/players/6853490f/Malcom 14 BRA LW -#> 1473 /en/players/d70ce98e/Lionel-Messi 10 ARG RW -#> 1474 /en/players/0ef89a37/Philippe-Coutinho 7 BRA LM -#> 1475 /en/players/5ab0ea87/Sergio-Busquets 5 ESP CM -#> 1476 /en/players/89f951b5/Ivan-Rakitic 4 CRO RM -#> 1477 /en/players/d0d79694/Thomas-Vermaelen 24 BEL LB -#> 1478 /en/players/4601e194/Jordi-Alba 18 ESP LB -#> 1479 /en/players/3eed9821/Samuel-Umtiti 23 FRA CB -#> 1480 /en/players/adfc9123/Gerard-Pique 3 ESP CB -#> 1481 /en/players/335fa267/Sergi-Roberto 20 ESP RB -#> 1482 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER GK -#> 1483 /en/players/6a99e0b1/Inaki-Williams 9 GHA FW -#> 1484 /en/players/c05dfb74/Iker-Muniain 10 ESP LW,RW -#> 1485 /en/players/37f1cf47/Ander-Capa 21 ESP RW,RB -#> 1486 /en/players/b418dbd4/Raul-Garcia 22 ESP AM -#> 1487 /en/players/49ea92be/Inigo-Cordoba 11 ESP AM -#> 1488 /en/players/6dce77a5/Ander-Iturraspe 8 ESP DM -#> 1489 /en/players/88050721/Unai-Lopez 23 ESP DM -#> 1490 /en/players/b037bd4f/Benat-Etxebarria 7 ESP DM -#> 1491 /en/players/b6e50615/Yuri-Berchiche 12 ESP LB -#> 1492 /en/players/3fc45c73/Inigo-Martinez 4 ESP CB -#> 1493 /en/players/be170419/Unai-Nunez 3 ESP CB -#> 1494 /en/players/9f323c71/Oscar-de-Marcos 18 ESP RB -#> 1495 /en/players/6b5ea2f4/Gorka-Guruzeta 30 ESP LW,RB -#> 1496 /en/players/5dcf3e90/Unai-Simon 25 ESP GK -#> 1497 /en/players/09a9e921/Carlos-Bacca 9 COL FW -#> 1498 /en/players/5ceba7fc/Karl-Toko-Ekambi 17 CMR FW -#> 1499 /en/players/81f0781e/Gerard-Moreno 7 ESP FW -#> 1500 /en/players/63f04c6c/Alfonso-Pedraza 16 ESP FW -#> 1501 /en/players/ad6295d4/Miguel-Layun 24 MEX LM -#> 1502 /en/players/e2e9c250/Santi-Cazorla 19 ESP LM -#> 1503 /en/players/89cbc961/Ramiro-Funes-Mori 4 ARG CM -#> 1504 /en/players/963829d0/Manu-Trigueros 14 ESP CM -#> 1505 /en/players/82927de4/Pablo-Fornals 8 ESP RM -#> 1506 /en/players/808d48f3/Jaume-Costa 11 ESP LB -#> 1507 /en/players/b3dc6eca/Victor-Ruiz 6 ESP CB -#> 1508 /en/players/42dcf26d/Alvaro-Gonzalez 3 ESP CB -#> 1509 /en/players/fb5d47b3/Mario-Gaspar 2 ESP RB -#> 1510 /en/players/9f0ea33f/Sergio-Asenjo 1 ESP GK -#> 1511 /en/players/942b4f90/Wissam-Ben-Yedder 9 FRA FW -#> 1512 /en/players/b182a240/Quincy-Promes 21 NED FW -#> 1513 /en/players/3effaa34/Andre-Silva 12 POR FW -#> 1514 /en/players/467bae22/Franco-Vazquez 22 ARG CM -#> 1515 /en/players/fa937f7a/Ever-Banega 10 ARG CM -#> 1516 /en/players/7c4243d4/Roque-Mesa 7 ESP CM -#> 1517 /en/players/9744ff80/Pablo-Sarabia 17 ESP CM -#> 1518 /en/players/2b15a82a/Guilherme-Arana 23 BRA WB -#> 1519 /en/players/b2d0ec1b/Nolito 8 ESP WB -#> 1520 /en/players/3f10bd22/Jesus-Navas 16 ESP WB -#> 1521 /en/players/bc6f5f06/Sergi-Gomez 3 ESP CB -#> 1522 /en/players/8b8a56ce/Simon-Kjaer 4 DEN CB -#> 1523 /en/players/e1deea75/Daniel-Carrico 6 POR CB -#> 1524 /en/players/7b456af7/Tomas-Vaclik 1 CZE GK -#> 1525 /en/players/70d74ece/Karim-Benzema 9 FRA FW -#> 1526 /en/players/5c4dc0ff/Mariano 7 DOM FW -#> 1527 /en/players/45af8a54/Marco-Asensio 20 ESP LW,RW,LM -#> 1528 /en/players/a58bb1e1/Gareth-Bale 11 WAL RW,LW -#> 1529 /en/players/6ce1f46f/Toni-Kroos 8 GER LM,CM -#> 1530 /en/players/4d224fe8/Casemiro 14 BRA CM,CB -#> 1531 /en/players/6025fab1/Luka-Modric 10 CRO RM,CM -#> 1532 /en/players/c0617e2b/Dani-Ceballos 24 ESP CM -#> 1533 /en/players/603116a7/Marcelo 12 BRA LB,LM -#> 1534 /en/players/08511d65/Sergio-Ramos 4 ESP CB -#> 1535 /en/players/9f8e9423/Raphael-Varane 5 FRA CB -#> 1536 /en/players/2946f9a1/Nacho 6 ESP RB -#> 1537 /en/players/fd51b456/Lucas-Vazquez 17 ESP RM -#> 1538 /en/players/1840e36d/Thibaut-Courtois 25 BEL GK -#> 1539 /en/players/2973d8ff/Michy-Batshuayi 23 BEL FW -#> 1540 /en/players/42276181/Kevin-Gameiro 9 FRA FW -#> 1541 /en/players/1fb1c435/Rodrigo 19 ESP FW -#> 1542 /en/players/e6bc67d7/Goncalo-Guedes 7 POR LM -#> 1543 /en/players/0ac94a23/Denis-Cheryshev 11 RUS LM -#> 1544 /en/players/a6951bf8/Francis-Coquelin 17 FRA CM -#> 1545 /en/players/cce181df/Geoffrey-Kondogbia 6 CTA CM -#> 1546 /en/players/fed17f5a/Carlos-Soler 8 ESP CM -#> 1547 /en/players/d83bbc54/Daniel-Wass 18 DEN RM -#> 1548 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP LB -#> 1549 /en/players/b233e8e4/Jeison-Murillo 4 COL CB -#> 1550 /en/players/ac3fb1be/Ezequiel-Garay 24 ARG CB -#> 1551 /en/players/32c0491f/Cristiano-Piccini 21 ITA RB -#> 1552 /en/players/a9dc785c/Neto 13 BRA GK -#> 1553 /en/players/4c2e9442/Maxi-Gomez 9 URU FW,LW -#> 1554 /en/players/7dcf86f6/Iago-Aspas 10 ESP FW,RW -#> 1555 /en/players/b18a3023/Junior-Alonso 25 PAR CB -#> 1556 /en/players/ed5c5fa3/Fran-Beltran 8 ESP CM -#> 1557 /en/players/e1cbb531/Stanislav-Lobotka 14 SVK CM,RM -#> 1558 /en/players/e49ce451/Okay-Yokuslu 5 TUR CM -#> 1559 /en/players/fd9c4805/Pione-Sisto 11 DEN CM,LM -#> 1560 /en/players/de7d40d6/David-Junca 17 ESP LB -#> 1561 /en/players/27a013f7/Nestor-Araujo 4 MEX CB -#> 1562 /en/players/92b4a127/Gustavo-Cabral 22 ARG CB -#> 1563 /en/players/51e3954c/Facundo-Roncaglia 24 ARG CB,RB -#> 1564 /en/players/cb574619/Hugo-Mallo 2 ESP RB -#> 1565 /en/players/7f8fb807/Dennis-Eckert 32 GER FW -#> 1566 /en/players/8875b8c9/Sergio-Alvarez 1 ESP GK -#> 1567 /en/players/19b776e9/Ruben-Sobrino 7 ESP FW -#> 1568 /en/players/99bebd12/John-Guidetti 10 SWE FW -#> 1569 /en/players/6922f806/Jonathan-Calleri 12 ARG FW -#> 1570 /en/players/244f57b9/Jony 23 ESP LM -#> 1571 /en/players/999908af/Wakaso 22 GHA CM -#> 1572 /en/players/05a4465d/Manu-Garcia 19 ESP CM -#> 1573 /en/players/4accb7e0/Darko-Brasanac 20 SRB CM -#> 1574 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RM -#> 1575 /en/players/45e304c8/Burgui 14 ESP RM -#> 1576 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB -#> 1577 /en/players/8db394aa/Ximo-Navarro 15 ESP CB -#> 1578 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB -#> 1579 /en/players/355c883a/Martin-Agirregabiria 21 ESP RB -#> 1580 /en/players/97852360/Fernando-Pacheco 1 ESP GK -#> 1581 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW -#> 1582 /en/players/43f71e77/Jorge-Molina 19 ESP FW -#> 1583 /en/players/02319ad7/Jaime-Mata 7 ESP FW -#> 1584 /en/players/f3b1d9a2/Amath 11 SEN LM -#> 1585 /en/players/45e17712/Dimitri-Foulquier 24 FRA RM,LM -#> 1586 /en/players/00b28772/Nemanja-Maksimovic 20 SRB CM -#> 1587 /en/players/58afe001/Mauro-Arambarri 18 URU CM -#> 1588 /en/players/04a65a8f/Markel-Bergara 5 ESP CM -#> 1589 /en/players/8e010ff4/Francisco-Portillo 8 ESP RM,LM -#> 1590 /en/players/69cbc8b6/Leandro-Cabrera 6 URU LB -#> 1591 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB -#> 1592 /en/players/a4971d84/Djene 2 TOG CB -#> 1593 /en/players/ba5004e1/Damian-Suarez 22 URU RB -#> 1594 /en/players/8f8c6934/David-Soria 13 ESP GK -#> 1595 /en/players/8b0b02c9/Duje-Cop 20 CRO FW -#> 1596 /en/players/9127f9ce/Borja-Fernandez 8 ESP CM,FW -#> 1597 /en/players/f8eca1b6/Enes-Unal 9 TUR FW -#> 1598 /en/players/636eae97/Toni-Villa 19 ESP LM,LW -#> 1599 /en/players/036bba5f/Ruben-Alcaraz 14 ESP CM -#> 1600 /en/players/418f8f61/Michel 21 ESP CM -#> 1601 /en/players/7c388b20/Oscar-Plano 10 ESP RM -#> 1602 /en/players/dbe519cf/Antonito 18 ESP RM,RB -#> 1603 /en/players/e29d1111/Nacho 22 ESP LB -#> 1604 /en/players/41b3069f/Fernando-Calero 5 ESP CB -#> 1605 /en/players/72b07a9c/Kiko-Olivas 4 ESP CB -#> 1606 /en/players/933e8c8a/Javi-Moyano 17 ESP RB -#> 1607 /en/players/25c72b36/Leonardo-Suarez 32 ARG RW,RB,RM -#> 1608 /en/players/8fae77ea/Jordi-Masip 1 ESP GK -#> 1609 /en/players/0ae4e09a/Roger-Marti 9 ESP FW -#> 1610 /en/players/2e23c66b/Emmanuel-Boateng 21 GHA FW -#> 1611 /en/players/64e8ed6d/Borja-Mayoral 2 ESP FW -#> 1612 /en/players/9038c2a1/Jason 23 ESP FW -#> 1613 /en/players/4a478107/Jose-Luis-Morales 11 ESP LM -#> 1614 /en/players/4442fbcd/Nikola-Vukcevic 17 MNE CM -#> 1615 /en/players/61220da2/Jose-Campana 24 ESP CM -#> 1616 /en/players/cac2537b/Enis-Bardhi 10 MKD RM -#> 1617 /en/players/ed239245/Antonio-Luna 22 ESP LB -#> 1618 /en/players/7f203b54/Chema 6 ESP CB -#> 1619 /en/players/474ecac8/Sergio-Postigo 15 ESP CB -#> 1620 /en/players/a60823a4/Pedro-Lopez-Munoz 19 ESP RB -#> 1621 /en/players/5f3eaaf5/Moses-Simon 7 NGA RB -#> 1622 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK -#> 1623 /en/players/220c11f1/Cristhian-Stuani 7 URU FW -#> 1624 /en/players/e7f4603c/Borja-Garcia 10 ESP LW -#> 1625 /en/players/1bda5842/Portu 9 ESP RW -#> 1626 /en/players/5890cef1/Aday 11 ESP LM -#> 1627 /en/players/6f7d826d/Douglas-Luiz 12 BRA CM -#> 1628 /en/players/a25250f8/Alex-Granell 6 ESP CM -#> 1629 /en/players/a10361d2/Aleix-Garcia 23 ESP CB -#> 1630 /en/players/27d0a506/Pedro-Porro 29 ESP RM -#> 1631 /en/players/c49afee6/Seydou-Doumbia 22 CIV RM -#> 1632 /en/players/1633fc8a/Juanpe 15 ESP CB -#> 1633 /en/players/4242011c/Bernardo-Espinosa 2 COL CB -#> 1634 /en/players/ba71d071/Pedro-Alcala 5 ESP CB -#> 1635 /en/players/59d93937/Patrick-Roberts 17 ENG GK -#> 1636 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK -#> 1637 /en/players/3aa4a3be/Loren-Moron 16 ESP FW -#> 1638 /en/players/61bd33d0/Takashi-Inui 8 JPN AM -#> 1639 /en/players/4c5b14d2/Joaquin 17 ESP AM -#> 1640 /en/players/1001ae82/Ryad-Boudebouz 10 ALG AM -#> 1641 /en/players/d7553721/Giovani-Lo-Celso 21 ARG AM -#> 1642 /en/players/ef322658/Andres-Guardado 18 MEX CM -#> 1643 /en/players/167c1bb0/Javi-Garcia 3 ESP CM -#> 1644 /en/players/a6de370d/Sergio-Canales 6 ESP CM -#> 1645 /en/players/24f59bb2/Junior-Firpo 20 ESP WB -#> 1646 /en/players/59d53e8a/Francis-Guerrero 2 ESP WB -#> 1647 /en/players/b14d0c5d/Sidnei 12 BRA CB -#> 1648 /en/players/b742cc0d/Marc-Bartra 5 ESP CB -#> 1649 /en/players/fbd6378b/Aissa-Mandi 23 ALG CB -#> 1650 /en/players/20b9f052/Pau-Lopez 13 ESP GK -#> 1651 /en/players/02ef8778/Raul-de-Tomas 9 ESP FW -#> 1652 /en/players/d8712bf9/Bebe 14 CPV LM -#> 1653 /en/players/90bbd822/Alvaro-Garcia 18 ESP LM -#> 1654 /en/players/b86fe156/Giannelli-Imbula 12 COD CM -#> 1655 /en/players/fc647b34/Oscar-Trejo 8 ARG CM -#> 1656 /en/players/fc8b614b/Jose-Pozo 22 ESP CM -#> 1657 /en/players/5b1bf5e3/Gael-Kakuta 10 COD RM -#> 1658 /en/players/db8f0eba/Adri-Embarba 11 ESP RM -#> 1659 /en/players/5ae499d0/Santi-Comesana 27 ESP DM -#> 1660 /en/players/16e9d0ea/Alex-Moreno 7 ESP LB -#> 1661 /en/players/d70a2141/Jordi-Amat 16 IDN CB -#> 1662 /en/players/1f54ed90/Abdoulaye-Ba 21 SEN CB -#> 1663 /en/players/cacadf4f/Luis-Advincula 17 PER RB -#> 1664 /en/players/17d9e354/Alberto-Garcia 1 ESP GK -#> 1665 /en/players/75645f0e/Borja-Iglesias 7 ESP FW -#> 1666 /en/players/2bee98fd/Sergio-Garcia 9 ESP LM -#> 1667 /en/players/1b17ed86/Esteban-Granero 23 ESP CM -#> 1668 /en/players/379652be/Oscar-Melendo 14 ESP CM -#> 1669 /en/players/ad4d0985/Victor-Sanchez 4 ESP CM,DM -#> 1670 /en/players/35f6db55/Leo-Baptistao 11 BRA RM -#> 1671 /en/players/e1cea3f7/Hernan-Perez 17 PAR RM -#> 1672 /en/players/da27e268/Marc-Roca 21 ESP DM -#> 1673 /en/players/070a3904/Sergi-Darder 10 ESP CM -#> 1674 /en/players/bad38a94/Didac-Vila 12 ESP LB -#> 1675 /en/players/555f3a0b/Mario-Hermoso 22 ESP CB -#> 1676 /en/players/a2609621/Naldo 5 BRA CB -#> 1677 /en/players/ffad706e/Javi-Lopez 16 ESP RB -#> 1678 /en/players/73683fa9/Diego-Lopez 13 ESP GK -#> 1679 /en/players/d87e2cae/Willian-Jose 12 BRA FW -#> 1680 /en/players/d9bda115/David-Zurutuza 17 ESP LM,RM,FW -#> 1681 /en/players/d080ed5e/Mikel-Merino 8 ESP LM -#> 1682 /en/players/2306bfde/Ruben-Pardo 14 ESP CM,FW -#> 1683 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP CM -#> 1684 /en/players/5c7845f6/Igor-Zubeldia 5 ESP CB,CM -#> 1685 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP RM -#> 1686 /en/players/debc6b55/Jon-Bautista 21 ESP FW -#> 1687 /en/players/f1bed920/Kevin-Rodrigues 20 POR LB -#> 1688 /en/players/ad178594/Raul-Navas 22 ESP CB -#> 1689 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP RB,CB -#> 1690 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP RB -#> 1691 /en/players/833fb62e/Sandro-Ramirez 24 ESP FW,LM -#> 1692 /en/players/011d8c56/Miguel-Angel-Moya 13 ESP GK -#> 1693 /en/players/2973d8ff/Michy-Batshuayi 23 BEL FW -#> 1694 /en/players/1fb1c435/Rodrigo 19 ESP FW -#> 1695 /en/players/42276181/Kevin-Gameiro 9 FRA FW -#> 1696 /en/players/0ac94a23/Denis-Cheryshev 11 RUS LM -#> 1697 /en/players/e6bc67d7/Goncalo-Guedes 7 POR LM -#> 1698 /en/players/cce181df/Geoffrey-Kondogbia 6 CTA CM -#> 1699 /en/players/a6951bf8/Francis-Coquelin 17 FRA CM -#> 1700 /en/players/7460ca0d/Daniel-Parejo 10 ESP CM -#> 1701 /en/players/fed17f5a/Carlos-Soler 8 ESP RM -#> 1702 /en/players/8e088e04/Toni-Lato 15 ESP LB -#> 1703 /en/players/d2110326/Mouctar-Diakhaby 12 GUI CB -#> 1704 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA CB -#> 1705 /en/players/c67cd65c/Ruben-Vezo 3 POR RB -#> 1706 /en/players/a9dc785c/Neto 13 BRA GK -#> 1707 /en/players/a6154613/Luis-Suarez 9 URU FW -#> 1708 /en/players/0ef89a37/Philippe-Coutinho 7 BRA LW,LM -#> 1709 /en/players/b19db005/Ousmane-Dembele 11 FRA RW,LW -#> 1710 /en/players/8696bc90/Munir-El-Haddadi 19 MAR LW -#> 1711 /en/players/89f951b5/Ivan-Rakitic 4 CRO LM,RM -#> 1712 /en/players/335fa267/Sergi-Roberto 20 ESP CM -#> 1713 /en/players/5ab0ea87/Sergio-Busquets 5 ESP CM -#> 1714 /en/players/67cdbc0e/Arturo-Vidal 22 CHI RM -#> 1715 /en/players/d70ce98e/Lionel-Messi 10 ARG RW -#> 1716 /en/players/4601e194/Jordi-Alba 18 ESP LB -#> 1717 /en/players/4f28a6ff/Clement-Lenglet 15 FRA CB -#> 1718 /en/players/adfc9123/Gerard-Pique 3 ESP CB -#> 1719 /en/players/d04b94db/Nelson-Semedo 2 POR RB -#> 1720 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER GK -#> 1721 /en/players/6a99e0b1/Inaki-Williams 9 GHA FW -#> 1722 /en/players/293211e1/Aritz-Aduriz 20 ESP FW -#> 1723 /en/players/b6e50615/Yuri-Berchiche 12 ESP LW -#> 1724 /en/players/6fd1ba62/Markel-Susaeta 14 ESP RW -#> 1725 /en/players/b418dbd4/Raul-Garcia 22 ESP AM -#> 1726 /en/players/b037bd4f/Benat-Etxebarria 7 ESP DM -#> 1727 /en/players/003a5c72/Mikel-San-Jose 6 ESP DM -#> 1728 /en/players/240d3a0b/Dani-Garcia 16 ESP DM -#> 1729 /en/players/1fe67e86/Mikel-Balenziaga 24 ESP LB -#> 1730 /en/players/3fc45c73/Inigo-Martinez 4 ESP CB -#> 1731 /en/players/857cb4f3/Peru-Nolaskoain 31 ESP CB -#> 1732 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP CB -#> 1733 /en/players/9f323c71/Oscar-de-Marcos 18 ESP RB -#> 1734 /en/players/5dcf3e90/Unai-Simon 25 ESP GK -#> 1735 /en/players/e897d8ba/Kike 17 ESP FW -#> 1736 /en/players/c4b8bcf4/Charles 19 BRA FW -#> 1737 /en/players/bb4b1242/Sergi-Enrich 9 ESP FW -#> 1738 /en/players/ba5a9545/Pablo-Hervias 18 ESP LM -#> 1739 /en/players/88d91621/Sergio-Alvarez 6 ESP CM -#> 1740 /en/players/2a0c8ba4/Joan-Jordan 24 ESP CM -#> 1741 /en/players/7329018e/Papakouli-Diop 8 SEN CM -#> 1742 /en/players/c90977db/Fabian-Orellana 14 CHI RM -#> 1743 /en/players/3024e383/Jose-Angel 15 ESP LB -#> 1744 /en/players/697295b1/Pedro-Bigas 3 ESP CB -#> 1745 /en/players/d2be40f2/Ivan-Ramis 4 ESP CB -#> 1746 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP CB -#> 1747 /en/players/1f079188/Ruben-Pena 11 ESP RB -#> 1748 /en/players/ac295d9e/Marko-Dmitrovic 1 SRB GK -#> 1749 /en/players/3effaa34/Andre-Silva 12 POR FW -#> 1750 /en/players/eb2fe5b6/Luis-Muriel 14 COL FW -#> 1751 /en/players/942b4f90/Wissam-Ben-Yedder 9 FRA FW -#> 1752 /en/players/b182a240/Quincy-Promes 21 NED LM -#> 1753 /en/players/467bae22/Franco-Vazquez 22 ARG CM,RM -#> 1754 /en/players/fa937f7a/Ever-Banega 10 ARG CM -#> 1755 /en/players/9744ff80/Pablo-Sarabia 17 ESP CM -#> 1756 /en/players/7c4243d4/Roque-Mesa 7 ESP CM -#> 1757 /en/players/2b15a82a/Guilherme-Arana 23 BRA WB,LB -#> 1758 /en/players/3f10bd22/Jesus-Navas 16 ESP WB,RB -#> 1759 /en/players/bc6f5f06/Sergi-Gomez 3 ESP CB -#> 1760 /en/players/8b8a56ce/Simon-Kjaer 4 DEN CB -#> 1761 /en/players/e1deea75/Daniel-Carrico 6 POR CB -#> 1762 /en/players/7b456af7/Tomas-Vaclik 1 CZE GK -#> 1763 /en/players/70d74ece/Karim-Benzema 9 FRA FW -#> 1764 /en/players/7111d552/Vinicius-Junior 28 BRA LW -#> 1765 /en/players/45af8a54/Marco-Asensio 20 ESP LW,RW,FW -#> 1766 /en/players/a58bb1e1/Gareth-Bale 11 WAL RW -#> 1767 /en/players/c0617e2b/Dani-Ceballos 24 ESP LW,RM -#> 1768 /en/players/6ce1f46f/Toni-Kroos 8 GER LM -#> 1769 /en/players/4d224fe8/Casemiro 14 BRA CM -#> 1770 /en/players/6025fab1/Luka-Modric 10 CRO RM -#> 1771 /en/players/fd51b456/Lucas-Vazquez 17 ESP RM,RW -#> 1772 /en/players/2946f9a1/Nacho 6 ESP LB -#> 1773 /en/players/08511d65/Sergio-Ramos 4 ESP CB -#> 1774 /en/players/9f8e9423/Raphael-Varane 5 FRA CB -#> 1775 /en/players/4958bfb2/Dani-Carvajal 2 ESP RB -#> 1776 /en/players/1840e36d/Thibaut-Courtois 25 BEL GK -#> 1777 /en/players/df69b544/Antoine-Griezmann 7 FRA FW -#> 1778 /en/players/a190d597/Diego-Costa 19 ESP FW -#> 1779 /en/players/529f49ab/Thomas-Partey 5 GHA CM -#> 1780 /en/players/55126f3b/Koke 6 ESP LM -#> 1781 /en/players/6434f10d/Rodri 14 ESP CM -#> 1782 /en/players/d4931a5a/Nikola-Kalinic 9 CRO FW -#> 1783 /en/players/c14bc029/Saul-Niguez 8 ESP CM,RM -#> 1784 /en/players/4dbd0916/Thomas-Lemar 11 FRA RM -#> 1785 /en/players/01eb744d/Angel-Correa 10 ARG RM,FW -#> 1786 /en/players/e4ed2628/Filipe-Luis 3 BRA LB -#> 1787 /en/players/fc4f85b1/Diego-Godin 2 URU CB -#> 1788 /en/players/f0da930c/Jose-Maria-Gimenez 24 URU CB -#> 1789 /en/players/cfd8d664/Juanfran 20 ESP RB -#> 1790 /en/players/ee8508c0/Jan-Oblak 13 SVN GK -#> 1791 /en/players/71b47ab9/Cucho 9 COL FW -#> 1792 /en/players/253a06b9/Ezequiel-Avila 19 ARG LW -#> 1793 /en/players/36d5469c/Alex-Gallar 11 ESP RW -#> 1794 /en/players/3902e91b/Gonzalo-Melero 8 ESP AM -#> 1795 /en/players/18dc8533/Juan-Aguilera 5 ESP DM -#> 1796 /en/players/74e0a984/Damian-Musto 23 ARG DM -#> 1797 /en/players/5a626448/Moi-Gomez 6 ESP DM -#> 1798 /en/players/f2a68b97/Carlos-Akapo 15 EQG LB -#> 1799 /en/players/4a895384/Xabier-Etxeita 3 ESP CB -#> 1800 /en/players/c904f3d5/Ruben-Semedo 4 POR CB -#> 1801 /en/players/978cd030/Jorge-Pulido 14 ESP RB,CB -#> 1802 /en/players/7f4c7c9f/Jorge-Miramon 24 ESP LB,RB -#> 1803 /en/players/8970907e/David-Ferreiro 7 ESP LB -#> 1804 /en/players/129dd8e7/Aleksandar-Jovanovic 25 SRB GK -#> 1805 /en/players/220c11f1/Cristhian-Stuani 7 URU FW -#> 1806 /en/players/1bda5842/Portu 9 ESP FW -#> 1807 /en/players/a10361d2/Aleix-Garcia 23 ESP LM,CM -#> 1808 /en/players/a25250f8/Alex-Granell 6 ESP CM -#> 1809 /en/players/e7f4603c/Borja-Garcia 10 ESP CM -#> 1810 /en/players/ba71d071/Pedro-Alcala 5 ESP CB -#> 1811 /en/players/6f7d826d/Douglas-Luiz 12 BRA CM -#> 1812 /en/players/29b61deb/Pere-Pons 8 ESP RM,CM -#> 1813 /en/players/38699c72/Anthony-Lozano 19 HON CM -#> 1814 /en/players/4db76f57/Marc-Muniesa 20 ESP LB -#> 1815 /en/players/4242011c/Bernardo-Espinosa 2 COL CB -#> 1816 /en/players/1633fc8a/Juanpe 15 ESP CB -#> 1817 /en/players/5890cef1/Aday 11 ESP RB -#> 1818 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK -#> 1819 /en/players/09a9e921/Carlos-Bacca 9 COL FW -#> 1820 /en/players/81f0781e/Gerard-Moreno 7 ESP FW,LM -#> 1821 /en/players/e2e9c250/Santi-Cazorla 19 ESP LM -#> 1822 /en/players/5ceba7fc/Karl-Toko-Ekambi 17 CMR FW,RM -#> 1823 /en/players/89cbc961/Ramiro-Funes-Mori 4 ARG CM -#> 1824 /en/players/963829d0/Manu-Trigueros 14 ESP CM -#> 1825 /en/players/82927de4/Pablo-Fornals 8 ESP RM,LM -#> 1826 /en/players/808d48f3/Jaume-Costa 11 ESP LB -#> 1827 /en/players/63f04c6c/Alfonso-Pedraza 16 ESP LB -#> 1828 /en/players/b3dc6eca/Victor-Ruiz 6 ESP CB -#> 1829 /en/players/42dcf26d/Alvaro-Gonzalez 3 ESP CB -#> 1830 /en/players/fb5d47b3/Mario-Gaspar 2 ESP RB -#> 1831 /en/players/ad6295d4/Miguel-Layun 24 MEX RB -#> 1832 /en/players/9f0ea33f/Sergio-Asenjo 1 ESP GK -#> 1833 /en/players/8b0b02c9/Duje-Cop 20 CRO FW -#> 1834 /en/players/25c72b36/Leonardo-Suarez 32 ARG FW -#> 1835 /en/players/c93231dc/Anuar 23 MAR FW -#> 1836 /en/players/636eae97/Toni-Villa 19 ESP LM -#> 1837 /en/players/d2fa73e7/Ivi 7 ESP LM -#> 1838 /en/players/036bba5f/Ruben-Alcaraz 14 ESP CM -#> 1839 /en/players/418f8f61/Michel 21 ESP CM -#> 1840 /en/players/9127f9ce/Borja-Fernandez 8 ESP CM -#> 1841 /en/players/dbe519cf/Antonito 18 ESP RM -#> 1842 /en/players/e29d1111/Nacho 22 ESP LB -#> 1843 /en/players/41b3069f/Fernando-Calero 5 ESP CB -#> 1844 /en/players/72b07a9c/Kiko-Olivas 4 ESP CB -#> 1845 /en/players/933e8c8a/Javi-Moyano 17 ESP RB -#> 1846 /en/players/8fae77ea/Jordi-Masip 1 ESP GK -#> 1847 /en/players/4a478107/Jose-Luis-Morales 11 ESP FW -#> 1848 /en/players/2e23c66b/Emmanuel-Boateng 21 GHA FW -#> 1849 /en/players/ecd8c01e/Ruben-Rochina 16 ESP CM -#> 1850 /en/players/e208bcc8/Cheick-Doukoure 5 CIV CM -#> 1851 /en/players/51c30111/Sanjin-Prcic 8 BIH CM -#> 1852 /en/players/61220da2/Jose-Campana 24 ESP CM -#> 1853 /en/players/d4ef9ac5/Tono 3 ESP WB -#> 1854 /en/players/9038c2a1/Jason 23 ESP WB -#> 1855 /en/players/5f3eaaf5/Moses-Simon 7 NGA CM -#> 1856 /en/players/c00097d2/Rober 4 ESP CB -#> 1857 /en/players/474ecac8/Sergio-Postigo 15 ESP CB -#> 1858 /en/players/e7ab4179/Erick-Cabaco 18 URU CB -#> 1859 /en/players/7f203b54/Chema 6 ESP WB -#> 1860 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK -#> 1861 /en/players/99bebd12/John-Guidetti 10 SWE FW -#> 1862 /en/players/6922f806/Jonathan-Calleri 12 ARG FW -#> 1863 /en/players/19b776e9/Ruben-Sobrino 7 ESP FW -#> 1864 /en/players/45e304c8/Burgui 14 ESP LM -#> 1865 /en/players/244f57b9/Jony 23 ESP LM -#> 1866 /en/players/05a4465d/Manu-Garcia 19 ESP CM -#> 1867 /en/players/e54bd0a2/Tomas-Pina-Isla 8 ESP CM -#> 1868 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RM -#> 1869 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB -#> 1870 /en/players/8db394aa/Ximo-Navarro 15 ESP RB -#> 1871 /en/players/d9764034/Guillermo-Maripan 6 CHI CB -#> 1872 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB -#> 1873 /en/players/355c883a/Martin-Agirregabiria 21 ESP LB,RB -#> 1874 /en/players/97852360/Fernando-Pacheco 1 ESP GK -#> 1875 /en/players/4c5b14d2/Joaquin 17 ESP FW,WB,CM -#> 1876 /en/players/0a0cc13c/Sergio-Leon 7 ESP FW -#> 1877 /en/players/3aa4a3be/Loren-Moron 16 ESP FW -#> 1878 /en/players/d7553721/Giovani-Lo-Celso 21 ARG CM -#> 1879 /en/players/a6de370d/Sergio-Canales 6 ESP CM -#> 1880 /en/players/0a447501/Antonio-Sanabria 9 PAR FW -#> 1881 /en/players/1001ae82/Ryad-Boudebouz 10 ALG CM -#> 1882 /en/players/72a99e38/Cristian-Tello 11 ESP WB -#> 1883 /en/players/487d9b09/Antonio-Barragan 19 ESP WB -#> 1884 /en/players/dee86451/William-Carvalho 14 POR CM -#> 1885 /en/players/b742cc0d/Marc-Bartra 5 ESP CB -#> 1886 /en/players/167c1bb0/Javi-Garcia 3 ESP CB -#> 1887 /en/players/fbd6378b/Aissa-Mandi 23 ALG CB -#> 1888 /en/players/cda0b317/Joel-Robles 1 ESP GK -#> 1889 /en/players/04e17fd5/Youssef-En-Nesyri 26 MAR FW -#> 1890 /en/players/8f898ba8/Guido-Carrillo 9 ARG FW -#> 1891 /en/players/19709006/Oscar-Rodriguez-Arnaiz 27 ESP LM -#> 1892 /en/players/b0fce72c/Mikel-Vesga 23 ESP CM -#> 1893 /en/players/ac454a4f/Gerard-Gumbau 6 ESP CM,LM -#> 1894 /en/players/3c7bc9bd/Ruben-Perez 21 ESP CM -#> 1895 /en/players/37f96552/Nabil-El-Zhar 10 MAR RM -#> 1896 /en/players/1d5f96d9/Sabin-Merino 18 ESP RM -#> 1897 /en/players/f2308b33/Jonathan-Silva 5 ARG LB -#> 1898 /en/players/1a317a1b/Raul-Garcia 14 ESP CB -#> 1899 /en/players/f3112790/Unai-Bustinza 3 ESP CB -#> 1900 /en/players/a03c82b2/Rodrigo-Tarin 28 ESP CB -#> 1901 /en/players/9ba48d64/Juanfran 2 ESP RB -#> 1902 /en/players/75751c99/Ivan-Cuellar 1 ESP GK -#> 1903 /en/players/4c2e9442/Maxi-Gomez 9 URU FW -#> 1904 /en/players/7dcf86f6/Iago-Aspas 10 ESP FW -#> 1905 /en/players/c9e39d91/Brais-Mendez 23 ESP LM,RM -#> 1906 /en/players/e1cbb531/Stanislav-Lobotka 14 SVK CM -#> 1907 /en/players/ed5c5fa3/Fran-Beltran 8 ESP CM -#> 1908 /en/players/e49ce451/Okay-Yokuslu 5 TUR CM -#> 1909 /en/players/0f134faf/Mathias-Jensen 18 DEN RM -#> 1910 /en/players/27a013f7/Nestor-Araujo 4 MEX CB,RM -#> 1911 /en/players/b18a3023/Junior-Alonso 25 PAR LB -#> 1912 /en/players/51e3954c/Facundo-Roncaglia 24 ARG CB -#> 1913 /en/players/fd9c4805/Pione-Sisto 11 DEN LM -#> 1914 /en/players/92b4a127/Gustavo-Cabral 22 ARG CB -#> 1915 /en/players/cb574619/Hugo-Mallo 2 ESP RB -#> 1916 /en/players/8875b8c9/Sergio-Alvarez 1 ESP GK -#> 1917 /en/players/43f71e77/Jorge-Molina 19 ESP FW -#> 1918 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW -#> 1919 /en/players/c7429db3/Robert-Ibanez 17 ESP RM,LM -#> 1920 /en/players/f3b1d9a2/Amath 11 SEN LM,RM -#> 1921 /en/players/04a65a8f/Markel-Bergara 5 ESP CM -#> 1922 /en/players/00b28772/Nemanja-Maksimovic 20 SRB CM -#> 1923 /en/players/58afe001/Mauro-Arambarri 18 URU CM -#> 1924 /en/players/02319ad7/Jaime-Mata 7 ESP FW,LM -#> 1925 /en/players/8e010ff4/Francisco-Portillo 8 ESP RM,CM -#> 1926 /en/players/3e4f735d/Vitorino-Antunes 3 POR LB -#> 1927 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB -#> 1928 /en/players/a4971d84/Djene 2 TOG CB -#> 1929 /en/players/ba5004e1/Damian-Suarez 22 URU RB -#> 1930 /en/players/8f8c6934/David-Soria 13 ESP GK -#> 1931 /en/players/6a99e0b1/Inaki-Williams 9 GHA FW,LW -#> 1932 /en/players/c05dfb74/Iker-Muniain 10 ESP LW,AM -#> 1933 /en/players/6fd1ba62/Markel-Susaeta 14 ESP RW -#> 1934 /en/players/b037bd4f/Benat-Etxebarria 7 ESP LM,DM -#> 1935 /en/players/003a5c72/Mikel-San-Jose 6 ESP DM -#> 1936 /en/players/240d3a0b/Dani-Garcia 16 ESP CM,DM -#> 1937 /en/players/b418dbd4/Raul-Garcia 22 ESP RM -#> 1938 /en/players/293211e1/Aritz-Aduriz 20 ESP FW -#> 1939 /en/players/b6e50615/Yuri-Berchiche 12 ESP LB -#> 1940 /en/players/3fc45c73/Inigo-Martinez 4 ESP CB -#> 1941 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP CB -#> 1942 /en/players/9f323c71/Oscar-de-Marcos 18 ESP RB -#> 1943 /en/players/37f1cf47/Ander-Capa 21 ESP RB -#> 1944 /en/players/5dcf3e90/Unai-Simon 25 ESP GK -#> 1945 /en/players/debc6b55/Jon-Bautista 21 ESP FW -#> 1946 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP LW -#> 1947 /en/players/5d311e8d/Hector-Moreno 6 MEX LW -#> 1948 /en/players/7958dc65/Luca-Sangalli 23 ESP RW -#> 1949 /en/players/833fb62e/Sandro-Ramirez 24 ESP RW -#> 1950 /en/players/2306bfde/Ruben-Pardo 14 ESP AM -#> 1951 /en/players/d9bda115/David-Zurutuza 17 ESP AM -#> 1952 /en/players/5c7845f6/Igor-Zubeldia 5 ESP DM -#> 1953 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP DM -#> 1954 /en/players/f1bed920/Kevin-Rodrigues 20 POR LB -#> 1955 /en/players/ad178594/Raul-Navas 22 ESP CB -#> 1956 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP CB -#> 1957 /en/players/6f5f82c0/Andoni-Gorosabel 18 ESP RB -#> 1958 /en/players/011d8c56/Miguel-Angel-Moya 13 ESP GK -#> 1959 /en/players/220c11f1/Cristhian-Stuani 7 URU FW -#> 1960 /en/players/1bda5842/Portu 9 ESP FW -#> 1961 /en/players/c49afee6/Seydou-Doumbia 22 CIV FW -#> 1962 /en/players/a25250f8/Alex-Granell 6 ESP CM -#> 1963 /en/players/e7f4603c/Borja-Garcia 10 ESP CM -#> 1964 /en/players/6f7d826d/Douglas-Luiz 12 BRA CM -#> 1965 /en/players/5890cef1/Aday 11 ESP WB -#> 1966 /en/players/59d93937/Patrick-Roberts 17 ENG WB -#> 1967 /en/players/27d0a506/Pedro-Porro 29 ESP WB -#> 1968 /en/players/38699c72/Anthony-Lozano 19 HON WB -#> 1969 /en/players/4db76f57/Marc-Muniesa 20 ESP CB -#> 1970 /en/players/4242011c/Bernardo-Espinosa 2 COL CB -#> 1971 /en/players/1633fc8a/Juanpe 15 ESP CB -#> 1972 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK -#> 1973 /en/players/c4b8bcf4/Charles 19 BRA FW -#> 1974 /en/players/e897d8ba/Kike 17 ESP FW -#> 1975 /en/players/bb4b1242/Sergi-Enrich 9 ESP FW -#> 1976 /en/players/88d91621/Sergio-Alvarez 6 ESP CM -#> 1977 /en/players/9ab48bde/Pablo-de-Blasis 16 ARG LM,RM -#> 1978 /en/players/2a0c8ba4/Joan-Jordan 24 ESP CM,FW -#> 1979 /en/players/7329018e/Papakouli-Diop 8 SEN CM -#> 1980 /en/players/c90977db/Fabian-Orellana 14 CHI RM -#> 1981 /en/players/1daec722/Marc-Cucurella 20 ESP LM,RM -#> 1982 /en/players/3024e383/Jose-Angel 15 ESP LB -#> 1983 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP CB -#> 1984 /en/players/a8fbae1d/Paulo-Oliveira 12 POR CB -#> 1985 /en/players/1f079188/Ruben-Pena 11 ESP RB -#> 1986 /en/players/ac295d9e/Marko-Dmitrovic 1 SRB GK -#> 1987 /en/players/02319ad7/Jaime-Mata 7 ESP FW -#> 1988 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW -#> 1989 /en/players/43f71e77/Jorge-Molina 19 ESP FW -#> 1990 /en/players/f3b1d9a2/Amath 11 SEN LM -#> 1991 /en/players/c7429db3/Robert-Ibanez 17 ESP RM -#> 1992 /en/players/00b28772/Nemanja-Maksimovic 20 SRB CM -#> 1993 /en/players/58afe001/Mauro-Arambarri 18 URU CM -#> 1994 /en/players/04a65a8f/Markel-Bergara 5 ESP CM -#> 1995 /en/players/8e010ff4/Francisco-Portillo 8 ESP RM,LM -#> 1996 /en/players/3e4f735d/Vitorino-Antunes 3 POR LB -#> 1997 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB -#> 1998 /en/players/a4971d84/Djene 2 TOG CB -#> 1999 /en/players/ba5004e1/Damian-Suarez 22 URU RB -#> 2000 /en/players/8f8c6934/David-Soria 13 ESP GK -#> 2001 /en/players/2e23c66b/Emmanuel-Boateng 21 GHA FW -#> 2002 /en/players/64e8ed6d/Borja-Mayoral 2 ESP FW -#> 2003 /en/players/4a478107/Jose-Luis-Morales 11 ESP FW -#> 2004 /en/players/61220da2/Jose-Campana 24 ESP CM -#> 2005 /en/players/ecd8c01e/Ruben-Rochina 16 ESP CM -#> 2006 /en/players/51c30111/Sanjin-Prcic 8 BIH CM -#> 2007 /en/players/cac2537b/Enis-Bardhi 10 MKD CM -#> 2008 /en/players/d4ef9ac5/Tono 3 ESP WB -#> 2009 /en/players/9038c2a1/Jason 23 ESP WB -#> 2010 /en/players/c00097d2/Rober 4 ESP CB -#> 2011 /en/players/474ecac8/Sergio-Postigo 15 ESP CB -#> 2012 /en/players/e7ab4179/Erick-Cabaco 18 URU CB -#> 2013 /en/players/a60823a4/Pedro-Lopez-Munoz 19 ESP CB -#> 2014 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK -#> 2015 /en/players/6922f806/Jonathan-Calleri 12 ARG FW -#> 2016 /en/players/244f57b9/Jony 23 ESP LW -#> 2017 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RW -#> 2018 /en/players/19b776e9/Ruben-Sobrino 7 ESP RW -#> 2019 /en/players/999908af/Wakaso 22 GHA LM -#> 2020 /en/players/05a4465d/Manu-Garcia 19 ESP LM -#> 2021 /en/players/e54bd0a2/Tomas-Pina-Isla 8 ESP CM -#> 2022 /en/players/4accb7e0/Darko-Brasanac 20 SRB RM -#> 2023 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB -#> 2024 /en/players/d9764034/Guillermo-Maripan 6 CHI CB -#> 2025 /en/players/355c883a/Martin-Agirregabiria 21 ESP RB -#> 2026 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB -#> 2027 /en/players/8db394aa/Ximo-Navarro 15 ESP RB,CB -#> 2028 /en/players/97852360/Fernando-Pacheco 1 ESP GK -#> 2029 /en/players/70d74ece/Karim-Benzema 9 FRA FW -#> 2030 /en/players/5c4dc0ff/Mariano 7 DOM FW -#> 2031 /en/players/c0617e2b/Dani-Ceballos 24 ESP LW,LM -#> 2032 /en/players/a58bb1e1/Gareth-Bale 11 WAL RW,LW -#> 2033 /en/players/7111d552/Vinicius-Junior 28 BRA LW -#> 2034 /en/players/6ce1f46f/Toni-Kroos 8 GER LM,CM -#> 2035 /en/players/4d224fe8/Casemiro 14 BRA CM -#> 2036 /en/players/45af8a54/Marco-Asensio 20 ESP RW,CM -#> 2037 /en/players/6025fab1/Luka-Modric 10 CRO RM -#> 2038 /en/players/2946f9a1/Nacho 6 ESP LB -#> 2039 /en/players/08511d65/Sergio-Ramos 4 ESP CB -#> 2040 /en/players/9f8e9423/Raphael-Varane 5 FRA CB -#> Age Min Tkl_Tackles TklW_Tackles Def 3rd_Tackles Mid 3rd_Tackles -#> 1 31-309 80 1 0 0 1 -#> 2 21-193 10 0 0 0 0 -#> 3 27-288 90 0 0 0 0 -#> 4 26-088 90 0 0 0 0 -#> 5 21-050 61 0 0 0 0 -#> 6 25-114 29 0 0 0 0 -#> 7 28-304 73 2 2 1 1 -#> 8 25-178 17 1 0 1 0 -#> 9 30-015 90 0 0 0 0 -#> 10 26-143 90 1 0 0 1 -#> 11 29-037 90 2 2 1 1 -#> 12 27-109 90 1 1 1 0 -#> 13 18-338 90 4 3 1 1 -#> 14 27-134 90 0 0 0 0 -#> 15 21-211 63 1 1 0 0 -#> 16 27-187 27 0 0 0 0 -#> 17 23-222 87 8 6 5 1 -#> 18 30-019 3 1 0 1 0 -#> 19 26-233 90 1 0 0 1 -#> 20 23-214 70 3 1 1 2 -#> 21 22-058 20 0 0 0 0 -#> 22 27-108 90 1 0 0 1 -#> 23 37-215 90 2 2 0 2 -#> 24 29-163 90 7 3 6 1 -#> 25 22-337 90 2 1 2 0 -#> 26 29-361 90 1 1 1 0 -#> 27 32-175 90 0 0 0 0 -#> 28 29-226 90 0 0 0 0 -#> 29 24-230 90 0 0 0 0 -#> 30 28-179 62 0 0 0 0 -#> 31 22-166 28 0 0 0 0 -#> 32 21-360 90 5 4 1 2 -#> 33 22-159 73 5 2 1 4 -#> 34 31-066 17 0 0 0 0 -#> 35 31-323 90 1 0 0 0 -#> 36 27-182 90 5 2 1 2 -#> 37 26-132 65 2 2 0 1 -#> 38 30-076 25 0 0 0 0 -#> 39 29-228 90 1 1 1 0 -#> 40 27-214 90 5 2 3 2 -#> 41 26-299 90 1 1 0 1 -#> 42 23-247 90 0 0 0 0 -#> 43 27-226 73 0 0 0 0 -#> 44 27-153 17 0 0 0 0 -#> 45 31-025 90 0 0 0 0 -#> 46 23-046 90 4 3 4 0 -#> 47 25-078 90 1 0 0 1 -#> 48 25-340 67 2 0 1 0 -#> 49 24-270 23 2 2 1 1 -#> 50 24-042 89 2 0 1 1 -#> 51 22-339 1 0 0 0 0 -#> 52 28-283 90 0 0 0 0 -#> 53 26-167 90 0 0 0 0 -#> 54 29-286 90 2 1 2 0 -#> 55 31-113 90 1 1 1 0 -#> 56 28-337 90 0 0 0 0 -#> 57 22-004 89 1 0 0 0 -#> 58 21-221 1 0 0 0 0 -#> 59 23-195 51 1 1 1 0 -#> 60 21-025 39 0 0 0 0 -#> 61 21-223 76 3 1 1 1 -#> 62 24-335 14 0 0 0 0 -#> 63 31-017 90 0 0 0 0 -#> 64 23-266 90 0 0 0 0 -#> 65 19-196 90 1 1 0 1 -#> 66 25-190 90 2 1 0 2 -#> 67 32-308 90 0 0 0 0 -#> 68 26-354 90 1 1 1 0 -#> 69 27-057 90 0 0 0 0 -#> 70 32-015 90 0 0 0 0 -#> 71 25-213 70 0 0 0 0 -#> 72 35-070 20 1 1 1 0 -#> 73 29-140 80 3 2 1 1 -#> 74 20-085 10 0 0 0 0 -#> 75 25-357 70 1 1 1 0 -#> 76 29-174 20 2 2 1 1 -#> 77 24-239 90 1 0 1 0 -#> 78 21-265 90 4 2 4 0 -#> 79 30-344 90 4 2 3 1 -#> 80 29-070 90 1 0 0 0 -#> 81 23-061 90 1 0 1 0 -#> 82 28-313 90 2 1 2 0 -#> 83 32-209 90 5 1 2 3 -#> 84 36-288 90 0 0 0 0 -#> 85 25-338 90 0 0 0 0 -#> 86 26-133 90 0 0 0 0 -#> 87 33-248 72 1 0 0 1 -#> 88 26-305 18 0 0 0 0 -#> 89 19-218 64 2 2 0 2 -#> 90 22-293 26 1 0 0 1 -#> 91 21-174 90 3 1 2 0 -#> 92 22-177 76 0 0 0 0 -#> 93 31-344 14 0 0 0 0 -#> 94 22-131 90 2 2 2 0 -#> 95 27-166 90 1 1 1 0 -#> 96 28-222 90 0 0 0 0 -#> 97 27-267 90 4 3 2 0 -#> 98 29-051 90 0 0 0 0 -#> 99 26-268 90 0 0 0 0 -#> 100 25-300 67 0 0 0 0 -#> 101 25-090 23 0 0 0 0 -#> 102 22-057 58 1 1 0 1 -#> 103 32-030 32 0 0 0 0 -#> 104 21-141 90 2 1 1 0 -#> 105 28-163 90 2 0 1 1 -#> 106 21-119 79 3 1 1 1 -#> 107 24-143 11 0 0 0 0 -#> 108 20-316 90 1 0 1 0 -#> 109 30-213 90 0 0 0 0 -#> 110 25-002 90 1 1 1 0 -#> 111 26-055 90 0 0 0 0 -#> 112 26-090 90 1 0 1 0 -#> 113 31-055 90 0 0 0 0 -#> 114 31-206 90 0 0 0 0 -#> 115 21-095 76 0 0 0 0 -#> 116 22-006 14 0 0 0 0 -#> 117 30-161 90 0 0 0 0 -#> 118 30-033 84 1 1 0 0 -#> 119 31-088 6 1 1 0 1 -#> 120 26-192 90 3 1 1 1 -#> 121 29-150 90 0 0 0 0 -#> 122 24-277 90 0 0 0 0 -#> 123 31-197 90 1 0 0 1 -#> 124 24-275 45 0 0 0 0 -#> 125 26-067 45 1 1 0 0 -#> 126 26-110 90 0 0 0 0 -#> 127 26-078 70 0 0 0 0 -#> 128 24-293 20 0 0 0 0 -#> 129 27-040 67 2 1 1 0 -#> 130 25-358 23 0 0 0 0 -#> 131 28-280 90 2 1 2 0 -#> 132 32-114 90 6 2 3 3 -#> 133 28-276 67 2 1 2 0 -#> 134 21-221 23 0 0 0 0 -#> 135 28-024 90 4 1 4 0 -#> 136 22-304 90 0 0 0 0 -#> 137 24-104 90 2 1 2 0 -#> 138 28-286 90 2 2 1 1 -#> 139 22-100 90 2 1 2 0 -#> 140 26-092 90 0 0 0 0 -#> 141 28-267 45 0 0 0 0 -#> 142 34-137 45 1 1 0 0 -#> 143 28-174 90 0 0 0 0 -#> 144 28-038 55 0 0 0 0 -#> 145 25-145 35 2 1 0 2 -#> 146 24-044 90 5 3 2 3 -#> 147 32-153 90 1 1 0 1 -#> 148 32-204 90 0 0 0 0 -#> 149 28-348 90 0 0 0 0 -#> 150 31-096 78 3 2 3 0 -#> 151 27-338 12 0 0 0 0 -#> 152 26-223 90 4 4 3 1 -#> 153 27-032 90 2 1 1 1 -#> 154 26-207 90 0 0 0 0 -#> 155 26-219 90 1 0 1 0 -#> 156 19-121 76 0 0 0 0 -#> 157 24-137 14 0 0 0 0 -#> 158 24-057 90 2 2 1 1 -#> 159 24-229 90 0 0 0 0 -#> 160 31-071 89 3 3 2 1 -#> 161 30-140 1 0 0 0 0 -#> 162 26-153 69 0 0 0 0 -#> 163 24-194 21 3 3 2 1 -#> 164 33-106 90 6 4 3 3 -#> 165 30-292 90 1 0 1 0 -#> 166 27-133 90 1 1 0 1 -#> 167 29-078 90 3 3 2 1 -#> 168 22-172 90 0 0 0 0 -#> 169 30-115 90 2 1 0 1 -#> 170 26-104 90 1 0 0 1 -#> 171 22-157 75 1 1 0 1 -#> 172 28-170 15 0 0 0 0 -#> 173 24-157 67 0 0 0 0 -#> 174 36-157 23 0 0 0 0 -#> 175 27-059 90 2 2 1 1 -#> 176 26-151 90 0 0 0 0 -#> 177 25-072 90 1 1 1 0 -#> 178 36-040 90 0 0 0 0 -#> 179 27-230 90 5 3 4 1 -#> 180 33-039 90 1 1 1 0 -#> 181 33-191 90 0 0 0 0 -#> 182 22-286 90 0 0 0 0 -#> 183 29-178 90 1 1 1 0 -#> 184 26-100 76 1 0 0 1 -#> 185 27-125 14 0 0 0 0 -#> 186 30-051 69 1 1 1 0 -#> 187 25-135 21 2 1 0 2 -#> 188 29-073 90 2 1 2 0 -#> 189 28-351 60 2 2 1 1 -#> 190 28-363 30 0 0 0 0 -#> 191 32-271 90 1 1 0 1 -#> 192 26-144 90 3 2 2 1 -#> 193 29-146 90 0 0 0 0 -#> 194 31-154 90 2 2 1 1 -#> 195 29-143 90 0 0 0 0 -#> 196 30-243 90 2 2 0 0 -#> 197 22-210 90 1 0 0 1 -#> 198 29-034 76 1 0 0 1 -#> 199 27-049 14 0 0 0 0 -#> 200 26-120 57 3 1 2 0 -#> 201 26-177 33 1 0 0 1 -#> 202 28-227 90 2 1 1 1 -#> 203 22-012 70 1 0 0 0 -#> 204 32-344 20 1 1 0 1 -#> 205 30-099 90 3 3 1 1 -#> 206 32-142 90 1 1 1 0 -#> 207 28-213 90 2 2 1 1 -#> 208 26-220 90 2 2 1 0 -#> 209 31-247 90 0 0 0 0 -#> 210 36-119 70 0 0 0 0 -#> 211 31-115 20 0 0 0 0 -#> 212 22-034 57 0 0 0 0 -#> 213 29-299 33 0 0 0 0 -#> 214 26-083 90 2 0 1 1 -#> 215 22-323 90 4 3 0 4 -#> 216 28-067 63 0 0 0 0 -#> 217 23-190 27 0 0 0 0 -#> 218 23-205 90 4 3 1 3 -#> 219 27-063 90 1 0 0 1 -#> 220 28-087 90 0 0 0 0 -#> 221 26-231 90 4 3 4 0 -#> 222 30-114 90 4 3 1 1 -#> 223 25-137 90 0 0 0 0 -#> 224 22-256 66 0 0 0 0 -#> 225 31-103 24 0 0 0 0 -#> 226 27-167 90 1 1 0 0 -#> 227 29-081 90 1 1 0 1 -#> 228 25-186 90 3 3 3 0 -#> 229 29-126 90 3 3 1 1 -#> 230 21-230 75 4 2 1 2 -#> 231 24-322 15 0 0 0 0 -#> 232 23-087 90 3 2 3 0 -#> 233 27-267 90 0 0 0 0 -#> 234 31-314 66 1 1 1 0 -#> 235 21-244 24 0 0 0 0 -#> 236 25-328 90 1 1 1 0 -#> 237 29-032 90 0 0 0 0 -#> 238 27-152 71 1 1 1 0 -#> 239 23-101 19 0 0 0 0 -#> 240 29-317 90 0 0 0 0 -#> 241 22-281 62 4 3 4 0 -#> 242 28-291 28 2 2 0 1 -#> 243 23-272 90 1 0 1 0 -#> 244 26-224 90 1 1 1 0 -#> 245 23-164 80 1 0 0 0 -#> 246 25-068 10 0 0 0 0 -#> 247 33-011 90 7 5 3 4 -#> 248 32-185 90 6 2 3 3 -#> 249 27-224 90 1 1 1 0 -#> 250 33-223 90 2 1 2 0 -#> 251 25-225 90 0 0 0 0 -#> 252 37-190 69 0 0 0 0 -#> 253 21-160 21 0 0 0 0 -#> 254 24-066 90 0 0 0 0 -#> 255 30-249 90 2 2 0 1 -#> 256 25-244 90 1 1 0 1 -#> 257 28-088 90 2 2 1 0 -#> 258 22-294 75 1 1 0 0 -#> 259 32-040 15 0 0 0 0 -#> 260 28-191 90 1 1 1 0 -#> 261 19-299 90 2 1 1 1 -#> 262 23-208 90 0 0 0 0 -#> 263 29-128 64 1 1 0 1 -#> 264 26-193 26 0 0 0 0 -#> 265 21-070 90 0 0 0 0 -#> 266 27-087 84 1 0 0 0 -#> 267 21-080 6 0 0 0 0 -#> 268 28-151 57 1 0 0 1 -#> 269 25-160 33 2 2 1 1 -#> 270 24-052 90 2 2 1 1 -#> 271 23-245 90 2 1 0 2 -#> 272 29-116 90 2 2 0 2 -#> 273 31-358 64 0 0 0 0 -#> 274 23-260 26 2 1 2 0 -#> 275 29-112 90 0 0 0 0 -#> 276 29-338 90 0 0 0 0 -#> 277 27-316 90 1 1 1 0 -#> 278 29-343 90 1 1 1 0 -#> 279 34-085 90 0 0 0 0 -#> 280 29-304 79 0 0 0 0 -#> 281 36-124 11 0 0 0 0 -#> 282 31-120 85 1 1 1 0 -#> 283 27-068 5 0 0 0 0 -#> 284 28-072 90 2 2 1 1 -#> 285 23-210 90 3 2 1 1 -#> 286 22-328 90 1 0 0 1 -#> 287 23-195 70 0 0 0 0 -#> 288 22-039 20 1 1 0 1 -#> 289 31-145 90 0 0 0 0 -#> 290 28-092 90 0 0 0 0 -#> 291 26-236 90 0 0 0 0 -#> 292 30-119 90 1 0 1 0 -#> 293 25-142 90 0 0 0 0 -#> 294 28-179 90 0 0 0 0 -#> 295 28-272 74 1 0 0 0 -#> 296 34-142 16 1 0 1 0 -#> 297 25-335 66 1 1 0 0 -#> 298 25-169 24 1 1 0 1 -#> 299 32-158 90 1 1 0 1 -#> 300 25-150 90 4 2 0 4 -#> 301 24-049 83 2 2 0 1 -#> 302 28-043 7 0 0 0 0 -#> 303 28-353 90 2 2 1 1 -#> 304 31-101 90 2 2 2 0 -#> 305 26-228 90 0 0 0 0 -#> 306 27-037 90 2 2 1 1 -#> 307 26-212 90 0 0 0 0 -#> 308 27-091 90 0 0 0 0 -#> 309 28-155 45 1 1 0 0 -#> 310 25-164 45 0 0 0 0 -#> 311 23-264 65 1 1 0 0 -#> 312 25-153 25 1 0 0 1 -#> 313 23-249 90 2 2 2 0 -#> 314 29-120 90 0 0 0 0 -#> 315 31-362 90 0 0 0 0 -#> 316 24-056 90 2 1 1 1 -#> 317 29-342 90 0 0 0 0 -#> 318 27-320 83 1 1 0 1 -#> 319 21-084 7 0 0 0 0 -#> 320 29-347 90 2 1 1 1 -#> 321 34-089 90 0 0 0 0 -#> 322 26-274 90 1 1 1 0 -#> 323 25-096 90 2 2 0 2 -#> 324 32-036 57 0 0 0 0 -#> 325 22-063 33 0 0 0 0 -#> 326 28-169 90 3 2 1 2 -#> 327 21-147 90 3 2 3 0 -#> 328 21-125 72 0 0 0 0 -#> 329 25-306 18 0 0 0 0 -#> 330 20-322 90 4 3 3 1 -#> 331 30-219 90 0 0 0 0 -#> 332 25-008 27 1 1 1 0 -#> 333 24-149 63 1 0 1 0 -#> 334 26-061 90 1 1 1 0 -#> 335 26-096 90 0 0 0 0 -#> 336 26-085 72 0 0 0 0 -#> 337 24-300 18 0 0 0 0 -#> 338 26-000 63 1 1 0 1 -#> 339 26-132 27 0 0 0 0 -#> 340 27-047 86 2 1 0 1 -#> 341 24-108 4 0 0 0 0 -#> 342 32-121 90 1 0 1 0 -#> 343 28-031 90 4 4 2 2 -#> 344 28-287 90 0 0 0 0 -#> 345 22-311 90 2 1 1 0 -#> 346 24-111 90 5 3 4 1 -#> 347 28-293 90 2 0 2 0 -#> 348 22-107 90 2 1 2 0 -#> 349 26-099 90 0 0 0 0 -#> 350 24-238 90 1 1 0 1 -#> 351 30-084 60 0 0 0 0 -#> 352 22-174 30 0 0 0 0 -#> 353 27-190 90 0 0 0 0 -#> 354 26-140 81 1 0 1 0 -#> 355 28-187 9 0 0 0 0 -#> 356 31-331 90 1 0 0 1 -#> 357 22-003 90 0 0 0 0 -#> 358 22-167 75 0 0 0 0 -#> 359 27-014 15 1 1 1 0 -#> 360 29-236 90 3 3 2 0 -#> 361 27-222 90 1 1 1 0 -#> 362 26-307 90 2 2 2 0 -#> 363 23-255 90 0 0 0 0 -#> 364 29-322 90 0 0 0 0 -#> 365 27-157 75 1 1 0 0 -#> 366 23-106 15 2 2 1 0 -#> 367 22-286 90 1 0 0 1 -#> 368 23-277 90 10 6 4 6 -#> 369 22-064 90 4 3 1 3 -#> 370 23-169 65 2 1 2 0 -#> 371 26-229 25 2 0 1 1 -#> 372 22-192 90 4 4 1 2 -#> 373 32-190 90 0 0 0 0 -#> 374 27-229 90 1 1 1 0 -#> 375 33-228 35 0 0 0 0 -#> 376 25-073 55 4 3 4 0 -#> 377 25-230 90 0 0 0 0 -#> 378 26-110 90 1 1 0 1 -#> 379 25-302 76 0 0 0 0 -#> 380 19-236 14 0 0 0 0 -#> 381 21-324 68 2 2 2 0 -#> 382 22-163 22 0 0 0 0 -#> 383 30-121 90 5 3 2 2 -#> 384 27-065 68 1 0 0 1 -#> 385 24-163 22 0 0 0 0 -#> 386 31-160 90 2 1 2 0 -#> 387 25-078 90 2 2 1 1 -#> 388 26-157 90 0 0 0 0 -#> 389 27-236 90 4 3 3 1 -#> 390 28-176 90 4 2 4 0 -#> 391 33-197 90 0 0 0 0 -#> 392 27-195 90 0 0 0 0 -#> 393 21-107 69 0 0 0 0 -#> 394 28-205 21 0 0 0 0 -#> 395 23-230 86 2 1 0 1 -#> 396 22-066 4 1 0 0 1 -#> 397 27-116 90 5 3 4 1 -#> 398 37-223 63 1 0 1 0 -#> 399 26-241 27 2 1 1 1 -#> 400 23-222 90 1 1 1 0 -#> 401 29-171 90 6 4 5 1 -#> 402 22-345 90 1 1 1 0 -#> 403 30-004 90 2 1 1 1 -#> 404 32-183 90 1 1 0 0 -#> 405 29-234 90 1 1 1 0 -#> 406 31-213 89 0 0 0 0 -#> 407 22-358 1 0 0 0 0 -#> 408 21-102 75 1 0 0 1 -#> 409 31-095 15 0 0 0 0 -#> 410 31-062 90 0 0 0 0 -#> 411 26-074 83 0 0 0 0 -#> 412 21-180 7 0 0 0 0 -#> 413 30-040 90 2 1 1 1 -#> 414 30-168 90 0 0 0 0 -#> 415 29-157 90 2 2 1 1 -#> 416 24-284 90 0 0 0 0 -#> 417 31-204 90 1 1 1 0 -#> 418 26-199 90 3 2 2 1 -#> 419 26-117 90 0 0 0 0 -#> 420 25-221 90 1 1 0 1 -#> 421 35-078 70 0 0 0 0 -#> 422 29-182 20 1 1 1 0 -#> 423 31-055 79 0 0 0 0 -#> 424 30-352 11 0 0 0 0 -#> 425 24-247 90 2 2 0 2 -#> 426 26-000 75 1 1 0 1 -#> 427 29-148 15 0 0 0 0 -#> 428 21-273 90 3 1 3 0 -#> 429 29-078 90 4 2 1 1 -#> 430 23-069 90 2 1 1 1 -#> 431 28-321 90 1 0 1 0 -#> 432 32-217 90 2 2 2 0 -#> 433 36-296 90 0 0 0 0 -#> 434 22-262 66 0 0 0 0 -#> 435 31-109 24 0 0 0 0 -#> 436 27-173 73 1 0 1 0 -#> 437 24-328 17 0 0 0 0 -#> 438 29-087 63 0 0 0 0 -#> 439 27-243 27 2 2 2 0 -#> 440 25-192 90 5 5 1 3 -#> 441 29-132 90 3 2 0 2 -#> 442 21-236 90 3 1 1 1 -#> 443 23-093 90 3 3 1 1 -#> 444 21-250 90 1 0 0 1 -#> 445 27-273 90 1 1 1 0 -#> 446 25-334 90 0 0 0 0 -#> 447 29-038 90 1 0 1 0 -#> 448 25-123 57 0 0 0 0 -#> 449 31-318 33 0 0 0 0 -#> 450 27-297 90 0 0 0 0 -#> 451 26-097 90 1 0 0 0 -#> 452 30-024 90 2 2 1 1 -#> 453 28-313 90 0 0 0 0 -#> 454 25-187 70 0 0 0 0 -#> 455 21-059 20 2 0 2 0 -#> 456 26-152 90 3 2 2 0 -#> 457 29-046 90 1 1 1 0 -#> 458 27-118 90 1 0 1 0 -#> 459 18-347 78 3 2 3 0 -#> 460 30-253 12 0 0 0 0 -#> 461 27-143 90 0 0 0 0 -#> 462 30-250 90 0 0 0 0 -#> 463 22-217 90 0 0 0 0 -#> 464 29-041 86 0 0 0 0 -#> 465 27-056 4 1 0 1 0 -#> 466 26-127 76 0 0 0 0 -#> 467 32-351 14 3 0 2 1 -#> 468 28-234 90 0 0 0 0 -#> 469 26-184 90 3 2 3 0 -#> 470 30-106 59 0 0 0 0 -#> 471 25-123 31 0 0 0 0 -#> 472 32-149 90 2 1 1 1 -#> 473 28-220 90 2 2 2 0 -#> 474 26-227 90 1 1 0 0 -#> 475 31-254 90 0 0 0 0 -#> 476 22-293 90 0 0 0 0 -#> 477 29-185 62 0 0 0 0 -#> 478 29-005 28 1 1 0 1 -#> 479 26-107 90 1 1 1 0 -#> 480 30-058 62 2 2 1 1 -#> 481 29-169 28 2 2 2 0 -#> 482 29-080 90 3 3 0 3 -#> 483 28-358 82 2 2 0 2 -#> 484 28-014 8 0 0 0 0 -#> 485 32-278 90 1 1 1 0 -#> 486 26-151 90 1 1 1 0 -#> 487 29-153 90 0 0 0 0 -#> 488 31-161 90 0 0 0 0 -#> 489 29-150 90 0 0 0 0 -#> 490 25-346 60 0 0 0 0 -#> 491 30-161 30 1 0 0 0 -#> 492 26-141 90 2 1 0 1 -#> 493 22-185 61 1 1 0 1 -#> 494 31-352 29 0 0 0 0 -#> 495 26-313 90 3 3 0 3 -#> 496 33-256 78 2 2 2 0 -#> 497 22-301 12 0 0 0 0 -#> 498 21-182 90 7 5 1 6 -#> 499 22-139 90 2 1 1 1 -#> 500 29-213 90 1 1 1 0 -#> 501 28-230 90 1 1 0 1 -#> 502 27-275 90 1 1 1 0 -#> 503 29-059 90 0 0 0 0 -#> 504 27-236 90 0 0 0 0 -#> 505 31-035 90 0 0 0 0 -#> 506 24-052 58 2 1 0 0 -#> 507 22-349 32 0 0 0 0 -#> 508 23-056 70 6 4 0 4 -#> 509 27-157 20 0 0 0 0 -#> 510 25-350 45 0 0 0 0 -#> 511 24-280 45 5 5 3 2 -#> 512 25-088 90 1 1 1 0 -#> 513 28-293 90 1 1 1 0 -#> 514 23-192 90 1 1 1 0 -#> 515 29-296 90 3 2 3 0 -#> 516 31-123 90 1 1 0 1 -#> 517 28-347 90 0 0 0 0 -#> 518 22-013 89 1 1 0 1 -#> 519 21-230 1 0 0 0 0 -#> 520 23-204 81 0 0 0 0 -#> 521 24-171 9 2 1 2 0 -#> 522 31-026 66 0 0 0 0 -#> 523 24-344 24 0 0 0 0 -#> 524 25-199 90 3 3 2 0 -#> 525 19-205 90 1 1 1 0 -#> 526 23-275 90 1 0 0 1 -#> 527 27-066 90 2 1 1 1 -#> 528 26-363 90 2 2 1 1 -#> 529 32-317 90 5 5 3 2 -#> 530 31-198 90 6 4 4 2 -#> 531 32-024 90 0 0 0 0 -#> 532 24-073 90 0 0 0 0 -#> 533 21-167 70 0 0 0 0 -#> 534 29-172 20 1 1 0 1 -#> 535 25-251 90 1 1 1 0 -#> 536 32-047 90 4 2 1 3 -#> 537 30-256 83 2 1 1 1 -#> 538 21-349 7 0 0 0 0 -#> 539 28-095 90 4 2 0 4 -#> 540 28-198 90 1 0 1 0 -#> 541 19-306 90 2 2 0 2 -#> 542 23-215 90 1 0 1 0 -#> 543 29-135 80 2 1 1 0 -#> 544 26-200 10 1 1 1 0 -#> 545 21-077 90 0 0 0 0 -#> 546 26-227 76 0 0 0 0 -#> 547 24-202 14 0 0 0 0 -#> 548 19-129 90 2 1 0 2 -#> 549 24-065 60 0 0 0 0 -#> 550 30-148 30 0 0 0 0 -#> 551 24-237 90 0 0 0 0 -#> 552 31-079 90 2 1 1 1 -#> 553 26-161 67 1 0 0 0 -#> 554 26-347 23 0 0 0 0 -#> 555 33-114 90 3 2 3 0 -#> 556 30-300 90 1 1 0 1 -#> 557 27-141 90 0 0 0 0 -#> 558 29-086 90 3 3 2 1 -#> 559 22-180 90 0 0 0 0 -#> 560 29-311 57 0 0 0 0 -#> 561 36-131 33 0 0 0 0 -#> 562 31-127 82 0 0 0 0 -#> 563 27-094 8 0 0 0 0 -#> 564 23-202 45 2 0 0 2 -#> 565 22-046 45 2 2 1 1 -#> 566 23-217 90 3 1 0 3 -#> 567 22-335 90 0 0 0 0 -#> 568 28-079 90 1 1 0 0 -#> 569 31-152 90 1 0 0 1 -#> 570 28-099 90 1 1 0 1 -#> 571 26-243 90 0 0 0 0 -#> 572 30-126 90 5 4 2 2 -#> 573 25-149 90 0 0 0 0 -#> 574 21-113 69 2 1 0 0 -#> 575 28-211 21 0 0 0 0 -#> 576 23-236 78 4 3 4 0 -#> 577 30-033 12 1 1 0 0 -#> 578 26-247 66 4 4 0 3 -#> 579 22-072 24 1 0 1 0 -#> 580 27-201 90 2 2 1 1 -#> 581 27-122 90 1 1 1 0 -#> 582 23-228 90 3 2 0 3 -#> 583 29-177 90 2 0 2 0 -#> 584 22-351 90 1 1 1 0 -#> 585 30-010 90 2 1 2 0 -#> 586 32-189 90 2 2 2 0 -#> 587 29-240 90 0 0 0 0 -#> 588 25-351 81 0 0 0 0 -#> 589 26-355 9 0 0 0 0 -#> 590 26-146 90 0 0 0 0 -#> 591 26-318 90 2 1 1 1 -#> 592 22-190 90 3 0 0 3 -#> 593 33-261 74 3 1 2 0 -#> 594 30-067 16 0 0 0 0 -#> 595 21-187 65 3 2 0 3 -#> 596 31-357 25 0 0 0 0 -#> 597 22-144 90 1 0 0 0 -#> 598 29-218 90 2 0 0 2 -#> 599 28-235 90 1 0 1 0 -#> 600 27-280 90 4 2 3 1 -#> 601 29-064 90 0 0 0 0 -#> 602 31-323 90 1 1 0 1 -#> 603 27-302 80 0 0 0 0 -#> 604 21-207 10 0 0 0 0 -#> 605 25-128 58 0 0 0 0 -#> 606 21-064 32 0 0 0 0 -#> 607 30-258 77 1 1 1 0 -#> 608 26-157 13 0 0 0 0 -#> 609 30-029 90 2 0 0 2 -#> 610 25-192 90 6 4 3 2 -#> 611 18-352 90 1 1 1 0 -#> 612 27-123 90 0 0 0 0 -#> 613 29-051 90 1 1 1 0 -#> 614 29-165 90 1 1 1 0 -#> 615 27-148 90 0 0 0 0 -#> 616 23-054 72 0 0 0 0 -#> 617 34-149 18 0 0 0 0 -#> 618 28-186 90 1 0 0 1 -#> 619 25-342 90 1 1 0 1 -#> 620 32-165 90 3 1 1 2 -#> 621 26-220 90 3 3 1 2 -#> 622 32-216 44 0 0 0 0 -#> 623 24-056 46 0 0 0 0 -#> 624 31-108 90 0 0 0 0 -#> 625 27-350 45 0 0 0 0 -#> 626 28-360 45 0 0 0 0 -#> 627 26-235 90 1 1 0 1 -#> 628 27-044 90 2 2 1 1 -#> 629 26-219 90 0 0 0 0 -#> 630 26-281 17 0 0 0 0 -#> 631 23-059 73 0 0 0 0 -#> 632 25-103 72 0 0 0 0 -#> 633 32-043 18 1 1 0 1 -#> 634 21-132 90 1 1 1 0 -#> 635 21-154 90 2 2 1 1 -#> 636 28-176 84 4 1 4 0 -#> 637 23-080 6 0 0 0 0 -#> 638 23-202 90 2 1 1 0 -#> 639 20-329 90 5 2 4 1 -#> 640 30-226 90 1 0 1 0 -#> 641 24-156 90 1 1 1 0 -#> 642 26-068 90 2 1 2 0 -#> 643 26-103 90 0 0 0 0 -#> 644 22-018 90 0 0 0 0 -#> 645 23-209 68 0 0 0 0 -#> 646 24-176 22 0 0 0 0 -#> 647 31-031 87 0 0 0 0 -#> 648 24-349 3 0 0 0 0 -#> 649 25-204 90 1 1 1 0 -#> 650 19-210 90 1 1 1 0 -#> 651 23-280 80 0 0 0 0 -#> 652 21-237 10 1 0 1 0 -#> 653 27-071 90 1 0 1 0 -#> 654 27-003 90 1 0 0 1 -#> 655 32-322 90 3 2 3 0 -#> 656 31-203 90 0 0 0 0 -#> 657 32-029 90 0 0 0 0 -#> 658 27-164 90 0 0 0 0 -#> 659 29-329 90 0 0 0 0 -#> 660 26-236 90 2 1 1 1 -#> 661 25-080 55 2 2 1 1 -#> 662 22-293 35 2 1 1 1 -#> 663 23-284 90 2 1 0 2 -#> 664 23-176 55 0 0 0 0 -#> 665 30-239 35 0 0 0 0 -#> 666 33-023 90 6 2 3 3 -#> 667 32-197 90 2 1 2 0 -#> 668 23-224 67 1 0 1 0 -#> 669 26-231 23 0 0 0 0 -#> 670 27-236 69 0 0 0 0 -#> 671 25-237 90 0 0 0 0 -#> 672 30-256 90 0 0 0 0 -#> 673 22-223 77 0 0 0 0 -#> 674 22-025 13 1 0 1 0 -#> 675 29-047 84 0 0 0 0 -#> 676 27-062 6 2 2 0 2 -#> 677 28-240 90 1 0 0 1 -#> 678 26-190 90 3 2 1 2 -#> 679 32-357 61 0 0 0 0 -#> 680 26-133 29 0 0 0 0 -#> 681 30-112 90 3 2 1 2 -#> 682 32-155 90 2 2 1 1 -#> 683 25-129 90 2 1 2 0 -#> 684 26-233 90 2 2 0 2 -#> 685 26-113 90 0 0 0 0 -#> 686 27-099 90 1 1 0 1 -#> 687 25-172 80 2 0 0 1 -#> 688 25-161 10 0 0 0 0 -#> 689 32-005 69 1 0 0 1 -#> 690 21-092 21 0 0 0 0 -#> 691 23-257 90 1 1 0 1 -#> 692 29-128 90 0 0 0 0 -#> 693 28-163 68 0 0 0 0 -#> 694 25-103 22 1 1 0 0 -#> 695 24-064 90 2 2 2 0 -#> 696 29-350 90 1 1 1 0 -#> 697 26-211 90 1 1 1 0 -#> 698 29-355 90 1 0 1 0 -#> 699 34-097 90 0 0 0 0 -#> 700 27-242 90 2 2 1 1 -#> 701 22-102 68 0 0 0 0 -#> 702 22-355 22 0 0 0 0 -#> 703 23-062 90 2 0 0 2 -#> 704 25-094 90 1 1 1 0 -#> 705 24-286 64 2 2 0 2 -#> 706 24-058 26 0 0 0 0 -#> 707 31-041 90 1 0 0 1 -#> 708 28-299 90 2 2 2 0 -#> 709 26-183 90 2 2 2 0 -#> 710 29-302 45 1 1 1 0 -#> 711 23-198 45 2 2 1 1 -#> 712 31-129 75 2 2 1 1 -#> 713 28-353 90 0 0 0 0 -#> 714 31-116 67 0 0 0 0 -#> 715 24-335 23 0 0 0 0 -#> 716 27-180 90 0 0 0 0 -#> 717 27-250 69 1 1 1 0 -#> 718 18-185 21 0 0 0 0 -#> 719 29-094 90 0 0 0 0 -#> 720 29-139 90 1 0 1 0 -#> 721 21-243 81 3 3 2 1 -#> 722 22-269 9 0 0 0 0 -#> 723 23-100 90 2 2 1 1 -#> 724 21-257 90 3 2 2 1 -#> 725 27-280 90 1 1 0 1 -#> 726 25-341 90 4 2 3 1 -#> 727 29-045 90 0 0 0 0 -#> 728 26-093 90 0 0 0 0 -#> 729 26-008 63 0 0 0 0 -#> 730 26-140 27 1 0 0 1 -#> 731 27-055 80 0 0 0 0 -#> 732 21-236 10 1 1 1 0 -#> 733 32-129 90 1 0 0 1 -#> 734 28-039 90 4 4 1 2 -#> 735 28-295 84 0 0 0 0 -#> 736 28-222 6 0 0 0 0 -#> 737 22-319 90 4 2 3 1 -#> 738 24-119 90 2 2 2 0 -#> 739 28-301 90 2 1 2 0 -#> 740 22-115 90 0 0 0 0 -#> 741 26-107 90 0 0 0 0 -#> 742 25-228 90 0 0 0 0 -#> 743 35-085 90 0 0 0 0 -#> 744 26-007 90 0 0 0 0 -#> 745 24-254 90 2 1 1 1 -#> 746 21-280 82 1 1 0 1 -#> 747 29-155 8 0 0 0 0 -#> 748 31-062 66 0 0 0 0 -#> 749 21-010 24 0 0 0 0 -#> 750 29-085 90 3 1 1 1 -#> 751 23-076 90 4 1 3 1 -#> 752 28-328 90 0 0 0 0 -#> 753 32-224 77 0 0 0 0 -#> 754 29-189 13 0 0 0 0 -#> 755 36-303 90 0 0 0 0 -#> 756 31-221 90 1 1 0 0 -#> 757 21-110 90 1 1 0 1 -#> 758 31-070 90 1 1 0 0 -#> 759 26-082 90 1 1 0 1 -#> 760 30-048 75 2 2 0 2 -#> 761 22-021 15 1 1 0 1 -#> 762 30-176 70 5 4 3 2 -#> 763 31-103 20 1 0 0 1 -#> 764 29-165 90 1 0 1 0 -#> 765 24-292 64 0 0 0 0 -#> 766 23-077 26 2 1 2 0 -#> 767 31-212 90 0 0 0 0 -#> 768 26-207 90 0 0 0 0 -#> 769 26-125 90 0 0 0 0 -#> 770 19-135 71 0 0 0 0 -#> 771 24-208 19 0 0 0 0 -#> 772 26-233 57 0 0 0 0 -#> 773 26-353 33 1 1 1 0 -#> 774 24-071 90 0 0 0 0 -#> 775 24-243 90 4 3 2 2 -#> 776 31-085 90 2 1 1 1 -#> 777 26-167 64 1 1 1 0 -#> 778 24-151 26 2 2 2 0 -#> 779 33-120 90 1 1 1 0 -#> 780 30-306 90 0 0 0 0 -#> 781 27-147 90 3 3 2 1 -#> 782 29-092 90 2 2 2 0 -#> 783 22-186 90 0 0 0 0 -#> 784 24-246 58 0 0 0 0 -#> 785 22-182 32 0 0 0 0 -#> 786 30-092 90 0 0 0 0 -#> 787 27-198 90 2 2 0 1 -#> 788 26-148 74 2 1 1 1 -#> 789 37-043 16 0 0 0 0 -#> 790 31-339 90 0 0 0 0 -#> 791 22-011 90 1 1 1 0 -#> 792 27-022 90 3 3 2 0 -#> 793 29-244 90 2 0 2 0 -#> 794 27-230 87 4 4 2 2 -#> 795 29-010 3 0 0 0 0 -#> 796 26-315 90 0 0 0 0 -#> 797 23-263 90 0 0 0 0 -#> 798 22-300 90 0 0 0 0 -#> 799 29-192 60 2 2 1 1 -#> 800 29-176 30 1 0 0 1 -#> 801 26-114 90 0 0 0 0 -#> 802 29-087 65 3 1 0 3 -#> 803 30-065 90 1 1 0 1 -#> 804 21-141 85 2 1 1 1 -#> 805 29-012 5 0 0 0 0 -#> 806 32-285 90 1 1 0 1 -#> 807 26-158 90 4 3 3 1 -#> 808 29-160 86 1 1 1 0 -#> 809 26-241 4 1 1 0 0 -#> 810 31-168 90 3 3 1 2 -#> 811 29-157 90 0 0 0 0 -#> 812 26-245 56 0 0 0 0 -#> 813 19-147 34 0 0 0 0 -#> 814 24-220 90 2 1 1 1 -#> 815 24-083 67 1 1 0 1 -#> 816 30-166 23 1 1 0 1 -#> 817 24-255 90 1 1 0 1 -#> 818 31-097 90 3 2 0 3 -#> 819 27-000 55 1 1 0 1 -#> 820 26-179 35 0 0 0 0 -#> 821 33-132 90 0 0 0 0 -#> 822 24-163 90 2 2 2 0 -#> 823 27-159 90 0 0 0 0 -#> 824 29-104 90 4 3 2 0 -#> 825 22-198 90 0 0 0 0 -#> 826 23-332 76 0 0 0 0 -#> 827 25-339 14 0 0 0 0 -#> 828 25-322 69 0 0 0 0 -#> 829 26-130 21 1 0 0 1 -#> 830 27-085 87 1 1 1 0 -#> 831 28-064 3 0 0 0 0 -#> 832 30-141 90 2 1 0 1 -#> 833 26-002 90 1 1 0 1 -#> 834 31-180 90 2 1 1 1 -#> 835 25-098 90 2 1 2 0 -#> 836 26-177 90 3 2 3 0 -#> 837 27-256 90 2 2 1 1 -#> 838 28-196 90 2 1 1 1 -#> 839 33-217 90 0 0 0 0 -#> 840 29-343 90 0 0 0 0 -#> 841 22-307 58 1 1 0 1 -#> 842 23-190 32 0 0 0 0 -#> 843 23-298 90 0 0 0 0 -#> 844 26-250 90 1 1 0 1 -#> 845 27-178 90 0 0 0 0 -#> 846 22-085 70 5 5 2 3 -#> 847 19-040 20 0 0 0 0 -#> 848 33-037 90 0 0 0 0 -#> 849 32-211 90 2 1 1 1 -#> 850 23-238 90 1 1 0 1 -#> 851 33-249 90 0 0 0 0 -#> 852 25-251 90 0 0 0 0 -#> 853 34-164 56 0 0 0 0 -#> 854 28-201 34 0 0 0 0 -#> 855 25-357 56 2 2 0 2 -#> 856 25-172 34 3 3 2 1 -#> 857 30-223 90 3 2 3 0 -#> 858 24-071 90 0 0 0 0 -#> 859 26-235 90 3 3 0 3 -#> 860 32-180 79 5 5 1 3 -#> 861 23-069 11 0 0 0 0 -#> 862 29-010 90 5 3 5 0 -#> 863 31-123 90 2 2 1 1 -#> 864 26-250 90 1 1 1 0 -#> 865 27-059 90 2 2 1 1 -#> 866 26-234 90 0 0 0 0 -#> 867 25-118 90 1 1 0 1 -#> 868 21-147 90 3 1 3 0 -#> 869 25-328 81 2 1 0 2 -#> 870 23-217 9 0 0 0 0 -#> 871 32-058 72 2 1 0 2 -#> 872 23-074 18 0 0 0 0 -#> 873 28-191 81 4 3 2 1 -#> 874 22-085 9 1 1 0 1 -#> 875 21-169 90 2 1 0 2 -#> 876 20-344 90 2 1 2 0 -#> 877 30-241 90 1 0 1 0 -#> 878 24-171 90 2 1 2 0 -#> 879 26-083 90 2 2 1 1 -#> 880 26-118 90 0 0 0 0 -#> 881 31-234 90 1 0 0 1 -#> 882 21-123 76 3 2 0 1 -#> 883 31-116 14 1 1 1 0 -#> 884 31-083 90 1 1 0 0 -#> 885 25-215 56 2 2 0 1 -#> 886 30-061 34 1 1 1 0 -#> 887 30-189 90 0 0 0 0 -#> 888 26-220 90 0 0 0 0 -#> 889 29-178 90 1 1 0 1 -#> 890 24-305 90 2 2 1 1 -#> 891 31-225 90 4 3 3 1 -#> 892 24-303 45 1 1 1 0 -#> 893 26-095 45 0 0 0 0 -#> 894 26-138 90 0 0 0 0 -#> 895 27-193 90 1 0 1 0 -#> 896 31-129 90 0 0 0 0 -#> 897 27-263 76 1 1 0 0 -#> 898 24-348 14 0 0 0 0 -#> 899 25-212 13 0 0 0 0 -#> 900 29-107 77 0 0 0 0 -#> 901 29-152 90 2 0 1 1 -#> 902 18-198 62 2 2 0 1 -#> 903 21-290 28 1 1 0 0 -#> 904 23-113 90 3 2 3 0 -#> 905 21-270 90 0 0 0 0 -#> 906 27-293 90 0 0 0 0 -#> 907 25-354 90 0 0 0 0 -#> 908 27-314 90 0 0 0 0 -#> 909 22-195 67 0 0 0 0 -#> 910 29-252 23 0 0 0 0 -#> 911 30-105 62 2 2 0 2 -#> 912 37-056 28 1 0 0 0 -#> 913 28-208 76 0 0 0 0 -#> 914 22-159 14 2 0 0 1 -#> 915 31-352 90 1 1 1 0 -#> 916 27-211 90 1 0 1 0 -#> 917 22-024 90 2 1 2 0 -#> 918 22-188 90 3 2 2 1 -#> 919 29-023 90 2 1 2 0 -#> 920 27-243 90 2 2 1 1 -#> 921 26-328 90 1 1 0 1 -#> 922 23-276 90 0 0 0 0 -#> 923 24-092 75 0 0 0 0 -#> 924 29-108 15 0 0 0 0 -#> 925 25-270 53 3 1 0 1 -#> 926 26-219 37 1 1 0 1 -#> 927 30-275 90 1 0 1 0 -#> 928 32-066 90 1 0 0 1 -#> 929 31-208 80 2 1 1 1 -#> 930 33-315 10 0 0 0 0 -#> 931 28-114 90 1 1 0 1 -#> 932 28-217 90 3 3 2 1 -#> 933 27-121 90 2 1 2 0 -#> 934 23-234 90 1 0 1 0 -#> 935 29-154 90 1 1 0 1 -#> 936 21-096 90 0 0 0 0 -#> 937 30-270 90 1 0 0 0 -#> 938 22-237 90 0 0 0 0 -#> 939 29-061 74 0 0 0 0 -#> 940 27-076 16 1 0 0 0 -#> 941 22-039 45 1 1 1 0 -#> 942 26-204 45 1 0 0 1 -#> 943 28-254 90 0 0 0 0 -#> 944 33-006 60 2 0 0 2 -#> 945 26-147 30 1 1 0 1 -#> 946 30-126 90 0 0 0 0 -#> 947 32-169 90 2 2 1 1 -#> 948 25-143 90 3 1 3 0 -#> 949 26-247 90 0 0 0 0 -#> 950 26-127 90 0 0 0 0 -#> 951 27-114 90 2 2 0 2 -#> 952 25-176 72 2 2 1 1 -#> 953 20-080 18 0 0 0 0 -#> 954 32-020 90 0 0 0 0 -#> 955 28-178 61 0 0 0 0 -#> 956 25-187 29 2 1 0 2 -#> 957 29-143 90 2 1 2 0 -#> 958 23-272 90 2 2 1 1 -#> 959 24-079 90 1 1 1 0 -#> 960 30-000 90 0 0 0 0 -#> 961 26-226 90 0 0 0 0 -#> 962 30-129 84 3 3 1 1 -#> 963 30-005 6 0 0 0 0 -#> 964 34-112 90 0 0 0 0 -#> 965 26-162 90 0 0 0 0 -#> 966 26-002 59 1 1 0 1 -#> 967 32-008 31 0 0 0 0 -#> 968 30-083 90 0 0 0 0 -#> 969 19-247 87 1 1 0 1 -#> 970 34-085 3 0 0 0 0 -#> 971 26-334 90 0 0 0 0 -#> 972 22-322 45 2 2 0 0 -#> 973 22-206 45 0 0 0 0 -#> 974 30-182 90 0 0 0 0 -#> 975 29-234 90 0 0 0 0 -#> 976 28-251 90 2 1 2 0 -#> 977 27-296 90 1 1 1 0 -#> 978 29-080 90 0 0 0 0 -#> 979 25-242 83 0 0 0 0 -#> 980 29-203 7 0 0 0 0 -#> 981 35-099 71 1 1 1 0 -#> 982 29-169 19 1 0 1 0 -#> 983 26-021 90 1 1 1 0 -#> 984 31-076 90 4 2 2 0 -#> 985 21-294 90 3 2 2 1 -#> 986 24-268 76 0 0 0 0 -#> 987 31-008 14 1 0 0 1 -#> 988 29-099 90 2 0 0 2 -#> 989 23-090 90 0 0 0 0 -#> 990 28-342 90 1 0 1 0 -#> 991 32-238 90 2 2 2 0 -#> 992 36-317 90 0 0 0 0 -#> 993 22-116 64 0 0 0 0 -#> 994 21-164 26 1 0 0 0 -#> 995 27-256 90 0 0 0 0 -#> 996 24-072 82 0 0 0 0 -#> 997 27-177 8 0 0 0 0 -#> 998 23-076 90 6 3 4 2 -#> 999 25-108 90 1 1 1 0 -#> 1000 31-055 90 0 0 0 0 -#> 1001 27-183 90 0 0 0 0 -#> 1002 26-197 62 0 0 0 0 -#> 1003 29-316 28 0 0 0 0 -#> 1004 23-212 90 1 1 1 0 -#> 1005 34-319 90 0 0 0 0 -#> 1006 29-002 90 0 0 0 0 -#> 1007 21-129 62 0 0 0 0 -#> 1008 28-227 28 0 0 0 0 -#> 1009 23-252 90 0 0 0 0 -#> 1010 26-263 80 0 0 0 0 -#> 1011 24-079 10 0 0 0 0 -#> 1012 27-217 90 1 1 1 0 -#> 1013 37-245 90 0 0 0 0 -#> 1014 23-244 66 3 3 1 2 -#> 1015 30-049 24 0 0 0 0 -#> 1016 29-193 90 3 1 2 1 -#> 1017 23-002 90 1 0 1 0 -#> 1018 30-026 90 0 0 0 0 -#> 1019 32-205 90 1 1 1 0 -#> 1020 29-256 90 0 0 0 0 -#> 1021 24-358 62 1 1 0 1 -#> 1022 24-322 28 0 0 0 0 -#> 1023 26-154 73 1 0 0 1 -#> 1024 24-130 17 0 0 0 0 -#> 1025 27-069 90 0 0 0 0 -#> 1026 28-053 90 2 2 2 0 -#> 1027 26-216 79 0 0 0 0 -#> 1028 32-143 11 4 3 2 2 -#> 1029 28-309 90 1 1 1 0 -#> 1030 22-333 90 1 1 0 1 -#> 1031 28-236 90 1 0 1 0 -#> 1032 28-315 90 1 1 1 0 -#> 1033 22-129 90 6 3 5 1 -#> 1034 26-121 90 0 0 0 0 -#> 1035 22-314 90 0 0 0 0 -#> 1036 31-336 45 2 1 0 1 -#> 1037 29-206 45 3 2 0 2 -#> 1038 26-128 90 1 1 0 0 -#> 1039 29-026 68 1 0 0 1 -#> 1040 26-255 22 0 0 0 0 -#> 1041 30-079 90 8 5 1 6 -#> 1042 29-101 45 0 0 0 0 -#> 1043 28-035 45 1 1 0 0 -#> 1044 32-299 90 1 0 0 1 -#> 1045 26-172 90 2 2 2 0 -#> 1046 29-174 90 4 2 3 0 -#> 1047 21-246 90 1 0 1 0 -#> 1048 29-171 90 0 0 0 0 -#> 1049 31-143 61 0 0 0 0 -#> 1050 26-111 29 0 0 0 0 -#> 1051 36-147 90 0 0 0 0 -#> 1052 22-062 68 1 0 1 0 -#> 1053 25-177 22 0 0 0 0 -#> 1054 26-259 77 2 2 0 2 -#> 1055 25-024 13 1 0 1 0 -#> 1056 23-233 90 2 1 2 0 -#> 1057 28-095 90 2 1 2 0 -#> 1058 31-168 90 2 2 2 0 -#> 1059 27-091 90 1 1 1 0 -#> 1060 28-115 90 4 2 4 0 -#> 1061 30-142 90 0 0 0 0 -#> 1062 25-165 90 0 0 0 0 -#> 1063 31-340 90 3 3 2 1 -#> 1064 27-319 66 2 1 1 1 -#> 1065 21-224 24 1 1 1 0 -#> 1066 26-119 87 0 0 0 0 -#> 1067 21-081 3 0 0 0 0 -#> 1068 20-131 90 3 1 2 1 -#> 1069 30-046 90 9 3 4 5 -#> 1070 30-275 83 0 0 0 0 -#> 1071 26-174 7 1 0 0 1 -#> 1072 19-004 90 3 1 0 2 -#> 1073 27-140 90 0 0 0 0 -#> 1074 29-068 90 0 0 0 0 -#> 1075 29-182 90 2 2 2 0 -#> 1076 27-165 90 0 0 0 0 -#> 1077 22-034 90 0 0 0 0 -#> 1078 23-225 65 0 0 0 0 -#> 1079 21-251 25 0 0 0 0 -#> 1080 31-047 90 0 0 0 0 -#> 1081 23-296 90 1 1 0 1 -#> 1082 19-226 74 3 2 2 1 -#> 1083 21-253 16 0 0 0 0 -#> 1084 25-220 45 0 0 0 0 -#> 1085 25-000 45 0 0 0 0 -#> 1086 27-087 90 1 0 0 1 -#> 1087 27-019 90 1 0 0 1 -#> 1088 32-338 89 0 0 0 0 -#> 1089 31-219 90 3 2 1 2 -#> 1090 32-045 90 0 0 0 0 -#> 1091 19-154 90 0 0 0 0 -#> 1092 30-173 90 0 0 0 0 -#> 1093 26-186 90 3 2 2 0 -#> 1094 24-090 67 0 0 0 0 -#> 1095 26-252 23 0 0 0 0 -#> 1096 24-262 90 3 3 0 3 -#> 1097 31-104 90 2 2 2 0 -#> 1098 33-139 78 2 1 0 2 -#> 1099 24-227 12 1 0 1 0 -#> 1100 24-170 90 3 3 2 1 -#> 1101 27-166 83 1 0 1 0 -#> 1102 27-007 7 0 0 0 0 -#> 1103 29-111 90 2 2 1 0 -#> 1104 22-205 90 0 0 0 0 -#> 1105 23-080 84 0 0 0 0 -#> 1106 30-133 6 0 0 0 0 -#> 1107 25-124 70 1 0 0 1 -#> 1108 21-153 89 2 2 1 1 -#> 1109 24-200 1 0 0 0 0 -#> 1110 25-334 73 2 1 1 1 -#> 1111 32-064 17 0 0 0 0 -#> 1112 21-175 90 5 5 2 2 -#> 1113 22-091 90 2 0 1 0 -#> 1114 20-350 81 5 4 3 0 -#> 1115 30-247 90 2 2 1 1 -#> 1116 24-177 90 0 0 0 0 -#> 1117 26-089 90 3 3 2 0 -#> 1118 26-124 90 0 0 0 0 -#> 1119 23-340 90 0 0 0 0 -#> 1120 25-330 56 1 1 0 1 -#> 1121 26-138 34 1 0 1 0 -#> 1122 26-010 90 2 1 0 2 -#> 1123 30-149 69 1 0 0 1 -#> 1124 25-347 21 0 0 0 0 -#> 1125 27-093 90 1 1 0 0 -#> 1126 31-188 72 1 1 0 1 -#> 1127 24-145 18 0 0 0 0 -#> 1128 25-106 90 0 0 0 0 -#> 1129 26-185 90 2 1 2 0 -#> 1130 27-264 34 1 1 1 0 -#> 1131 28-204 90 3 2 3 0 -#> 1132 33-225 90 0 0 0 0 -#> 1133 26-160 63 0 0 0 0 -#> 1134 26-113 27 0 0 0 0 -#> 1135 24-364 90 0 0 0 0 -#> 1136 27-075 78 0 0 0 0 -#> 1137 24-328 12 0 0 0 0 -#> 1138 28-059 90 3 3 2 1 -#> 1139 26-222 90 5 3 2 2 -#> 1140 28-315 90 3 3 2 0 -#> 1141 22-339 81 1 1 1 0 -#> 1142 22-135 9 0 0 0 0 -#> 1143 24-139 90 2 2 2 0 -#> 1144 28-321 90 1 1 1 0 -#> 1145 28-242 90 3 1 2 1 -#> 1146 26-127 90 0 0 0 0 -#> 1147 28-301 72 1 0 0 0 -#> 1148 24-078 18 0 0 0 0 -#> 1149 28-208 90 1 1 1 0 -#> 1150 30-230 90 0 0 0 0 -#> 1151 32-187 90 0 0 0 0 -#> 1152 25-179 90 3 2 0 3 -#> 1153 25-198 66 0 0 0 0 -#> 1154 32-238 24 0 0 0 0 -#> 1155 29-017 88 4 4 4 0 -#> 1156 31-130 2 0 0 0 0 -#> 1157 33-332 90 0 0 0 0 -#> 1158 26-257 90 2 2 2 0 -#> 1159 27-066 90 1 1 1 0 -#> 1160 26-241 90 0 0 0 0 -#> 1161 27-120 90 0 0 0 0 -#> 1162 25-193 62 1 1 0 1 -#> 1163 21-113 28 0 0 0 0 -#> 1164 25-182 75 3 2 2 1 -#> 1165 20-086 15 0 0 0 0 -#> 1166 23-278 90 2 2 1 1 -#> 1167 29-149 90 4 2 0 3 -#> 1168 30-011 56 0 0 0 0 -#> 1169 32-026 34 0 0 0 0 -#> 1170 29-145 90 3 3 2 1 -#> 1171 30-006 90 0 0 0 0 -#> 1172 26-232 90 4 2 3 1 -#> 1173 30-135 90 1 1 0 0 -#> 1174 34-118 90 0 0 0 0 -#> 1175 22-039 90 0 0 0 0 -#> 1176 31-052 90 1 0 1 0 -#> 1177 25-005 68 0 0 0 0 -#> 1178 23-230 22 0 0 0 0 -#> 1179 23-301 90 0 0 0 0 -#> 1180 24-197 90 5 3 3 2 -#> 1181 21-258 81 0 0 0 0 -#> 1182 19-231 9 1 1 1 0 -#> 1183 24-310 58 2 1 0 1 -#> 1184 25-225 32 1 1 0 1 -#> 1185 27-024 90 0 0 0 0 -#> 1186 23-180 90 1 1 1 0 -#> 1187 31-224 90 5 4 5 0 -#> 1188 32-050 90 0 0 0 0 -#> 1189 28-233 90 0 0 0 0 -#> 1190 27-223 90 3 3 0 1 -#> 1191 27-144 90 5 3 0 5 -#> 1192 30-055 90 3 1 1 2 -#> 1193 26-269 52 2 0 2 0 -#> 1194 23-258 38 1 0 1 0 -#> 1195 37-251 55 2 1 0 1 -#> 1196 21-135 35 0 0 0 0 -#> 1197 29-199 90 3 3 2 1 -#> 1198 23-008 90 2 2 0 2 -#> 1199 30-032 90 3 1 2 0 -#> 1200 32-211 89 0 0 0 0 -#> 1201 22-176 1 0 0 0 0 -#> 1202 29-262 90 0 0 0 0 -#> 1203 36-153 69 0 0 0 0 -#> 1204 27-116 21 1 1 0 1 -#> 1205 31-149 90 3 2 0 1 -#> 1206 22-068 62 2 1 1 0 -#> 1207 23-224 4 0 0 0 0 -#> 1208 26-265 77 0 0 0 0 -#> 1209 25-030 13 0 0 0 0 -#> 1210 22-357 90 5 3 3 2 -#> 1211 28-101 90 4 2 0 2 -#> 1212 31-174 90 1 0 0 0 -#> 1213 27-097 90 0 0 0 0 -#> 1214 28-121 90 1 1 1 0 -#> 1215 30-148 90 1 1 0 0 -#> 1216 25-171 90 0 0 0 0 -#> 1217 27-185 90 0 0 0 0 -#> 1218 29-350 90 0 0 0 0 -#> 1219 26-257 90 2 0 1 1 -#> 1220 23-305 90 1 1 0 1 -#> 1221 22-092 57 3 1 1 2 -#> 1222 25-101 33 0 0 0 0 -#> 1223 22-314 79 2 1 2 0 -#> 1224 23-197 11 0 0 0 0 -#> 1225 33-044 70 5 0 4 1 -#> 1226 32-218 20 0 0 0 0 -#> 1227 22-220 90 0 0 0 0 -#> 1228 23-245 90 1 1 1 0 -#> 1229 33-256 90 3 3 3 0 -#> 1230 25-258 90 0 0 0 0 -#> 1231 30-277 59 0 0 0 0 -#> 1232 25-052 31 1 1 1 0 -#> 1233 22-244 90 0 0 0 0 -#> 1234 26-154 78 1 1 0 0 -#> 1235 23-235 12 0 0 0 0 -#> 1236 22-046 62 1 1 0 1 -#> 1237 27-083 28 1 1 1 0 -#> 1238 26-211 90 4 3 1 2 -#> 1239 33-013 90 1 1 0 0 -#> 1240 28-247 90 2 2 2 0 -#> 1241 32-176 90 5 5 2 0 -#> 1242 25-150 90 2 1 1 1 -#> 1243 22-282 90 2 2 0 1 -#> 1244 26-134 90 0 0 0 0 -#> 1245 25-248 90 0 0 0 0 -#> 1246 29-175 54 1 0 1 0 -#> 1247 26-027 36 0 0 0 0 -#> 1248 31-082 90 2 1 1 1 -#> 1249 24-274 54 2 1 0 2 -#> 1250 31-014 36 1 0 1 0 -#> 1251 29-209 69 2 2 2 0 -#> 1252 35-105 21 0 0 0 0 -#> 1253 21-300 90 0 0 0 0 -#> 1254 29-105 90 3 1 1 2 -#> 1255 23-096 90 0 0 0 0 -#> 1256 30-028 90 2 1 2 0 -#> 1257 32-244 90 4 2 3 1 -#> 1258 36-323 90 0 0 0 0 -#> 1259 21-171 90 0 0 0 0 -#> 1260 27-263 60 0 0 0 0 -#> 1261 22-123 30 1 0 0 0 -#> 1262 31-062 90 1 0 0 1 -#> 1263 25-115 72 2 1 1 0 -#> 1264 23-073 18 0 0 0 0 -#> 1265 24-307 60 1 0 0 1 -#> 1266 26-284 30 0 0 0 0 -#> 1267 23-083 90 2 1 1 1 -#> 1268 27-190 90 0 0 0 0 -#> 1269 23-219 90 0 0 0 0 -#> 1270 29-323 90 2 0 2 0 -#> 1271 34-326 90 0 0 0 0 -#> 1272 29-009 90 0 0 0 0 -#> 1273 22-321 90 2 2 0 1 -#> 1274 28-042 62 0 0 0 0 -#> 1275 26-262 28 0 0 0 0 -#> 1276 26-135 72 1 1 0 1 -#> 1277 27-160 18 0 0 0 0 -#> 1278 30-086 62 4 4 2 1 -#> 1279 29-108 28 0 0 0 0 -#> 1280 29-213 90 0 0 0 0 -#> 1281 29-033 90 1 1 1 0 -#> 1282 32-306 90 0 0 0 0 -#> 1283 30-050 90 1 1 1 0 -#> 1284 29-181 90 0 0 0 0 -#> 1285 26-179 90 2 1 2 0 -#> 1286 29-178 90 0 0 0 0 -#> 1287 32-015 80 1 1 1 0 -#> 1288 26-009 10 0 0 0 0 -#> 1289 26-169 90 0 0 0 0 -#> 1290 30-090 90 2 0 0 2 -#> 1291 27-202 90 2 2 1 1 -#> 1292 26-341 90 4 4 2 1 -#> 1293 22-213 66 0 0 0 0 -#> 1294 22-167 24 2 2 0 1 -#> 1295 30-189 72 1 1 1 0 -#> 1296 33-284 18 1 1 0 1 -#> 1297 29-241 90 3 0 2 1 -#> 1298 28-258 90 1 0 1 0 -#> 1299 27-303 90 1 1 0 1 -#> 1300 29-087 90 0 0 0 0 -#> 1301 31-137 60 0 0 0 0 -#> 1302 27-133 30 2 1 1 1 -#> 1303 22-290 45 0 0 0 0 -#> 1304 24-356 45 0 0 0 0 -#> 1305 27-271 90 3 1 1 2 -#> 1306 29-160 57 1 1 0 0 -#> 1307 21-264 90 1 0 0 1 -#> 1308 18-206 55 2 1 1 0 -#> 1309 21-298 35 3 2 3 0 -#> 1310 23-121 90 7 4 5 1 -#> 1311 21-278 90 0 0 0 0 -#> 1312 27-301 90 0 0 0 0 -#> 1313 25-362 90 0 0 0 0 -#> 1314 29-066 90 0 0 0 0 -#> 1315 22-203 90 1 1 0 0 -#> 1316 37-064 90 0 0 0 0 -#> 1317 27-219 90 0 0 0 0 -#> 1318 31-360 90 1 1 1 0 -#> 1319 22-167 64 1 0 0 1 -#> 1320 24-267 26 0 0 0 0 -#> 1321 22-032 61 0 0 0 0 -#> 1322 27-043 29 0 0 0 0 -#> 1323 22-196 77 2 1 0 1 -#> 1324 30-113 13 0 0 0 0 -#> 1325 29-031 90 2 2 2 0 -#> 1326 27-251 90 2 2 1 1 -#> 1327 26-336 90 0 0 0 0 -#> 1328 23-284 90 0 0 0 0 -#> 1329 24-100 81 2 2 1 1 -#> 1330 25-278 9 0 0 0 0 -#> 1331 28-225 90 0 0 0 0 -#> 1332 30-283 44 0 0 0 0 -#> 1333 32-074 55 3 1 1 2 -#> 1334 26-227 35 0 0 0 0 -#> 1335 28-122 90 3 1 1 2 -#> 1336 31-216 72 0 0 0 0 -#> 1337 29-116 18 0 0 0 0 -#> 1338 30-206 90 1 0 0 0 -#> 1339 27-129 90 0 0 0 0 -#> 1340 23-242 90 1 0 0 1 -#> 1341 29-162 90 1 0 0 1 -#> 1342 21-104 90 0 0 0 0 -#> 1343 31-242 90 0 0 0 0 -#> 1344 21-131 45 0 0 0 0 -#> 1345 24-313 45 0 0 0 0 -#> 1346 31-091 90 0 0 0 0 -#> 1347 22-042 57 0 0 0 0 -#> 1348 26-103 33 0 0 0 0 -#> 1349 30-069 90 3 2 0 3 -#> 1350 31-124 57 2 1 1 1 -#> 1351 30-197 33 0 0 0 0 -#> 1352 29-186 90 1 0 0 1 -#> 1353 23-098 34 2 2 1 1 -#> 1354 31-233 90 0 0 0 0 -#> 1355 24-311 90 1 1 1 0 -#> 1356 26-146 90 0 0 0 0 -#> 1357 31-346 90 4 2 1 3 -#> 1358 26-125 84 1 1 0 1 -#> 1359 30-266 6 0 0 0 0 -#> 1360 21-087 45 2 0 2 0 -#> 1361 27-325 45 1 1 0 1 -#> 1362 25-215 90 3 1 3 0 -#> 1363 30-052 71 3 2 2 1 -#> 1364 20-137 19 0 0 0 0 -#> 1365 26-180 90 0 0 0 0 -#> 1366 27-146 90 3 1 1 2 -#> 1367 29-074 90 1 1 1 0 -#> 1368 29-188 90 2 1 1 1 -#> 1369 30-281 90 0 0 0 0 -#> 1370 27-171 90 0 0 0 0 -#> 1371 35-108 60 0 0 0 0 -#> 1372 25-251 30 0 0 0 0 -#> 1373 29-178 90 6 5 2 3 -#> 1374 26-030 70 1 0 0 0 -#> 1375 29-212 20 0 0 0 0 -#> 1376 24-277 90 4 1 2 2 -#> 1377 21-303 90 2 1 1 1 -#> 1378 21-033 78 2 0 0 1 -#> 1379 31-017 12 1 0 0 1 -#> 1380 29-108 90 2 1 1 1 -#> 1381 23-099 90 0 0 0 0 -#> 1382 29-114 90 1 1 1 0 -#> 1383 29-309 90 3 3 1 2 -#> 1384 36-326 90 0 0 0 0 -#> 1385 23-079 63 2 2 1 1 -#> 1386 34-174 27 1 1 0 0 -#> 1387 26-002 60 0 0 0 0 -#> 1388 25-182 30 0 0 0 0 -#> 1389 30-233 90 1 1 0 1 -#> 1390 32-241 90 2 2 1 1 -#> 1391 24-081 90 0 0 0 0 -#> 1392 26-245 77 1 1 0 1 -#> 1393 28-211 13 0 0 0 0 -#> 1394 20-065 90 0 0 0 0 -#> 1395 28-010 90 1 1 1 0 -#> 1396 26-260 90 2 2 2 0 -#> 1397 31-133 90 5 4 5 0 -#> 1398 26-244 90 0 0 0 0 -#> 1399 23-084 90 3 1 0 2 -#> 1400 21-157 90 3 2 1 0 -#> 1401 23-227 76 3 1 1 2 -#> 1402 32-068 14 1 1 0 1 -#> 1403 22-095 90 4 2 2 2 -#> 1404 21-179 60 3 1 1 1 -#> 1405 28-201 30 0 0 0 0 -#> 1406 25-338 62 0 0 0 0 -#> 1407 26-306 28 1 0 0 1 -#> 1408 24-204 90 4 3 1 2 -#> 1409 30-251 90 0 0 0 0 -#> 1410 24-181 90 2 1 1 1 -#> 1411 26-093 90 2 2 2 0 -#> 1412 26-128 90 0 0 0 0 -#> 1413 23-343 75 0 0 0 0 -#> 1414 25-350 15 0 0 0 0 -#> 1415 28-075 70 1 0 0 1 -#> 1416 26-141 20 1 1 1 0 -#> 1417 30-152 90 2 1 0 1 -#> 1418 24-194 64 1 1 0 1 -#> 1419 26-013 26 0 0 0 0 -#> 1420 27-096 90 0 0 0 0 -#> 1421 21-355 90 2 2 0 2 -#> 1422 25-109 90 1 0 1 0 -#> 1423 26-188 90 2 2 1 1 -#> 1424 29-111 90 2 2 2 0 -#> 1425 28-207 90 1 1 0 1 -#> 1426 33-228 90 0 0 0 0 -#> 1427 27-188 52 0 0 0 0 -#> 1428 30-263 38 3 2 2 1 -#> 1429 29-353 64 0 0 0 0 -#> 1430 23-137 26 1 0 1 0 -#> 1431 22-317 90 0 0 0 0 -#> 1432 26-260 90 0 0 0 0 -#> 1433 25-104 90 2 2 0 2 -#> 1434 23-200 90 0 0 0 0 -#> 1435 33-047 90 4 4 2 2 -#> 1436 32-221 90 2 0 2 0 -#> 1437 23-248 38 1 0 0 1 -#> 1438 22-223 52 2 1 2 0 -#> 1439 20-148 90 0 0 0 0 -#> 1440 25-261 90 0 0 0 0 -#> 1441 26-256 55 1 1 1 0 -#> 1442 24-231 35 0 0 0 0 -#> 1443 19-158 45 1 1 0 1 -#> 1444 33-012 45 1 1 0 0 -#> 1445 30-177 90 1 1 1 0 -#> 1446 31-108 90 2 1 2 0 -#> 1447 24-266 90 0 0 0 0 -#> 1448 26-190 90 2 2 1 1 -#> 1449 33-143 68 2 2 2 0 -#> 1450 25-197 22 1 1 1 0 -#> 1451 24-174 90 1 1 1 0 -#> 1452 30-329 90 2 2 2 0 -#> 1453 29-115 90 3 2 2 1 -#> 1454 22-209 90 0 0 0 0 -#> 1455 21-117 90 2 0 1 1 -#> 1456 20-090 73 2 1 1 1 -#> 1457 23-282 17 0 0 0 0 -#> 1458 29-153 90 0 0 0 0 -#> 1459 25-128 81 4 3 2 2 -#> 1460 26-265 9 0 0 0 0 -#> 1461 32-030 85 0 0 0 0 -#> 1462 30-139 5 1 1 1 0 -#> 1463 24-089 90 0 0 0 0 -#> 1464 29-149 90 4 2 1 3 -#> 1465 26-236 90 3 1 3 0 -#> 1466 22-083 90 1 1 1 0 -#> 1467 30-015 90 1 0 1 0 -#> 1468 34-122 90 0 0 0 0 -#> 1469 23-025 60 0 0 0 0 -#> 1470 31-245 30 1 1 0 0 -#> 1471 21-134 70 0 0 0 0 -#> 1472 21-212 20 1 0 0 0 -#> 1473 31-094 90 0 0 0 0 -#> 1474 26-106 90 2 2 0 1 -#> 1475 30-072 90 4 3 4 0 -#> 1476 30-200 90 1 0 0 0 -#> 1477 32-316 69 1 1 1 0 -#> 1478 29-189 21 1 1 1 0 -#> 1479 24-316 90 1 1 0 0 -#> 1480 31-236 90 0 0 0 0 -#> 1481 26-231 90 1 1 0 1 -#> 1482 26-149 90 0 0 0 0 -#> 1483 24-103 90 0 0 0 0 -#> 1484 25-281 90 1 1 0 0 -#> 1485 26-230 90 1 1 0 1 -#> 1486 32-077 69 1 0 1 0 -#> 1487 21-197 21 0 0 0 0 -#> 1488 29-202 66 0 0 0 0 -#> 1489 22-331 24 0 0 0 0 -#> 1490 31-219 90 1 0 0 0 -#> 1491 28-228 90 3 3 2 0 -#> 1492 27-132 90 0 0 0 0 -#> 1493 21-239 90 1 1 1 0 -#> 1494 29-165 80 2 1 2 0 -#> 1495 22-014 10 0 0 0 0 -#> 1496 21-107 90 0 0 0 0 -#> 1497 32-018 59 0 0 0 0 -#> 1498 26-012 31 0 0 0 0 -#> 1499 26-172 87 0 0 0 0 -#> 1500 22-170 3 1 0 1 0 -#> 1501 30-093 63 3 0 0 3 -#> 1502 33-287 27 0 0 0 0 -#> 1503 27-205 90 2 1 0 2 -#> 1504 26-344 90 5 4 1 4 -#> 1505 22-216 90 5 3 2 1 -#> 1506 30-192 90 3 2 2 1 -#> 1507 29-244 90 0 0 0 0 -#> 1508 28-261 90 2 2 1 1 -#> 1509 27-306 90 1 0 1 0 -#> 1510 29-090 90 0 0 0 0 -#> 1511 28-045 68 0 0 0 0 -#> 1512 26-265 22 1 0 0 1 -#> 1513 22-324 90 1 1 0 1 -#> 1514 29-216 90 3 2 1 2 -#> 1515 30-089 89 1 0 0 1 -#> 1516 29-111 1 0 0 0 0 -#> 1517 26-138 90 1 1 0 0 -#> 1518 21-165 84 0 0 0 0 -#> 1519 31-346 6 0 0 0 0 -#> 1520 32-309 90 0 0 0 0 -#> 1521 26-182 90 2 0 1 1 -#> 1522 29-184 90 0 0 0 0 -#> 1523 30-053 90 1 0 1 0 -#> 1524 29-181 90 0 0 0 0 -#> 1525 30-281 58 1 1 0 1 -#> 1526 25-056 32 0 0 0 0 -#> 1527 22-248 90 1 1 0 0 -#> 1528 29-072 90 1 1 1 0 -#> 1529 28-265 90 2 2 2 0 -#> 1530 26-215 90 3 1 2 1 -#> 1531 33-017 69 1 1 0 1 -#> 1532 22-050 21 0 0 0 0 -#> 1533 30-137 90 0 0 0 0 -#> 1534 32-180 90 0 0 0 0 -#> 1535 25-154 90 3 1 2 1 -#> 1536 28-251 58 1 1 0 0 -#> 1537 27-087 32 1 1 0 1 -#> 1538 26-138 90 0 0 0 0 -#> 1539 24-359 82 1 1 0 1 -#> 1540 31-140 8 0 0 0 0 -#> 1541 27-204 90 0 0 0 0 -#> 1542 21-301 75 1 0 0 1 -#> 1543 27-274 15 0 0 0 0 -#> 1544 27-136 69 0 0 0 0 -#> 1545 25-223 21 2 1 0 1 -#> 1546 21-267 90 2 0 0 2 -#> 1547 29-118 90 0 0 0 0 -#> 1548 23-124 90 1 1 0 1 -#> 1549 26-122 90 2 1 1 1 -#> 1550 31-351 90 0 0 0 0 -#> 1551 26-000 90 3 3 1 2 -#> 1552 29-069 90 1 0 1 0 -#> 1553 22-043 90 0 0 0 0 -#> 1554 31-056 85 0 0 0 0 -#> 1555 25-229 5 0 0 0 0 -#> 1556 19-235 90 0 0 0 0 -#> 1557 23-305 90 0 0 0 0 -#> 1558 24-201 45 1 0 0 1 -#> 1559 23-234 45 0 0 0 0 -#> 1560 24-314 90 3 1 2 1 -#> 1561 27-028 90 0 0 0 0 -#> 1562 32-347 90 1 0 1 0 -#> 1563 31-228 90 1 1 1 0 -#> 1564 27-096 69 0 0 0 0 -#> 1565 21-260 21 2 1 0 1 -#> 1566 32-054 90 0 0 0 0 -#> 1567 26-118 72 1 1 0 0 -#> 1568 26-165 18 0 0 0 0 -#> 1569 25-004 90 0 0 0 0 -#> 1570 27-080 90 0 0 0 0 -#> 1571 28-064 61 0 0 0 0 -#> 1572 32-154 29 2 1 0 2 -#> 1573 26-227 90 1 1 1 0 -#> 1574 28-320 79 0 0 0 0 -#> 1575 24-333 11 0 0 0 0 -#> 1576 22-344 90 3 2 2 1 -#> 1577 28-247 90 2 2 2 0 -#> 1578 28-326 90 0 0 0 0 -#> 1579 22-140 90 0 0 0 0 -#> 1580 26-132 90 0 0 0 0 -#> 1581 31-154 69 0 0 0 0 -#> 1582 36-158 21 0 0 0 0 -#> 1583 29-338 90 0 0 0 0 -#> 1584 22-073 83 2 2 0 1 -#> 1585 25-188 7 0 0 0 0 -#> 1586 23-244 90 2 1 0 2 -#> 1587 22-362 76 3 1 2 1 -#> 1588 32-145 14 0 0 0 0 -#> 1589 28-106 90 1 1 0 1 -#> 1590 27-102 90 2 1 2 0 -#> 1591 28-126 90 2 0 0 2 -#> 1592 26-270 90 0 0 0 0 -#> 1593 30-153 90 4 3 2 1 -#> 1594 25-176 90 0 0 0 0 -#> 1595 28-238 74 1 1 0 0 -#> 1596 37-256 16 0 0 0 0 -#> 1597 21-140 90 2 2 0 0 -#> 1598 23-263 90 3 3 1 2 -#> 1599 27-149 90 3 2 0 3 -#> 1600 30-060 90 3 3 1 2 -#> 1601 27-228 69 1 1 0 0 -#> 1602 30-277 21 0 0 0 0 -#> 1603 29-204 90 4 2 1 1 -#> 1604 23-013 90 3 2 3 0 -#> 1605 30-037 90 0 0 0 0 -#> 1606 32-216 81 1 0 0 1 -#> 1607 22-181 9 0 0 0 0 -#> 1608 29-267 90 0 0 0 0 -#> 1609 27-267 67 0 0 0 0 -#> 1610 22-127 23 0 0 0 0 -#> 1611 21-175 72 0 0 0 0 -#> 1612 24-083 18 0 0 0 0 -#> 1613 31-066 90 1 1 0 1 -#> 1614 26-288 53 3 3 1 1 -#> 1615 25-119 90 4 3 2 2 -#> 1616 23-087 90 2 2 1 1 -#> 1617 27-194 90 1 1 1 0 -#> 1618 26-208 90 2 2 1 1 -#> 1619 29-327 90 1 1 1 0 -#> 1620 34-330 87 0 0 0 0 -#> 1621 23-077 3 1 1 1 0 -#> 1622 29-013 90 0 0 0 0 -#> 1623 31-350 90 1 0 0 1 -#> 1624 27-329 90 0 0 0 0 -#> 1625 26-129 90 0 0 0 0 -#> 1626 30-285 90 0 0 0 0 -#> 1627 20-141 90 0 0 0 0 -#> 1628 30-056 72 1 0 1 0 -#> 1629 21-091 18 2 2 1 1 -#> 1630 19-014 81 1 1 0 1 -#> 1631 30-270 9 0 0 0 0 -#> 1632 27-150 90 1 1 0 1 -#> 1633 29-078 90 1 0 0 1 -#> 1634 29-192 72 0 0 0 0 -#> 1635 21-234 18 1 0 0 1 -#> 1636 27-175 90 0 0 0 0 -#> 1637 24-271 90 2 2 0 2 -#> 1638 30-117 64 2 1 0 2 -#> 1639 37-068 26 0 0 0 0 -#> 1640 28-220 74 0 0 0 0 -#> 1641 22-171 16 0 0 0 0 -#> 1642 31-364 85 0 0 0 0 -#> 1643 31-231 5 0 0 0 0 -#> 1644 27-223 90 1 1 0 1 -#> 1645 22-036 90 1 1 0 1 -#> 1646 22-200 90 2 1 2 0 -#> 1647 29-035 90 4 3 3 1 -#> 1648 27-255 90 1 1 1 0 -#> 1649 26-340 90 0 0 0 0 -#> 1650 23-288 90 0 0 0 0 -#> 1651 23-346 90 2 0 0 2 -#> 1652 28-078 77 2 2 1 0 -#> 1653 25-336 13 1 1 1 0 -#> 1654 26-016 90 2 2 0 2 -#> 1655 30-155 64 3 2 2 1 -#> 1656 22-197 26 1 1 0 1 -#> 1657 27-099 64 4 3 2 2 -#> 1658 26-144 26 0 0 0 0 -#> 1659 21-358 90 2 1 1 1 -#> 1660 25-112 90 3 2 2 1 -#> 1661 26-191 90 0 0 0 0 -#> 1662 27-270 90 0 0 0 0 -#> 1663 28-210 90 3 1 3 0 -#> 1664 33-231 90 0 0 0 0 -#> 1665 25-254 90 2 1 0 1 -#> 1666 35-111 90 1 0 0 1 -#> 1667 31-088 81 2 2 1 1 -#> 1668 21-036 9 0 0 0 0 -#> 1669 31-020 90 5 4 2 2 -#> 1670 26-033 70 1 0 1 0 -#> 1671 29-215 20 1 0 0 1 -#> 1672 21-306 86 2 1 1 1 -#> 1673 24-280 4 0 0 0 0 -#> 1674 29-111 90 4 4 3 1 -#> 1675 23-102 90 1 1 1 0 -#> 1676 30-034 90 1 0 0 0 -#> 1677 32-250 90 1 0 1 0 -#> 1678 36-329 90 0 0 0 0 -#> 1679 26-310 90 0 0 0 0 -#> 1680 32-072 90 1 0 0 1 -#> 1681 22-099 15 1 1 0 1 -#> 1682 25-342 75 1 0 0 1 -#> 1683 28-205 90 2 2 2 0 -#> 1684 21-183 90 1 1 0 1 -#> 1685 21-161 75 0 0 0 0 -#> 1686 23-088 15 0 0 0 0 -#> 1687 24-208 90 3 1 3 0 -#> 1688 30-141 90 2 2 2 0 -#> 1689 24-185 90 3 2 1 1 -#> 1690 26-097 45 0 0 0 0 -#> 1691 23-082 45 1 1 0 1 -#> 1692 34-180 90 0 0 0 0 -#> 1693 24-362 67 0 0 0 0 -#> 1694 27-207 23 0 0 0 0 -#> 1695 31-143 90 3 1 1 1 -#> 1696 27-277 59 0 0 0 0 -#> 1697 21-304 31 1 1 1 0 -#> 1698 25-226 75 2 0 1 0 -#> 1699 27-139 15 1 0 0 1 -#> 1700 29-166 90 3 3 2 0 -#> 1701 21-270 90 3 3 2 1 -#> 1702 20-312 90 2 1 0 1 -#> 1703 21-284 90 0 0 0 0 -#> 1704 27-307 90 4 3 3 1 -#> 1705 24-157 90 0 0 0 0 -#> 1706 29-072 90 0 0 0 0 -#> 1707 31-248 90 0 0 0 0 -#> 1708 26-109 90 1 1 0 1 -#> 1709 21-137 79 0 0 0 0 -#> 1710 23-028 11 0 0 0 0 -#> 1711 30-203 90 0 0 0 0 -#> 1712 26-234 50 1 0 0 1 -#> 1713 30-075 40 2 1 0 1 -#> 1714 31-130 54 2 0 0 2 -#> 1715 31-097 36 1 1 0 0 -#> 1716 29-192 90 3 2 2 0 -#> 1717 23-104 90 1 1 1 0 -#> 1718 31-239 90 2 0 0 2 -#> 1719 24-317 90 4 2 1 1 -#> 1720 26-152 90 0 0 0 0 -#> 1721 24-106 78 2 2 2 0 -#> 1722 37-230 12 1 0 0 0 -#> 1723 28-231 90 1 1 1 0 -#> 1724 30-289 90 2 1 1 1 -#> 1725 32-080 90 1 1 0 0 -#> 1726 31-222 66 0 0 0 0 -#> 1727 29-122 24 0 0 0 0 -#> 1728 28-128 90 2 1 1 1 -#> 1729 30-212 90 2 1 1 1 -#> 1730 27-135 22 1 1 1 0 -#> 1731 19-339 68 2 1 2 0 -#> 1732 23-248 90 0 0 0 0 -#> 1733 29-168 90 6 4 4 2 -#> 1734 21-110 90 0 0 0 0 -#> 1735 28-308 68 1 1 0 0 -#> 1736 34-178 22 0 0 0 0 -#> 1737 28-215 90 3 1 0 1 -#> 1738 25-205 90 0 0 0 0 -#> 1739 26-249 68 3 3 0 3 -#> 1740 24-085 22 2 2 0 1 -#> 1741 32-194 90 1 1 0 0 -#> 1742 32-245 90 0 0 0 0 -#> 1743 29-024 90 0 0 0 0 -#> 1744 28-014 90 2 1 0 0 -#> 1745 33-339 82 1 1 1 0 -#> 1746 31-137 8 0 0 0 0 -#> 1747 27-073 90 1 1 0 0 -#> 1748 26-248 90 0 0 0 0 -#> 1749 22-327 89 1 0 1 0 -#> 1750 27-166 1 0 0 0 0 -#> 1751 28-048 82 2 2 0 2 -#> 1752 26-268 8 2 1 1 1 -#> 1753 29-219 90 2 1 2 0 -#> 1754 30-092 90 4 1 2 2 -#> 1755 26-141 72 3 1 3 0 -#> 1756 29-114 18 0 0 0 0 -#> 1757 21-168 90 2 1 0 1 -#> 1758 32-312 90 0 0 0 0 -#> 1759 26-185 90 1 1 1 0 -#> 1760 29-187 90 3 0 3 0 -#> 1761 30-056 90 1 1 1 0 -#> 1762 29-184 90 0 0 0 0 -#> 1763 30-284 87 0 0 0 0 -#> 1764 18-079 3 0 0 0 0 -#> 1765 22-251 90 0 0 0 0 -#> 1766 29-075 45 0 0 0 0 -#> 1767 22-053 45 0 0 0 0 -#> 1768 28-268 90 2 1 1 0 -#> 1769 26-218 90 4 3 1 2 -#> 1770 33-020 81 1 0 0 1 -#> 1771 27-090 9 1 1 0 1 -#> 1772 28-254 90 2 2 1 1 -#> 1773 32-183 90 1 1 1 0 -#> 1774 25-157 90 1 1 1 0 -#> 1775 26-261 90 2 2 0 0 -#> 1776 26-141 90 0 0 0 0 -#> 1777 27-192 90 1 1 0 1 -#> 1778 29-357 68 0 0 0 0 -#> 1779 25-108 22 0 0 0 0 -#> 1780 26-264 90 3 3 2 1 -#> 1781 22-099 84 4 2 2 2 -#> 1782 30-267 6 0 0 0 0 -#> 1783 23-312 90 3 2 1 2 -#> 1784 22-321 59 0 0 0 0 -#> 1785 23-204 31 1 0 1 0 -#> 1786 33-051 90 2 2 1 0 -#> 1787 32-225 90 1 0 0 1 -#> 1788 23-252 90 1 0 1 0 -#> 1789 33-263 90 3 2 3 0 -#> 1790 25-265 90 0 0 0 0 -#> 1791 19-163 90 0 0 0 0 -#> 1792 24-236 90 0 0 0 0 -#> 1793 26-195 90 0 0 0 0 -#> 1794 24-271 90 1 1 0 1 -#> 1795 33-017 90 1 1 0 1 -#> 1796 31-113 58 2 1 0 2 -#> 1797 24-099 32 2 1 1 1 -#> 1798 25-202 21 1 1 1 0 -#> 1799 30-334 69 5 1 3 2 -#> 1800 24-179 90 1 1 0 1 -#> 1801 27-175 90 2 2 2 0 -#> 1802 29-120 54 1 0 0 1 -#> 1803 30-182 36 3 3 0 3 -#> 1804 25-298 90 0 0 0 0 -#> 1805 31-353 90 1 0 0 1 -#> 1806 26-132 90 1 1 0 0 -#> 1807 21-094 63 1 0 0 1 -#> 1808 30-059 27 0 0 0 0 -#> 1809 27-332 45 1 1 1 0 -#> 1810 29-195 45 2 1 2 0 -#> 1811 20-144 90 1 1 1 0 -#> 1812 25-222 76 2 2 0 1 -#> 1813 25-158 14 0 0 0 0 -#> 1814 26-187 90 5 5 3 2 -#> 1815 29-081 90 2 1 1 1 -#> 1816 27-153 90 2 1 2 0 -#> 1817 30-288 90 2 1 1 1 -#> 1818 27-178 90 0 0 0 0 -#> 1819 32-022 90 0 0 0 0 -#> 1820 26-176 90 0 0 0 0 -#> 1821 33-291 65 0 0 0 0 -#> 1822 26-016 25 0 0 0 0 -#> 1823 27-209 90 2 2 0 1 -#> 1824 26-348 90 2 2 0 1 -#> 1825 22-220 90 3 2 0 2 -#> 1826 30-196 76 0 0 0 0 -#> 1827 22-174 14 1 1 1 0 -#> 1828 29-248 90 2 0 2 0 -#> 1829 28-265 90 2 1 1 1 -#> 1830 27-310 45 2 0 2 0 -#> 1831 30-097 45 0 0 0 0 -#> 1832 29-094 90 0 0 0 0 -#> 1833 28-241 90 1 1 1 0 -#> 1834 22-184 69 0 0 0 0 -#> 1835 23-258 21 0 0 0 0 -#> 1836 23-266 84 3 2 3 0 -#> 1837 24-093 6 0 0 0 0 -#> 1838 27-152 90 3 2 1 2 -#> 1839 30-063 89 2 1 2 0 -#> 1840 37-259 1 0 0 0 0 -#> 1841 30-280 90 1 0 0 1 -#> 1842 29-207 90 7 5 7 0 -#> 1843 23-016 90 2 2 1 1 -#> 1844 30-040 90 0 0 0 0 -#> 1845 32-219 90 0 0 0 0 -#> 1846 29-270 90 0 0 0 0 -#> 1847 31-069 90 0 0 0 0 -#> 1848 22-130 90 0 0 0 0 -#> 1849 27-191 82 3 1 1 1 -#> 1850 26-019 8 0 0 0 0 -#> 1851 24-314 90 1 0 0 1 -#> 1852 25-122 90 1 1 1 0 -#> 1853 28-327 90 0 0 0 0 -#> 1854 24-086 59 0 0 0 0 -#> 1855 23-080 31 2 1 0 2 -#> 1856 23-226 90 3 3 2 1 -#> 1857 29-330 90 0 0 0 0 -#> 1858 23-164 71 1 1 1 0 -#> 1859 26-211 19 0 0 0 0 -#> 1860 29-016 90 0 0 0 0 -#> 1861 26-168 65 0 0 0 0 -#> 1862 25-007 25 0 0 0 0 -#> 1863 26-121 90 2 2 1 1 -#> 1864 24-336 58 1 1 1 0 -#> 1865 27-083 32 0 0 0 0 -#> 1866 32-157 90 0 0 0 0 -#> 1867 30-351 90 6 3 2 4 -#> 1868 28-323 90 0 0 0 0 -#> 1869 22-347 45 0 0 0 0 -#> 1870 28-250 45 1 1 0 1 -#> 1871 24-147 90 1 0 1 0 -#> 1872 28-329 90 2 1 1 1 -#> 1873 22-143 90 4 3 3 1 -#> 1874 26-135 90 0 0 0 0 -#> 1875 37-071 90 0 0 0 0 -#> 1876 29-267 83 1 1 0 0 -#> 1877 24-274 7 0 0 0 0 -#> 1878 22-174 90 4 2 0 3 -#> 1879 27-226 74 1 1 0 1 -#> 1880 22-210 16 0 0 0 0 -#> 1881 28-223 90 2 1 0 0 -#> 1882 27-050 90 0 0 0 0 -#> 1883 31-110 80 0 0 0 0 -#> 1884 26-176 10 0 0 0 0 -#> 1885 27-258 90 3 1 2 1 -#> 1886 31-234 90 0 0 0 0 -#> 1887 26-343 90 0 0 0 0 -#> 1888 28-105 90 0 0 0 0 -#> 1889 21-121 76 0 0 0 0 -#> 1890 27-128 14 1 0 1 0 -#> 1891 20-094 54 1 1 1 0 -#> 1892 25-132 36 1 0 1 0 -#> 1893 23-286 90 5 3 3 2 -#> 1894 29-157 90 3 2 1 2 -#> 1895 32-034 54 0 0 0 0 -#> 1896 26-269 36 0 0 0 0 -#> 1897 24-093 90 4 3 3 1 -#> 1898 29-153 90 1 1 1 0 -#> 1899 26-240 90 3 3 1 2 -#> 1900 22-087 90 1 0 0 1 -#> 1901 30-019 90 0 0 0 0 -#> 1902 34-126 90 0 0 0 0 -#> 1903 22-048 90 0 0 0 0 -#> 1904 31-061 90 0 0 0 0 -#> 1905 21-267 90 4 2 0 3 -#> 1906 23-310 90 0 0 0 0 -#> 1907 19-240 58 2 1 1 0 -#> 1908 24-206 32 2 2 1 1 -#> 1909 22-273 76 0 0 0 0 -#> 1910 27-033 14 0 0 0 0 -#> 1911 25-234 90 4 3 3 1 -#> 1912 31-233 80 3 2 3 0 -#> 1913 23-239 10 0 0 0 0 -#> 1914 32-352 90 4 4 4 0 -#> 1915 27-101 90 1 1 1 0 -#> 1916 32-059 90 0 0 0 0 -#> 1917 36-162 90 0 0 0 0 -#> 1918 31-158 75 0 0 0 0 -#> 1919 25-193 15 0 0 0 0 -#> 1920 22-077 88 2 2 0 2 -#> 1921 32-149 2 0 0 0 0 -#> 1922 23-248 90 1 0 0 1 -#> 1923 23-001 65 2 2 0 2 -#> 1924 29-342 25 0 0 0 0 -#> 1925 28-110 90 1 1 0 1 -#> 1926 31-183 90 2 2 0 2 -#> 1927 28-130 90 1 1 1 0 -#> 1928 26-274 90 1 0 0 1 -#> 1929 30-157 90 3 1 2 1 -#> 1930 25-180 90 0 0 0 0 -#> 1931 24-112 90 0 0 0 0 -#> 1932 25-290 90 1 1 1 0 -#> 1933 30-295 90 0 0 0 0 -#> 1934 31-228 83 1 0 0 1 -#> 1935 29-128 7 0 0 0 0 -#> 1936 28-134 90 0 0 0 0 -#> 1937 32-086 67 1 1 0 0 -#> 1938 37-236 23 0 0 0 0 -#> 1939 28-237 90 0 0 0 0 -#> 1940 27-141 90 2 1 1 1 -#> 1941 23-254 90 2 0 0 2 -#> 1942 29-174 67 1 1 0 0 -#> 1943 26-239 23 1 1 0 0 -#> 1944 21-116 90 0 0 0 0 -#> 1945 23-094 90 2 2 0 1 -#> 1946 21-167 85 1 0 0 1 -#> 1947 30-261 5 0 0 0 0 -#> 1948 23-237 75 2 2 1 1 -#> 1949 23-088 15 0 0 0 0 -#> 1950 25-348 65 0 0 0 0 -#> 1951 32-078 25 1 0 1 0 -#> 1952 21-189 90 2 2 1 1 -#> 1953 28-211 90 5 3 4 1 -#> 1954 24-214 90 3 1 3 0 -#> 1955 30-147 90 1 1 1 0 -#> 1956 24-191 90 2 2 2 0 -#> 1957 22-062 90 5 2 3 1 -#> 1958 34-186 90 0 0 0 0 -#> 1959 31-359 90 0 0 0 0 -#> 1960 26-138 76 0 0 0 0 -#> 1961 30-279 14 0 0 0 0 -#> 1962 30-065 90 1 0 1 0 -#> 1963 27-338 90 2 2 1 0 -#> 1964 20-150 90 0 0 0 0 -#> 1965 30-294 80 3 3 0 3 -#> 1966 21-243 10 0 0 0 0 -#> 1967 19-023 72 0 0 0 0 -#> 1968 25-164 18 0 0 0 0 -#> 1969 26-193 90 8 4 4 3 -#> 1970 29-087 90 0 0 0 0 -#> 1971 27-159 90 2 2 1 1 -#> 1972 27-184 90 0 0 0 0 -#> 1973 34-185 70 0 0 0 0 -#> 1974 28-315 20 0 0 0 0 -#> 1975 28-222 84 0 0 0 0 -#> 1976 26-256 6 1 0 1 0 -#> 1977 30-244 90 1 1 1 0 -#> 1978 24-092 90 2 2 0 1 -#> 1979 32-201 90 2 1 0 2 -#> 1980 32-252 76 2 1 2 0 -#> 1981 20-076 14 0 0 0 0 -#> 1982 29-031 90 3 1 1 2 -#> 1983 31-144 90 2 1 2 0 -#> 1984 26-271 90 1 1 1 0 -#> 1985 27-080 90 2 1 1 1 -#> 1986 26-255 90 0 0 0 0 -#> 1987 29-347 61 0 0 0 0 -#> 1988 31-163 29 1 0 0 1 -#> 1989 36-167 90 1 0 0 0 -#> 1990 22-082 66 2 1 0 2 -#> 1991 25-198 24 0 0 0 0 -#> 1992 23-253 90 2 1 1 1 -#> 1993 23-006 53 0 0 0 0 -#> 1994 32-154 37 2 2 0 1 -#> 1995 28-115 89 0 0 0 0 -#> 1996 31-188 90 3 2 1 2 -#> 1997 28-135 90 1 0 0 1 -#> 1998 26-279 90 6 6 5 1 -#> 1999 30-162 90 3 2 1 1 -#> 2000 25-185 90 0 0 0 0 -#> 2001 22-136 83 2 2 0 0 -#> 2002 21-184 7 0 0 0 0 -#> 2003 31-075 90 0 0 0 0 -#> 2004 25-128 90 3 2 2 1 -#> 2005 27-197 90 1 1 1 0 -#> 2006 24-320 45 1 0 1 0 -#> 2007 23-096 45 2 1 1 1 -#> 2008 28-333 90 1 1 0 0 -#> 2009 24-092 90 3 1 1 2 -#> 2010 23-232 90 1 1 1 0 -#> 2011 29-336 90 3 1 2 1 -#> 2012 23-170 73 2 1 2 0 -#> 2013 34-339 17 1 1 1 0 -#> 2014 29-022 90 0 0 0 0 -#> 2015 25-013 90 0 0 0 0 -#> 2016 27-089 90 0 0 0 0 -#> 2017 28-329 66 3 3 2 1 -#> 2018 26-127 24 0 0 0 0 -#> 2019 28-073 73 0 0 0 0 -#> 2020 32-163 17 0 0 0 0 -#> 2021 30-357 90 1 1 0 1 -#> 2022 26-236 90 2 1 0 1 -#> 2023 22-353 90 2 0 2 0 -#> 2024 24-153 87 3 2 1 2 -#> 2025 22-149 3 0 0 0 0 -#> 2026 28-335 90 4 4 4 0 -#> 2027 28-256 90 3 1 3 0 -#> 2028 26-141 90 0 0 0 0 -#> 2029 30-291 45 0 0 0 0 -#> 2030 25-066 45 0 0 0 0 -#> 2031 22-060 90 1 1 0 1 -#> 2032 29-082 79 0 0 0 0 -#> 2033 18-086 11 0 0 0 0 -#> 2034 28-275 90 0 0 0 0 -#> 2035 26-225 61 1 1 0 1 -#> 2036 22-258 29 0 0 0 0 -#> 2037 33-027 90 3 2 3 0 -#> 2038 28-261 90 1 1 0 1 -#> 2039 32-190 90 1 0 0 1 -#> 2040 25-164 90 0 0 0 0 -#> Att 3rd_Tackles Tkl_Challenges Att_Challenges Tkl_percent_Challenges -#> 1 0 0 0 NA -#> 2 0 0 0 NA -#> 3 0 0 0 NA -#> 4 0 0 1 0.0 -#> 5 0 0 0 NA -#> 6 0 0 1 0.0 -#> 7 0 0 1 0.0 -#> 8 0 1 2 50.0 -#> 9 0 0 1 0.0 -#> 10 0 1 1 100.0 -#> 11 0 2 2 100.0 -#> 12 0 0 0 NA -#> 13 2 1 5 20.0 -#> 14 0 0 0 NA -#> 15 1 1 1 100.0 -#> 16 0 0 2 0.0 -#> 17 2 4 7 57.1 -#> 18 0 0 0 NA -#> 19 0 0 1 0.0 -#> 20 0 0 0 NA -#> 21 0 0 0 NA -#> 22 0 1 2 50.0 -#> 23 0 1 2 50.0 -#> 24 0 5 8 62.5 -#> 25 0 1 3 33.3 -#> 26 0 1 3 33.3 -#> 27 0 0 1 0.0 -#> 28 0 0 0 NA -#> 29 0 0 2 0.0 -#> 30 0 0 0 NA -#> 31 0 0 0 NA -#> 32 2 1 1 100.0 -#> 33 0 2 2 100.0 -#> 34 0 0 1 0.0 -#> 35 1 1 3 33.3 -#> 36 2 2 7 28.6 -#> 37 1 1 3 33.3 -#> 38 0 0 0 NA -#> 39 0 1 1 100.0 -#> 40 0 4 5 80.0 -#> 41 0 1 1 100.0 -#> 42 0 0 0 NA -#> 43 0 0 1 0.0 -#> 44 0 0 0 NA -#> 45 0 0 2 0.0 -#> 46 0 2 3 66.7 -#> 47 0 1 3 33.3 -#> 48 1 0 4 0.0 -#> 49 0 1 1 100.0 -#> 50 0 1 5 20.0 -#> 51 0 0 0 NA -#> 52 0 0 1 0.0 -#> 53 0 0 1 0.0 -#> 54 0 2 2 100.0 -#> 55 0 1 2 50.0 -#> 56 0 0 0 NA -#> 57 1 0 0 NA -#> 58 0 0 0 NA -#> 59 0 0 2 0.0 -#> 60 0 0 0 NA -#> 61 1 0 1 0.0 -#> 62 0 0 0 NA -#> 63 0 0 1 0.0 -#> 64 0 0 1 0.0 -#> 65 0 0 1 0.0 -#> 66 0 1 2 50.0 -#> 67 0 0 0 NA -#> 68 0 1 1 100.0 -#> 69 0 0 0 NA -#> 70 0 0 0 NA -#> 71 0 0 0 NA -#> 72 0 1 1 100.0 -#> 73 1 2 4 50.0 -#> 74 0 0 0 NA -#> 75 0 1 3 33.3 -#> 76 0 2 2 100.0 -#> 77 0 1 2 50.0 -#> 78 0 2 2 100.0 -#> 79 0 2 5 40.0 -#> 80 1 1 1 100.0 -#> 81 0 1 1 100.0 -#> 82 0 1 1 100.0 -#> 83 0 3 5 60.0 -#> 84 0 0 0 NA -#> 85 0 0 0 NA -#> 86 0 0 0 NA -#> 87 0 0 2 0.0 -#> 88 0 0 0 NA -#> 89 0 0 0 NA -#> 90 0 0 1 0.0 -#> 91 1 0 0 NA -#> 92 0 0 3 0.0 -#> 93 0 0 0 NA -#> 94 0 1 2 50.0 -#> 95 0 0 0 NA -#> 96 0 0 0 NA -#> 97 2 4 4 100.0 -#> 98 0 0 0 NA -#> 99 0 0 1 0.0 -#> 100 0 0 1 0.0 -#> 101 0 0 0 NA -#> 102 0 0 1 0.0 -#> 103 0 0 0 NA -#> 104 1 1 3 33.3 -#> 105 0 1 2 50.0 -#> 106 1 1 2 50.0 -#> 107 0 0 0 NA -#> 108 0 1 3 33.3 -#> 109 0 0 0 NA -#> 110 0 1 1 100.0 -#> 111 0 0 1 0.0 -#> 112 0 0 0 NA -#> 113 0 0 0 NA -#> 114 0 0 0 NA -#> 115 0 0 1 0.0 -#> 116 0 0 0 NA -#> 117 0 0 0 NA -#> 118 1 1 1 100.0 -#> 119 0 0 0 NA -#> 120 1 2 2 100.0 -#> 121 0 0 2 0.0 -#> 122 0 0 0 NA -#> 123 0 1 1 100.0 -#> 124 0 0 1 0.0 -#> 125 1 0 0 NA -#> 126 0 0 0 NA -#> 127 0 0 0 NA -#> 128 0 0 0 NA -#> 129 1 1 4 25.0 -#> 130 0 0 0 NA -#> 131 0 0 0 NA -#> 132 0 1 2 50.0 -#> 133 0 0 2 0.0 -#> 134 0 0 1 0.0 -#> 135 0 1 2 50.0 -#> 136 0 0 1 0.0 -#> 137 0 1 3 33.3 -#> 138 0 0 1 0.0 -#> 139 0 1 2 50.0 -#> 140 0 0 0 NA -#> 141 0 0 0 NA -#> 142 1 0 0 NA -#> 143 0 0 0 NA -#> 144 0 0 0 NA -#> 145 0 1 1 100.0 -#> 146 0 2 5 40.0 -#> 147 0 0 1 0.0 -#> 148 0 0 1 0.0 -#> 149 0 0 1 0.0 -#> 150 0 3 5 60.0 -#> 151 0 0 0 NA -#> 152 0 1 2 50.0 -#> 153 0 1 2 50.0 -#> 154 0 0 0 NA -#> 155 0 0 0 NA -#> 156 0 0 0 NA -#> 157 0 0 0 NA -#> 158 0 1 1 100.0 -#> 159 0 0 3 0.0 -#> 160 0 0 1 0.0 -#> 161 0 0 0 NA -#> 162 0 0 1 0.0 -#> 163 0 2 2 100.0 -#> 164 0 5 6 83.3 -#> 165 0 0 0 NA -#> 166 0 0 0 NA -#> 167 0 1 1 100.0 -#> 168 0 0 0 NA -#> 169 1 0 0 NA -#> 170 0 0 1 0.0 -#> 171 0 0 0 NA -#> 172 0 0 0 NA -#> 173 0 0 1 0.0 -#> 174 0 0 0 NA -#> 175 0 0 1 0.0 -#> 176 0 0 2 0.0 -#> 177 0 1 2 50.0 -#> 178 0 0 2 0.0 -#> 179 0 3 3 100.0 -#> 180 0 1 3 33.3 -#> 181 0 0 0 NA -#> 182 0 0 0 NA -#> 183 0 1 2 50.0 -#> 184 0 0 0 NA -#> 185 0 0 0 NA -#> 186 0 0 4 0.0 -#> 187 0 0 0 NA -#> 188 0 1 2 50.0 -#> 189 0 0 1 0.0 -#> 190 0 0 0 NA -#> 191 0 0 0 NA -#> 192 0 2 2 100.0 -#> 193 0 0 0 NA -#> 194 0 1 1 100.0 -#> 195 0 0 0 NA -#> 196 2 0 0 NA -#> 197 0 0 1 0.0 -#> 198 0 1 2 50.0 -#> 199 0 0 0 NA -#> 200 1 1 3 33.3 -#> 201 0 1 1 100.0 -#> 202 0 0 1 0.0 -#> 203 1 0 0 NA -#> 204 0 0 0 NA -#> 205 1 1 3 33.3 -#> 206 0 1 1 100.0 -#> 207 0 0 0 NA -#> 208 1 0 0 NA -#> 209 0 0 0 NA -#> 210 0 0 0 NA -#> 211 0 0 0 NA -#> 212 0 0 2 0.0 -#> 213 0 0 1 0.0 -#> 214 0 0 1 0.0 -#> 215 0 1 3 33.3 -#> 216 0 0 0 NA -#> 217 0 0 3 0.0 -#> 218 0 1 3 33.3 -#> 219 0 1 2 50.0 -#> 220 0 0 0 NA -#> 221 0 2 2 100.0 -#> 222 2 3 7 42.9 -#> 223 0 0 0 NA -#> 224 0 0 0 NA -#> 225 0 0 0 NA -#> 226 1 0 1 0.0 -#> 227 0 0 1 0.0 -#> 228 0 1 1 100.0 -#> 229 1 3 7 42.9 -#> 230 1 1 2 50.0 -#> 231 0 0 0 NA -#> 232 0 2 3 66.7 -#> 233 0 0 0 NA -#> 234 0 0 1 0.0 -#> 235 0 0 0 NA -#> 236 0 0 2 0.0 -#> 237 0 0 0 NA -#> 238 0 0 0 NA -#> 239 0 0 0 NA -#> 240 0 0 0 NA -#> 241 0 4 4 100.0 -#> 242 1 1 1 100.0 -#> 243 0 0 0 NA -#> 244 0 1 3 33.3 -#> 245 1 0 2 0.0 -#> 246 0 0 0 NA -#> 247 0 4 7 57.1 -#> 248 0 4 4 100.0 -#> 249 0 0 0 NA -#> 250 0 1 1 100.0 -#> 251 0 0 0 NA -#> 252 0 0 0 NA -#> 253 0 0 0 NA -#> 254 0 0 1 0.0 -#> 255 1 0 1 0.0 -#> 256 0 0 1 0.0 -#> 257 1 1 4 25.0 -#> 258 1 0 2 0.0 -#> 259 0 0 0 NA -#> 260 0 1 2 50.0 -#> 261 0 0 1 0.0 -#> 262 0 0 0 NA -#> 263 0 1 1 100.0 -#> 264 0 0 0 NA -#> 265 0 0 0 NA -#> 266 1 0 0 NA -#> 267 0 0 0 NA -#> 268 0 0 0 NA -#> 269 0 1 1 100.0 -#> 270 0 0 0 NA -#> 271 0 1 3 33.3 -#> 272 0 1 2 50.0 -#> 273 0 0 2 0.0 -#> 274 0 1 2 50.0 -#> 275 0 0 0 NA -#> 276 0 0 0 NA -#> 277 0 0 0 NA -#> 278 0 1 2 50.0 -#> 279 0 0 0 NA -#> 280 0 0 1 0.0 -#> 281 0 0 0 NA -#> 282 0 0 0 NA -#> 283 0 0 0 NA -#> 284 0 2 2 100.0 -#> 285 1 2 4 50.0 -#> 286 0 0 1 0.0 -#> 287 0 0 1 0.0 -#> 288 0 0 2 0.0 -#> 289 0 0 1 0.0 -#> 290 0 0 0 NA -#> 291 0 0 1 0.0 -#> 292 0 1 1 100.0 -#> 293 0 0 0 NA -#> 294 0 0 0 NA -#> 295 1 0 1 0.0 -#> 296 0 1 1 100.0 -#> 297 1 0 2 0.0 -#> 298 0 0 0 NA -#> 299 0 0 0 NA -#> 300 0 0 0 NA -#> 301 1 0 0 NA -#> 302 0 0 0 NA -#> 303 0 1 3 33.3 -#> 304 0 1 1 100.0 -#> 305 0 0 0 NA -#> 306 0 1 2 50.0 -#> 307 0 0 0 NA -#> 308 0 0 1 0.0 -#> 309 1 0 0 NA -#> 310 0 0 1 0.0 -#> 311 1 0 1 0.0 -#> 312 0 0 0 NA -#> 313 0 0 2 0.0 -#> 314 0 0 0 NA -#> 315 0 0 1 0.0 -#> 316 0 1 2 50.0 -#> 317 0 0 0 NA -#> 318 0 0 0 NA -#> 319 0 0 0 NA -#> 320 0 0 1 0.0 -#> 321 0 0 0 NA -#> 322 0 0 0 NA -#> 323 0 1 3 33.3 -#> 324 0 0 0 NA -#> 325 0 0 1 0.0 -#> 326 0 2 2 100.0 -#> 327 0 1 2 50.0 -#> 328 0 0 0 NA -#> 329 0 0 1 0.0 -#> 330 0 1 2 50.0 -#> 331 0 0 0 NA -#> 332 0 0 0 NA -#> 333 0 1 1 100.0 -#> 334 0 1 2 50.0 -#> 335 0 0 0 NA -#> 336 0 0 0 NA -#> 337 0 0 0 NA -#> 338 0 0 0 NA -#> 339 0 0 0 NA -#> 340 1 1 2 50.0 -#> 341 0 0 0 NA -#> 342 0 0 3 0.0 -#> 343 0 0 1 0.0 -#> 344 0 0 1 0.0 -#> 345 1 1 2 50.0 -#> 346 0 3 4 75.0 -#> 347 0 1 1 100.0 -#> 348 0 1 3 33.3 -#> 349 0 0 1 0.0 -#> 350 0 0 1 0.0 -#> 351 0 0 1 0.0 -#> 352 0 0 0 NA -#> 353 0 0 0 NA -#> 354 0 1 2 50.0 -#> 355 0 0 1 0.0 -#> 356 0 0 1 0.0 -#> 357 0 0 0 NA -#> 358 0 0 3 0.0 -#> 359 0 1 1 100.0 -#> 360 1 2 2 100.0 -#> 361 0 1 1 100.0 -#> 362 0 1 1 100.0 -#> 363 0 0 0 NA -#> 364 0 0 0 NA -#> 365 1 0 3 0.0 -#> 366 1 1 1 100.0 -#> 367 0 0 3 0.0 -#> 368 0 2 6 33.3 -#> 369 0 4 5 80.0 -#> 370 0 1 3 33.3 -#> 371 0 2 2 100.0 -#> 372 1 1 1 100.0 -#> 373 0 0 2 0.0 -#> 374 0 1 1 100.0 -#> 375 0 0 0 NA -#> 376 0 1 1 100.0 -#> 377 0 0 0 NA -#> 378 0 0 0 NA -#> 379 0 0 0 NA -#> 380 0 0 0 NA -#> 381 0 1 3 33.3 -#> 382 0 0 0 NA -#> 383 1 2 3 66.7 -#> 384 0 0 1 0.0 -#> 385 0 0 0 NA -#> 386 0 1 3 33.3 -#> 387 0 1 1 100.0 -#> 388 0 0 0 NA -#> 389 0 3 4 75.0 -#> 390 0 2 4 50.0 -#> 391 0 0 0 NA -#> 392 0 0 1 0.0 -#> 393 0 0 2 0.0 -#> 394 0 0 0 NA -#> 395 1 1 1 100.0 -#> 396 0 0 0 NA -#> 397 0 1 3 33.3 -#> 398 0 0 2 0.0 -#> 399 0 0 1 0.0 -#> 400 0 0 1 0.0 -#> 401 0 2 2 100.0 -#> 402 0 0 0 NA -#> 403 0 2 3 66.7 -#> 404 1 0 2 0.0 -#> 405 0 0 0 NA -#> 406 0 0 1 0.0 -#> 407 0 0 0 NA -#> 408 0 0 0 NA -#> 409 0 0 0 NA -#> 410 0 0 0 NA -#> 411 0 0 2 0.0 -#> 412 0 0 0 NA -#> 413 0 0 0 NA -#> 414 0 0 0 NA -#> 415 0 2 3 66.7 -#> 416 0 0 0 NA -#> 417 0 1 1 100.0 -#> 418 0 2 2 100.0 -#> 419 0 0 0 NA -#> 420 0 0 0 NA -#> 421 0 0 0 NA -#> 422 0 0 1 0.0 -#> 423 0 0 0 NA -#> 424 0 0 0 NA -#> 425 0 1 2 50.0 -#> 426 0 0 0 NA -#> 427 0 0 0 NA -#> 428 0 1 2 50.0 -#> 429 2 2 3 66.7 -#> 430 0 1 2 50.0 -#> 431 0 0 0 NA -#> 432 0 1 1 100.0 -#> 433 0 0 0 NA -#> 434 0 0 3 0.0 -#> 435 0 0 0 NA -#> 436 0 0 1 0.0 -#> 437 0 0 0 NA -#> 438 0 0 0 NA -#> 439 0 1 1 100.0 -#> 440 1 0 3 0.0 -#> 441 1 2 4 50.0 -#> 442 1 0 0 NA -#> 443 1 2 2 100.0 -#> 444 0 0 0 NA -#> 445 0 1 1 100.0 -#> 446 0 0 2 0.0 -#> 447 0 1 1 100.0 -#> 448 0 0 0 NA -#> 449 0 0 0 NA -#> 450 0 0 0 NA -#> 451 1 0 0 NA -#> 452 0 2 2 100.0 -#> 453 0 0 0 NA -#> 454 0 0 4 0.0 -#> 455 0 2 2 100.0 -#> 456 1 2 5 40.0 -#> 457 0 1 1 100.0 -#> 458 0 0 2 0.0 -#> 459 0 3 5 60.0 -#> 460 0 0 0 NA -#> 461 0 0 0 NA -#> 462 0 0 0 NA -#> 463 0 0 0 NA -#> 464 0 0 0 NA -#> 465 0 0 0 NA -#> 466 0 0 2 0.0 -#> 467 0 0 0 NA -#> 468 0 0 0 NA -#> 469 0 0 0 NA -#> 470 0 0 0 NA -#> 471 0 0 0 NA -#> 472 0 2 3 66.7 -#> 473 0 1 2 50.0 -#> 474 1 1 3 33.3 -#> 475 0 0 0 NA -#> 476 0 0 0 NA -#> 477 0 0 1 0.0 -#> 478 0 0 1 0.0 -#> 479 0 0 1 0.0 -#> 480 0 0 1 0.0 -#> 481 0 0 0 NA -#> 482 0 1 1 100.0 -#> 483 0 1 3 33.3 -#> 484 0 0 0 NA -#> 485 0 0 0 NA -#> 486 0 1 1 100.0 -#> 487 0 0 0 NA -#> 488 0 0 2 0.0 -#> 489 0 0 0 NA -#> 490 0 0 0 NA -#> 491 1 1 1 100.0 -#> 492 1 0 0 NA -#> 493 0 0 1 0.0 -#> 494 0 0 0 NA -#> 495 0 0 2 0.0 -#> 496 0 1 1 100.0 -#> 497 0 0 0 NA -#> 498 0 3 5 60.0 -#> 499 0 1 2 50.0 -#> 500 0 0 0 NA -#> 501 0 0 0 NA -#> 502 0 0 1 0.0 -#> 503 0 0 0 NA -#> 504 0 0 0 NA -#> 505 0 0 3 0.0 -#> 506 2 0 0 NA -#> 507 0 0 0 NA -#> 508 2 2 2 100.0 -#> 509 0 0 2 0.0 -#> 510 0 0 0 NA -#> 511 0 1 2 50.0 -#> 512 0 0 2 0.0 -#> 513 0 1 1 100.0 -#> 514 0 0 0 NA -#> 515 0 2 3 66.7 -#> 516 0 1 1 100.0 -#> 517 0 0 0 NA -#> 518 0 1 1 100.0 -#> 519 0 0 0 NA -#> 520 0 0 0 NA -#> 521 0 1 1 100.0 -#> 522 0 0 0 NA -#> 523 0 0 1 0.0 -#> 524 1 1 3 33.3 -#> 525 0 0 1 0.0 -#> 526 0 0 0 NA -#> 527 0 0 2 0.0 -#> 528 0 1 1 100.0 -#> 529 0 1 1 100.0 -#> 530 0 2 3 66.7 -#> 531 0 0 0 NA -#> 532 0 0 0 NA -#> 533 0 0 0 NA -#> 534 0 0 0 NA -#> 535 0 1 2 50.0 -#> 536 0 2 5 40.0 -#> 537 0 1 4 25.0 -#> 538 0 0 0 NA -#> 539 0 2 2 100.0 -#> 540 0 1 2 50.0 -#> 541 0 2 2 100.0 -#> 542 0 0 0 NA -#> 543 1 1 1 100.0 -#> 544 0 1 1 100.0 -#> 545 0 0 0 NA -#> 546 0 0 1 0.0 -#> 547 0 0 1 0.0 -#> 548 0 0 0 NA -#> 549 0 0 0 NA -#> 550 0 0 0 NA -#> 551 0 0 3 0.0 -#> 552 0 1 2 50.0 -#> 553 1 1 2 50.0 -#> 554 0 0 0 NA -#> 555 0 3 3 100.0 -#> 556 0 0 1 0.0 -#> 557 0 0 0 NA -#> 558 0 2 2 100.0 -#> 559 0 0 0 NA -#> 560 0 0 0 NA -#> 561 0 0 0 NA -#> 562 0 0 0 NA -#> 563 0 0 0 NA -#> 564 0 0 0 NA -#> 565 0 0 0 NA -#> 566 0 0 0 NA -#> 567 0 0 1 0.0 -#> 568 1 0 0 NA -#> 569 0 0 0 NA -#> 570 0 1 1 100.0 -#> 571 0 0 0 NA -#> 572 1 1 3 33.3 -#> 573 0 0 0 NA -#> 574 2 0 0 NA -#> 575 0 0 0 NA -#> 576 0 2 3 66.7 -#> 577 1 1 1 100.0 -#> 578 1 2 5 40.0 -#> 579 0 1 2 50.0 -#> 580 0 1 1 100.0 -#> 581 0 1 4 25.0 -#> 582 0 1 1 100.0 -#> 583 0 1 2 50.0 -#> 584 0 1 1 100.0 -#> 585 0 2 2 100.0 -#> 586 0 0 0 NA -#> 587 0 0 0 NA -#> 588 0 0 1 0.0 -#> 589 0 0 0 NA -#> 590 0 0 0 NA -#> 591 0 0 0 NA -#> 592 0 1 3 33.3 -#> 593 1 1 3 33.3 -#> 594 0 0 0 NA -#> 595 0 1 2 50.0 -#> 596 0 0 0 NA -#> 597 1 1 2 50.0 -#> 598 0 1 1 100.0 -#> 599 0 1 1 100.0 -#> 600 0 1 1 100.0 -#> 601 0 0 0 NA -#> 602 0 0 0 NA -#> 603 0 0 0 NA -#> 604 0 0 0 NA -#> 605 0 0 1 0.0 -#> 606 0 0 1 0.0 -#> 607 0 1 1 100.0 -#> 608 0 0 0 NA -#> 609 0 1 3 33.3 -#> 610 1 2 2 100.0 -#> 611 0 1 2 50.0 -#> 612 0 0 0 NA -#> 613 0 0 0 NA -#> 614 0 1 1 100.0 -#> 615 0 0 0 NA -#> 616 0 0 0 NA -#> 617 0 0 1 0.0 -#> 618 0 1 2 50.0 -#> 619 0 0 1 0.0 -#> 620 0 0 2 0.0 -#> 621 0 1 1 100.0 -#> 622 0 0 1 0.0 -#> 623 0 0 1 0.0 -#> 624 0 0 1 0.0 -#> 625 0 0 0 NA -#> 626 0 0 0 NA -#> 627 0 0 1 0.0 -#> 628 0 2 5 40.0 -#> 629 0 0 0 NA -#> 630 0 0 0 NA -#> 631 0 0 1 0.0 -#> 632 0 0 0 NA -#> 633 0 1 1 100.0 -#> 634 0 1 1 100.0 -#> 635 0 0 1 0.0 -#> 636 0 1 1 100.0 -#> 637 0 0 0 NA -#> 638 1 2 2 100.0 -#> 639 0 2 2 100.0 -#> 640 0 1 1 100.0 -#> 641 0 1 1 100.0 -#> 642 0 1 1 100.0 -#> 643 0 0 0 NA -#> 644 0 0 0 NA -#> 645 0 0 0 NA -#> 646 0 0 0 NA -#> 647 0 0 0 NA -#> 648 0 0 1 0.0 -#> 649 0 1 1 100.0 -#> 650 0 1 2 50.0 -#> 651 0 0 0 NA -#> 652 0 0 0 NA -#> 653 0 1 2 50.0 -#> 654 0 0 0 NA -#> 655 0 2 2 100.0 -#> 656 0 0 0 NA -#> 657 0 0 0 NA -#> 658 0 0 3 0.0 -#> 659 0 0 1 0.0 -#> 660 0 1 3 33.3 -#> 661 0 0 1 0.0 -#> 662 0 1 1 100.0 -#> 663 0 1 3 33.3 -#> 664 0 0 2 0.0 -#> 665 0 0 0 NA -#> 666 0 3 5 60.0 -#> 667 0 1 1 100.0 -#> 668 0 1 1 100.0 -#> 669 0 0 0 NA -#> 670 0 0 0 NA -#> 671 0 0 0 NA -#> 672 0 0 0 NA -#> 673 0 0 0 NA -#> 674 0 0 0 NA -#> 675 0 0 0 NA -#> 676 0 2 2 100.0 -#> 677 0 1 1 100.0 -#> 678 0 0 0 NA -#> 679 0 0 1 0.0 -#> 680 0 0 0 NA -#> 681 0 1 2 50.0 -#> 682 0 0 0 NA -#> 683 0 1 1 100.0 -#> 684 0 1 1 100.0 -#> 685 0 0 0 NA -#> 686 0 0 0 NA -#> 687 1 0 2 0.0 -#> 688 0 0 1 0.0 -#> 689 0 0 0 NA -#> 690 0 0 0 NA -#> 691 0 0 2 0.0 -#> 692 0 0 4 0.0 -#> 693 0 0 1 0.0 -#> 694 1 1 1 100.0 -#> 695 0 2 3 66.7 -#> 696 0 0 1 0.0 -#> 697 0 1 2 50.0 -#> 698 0 1 1 100.0 -#> 699 0 0 0 NA -#> 700 0 0 0 NA -#> 701 0 0 0 NA -#> 702 0 0 0 NA -#> 703 0 0 3 0.0 -#> 704 0 1 1 100.0 -#> 705 0 0 2 0.0 -#> 706 0 0 0 NA -#> 707 0 0 0 NA -#> 708 0 1 1 100.0 -#> 709 0 2 2 100.0 -#> 710 0 1 1 100.0 -#> 711 0 1 1 100.0 -#> 712 0 2 2 100.0 -#> 713 0 0 0 NA -#> 714 0 0 1 0.0 -#> 715 0 0 0 NA -#> 716 0 0 0 NA -#> 717 0 0 0 NA -#> 718 0 0 0 NA -#> 719 0 0 1 0.0 -#> 720 0 0 2 0.0 -#> 721 0 0 1 0.0 -#> 722 0 0 0 NA -#> 723 0 1 2 50.0 -#> 724 0 1 3 33.3 -#> 725 0 0 0 NA -#> 726 0 2 2 100.0 -#> 727 0 0 0 NA -#> 728 0 0 0 NA -#> 729 0 0 1 0.0 -#> 730 0 0 0 NA -#> 731 0 0 2 0.0 -#> 732 0 0 0 NA -#> 733 0 0 2 0.0 -#> 734 1 3 4 75.0 -#> 735 0 0 2 0.0 -#> 736 0 0 0 NA -#> 737 0 1 1 100.0 -#> 738 0 1 1 100.0 -#> 739 0 0 0 NA -#> 740 0 0 0 NA -#> 741 0 0 0 NA -#> 742 0 0 0 NA -#> 743 0 0 1 0.0 -#> 744 0 0 0 NA -#> 745 0 0 1 0.0 -#> 746 0 0 1 0.0 -#> 747 0 0 0 NA -#> 748 0 0 0 NA -#> 749 0 0 0 NA -#> 750 1 1 3 33.3 -#> 751 0 2 4 50.0 -#> 752 0 0 1 0.0 -#> 753 0 0 1 0.0 -#> 754 0 0 0 NA -#> 755 0 0 0 NA -#> 756 1 0 0 NA -#> 757 0 0 0 NA -#> 758 1 0 0 NA -#> 759 0 0 0 NA -#> 760 0 0 1 0.0 -#> 761 0 0 0 NA -#> 762 0 3 3 100.0 -#> 763 0 0 0 NA -#> 764 0 0 1 0.0 -#> 765 0 0 0 NA -#> 766 0 1 1 100.0 -#> 767 0 0 0 NA -#> 768 0 0 0 NA -#> 769 0 0 0 NA -#> 770 0 0 0 NA -#> 771 0 0 0 NA -#> 772 0 0 1 0.0 -#> 773 0 0 0 NA -#> 774 0 0 1 0.0 -#> 775 0 1 4 25.0 -#> 776 0 1 3 33.3 -#> 777 0 1 1 100.0 -#> 778 0 1 1 100.0 -#> 779 0 1 3 33.3 -#> 780 0 0 1 0.0 -#> 781 0 2 3 66.7 -#> 782 0 0 2 0.0 -#> 783 0 0 0 NA -#> 784 0 0 2 0.0 -#> 785 0 0 0 NA -#> 786 0 0 3 0.0 -#> 787 1 1 1 100.0 -#> 788 0 0 0 NA -#> 789 0 0 0 NA -#> 790 0 0 1 0.0 -#> 791 0 1 1 100.0 -#> 792 1 2 3 66.7 -#> 793 0 1 1 100.0 -#> 794 0 2 2 100.0 -#> 795 0 0 0 NA -#> 796 0 0 0 NA -#> 797 0 0 0 NA -#> 798 0 0 0 NA -#> 799 0 0 0 NA -#> 800 0 1 1 100.0 -#> 801 0 0 1 0.0 -#> 802 0 0 2 0.0 -#> 803 0 0 5 0.0 -#> 804 0 1 1 100.0 -#> 805 0 0 0 NA -#> 806 0 1 1 100.0 -#> 807 0 2 3 66.7 -#> 808 0 0 0 NA -#> 809 1 1 1 100.0 -#> 810 0 2 3 66.7 -#> 811 0 0 0 NA -#> 812 0 0 0 NA -#> 813 0 0 0 NA -#> 814 0 1 2 50.0 -#> 815 0 1 2 50.0 -#> 816 0 1 2 50.0 -#> 817 0 1 4 25.0 -#> 818 0 0 0 NA -#> 819 0 1 2 50.0 -#> 820 0 0 0 NA -#> 821 0 0 0 NA -#> 822 0 1 1 100.0 -#> 823 0 0 0 NA -#> 824 2 1 1 100.0 -#> 825 0 0 0 NA -#> 826 0 0 1 0.0 -#> 827 0 0 0 NA -#> 828 0 0 1 0.0 -#> 829 0 0 2 0.0 -#> 830 0 0 1 0.0 -#> 831 0 0 1 0.0 -#> 832 1 0 2 0.0 -#> 833 0 0 1 0.0 -#> 834 0 2 2 100.0 -#> 835 0 0 0 NA -#> 836 0 1 1 100.0 -#> 837 0 1 1 100.0 -#> 838 0 1 1 100.0 -#> 839 0 0 0 NA -#> 840 0 0 0 NA -#> 841 0 0 0 NA -#> 842 0 0 0 NA -#> 843 0 0 0 NA -#> 844 0 0 0 NA -#> 845 0 0 0 NA -#> 846 0 0 0 NA -#> 847 0 0 0 NA -#> 848 0 0 0 NA -#> 849 0 0 0 NA -#> 850 0 0 1 0.0 -#> 851 0 0 1 0.0 -#> 852 0 0 0 NA -#> 853 0 0 0 NA -#> 854 0 0 0 NA -#> 855 0 0 2 0.0 -#> 856 0 0 0 NA -#> 857 0 1 4 25.0 -#> 858 0 0 1 0.0 -#> 859 0 0 2 0.0 -#> 860 1 0 2 0.0 -#> 861 0 0 0 NA -#> 862 0 2 2 100.0 -#> 863 0 1 2 50.0 -#> 864 0 1 2 50.0 -#> 865 0 0 0 NA -#> 866 0 0 0 NA -#> 867 0 1 1 100.0 -#> 868 0 1 2 50.0 -#> 869 0 0 1 0.0 -#> 870 0 0 0 NA -#> 871 0 1 4 25.0 -#> 872 0 0 0 NA -#> 873 1 2 5 40.0 -#> 874 0 0 0 NA -#> 875 0 2 2 100.0 -#> 876 0 0 0 NA -#> 877 0 0 1 0.0 -#> 878 0 1 1 100.0 -#> 879 0 0 3 0.0 -#> 880 0 0 0 NA -#> 881 0 0 0 NA -#> 882 2 1 1 100.0 -#> 883 0 1 1 100.0 -#> 884 1 0 0 NA -#> 885 1 0 0 NA -#> 886 0 0 0 NA -#> 887 0 0 1 0.0 -#> 888 0 0 0 NA -#> 889 0 1 2 50.0 -#> 890 0 1 2 50.0 -#> 891 0 2 2 100.0 -#> 892 0 1 1 100.0 -#> 893 0 0 0 NA -#> 894 0 0 0 NA -#> 895 0 0 0 NA -#> 896 0 0 1 0.0 -#> 897 1 1 2 50.0 -#> 898 0 0 0 NA -#> 899 0 0 0 NA -#> 900 0 0 1 0.0 -#> 901 0 1 3 33.3 -#> 902 1 1 2 50.0 -#> 903 1 0 1 0.0 -#> 904 0 0 1 0.0 -#> 905 0 0 0 NA -#> 906 0 0 1 0.0 -#> 907 0 0 0 NA -#> 908 0 0 1 0.0 -#> 909 0 0 1 0.0 -#> 910 0 0 1 0.0 -#> 911 0 2 2 100.0 -#> 912 1 0 1 0.0 -#> 913 0 0 0 NA -#> 914 1 2 3 66.7 -#> 915 0 0 1 0.0 -#> 916 0 1 2 50.0 -#> 917 0 0 0 NA -#> 918 0 0 0 NA -#> 919 0 0 1 0.0 -#> 920 0 1 3 33.3 -#> 921 0 0 1 0.0 -#> 922 0 0 0 NA -#> 923 0 0 0 NA -#> 924 0 0 0 NA -#> 925 2 0 2 0.0 -#> 926 0 0 0 NA -#> 927 0 0 2 0.0 -#> 928 0 1 2 50.0 -#> 929 0 0 1 0.0 -#> 930 0 0 1 0.0 -#> 931 0 1 2 50.0 -#> 932 0 1 1 100.0 -#> 933 0 1 2 50.0 -#> 934 0 1 1 100.0 -#> 935 0 1 2 50.0 -#> 936 0 0 0 NA -#> 937 1 0 1 0.0 -#> 938 0 0 2 0.0 -#> 939 0 0 1 0.0 -#> 940 1 0 1 0.0 -#> 941 0 0 0 NA -#> 942 0 1 3 33.3 -#> 943 0 0 0 NA -#> 944 0 1 2 50.0 -#> 945 0 1 1 100.0 -#> 946 0 0 0 NA -#> 947 0 0 1 0.0 -#> 948 0 1 1 100.0 -#> 949 0 0 3 0.0 -#> 950 0 0 0 NA -#> 951 0 1 1 100.0 -#> 952 0 2 4 50.0 -#> 953 0 0 0 NA -#> 954 0 0 0 NA -#> 955 0 0 0 NA -#> 956 0 0 0 NA -#> 957 0 1 2 50.0 -#> 958 0 0 2 0.0 -#> 959 0 0 0 NA -#> 960 0 0 0 NA -#> 961 0 0 1 0.0 -#> 962 1 0 1 0.0 -#> 963 0 0 0 NA -#> 964 0 0 0 NA -#> 965 0 0 2 0.0 -#> 966 0 0 0 NA -#> 967 0 0 0 NA -#> 968 0 0 2 0.0 -#> 969 0 0 1 0.0 -#> 970 0 0 0 NA -#> 971 0 0 0 NA -#> 972 2 0 3 0.0 -#> 973 0 0 0 NA -#> 974 0 0 1 0.0 -#> 975 0 0 0 NA -#> 976 0 1 1 100.0 -#> 977 0 1 2 50.0 -#> 978 0 0 0 NA -#> 979 0 0 0 NA -#> 980 0 0 0 NA -#> 981 0 0 0 NA -#> 982 0 1 1 100.0 -#> 983 0 0 1 0.0 -#> 984 2 2 3 66.7 -#> 985 0 1 2 50.0 -#> 986 0 0 0 NA -#> 987 0 0 1 0.0 -#> 988 0 1 1 100.0 -#> 989 0 0 0 NA -#> 990 0 0 1 0.0 -#> 991 0 1 3 33.3 -#> 992 0 0 0 NA -#> 993 0 0 0 NA -#> 994 1 0 0 NA -#> 995 0 0 0 NA -#> 996 0 0 3 0.0 -#> 997 0 0 0 NA -#> 998 0 2 5 40.0 -#> 999 0 0 0 NA -#> 1000 0 0 2 0.0 -#> 1001 0 0 0 NA -#> 1002 0 0 0 NA -#> 1003 0 0 0 NA -#> 1004 0 0 0 NA -#> 1005 0 0 1 0.0 -#> 1006 0 0 0 NA -#> 1007 0 0 0 NA -#> 1008 0 0 0 NA -#> 1009 0 0 0 NA -#> 1010 0 0 0 NA -#> 1011 0 0 0 NA -#> 1012 0 0 0 NA -#> 1013 0 0 0 NA -#> 1014 0 0 0 NA -#> 1015 0 0 1 0.0 -#> 1016 0 0 1 0.0 -#> 1017 0 0 0 NA -#> 1018 0 0 1 0.0 -#> 1019 0 1 1 100.0 -#> 1020 0 0 0 NA -#> 1021 0 0 1 0.0 -#> 1022 0 0 0 NA -#> 1023 0 0 0 NA -#> 1024 0 0 1 0.0 -#> 1025 0 0 1 0.0 -#> 1026 0 0 2 0.0 -#> 1027 0 0 0 NA -#> 1028 0 2 3 66.7 -#> 1029 0 0 2 0.0 -#> 1030 0 0 1 0.0 -#> 1031 0 0 0 NA -#> 1032 0 1 1 100.0 -#> 1033 0 3 6 50.0 -#> 1034 0 0 0 NA -#> 1035 0 0 0 NA -#> 1036 1 1 1 100.0 -#> 1037 1 2 2 100.0 -#> 1038 1 1 2 50.0 -#> 1039 0 0 1 0.0 -#> 1040 0 0 0 NA -#> 1041 1 0 1 0.0 -#> 1042 0 0 0 NA -#> 1043 1 0 0 NA -#> 1044 0 0 1 0.0 -#> 1045 0 0 0 NA -#> 1046 1 2 2 100.0 -#> 1047 0 0 1 0.0 -#> 1048 0 0 0 NA -#> 1049 0 0 0 NA -#> 1050 0 0 0 NA -#> 1051 0 0 1 0.0 -#> 1052 0 1 4 25.0 -#> 1053 0 0 0 NA -#> 1054 0 0 2 0.0 -#> 1055 0 0 0 NA -#> 1056 0 0 0 NA -#> 1057 0 2 2 100.0 -#> 1058 0 2 3 66.7 -#> 1059 0 0 0 NA -#> 1060 0 3 4 75.0 -#> 1061 0 0 2 0.0 -#> 1062 0 0 0 NA -#> 1063 0 0 1 0.0 -#> 1064 0 2 2 100.0 -#> 1065 0 1 3 33.3 -#> 1066 0 0 0 NA -#> 1067 0 0 0 NA -#> 1068 0 1 6 16.7 -#> 1069 0 2 6 33.3 -#> 1070 0 0 0 NA -#> 1071 0 0 0 NA -#> 1072 1 0 2 0.0 -#> 1073 0 0 1 0.0 -#> 1074 0 0 0 NA -#> 1075 0 2 2 100.0 -#> 1076 0 0 0 NA -#> 1077 0 0 0 NA -#> 1078 0 0 0 NA -#> 1079 0 0 0 NA -#> 1080 0 0 1 0.0 -#> 1081 0 0 1 0.0 -#> 1082 0 1 2 50.0 -#> 1083 0 0 0 NA -#> 1084 0 0 1 0.0 -#> 1085 0 0 1 0.0 -#> 1086 0 0 0 NA -#> 1087 0 0 0 NA -#> 1088 0 0 0 NA -#> 1089 0 2 5 40.0 -#> 1090 0 0 0 NA -#> 1091 0 0 1 0.0 -#> 1092 0 0 1 0.0 -#> 1093 1 1 1 100.0 -#> 1094 0 0 1 0.0 -#> 1095 0 0 0 NA -#> 1096 0 1 7 14.3 -#> 1097 0 0 0 NA -#> 1098 0 1 2 50.0 -#> 1099 0 0 1 0.0 -#> 1100 0 3 3 100.0 -#> 1101 0 0 0 NA -#> 1102 0 0 0 NA -#> 1103 1 0 0 NA -#> 1104 0 0 0 NA -#> 1105 0 0 1 0.0 -#> 1106 0 0 0 NA -#> 1107 0 0 0 NA -#> 1108 0 0 0 NA -#> 1109 0 0 0 NA -#> 1110 0 2 2 100.0 -#> 1111 0 0 0 NA -#> 1112 1 0 0 NA -#> 1113 1 0 3 0.0 -#> 1114 2 3 4 75.0 -#> 1115 0 0 0 NA -#> 1116 0 0 0 NA -#> 1117 1 1 2 50.0 -#> 1118 0 0 0 NA -#> 1119 0 0 0 NA -#> 1120 0 0 1 0.0 -#> 1121 0 0 0 NA -#> 1122 0 0 0 NA -#> 1123 0 0 0 NA -#> 1124 0 0 0 NA -#> 1125 1 0 0 NA -#> 1126 0 1 2 50.0 -#> 1127 0 0 0 NA -#> 1128 0 0 0 NA -#> 1129 0 0 1 0.0 -#> 1130 0 1 1 100.0 -#> 1131 0 1 2 50.0 -#> 1132 0 0 0 NA -#> 1133 0 0 1 0.0 -#> 1134 0 0 0 NA -#> 1135 0 0 2 0.0 -#> 1136 0 0 1 0.0 -#> 1137 0 0 0 NA -#> 1138 0 1 4 25.0 -#> 1139 1 2 3 66.7 -#> 1140 1 3 3 100.0 -#> 1141 0 1 2 50.0 -#> 1142 0 0 0 NA -#> 1143 0 2 2 100.0 -#> 1144 0 1 2 50.0 -#> 1145 0 2 4 50.0 -#> 1146 0 0 0 NA -#> 1147 1 0 0 NA -#> 1148 0 0 0 NA -#> 1149 0 0 0 NA -#> 1150 0 0 0 NA -#> 1151 0 0 1 0.0 -#> 1152 0 0 1 0.0 -#> 1153 0 0 2 0.0 -#> 1154 0 0 0 NA -#> 1155 0 2 2 100.0 -#> 1156 0 0 0 NA -#> 1157 0 0 0 NA -#> 1158 0 1 2 50.0 -#> 1159 0 0 0 NA -#> 1160 0 0 0 NA -#> 1161 0 0 0 NA -#> 1162 0 0 1 0.0 -#> 1163 0 0 0 NA -#> 1164 0 0 3 0.0 -#> 1165 0 0 0 NA -#> 1166 0 1 3 33.3 -#> 1167 1 0 2 0.0 -#> 1168 0 0 0 NA -#> 1169 0 0 0 NA -#> 1170 0 3 4 75.0 -#> 1171 0 0 1 0.0 -#> 1172 0 2 2 100.0 -#> 1173 1 0 0 NA -#> 1174 0 0 0 NA -#> 1175 0 0 1 0.0 -#> 1176 0 0 0 NA -#> 1177 0 0 2 0.0 -#> 1178 0 0 2 0.0 -#> 1179 0 0 0 NA -#> 1180 0 3 4 75.0 -#> 1181 0 0 2 0.0 -#> 1182 0 1 1 100.0 -#> 1183 1 0 0 NA -#> 1184 0 0 0 NA -#> 1185 0 0 0 NA -#> 1186 0 1 1 100.0 -#> 1187 0 4 4 100.0 -#> 1188 0 0 0 NA -#> 1189 0 0 0 NA -#> 1190 2 1 1 100.0 -#> 1191 0 1 2 50.0 -#> 1192 0 1 1 100.0 -#> 1193 0 1 5 20.0 -#> 1194 0 1 1 100.0 -#> 1195 1 0 0 NA -#> 1196 0 0 0 NA -#> 1197 0 1 1 100.0 -#> 1198 0 0 0 NA -#> 1199 1 0 0 NA -#> 1200 0 0 3 0.0 -#> 1201 0 0 0 NA -#> 1202 0 0 0 NA -#> 1203 0 0 0 NA -#> 1204 0 0 0 NA -#> 1205 2 1 1 100.0 -#> 1206 1 0 1 0.0 -#> 1207 0 0 0 NA -#> 1208 0 0 0 NA -#> 1209 0 0 3 0.0 -#> 1210 0 1 1 100.0 -#> 1211 2 0 1 0.0 -#> 1212 1 0 1 0.0 -#> 1213 0 0 1 0.0 -#> 1214 0 0 1 0.0 -#> 1215 1 0 3 0.0 -#> 1216 0 0 0 NA -#> 1217 0 0 0 NA -#> 1218 0 0 1 0.0 -#> 1219 0 0 1 0.0 -#> 1220 0 0 1 0.0 -#> 1221 0 0 1 0.0 -#> 1222 0 0 0 NA -#> 1223 0 1 3 33.3 -#> 1224 0 0 0 NA -#> 1225 0 3 3 100.0 -#> 1226 0 0 0 NA -#> 1227 0 0 0 NA -#> 1228 0 0 0 NA -#> 1229 0 3 4 75.0 -#> 1230 0 0 0 NA -#> 1231 0 0 0 NA -#> 1232 0 0 0 NA -#> 1233 0 0 0 NA -#> 1234 1 0 2 0.0 -#> 1235 0 0 0 NA -#> 1236 0 0 1 0.0 -#> 1237 0 0 0 NA -#> 1238 1 0 1 0.0 -#> 1239 1 0 0 NA -#> 1240 0 1 2 50.0 -#> 1241 3 2 2 100.0 -#> 1242 0 1 3 33.3 -#> 1243 1 0 0 NA -#> 1244 0 0 0 NA -#> 1245 0 0 0 NA -#> 1246 0 1 2 50.0 -#> 1247 0 0 1 0.0 -#> 1248 0 0 0 NA -#> 1249 0 0 1 0.0 -#> 1250 0 0 1 0.0 -#> 1251 0 1 4 25.0 -#> 1252 0 0 0 NA -#> 1253 0 0 0 NA -#> 1254 0 2 2 100.0 -#> 1255 0 0 1 0.0 -#> 1256 0 0 0 NA -#> 1257 0 0 3 0.0 -#> 1258 0 0 0 NA -#> 1259 0 0 0 NA -#> 1260 0 0 0 NA -#> 1261 1 0 0 NA -#> 1262 0 0 1 0.0 -#> 1263 1 0 3 0.0 -#> 1264 0 0 0 NA -#> 1265 0 0 0 NA -#> 1266 0 0 0 NA -#> 1267 0 1 2 50.0 -#> 1268 0 0 1 0.0 -#> 1269 0 0 1 0.0 -#> 1270 0 1 1 100.0 -#> 1271 0 0 0 NA -#> 1272 0 0 0 NA -#> 1273 1 1 2 50.0 -#> 1274 0 0 0 NA -#> 1275 0 0 0 NA -#> 1276 0 0 0 NA -#> 1277 0 0 1 0.0 -#> 1278 1 1 3 33.3 -#> 1279 0 0 0 NA -#> 1280 0 0 2 0.0 -#> 1281 0 0 3 0.0 -#> 1282 0 0 0 NA -#> 1283 0 1 2 50.0 -#> 1284 0 0 0 NA -#> 1285 0 0 0 NA -#> 1286 0 0 0 NA -#> 1287 0 0 0 NA -#> 1288 0 0 0 NA -#> 1289 0 0 1 0.0 -#> 1290 0 0 1 0.0 -#> 1291 0 0 2 0.0 -#> 1292 1 2 4 50.0 -#> 1293 0 0 0 NA -#> 1294 1 1 2 50.0 -#> 1295 0 1 2 50.0 -#> 1296 0 1 1 100.0 -#> 1297 0 1 1 100.0 -#> 1298 0 0 0 NA -#> 1299 0 0 1 0.0 -#> 1300 0 0 0 NA -#> 1301 0 0 0 NA -#> 1302 0 0 0 NA -#> 1303 0 0 1 0.0 -#> 1304 0 0 0 NA -#> 1305 0 1 1 100.0 -#> 1306 1 0 0 NA -#> 1307 0 0 1 0.0 -#> 1308 1 0 0 NA -#> 1309 0 2 3 66.7 -#> 1310 1 3 3 100.0 -#> 1311 0 0 0 NA -#> 1312 0 0 0 NA -#> 1313 0 0 1 0.0 -#> 1314 0 0 0 NA -#> 1315 1 0 0 NA -#> 1316 0 0 0 NA -#> 1317 0 0 0 NA -#> 1318 0 1 2 50.0 -#> 1319 0 0 0 NA -#> 1320 0 0 0 NA -#> 1321 0 0 0 NA -#> 1322 0 0 0 NA -#> 1323 1 2 2 100.0 -#> 1324 0 0 0 NA -#> 1325 0 2 2 100.0 -#> 1326 0 2 3 66.7 -#> 1327 0 0 0 NA -#> 1328 0 0 0 NA -#> 1329 0 1 2 50.0 -#> 1330 0 0 0 NA -#> 1331 0 0 1 0.0 -#> 1332 0 0 0 NA -#> 1333 0 1 2 50.0 -#> 1334 0 0 1 0.0 -#> 1335 0 2 4 50.0 -#> 1336 0 0 3 0.0 -#> 1337 0 0 0 NA -#> 1338 1 0 1 0.0 -#> 1339 0 0 1 0.0 -#> 1340 0 1 2 50.0 -#> 1341 0 0 2 0.0 -#> 1342 0 0 0 NA -#> 1343 0 0 0 NA -#> 1344 0 0 0 NA -#> 1345 0 0 0 NA -#> 1346 0 0 1 0.0 -#> 1347 0 0 0 NA -#> 1348 0 0 0 NA -#> 1349 0 1 3 33.3 -#> 1350 0 2 3 66.7 -#> 1351 0 0 1 0.0 -#> 1352 0 1 2 50.0 -#> 1353 0 0 0 NA -#> 1354 0 0 1 0.0 -#> 1355 0 0 0 NA -#> 1356 0 0 1 0.0 -#> 1357 0 0 0 NA -#> 1358 0 0 1 0.0 -#> 1359 0 0 0 NA -#> 1360 0 1 2 50.0 -#> 1361 0 1 1 100.0 -#> 1362 0 2 3 66.7 -#> 1363 0 1 4 25.0 -#> 1364 0 0 0 NA -#> 1365 0 0 0 NA -#> 1366 0 1 1 100.0 -#> 1367 0 0 1 0.0 -#> 1368 0 1 2 50.0 -#> 1369 0 0 0 NA -#> 1370 0 0 0 NA -#> 1371 0 0 0 NA -#> 1372 0 0 2 0.0 -#> 1373 1 0 1 0.0 -#> 1374 1 0 0 NA -#> 1375 0 0 0 NA -#> 1376 0 1 3 33.3 -#> 1377 0 1 1 100.0 -#> 1378 1 2 2 100.0 -#> 1379 0 1 1 100.0 -#> 1380 0 0 1 0.0 -#> 1381 0 0 1 0.0 -#> 1382 0 0 0 NA -#> 1383 0 1 2 50.0 -#> 1384 0 0 0 NA -#> 1385 0 1 1 100.0 -#> 1386 1 0 0 NA -#> 1387 0 0 0 NA -#> 1388 0 0 1 0.0 -#> 1389 0 0 3 0.0 -#> 1390 0 0 1 0.0 -#> 1391 0 0 1 0.0 -#> 1392 0 1 2 50.0 -#> 1393 0 0 0 NA -#> 1394 0 0 1 0.0 -#> 1395 0 0 0 NA -#> 1396 0 1 2 50.0 -#> 1397 0 1 1 100.0 -#> 1398 0 0 0 NA -#> 1399 1 0 0 NA -#> 1400 2 2 2 100.0 -#> 1401 0 0 1 0.0 -#> 1402 0 0 0 NA -#> 1403 0 0 3 0.0 -#> 1404 1 2 3 66.7 -#> 1405 0 0 0 NA -#> 1406 0 0 0 NA -#> 1407 0 1 1 100.0 -#> 1408 1 0 1 0.0 -#> 1409 0 0 1 0.0 -#> 1410 0 0 0 NA -#> 1411 0 0 3 0.0 -#> 1412 0 0 0 NA -#> 1413 0 0 0 NA -#> 1414 0 0 0 NA -#> 1415 0 0 0 NA -#> 1416 0 0 0 NA -#> 1417 1 0 0 NA -#> 1418 0 0 2 0.0 -#> 1419 0 0 0 NA -#> 1420 0 0 1 0.0 -#> 1421 0 1 1 100.0 -#> 1422 0 1 1 100.0 -#> 1423 0 1 1 100.0 -#> 1424 0 0 2 0.0 -#> 1425 0 0 0 NA -#> 1426 0 0 0 NA -#> 1427 0 0 1 0.0 -#> 1428 0 1 1 100.0 -#> 1429 0 0 0 NA -#> 1430 0 1 1 100.0 -#> 1431 0 0 0 NA -#> 1432 0 0 4 0.0 -#> 1433 0 0 0 NA -#> 1434 0 0 0 NA -#> 1435 0 2 2 100.0 -#> 1436 0 2 3 66.7 -#> 1437 0 0 0 NA -#> 1438 0 2 3 66.7 -#> 1439 0 0 2 0.0 -#> 1440 0 0 0 NA -#> 1441 0 0 1 0.0 -#> 1442 0 0 0 NA -#> 1443 0 0 0 NA -#> 1444 1 0 0 NA -#> 1445 0 1 5 20.0 -#> 1446 0 0 0 NA -#> 1447 0 0 7 0.0 -#> 1448 0 0 1 0.0 -#> 1449 0 0 3 0.0 -#> 1450 0 1 2 50.0 -#> 1451 0 0 1 0.0 -#> 1452 0 1 1 100.0 -#> 1453 0 1 3 33.3 -#> 1454 0 0 0 NA -#> 1455 0 1 2 50.0 -#> 1456 0 0 1 0.0 -#> 1457 0 0 0 NA -#> 1458 0 0 0 NA -#> 1459 0 2 4 50.0 -#> 1460 0 0 0 NA -#> 1461 0 0 0 NA -#> 1462 0 0 0 NA -#> 1463 0 0 0 NA -#> 1464 0 2 3 66.7 -#> 1465 0 1 2 50.0 -#> 1466 0 0 0 NA -#> 1467 0 0 0 NA -#> 1468 0 0 0 NA -#> 1469 0 0 0 NA -#> 1470 1 0 0 NA -#> 1471 0 0 0 NA -#> 1472 1 0 0 NA -#> 1473 0 0 1 0.0 -#> 1474 1 1 1 100.0 -#> 1475 0 3 6 50.0 -#> 1476 1 0 1 0.0 -#> 1477 0 1 3 33.3 -#> 1478 0 0 0 NA -#> 1479 1 1 1 100.0 -#> 1480 0 0 0 NA -#> 1481 0 1 4 25.0 -#> 1482 0 0 0 NA -#> 1483 0 0 0 NA -#> 1484 1 0 0 NA -#> 1485 0 0 0 NA -#> 1486 0 1 1 100.0 -#> 1487 0 0 2 0.0 -#> 1488 0 0 0 NA -#> 1489 0 0 1 0.0 -#> 1490 1 0 1 0.0 -#> 1491 1 1 2 50.0 -#> 1492 0 0 1 0.0 -#> 1493 0 0 1 0.0 -#> 1494 0 2 3 66.7 -#> 1495 0 0 0 NA -#> 1496 0 0 1 0.0 -#> 1497 0 0 0 NA -#> 1498 0 0 0 NA -#> 1499 0 0 1 0.0 -#> 1500 0 0 0 NA -#> 1501 0 0 0 NA -#> 1502 0 0 0 NA -#> 1503 0 0 1 0.0 -#> 1504 0 2 4 50.0 -#> 1505 2 2 4 50.0 -#> 1506 0 1 1 100.0 -#> 1507 0 0 0 NA -#> 1508 0 1 1 100.0 -#> 1509 0 0 1 0.0 -#> 1510 0 0 1 0.0 -#> 1511 0 0 2 0.0 -#> 1512 0 0 0 NA -#> 1513 0 0 0 NA -#> 1514 0 2 5 40.0 -#> 1515 0 0 0 NA -#> 1516 0 0 0 NA -#> 1517 1 0 1 0.0 -#> 1518 0 0 1 0.0 -#> 1519 0 0 1 0.0 -#> 1520 0 0 1 0.0 -#> 1521 0 0 0 NA -#> 1522 0 0 1 0.0 -#> 1523 0 0 0 NA -#> 1524 0 0 0 NA -#> 1525 0 0 0 NA -#> 1526 0 0 1 0.0 -#> 1527 1 0 0 NA -#> 1528 0 1 2 50.0 -#> 1529 0 0 2 0.0 -#> 1530 0 3 5 60.0 -#> 1531 0 0 0 NA -#> 1532 0 0 0 NA -#> 1533 0 0 0 NA -#> 1534 0 0 0 NA -#> 1535 0 2 2 100.0 -#> 1536 1 0 1 0.0 -#> 1537 0 1 1 100.0 -#> 1538 0 0 0 NA -#> 1539 0 0 2 0.0 -#> 1540 0 0 0 NA -#> 1541 0 0 0 NA -#> 1542 0 1 1 100.0 -#> 1543 0 0 0 NA -#> 1544 0 0 1 0.0 -#> 1545 1 0 0 NA -#> 1546 0 0 3 0.0 -#> 1547 0 0 0 NA -#> 1548 0 0 0 NA -#> 1549 0 1 2 50.0 -#> 1550 0 0 0 NA -#> 1551 0 2 3 66.7 -#> 1552 0 1 1 100.0 -#> 1553 0 0 0 NA -#> 1554 0 0 0 NA -#> 1555 0 0 0 NA -#> 1556 0 0 0 NA -#> 1557 0 0 2 0.0 -#> 1558 0 0 1 0.0 -#> 1559 0 0 0 NA -#> 1560 0 2 2 100.0 -#> 1561 0 0 1 0.0 -#> 1562 0 1 1 100.0 -#> 1563 0 1 3 33.3 -#> 1564 0 0 0 NA -#> 1565 1 0 1 0.0 -#> 1566 0 0 0 NA -#> 1567 1 1 1 100.0 -#> 1568 0 0 0 NA -#> 1569 0 0 1 0.0 -#> 1570 0 0 1 0.0 -#> 1571 0 0 1 0.0 -#> 1572 0 1 2 50.0 -#> 1573 0 0 1 0.0 -#> 1574 0 0 0 NA -#> 1575 0 0 0 NA -#> 1576 0 1 2 50.0 -#> 1577 0 0 0 NA -#> 1578 0 0 0 NA -#> 1579 0 0 0 NA -#> 1580 0 0 0 NA -#> 1581 0 0 0 NA -#> 1582 0 0 0 NA -#> 1583 0 0 1 0.0 -#> 1584 1 1 3 33.3 -#> 1585 0 0 0 NA -#> 1586 0 1 3 33.3 -#> 1587 0 0 2 0.0 -#> 1588 0 0 1 0.0 -#> 1589 0 0 1 0.0 -#> 1590 0 1 1 100.0 -#> 1591 0 0 0 NA -#> 1592 0 0 1 0.0 -#> 1593 1 3 7 42.9 -#> 1594 0 0 0 NA -#> 1595 1 0 0 NA -#> 1596 0 0 0 NA -#> 1597 2 0 0 NA -#> 1598 0 1 2 50.0 -#> 1599 0 3 4 75.0 -#> 1600 0 0 2 0.0 -#> 1601 1 0 0 NA -#> 1602 0 0 0 NA -#> 1603 2 3 5 60.0 -#> 1604 0 2 2 100.0 -#> 1605 0 0 1 0.0 -#> 1606 0 0 0 NA -#> 1607 0 0 0 NA -#> 1608 0 0 0 NA -#> 1609 0 0 0 NA -#> 1610 0 0 0 NA -#> 1611 0 0 0 NA -#> 1612 0 0 0 NA -#> 1613 0 0 1 0.0 -#> 1614 1 0 1 0.0 -#> 1615 0 1 5 20.0 -#> 1616 0 1 4 25.0 -#> 1617 0 0 0 NA -#> 1618 0 2 2 100.0 -#> 1619 0 0 0 NA -#> 1620 0 0 1 0.0 -#> 1621 0 0 0 NA -#> 1622 0 0 0 NA -#> 1623 0 0 0 NA -#> 1624 0 0 1 0.0 -#> 1625 0 0 1 0.0 -#> 1626 0 0 0 NA -#> 1627 0 0 3 0.0 -#> 1628 0 0 1 0.0 -#> 1629 0 1 1 100.0 -#> 1630 0 0 1 0.0 -#> 1631 0 0 0 NA -#> 1632 0 0 1 0.0 -#> 1633 0 0 1 0.0 -#> 1634 0 0 1 0.0 -#> 1635 0 0 1 0.0 -#> 1636 0 0 0 NA -#> 1637 0 0 0 NA -#> 1638 0 1 1 100.0 -#> 1639 0 0 0 NA -#> 1640 0 0 1 0.0 -#> 1641 0 0 0 NA -#> 1642 0 0 2 0.0 -#> 1643 0 0 0 NA -#> 1644 0 1 2 50.0 -#> 1645 0 0 0 NA -#> 1646 0 0 0 NA -#> 1647 0 2 2 100.0 -#> 1648 0 0 0 NA -#> 1649 0 0 0 NA -#> 1650 0 0 0 NA -#> 1651 0 0 1 0.0 -#> 1652 1 1 2 50.0 -#> 1653 0 1 2 50.0 -#> 1654 0 1 1 100.0 -#> 1655 0 1 2 50.0 -#> 1656 0 1 1 100.0 -#> 1657 0 1 3 33.3 -#> 1658 0 0 0 NA -#> 1659 0 1 3 33.3 -#> 1660 0 1 1 100.0 -#> 1661 0 0 0 NA -#> 1662 0 0 0 NA -#> 1663 0 0 0 NA -#> 1664 0 0 0 NA -#> 1665 1 0 0 NA -#> 1666 0 0 1 0.0 -#> 1667 0 1 1 100.0 -#> 1668 0 0 0 NA -#> 1669 1 1 4 25.0 -#> 1670 0 0 2 0.0 -#> 1671 0 1 2 50.0 -#> 1672 0 2 6 33.3 -#> 1673 0 0 0 NA -#> 1674 0 1 2 50.0 -#> 1675 0 1 1 100.0 -#> 1676 1 1 1 100.0 -#> 1677 0 0 2 0.0 -#> 1678 0 0 0 NA -#> 1679 0 0 0 NA -#> 1680 0 1 1 100.0 -#> 1681 0 0 0 NA -#> 1682 0 0 0 NA -#> 1683 0 0 0 NA -#> 1684 0 0 4 0.0 -#> 1685 0 0 1 0.0 -#> 1686 0 0 0 NA -#> 1687 0 2 2 100.0 -#> 1688 0 1 2 50.0 -#> 1689 1 0 0 NA -#> 1690 0 0 0 NA -#> 1691 0 0 0 NA -#> 1692 0 0 0 NA -#> 1693 0 0 0 NA -#> 1694 0 0 0 NA -#> 1695 1 0 0 NA -#> 1696 0 0 2 0.0 -#> 1697 0 0 0 NA -#> 1698 1 0 0 NA -#> 1699 0 0 1 0.0 -#> 1700 1 0 3 0.0 -#> 1701 0 1 4 25.0 -#> 1702 1 0 0 NA -#> 1703 0 0 1 0.0 -#> 1704 0 3 3 100.0 -#> 1705 0 0 1 0.0 -#> 1706 0 0 0 NA -#> 1707 0 0 0 NA -#> 1708 0 1 1 100.0 -#> 1709 0 0 0 NA -#> 1710 0 0 0 NA -#> 1711 0 0 0 NA -#> 1712 0 1 1 100.0 -#> 1713 1 1 2 50.0 -#> 1714 0 0 0 NA -#> 1715 1 0 0 NA -#> 1716 1 3 3 100.0 -#> 1717 0 1 1 100.0 -#> 1718 0 2 3 66.7 -#> 1719 2 0 0 NA -#> 1720 0 0 1 0.0 -#> 1721 0 0 1 0.0 -#> 1722 1 0 0 NA -#> 1723 0 0 1 0.0 -#> 1724 0 0 2 0.0 -#> 1725 1 0 3 0.0 -#> 1726 0 0 2 0.0 -#> 1727 0 0 0 NA -#> 1728 0 1 2 50.0 -#> 1729 0 1 1 100.0 -#> 1730 0 1 2 50.0 -#> 1731 0 0 0 NA -#> 1732 0 0 1 0.0 -#> 1733 0 1 1 100.0 -#> 1734 0 0 0 NA -#> 1735 1 0 0 NA -#> 1736 0 0 1 0.0 -#> 1737 2 0 1 0.0 -#> 1738 0 0 2 0.0 -#> 1739 0 0 0 NA -#> 1740 1 2 3 66.7 -#> 1741 1 0 1 0.0 -#> 1742 0 0 1 0.0 -#> 1743 0 0 1 0.0 -#> 1744 2 0 0 NA -#> 1745 0 1 1 100.0 -#> 1746 0 0 0 NA -#> 1747 1 1 1 100.0 -#> 1748 0 0 0 NA -#> 1749 0 0 2 0.0 -#> 1750 0 0 1 0.0 -#> 1751 0 0 0 NA -#> 1752 0 2 2 100.0 -#> 1753 0 0 3 0.0 -#> 1754 0 1 1 100.0 -#> 1755 0 1 2 50.0 -#> 1756 0 0 1 0.0 -#> 1757 1 0 0 NA -#> 1758 0 0 0 NA -#> 1759 0 1 1 100.0 -#> 1760 0 1 1 100.0 -#> 1761 0 0 0 NA -#> 1762 0 0 0 NA -#> 1763 0 0 0 NA -#> 1764 0 0 0 NA -#> 1765 0 0 3 0.0 -#> 1766 0 0 0 NA -#> 1767 0 0 1 0.0 -#> 1768 1 0 0 NA -#> 1769 1 2 5 40.0 -#> 1770 0 1 1 100.0 -#> 1771 0 0 0 NA -#> 1772 0 0 0 NA -#> 1773 0 0 0 NA -#> 1774 0 0 0 NA -#> 1775 2 0 0 NA -#> 1776 0 0 0 NA -#> 1777 0 0 0 NA -#> 1778 0 0 1 0.0 -#> 1779 0 0 0 NA -#> 1780 0 1 3 33.3 -#> 1781 0 2 3 66.7 -#> 1782 0 0 0 NA -#> 1783 0 1 2 50.0 -#> 1784 0 0 1 0.0 -#> 1785 0 0 1 0.0 -#> 1786 1 1 2 50.0 -#> 1787 0 0 0 NA -#> 1788 0 1 1 100.0 -#> 1789 0 3 4 75.0 -#> 1790 0 0 0 NA -#> 1791 0 0 0 NA -#> 1792 0 0 1 0.0 -#> 1793 0 0 0 NA -#> 1794 0 0 0 NA -#> 1795 0 1 2 50.0 -#> 1796 0 0 0 NA -#> 1797 0 1 1 100.0 -#> 1798 0 1 1 100.0 -#> 1799 0 4 5 80.0 -#> 1800 0 1 1 100.0 -#> 1801 0 0 1 0.0 -#> 1802 0 0 0 NA -#> 1803 0 1 1 100.0 -#> 1804 0 0 0 NA -#> 1805 0 0 0 NA -#> 1806 1 0 2 0.0 -#> 1807 0 0 0 NA -#> 1808 0 0 0 NA -#> 1809 0 1 1 100.0 -#> 1810 0 0 0 NA -#> 1811 0 0 0 NA -#> 1812 1 2 3 66.7 -#> 1813 0 0 0 NA -#> 1814 0 2 2 100.0 -#> 1815 0 0 0 NA -#> 1816 0 2 2 100.0 -#> 1817 0 1 1 100.0 -#> 1818 0 0 0 NA -#> 1819 0 0 0 NA -#> 1820 0 0 1 0.0 -#> 1821 0 0 0 NA -#> 1822 0 0 0 NA -#> 1823 1 0 0 NA -#> 1824 1 1 3 33.3 -#> 1825 1 1 3 33.3 -#> 1826 0 0 0 NA -#> 1827 0 0 0 NA -#> 1828 0 0 1 0.0 -#> 1829 0 2 2 100.0 -#> 1830 0 2 2 100.0 -#> 1831 0 0 0 NA -#> 1832 0 0 0 NA -#> 1833 0 0 3 0.0 -#> 1834 0 0 0 NA -#> 1835 0 0 0 NA -#> 1836 0 1 2 50.0 -#> 1837 0 0 0 NA -#> 1838 0 0 1 0.0 -#> 1839 0 1 1 100.0 -#> 1840 0 0 0 NA -#> 1841 0 0 3 0.0 -#> 1842 0 3 3 100.0 -#> 1843 0 0 0 NA -#> 1844 0 0 0 NA -#> 1845 0 0 0 NA -#> 1846 0 0 0 NA -#> 1847 0 0 0 NA -#> 1848 0 0 0 NA -#> 1849 1 2 3 66.7 -#> 1850 0 0 0 NA -#> 1851 0 0 1 0.0 -#> 1852 0 1 3 33.3 -#> 1853 0 0 0 NA -#> 1854 0 0 0 NA -#> 1855 0 2 2 100.0 -#> 1856 0 2 2 100.0 -#> 1857 0 0 0 NA -#> 1858 0 0 0 NA -#> 1859 0 0 0 NA -#> 1860 0 0 0 NA -#> 1861 0 0 1 0.0 -#> 1862 0 0 0 NA -#> 1863 0 0 1 0.0 -#> 1864 0 0 0 NA -#> 1865 0 0 0 NA -#> 1866 0 0 2 0.0 -#> 1867 0 0 0 NA -#> 1868 0 0 1 0.0 -#> 1869 0 0 0 NA -#> 1870 0 1 1 100.0 -#> 1871 0 1 1 100.0 -#> 1872 0 0 0 NA -#> 1873 0 1 1 100.0 -#> 1874 0 0 0 NA -#> 1875 0 0 0 NA -#> 1876 1 0 0 NA -#> 1877 0 0 0 NA -#> 1878 1 0 0 NA -#> 1879 0 0 1 0.0 -#> 1880 0 0 0 NA -#> 1881 2 1 1 100.0 -#> 1882 0 0 0 NA -#> 1883 0 0 0 NA -#> 1884 0 0 0 NA -#> 1885 0 3 5 60.0 -#> 1886 0 0 0 NA -#> 1887 0 0 1 0.0 -#> 1888 0 0 0 NA -#> 1889 0 0 0 NA -#> 1890 0 0 0 NA -#> 1891 0 0 0 NA -#> 1892 0 1 2 50.0 -#> 1893 0 0 1 0.0 -#> 1894 0 0 0 NA -#> 1895 0 0 1 0.0 -#> 1896 0 0 0 NA -#> 1897 0 2 3 66.7 -#> 1898 0 1 1 100.0 -#> 1899 0 1 1 100.0 -#> 1900 0 0 0 NA -#> 1901 0 0 0 NA -#> 1902 0 0 0 NA -#> 1903 0 0 0 NA -#> 1904 0 0 0 NA -#> 1905 1 0 1 0.0 -#> 1906 0 0 0 NA -#> 1907 1 1 1 100.0 -#> 1908 0 1 1 100.0 -#> 1909 0 0 0 NA -#> 1910 0 0 0 NA -#> 1911 0 2 3 66.7 -#> 1912 0 3 3 100.0 -#> 1913 0 0 0 NA -#> 1914 0 2 2 100.0 -#> 1915 0 0 0 NA -#> 1916 0 0 0 NA -#> 1917 0 0 0 NA -#> 1918 0 0 0 NA -#> 1919 0 0 0 NA -#> 1920 0 0 0 NA -#> 1921 0 0 0 NA -#> 1922 0 1 1 100.0 -#> 1923 0 0 0 NA -#> 1924 0 0 1 0.0 -#> 1925 0 0 0 NA -#> 1926 0 1 1 100.0 -#> 1927 0 1 1 100.0 -#> 1928 0 0 0 NA -#> 1929 0 2 2 100.0 -#> 1930 0 0 0 NA -#> 1931 0 0 2 0.0 -#> 1932 0 0 1 0.0 -#> 1933 0 0 0 NA -#> 1934 0 0 1 0.0 -#> 1935 0 0 0 NA -#> 1936 0 0 1 0.0 -#> 1937 1 0 2 0.0 -#> 1938 0 0 0 NA -#> 1939 0 0 2 0.0 -#> 1940 0 1 1 100.0 -#> 1941 0 0 0 NA -#> 1942 1 0 2 0.0 -#> 1943 1 0 0 NA -#> 1944 0 0 0 NA -#> 1945 1 0 0 NA -#> 1946 0 1 4 25.0 -#> 1947 0 0 0 NA -#> 1948 0 1 3 33.3 -#> 1949 0 0 0 NA -#> 1950 0 0 1 0.0 -#> 1951 0 0 0 NA -#> 1952 0 1 2 50.0 -#> 1953 0 3 3 100.0 -#> 1954 0 3 4 75.0 -#> 1955 0 0 1 0.0 -#> 1956 0 2 2 100.0 -#> 1957 1 1 2 50.0 -#> 1958 0 0 0 NA -#> 1959 0 0 0 NA -#> 1960 0 0 0 NA -#> 1961 0 0 0 NA -#> 1962 0 0 1 0.0 -#> 1963 1 1 2 50.0 -#> 1964 0 0 1 0.0 -#> 1965 0 1 1 100.0 -#> 1966 0 0 0 NA -#> 1967 0 0 1 0.0 -#> 1968 0 0 0 NA -#> 1969 1 0 1 0.0 -#> 1970 0 0 0 NA -#> 1971 0 1 2 50.0 -#> 1972 0 0 0 NA -#> 1973 0 0 0 NA -#> 1974 0 0 0 NA -#> 1975 0 0 2 0.0 -#> 1976 0 0 1 0.0 -#> 1977 0 0 1 0.0 -#> 1978 1 1 2 50.0 -#> 1979 0 0 0 NA -#> 1980 0 1 1 100.0 -#> 1981 0 0 0 NA -#> 1982 0 2 3 66.7 -#> 1983 0 0 0 NA -#> 1984 0 0 1 0.0 -#> 1985 0 0 0 NA -#> 1986 0 0 0 NA -#> 1987 0 0 0 NA -#> 1988 0 0 0 NA -#> 1989 1 0 1 0.0 -#> 1990 0 0 0 NA -#> 1991 0 0 0 NA -#> 1992 0 0 0 NA -#> 1993 0 0 0 NA -#> 1994 1 2 2 100.0 -#> 1995 0 0 1 0.0 -#> 1996 0 2 2 100.0 -#> 1997 0 0 1 0.0 -#> 1998 0 2 3 66.7 -#> 1999 1 2 6 33.3 -#> 2000 0 0 0 NA -#> 2001 2 0 1 0.0 -#> 2002 0 0 0 NA -#> 2003 0 0 1 0.0 -#> 2004 0 3 5 60.0 -#> 2005 0 0 3 0.0 -#> 2006 0 1 1 100.0 -#> 2007 0 2 2 100.0 -#> 2008 1 1 1 100.0 -#> 2009 0 2 2 100.0 -#> 2010 0 1 1 100.0 -#> 2011 0 2 2 100.0 -#> 2012 0 2 4 50.0 -#> 2013 0 1 1 100.0 -#> 2014 0 0 0 NA -#> 2015 0 0 0 NA -#> 2016 0 0 1 0.0 -#> 2017 0 2 2 100.0 -#> 2018 0 0 0 NA -#> 2019 0 0 0 NA -#> 2020 0 0 0 NA -#> 2021 0 0 0 NA -#> 2022 1 0 0 NA -#> 2023 0 2 2 100.0 -#> 2024 0 2 2 100.0 -#> 2025 0 0 0 NA -#> 2026 0 4 5 80.0 -#> 2027 0 2 2 100.0 -#> 2028 0 0 0 NA -#> 2029 0 0 0 NA -#> 2030 0 0 0 NA -#> 2031 0 0 0 NA -#> 2032 0 0 1 0.0 -#> 2033 0 0 0 NA -#> 2034 0 0 0 NA -#> 2035 0 0 0 NA -#> 2036 0 0 0 NA -#> 2037 0 2 3 66.7 -#> 2038 0 1 1 100.0 -#> 2039 0 1 1 100.0 -#> 2040 0 0 0 NA -#> Lost_Challenges Blocks_Blocks Sh_Blocks Pass_Blocks Int Tkl+Int Clr Err -#> 1 0 0 0 0 0 1 1 0 -#> 2 0 0 0 0 1 1 0 0 -#> 3 0 0 0 0 2 2 1 0 -#> 4 1 0 0 0 0 0 0 0 -#> 5 0 1 0 1 0 0 0 0 -#> 6 1 0 0 0 0 0 0 0 -#> 7 1 0 0 0 2 4 0 0 -#> 8 1 0 0 0 0 1 0 0 -#> 9 1 1 0 1 1 1 1 0 -#> 10 0 0 0 0 2 3 2 0 -#> 11 0 0 0 0 1 3 4 0 -#> 12 0 1 0 1 4 5 2 0 -#> 13 4 1 0 1 0 4 3 0 -#> 14 0 0 0 0 0 0 0 0 -#> 15 0 0 0 0 0 1 1 0 -#> 16 2 0 0 0 0 0 0 0 -#> 17 3 0 0 0 1 9 0 0 -#> 18 0 0 0 0 0 1 0 0 -#> 19 1 1 0 1 1 2 2 0 -#> 20 0 0 0 0 0 3 2 0 -#> 21 0 0 0 0 0 0 0 0 -#> 22 1 1 0 1 0 1 1 0 -#> 23 1 1 0 1 2 4 4 0 -#> 24 3 1 0 1 3 10 4 0 -#> 25 2 1 0 1 1 3 9 0 -#> 26 2 3 2 1 2 3 6 0 -#> 27 1 0 0 0 0 0 4 0 -#> 28 0 0 0 0 0 0 0 0 -#> 29 2 0 0 0 0 0 1 0 -#> 30 0 0 0 0 0 0 1 0 -#> 31 0 0 0 0 0 0 0 0 -#> 32 0 0 0 0 0 5 1 0 -#> 33 0 0 0 0 1 6 0 0 -#> 34 1 0 0 0 0 0 1 0 -#> 35 2 3 0 3 1 2 1 0 -#> 36 5 2 0 2 1 6 0 0 -#> 37 2 0 0 0 2 4 1 0 -#> 38 0 0 0 0 0 0 0 0 -#> 39 0 0 0 0 3 4 4 0 -#> 40 1 1 0 1 1 6 5 0 -#> 41 0 1 0 1 0 1 1 0 -#> 42 0 0 0 0 0 0 0 0 -#> 43 1 0 0 0 0 0 0 0 -#> 44 0 0 0 0 0 0 1 0 -#> 45 2 0 0 0 1 1 1 0 -#> 46 1 0 0 0 1 5 1 0 -#> 47 2 0 0 0 0 1 3 0 -#> 48 4 4 1 3 0 2 2 0 -#> 49 0 0 0 0 1 3 1 0 -#> 50 4 2 2 0 3 5 2 0 -#> 51 0 0 0 0 0 0 0 0 -#> 52 1 0 0 0 0 0 1 0 -#> 53 1 1 1 0 1 1 13 0 -#> 54 0 0 0 0 0 2 6 0 -#> 55 1 0 0 0 3 4 3 0 -#> 56 0 0 0 0 0 0 1 0 -#> 57 0 0 0 0 0 1 3 0 -#> 58 0 0 0 0 0 0 0 0 -#> 59 2 1 0 1 0 1 0 0 -#> 60 0 0 0 0 0 0 0 0 -#> 61 1 2 1 1 0 3 1 0 -#> 62 0 0 0 0 0 0 0 0 -#> 63 1 0 0 0 0 0 1 0 -#> 64 1 0 0 0 1 1 1 0 -#> 65 1 1 0 1 2 3 1 0 -#> 66 1 4 2 2 1 3 1 0 -#> 67 0 4 2 2 5 5 3 0 -#> 68 0 0 0 0 3 4 1 0 -#> 69 0 1 0 1 4 4 7 0 -#> 70 0 0 0 0 0 0 0 0 -#> 71 0 0 0 0 0 0 0 0 -#> 72 0 0 0 0 0 1 0 0 -#> 73 2 1 0 1 0 3 2 0 -#> 74 0 0 0 0 0 0 0 0 -#> 75 2 2 0 2 0 1 0 0 -#> 76 0 0 0 0 0 2 1 0 -#> 77 1 1 1 0 0 1 1 0 -#> 78 0 1 1 0 2 6 3 0 -#> 79 3 0 0 0 3 7 0 0 -#> 80 0 0 0 0 2 3 4 0 -#> 81 0 0 0 0 3 4 3 0 -#> 82 0 0 0 0 0 2 3 0 -#> 83 2 1 0 1 3 8 3 0 -#> 84 0 0 0 0 0 0 0 0 -#> 85 0 0 0 0 0 0 0 0 -#> 86 0 0 0 0 0 0 0 0 -#> 87 2 3 0 3 0 1 0 0 -#> 88 0 0 0 0 0 0 0 0 -#> 89 0 2 1 1 1 3 0 0 -#> 90 1 0 0 0 0 1 0 0 -#> 91 0 1 0 1 0 3 0 0 -#> 92 3 1 0 1 0 0 0 0 -#> 93 0 0 0 0 0 0 0 0 -#> 94 1 1 0 1 2 4 2 0 -#> 95 0 0 0 0 0 1 4 1 -#> 96 0 1 0 1 0 0 5 1 -#> 97 0 2 0 2 2 6 2 0 -#> 98 0 0 0 0 0 0 0 0 -#> 99 1 0 0 0 0 0 1 0 -#> 100 1 0 0 0 0 0 0 0 -#> 101 0 0 0 0 0 0 2 0 -#> 102 1 2 0 2 1 2 0 0 -#> 103 0 0 0 0 2 2 1 0 -#> 104 2 2 0 2 6 8 2 0 -#> 105 1 5 4 1 0 2 2 0 -#> 106 1 0 0 0 1 4 0 0 -#> 107 0 0 0 0 0 0 2 0 -#> 108 2 0 0 0 3 4 1 0 -#> 109 0 3 2 1 2 2 4 0 -#> 110 0 0 0 0 1 2 2 0 -#> 111 1 0 0 0 3 3 3 0 -#> 112 0 0 0 0 0 1 1 0 -#> 113 0 1 0 1 0 0 0 0 -#> 114 0 0 0 0 0 0 1 0 -#> 115 1 0 0 0 0 0 0 0 -#> 116 0 0 0 0 0 0 0 0 -#> 117 0 0 0 0 2 2 0 0 -#> 118 0 1 1 0 0 1 0 0 -#> 119 0 0 0 0 0 1 0 0 -#> 120 0 0 0 0 1 4 0 0 -#> 121 2 0 0 0 1 1 0 0 -#> 122 0 0 0 0 0 0 0 0 -#> 123 0 0 0 0 0 1 2 1 -#> 124 1 0 0 0 1 1 0 0 -#> 125 0 0 0 0 1 2 0 0 -#> 126 0 0 0 0 0 0 0 0 -#> 127 0 0 0 0 0 0 0 0 -#> 128 0 0 0 0 0 0 0 1 -#> 129 3 0 0 0 0 2 0 0 -#> 130 0 0 0 0 0 0 1 0 -#> 131 0 2 0 2 1 3 1 0 -#> 132 1 3 0 3 1 7 5 0 -#> 133 2 0 0 0 2 4 0 0 -#> 134 1 0 0 0 0 0 1 0 -#> 135 1 3 1 2 2 6 1 0 -#> 136 1 0 0 0 2 2 7 0 -#> 137 2 2 1 1 2 4 5 0 -#> 138 1 2 1 1 3 5 7 0 -#> 139 1 1 1 0 2 4 7 0 -#> 140 0 0 0 0 0 0 0 0 -#> 141 0 0 0 0 0 0 0 0 -#> 142 0 0 0 0 0 1 0 0 -#> 143 0 0 0 0 0 0 0 0 -#> 144 0 1 0 1 0 0 0 0 -#> 145 0 0 0 0 0 2 0 0 -#> 146 3 0 0 0 1 6 0 0 -#> 147 1 1 0 1 0 1 0 0 -#> 148 1 1 0 1 0 0 0 0 -#> 149 1 0 0 0 0 0 1 0 -#> 150 2 0 0 0 2 5 1 0 -#> 151 0 0 0 0 0 0 0 0 -#> 152 1 2 1 1 1 5 2 0 -#> 153 1 1 0 1 2 4 1 0 -#> 154 0 0 0 0 0 0 0 1 -#> 155 0 1 0 1 0 1 1 0 -#> 156 0 1 0 1 0 0 2 0 -#> 157 0 0 0 0 0 0 2 0 -#> 158 0 1 0 1 0 2 3 0 -#> 159 3 0 0 0 0 0 0 0 -#> 160 1 2 2 0 3 6 4 0 -#> 161 0 0 0 0 0 0 0 0 -#> 162 1 0 0 0 0 0 1 0 -#> 163 0 1 0 1 0 3 1 0 -#> 164 1 1 0 1 6 12 6 0 -#> 165 0 2 1 1 1 2 10 0 -#> 166 0 1 1 0 2 3 12 0 -#> 167 0 0 0 0 4 7 10 0 -#> 168 0 0 0 0 0 0 0 0 -#> 169 0 1 0 1 0 2 0 0 -#> 170 1 3 0 3 0 1 2 0 -#> 171 0 0 0 0 0 1 0 0 -#> 172 0 0 0 0 0 0 0 0 -#> 173 1 1 0 1 1 1 0 0 -#> 174 0 0 0 0 0 0 0 0 -#> 175 1 0 0 0 1 3 2 0 -#> 176 2 2 1 1 1 1 3 0 -#> 177 1 1 1 0 0 1 3 0 -#> 178 2 0 0 0 2 2 5 0 -#> 179 0 1 1 0 2 7 8 0 -#> 180 2 2 0 2 1 2 4 0 -#> 181 0 0 0 0 0 0 0 0 -#> 182 0 1 0 1 0 0 1 0 -#> 183 1 0 0 0 0 1 1 0 -#> 184 0 1 0 1 0 1 0 0 -#> 185 0 0 0 0 0 0 0 0 -#> 186 4 0 0 0 2 3 0 0 -#> 187 0 0 0 0 1 3 0 0 -#> 188 1 1 0 1 1 3 1 0 -#> 189 1 1 0 1 0 2 2 0 -#> 190 0 0 0 0 0 0 2 0 -#> 191 0 3 2 1 0 1 0 0 -#> 192 0 1 0 1 0 3 4 0 -#> 193 0 2 1 1 0 0 4 0 -#> 194 0 3 3 0 1 3 3 0 -#> 195 0 0 0 0 0 0 1 0 -#> 196 0 0 0 0 0 2 1 0 -#> 197 1 0 0 0 0 1 0 0 -#> 198 1 2 0 2 0 1 0 0 -#> 199 0 0 0 0 0 0 1 0 -#> 200 2 1 0 1 0 3 0 0 -#> 201 0 0 0 0 0 1 2 0 -#> 202 1 0 0 0 2 4 1 0 -#> 203 0 1 0 1 0 1 0 0 -#> 204 0 1 1 0 0 1 1 0 -#> 205 2 1 0 1 0 3 0 0 -#> 206 0 2 1 1 1 2 1 0 -#> 207 0 0 0 0 4 6 3 0 -#> 208 0 0 0 0 3 5 0 0 -#> 209 0 0 0 0 0 0 0 0 -#> 210 0 0 0 0 0 0 0 0 -#> 211 0 0 0 0 0 0 0 0 -#> 212 2 1 0 1 0 0 1 0 -#> 213 1 0 0 0 1 1 1 0 -#> 214 1 0 0 0 0 2 1 0 -#> 215 2 1 0 1 0 4 1 0 -#> 216 0 1 0 1 2 2 1 0 -#> 217 3 1 0 1 0 0 0 0 -#> 218 2 2 1 1 0 4 0 0 -#> 219 1 0 0 0 1 2 1 0 -#> 220 0 0 0 0 1 1 4 0 -#> 221 0 3 1 2 1 5 2 1 -#> 222 4 2 0 2 3 7 2 0 -#> 223 0 0 0 0 0 0 0 1 -#> 224 0 2 0 2 0 0 2 0 -#> 225 0 0 0 0 0 0 0 0 -#> 226 1 0 0 0 1 2 2 0 -#> 227 1 1 0 1 1 2 0 0 -#> 228 0 1 1 0 3 6 1 0 -#> 229 4 0 0 0 2 5 0 0 -#> 230 1 0 0 0 0 4 0 0 -#> 231 0 0 0 0 0 0 0 0 -#> 232 1 1 0 1 3 6 3 0 -#> 233 0 1 0 1 1 1 10 0 -#> 234 1 0 0 0 0 1 6 0 -#> 235 0 2 2 0 1 1 4 0 -#> 236 2 0 0 0 0 1 2 0 -#> 237 0 0 0 0 0 0 1 0 -#> 238 0 0 0 0 1 2 0 0 -#> 239 0 0 0 0 0 0 0 0 -#> 240 0 0 0 0 0 0 1 0 -#> 241 0 0 0 0 1 5 0 0 -#> 242 0 0 0 0 0 2 0 0 -#> 243 0 1 0 1 1 2 2 0 -#> 244 2 2 1 1 1 2 0 0 -#> 245 2 0 0 0 0 1 1 0 -#> 246 0 0 0 0 0 0 0 0 -#> 247 3 0 0 0 0 7 0 0 -#> 248 0 0 0 0 2 8 4 1 -#> 249 0 0 0 0 1 2 6 0 -#> 250 0 0 0 0 1 3 2 0 -#> 251 0 0 0 0 0 0 1 0 -#> 252 0 0 0 0 0 0 0 0 -#> 253 0 0 0 0 0 0 0 0 -#> 254 1 0 0 0 0 0 1 0 -#> 255 1 1 0 1 1 3 1 0 -#> 256 1 1 1 0 0 1 0 0 -#> 257 3 0 0 0 1 3 1 0 -#> 258 2 1 0 1 0 1 0 0 -#> 259 0 0 0 0 0 0 1 0 -#> 260 1 1 0 1 1 2 1 0 -#> 261 1 1 1 0 1 3 5 0 -#> 262 0 0 0 0 2 2 3 0 -#> 263 0 1 0 1 1 2 3 0 -#> 264 0 0 0 0 0 0 0 0 -#> 265 0 0 0 0 0 0 0 0 -#> 266 0 2 1 1 0 1 3 0 -#> 267 0 0 0 0 0 0 0 0 -#> 268 0 0 0 0 1 2 1 0 -#> 269 0 0 0 0 1 3 0 0 -#> 270 0 1 0 1 1 3 2 0 -#> 271 2 0 0 0 1 3 3 0 -#> 272 1 0 0 0 2 4 1 0 -#> 273 2 0 0 0 1 1 0 0 -#> 274 1 1 0 1 0 2 0 0 -#> 275 0 3 1 2 0 0 4 0 -#> 276 0 0 0 0 0 0 7 0 -#> 277 0 2 1 1 0 1 6 0 -#> 278 1 0 0 0 2 3 2 0 -#> 279 0 0 0 0 0 0 0 0 -#> 280 1 0 0 0 0 0 2 0 -#> 281 0 0 0 0 0 0 1 0 -#> 282 0 2 0 2 0 1 1 0 -#> 283 0 0 0 0 0 0 2 0 -#> 284 0 0 0 0 1 3 0 0 -#> 285 2 5 0 5 2 5 2 0 -#> 286 1 2 0 2 3 4 2 0 -#> 287 1 1 0 1 0 0 1 0 -#> 288 2 2 0 2 0 1 0 0 -#> 289 1 1 1 0 4 4 4 0 -#> 290 0 1 0 1 2 2 16 0 -#> 291 1 0 0 0 1 1 9 1 -#> 292 0 2 0 2 2 3 1 0 -#> 293 0 0 0 0 0 0 2 0 -#> 294 0 0 0 0 0 0 0 0 -#> 295 1 0 0 0 0 1 0 0 -#> 296 0 0 0 0 0 1 1 0 -#> 297 2 0 0 0 0 1 0 0 -#> 298 0 0 0 0 0 1 0 0 -#> 299 0 0 0 0 2 3 0 0 -#> 300 0 1 0 1 3 7 0 0 -#> 301 0 3 0 3 1 3 0 0 -#> 302 0 0 0 0 1 1 0 0 -#> 303 2 0 0 0 0 2 3 0 -#> 304 0 1 0 1 1 3 3 0 -#> 305 0 1 0 1 2 2 2 0 -#> 306 1 4 0 4 1 3 2 0 -#> 307 0 0 0 0 0 0 1 0 -#> 308 1 0 0 0 0 0 0 0 -#> 309 0 1 0 1 1 2 0 0 -#> 310 1 1 0 1 0 0 0 0 -#> 311 1 0 0 0 0 1 0 0 -#> 312 0 1 0 1 1 2 1 0 -#> 313 2 0 0 0 1 3 0 0 -#> 314 0 1 0 1 2 2 0 0 -#> 315 1 1 0 1 0 0 0 0 -#> 316 1 0 0 0 1 3 2 0 -#> 317 0 0 0 0 2 2 1 0 -#> 318 0 1 0 1 0 1 0 0 -#> 319 0 0 0 0 0 0 0 0 -#> 320 1 0 0 0 1 3 0 0 -#> 321 0 0 0 0 0 0 0 0 -#> 322 0 0 0 0 0 1 1 0 -#> 323 2 1 0 1 0 2 3 0 -#> 324 0 0 0 0 3 3 3 0 -#> 325 1 1 0 1 0 0 1 0 -#> 326 0 1 0 1 1 4 6 0 -#> 327 1 4 2 2 1 4 6 0 -#> 328 0 1 0 1 1 1 1 0 -#> 329 1 0 0 0 0 0 0 0 -#> 330 1 1 1 0 2 6 2 0 -#> 331 0 2 1 1 2 2 4 0 -#> 332 0 0 0 0 0 1 0 0 -#> 333 0 1 0 1 1 2 12 0 -#> 334 1 0 0 0 3 4 4 0 -#> 335 0 0 0 0 0 0 1 0 -#> 336 0 0 0 0 0 0 1 0 -#> 337 0 0 0 0 0 0 0 0 -#> 338 0 1 1 0 0 1 0 0 -#> 339 0 1 0 1 0 0 0 0 -#> 340 1 1 0 1 0 2 0 0 -#> 341 0 0 0 0 0 0 0 0 -#> 342 3 1 1 0 1 2 1 0 -#> 343 1 3 0 3 0 4 1 0 -#> 344 1 0 0 0 0 0 2 0 -#> 345 1 2 1 1 0 2 4 0 -#> 346 1 1 1 0 2 7 4 1 -#> 347 0 1 0 1 2 4 6 0 -#> 348 2 2 1 1 1 3 4 0 -#> 349 1 0 0 0 0 0 1 0 -#> 350 1 1 0 1 0 1 2 0 -#> 351 1 1 0 1 0 0 0 0 -#> 352 0 0 0 0 0 0 0 0 -#> 353 0 4 0 4 0 0 1 0 -#> 354 1 0 0 0 0 1 2 0 -#> 355 1 0 0 0 0 0 0 0 -#> 356 1 0 0 0 0 1 4 0 -#> 357 0 2 0 2 1 1 4 0 -#> 358 3 2 1 1 1 1 3 0 -#> 359 0 1 0 1 0 1 0 0 -#> 360 0 1 0 1 0 3 5 0 -#> 361 0 2 2 0 1 2 5 0 -#> 362 0 1 1 0 1 3 5 0 -#> 363 0 0 0 0 0 0 0 0 -#> 364 0 0 0 0 0 0 1 0 -#> 365 3 1 0 1 0 1 1 0 -#> 366 0 0 0 0 0 2 0 0 -#> 367 3 0 0 0 4 5 0 0 -#> 368 4 1 0 1 0 10 5 0 -#> 369 1 0 0 0 1 5 2 0 -#> 370 2 2 1 1 0 2 0 0 -#> 371 0 1 0 1 0 2 1 0 -#> 372 0 1 0 1 0 4 3 0 -#> 373 2 0 0 0 4 4 2 0 -#> 374 0 2 1 1 3 4 8 0 -#> 375 0 0 0 0 1 1 0 0 -#> 376 0 0 0 0 1 5 0 0 -#> 377 0 0 0 0 0 0 0 0 -#> 378 0 1 0 1 3 4 0 0 -#> 379 0 1 0 1 2 2 1 0 -#> 380 0 0 0 0 0 0 0 0 -#> 381 2 0 0 0 1 3 3 0 -#> 382 0 0 0 0 0 0 0 0 -#> 383 1 2 0 2 1 6 2 0 -#> 384 1 0 0 0 1 2 1 0 -#> 385 0 1 0 1 0 0 0 0 -#> 386 2 3 1 2 4 6 2 0 -#> 387 0 1 0 1 2 4 1 0 -#> 388 0 0 0 0 0 0 7 0 -#> 389 1 0 0 0 2 6 6 0 -#> 390 2 2 1 1 0 4 4 0 -#> 391 0 0 0 0 0 0 0 0 -#> 392 1 0 0 0 0 0 2 0 -#> 393 2 0 0 0 0 0 0 0 -#> 394 0 0 0 0 0 0 0 0 -#> 395 0 1 0 1 2 4 0 0 -#> 396 0 0 0 0 0 1 0 0 -#> 397 2 3 0 3 1 6 1 0 -#> 398 2 0 0 0 1 2 2 0 -#> 399 1 2 0 2 0 2 0 0 -#> 400 1 3 0 3 1 2 0 0 -#> 401 0 0 0 0 1 7 3 0 -#> 402 0 3 0 3 2 3 6 0 -#> 403 1 2 1 1 3 5 3 0 -#> 404 2 2 0 2 3 4 5 0 -#> 405 0 0 0 0 0 1 0 0 -#> 406 1 1 0 1 0 0 0 0 -#> 407 0 0 0 0 0 0 0 0 -#> 408 0 1 0 1 0 1 0 0 -#> 409 0 0 0 0 0 0 0 0 -#> 410 0 0 0 0 0 0 0 0 -#> 411 2 1 0 1 0 0 0 0 -#> 412 0 0 0 0 0 0 0 0 -#> 413 0 4 0 4 0 2 0 0 -#> 414 0 2 0 2 1 1 1 0 -#> 415 1 0 0 0 0 2 1 0 -#> 416 0 1 0 1 1 1 2 0 -#> 417 0 0 0 0 1 2 4 0 -#> 418 0 1 0 1 3 6 2 0 -#> 419 0 0 0 0 0 0 0 0 -#> 420 0 0 0 0 0 1 3 0 -#> 421 0 0 0 0 1 1 1 0 -#> 422 1 0 0 0 0 1 2 0 -#> 423 0 4 2 2 0 0 1 0 -#> 424 0 1 0 1 0 0 1 0 -#> 425 1 0 0 0 1 3 4 0 -#> 426 0 1 0 1 3 4 0 0 -#> 427 0 0 0 0 0 0 0 0 -#> 428 1 3 3 0 1 4 3 0 -#> 429 1 4 2 2 3 7 7 0 -#> 430 1 4 2 2 2 4 5 0 -#> 431 0 3 1 2 2 3 3 0 -#> 432 0 1 0 1 0 2 4 0 -#> 433 0 0 0 0 0 0 0 0 -#> 434 3 0 0 0 1 1 2 0 -#> 435 0 0 0 0 0 0 0 0 -#> 436 1 0 0 0 0 1 0 0 -#> 437 0 0 0 0 0 0 0 0 -#> 438 0 1 0 1 2 2 0 0 -#> 439 0 1 0 1 0 2 0 0 -#> 440 3 2 1 1 2 7 0 0 -#> 441 2 3 0 3 0 3 0 0 -#> 442 0 5 0 5 0 3 0 0 -#> 443 0 2 0 2 3 6 5 0 -#> 444 0 1 1 0 2 3 7 0 -#> 445 0 4 2 2 2 3 4 0 -#> 446 2 1 0 1 0 0 3 1 -#> 447 0 0 0 0 0 1 0 0 -#> 448 0 0 0 0 0 0 0 0 -#> 449 0 0 0 0 0 0 1 0 -#> 450 0 0 0 0 2 2 0 0 -#> 451 0 0 0 0 0 1 0 0 -#> 452 0 2 1 1 0 2 3 0 -#> 453 0 1 1 0 1 1 3 0 -#> 454 4 2 1 1 0 0 2 0 -#> 455 0 0 0 0 0 2 0 0 -#> 456 3 1 0 1 3 6 2 0 -#> 457 0 1 1 0 3 4 9 0 -#> 458 2 2 1 1 1 2 4 0 -#> 459 2 1 0 1 5 8 1 0 -#> 460 0 0 0 0 1 1 0 1 -#> 461 0 0 0 0 0 0 0 0 -#> 462 0 0 0 0 0 0 1 0 -#> 463 0 0 0 0 0 0 0 0 -#> 464 0 0 0 0 1 1 2 0 -#> 465 0 0 0 0 0 1 0 0 -#> 466 2 0 0 0 0 0 1 0 -#> 467 0 0 0 0 1 4 0 0 -#> 468 0 0 0 0 1 1 3 0 -#> 469 0 0 0 0 2 5 2 0 -#> 470 0 1 1 0 0 0 2 0 -#> 471 0 1 0 1 0 0 3 0 -#> 472 1 0 0 0 1 3 2 0 -#> 473 1 1 1 0 1 3 3 0 -#> 474 2 1 0 1 2 3 3 0 -#> 475 0 0 0 0 0 0 1 0 -#> 476 0 1 0 1 0 0 1 0 -#> 477 1 0 0 0 0 0 0 0 -#> 478 1 0 0 0 0 1 0 0 -#> 479 1 0 0 0 0 1 0 0 -#> 480 1 0 0 0 0 2 0 0 -#> 481 0 0 0 0 0 2 0 0 -#> 482 0 1 0 1 2 5 1 0 -#> 483 2 0 0 0 2 4 2 0 -#> 484 0 0 0 0 0 0 0 0 -#> 485 0 2 0 2 1 2 1 0 -#> 486 0 2 1 1 0 1 4 0 -#> 487 0 3 3 0 2 2 4 0 -#> 488 2 3 2 1 0 0 6 0 -#> 489 0 0 0 0 0 0 0 0 -#> 490 0 0 0 0 0 0 0 0 -#> 491 0 0 0 0 0 1 5 0 -#> 492 0 2 2 0 0 2 2 0 -#> 493 1 1 0 1 2 3 0 0 -#> 494 0 0 0 0 0 0 1 0 -#> 495 2 2 0 2 1 4 0 0 -#> 496 0 0 0 0 0 2 0 0 -#> 497 0 0 0 0 0 0 0 0 -#> 498 2 1 0 1 2 9 2 0 -#> 499 1 1 0 1 1 3 8 0 -#> 500 0 4 2 2 3 4 9 0 -#> 501 0 3 3 0 1 2 8 0 -#> 502 1 2 0 2 1 2 5 0 -#> 503 0 0 0 0 0 0 1 0 -#> 504 0 1 0 1 0 0 0 0 -#> 505 3 1 0 1 1 1 0 0 -#> 506 0 1 0 1 0 2 0 0 -#> 507 0 0 0 0 0 0 0 0 -#> 508 0 0 0 0 0 6 0 0 -#> 509 2 0 0 0 0 0 0 0 -#> 510 0 0 0 0 1 1 0 0 -#> 511 1 1 1 0 0 5 0 0 -#> 512 2 3 0 3 0 1 0 0 -#> 513 0 1 0 1 1 2 0 0 -#> 514 0 2 2 0 1 2 3 0 -#> 515 1 3 2 1 0 3 2 0 -#> 516 0 0 0 0 0 1 2 0 -#> 517 0 0 0 0 0 0 3 0 -#> 518 0 0 0 0 0 1 2 0 -#> 519 0 0 0 0 0 0 0 0 -#> 520 0 1 0 1 0 0 0 0 -#> 521 0 0 0 0 0 2 0 0 -#> 522 0 0 0 0 0 0 0 0 -#> 523 1 2 0 2 0 0 0 0 -#> 524 2 0 0 0 1 4 9 0 -#> 525 1 1 0 1 1 2 2 0 -#> 526 0 1 0 1 1 2 0 0 -#> 527 2 1 0 1 1 3 3 0 -#> 528 0 3 2 1 1 3 12 0 -#> 529 0 0 0 0 5 10 4 0 -#> 530 1 2 1 1 1 7 5 0 -#> 531 0 0 0 0 0 0 1 0 -#> 532 0 0 0 0 0 0 0 0 -#> 533 0 1 0 1 0 0 0 0 -#> 534 0 0 0 0 1 2 0 0 -#> 535 1 1 0 1 0 1 0 0 -#> 536 3 2 0 2 1 5 3 0 -#> 537 3 0 0 0 3 5 0 0 -#> 538 0 0 0 0 1 1 0 0 -#> 539 0 2 0 2 3 7 2 0 -#> 540 1 1 0 1 0 1 2 0 -#> 541 0 0 0 0 2 4 2 0 -#> 542 0 1 0 1 5 6 6 0 -#> 543 0 0 0 0 0 2 2 0 -#> 544 0 0 0 0 0 1 0 0 -#> 545 0 0 0 0 0 0 1 0 -#> 546 1 1 0 1 0 0 1 0 -#> 547 1 1 0 1 0 0 0 0 -#> 548 0 0 0 0 2 4 0 0 -#> 549 0 0 0 0 1 1 1 0 -#> 550 0 0 0 0 0 0 0 0 -#> 551 3 1 0 1 0 0 2 0 -#> 552 1 1 1 0 0 2 3 0 -#> 553 1 0 0 0 2 3 1 0 -#> 554 0 0 0 0 0 0 0 0 -#> 555 0 2 0 2 2 5 2 0 -#> 556 1 1 1 0 2 3 4 0 -#> 557 0 3 2 1 0 0 5 0 -#> 558 0 1 0 1 3 6 0 0 -#> 559 0 0 0 0 0 0 0 0 -#> 560 0 0 0 0 0 0 5 0 -#> 561 0 0 0 0 0 0 0 0 -#> 562 0 1 0 1 0 0 2 0 -#> 563 0 0 0 0 0 0 0 0 -#> 564 0 0 0 0 0 2 2 0 -#> 565 0 0 0 0 1 3 0 0 -#> 566 0 0 0 0 2 5 1 0 -#> 567 1 2 1 1 1 1 1 0 -#> 568 0 0 0 0 1 2 1 0 -#> 569 0 2 0 2 2 3 3 0 -#> 570 0 0 0 0 3 4 2 0 -#> 571 0 1 0 1 3 3 5 0 -#> 572 2 0 0 0 1 6 0 0 -#> 573 0 0 0 0 0 0 3 0 -#> 574 0 1 0 1 0 2 0 0 -#> 575 0 1 0 1 0 0 0 0 -#> 576 1 2 0 2 0 4 2 0 -#> 577 0 0 0 0 0 1 0 0 -#> 578 3 1 0 1 0 4 2 0 -#> 579 1 0 0 0 1 2 1 0 -#> 580 0 0 0 0 0 2 0 0 -#> 581 3 2 1 1 1 2 1 0 -#> 582 0 0 0 0 1 4 5 0 -#> 583 1 1 1 0 3 5 5 0 -#> 584 0 3 2 1 0 1 10 0 -#> 585 0 0 0 0 2 4 2 0 -#> 586 0 2 1 1 4 6 3 0 -#> 587 0 0 0 0 0 0 0 0 -#> 588 1 0 0 0 0 0 0 0 -#> 589 0 0 0 0 0 0 0 0 -#> 590 0 0 0 0 0 0 0 0 -#> 591 0 0 0 0 1 3 1 0 -#> 592 2 0 0 0 1 4 0 0 -#> 593 2 0 0 0 1 4 0 0 -#> 594 0 0 0 0 0 0 0 0 -#> 595 1 0 0 0 2 5 0 0 -#> 596 0 0 0 0 0 0 0 0 -#> 597 1 2 0 2 0 1 0 0 -#> 598 0 2 0 2 2 4 0 0 -#> 599 0 1 1 0 1 2 6 0 -#> 600 0 3 2 1 3 7 0 0 -#> 601 0 0 0 0 0 0 1 0 -#> 602 0 1 0 1 0 1 1 0 -#> 603 0 0 0 0 2 2 0 0 -#> 604 0 0 0 0 0 0 0 0 -#> 605 1 0 0 0 0 0 0 0 -#> 606 1 0 0 0 0 0 1 0 -#> 607 0 0 0 0 0 1 3 0 -#> 608 0 0 0 0 1 1 0 0 -#> 609 2 4 1 3 4 6 1 0 -#> 610 0 0 0 0 3 9 1 0 -#> 611 1 0 0 0 2 3 1 0 -#> 612 0 2 1 1 0 0 6 0 -#> 613 0 1 1 0 2 3 8 0 -#> 614 0 1 1 0 1 2 6 0 -#> 615 0 0 0 0 0 0 1 0 -#> 616 0 0 0 0 0 0 0 0 -#> 617 1 0 0 0 0 0 0 0 -#> 618 1 1 0 1 0 1 0 0 -#> 619 1 2 1 1 0 1 0 0 -#> 620 2 1 0 1 2 5 1 0 -#> 621 0 1 1 0 0 3 2 0 -#> 622 1 0 0 0 0 0 0 0 -#> 623 1 1 0 1 0 0 0 0 -#> 624 1 0 0 0 2 2 4 0 -#> 625 0 1 0 1 0 0 2 0 -#> 626 0 1 0 1 0 0 0 0 -#> 627 1 0 0 0 2 3 4 0 -#> 628 3 2 0 2 0 2 3 0 -#> 629 0 0 0 0 0 0 1 0 -#> 630 0 0 0 0 0 0 3 0 -#> 631 1 1 0 1 1 1 0 0 -#> 632 0 1 0 1 0 0 0 0 -#> 633 0 0 0 0 0 1 0 0 -#> 634 0 4 0 4 0 1 0 0 -#> 635 1 1 0 1 2 4 4 0 -#> 636 0 1 0 1 2 6 4 0 -#> 637 0 0 0 0 0 0 0 0 -#> 638 0 0 0 0 0 2 0 0 -#> 639 0 0 0 0 3 8 2 0 -#> 640 0 1 1 0 3 4 3 0 -#> 641 0 0 0 0 2 3 10 0 -#> 642 0 3 1 2 4 6 4 0 -#> 643 0 0 0 0 0 0 1 0 -#> 644 0 0 0 0 0 0 4 0 -#> 645 0 0 0 0 0 0 1 0 -#> 646 0 0 0 0 1 1 2 0 -#> 647 0 1 0 1 0 0 0 0 -#> 648 1 0 0 0 0 0 0 0 -#> 649 0 0 0 0 1 2 3 0 -#> 650 1 0 0 0 0 1 1 0 -#> 651 0 1 1 0 0 0 1 1 -#> 652 0 0 0 0 0 1 0 0 -#> 653 1 2 2 0 0 1 3 0 -#> 654 0 2 2 0 2 3 9 0 -#> 655 0 1 0 1 4 7 9 0 -#> 656 0 2 1 1 2 2 2 0 -#> 657 0 0 0 0 0 0 1 0 -#> 658 3 0 0 0 0 0 2 0 -#> 659 1 0 0 0 0 0 0 0 -#> 660 2 0 0 0 0 2 1 0 -#> 661 1 0 0 0 1 3 1 0 -#> 662 0 0 0 0 1 3 0 0 -#> 663 2 1 1 0 0 2 1 0 -#> 664 2 0 0 0 0 0 0 0 -#> 665 0 0 0 0 0 0 0 0 -#> 666 2 2 0 2 1 7 2 0 -#> 667 0 0 0 0 1 3 0 1 -#> 668 0 1 0 1 0 1 3 0 -#> 669 0 0 0 0 1 1 1 0 -#> 670 0 0 0 0 0 0 1 0 -#> 671 0 0 0 0 0 0 0 0 -#> 672 0 0 0 0 0 0 0 0 -#> 673 0 1 1 0 0 0 0 0 -#> 674 0 0 0 0 0 1 0 0 -#> 675 0 0 0 0 0 0 2 0 -#> 676 0 0 0 0 1 3 0 0 -#> 677 0 0 0 0 0 1 0 0 -#> 678 0 1 1 0 1 4 0 0 -#> 679 1 0 0 0 0 0 1 0 -#> 680 0 0 0 0 1 1 0 0 -#> 681 1 0 0 0 1 4 0 0 -#> 682 0 0 0 0 1 3 2 0 -#> 683 0 0 0 0 0 2 1 0 -#> 684 0 0 0 0 2 4 1 0 -#> 685 0 0 0 0 0 0 0 0 -#> 686 0 0 0 0 0 1 1 0 -#> 687 2 3 0 3 0 2 1 0 -#> 688 1 0 0 0 1 1 0 0 -#> 689 0 0 0 0 0 1 0 0 -#> 690 0 0 0 0 1 1 0 0 -#> 691 2 0 0 0 1 2 2 0 -#> 692 4 3 1 2 3 3 1 0 -#> 693 1 0 0 0 0 0 0 0 -#> 694 0 1 0 1 0 1 2 0 -#> 695 1 1 0 1 0 2 6 0 -#> 696 1 0 0 0 2 3 2 0 -#> 697 1 2 2 0 3 4 7 0 -#> 698 0 1 0 1 0 1 2 0 -#> 699 0 0 0 0 0 0 0 0 -#> 700 0 0 0 0 0 2 0 0 -#> 701 0 0 0 0 0 0 0 0 -#> 702 0 0 0 0 0 0 0 0 -#> 703 3 3 0 3 2 4 2 0 -#> 704 0 0 0 0 1 2 0 0 -#> 705 2 0 0 0 1 3 1 0 -#> 706 0 0 0 0 0 0 1 0 -#> 707 0 1 0 1 2 3 0 0 -#> 708 0 2 2 0 1 3 2 0 -#> 709 0 0 0 0 2 4 3 0 -#> 710 0 2 0 2 1 2 5 0 -#> 711 0 1 1 0 2 4 6 0 -#> 712 0 1 0 1 2 4 4 0 -#> 713 0 0 0 0 0 0 1 0 -#> 714 1 0 0 0 0 0 1 0 -#> 715 0 0 0 0 0 0 0 0 -#> 716 0 0 0 0 0 0 0 0 -#> 717 0 3 0 3 0 1 1 0 -#> 718 0 1 0 1 2 2 1 0 -#> 719 1 0 0 0 4 4 1 0 -#> 720 2 2 0 2 0 1 0 0 -#> 721 1 1 0 1 1 4 3 0 -#> 722 0 0 0 0 0 0 0 0 -#> 723 1 2 0 2 0 2 4 0 -#> 724 2 0 0 0 2 5 11 0 -#> 725 0 3 3 0 1 2 5 0 -#> 726 0 1 0 1 1 5 1 0 -#> 727 0 0 0 0 1 1 0 1 -#> 728 0 3 0 3 0 0 2 0 -#> 729 1 2 1 1 0 0 3 0 -#> 730 0 0 0 0 0 1 2 0 -#> 731 2 0 0 0 0 0 2 0 -#> 732 0 0 0 0 0 1 0 0 -#> 733 2 1 0 1 0 1 4 0 -#> 734 1 6 0 6 0 4 2 0 -#> 735 2 1 0 1 0 0 0 0 -#> 736 0 0 0 0 0 0 0 0 -#> 737 0 0 0 0 3 7 7 0 -#> 738 0 1 1 0 3 5 6 0 -#> 739 0 0 0 0 0 2 7 0 -#> 740 0 0 0 0 1 1 5 0 -#> 741 0 0 0 0 0 0 2 0 -#> 742 0 0 0 0 0 0 0 0 -#> 743 1 0 0 0 1 1 0 0 -#> 744 0 1 0 1 0 0 0 0 -#> 745 1 0 0 0 1 3 0 0 -#> 746 1 0 0 0 0 1 1 1 -#> 747 0 0 0 0 0 0 0 0 -#> 748 0 1 0 1 0 0 0 0 -#> 749 0 0 0 0 0 0 0 0 -#> 750 2 2 0 2 2 5 2 0 -#> 751 2 0 0 0 0 4 2 0 -#> 752 1 0 0 0 2 2 2 0 -#> 753 1 1 0 1 2 2 2 0 -#> 754 0 0 0 0 1 1 0 0 -#> 755 0 0 0 0 0 0 0 0 -#> 756 0 0 0 0 1 2 2 0 -#> 757 0 0 0 0 0 1 0 0 -#> 758 0 0 0 0 0 1 0 0 -#> 759 0 0 0 0 1 2 0 0 -#> 760 1 0 0 0 2 4 0 0 -#> 761 0 0 0 0 0 1 0 0 -#> 762 0 1 1 0 1 6 0 0 -#> 763 0 0 0 0 0 1 0 0 -#> 764 1 1 0 1 0 1 1 0 -#> 765 0 0 0 0 3 3 3 0 -#> 766 0 0 0 0 0 2 2 0 -#> 767 0 2 0 2 2 2 2 0 -#> 768 0 1 0 1 1 1 0 0 -#> 769 0 0 0 0 0 0 0 0 -#> 770 0 0 0 0 0 0 0 0 -#> 771 0 0 0 0 0 0 0 0 -#> 772 1 0 0 0 1 1 1 0 -#> 773 0 0 0 0 0 1 0 0 -#> 774 1 0 0 0 1 1 1 0 -#> 775 3 1 0 1 1 5 1 0 -#> 776 2 1 1 0 0 2 1 0 -#> 777 0 1 1 0 2 3 0 0 -#> 778 0 2 0 2 1 3 0 0 -#> 779 2 1 0 1 2 3 5 0 -#> 780 1 1 1 0 2 2 5 0 -#> 781 1 1 0 1 0 3 6 0 -#> 782 2 3 1 2 3 5 3 0 -#> 783 0 0 0 0 0 0 0 0 -#> 784 2 0 0 0 0 0 2 0 -#> 785 0 1 0 1 0 0 1 0 -#> 786 3 0 0 0 0 0 0 0 -#> 787 0 2 0 2 0 2 1 0 -#> 788 0 0 0 0 0 2 1 0 -#> 789 0 0 0 0 0 0 0 0 -#> 790 1 1 0 1 1 1 1 0 -#> 791 0 2 0 2 0 1 2 0 -#> 792 1 1 0 1 0 3 1 0 -#> 793 0 1 0 1 1 3 7 0 -#> 794 0 2 1 1 2 6 2 0 -#> 795 0 0 0 0 1 1 3 0 -#> 796 0 0 0 0 0 0 0 0 -#> 797 0 0 0 0 0 0 1 0 -#> 798 0 0 0 0 1 1 1 0 -#> 799 0 0 0 0 1 3 0 0 -#> 800 0 0 0 0 0 1 1 0 -#> 801 1 1 0 1 1 1 0 0 -#> 802 2 0 0 0 1 4 0 0 -#> 803 5 1 0 1 0 1 0 0 -#> 804 0 2 1 1 1 3 0 0 -#> 805 0 0 0 0 0 0 0 0 -#> 806 0 0 0 0 0 1 0 0 -#> 807 1 1 1 0 1 5 2 0 -#> 808 0 2 2 0 0 1 6 0 -#> 809 0 0 0 0 0 1 0 0 -#> 810 1 0 0 0 0 3 1 0 -#> 811 0 0 0 0 0 0 1 0 -#> 812 0 0 0 0 0 0 1 0 -#> 813 0 0 0 0 0 0 1 0 -#> 814 1 1 0 1 0 2 1 0 -#> 815 1 1 1 0 1 2 1 0 -#> 816 1 0 0 0 0 1 0 0 -#> 817 3 2 1 1 0 1 1 0 -#> 818 0 0 0 0 1 4 1 0 -#> 819 1 1 0 1 0 1 0 0 -#> 820 0 1 0 1 0 0 0 0 -#> 821 0 0 0 0 1 1 0 0 -#> 822 0 2 2 0 4 6 3 0 -#> 823 0 6 5 1 0 0 3 0 -#> 824 0 1 1 0 2 6 3 0 -#> 825 0 0 0 0 0 0 0 0 -#> 826 1 1 0 1 1 1 2 0 -#> 827 0 0 0 0 0 0 0 0 -#> 828 1 1 0 1 1 1 1 0 -#> 829 2 0 0 0 1 2 0 0 -#> 830 1 0 0 0 1 2 0 0 -#> 831 1 0 0 0 0 0 0 0 -#> 832 2 1 0 1 2 4 2 0 -#> 833 1 0 0 0 0 1 0 0 -#> 834 0 0 0 0 1 3 3 0 -#> 835 0 2 1 1 3 5 3 0 -#> 836 0 1 0 1 2 5 6 0 -#> 837 0 1 1 0 2 4 14 0 -#> 838 0 1 0 1 0 2 2 0 -#> 839 0 0 0 0 0 0 1 0 -#> 840 0 0 0 0 1 1 0 0 -#> 841 0 1 0 1 0 1 0 0 -#> 842 0 0 0 0 0 0 0 0 -#> 843 0 1 0 1 2 2 2 0 -#> 844 0 1 0 1 2 3 0 0 -#> 845 0 1 0 1 0 0 0 0 -#> 846 0 0 0 0 1 6 2 0 -#> 847 0 0 0 0 0 0 0 0 -#> 848 0 2 2 0 2 2 1 0 -#> 849 0 0 0 0 1 3 7 0 -#> 850 1 1 1 0 6 7 4 0 -#> 851 1 2 0 2 1 1 1 0 -#> 852 0 0 0 0 0 0 1 0 -#> 853 0 0 0 0 0 0 2 0 -#> 854 0 0 0 0 0 0 2 0 -#> 855 2 1 0 1 2 4 0 0 -#> 856 0 0 0 0 1 4 3 0 -#> 857 3 0 0 0 0 3 1 0 -#> 858 1 0 0 0 0 0 2 0 -#> 859 2 0 0 0 4 7 5 0 -#> 860 2 1 0 1 0 5 0 0 -#> 861 0 0 0 0 0 0 1 0 -#> 862 0 4 0 4 1 6 10 1 -#> 863 1 4 4 0 1 3 8 0 -#> 864 1 3 0 3 0 1 14 0 -#> 865 0 2 0 2 3 5 5 0 -#> 866 0 0 0 0 1 1 0 0 -#> 867 0 0 0 0 5 6 0 0 -#> 868 1 0 0 0 1 4 0 0 -#> 869 1 1 0 1 3 5 0 0 -#> 870 0 2 0 2 0 0 0 0 -#> 871 3 1 0 1 3 5 1 1 -#> 872 0 0 0 0 0 0 0 0 -#> 873 3 2 0 2 4 8 1 0 -#> 874 0 0 0 0 0 1 0 0 -#> 875 0 3 0 3 3 5 0 0 -#> 876 0 2 0 2 1 3 3 1 -#> 877 1 0 0 0 3 4 2 0 -#> 878 0 1 1 0 1 3 5 0 -#> 879 3 0 0 0 1 3 5 0 -#> 880 0 0 0 0 0 0 0 2 -#> 881 0 0 0 0 0 1 0 0 -#> 882 0 2 0 2 1 4 0 0 -#> 883 0 0 0 0 0 1 1 0 -#> 884 0 0 0 0 0 1 0 0 -#> 885 0 0 0 0 1 3 0 0 -#> 886 0 0 0 0 1 2 0 0 -#> 887 1 1 1 0 3 3 0 0 -#> 888 0 0 0 0 0 0 0 0 -#> 889 1 0 0 0 4 5 2 0 -#> 890 1 0 0 0 3 5 1 0 -#> 891 0 0 0 0 0 4 3 0 -#> 892 0 1 0 1 0 1 0 0 -#> 893 0 1 0 1 1 1 0 0 -#> 894 0 0 0 0 0 0 0 0 -#> 895 0 0 0 0 0 1 1 0 -#> 896 1 1 1 0 0 0 0 0 -#> 897 1 1 0 1 1 2 1 0 -#> 898 0 0 0 0 0 0 0 0 -#> 899 0 0 0 0 0 0 0 0 -#> 900 1 0 0 0 0 0 0 0 -#> 901 2 0 0 0 1 3 1 0 -#> 902 1 0 0 0 0 2 0 0 -#> 903 1 0 0 0 0 1 0 0 -#> 904 1 0 0 0 1 4 1 0 -#> 905 0 1 0 1 1 1 0 0 -#> 906 1 0 0 0 2 2 3 0 -#> 907 0 2 1 1 5 5 0 0 -#> 908 1 0 0 0 0 0 1 0 -#> 909 1 0 0 0 1 1 0 0 -#> 910 1 0 0 0 0 0 0 0 -#> 911 0 1 0 1 1 3 0 0 -#> 912 1 0 0 0 0 1 4 0 -#> 913 0 0 0 0 0 0 0 0 -#> 914 1 0 0 0 0 2 0 0 -#> 915 1 1 0 1 1 2 0 0 -#> 916 1 0 0 0 0 1 1 0 -#> 917 0 0 0 0 0 2 8 0 -#> 918 0 0 0 0 2 5 4 0 -#> 919 1 2 1 1 5 7 4 0 -#> 920 2 2 1 1 2 4 5 0 -#> 921 1 1 1 0 0 1 3 0 -#> 922 0 0 0 0 0 0 0 0 -#> 923 0 0 0 0 0 0 1 0 -#> 924 0 0 0 0 0 0 1 0 -#> 925 2 0 0 0 0 3 1 0 -#> 926 0 2 1 1 2 3 1 0 -#> 927 2 0 0 0 0 1 0 0 -#> 928 1 2 0 2 2 3 0 0 -#> 929 1 0 0 0 2 4 0 0 -#> 930 1 0 0 0 0 0 0 0 -#> 931 1 0 0 0 2 3 3 0 -#> 932 0 2 0 2 1 4 3 0 -#> 933 1 0 0 0 3 5 6 0 -#> 934 0 2 0 2 3 4 5 0 -#> 935 1 1 0 1 3 4 4 0 -#> 936 0 0 0 0 0 0 0 1 -#> 937 1 0 0 0 0 1 1 0 -#> 938 2 0 0 0 0 0 0 0 -#> 939 1 2 0 2 1 1 0 0 -#> 940 1 0 0 0 0 1 0 0 -#> 941 0 0 0 0 0 1 0 0 -#> 942 2 1 0 1 0 1 2 0 -#> 943 0 2 0 2 0 0 0 0 -#> 944 1 1 0 1 0 2 0 0 -#> 945 0 1 1 0 0 1 0 0 -#> 946 0 0 0 0 1 1 0 0 -#> 947 1 0 0 0 3 5 2 0 -#> 948 0 1 0 1 1 4 3 0 -#> 949 3 0 0 0 0 0 0 0 -#> 950 0 0 0 0 0 0 2 0 -#> 951 0 1 0 1 1 3 1 0 -#> 952 2 0 0 0 1 3 0 0 -#> 953 0 0 0 0 0 0 0 0 -#> 954 0 0 0 0 0 0 0 0 -#> 955 0 0 0 0 0 0 0 0 -#> 956 0 0 0 0 0 2 0 0 -#> 957 1 0 0 0 2 4 1 0 -#> 958 2 0 0 0 1 3 1 0 -#> 959 0 1 1 0 1 2 3 0 -#> 960 0 2 0 2 3 3 2 0 -#> 961 1 0 0 0 1 1 2 0 -#> 962 1 0 0 0 0 3 0 0 -#> 963 0 0 0 0 0 0 0 0 -#> 964 0 0 0 0 0 0 0 0 -#> 965 2 0 0 0 0 0 0 0 -#> 966 0 0 0 0 0 1 1 0 -#> 967 0 0 0 0 0 0 0 0 -#> 968 2 1 0 1 0 0 1 0 -#> 969 1 1 1 0 0 1 3 0 -#> 970 0 0 0 0 0 0 0 0 -#> 971 0 1 1 0 0 0 2 0 -#> 972 3 0 0 0 1 3 0 0 -#> 973 0 0 0 0 0 0 0 0 -#> 974 1 1 0 1 0 0 5 0 -#> 975 0 0 0 0 2 2 3 0 -#> 976 0 0 0 0 3 5 8 0 -#> 977 1 2 1 1 1 2 4 0 -#> 978 0 0 0 0 0 0 1 0 -#> 979 0 1 0 1 0 0 2 0 -#> 980 0 0 0 0 0 0 0 0 -#> 981 0 1 0 1 1 2 0 0 -#> 982 0 3 0 3 1 2 0 0 -#> 983 1 1 0 1 0 1 1 0 -#> 984 1 2 0 2 0 4 0 0 -#> 985 1 4 3 1 1 4 2 0 -#> 986 0 1 0 1 0 0 1 0 -#> 987 1 0 0 0 0 1 0 0 -#> 988 0 0 0 0 3 5 3 0 -#> 989 0 0 0 0 2 2 1 0 -#> 990 1 0 0 0 0 1 2 0 -#> 991 2 1 0 1 1 3 0 0 -#> 992 0 0 0 0 0 0 0 0 -#> 993 0 0 0 0 0 0 0 0 -#> 994 0 0 0 0 0 1 0 0 -#> 995 0 0 0 0 0 0 1 0 -#> 996 3 1 0 1 2 2 0 0 -#> 997 0 0 0 0 0 0 0 0 -#> 998 3 1 0 1 1 7 1 0 -#> 999 0 1 0 1 2 3 1 1 -#> 1000 2 0 0 0 0 0 1 0 -#> 1001 0 1 0 1 1 1 3 0 -#> 1002 0 1 1 0 1 1 3 0 -#> 1003 0 0 0 0 2 2 1 0 -#> 1004 0 1 0 1 6 7 4 0 -#> 1005 1 3 1 2 0 0 1 0 -#> 1006 0 0 0 0 0 0 1 0 -#> 1007 0 0 0 0 0 0 1 0 -#> 1008 0 1 1 0 0 0 0 0 -#> 1009 0 0 0 0 0 0 0 0 -#> 1010 0 0 0 0 1 1 0 0 -#> 1011 0 0 0 0 0 0 0 0 -#> 1012 0 0 0 0 0 1 0 0 -#> 1013 0 2 0 2 0 0 0 0 -#> 1014 0 0 0 0 1 4 0 0 -#> 1015 1 0 0 0 0 0 2 0 -#> 1016 1 1 0 1 1 4 1 0 -#> 1017 0 1 1 0 4 5 8 0 -#> 1018 1 0 0 0 3 3 8 0 -#> 1019 0 1 0 1 1 2 1 0 -#> 1020 0 0 0 0 0 0 0 0 -#> 1021 1 1 1 0 0 1 1 0 -#> 1022 0 0 0 0 0 0 0 0 -#> 1023 0 0 0 0 0 1 0 0 -#> 1024 1 1 0 1 0 0 0 0 -#> 1025 1 1 0 1 1 1 0 0 -#> 1026 2 0 0 0 4 6 2 0 -#> 1027 0 3 2 1 0 0 1 0 -#> 1028 1 0 0 0 0 4 1 0 -#> 1029 2 0 0 0 1 2 0 0 -#> 1030 1 0 0 0 0 1 5 0 -#> 1031 0 1 1 0 0 1 11 0 -#> 1032 0 0 0 0 4 5 10 0 -#> 1033 3 0 0 0 0 6 1 0 -#> 1034 0 0 0 0 0 0 0 0 -#> 1035 0 1 0 1 0 0 1 0 -#> 1036 0 1 0 1 0 2 0 0 -#> 1037 0 0 0 0 2 5 0 0 -#> 1038 1 1 0 1 0 1 0 0 -#> 1039 1 3 0 3 1 2 0 0 -#> 1040 0 1 0 1 0 0 0 0 -#> 1041 1 1 0 1 0 8 1 0 -#> 1042 0 0 0 0 1 1 0 0 -#> 1043 0 0 0 0 1 2 0 0 -#> 1044 1 1 0 1 0 1 0 0 -#> 1045 0 1 0 1 0 2 0 1 -#> 1046 0 0 0 0 1 5 3 0 -#> 1047 1 1 1 0 2 3 3 0 -#> 1048 0 0 0 0 0 0 0 0 -#> 1049 0 0 0 0 0 0 0 0 -#> 1050 0 0 0 0 1 1 0 0 -#> 1051 1 0 0 0 0 0 2 0 -#> 1052 3 2 0 2 4 5 1 0 -#> 1053 0 0 0 0 0 0 2 0 -#> 1054 2 0 0 0 2 4 0 0 -#> 1055 0 2 0 2 1 2 0 0 -#> 1056 0 3 2 1 1 3 2 0 -#> 1057 0 0 0 0 0 2 2 0 -#> 1058 1 3 0 3 2 4 4 0 -#> 1059 0 2 1 1 3 4 15 0 -#> 1060 1 2 1 1 0 4 16 0 -#> 1061 2 4 1 3 1 1 3 0 -#> 1062 0 0 0 0 0 0 1 0 -#> 1063 1 0 0 0 0 3 0 0 -#> 1064 0 1 0 1 0 2 0 0 -#> 1065 2 0 0 0 0 1 0 0 -#> 1066 0 1 0 1 0 0 0 0 -#> 1067 0 0 0 0 0 0 0 0 -#> 1068 5 3 2 1 2 5 1 0 -#> 1069 4 2 1 1 3 12 1 0 -#> 1070 0 0 0 0 1 1 4 0 -#> 1071 0 0 0 0 0 1 0 0 -#> 1072 2 0 0 0 2 5 0 0 -#> 1073 1 2 2 0 0 0 6 0 -#> 1074 0 3 3 0 0 0 6 1 -#> 1075 0 0 0 0 2 4 5 0 -#> 1076 0 0 0 0 0 0 0 1 -#> 1077 0 0 0 0 0 0 0 0 -#> 1078 0 1 0 1 1 1 1 0 -#> 1079 0 0 0 0 0 0 0 0 -#> 1080 1 1 0 1 0 0 0 0 -#> 1081 1 0 0 0 0 1 1 0 -#> 1082 1 1 0 1 1 4 0 0 -#> 1083 0 0 0 0 0 0 0 0 -#> 1084 1 0 0 0 0 0 1 0 -#> 1085 1 0 0 0 0 0 0 0 -#> 1086 0 0 0 0 1 2 2 0 -#> 1087 0 0 0 0 2 3 5 0 -#> 1088 0 0 0 0 2 2 4 0 -#> 1089 3 0 0 0 1 4 0 1 -#> 1090 0 0 0 0 0 0 0 0 -#> 1091 1 1 0 1 0 0 0 0 -#> 1092 1 3 1 2 1 1 1 0 -#> 1093 0 2 0 2 1 4 0 0 -#> 1094 1 1 0 1 0 0 0 0 -#> 1095 0 0 0 0 0 0 0 0 -#> 1096 6 2 0 2 0 3 2 0 -#> 1097 0 1 1 0 3 5 2 0 -#> 1098 1 0 0 0 2 4 1 0 -#> 1099 1 0 0 0 0 1 0 0 -#> 1100 0 1 0 1 0 3 5 0 -#> 1101 0 0 0 0 0 1 5 0 -#> 1102 0 0 0 0 0 0 0 0 -#> 1103 0 1 0 1 2 4 1 0 -#> 1104 0 0 0 0 0 0 2 0 -#> 1105 1 2 0 2 0 0 1 0 -#> 1106 0 0 0 0 0 0 3 0 -#> 1107 0 2 0 2 1 2 3 0 -#> 1108 0 2 0 2 0 2 1 0 -#> 1109 0 0 0 0 0 0 0 0 -#> 1110 0 0 0 0 1 3 0 0 -#> 1111 0 0 0 0 0 0 1 0 -#> 1112 0 1 0 1 3 8 2 0 -#> 1113 3 1 0 1 1 3 2 0 -#> 1114 1 1 0 1 1 6 2 0 -#> 1115 0 1 0 1 1 3 2 0 -#> 1116 0 0 0 0 0 0 7 0 -#> 1117 1 1 0 1 0 3 3 0 -#> 1118 0 0 0 0 0 0 2 1 -#> 1119 0 1 0 1 0 0 1 0 -#> 1120 1 0 0 0 0 1 1 0 -#> 1121 0 1 0 1 1 2 0 0 -#> 1122 0 1 1 0 0 2 0 0 -#> 1123 0 1 1 0 0 1 0 0 -#> 1124 0 0 0 0 0 0 0 0 -#> 1125 0 1 0 1 1 2 1 0 -#> 1126 1 3 0 3 1 2 5 0 -#> 1127 0 0 0 0 1 1 0 0 -#> 1128 0 0 0 0 0 0 3 0 -#> 1129 1 1 0 1 4 6 4 0 -#> 1130 0 0 0 0 0 1 0 0 -#> 1131 1 1 0 1 0 3 2 0 -#> 1132 0 0 0 0 0 0 0 0 -#> 1133 1 0 0 0 1 1 1 0 -#> 1134 0 0 0 0 0 0 0 0 -#> 1135 2 2 0 2 0 0 3 0 -#> 1136 1 1 0 1 0 0 0 0 -#> 1137 0 0 0 0 0 0 0 0 -#> 1138 3 1 0 1 2 5 0 0 -#> 1139 1 0 0 0 0 5 1 0 -#> 1140 0 0 0 0 1 4 1 0 -#> 1141 1 0 0 0 1 2 1 0 -#> 1142 0 0 0 0 0 0 2 0 -#> 1143 0 1 1 0 0 2 3 0 -#> 1144 1 1 1 0 1 2 6 0 -#> 1145 2 0 0 0 3 6 6 0 -#> 1146 0 0 0 0 0 0 0 0 -#> 1147 0 1 0 1 0 1 1 0 -#> 1148 0 1 0 1 0 0 0 0 -#> 1149 0 0 0 0 0 1 0 0 -#> 1150 0 0 0 0 0 0 0 0 -#> 1151 1 0 0 0 2 2 5 0 -#> 1152 1 1 0 1 1 4 0 0 -#> 1153 2 2 0 2 0 0 0 0 -#> 1154 0 0 0 0 0 0 0 0 -#> 1155 0 0 0 0 1 5 2 0 -#> 1156 0 0 0 0 0 0 0 0 -#> 1157 0 1 0 1 0 0 2 0 -#> 1158 1 0 0 0 0 2 4 0 -#> 1159 0 0 0 0 0 1 3 0 -#> 1160 0 0 0 0 0 0 0 0 -#> 1161 0 0 0 0 0 0 2 0 -#> 1162 1 0 0 0 0 1 0 0 -#> 1163 0 0 0 0 0 0 1 0 -#> 1164 3 0 0 0 0 3 1 0 -#> 1165 0 0 0 0 0 0 0 0 -#> 1166 2 1 0 1 4 6 0 0 -#> 1167 2 1 1 0 1 5 1 0 -#> 1168 0 0 0 0 0 0 3 0 -#> 1169 0 1 0 1 0 0 0 0 -#> 1170 1 0 0 0 0 3 6 0 -#> 1171 1 1 1 0 1 1 8 0 -#> 1172 0 2 0 2 3 7 5 0 -#> 1173 0 0 0 0 1 2 4 0 -#> 1174 0 0 0 0 1 1 1 0 -#> 1175 1 0 0 0 0 0 0 0 -#> 1176 0 2 0 2 0 1 1 0 -#> 1177 2 2 0 2 2 2 1 0 -#> 1178 2 0 0 0 0 0 0 0 -#> 1179 0 0 0 0 2 2 1 0 -#> 1180 1 3 2 1 1 6 5 0 -#> 1181 2 2 0 2 2 2 1 0 -#> 1182 0 0 0 0 1 2 0 0 -#> 1183 0 0 0 0 0 2 3 1 -#> 1184 0 0 0 0 0 1 2 0 -#> 1185 0 2 2 0 1 1 4 0 -#> 1186 0 1 1 0 3 4 7 0 -#> 1187 0 3 1 2 1 6 5 0 -#> 1188 0 0 0 0 0 0 0 0 -#> 1189 0 1 0 1 0 0 0 0 -#> 1190 0 1 1 0 0 3 0 0 -#> 1191 1 2 0 2 1 6 1 0 -#> 1192 0 1 0 1 0 3 1 0 -#> 1193 4 0 0 0 0 2 0 0 -#> 1194 0 2 0 2 0 1 0 0 -#> 1195 0 0 0 0 2 4 1 0 -#> 1196 0 1 0 1 0 0 0 0 -#> 1197 0 1 1 0 3 6 1 0 -#> 1198 0 2 1 1 0 2 3 0 -#> 1199 0 1 0 1 1 4 5 0 -#> 1200 3 1 1 0 1 1 1 0 -#> 1201 0 0 0 0 0 0 0 0 -#> 1202 0 0 0 0 0 0 0 0 -#> 1203 0 1 0 1 0 0 0 0 -#> 1204 0 0 0 0 0 1 0 0 -#> 1205 0 0 0 0 2 5 0 0 -#> 1206 1 2 0 2 2 4 0 0 -#> 1207 0 0 0 0 0 0 0 0 -#> 1208 0 1 0 1 1 1 0 0 -#> 1209 3 2 0 2 0 0 1 0 -#> 1210 0 1 0 1 1 6 1 0 -#> 1211 1 0 0 0 0 4 0 0 -#> 1212 1 0 0 0 2 3 2 0 -#> 1213 1 0 0 0 3 3 4 0 -#> 1214 1 0 0 0 3 4 6 0 -#> 1215 3 1 0 1 1 2 3 0 -#> 1216 0 0 0 0 1 1 1 0 -#> 1217 0 0 0 0 0 0 0 0 -#> 1218 1 1 0 1 0 0 0 0 -#> 1219 1 0 0 0 2 4 1 1 -#> 1220 1 2 0 2 3 4 0 0 -#> 1221 1 0 0 0 0 3 1 0 -#> 1222 0 0 0 0 0 0 0 0 -#> 1223 2 2 0 2 1 3 2 0 -#> 1224 0 0 0 0 0 0 0 0 -#> 1225 0 1 0 1 3 8 3 0 -#> 1226 0 0 0 0 0 0 1 0 -#> 1227 0 4 3 1 2 2 4 0 -#> 1228 0 1 1 0 1 2 11 0 -#> 1229 1 0 0 0 1 4 3 0 -#> 1230 0 0 0 0 0 0 0 0 -#> 1231 0 1 0 1 0 0 0 0 -#> 1232 0 0 0 0 0 1 0 0 -#> 1233 0 1 0 1 1 1 0 0 -#> 1234 2 0 0 0 1 2 0 0 -#> 1235 0 0 0 0 1 1 0 0 -#> 1236 1 1 0 1 0 1 0 0 -#> 1237 0 2 0 2 1 2 0 0 -#> 1238 1 1 1 0 3 7 1 0 -#> 1239 0 1 0 1 2 3 0 0 -#> 1240 1 2 0 2 1 3 0 0 -#> 1241 0 2 1 1 4 9 3 1 -#> 1242 2 2 1 1 0 2 3 0 -#> 1243 0 1 0 1 1 3 0 0 -#> 1244 0 0 0 0 0 0 0 0 -#> 1245 0 0 0 0 1 1 2 0 -#> 1246 1 0 0 0 0 1 0 0 -#> 1247 1 0 0 0 0 0 0 0 -#> 1248 0 1 1 0 0 2 2 0 -#> 1249 1 1 1 0 1 3 1 0 -#> 1250 1 1 0 1 1 2 0 0 -#> 1251 3 1 0 1 1 3 0 0 -#> 1252 0 0 0 0 0 0 0 0 -#> 1253 0 1 1 0 2 2 2 0 -#> 1254 0 1 0 1 1 4 6 0 -#> 1255 1 2 2 0 0 0 9 0 -#> 1256 0 0 0 0 1 3 8 0 -#> 1257 3 1 0 1 3 7 3 0 -#> 1258 0 0 0 0 0 0 0 0 -#> 1259 0 1 0 1 0 0 0 0 -#> 1260 0 0 0 0 0 0 0 0 -#> 1261 0 0 0 0 0 1 0 0 -#> 1262 1 1 0 1 1 2 1 0 -#> 1263 3 1 1 0 1 3 0 0 -#> 1264 0 0 0 0 0 0 0 0 -#> 1265 0 1 1 0 1 2 0 1 -#> 1266 0 0 0 0 1 1 0 0 -#> 1267 1 1 0 1 0 2 1 0 -#> 1268 1 0 0 0 0 0 3 0 -#> 1269 1 2 2 0 2 2 3 0 -#> 1270 0 2 2 0 5 7 0 0 -#> 1271 0 0 0 0 3 3 0 0 -#> 1272 0 0 0 0 0 0 1 1 -#> 1273 1 0 0 0 0 2 3 0 -#> 1274 0 0 0 0 0 0 0 0 -#> 1275 0 0 0 0 0 0 0 0 -#> 1276 0 0 0 0 1 2 1 0 -#> 1277 1 0 0 0 0 0 0 0 -#> 1278 2 0 0 0 1 5 0 0 -#> 1279 0 0 0 0 0 0 0 0 -#> 1280 2 3 0 3 1 1 1 0 -#> 1281 3 1 0 1 2 3 5 0 -#> 1282 0 0 0 0 0 0 3 0 -#> 1283 1 2 1 1 2 3 4 0 -#> 1284 0 2 2 0 1 1 7 0 -#> 1285 0 1 1 0 1 3 1 0 -#> 1286 0 0 0 0 0 0 1 0 -#> 1287 0 0 0 0 0 1 0 0 -#> 1288 0 0 0 0 0 0 0 0 -#> 1289 1 1 0 1 1 1 3 0 -#> 1290 1 1 0 1 0 2 2 0 -#> 1291 2 0 0 0 1 3 2 1 -#> 1292 2 2 1 1 0 4 0 0 -#> 1293 0 0 0 0 0 0 0 0 -#> 1294 1 0 0 0 0 2 0 0 -#> 1295 1 3 1 2 2 3 4 0 -#> 1296 0 0 0 0 0 1 0 0 -#> 1297 0 1 1 0 3 6 4 0 -#> 1298 0 1 1 0 3 4 7 0 -#> 1299 1 1 0 1 1 2 3 0 -#> 1300 0 0 0 0 0 0 1 0 -#> 1301 0 0 0 0 0 0 0 0 -#> 1302 0 0 0 0 0 2 1 0 -#> 1303 1 0 0 0 0 0 2 0 -#> 1304 0 3 1 2 0 0 2 0 -#> 1305 0 1 0 1 0 3 3 0 -#> 1306 0 1 0 1 2 3 1 0 -#> 1307 1 2 1 1 0 1 2 0 -#> 1308 0 0 0 0 0 2 0 0 -#> 1309 1 0 0 0 0 3 0 0 -#> 1310 0 0 0 0 1 8 2 0 -#> 1311 0 3 2 1 1 1 6 0 -#> 1312 0 3 2 1 2 2 10 0 -#> 1313 1 2 1 1 1 1 6 0 -#> 1314 0 0 0 0 0 0 0 0 -#> 1315 0 0 0 0 0 1 1 0 -#> 1316 0 0 0 0 1 1 0 0 -#> 1317 0 0 0 0 0 0 0 0 -#> 1318 1 0 0 0 0 1 1 0 -#> 1319 0 1 0 1 0 1 0 0 -#> 1320 0 0 0 0 0 0 0 0 -#> 1321 0 0 0 0 0 0 1 0 -#> 1322 0 2 0 2 0 0 0 0 -#> 1323 0 0 0 0 0 2 0 0 -#> 1324 0 0 0 0 0 0 0 0 -#> 1325 0 1 0 1 2 4 1 0 -#> 1326 1 2 1 1 2 4 2 0 -#> 1327 0 2 1 1 1 1 0 0 -#> 1328 0 0 0 0 0 0 0 0 -#> 1329 1 1 0 1 1 3 3 0 -#> 1330 0 0 0 0 0 0 0 0 -#> 1331 1 0 0 0 0 0 6 0 -#> 1332 0 0 0 0 0 0 0 0 -#> 1333 1 3 0 3 1 4 0 0 -#> 1334 1 0 0 0 0 0 1 0 -#> 1335 2 1 0 1 2 5 1 0 -#> 1336 3 0 0 0 0 0 0 0 -#> 1337 0 0 0 0 0 0 0 0 -#> 1338 1 3 2 1 0 1 2 0 -#> 1339 1 1 1 0 2 2 6 0 -#> 1340 1 3 3 0 6 7 10 0 -#> 1341 2 2 0 2 0 1 3 0 -#> 1342 0 0 0 0 1 1 0 0 -#> 1343 0 0 0 0 0 0 0 0 -#> 1344 0 0 0 0 1 1 0 0 -#> 1345 0 0 0 0 0 0 0 0 -#> 1346 1 0 0 0 0 0 0 0 -#> 1347 0 0 0 0 1 1 1 0 -#> 1348 0 0 0 0 1 1 0 0 -#> 1349 2 1 0 1 0 3 2 0 -#> 1350 1 0 0 0 0 2 1 0 -#> 1351 1 1 0 1 0 0 0 0 -#> 1352 1 0 0 0 0 1 1 0 -#> 1353 0 0 0 0 0 2 0 0 -#> 1354 1 2 1 1 1 1 0 2 -#> 1355 0 1 0 1 2 3 1 0 -#> 1356 1 0 0 0 0 0 0 0 -#> 1357 0 0 0 0 2 6 0 0 -#> 1358 1 0 0 0 1 2 0 0 -#> 1359 0 0 0 0 2 2 0 0 -#> 1360 1 0 0 0 1 3 0 0 -#> 1361 0 0 0 0 2 3 1 0 -#> 1362 1 1 1 0 2 5 3 0 -#> 1363 3 0 0 0 1 4 0 0 -#> 1364 0 0 0 0 0 0 0 0 -#> 1365 0 0 0 0 2 2 1 0 -#> 1366 0 0 0 0 1 4 1 0 -#> 1367 1 5 4 1 1 2 4 0 -#> 1368 1 2 2 0 1 3 5 0 -#> 1369 0 0 0 0 2 2 2 0 -#> 1370 0 0 0 0 0 0 0 0 -#> 1371 0 0 0 0 0 0 0 0 -#> 1372 2 0 0 0 0 0 0 0 -#> 1373 1 3 0 3 1 7 0 0 -#> 1374 0 1 0 1 0 1 0 0 -#> 1375 0 0 0 0 0 0 0 0 -#> 1376 2 1 0 1 3 7 0 0 -#> 1377 0 1 0 1 4 6 2 0 -#> 1378 0 0 0 0 1 3 0 0 -#> 1379 0 1 0 1 0 1 1 0 -#> 1380 1 5 0 5 2 4 10 0 -#> 1381 1 1 1 0 0 0 6 0 -#> 1382 0 0 0 0 3 4 3 0 -#> 1383 1 1 0 1 1 4 6 0 -#> 1384 0 0 0 0 0 0 0 0 -#> 1385 0 2 0 2 0 2 0 0 -#> 1386 0 0 0 0 0 1 0 0 -#> 1387 0 0 0 0 0 0 0 0 -#> 1388 1 0 0 0 1 1 0 0 -#> 1389 3 2 0 2 2 3 1 0 -#> 1390 1 1 0 1 1 3 0 0 -#> 1391 1 2 0 2 1 1 1 0 -#> 1392 1 0 0 0 0 1 3 0 -#> 1393 0 0 0 0 0 0 1 0 -#> 1394 1 0 0 0 2 2 1 0 -#> 1395 0 1 0 1 1 2 5 0 -#> 1396 1 2 1 1 2 4 1 0 -#> 1397 0 1 0 1 0 5 0 0 -#> 1398 0 0 0 0 0 0 1 0 -#> 1399 0 1 0 1 0 3 0 0 -#> 1400 0 0 0 0 0 3 2 0 -#> 1401 1 0 0 0 1 4 0 0 -#> 1402 0 1 1 0 0 1 0 0 -#> 1403 3 1 0 1 3 7 0 0 -#> 1404 1 1 0 1 1 4 0 0 -#> 1405 0 0 0 0 0 0 2 0 -#> 1406 0 1 0 1 4 4 1 0 -#> 1407 0 0 0 0 0 1 0 0 -#> 1408 1 0 0 0 1 5 3 0 -#> 1409 1 0 0 0 2 2 1 0 -#> 1410 0 1 0 1 2 4 0 0 -#> 1411 3 1 0 1 2 4 2 0 -#> 1412 0 0 0 0 0 0 0 1 -#> 1413 0 1 0 1 0 0 1 0 -#> 1414 0 0 0 0 0 0 0 0 -#> 1415 0 1 0 1 0 1 2 0 -#> 1416 0 1 0 1 0 1 1 0 -#> 1417 0 2 1 1 0 2 0 0 -#> 1418 2 0 0 0 1 2 1 0 -#> 1419 0 0 0 0 0 0 0 0 -#> 1420 1 1 0 1 2 2 2 0 -#> 1421 0 1 0 1 3 5 0 0 -#> 1422 0 0 0 0 2 3 2 0 -#> 1423 0 3 1 2 3 5 6 0 -#> 1424 2 1 0 1 1 3 6 0 -#> 1425 0 1 0 1 0 1 3 0 -#> 1426 0 0 0 0 0 0 0 0 -#> 1427 1 1 0 1 0 0 0 0 -#> 1428 0 0 0 0 0 3 0 0 -#> 1429 0 0 0 0 0 0 0 0 -#> 1430 0 0 0 0 0 1 0 0 -#> 1431 0 0 0 0 0 0 0 0 -#> 1432 4 0 0 0 1 1 1 0 -#> 1433 0 2 0 2 4 6 0 0 -#> 1434 0 2 1 1 1 1 1 0 -#> 1435 0 1 0 1 2 6 0 0 -#> 1436 1 0 0 0 0 2 6 0 -#> 1437 0 1 1 0 2 3 1 0 -#> 1438 1 0 0 0 1 3 1 0 -#> 1439 2 2 0 2 1 1 2 0 -#> 1440 0 0 0 0 0 0 1 0 -#> 1441 1 0 0 0 0 1 1 0 -#> 1442 0 0 0 0 0 0 0 0 -#> 1443 0 1 0 1 0 1 1 0 -#> 1444 0 0 0 0 1 2 0 0 -#> 1445 4 1 0 1 3 4 0 0 -#> 1446 0 3 1 2 3 5 1 0 -#> 1447 7 0 0 0 1 1 2 0 -#> 1448 1 0 0 0 1 3 0 0 -#> 1449 3 2 1 1 3 5 3 0 -#> 1450 1 1 1 0 1 2 0 0 -#> 1451 1 1 1 0 4 5 2 0 -#> 1452 0 2 2 0 0 2 5 0 -#> 1453 2 2 0 2 1 4 0 0 -#> 1454 0 0 0 0 0 0 0 0 -#> 1455 1 2 0 2 0 2 1 0 -#> 1456 1 0 0 0 0 2 0 0 -#> 1457 0 0 0 0 0 0 1 0 -#> 1458 0 0 0 0 1 1 0 0 -#> 1459 2 5 0 5 2 6 1 0 -#> 1460 0 0 0 0 0 0 1 0 -#> 1461 0 0 0 0 0 0 0 0 -#> 1462 0 0 0 0 0 1 2 0 -#> 1463 0 0 0 0 2 2 2 0 -#> 1464 1 0 0 0 2 6 5 1 -#> 1465 1 0 0 0 1 4 3 0 -#> 1466 0 0 0 0 4 5 6 0 -#> 1467 0 0 0 0 3 4 2 0 -#> 1468 0 0 0 0 0 0 0 0 -#> 1469 0 1 0 1 0 0 0 0 -#> 1470 0 0 0 0 0 1 0 0 -#> 1471 0 0 0 0 0 0 0 0 -#> 1472 0 1 0 1 0 1 0 0 -#> 1473 1 0 0 0 0 0 0 0 -#> 1474 0 0 0 0 0 2 2 0 -#> 1475 3 2 0 2 1 5 1 0 -#> 1476 1 2 0 2 0 1 0 0 -#> 1477 2 1 1 0 0 1 2 0 -#> 1478 0 0 0 0 0 1 0 0 -#> 1479 0 0 0 0 1 2 3 1 -#> 1480 0 1 1 0 2 2 11 1 -#> 1481 3 0 0 0 2 3 1 0 -#> 1482 0 0 0 0 0 0 0 0 -#> 1483 0 0 0 0 1 1 0 0 -#> 1484 0 0 0 0 0 1 0 0 -#> 1485 0 0 0 0 0 1 0 0 -#> 1486 0 2 0 2 1 2 0 0 -#> 1487 2 0 0 0 0 0 0 0 -#> 1488 0 0 0 0 4 4 2 0 -#> 1489 1 1 1 0 0 0 0 0 -#> 1490 1 2 0 2 1 2 0 0 -#> 1491 1 0 0 0 0 3 0 0 -#> 1492 1 1 1 0 2 2 4 0 -#> 1493 1 2 2 0 4 5 3 1 -#> 1494 1 1 1 0 3 5 0 0 -#> 1495 0 0 0 0 0 0 0 0 -#> 1496 1 0 0 0 0 0 0 0 -#> 1497 0 0 0 0 0 0 0 0 -#> 1498 0 0 0 0 0 0 0 0 -#> 1499 1 1 0 1 0 0 2 0 -#> 1500 0 0 0 0 0 1 0 0 -#> 1501 0 0 0 0 0 3 0 0 -#> 1502 0 1 0 1 1 1 0 0 -#> 1503 1 1 1 0 1 3 2 0 -#> 1504 2 0 0 0 1 6 0 0 -#> 1505 2 0 0 0 0 5 0 0 -#> 1506 0 0 0 0 1 4 6 0 -#> 1507 0 0 0 0 1 1 2 0 -#> 1508 0 0 0 0 0 2 9 0 -#> 1509 1 3 1 2 0 1 6 0 -#> 1510 1 0 0 0 1 1 0 0 -#> 1511 2 0 0 0 0 0 0 0 -#> 1512 0 1 1 0 0 1 0 0 -#> 1513 0 0 0 0 1 2 1 0 -#> 1514 3 1 0 1 1 4 2 0 -#> 1515 0 0 0 0 1 2 1 0 -#> 1516 0 0 0 0 0 0 1 0 -#> 1517 1 2 0 2 0 1 0 0 -#> 1518 1 2 1 1 4 4 0 0 -#> 1519 1 0 0 0 0 0 1 0 -#> 1520 1 1 0 1 2 2 2 0 -#> 1521 0 2 2 0 1 3 5 0 -#> 1522 1 2 2 0 0 0 9 0 -#> 1523 0 0 0 0 2 3 4 0 -#> 1524 0 0 0 0 0 0 0 1 -#> 1525 0 1 0 1 0 1 1 0 -#> 1526 1 0 0 0 0 0 0 0 -#> 1527 0 0 0 0 0 1 1 0 -#> 1528 1 1 1 0 0 1 2 0 -#> 1529 2 1 0 1 2 4 1 1 -#> 1530 2 3 1 2 2 5 2 0 -#> 1531 0 0 0 0 2 3 0 0 -#> 1532 0 0 0 0 0 0 0 0 -#> 1533 0 0 0 0 0 0 1 0 -#> 1534 0 0 0 0 1 1 2 0 -#> 1535 0 2 2 0 5 8 4 0 -#> 1536 1 0 0 0 0 1 5 0 -#> 1537 0 0 0 0 0 1 0 0 -#> 1538 0 0 0 0 1 1 0 0 -#> 1539 2 1 1 0 0 1 0 0 -#> 1540 0 0 0 0 0 0 0 0 -#> 1541 0 0 0 0 0 0 0 0 -#> 1542 0 1 0 1 0 1 0 0 -#> 1543 0 0 0 0 1 1 1 0 -#> 1544 1 1 0 1 2 2 1 0 -#> 1545 0 0 0 0 0 2 0 0 -#> 1546 3 2 1 1 1 3 1 0 -#> 1547 0 0 0 0 1 1 0 0 -#> 1548 0 0 0 0 1 2 1 0 -#> 1549 1 1 0 1 2 4 6 0 -#> 1550 0 1 0 1 3 3 6 0 -#> 1551 1 0 0 0 0 3 1 0 -#> 1552 0 0 0 0 0 1 0 0 -#> 1553 0 0 0 0 0 0 0 0 -#> 1554 0 1 0 1 2 2 0 0 -#> 1555 0 0 0 0 0 0 0 0 -#> 1556 0 3 0 3 2 2 1 0 -#> 1557 2 0 0 0 1 1 0 0 -#> 1558 1 0 0 0 0 1 1 0 -#> 1559 0 0 0 0 0 0 0 0 -#> 1560 0 0 0 0 1 4 2 0 -#> 1561 1 1 0 1 1 1 5 0 -#> 1562 0 3 1 2 2 3 2 0 -#> 1563 2 0 0 0 0 1 1 0 -#> 1564 0 0 0 0 1 1 0 0 -#> 1565 1 0 0 0 1 3 0 0 -#> 1566 0 0 0 0 0 0 1 0 -#> 1567 0 0 0 0 0 1 0 0 -#> 1568 0 0 0 0 0 0 0 0 -#> 1569 1 0 0 0 0 0 1 0 -#> 1570 1 1 0 1 0 0 0 0 -#> 1571 1 1 1 0 1 1 0 0 -#> 1572 1 0 0 0 0 2 1 0 -#> 1573 1 1 0 1 3 4 0 0 -#> 1574 0 2 0 2 0 0 1 0 -#> 1575 0 1 0 1 0 0 0 0 -#> 1576 1 3 0 3 3 6 4 0 -#> 1577 0 0 0 0 5 7 12 1 -#> 1578 0 0 0 0 2 2 9 0 -#> 1579 0 1 1 0 2 2 4 0 -#> 1580 0 0 0 0 0 0 1 0 -#> 1581 0 1 0 1 1 1 0 0 -#> 1582 0 0 0 0 1 1 2 0 -#> 1583 1 0 0 0 1 1 0 0 -#> 1584 2 1 0 1 0 2 1 0 -#> 1585 0 0 0 0 1 1 1 0 -#> 1586 2 5 1 4 1 3 0 0 -#> 1587 2 1 0 1 2 5 0 0 -#> 1588 1 1 0 1 0 0 1 0 -#> 1589 1 0 0 0 0 1 0 0 -#> 1590 0 1 0 1 0 2 9 0 -#> 1591 0 1 1 0 1 3 5 0 -#> 1592 1 1 1 0 1 1 6 0 -#> 1593 4 3 2 1 2 6 3 0 -#> 1594 0 0 0 0 0 0 0 0 -#> 1595 0 0 0 0 0 1 0 0 -#> 1596 0 0 0 0 0 0 1 0 -#> 1597 0 0 0 0 0 2 0 0 -#> 1598 1 0 0 0 1 4 0 0 -#> 1599 1 2 2 0 0 3 1 0 -#> 1600 2 0 0 0 0 3 1 0 -#> 1601 0 0 0 0 0 1 2 0 -#> 1602 0 0 0 0 0 0 0 0 -#> 1603 2 0 0 0 1 5 0 0 -#> 1604 0 2 2 0 5 8 4 0 -#> 1605 1 1 0 1 3 3 6 0 -#> 1606 0 0 0 0 0 1 3 0 -#> 1607 0 0 0 0 0 0 0 0 -#> 1608 0 1 0 1 0 0 0 0 -#> 1609 0 0 0 0 0 0 1 0 -#> 1610 0 0 0 0 0 0 0 0 -#> 1611 0 0 0 0 0 0 0 0 -#> 1612 0 0 0 0 1 1 0 0 -#> 1613 1 1 1 0 0 1 1 0 -#> 1614 1 1 1 0 0 3 2 0 -#> 1615 4 0 0 0 3 7 2 0 -#> 1616 3 0 0 0 2 4 1 0 -#> 1617 0 1 1 0 1 2 6 0 -#> 1618 0 2 0 2 1 3 4 0 -#> 1619 0 1 1 0 1 2 6 0 -#> 1620 1 2 0 2 3 3 5 0 -#> 1621 0 0 0 0 0 1 0 0 -#> 1622 0 0 0 0 0 0 1 0 -#> 1623 0 0 0 0 0 1 0 0 -#> 1624 1 0 0 0 1 1 1 0 -#> 1625 1 0 0 0 1 1 0 0 -#> 1626 0 0 0 0 0 0 2 0 -#> 1627 3 2 0 2 1 1 0 0 -#> 1628 1 0 0 0 1 2 0 0 -#> 1629 0 2 1 1 0 2 0 0 -#> 1630 1 2 0 2 1 2 2 0 -#> 1631 0 0 0 0 0 0 0 0 -#> 1632 1 0 0 0 2 3 5 0 -#> 1633 1 3 1 2 1 2 5 0 -#> 1634 1 0 0 0 3 3 4 0 -#> 1635 1 0 0 0 1 2 0 0 -#> 1636 0 0 0 0 0 0 0 1 -#> 1637 0 1 0 1 0 2 1 0 -#> 1638 0 0 0 0 0 2 1 0 -#> 1639 0 0 0 0 2 2 0 0 -#> 1640 1 1 0 1 0 0 0 0 -#> 1641 0 0 0 0 1 1 0 0 -#> 1642 2 3 0 3 2 2 0 0 -#> 1643 0 0 0 0 0 0 2 0 -#> 1644 1 0 0 0 0 1 0 0 -#> 1645 0 0 0 0 1 2 1 0 -#> 1646 0 0 0 0 0 2 2 0 -#> 1647 0 0 0 0 3 7 2 0 -#> 1648 0 1 0 1 1 2 5 0 -#> 1649 0 1 1 0 1 1 2 0 -#> 1650 0 0 0 0 0 0 1 0 -#> 1651 1 2 0 2 0 2 1 0 -#> 1652 1 1 0 1 0 2 2 0 -#> 1653 1 0 0 0 0 1 0 0 -#> 1654 0 1 1 0 0 2 0 0 -#> 1655 1 0 0 0 1 4 0 0 -#> 1656 0 0 0 0 0 1 0 0 -#> 1657 2 1 1 0 0 4 1 0 -#> 1658 0 0 0 0 0 0 0 0 -#> 1659 2 2 1 1 1 3 5 0 -#> 1660 0 1 0 1 0 3 7 0 -#> 1661 0 0 0 0 1 1 5 0 -#> 1662 0 1 1 0 0 0 5 0 -#> 1663 0 0 0 0 0 3 3 0 -#> 1664 0 0 0 0 0 0 0 1 -#> 1665 0 1 1 0 0 2 0 0 -#> 1666 1 0 0 0 1 2 0 0 -#> 1667 0 1 0 1 2 4 1 0 -#> 1668 0 0 0 0 0 0 0 0 -#> 1669 3 0 0 0 0 5 1 0 -#> 1670 2 2 0 2 0 1 0 0 -#> 1671 1 0 0 0 1 2 0 0 -#> 1672 4 1 0 1 1 3 1 0 -#> 1673 0 0 0 0 0 0 0 0 -#> 1674 1 1 1 0 1 5 6 0 -#> 1675 0 1 1 0 1 2 4 0 -#> 1676 0 0 0 0 3 4 5 0 -#> 1677 2 3 1 2 0 1 5 0 -#> 1678 0 0 0 0 0 0 0 1 -#> 1679 0 0 0 0 0 0 1 0 -#> 1680 0 3 0 3 0 1 0 0 -#> 1681 0 1 0 1 0 1 0 0 -#> 1682 0 1 1 0 3 4 0 0 -#> 1683 0 3 0 3 2 4 1 0 -#> 1684 4 1 0 1 1 2 1 0 -#> 1685 1 2 0 2 0 0 0 0 -#> 1686 0 1 0 1 0 0 0 0 -#> 1687 0 2 0 2 1 4 4 0 -#> 1688 1 1 0 1 2 4 2 0 -#> 1689 0 1 0 1 1 4 1 0 -#> 1690 0 1 0 1 1 1 0 0 -#> 1691 0 0 0 0 0 1 0 0 -#> 1692 0 0 0 0 0 0 0 0 -#> 1693 0 0 0 0 0 0 0 0 -#> 1694 0 0 0 0 0 0 0 0 -#> 1695 0 0 0 0 1 4 0 0 -#> 1696 2 1 0 1 2 2 0 0 -#> 1697 0 0 0 0 0 1 0 0 -#> 1698 0 0 0 0 1 3 2 0 -#> 1699 1 0 0 0 0 1 0 0 -#> 1700 3 1 0 1 2 5 2 0 -#> 1701 3 4 0 4 1 4 2 0 -#> 1702 0 1 0 1 2 4 1 0 -#> 1703 1 0 0 0 1 1 2 0 -#> 1704 0 1 1 0 2 6 4 0 -#> 1705 1 1 0 1 2 2 2 0 -#> 1706 0 0 0 0 0 0 1 0 -#> 1707 0 0 0 0 0 0 2 0 -#> 1708 0 0 0 0 1 2 0 0 -#> 1709 0 1 0 1 0 0 0 0 -#> 1710 0 0 0 0 0 0 0 0 -#> 1711 0 1 1 0 3 3 1 0 -#> 1712 0 0 0 0 1 2 0 0 -#> 1713 1 1 0 1 0 2 0 0 -#> 1714 0 3 0 3 1 3 0 0 -#> 1715 0 0 0 0 0 1 0 0 -#> 1716 0 1 0 1 2 5 0 0 -#> 1717 0 1 0 1 1 2 2 0 -#> 1718 1 1 1 0 1 3 1 0 -#> 1719 0 3 1 2 2 6 2 0 -#> 1720 1 0 0 0 0 0 0 0 -#> 1721 1 1 0 1 0 2 1 0 -#> 1722 0 0 0 0 0 1 0 0 -#> 1723 1 1 0 1 1 2 3 0 -#> 1724 2 1 0 1 1 3 2 0 -#> 1725 3 1 0 1 0 1 2 0 -#> 1726 2 3 0 3 0 0 1 0 -#> 1727 0 0 0 0 2 2 0 0 -#> 1728 1 2 1 1 2 4 3 0 -#> 1729 0 0 0 0 0 2 5 0 -#> 1730 1 1 0 1 1 2 0 0 -#> 1731 0 4 1 3 2 4 3 0 -#> 1732 1 3 1 2 0 0 7 0 -#> 1733 0 1 1 0 1 7 3 0 -#> 1734 0 0 0 0 0 0 0 0 -#> 1735 0 1 0 1 0 1 0 0 -#> 1736 1 0 0 0 0 0 0 0 -#> 1737 1 0 0 0 0 3 0 0 -#> 1738 2 0 0 0 0 0 0 0 -#> 1739 0 1 0 1 2 5 2 0 -#> 1740 1 2 0 2 1 3 0 0 -#> 1741 1 1 0 1 2 3 0 0 -#> 1742 1 1 0 1 0 0 0 0 -#> 1743 1 1 0 1 0 0 3 0 -#> 1744 0 0 0 0 2 4 0 0 -#> 1745 0 0 0 0 1 2 0 0 -#> 1746 0 0 0 0 0 0 0 0 -#> 1747 0 3 1 2 2 3 4 0 -#> 1748 0 0 0 0 0 0 0 0 -#> 1749 2 1 0 1 0 1 0 0 -#> 1750 1 0 0 0 0 0 1 0 -#> 1751 0 0 0 0 2 4 1 0 -#> 1752 0 0 0 0 0 2 0 0 -#> 1753 3 4 0 4 2 4 1 0 -#> 1754 0 1 0 1 1 5 3 0 -#> 1755 1 2 0 2 0 3 2 0 -#> 1756 1 0 0 0 0 0 1 0 -#> 1757 0 1 0 1 2 4 4 0 -#> 1758 0 1 0 1 0 0 3 0 -#> 1759 0 0 0 0 1 2 6 0 -#> 1760 0 2 2 0 0 3 10 0 -#> 1761 0 1 0 1 1 2 10 0 -#> 1762 0 0 0 0 0 0 1 0 -#> 1763 0 0 0 0 1 1 3 0 -#> 1764 0 0 0 0 0 0 0 0 -#> 1765 3 1 0 1 3 3 0 0 -#> 1766 0 0 0 0 0 0 0 0 -#> 1767 1 1 0 1 1 1 0 0 -#> 1768 0 0 0 0 1 3 0 0 -#> 1769 3 2 0 2 1 5 5 0 -#> 1770 0 1 0 1 0 1 0 0 -#> 1771 0 1 0 1 0 1 0 0 -#> 1772 0 0 0 0 1 3 2 0 -#> 1773 0 2 1 1 1 2 6 0 -#> 1774 0 0 0 0 0 1 2 0 -#> 1775 0 2 0 2 0 2 2 0 -#> 1776 0 0 0 0 0 0 0 0 -#> 1777 0 0 0 0 0 1 0 0 -#> 1778 1 2 0 2 0 0 1 0 -#> 1779 0 0 0 0 1 1 0 0 -#> 1780 2 2 0 2 1 4 2 0 -#> 1781 1 1 0 1 2 6 1 0 -#> 1782 0 0 0 0 0 0 0 0 -#> 1783 1 4 1 3 2 5 4 0 -#> 1784 1 1 0 1 0 0 0 0 -#> 1785 1 1 0 1 0 1 0 0 -#> 1786 1 0 0 0 0 2 5 0 -#> 1787 0 2 1 1 1 2 8 0 -#> 1788 0 4 1 3 2 3 9 0 -#> 1789 1 1 0 1 3 6 2 0 -#> 1790 0 0 0 0 0 0 0 0 -#> 1791 0 0 0 0 0 0 0 0 -#> 1792 1 1 0 1 0 0 2 0 -#> 1793 0 0 0 0 1 1 1 0 -#> 1794 0 1 0 1 0 1 1 0 -#> 1795 1 2 1 1 2 3 1 0 -#> 1796 0 1 1 0 0 2 0 0 -#> 1797 0 0 0 0 0 2 0 0 -#> 1798 0 0 0 0 2 3 5 0 -#> 1799 1 0 0 0 1 6 2 0 -#> 1800 0 1 1 0 3 4 6 0 -#> 1801 1 2 0 2 2 4 2 0 -#> 1802 0 0 0 0 4 5 1 0 -#> 1803 0 0 0 0 2 5 0 0 -#> 1804 0 0 0 0 0 0 0 0 -#> 1805 0 0 0 0 1 2 2 0 -#> 1806 2 0 0 0 0 1 0 0 -#> 1807 0 1 0 1 1 2 0 0 -#> 1808 0 0 0 0 0 0 0 0 -#> 1809 0 0 0 0 1 2 0 0 -#> 1810 0 0 0 0 3 5 3 0 -#> 1811 0 1 0 1 2 3 0 0 -#> 1812 1 1 0 1 1 3 1 0 -#> 1813 0 0 0 0 0 0 0 0 -#> 1814 0 1 0 1 4 9 2 0 -#> 1815 0 2 1 1 0 2 3 0 -#> 1816 0 1 0 1 2 4 9 0 -#> 1817 0 1 0 1 2 4 1 0 -#> 1818 0 0 0 0 0 0 1 0 -#> 1819 0 0 0 0 0 0 0 0 -#> 1820 1 0 0 0 0 0 1 0 -#> 1821 0 0 0 0 0 0 0 0 -#> 1822 0 0 0 0 0 0 0 0 -#> 1823 0 2 1 1 2 4 0 0 -#> 1824 2 0 0 0 0 2 0 0 -#> 1825 2 1 0 1 2 5 0 0 -#> 1826 0 1 0 1 1 1 2 0 -#> 1827 0 0 0 0 0 1 1 0 -#> 1828 1 1 1 0 3 5 1 0 -#> 1829 0 0 0 0 2 4 1 0 -#> 1830 0 1 1 0 0 2 0 0 -#> 1831 0 1 0 1 0 0 1 0 -#> 1832 0 0 0 0 0 0 0 0 -#> 1833 3 2 1 1 1 2 0 0 -#> 1834 0 2 0 2 0 0 0 0 -#> 1835 0 1 0 1 0 0 1 0 -#> 1836 1 0 0 0 1 4 1 0 -#> 1837 0 0 0 0 0 0 0 0 -#> 1838 1 1 0 1 4 7 4 0 -#> 1839 0 2 0 2 2 4 2 0 -#> 1840 0 0 0 0 0 0 1 0 -#> 1841 3 1 1 0 1 2 0 0 -#> 1842 0 1 1 0 3 10 5 0 -#> 1843 0 3 3 0 2 4 8 0 -#> 1844 0 1 1 0 1 1 4 0 -#> 1845 0 0 0 0 2 2 5 0 -#> 1846 0 0 0 0 0 0 0 0 -#> 1847 0 1 0 1 0 0 0 0 -#> 1848 0 0 0 0 0 0 2 0 -#> 1849 1 1 0 1 2 5 1 0 -#> 1850 0 0 0 0 0 0 0 0 -#> 1851 1 0 0 0 2 3 1 0 -#> 1852 2 1 0 1 0 1 3 0 -#> 1853 0 1 0 1 1 1 1 0 -#> 1854 0 3 1 2 1 1 0 0 -#> 1855 0 0 0 0 2 4 1 0 -#> 1856 0 2 1 1 1 4 1 0 -#> 1857 0 0 0 0 1 1 2 0 -#> 1858 0 1 1 0 0 1 2 0 -#> 1859 0 0 0 0 0 0 1 0 -#> 1860 0 0 0 0 0 0 0 0 -#> 1861 1 1 0 1 0 0 1 0 -#> 1862 0 0 0 0 0 0 0 0 -#> 1863 1 0 0 0 0 2 2 0 -#> 1864 0 0 0 0 0 1 0 0 -#> 1865 0 0 0 0 0 0 0 0 -#> 1866 2 1 0 1 1 1 1 0 -#> 1867 0 0 0 0 2 8 1 0 -#> 1868 1 0 0 0 0 0 1 0 -#> 1869 0 0 0 0 0 0 0 0 -#> 1870 0 0 0 0 1 2 0 0 -#> 1871 0 0 0 0 2 3 4 0 -#> 1872 0 0 0 0 1 3 3 0 -#> 1873 0 1 0 1 2 6 5 0 -#> 1874 0 0 0 0 0 0 1 0 -#> 1875 0 1 0 1 0 0 1 0 -#> 1876 0 0 0 0 0 1 1 0 -#> 1877 0 0 0 0 0 0 0 0 -#> 1878 0 1 0 1 1 5 0 0 -#> 1879 1 0 0 0 0 1 0 0 -#> 1880 0 0 0 0 0 0 0 0 -#> 1881 0 2 1 1 0 2 0 0 -#> 1882 0 0 0 0 0 0 1 0 -#> 1883 0 0 0 0 0 0 0 0 -#> 1884 0 0 0 0 0 0 0 0 -#> 1885 2 0 0 0 0 3 3 0 -#> 1886 0 1 1 0 1 1 1 0 -#> 1887 1 1 0 1 3 3 1 0 -#> 1888 0 0 0 0 0 0 1 0 -#> 1889 0 1 0 1 0 0 0 0 -#> 1890 0 0 0 0 1 2 0 0 -#> 1891 0 2 0 2 0 1 0 0 -#> 1892 1 3 0 3 1 2 1 0 -#> 1893 1 3 1 2 0 5 0 0 -#> 1894 0 0 0 0 2 5 1 0 -#> 1895 1 0 0 0 1 1 1 0 -#> 1896 0 1 0 1 0 0 0 0 -#> 1897 1 0 0 0 1 5 2 0 -#> 1898 0 2 1 1 4 5 7 0 -#> 1899 0 2 2 0 3 6 7 0 -#> 1900 0 1 1 0 1 2 5 0 -#> 1901 0 1 1 0 0 0 4 0 -#> 1902 0 0 0 0 0 0 0 0 -#> 1903 0 0 0 0 0 0 0 0 -#> 1904 0 0 0 0 0 0 0 0 -#> 1905 1 1 0 1 0 4 0 0 -#> 1906 0 3 0 3 0 0 1 0 -#> 1907 0 1 0 1 0 2 0 0 -#> 1908 0 0 0 0 0 2 3 0 -#> 1909 0 2 0 2 0 0 0 0 -#> 1910 0 1 1 0 0 0 2 0 -#> 1911 1 2 0 2 1 5 5 0 -#> 1912 0 1 0 1 1 4 7 0 -#> 1913 0 0 0 0 0 0 0 0 -#> 1914 0 3 1 2 1 5 7 0 -#> 1915 0 0 0 0 0 1 3 0 -#> 1916 0 0 0 0 0 0 0 0 -#> 1917 0 0 0 0 0 0 1 0 -#> 1918 0 1 0 1 0 0 0 0 -#> 1919 0 1 0 1 0 0 0 0 -#> 1920 0 0 0 0 0 2 2 0 -#> 1921 0 0 0 0 0 0 0 0 -#> 1922 0 0 0 0 5 6 1 0 -#> 1923 0 1 0 1 1 3 0 0 -#> 1924 1 1 0 1 0 0 0 0 -#> 1925 0 1 0 1 2 3 0 0 -#> 1926 0 2 1 1 2 4 3 0 -#> 1927 0 1 0 1 2 3 5 0 -#> 1928 0 1 1 0 7 8 6 0 -#> 1929 0 0 0 0 0 3 0 0 -#> 1930 0 0 0 0 0 0 1 1 -#> 1931 2 1 0 1 0 0 0 0 -#> 1932 1 0 0 0 1 2 0 0 -#> 1933 0 1 0 1 2 2 0 0 -#> 1934 1 0 0 0 0 1 0 0 -#> 1935 0 1 0 1 0 0 0 0 -#> 1936 1 1 0 1 0 0 0 0 -#> 1937 2 0 0 0 0 1 1 0 -#> 1938 0 0 0 0 0 0 0 0 -#> 1939 2 1 0 1 0 0 0 0 -#> 1940 0 0 0 0 1 3 2 0 -#> 1941 0 0 0 0 2 4 1 0 -#> 1942 2 1 0 1 0 1 1 0 -#> 1943 0 0 0 0 0 1 0 0 -#> 1944 0 0 0 0 0 0 0 0 -#> 1945 0 2 1 1 1 3 2 0 -#> 1946 3 2 0 2 2 3 0 0 -#> 1947 0 1 1 0 0 0 2 0 -#> 1948 2 1 0 1 0 2 0 0 -#> 1949 0 0 0 0 0 0 0 0 -#> 1950 1 1 0 1 1 1 0 0 -#> 1951 0 1 0 1 0 1 1 0 -#> 1952 1 2 0 2 2 4 2 0 -#> 1953 0 0 0 0 3 8 1 0 -#> 1954 1 4 0 4 3 6 2 0 -#> 1955 1 2 1 1 1 2 6 0 -#> 1956 0 0 0 0 3 5 14 0 -#> 1957 1 1 0 1 2 7 6 0 -#> 1958 0 0 0 0 0 0 3 0 -#> 1959 0 0 0 0 0 0 2 0 -#> 1960 0 0 0 0 0 0 0 0 -#> 1961 0 0 0 0 0 0 0 0 -#> 1962 1 0 0 0 2 3 1 0 -#> 1963 1 1 0 1 1 3 4 0 -#> 1964 1 0 0 0 2 2 2 0 -#> 1965 0 0 0 0 0 3 1 0 -#> 1966 0 0 0 0 0 0 0 0 -#> 1967 1 2 0 2 1 1 2 0 -#> 1968 0 0 0 0 0 0 0 0 -#> 1969 1 1 0 1 2 10 5 0 -#> 1970 0 2 1 1 4 4 11 0 -#> 1971 1 2 1 1 1 3 7 0 -#> 1972 0 0 0 0 0 0 0 0 -#> 1973 0 0 0 0 1 1 1 0 -#> 1974 0 0 0 0 0 0 0 0 -#> 1975 2 0 0 0 0 0 0 0 -#> 1976 1 0 0 0 0 1 0 0 -#> 1977 1 1 0 1 1 2 1 0 -#> 1978 1 0 0 0 1 3 0 0 -#> 1979 0 0 0 0 2 4 1 0 -#> 1980 0 0 0 0 0 2 0 0 -#> 1981 0 0 0 0 0 0 1 0 -#> 1982 1 2 1 1 0 3 4 0 -#> 1983 0 0 0 0 3 5 7 0 -#> 1984 1 0 0 0 1 2 2 0 -#> 1985 0 2 2 0 3 5 3 0 -#> 1986 0 0 0 0 0 0 0 0 -#> 1987 0 1 0 1 0 0 0 0 -#> 1988 0 0 0 0 0 1 0 0 -#> 1989 1 2 0 2 0 1 0 0 -#> 1990 0 1 0 1 2 4 0 0 -#> 1991 0 1 0 1 0 0 0 0 -#> 1992 0 2 1 1 1 3 2 0 -#> 1993 0 2 2 0 0 0 1 0 -#> 1994 0 2 0 2 1 3 1 0 -#> 1995 1 0 0 0 2 2 0 0 -#> 1996 0 1 0 1 1 4 1 0 -#> 1997 1 0 0 0 1 2 7 0 -#> 1998 1 1 0 1 2 8 3 1 -#> 1999 4 1 0 1 0 3 0 0 -#> 2000 0 1 0 1 0 0 0 0 -#> 2001 1 1 0 1 0 2 2 0 -#> 2002 0 0 0 0 0 0 0 0 -#> 2003 1 0 0 0 0 0 0 0 -#> 2004 2 1 0 1 1 4 5 0 -#> 2005 3 5 0 5 0 1 2 0 -#> 2006 0 1 0 1 1 2 2 0 -#> 2007 0 0 0 0 0 2 0 0 -#> 2008 0 1 0 1 3 4 3 0 -#> 2009 0 3 0 3 2 5 1 0 -#> 2010 0 1 1 0 1 2 3 0 -#> 2011 0 4 3 1 2 5 8 0 -#> 2012 2 1 0 1 1 3 5 0 -#> 2013 0 1 1 0 0 1 0 0 -#> 2014 0 1 0 1 0 0 1 0 -#> 2015 0 1 0 1 0 0 1 0 -#> 2016 1 0 0 0 1 1 0 0 -#> 2017 0 1 0 1 0 3 1 0 -#> 2018 0 1 0 1 0 0 0 0 -#> 2019 0 1 1 0 3 3 0 0 -#> 2020 0 0 0 0 0 0 1 0 -#> 2021 0 2 2 0 1 2 3 0 -#> 2022 0 0 0 0 1 3 3 0 -#> 2023 0 2 0 2 0 2 3 0 -#> 2024 0 1 1 0 1 4 5 0 -#> 2025 0 0 0 0 0 0 1 0 -#> 2026 1 0 0 0 1 5 4 0 -#> 2027 0 2 0 2 1 4 5 0 -#> 2028 0 0 0 0 0 0 0 0 -#> 2029 0 1 0 1 0 0 0 0 -#> 2030 0 0 0 0 0 0 0 0 -#> 2031 0 1 0 1 1 2 0 0 -#> 2032 1 0 0 0 0 0 0 0 -#> 2033 0 0 0 0 0 0 0 0 -#> 2034 0 0 0 0 1 1 1 0 -#> 2035 0 0 0 0 1 2 0 0 -#> 2036 0 0 0 0 1 1 0 0 -#> 2037 1 0 0 0 0 3 0 0 -#> 2038 0 1 1 0 2 3 1 0 -#> 2039 0 0 0 0 2 3 4 0 -#> 2040 0 1 0 1 1 1 6 0 -#> Competition_Name Gender Country Tier Season_End_Year -#> 1 La Liga M ESP 1st 2019 -#> 2 La Liga M ESP 1st 2019 -#> 3 La Liga M ESP 1st 2019 -#> 4 La Liga M ESP 1st 2019 -#> 5 La Liga M ESP 1st 2019 -#> 6 La Liga M ESP 1st 2019 -#> 7 La Liga M ESP 1st 2019 -#> 8 La Liga M ESP 1st 2019 -#> 9 La Liga M ESP 1st 2019 -#> 10 La Liga M ESP 1st 2019 -#> 11 La Liga M ESP 1st 2019 -#> 12 La Liga M ESP 1st 2019 -#> 13 La Liga M ESP 1st 2019 -#> 14 La Liga M ESP 1st 2019 -#> 15 La Liga M ESP 1st 2019 -#> 16 La Liga M ESP 1st 2019 -#> 17 La Liga M ESP 1st 2019 -#> 18 La Liga M ESP 1st 2019 -#> 19 La Liga M ESP 1st 2019 -#> 20 La Liga M ESP 1st 2019 -#> 21 La Liga M ESP 1st 2019 -#> 22 La Liga M ESP 1st 2019 -#> 23 La Liga M ESP 1st 2019 -#> 24 La Liga M ESP 1st 2019 -#> 25 La Liga M ESP 1st 2019 -#> 26 La Liga M ESP 1st 2019 -#> 27 La Liga M ESP 1st 2019 -#> 28 La Liga M ESP 1st 2019 -#> 29 La Liga M ESP 1st 2019 -#> 30 La Liga M ESP 1st 2019 -#> 31 La Liga M ESP 1st 2019 -#> 32 La Liga M ESP 1st 2019 -#> 33 La Liga M ESP 1st 2019 -#> 34 La Liga M ESP 1st 2019 -#> 35 La Liga M ESP 1st 2019 -#> 36 La Liga M ESP 1st 2019 -#> 37 La Liga M ESP 1st 2019 -#> 38 La Liga M ESP 1st 2019 -#> 39 La Liga M ESP 1st 2019 -#> 40 La Liga M ESP 1st 2019 -#> 41 La Liga M ESP 1st 2019 -#> 42 La Liga M ESP 1st 2019 -#> 43 La Liga M ESP 1st 2019 -#> 44 La Liga M ESP 1st 2019 -#> 45 La Liga M ESP 1st 2019 -#> 46 La Liga M ESP 1st 2019 -#> 47 La Liga M ESP 1st 2019 -#> 48 La Liga M ESP 1st 2019 -#> 49 La Liga M ESP 1st 2019 -#> 50 La Liga M ESP 1st 2019 -#> 51 La Liga M ESP 1st 2019 -#> 52 La Liga M ESP 1st 2019 -#> 53 La Liga M ESP 1st 2019 -#> 54 La Liga M ESP 1st 2019 -#> 55 La Liga M ESP 1st 2019 -#> 56 La Liga M ESP 1st 2019 -#> 57 La Liga M ESP 1st 2019 -#> 58 La Liga M ESP 1st 2019 -#> 59 La Liga M ESP 1st 2019 -#> 60 La Liga M ESP 1st 2019 -#> 61 La Liga M ESP 1st 2019 -#> 62 La Liga M ESP 1st 2019 -#> 63 La Liga M ESP 1st 2019 -#> 64 La Liga M ESP 1st 2019 -#> 65 La Liga M ESP 1st 2019 -#> 66 La Liga M ESP 1st 2019 -#> 67 La Liga M ESP 1st 2019 -#> 68 La Liga M ESP 1st 2019 -#> 69 La Liga M ESP 1st 2019 -#> 70 La Liga M ESP 1st 2019 -#> 71 La Liga M ESP 1st 2019 -#> 72 La Liga M ESP 1st 2019 -#> 73 La Liga M ESP 1st 2019 -#> 74 La Liga M ESP 1st 2019 -#> 75 La Liga M ESP 1st 2019 -#> 76 La Liga M ESP 1st 2019 -#> 77 La Liga M ESP 1st 2019 -#> 78 La Liga M ESP 1st 2019 -#> 79 La Liga M ESP 1st 2019 -#> 80 La Liga M ESP 1st 2019 -#> 81 La Liga M ESP 1st 2019 -#> 82 La Liga M ESP 1st 2019 -#> 83 La Liga M ESP 1st 2019 -#> 84 La Liga M ESP 1st 2019 -#> 85 La Liga M ESP 1st 2019 -#> 86 La Liga M ESP 1st 2019 -#> 87 La Liga M ESP 1st 2019 -#> 88 La Liga M ESP 1st 2019 -#> 89 La Liga M ESP 1st 2019 -#> 90 La Liga M ESP 1st 2019 -#> 91 La Liga M ESP 1st 2019 -#> 92 La Liga M ESP 1st 2019 -#> 93 La Liga M ESP 1st 2019 -#> 94 La Liga M ESP 1st 2019 -#> 95 La Liga M ESP 1st 2019 -#> 96 La Liga M ESP 1st 2019 -#> 97 La Liga M ESP 1st 2019 -#> 98 La Liga M ESP 1st 2019 -#> 99 La Liga M ESP 1st 2019 -#> 100 La Liga M ESP 1st 2019 -#> 101 La Liga M ESP 1st 2019 -#> 102 La Liga M ESP 1st 2019 -#> 103 La Liga M ESP 1st 2019 -#> 104 La Liga M ESP 1st 2019 -#> 105 La Liga M ESP 1st 2019 -#> 106 La Liga M ESP 1st 2019 -#> 107 La Liga M ESP 1st 2019 -#> 108 La Liga M ESP 1st 2019 -#> 109 La Liga M ESP 1st 2019 -#> 110 La Liga M ESP 1st 2019 -#> 111 La Liga M ESP 1st 2019 -#> 112 La Liga M ESP 1st 2019 -#> 113 La Liga M ESP 1st 2019 -#> 114 La Liga M ESP 1st 2019 -#> 115 La Liga M ESP 1st 2019 -#> 116 La Liga M ESP 1st 2019 -#> 117 La Liga M ESP 1st 2019 -#> 118 La Liga M ESP 1st 2019 -#> 119 La Liga M ESP 1st 2019 -#> 120 La Liga M ESP 1st 2019 -#> 121 La Liga M ESP 1st 2019 -#> 122 La Liga M ESP 1st 2019 -#> 123 La Liga M ESP 1st 2019 -#> 124 La Liga M ESP 1st 2019 -#> 125 La Liga M ESP 1st 2019 -#> 126 La Liga M ESP 1st 2019 -#> 127 La Liga M ESP 1st 2019 -#> 128 La Liga M ESP 1st 2019 -#> 129 La Liga M ESP 1st 2019 -#> 130 La Liga M ESP 1st 2019 -#> 131 La Liga M ESP 1st 2019 -#> 132 La Liga M ESP 1st 2019 -#> 133 La Liga M ESP 1st 2019 -#> 134 La Liga M ESP 1st 2019 -#> 135 La Liga M ESP 1st 2019 -#> 136 La Liga M ESP 1st 2019 -#> 137 La Liga M ESP 1st 2019 -#> 138 La Liga M ESP 1st 2019 -#> 139 La Liga M ESP 1st 2019 -#> 140 La Liga M ESP 1st 2019 -#> 141 La Liga M ESP 1st 2019 -#> 142 La Liga M ESP 1st 2019 -#> 143 La Liga M ESP 1st 2019 -#> 144 La Liga M ESP 1st 2019 -#> 145 La Liga M ESP 1st 2019 -#> 146 La Liga M ESP 1st 2019 -#> 147 La Liga M ESP 1st 2019 -#> 148 La Liga M ESP 1st 2019 -#> 149 La Liga M ESP 1st 2019 -#> 150 La Liga M ESP 1st 2019 -#> 151 La Liga M ESP 1st 2019 -#> 152 La Liga M ESP 1st 2019 -#> 153 La Liga M ESP 1st 2019 -#> 154 La Liga M ESP 1st 2019 -#> 155 La Liga M ESP 1st 2019 -#> 156 La Liga M ESP 1st 2019 -#> 157 La Liga M ESP 1st 2019 -#> 158 La Liga M ESP 1st 2019 -#> 159 La Liga M ESP 1st 2019 -#> 160 La Liga M ESP 1st 2019 -#> 161 La Liga M ESP 1st 2019 -#> 162 La Liga M ESP 1st 2019 -#> 163 La Liga M ESP 1st 2019 -#> 164 La Liga M ESP 1st 2019 -#> 165 La Liga M ESP 1st 2019 -#> 166 La Liga M ESP 1st 2019 -#> 167 La Liga M ESP 1st 2019 -#> 168 La Liga M ESP 1st 2019 -#> 169 La Liga M ESP 1st 2019 -#> 170 La Liga M ESP 1st 2019 -#> 171 La Liga M ESP 1st 2019 -#> 172 La Liga M ESP 1st 2019 -#> 173 La Liga M ESP 1st 2019 -#> 174 La Liga M ESP 1st 2019 -#> 175 La Liga M ESP 1st 2019 -#> 176 La Liga M ESP 1st 2019 -#> 177 La Liga M ESP 1st 2019 -#> 178 La Liga M ESP 1st 2019 -#> 179 La Liga M ESP 1st 2019 -#> 180 La Liga M ESP 1st 2019 -#> 181 La Liga M ESP 1st 2019 -#> 182 La Liga M ESP 1st 2019 -#> 183 La Liga M ESP 1st 2019 -#> 184 La Liga M ESP 1st 2019 -#> 185 La Liga M ESP 1st 2019 -#> 186 La Liga M ESP 1st 2019 -#> 187 La Liga M ESP 1st 2019 -#> 188 La Liga M ESP 1st 2019 -#> 189 La Liga M ESP 1st 2019 -#> 190 La Liga M ESP 1st 2019 -#> 191 La Liga M ESP 1st 2019 -#> 192 La Liga M ESP 1st 2019 -#> 193 La Liga M ESP 1st 2019 -#> 194 La Liga M ESP 1st 2019 -#> 195 La Liga M ESP 1st 2019 -#> 196 La Liga M ESP 1st 2019 -#> 197 La Liga M ESP 1st 2019 -#> 198 La Liga M ESP 1st 2019 -#> 199 La Liga M ESP 1st 2019 -#> 200 La Liga M ESP 1st 2019 -#> 201 La Liga M ESP 1st 2019 -#> 202 La Liga M ESP 1st 2019 -#> 203 La Liga M ESP 1st 2019 -#> 204 La Liga M ESP 1st 2019 -#> 205 La Liga M ESP 1st 2019 -#> 206 La Liga M ESP 1st 2019 -#> 207 La Liga M ESP 1st 2019 -#> 208 La Liga M ESP 1st 2019 -#> 209 La Liga M ESP 1st 2019 -#> 210 La Liga M ESP 1st 2019 -#> 211 La Liga M ESP 1st 2019 -#> 212 La Liga M ESP 1st 2019 -#> 213 La Liga M ESP 1st 2019 -#> 214 La Liga M ESP 1st 2019 -#> 215 La Liga M ESP 1st 2019 -#> 216 La Liga M ESP 1st 2019 -#> 217 La Liga M ESP 1st 2019 -#> 218 La Liga M ESP 1st 2019 -#> 219 La Liga M ESP 1st 2019 -#> 220 La Liga M ESP 1st 2019 -#> 221 La Liga M ESP 1st 2019 -#> 222 La Liga M ESP 1st 2019 -#> 223 La Liga M ESP 1st 2019 -#> 224 La Liga M ESP 1st 2019 -#> 225 La Liga M ESP 1st 2019 -#> 226 La Liga M ESP 1st 2019 -#> 227 La Liga M ESP 1st 2019 -#> 228 La Liga M ESP 1st 2019 -#> 229 La Liga M ESP 1st 2019 -#> 230 La Liga M ESP 1st 2019 -#> 231 La Liga M ESP 1st 2019 -#> 232 La Liga M ESP 1st 2019 -#> 233 La Liga M ESP 1st 2019 -#> 234 La Liga M ESP 1st 2019 -#> 235 La Liga M ESP 1st 2019 -#> 236 La Liga M ESP 1st 2019 -#> 237 La Liga M ESP 1st 2019 -#> 238 La Liga M ESP 1st 2019 -#> 239 La Liga M ESP 1st 2019 -#> 240 La Liga M ESP 1st 2019 -#> 241 La Liga M ESP 1st 2019 -#> 242 La Liga M ESP 1st 2019 -#> 243 La Liga M ESP 1st 2019 -#> 244 La Liga M ESP 1st 2019 -#> 245 La Liga M ESP 1st 2019 -#> 246 La Liga M ESP 1st 2019 -#> 247 La Liga M ESP 1st 2019 -#> 248 La Liga M ESP 1st 2019 -#> 249 La Liga M ESP 1st 2019 -#> 250 La Liga M ESP 1st 2019 -#> 251 La Liga M ESP 1st 2019 -#> 252 La Liga M ESP 1st 2019 -#> 253 La Liga M ESP 1st 2019 -#> 254 La Liga M ESP 1st 2019 -#> 255 La Liga M ESP 1st 2019 -#> 256 La Liga M ESP 1st 2019 -#> 257 La Liga M ESP 1st 2019 -#> 258 La Liga M ESP 1st 2019 -#> 259 La Liga M ESP 1st 2019 -#> 260 La Liga M ESP 1st 2019 -#> 261 La Liga M ESP 1st 2019 -#> 262 La Liga M ESP 1st 2019 -#> 263 La Liga M ESP 1st 2019 -#> 264 La Liga M ESP 1st 2019 -#> 265 La Liga M ESP 1st 2019 -#> 266 La Liga M ESP 1st 2019 -#> 267 La Liga M ESP 1st 2019 -#> 268 La Liga M ESP 1st 2019 -#> 269 La Liga M ESP 1st 2019 -#> 270 La Liga M ESP 1st 2019 -#> 271 La Liga M ESP 1st 2019 -#> 272 La Liga M ESP 1st 2019 -#> 273 La Liga M ESP 1st 2019 -#> 274 La Liga M ESP 1st 2019 -#> 275 La Liga M ESP 1st 2019 -#> 276 La Liga M ESP 1st 2019 -#> 277 La Liga M ESP 1st 2019 -#> 278 La Liga M ESP 1st 2019 -#> 279 La Liga M ESP 1st 2019 -#> 280 La Liga M ESP 1st 2019 -#> 281 La Liga M ESP 1st 2019 -#> 282 La Liga M ESP 1st 2019 -#> 283 La Liga M ESP 1st 2019 -#> 284 La Liga M ESP 1st 2019 -#> 285 La Liga M ESP 1st 2019 -#> 286 La Liga M ESP 1st 2019 -#> 287 La Liga M ESP 1st 2019 -#> 288 La Liga M ESP 1st 2019 -#> 289 La Liga M ESP 1st 2019 -#> 290 La Liga M ESP 1st 2019 -#> 291 La Liga M ESP 1st 2019 -#> 292 La Liga M ESP 1st 2019 -#> 293 La Liga M ESP 1st 2019 -#> 294 La Liga M ESP 1st 2019 -#> 295 La Liga M ESP 1st 2019 -#> 296 La Liga M ESP 1st 2019 -#> 297 La Liga M ESP 1st 2019 -#> 298 La Liga M ESP 1st 2019 -#> 299 La Liga M ESP 1st 2019 -#> 300 La Liga M ESP 1st 2019 -#> 301 La Liga M ESP 1st 2019 -#> 302 La Liga M ESP 1st 2019 -#> 303 La Liga M ESP 1st 2019 -#> 304 La Liga M ESP 1st 2019 -#> 305 La Liga M ESP 1st 2019 -#> 306 La Liga M ESP 1st 2019 -#> 307 La Liga M ESP 1st 2019 -#> 308 La Liga M ESP 1st 2019 -#> 309 La Liga M ESP 1st 2019 -#> 310 La Liga M ESP 1st 2019 -#> 311 La Liga M ESP 1st 2019 -#> 312 La Liga M ESP 1st 2019 -#> 313 La Liga M ESP 1st 2019 -#> 314 La Liga M ESP 1st 2019 -#> 315 La Liga M ESP 1st 2019 -#> 316 La Liga M ESP 1st 2019 -#> 317 La Liga M ESP 1st 2019 -#> 318 La Liga M ESP 1st 2019 -#> 319 La Liga M ESP 1st 2019 -#> 320 La Liga M ESP 1st 2019 -#> 321 La Liga M ESP 1st 2019 -#> 322 La Liga M ESP 1st 2019 -#> 323 La Liga M ESP 1st 2019 -#> 324 La Liga M ESP 1st 2019 -#> 325 La Liga M ESP 1st 2019 -#> 326 La Liga M ESP 1st 2019 -#> 327 La Liga M ESP 1st 2019 -#> 328 La Liga M ESP 1st 2019 -#> 329 La Liga M ESP 1st 2019 -#> 330 La Liga M ESP 1st 2019 -#> 331 La Liga M ESP 1st 2019 -#> 332 La Liga M ESP 1st 2019 -#> 333 La Liga M ESP 1st 2019 -#> 334 La Liga M ESP 1st 2019 -#> 335 La Liga M ESP 1st 2019 -#> 336 La Liga M ESP 1st 2019 -#> 337 La Liga M ESP 1st 2019 -#> 338 La Liga M ESP 1st 2019 -#> 339 La Liga M ESP 1st 2019 -#> 340 La Liga M ESP 1st 2019 -#> 341 La Liga M ESP 1st 2019 -#> 342 La Liga M ESP 1st 2019 -#> 343 La Liga M ESP 1st 2019 -#> 344 La Liga M ESP 1st 2019 -#> 345 La Liga M ESP 1st 2019 -#> 346 La Liga M ESP 1st 2019 -#> 347 La Liga M ESP 1st 2019 -#> 348 La Liga M ESP 1st 2019 -#> 349 La Liga M ESP 1st 2019 -#> 350 La Liga M ESP 1st 2019 -#> 351 La Liga M ESP 1st 2019 -#> 352 La Liga M ESP 1st 2019 -#> 353 La Liga M ESP 1st 2019 -#> 354 La Liga M ESP 1st 2019 -#> 355 La Liga M ESP 1st 2019 -#> 356 La Liga M ESP 1st 2019 -#> 357 La Liga M ESP 1st 2019 -#> 358 La Liga M ESP 1st 2019 -#> 359 La Liga M ESP 1st 2019 -#> 360 La Liga M ESP 1st 2019 -#> 361 La Liga M ESP 1st 2019 -#> 362 La Liga M ESP 1st 2019 -#> 363 La Liga M ESP 1st 2019 -#> 364 La Liga M ESP 1st 2019 -#> 365 La Liga M ESP 1st 2019 -#> 366 La Liga M ESP 1st 2019 -#> 367 La Liga M ESP 1st 2019 -#> 368 La Liga M ESP 1st 2019 -#> 369 La Liga M ESP 1st 2019 -#> 370 La Liga M ESP 1st 2019 -#> 371 La Liga M ESP 1st 2019 -#> 372 La Liga M ESP 1st 2019 -#> 373 La Liga M ESP 1st 2019 -#> 374 La Liga M ESP 1st 2019 -#> 375 La Liga M ESP 1st 2019 -#> 376 La Liga M ESP 1st 2019 -#> 377 La Liga M ESP 1st 2019 -#> 378 La Liga M ESP 1st 2019 -#> 379 La Liga M ESP 1st 2019 -#> 380 La Liga M ESP 1st 2019 -#> 381 La Liga M ESP 1st 2019 -#> 382 La Liga M ESP 1st 2019 -#> 383 La Liga M ESP 1st 2019 -#> 384 La Liga M ESP 1st 2019 -#> 385 La Liga M ESP 1st 2019 -#> 386 La Liga M ESP 1st 2019 -#> 387 La Liga M ESP 1st 2019 -#> 388 La Liga M ESP 1st 2019 -#> 389 La Liga M ESP 1st 2019 -#> 390 La Liga M ESP 1st 2019 -#> 391 La Liga M ESP 1st 2019 -#> 392 La Liga M ESP 1st 2019 -#> 393 La Liga M ESP 1st 2019 -#> 394 La Liga M ESP 1st 2019 -#> 395 La Liga M ESP 1st 2019 -#> 396 La Liga M ESP 1st 2019 -#> 397 La Liga M ESP 1st 2019 -#> 398 La Liga M ESP 1st 2019 -#> 399 La Liga M ESP 1st 2019 -#> 400 La Liga M ESP 1st 2019 -#> 401 La Liga M ESP 1st 2019 -#> 402 La Liga M ESP 1st 2019 -#> 403 La Liga M ESP 1st 2019 -#> 404 La Liga M ESP 1st 2019 -#> 405 La Liga M ESP 1st 2019 -#> 406 La Liga M ESP 1st 2019 -#> 407 La Liga M ESP 1st 2019 -#> 408 La Liga M ESP 1st 2019 -#> 409 La Liga M ESP 1st 2019 -#> 410 La Liga M ESP 1st 2019 -#> 411 La Liga M ESP 1st 2019 -#> 412 La Liga M ESP 1st 2019 -#> 413 La Liga M ESP 1st 2019 -#> 414 La Liga M ESP 1st 2019 -#> 415 La Liga M ESP 1st 2019 -#> 416 La Liga M ESP 1st 2019 -#> 417 La Liga M ESP 1st 2019 -#> 418 La Liga M ESP 1st 2019 -#> 419 La Liga M ESP 1st 2019 -#> 420 La Liga M ESP 1st 2019 -#> 421 La Liga M ESP 1st 2019 -#> 422 La Liga M ESP 1st 2019 -#> 423 La Liga M ESP 1st 2019 -#> 424 La Liga M ESP 1st 2019 -#> 425 La Liga M ESP 1st 2019 -#> 426 La Liga M ESP 1st 2019 -#> 427 La Liga M ESP 1st 2019 -#> 428 La Liga M ESP 1st 2019 -#> 429 La Liga M ESP 1st 2019 -#> 430 La Liga M ESP 1st 2019 -#> 431 La Liga M ESP 1st 2019 -#> 432 La Liga M ESP 1st 2019 -#> 433 La Liga M ESP 1st 2019 -#> 434 La Liga M ESP 1st 2019 -#> 435 La Liga M ESP 1st 2019 -#> 436 La Liga M ESP 1st 2019 -#> 437 La Liga M ESP 1st 2019 -#> 438 La Liga M ESP 1st 2019 -#> 439 La Liga M ESP 1st 2019 -#> 440 La Liga M ESP 1st 2019 -#> 441 La Liga M ESP 1st 2019 -#> 442 La Liga M ESP 1st 2019 -#> 443 La Liga M ESP 1st 2019 -#> 444 La Liga M ESP 1st 2019 -#> 445 La Liga M ESP 1st 2019 -#> 446 La Liga M ESP 1st 2019 -#> 447 La Liga M ESP 1st 2019 -#> 448 La Liga M ESP 1st 2019 -#> 449 La Liga M ESP 1st 2019 -#> 450 La Liga M ESP 1st 2019 -#> 451 La Liga M ESP 1st 2019 -#> 452 La Liga M ESP 1st 2019 -#> 453 La Liga M ESP 1st 2019 -#> 454 La Liga M ESP 1st 2019 -#> 455 La Liga M ESP 1st 2019 -#> 456 La Liga M ESP 1st 2019 -#> 457 La Liga M ESP 1st 2019 -#> 458 La Liga M ESP 1st 2019 -#> 459 La Liga M ESP 1st 2019 -#> 460 La Liga M ESP 1st 2019 -#> 461 La Liga M ESP 1st 2019 -#> 462 La Liga M ESP 1st 2019 -#> 463 La Liga M ESP 1st 2019 -#> 464 La Liga M ESP 1st 2019 -#> 465 La Liga M ESP 1st 2019 -#> 466 La Liga M ESP 1st 2019 -#> 467 La Liga M ESP 1st 2019 -#> 468 La Liga M ESP 1st 2019 -#> 469 La Liga M ESP 1st 2019 -#> 470 La Liga M ESP 1st 2019 -#> 471 La Liga M ESP 1st 2019 -#> 472 La Liga M ESP 1st 2019 -#> 473 La Liga M ESP 1st 2019 -#> 474 La Liga M ESP 1st 2019 -#> 475 La Liga M ESP 1st 2019 -#> 476 La Liga M ESP 1st 2019 -#> 477 La Liga M ESP 1st 2019 -#> 478 La Liga M ESP 1st 2019 -#> 479 La Liga M ESP 1st 2019 -#> 480 La Liga M ESP 1st 2019 -#> 481 La Liga M ESP 1st 2019 -#> 482 La Liga M ESP 1st 2019 -#> 483 La Liga M ESP 1st 2019 -#> 484 La Liga M ESP 1st 2019 -#> 485 La Liga M ESP 1st 2019 -#> 486 La Liga M ESP 1st 2019 -#> 487 La Liga M ESP 1st 2019 -#> 488 La Liga M ESP 1st 2019 -#> 489 La Liga M ESP 1st 2019 -#> 490 La Liga M ESP 1st 2019 -#> 491 La Liga M ESP 1st 2019 -#> 492 La Liga M ESP 1st 2019 -#> 493 La Liga M ESP 1st 2019 -#> 494 La Liga M ESP 1st 2019 -#> 495 La Liga M ESP 1st 2019 -#> 496 La Liga M ESP 1st 2019 -#> 497 La Liga M ESP 1st 2019 -#> 498 La Liga M ESP 1st 2019 -#> 499 La Liga M ESP 1st 2019 -#> 500 La Liga M ESP 1st 2019 -#> 501 La Liga M ESP 1st 2019 -#> 502 La Liga M ESP 1st 2019 -#> 503 La Liga M ESP 1st 2019 -#> 504 La Liga M ESP 1st 2019 -#> 505 La Liga M ESP 1st 2019 -#> 506 La Liga M ESP 1st 2019 -#> 507 La Liga M ESP 1st 2019 -#> 508 La Liga M ESP 1st 2019 -#> 509 La Liga M ESP 1st 2019 -#> 510 La Liga M ESP 1st 2019 -#> 511 La Liga M ESP 1st 2019 -#> 512 La Liga M ESP 1st 2019 -#> 513 La Liga M ESP 1st 2019 -#> 514 La Liga M ESP 1st 2019 -#> 515 La Liga M ESP 1st 2019 -#> 516 La Liga M ESP 1st 2019 -#> 517 La Liga M ESP 1st 2019 -#> 518 La Liga M ESP 1st 2019 -#> 519 La Liga M ESP 1st 2019 -#> 520 La Liga M ESP 1st 2019 -#> 521 La Liga M ESP 1st 2019 -#> 522 La Liga M ESP 1st 2019 -#> 523 La Liga M ESP 1st 2019 -#> 524 La Liga M ESP 1st 2019 -#> 525 La Liga M ESP 1st 2019 -#> 526 La Liga M ESP 1st 2019 -#> 527 La Liga M ESP 1st 2019 -#> 528 La Liga M ESP 1st 2019 -#> 529 La Liga M ESP 1st 2019 -#> 530 La Liga M ESP 1st 2019 -#> 531 La Liga M ESP 1st 2019 -#> 532 La Liga M ESP 1st 2019 -#> 533 La Liga M ESP 1st 2019 -#> 534 La Liga M ESP 1st 2019 -#> 535 La Liga M ESP 1st 2019 -#> 536 La Liga M ESP 1st 2019 -#> 537 La Liga M ESP 1st 2019 -#> 538 La Liga M ESP 1st 2019 -#> 539 La Liga M ESP 1st 2019 -#> 540 La Liga M ESP 1st 2019 -#> 541 La Liga M ESP 1st 2019 -#> 542 La Liga M ESP 1st 2019 -#> 543 La Liga M ESP 1st 2019 -#> 544 La Liga M ESP 1st 2019 -#> 545 La Liga M ESP 1st 2019 -#> 546 La Liga M ESP 1st 2019 -#> 547 La Liga M ESP 1st 2019 -#> 548 La Liga M ESP 1st 2019 -#> 549 La Liga M ESP 1st 2019 -#> 550 La Liga M ESP 1st 2019 -#> 551 La Liga M ESP 1st 2019 -#> 552 La Liga M ESP 1st 2019 -#> 553 La Liga M ESP 1st 2019 -#> 554 La Liga M ESP 1st 2019 -#> 555 La Liga M ESP 1st 2019 -#> 556 La Liga M ESP 1st 2019 -#> 557 La Liga M ESP 1st 2019 -#> 558 La Liga M ESP 1st 2019 -#> 559 La Liga M ESP 1st 2019 -#> 560 La Liga M ESP 1st 2019 -#> 561 La Liga M ESP 1st 2019 -#> 562 La Liga M ESP 1st 2019 -#> 563 La Liga M ESP 1st 2019 -#> 564 La Liga M ESP 1st 2019 -#> 565 La Liga M ESP 1st 2019 -#> 566 La Liga M ESP 1st 2019 -#> 567 La Liga M ESP 1st 2019 -#> 568 La Liga M ESP 1st 2019 -#> 569 La Liga M ESP 1st 2019 -#> 570 La Liga M ESP 1st 2019 -#> 571 La Liga M ESP 1st 2019 -#> 572 La Liga M ESP 1st 2019 -#> 573 La Liga M ESP 1st 2019 -#> 574 La Liga M ESP 1st 2019 -#> 575 La Liga M ESP 1st 2019 -#> 576 La Liga M ESP 1st 2019 -#> 577 La Liga M ESP 1st 2019 -#> 578 La Liga M ESP 1st 2019 -#> 579 La Liga M ESP 1st 2019 -#> 580 La Liga M ESP 1st 2019 -#> 581 La Liga M ESP 1st 2019 -#> 582 La Liga M ESP 1st 2019 -#> 583 La Liga M ESP 1st 2019 -#> 584 La Liga M ESP 1st 2019 -#> 585 La Liga M ESP 1st 2019 -#> 586 La Liga M ESP 1st 2019 -#> 587 La Liga M ESP 1st 2019 -#> 588 La Liga M ESP 1st 2019 -#> 589 La Liga M ESP 1st 2019 -#> 590 La Liga M ESP 1st 2019 -#> 591 La Liga M ESP 1st 2019 -#> 592 La Liga M ESP 1st 2019 -#> 593 La Liga M ESP 1st 2019 -#> 594 La Liga M ESP 1st 2019 -#> 595 La Liga M ESP 1st 2019 -#> 596 La Liga M ESP 1st 2019 -#> 597 La Liga M ESP 1st 2019 -#> 598 La Liga M ESP 1st 2019 -#> 599 La Liga M ESP 1st 2019 -#> 600 La Liga M ESP 1st 2019 -#> 601 La Liga M ESP 1st 2019 -#> 602 La Liga M ESP 1st 2019 -#> 603 La Liga M ESP 1st 2019 -#> 604 La Liga M ESP 1st 2019 -#> 605 La Liga M ESP 1st 2019 -#> 606 La Liga M ESP 1st 2019 -#> 607 La Liga M ESP 1st 2019 -#> 608 La Liga M ESP 1st 2019 -#> 609 La Liga M ESP 1st 2019 -#> 610 La Liga M ESP 1st 2019 -#> 611 La Liga M ESP 1st 2019 -#> 612 La Liga M ESP 1st 2019 -#> 613 La Liga M ESP 1st 2019 -#> 614 La Liga M ESP 1st 2019 -#> 615 La Liga M ESP 1st 2019 -#> 616 La Liga M ESP 1st 2019 -#> 617 La Liga M ESP 1st 2019 -#> 618 La Liga M ESP 1st 2019 -#> 619 La Liga M ESP 1st 2019 -#> 620 La Liga M ESP 1st 2019 -#> 621 La Liga M ESP 1st 2019 -#> 622 La Liga M ESP 1st 2019 -#> 623 La Liga M ESP 1st 2019 -#> 624 La Liga M ESP 1st 2019 -#> 625 La Liga M ESP 1st 2019 -#> 626 La Liga M ESP 1st 2019 -#> 627 La Liga M ESP 1st 2019 -#> 628 La Liga M ESP 1st 2019 -#> 629 La Liga M ESP 1st 2019 -#> 630 La Liga M ESP 1st 2019 -#> 631 La Liga M ESP 1st 2019 -#> 632 La Liga M ESP 1st 2019 -#> 633 La Liga M ESP 1st 2019 -#> 634 La Liga M ESP 1st 2019 -#> 635 La Liga M ESP 1st 2019 -#> 636 La Liga M ESP 1st 2019 -#> 637 La Liga M ESP 1st 2019 -#> 638 La Liga M ESP 1st 2019 -#> 639 La Liga M ESP 1st 2019 -#> 640 La Liga M ESP 1st 2019 -#> 641 La Liga M ESP 1st 2019 -#> 642 La Liga M ESP 1st 2019 -#> 643 La Liga M ESP 1st 2019 -#> 644 La Liga M ESP 1st 2019 -#> 645 La Liga M ESP 1st 2019 -#> 646 La Liga M ESP 1st 2019 -#> 647 La Liga M ESP 1st 2019 -#> 648 La Liga M ESP 1st 2019 -#> 649 La Liga M ESP 1st 2019 -#> 650 La Liga M ESP 1st 2019 -#> 651 La Liga M ESP 1st 2019 -#> 652 La Liga M ESP 1st 2019 -#> 653 La Liga M ESP 1st 2019 -#> 654 La Liga M ESP 1st 2019 -#> 655 La Liga M ESP 1st 2019 -#> 656 La Liga M ESP 1st 2019 -#> 657 La Liga M ESP 1st 2019 -#> 658 La Liga M ESP 1st 2019 -#> 659 La Liga M ESP 1st 2019 -#> 660 La Liga M ESP 1st 2019 -#> 661 La Liga M ESP 1st 2019 -#> 662 La Liga M ESP 1st 2019 -#> 663 La Liga M ESP 1st 2019 -#> 664 La Liga M ESP 1st 2019 -#> 665 La Liga M ESP 1st 2019 -#> 666 La Liga M ESP 1st 2019 -#> 667 La Liga M ESP 1st 2019 -#> 668 La Liga M ESP 1st 2019 -#> 669 La Liga M ESP 1st 2019 -#> 670 La Liga M ESP 1st 2019 -#> 671 La Liga M ESP 1st 2019 -#> 672 La Liga M ESP 1st 2019 -#> 673 La Liga M ESP 1st 2019 -#> 674 La Liga M ESP 1st 2019 -#> 675 La Liga M ESP 1st 2019 -#> 676 La Liga M ESP 1st 2019 -#> 677 La Liga M ESP 1st 2019 -#> 678 La Liga M ESP 1st 2019 -#> 679 La Liga M ESP 1st 2019 -#> 680 La Liga M ESP 1st 2019 -#> 681 La Liga M ESP 1st 2019 -#> 682 La Liga M ESP 1st 2019 -#> 683 La Liga M ESP 1st 2019 -#> 684 La Liga M ESP 1st 2019 -#> 685 La Liga M ESP 1st 2019 -#> 686 La Liga M ESP 1st 2019 -#> 687 La Liga M ESP 1st 2019 -#> 688 La Liga M ESP 1st 2019 -#> 689 La Liga M ESP 1st 2019 -#> 690 La Liga M ESP 1st 2019 -#> 691 La Liga M ESP 1st 2019 -#> 692 La Liga M ESP 1st 2019 -#> 693 La Liga M ESP 1st 2019 -#> 694 La Liga M ESP 1st 2019 -#> 695 La Liga M ESP 1st 2019 -#> 696 La Liga M ESP 1st 2019 -#> 697 La Liga M ESP 1st 2019 -#> 698 La Liga M ESP 1st 2019 -#> 699 La Liga M ESP 1st 2019 -#> 700 La Liga M ESP 1st 2019 -#> 701 La Liga M ESP 1st 2019 -#> 702 La Liga M ESP 1st 2019 -#> 703 La Liga M ESP 1st 2019 -#> 704 La Liga M ESP 1st 2019 -#> 705 La Liga M ESP 1st 2019 -#> 706 La Liga M ESP 1st 2019 -#> 707 La Liga M ESP 1st 2019 -#> 708 La Liga M ESP 1st 2019 -#> 709 La Liga M ESP 1st 2019 -#> 710 La Liga M ESP 1st 2019 -#> 711 La Liga M ESP 1st 2019 -#> 712 La Liga M ESP 1st 2019 -#> 713 La Liga M ESP 1st 2019 -#> 714 La Liga M ESP 1st 2019 -#> 715 La Liga M ESP 1st 2019 -#> 716 La Liga M ESP 1st 2019 -#> 717 La Liga M ESP 1st 2019 -#> 718 La Liga M ESP 1st 2019 -#> 719 La Liga M ESP 1st 2019 -#> 720 La Liga M ESP 1st 2019 -#> 721 La Liga M ESP 1st 2019 -#> 722 La Liga M ESP 1st 2019 -#> 723 La Liga M ESP 1st 2019 -#> 724 La Liga M ESP 1st 2019 -#> 725 La Liga M ESP 1st 2019 -#> 726 La Liga M ESP 1st 2019 -#> 727 La Liga M ESP 1st 2019 -#> 728 La Liga M ESP 1st 2019 -#> 729 La Liga M ESP 1st 2019 -#> 730 La Liga M ESP 1st 2019 -#> 731 La Liga M ESP 1st 2019 -#> 732 La Liga M ESP 1st 2019 -#> 733 La Liga M ESP 1st 2019 -#> 734 La Liga M ESP 1st 2019 -#> 735 La Liga M ESP 1st 2019 -#> 736 La Liga M ESP 1st 2019 -#> 737 La Liga M ESP 1st 2019 -#> 738 La Liga M ESP 1st 2019 -#> 739 La Liga M ESP 1st 2019 -#> 740 La Liga M ESP 1st 2019 -#> 741 La Liga M ESP 1st 2019 -#> 742 La Liga M ESP 1st 2019 -#> 743 La Liga M ESP 1st 2019 -#> 744 La Liga M ESP 1st 2019 -#> 745 La Liga M ESP 1st 2019 -#> 746 La Liga M ESP 1st 2019 -#> 747 La Liga M ESP 1st 2019 -#> 748 La Liga M ESP 1st 2019 -#> 749 La Liga M ESP 1st 2019 -#> 750 La Liga M ESP 1st 2019 -#> 751 La Liga M ESP 1st 2019 -#> 752 La Liga M ESP 1st 2019 -#> 753 La Liga M ESP 1st 2019 -#> 754 La Liga M ESP 1st 2019 -#> 755 La Liga M ESP 1st 2019 -#> 756 La Liga M ESP 1st 2019 -#> 757 La Liga M ESP 1st 2019 -#> 758 La Liga M ESP 1st 2019 -#> 759 La Liga M ESP 1st 2019 -#> 760 La Liga M ESP 1st 2019 -#> 761 La Liga M ESP 1st 2019 -#> 762 La Liga M ESP 1st 2019 -#> 763 La Liga M ESP 1st 2019 -#> 764 La Liga M ESP 1st 2019 -#> 765 La Liga M ESP 1st 2019 -#> 766 La Liga M ESP 1st 2019 -#> 767 La Liga M ESP 1st 2019 -#> 768 La Liga M ESP 1st 2019 -#> 769 La Liga M ESP 1st 2019 -#> 770 La Liga M ESP 1st 2019 -#> 771 La Liga M ESP 1st 2019 -#> 772 La Liga M ESP 1st 2019 -#> 773 La Liga M ESP 1st 2019 -#> 774 La Liga M ESP 1st 2019 -#> 775 La Liga M ESP 1st 2019 -#> 776 La Liga M ESP 1st 2019 -#> 777 La Liga M ESP 1st 2019 -#> 778 La Liga M ESP 1st 2019 -#> 779 La Liga M ESP 1st 2019 -#> 780 La Liga M ESP 1st 2019 -#> 781 La Liga M ESP 1st 2019 -#> 782 La Liga M ESP 1st 2019 -#> 783 La Liga M ESP 1st 2019 -#> 784 La Liga M ESP 1st 2019 -#> 785 La Liga M ESP 1st 2019 -#> 786 La Liga M ESP 1st 2019 -#> 787 La Liga M ESP 1st 2019 -#> 788 La Liga M ESP 1st 2019 -#> 789 La Liga M ESP 1st 2019 -#> 790 La Liga M ESP 1st 2019 -#> 791 La Liga M ESP 1st 2019 -#> 792 La Liga M ESP 1st 2019 -#> 793 La Liga M ESP 1st 2019 -#> 794 La Liga M ESP 1st 2019 -#> 795 La Liga M ESP 1st 2019 -#> 796 La Liga M ESP 1st 2019 -#> 797 La Liga M ESP 1st 2019 -#> 798 La Liga M ESP 1st 2019 -#> 799 La Liga M ESP 1st 2019 -#> 800 La Liga M ESP 1st 2019 -#> 801 La Liga M ESP 1st 2019 -#> 802 La Liga M ESP 1st 2019 -#> 803 La Liga M ESP 1st 2019 -#> 804 La Liga M ESP 1st 2019 -#> 805 La Liga M ESP 1st 2019 -#> 806 La Liga M ESP 1st 2019 -#> 807 La Liga M ESP 1st 2019 -#> 808 La Liga M ESP 1st 2019 -#> 809 La Liga M ESP 1st 2019 -#> 810 La Liga M ESP 1st 2019 -#> 811 La Liga M ESP 1st 2019 -#> 812 La Liga M ESP 1st 2019 -#> 813 La Liga M ESP 1st 2019 -#> 814 La Liga M ESP 1st 2019 -#> 815 La Liga M ESP 1st 2019 -#> 816 La Liga M ESP 1st 2019 -#> 817 La Liga M ESP 1st 2019 -#> 818 La Liga M ESP 1st 2019 -#> 819 La Liga M ESP 1st 2019 -#> 820 La Liga M ESP 1st 2019 -#> 821 La Liga M ESP 1st 2019 -#> 822 La Liga M ESP 1st 2019 -#> 823 La Liga M ESP 1st 2019 -#> 824 La Liga M ESP 1st 2019 -#> 825 La Liga M ESP 1st 2019 -#> 826 La Liga M ESP 1st 2019 -#> 827 La Liga M ESP 1st 2019 -#> 828 La Liga M ESP 1st 2019 -#> 829 La Liga M ESP 1st 2019 -#> 830 La Liga M ESP 1st 2019 -#> 831 La Liga M ESP 1st 2019 -#> 832 La Liga M ESP 1st 2019 -#> 833 La Liga M ESP 1st 2019 -#> 834 La Liga M ESP 1st 2019 -#> 835 La Liga M ESP 1st 2019 -#> 836 La Liga M ESP 1st 2019 -#> 837 La Liga M ESP 1st 2019 -#> 838 La Liga M ESP 1st 2019 -#> 839 La Liga M ESP 1st 2019 -#> 840 La Liga M ESP 1st 2019 -#> 841 La Liga M ESP 1st 2019 -#> 842 La Liga M ESP 1st 2019 -#> 843 La Liga M ESP 1st 2019 -#> 844 La Liga M ESP 1st 2019 -#> 845 La Liga M ESP 1st 2019 -#> 846 La Liga M ESP 1st 2019 -#> 847 La Liga M ESP 1st 2019 -#> 848 La Liga M ESP 1st 2019 -#> 849 La Liga M ESP 1st 2019 -#> 850 La Liga M ESP 1st 2019 -#> 851 La Liga M ESP 1st 2019 -#> 852 La Liga M ESP 1st 2019 -#> 853 La Liga M ESP 1st 2019 -#> 854 La Liga M ESP 1st 2019 -#> 855 La Liga M ESP 1st 2019 -#> 856 La Liga M ESP 1st 2019 -#> 857 La Liga M ESP 1st 2019 -#> 858 La Liga M ESP 1st 2019 -#> 859 La Liga M ESP 1st 2019 -#> 860 La Liga M ESP 1st 2019 -#> 861 La Liga M ESP 1st 2019 -#> 862 La Liga M ESP 1st 2019 -#> 863 La Liga M ESP 1st 2019 -#> 864 La Liga M ESP 1st 2019 -#> 865 La Liga M ESP 1st 2019 -#> 866 La Liga M ESP 1st 2019 -#> 867 La Liga M ESP 1st 2019 -#> 868 La Liga M ESP 1st 2019 -#> 869 La Liga M ESP 1st 2019 -#> 870 La Liga M ESP 1st 2019 -#> 871 La Liga M ESP 1st 2019 -#> 872 La Liga M ESP 1st 2019 -#> 873 La Liga M ESP 1st 2019 -#> 874 La Liga M ESP 1st 2019 -#> 875 La Liga M ESP 1st 2019 -#> 876 La Liga M ESP 1st 2019 -#> 877 La Liga M ESP 1st 2019 -#> 878 La Liga M ESP 1st 2019 -#> 879 La Liga M ESP 1st 2019 -#> 880 La Liga M ESP 1st 2019 -#> 881 La Liga M ESP 1st 2019 -#> 882 La Liga M ESP 1st 2019 -#> 883 La Liga M ESP 1st 2019 -#> 884 La Liga M ESP 1st 2019 -#> 885 La Liga M ESP 1st 2019 -#> 886 La Liga M ESP 1st 2019 -#> 887 La Liga M ESP 1st 2019 -#> 888 La Liga M ESP 1st 2019 -#> 889 La Liga M ESP 1st 2019 -#> 890 La Liga M ESP 1st 2019 -#> 891 La Liga M ESP 1st 2019 -#> 892 La Liga M ESP 1st 2019 -#> 893 La Liga M ESP 1st 2019 -#> 894 La Liga M ESP 1st 2019 -#> 895 La Liga M ESP 1st 2019 -#> 896 La Liga M ESP 1st 2019 -#> 897 La Liga M ESP 1st 2019 -#> 898 La Liga M ESP 1st 2019 -#> 899 La Liga M ESP 1st 2019 -#> 900 La Liga M ESP 1st 2019 -#> 901 La Liga M ESP 1st 2019 -#> 902 La Liga M ESP 1st 2019 -#> 903 La Liga M ESP 1st 2019 -#> 904 La Liga M ESP 1st 2019 -#> 905 La Liga M ESP 1st 2019 -#> 906 La Liga M ESP 1st 2019 -#> 907 La Liga M ESP 1st 2019 -#> 908 La Liga M ESP 1st 2019 -#> 909 La Liga M ESP 1st 2019 -#> 910 La Liga M ESP 1st 2019 -#> 911 La Liga M ESP 1st 2019 -#> 912 La Liga M ESP 1st 2019 -#> 913 La Liga M ESP 1st 2019 -#> 914 La Liga M ESP 1st 2019 -#> 915 La Liga M ESP 1st 2019 -#> 916 La Liga M ESP 1st 2019 -#> 917 La Liga M ESP 1st 2019 -#> 918 La Liga M ESP 1st 2019 -#> 919 La Liga M ESP 1st 2019 -#> 920 La Liga M ESP 1st 2019 -#> 921 La Liga M ESP 1st 2019 -#> 922 La Liga M ESP 1st 2019 -#> 923 La Liga M ESP 1st 2019 -#> 924 La Liga M ESP 1st 2019 -#> 925 La Liga M ESP 1st 2019 -#> 926 La Liga M ESP 1st 2019 -#> 927 La Liga M ESP 1st 2019 -#> 928 La Liga M ESP 1st 2019 -#> 929 La Liga M ESP 1st 2019 -#> 930 La Liga M ESP 1st 2019 -#> 931 La Liga M ESP 1st 2019 -#> 932 La Liga M ESP 1st 2019 -#> 933 La Liga M ESP 1st 2019 -#> 934 La Liga M ESP 1st 2019 -#> 935 La Liga M ESP 1st 2019 -#> 936 La Liga M ESP 1st 2019 -#> 937 La Liga M ESP 1st 2019 -#> 938 La Liga M ESP 1st 2019 -#> 939 La Liga M ESP 1st 2019 -#> 940 La Liga M ESP 1st 2019 -#> 941 La Liga M ESP 1st 2019 -#> 942 La Liga M ESP 1st 2019 -#> 943 La Liga M ESP 1st 2019 -#> 944 La Liga M ESP 1st 2019 -#> 945 La Liga M ESP 1st 2019 -#> 946 La Liga M ESP 1st 2019 -#> 947 La Liga M ESP 1st 2019 -#> 948 La Liga M ESP 1st 2019 -#> 949 La Liga M ESP 1st 2019 -#> 950 La Liga M ESP 1st 2019 -#> 951 La Liga M ESP 1st 2019 -#> 952 La Liga M ESP 1st 2019 -#> 953 La Liga M ESP 1st 2019 -#> 954 La Liga M ESP 1st 2019 -#> 955 La Liga M ESP 1st 2019 -#> 956 La Liga M ESP 1st 2019 -#> 957 La Liga M ESP 1st 2019 -#> 958 La Liga M ESP 1st 2019 -#> 959 La Liga M ESP 1st 2019 -#> 960 La Liga M ESP 1st 2019 -#> 961 La Liga M ESP 1st 2019 -#> 962 La Liga M ESP 1st 2019 -#> 963 La Liga M ESP 1st 2019 -#> 964 La Liga M ESP 1st 2019 -#> 965 La Liga M ESP 1st 2019 -#> 966 La Liga M ESP 1st 2019 -#> 967 La Liga M ESP 1st 2019 -#> 968 La Liga M ESP 1st 2019 -#> 969 La Liga M ESP 1st 2019 -#> 970 La Liga M ESP 1st 2019 -#> 971 La Liga M ESP 1st 2019 -#> 972 La Liga M ESP 1st 2019 -#> 973 La Liga M ESP 1st 2019 -#> 974 La Liga M ESP 1st 2019 -#> 975 La Liga M ESP 1st 2019 -#> 976 La Liga M ESP 1st 2019 -#> 977 La Liga M ESP 1st 2019 -#> 978 La Liga M ESP 1st 2019 -#> 979 La Liga M ESP 1st 2019 -#> 980 La Liga M ESP 1st 2019 -#> 981 La Liga M ESP 1st 2019 -#> 982 La Liga M ESP 1st 2019 -#> 983 La Liga M ESP 1st 2019 -#> 984 La Liga M ESP 1st 2019 -#> 985 La Liga M ESP 1st 2019 -#> 986 La Liga M ESP 1st 2019 -#> 987 La Liga M ESP 1st 2019 -#> 988 La Liga M ESP 1st 2019 -#> 989 La Liga M ESP 1st 2019 -#> 990 La Liga M ESP 1st 2019 -#> 991 La Liga M ESP 1st 2019 -#> 992 La Liga M ESP 1st 2019 -#> 993 La Liga M ESP 1st 2019 -#> 994 La Liga M ESP 1st 2019 -#> 995 La Liga M ESP 1st 2019 -#> 996 La Liga M ESP 1st 2019 -#> 997 La Liga M ESP 1st 2019 -#> 998 La Liga M ESP 1st 2019 -#> 999 La Liga M ESP 1st 2019 -#> 1000 La Liga M ESP 1st 2019 -#> 1001 La Liga M ESP 1st 2019 -#> 1002 La Liga M ESP 1st 2019 -#> 1003 La Liga M ESP 1st 2019 -#> 1004 La Liga M ESP 1st 2019 -#> 1005 La Liga M ESP 1st 2019 -#> 1006 La Liga M ESP 1st 2019 -#> 1007 La Liga M ESP 1st 2019 -#> 1008 La Liga M ESP 1st 2019 -#> 1009 La Liga M ESP 1st 2019 -#> 1010 La Liga M ESP 1st 2019 -#> 1011 La Liga M ESP 1st 2019 -#> 1012 La Liga M ESP 1st 2019 -#> 1013 La Liga M ESP 1st 2019 -#> 1014 La Liga M ESP 1st 2019 -#> 1015 La Liga M ESP 1st 2019 -#> 1016 La Liga M ESP 1st 2019 -#> 1017 La Liga M ESP 1st 2019 -#> 1018 La Liga M ESP 1st 2019 -#> 1019 La Liga M ESP 1st 2019 -#> 1020 La Liga M ESP 1st 2019 -#> 1021 La Liga M ESP 1st 2019 -#> 1022 La Liga M ESP 1st 2019 -#> 1023 La Liga M ESP 1st 2019 -#> 1024 La Liga M ESP 1st 2019 -#> 1025 La Liga M ESP 1st 2019 -#> 1026 La Liga M ESP 1st 2019 -#> 1027 La Liga M ESP 1st 2019 -#> 1028 La Liga M ESP 1st 2019 -#> 1029 La Liga M ESP 1st 2019 -#> 1030 La Liga M ESP 1st 2019 -#> 1031 La Liga M ESP 1st 2019 -#> 1032 La Liga M ESP 1st 2019 -#> 1033 La Liga M ESP 1st 2019 -#> 1034 La Liga M ESP 1st 2019 -#> 1035 La Liga M ESP 1st 2019 -#> 1036 La Liga M ESP 1st 2019 -#> 1037 La Liga M ESP 1st 2019 -#> 1038 La Liga M ESP 1st 2019 -#> 1039 La Liga M ESP 1st 2019 -#> 1040 La Liga M ESP 1st 2019 -#> 1041 La Liga M ESP 1st 2019 -#> 1042 La Liga M ESP 1st 2019 -#> 1043 La Liga M ESP 1st 2019 -#> 1044 La Liga M ESP 1st 2019 -#> 1045 La Liga M ESP 1st 2019 -#> 1046 La Liga M ESP 1st 2019 -#> 1047 La Liga M ESP 1st 2019 -#> 1048 La Liga M ESP 1st 2019 -#> 1049 La Liga M ESP 1st 2019 -#> 1050 La Liga M ESP 1st 2019 -#> 1051 La Liga M ESP 1st 2019 -#> 1052 La Liga M ESP 1st 2019 -#> 1053 La Liga M ESP 1st 2019 -#> 1054 La Liga M ESP 1st 2019 -#> 1055 La Liga M ESP 1st 2019 -#> 1056 La Liga M ESP 1st 2019 -#> 1057 La Liga M ESP 1st 2019 -#> 1058 La Liga M ESP 1st 2019 -#> 1059 La Liga M ESP 1st 2019 -#> 1060 La Liga M ESP 1st 2019 -#> 1061 La Liga M ESP 1st 2019 -#> 1062 La Liga M ESP 1st 2019 -#> 1063 La Liga M ESP 1st 2019 -#> 1064 La Liga M ESP 1st 2019 -#> 1065 La Liga M ESP 1st 2019 -#> 1066 La Liga M ESP 1st 2019 -#> 1067 La Liga M ESP 1st 2019 -#> 1068 La Liga M ESP 1st 2019 -#> 1069 La Liga M ESP 1st 2019 -#> 1070 La Liga M ESP 1st 2019 -#> 1071 La Liga M ESP 1st 2019 -#> 1072 La Liga M ESP 1st 2019 -#> 1073 La Liga M ESP 1st 2019 -#> 1074 La Liga M ESP 1st 2019 -#> 1075 La Liga M ESP 1st 2019 -#> 1076 La Liga M ESP 1st 2019 -#> 1077 La Liga M ESP 1st 2019 -#> 1078 La Liga M ESP 1st 2019 -#> 1079 La Liga M ESP 1st 2019 -#> 1080 La Liga M ESP 1st 2019 -#> 1081 La Liga M ESP 1st 2019 -#> 1082 La Liga M ESP 1st 2019 -#> 1083 La Liga M ESP 1st 2019 -#> 1084 La Liga M ESP 1st 2019 -#> 1085 La Liga M ESP 1st 2019 -#> 1086 La Liga M ESP 1st 2019 -#> 1087 La Liga M ESP 1st 2019 -#> 1088 La Liga M ESP 1st 2019 -#> 1089 La Liga M ESP 1st 2019 -#> 1090 La Liga M ESP 1st 2019 -#> 1091 La Liga M ESP 1st 2019 -#> 1092 La Liga M ESP 1st 2019 -#> 1093 La Liga M ESP 1st 2019 -#> 1094 La Liga M ESP 1st 2019 -#> 1095 La Liga M ESP 1st 2019 -#> 1096 La Liga M ESP 1st 2019 -#> 1097 La Liga M ESP 1st 2019 -#> 1098 La Liga M ESP 1st 2019 -#> 1099 La Liga M ESP 1st 2019 -#> 1100 La Liga M ESP 1st 2019 -#> 1101 La Liga M ESP 1st 2019 -#> 1102 La Liga M ESP 1st 2019 -#> 1103 La Liga M ESP 1st 2019 -#> 1104 La Liga M ESP 1st 2019 -#> 1105 La Liga M ESP 1st 2019 -#> 1106 La Liga M ESP 1st 2019 -#> 1107 La Liga M ESP 1st 2019 -#> 1108 La Liga M ESP 1st 2019 -#> 1109 La Liga M ESP 1st 2019 -#> 1110 La Liga M ESP 1st 2019 -#> 1111 La Liga M ESP 1st 2019 -#> 1112 La Liga M ESP 1st 2019 -#> 1113 La Liga M ESP 1st 2019 -#> 1114 La Liga M ESP 1st 2019 -#> 1115 La Liga M ESP 1st 2019 -#> 1116 La Liga M ESP 1st 2019 -#> 1117 La Liga M ESP 1st 2019 -#> 1118 La Liga M ESP 1st 2019 -#> 1119 La Liga M ESP 1st 2019 -#> 1120 La Liga M ESP 1st 2019 -#> 1121 La Liga M ESP 1st 2019 -#> 1122 La Liga M ESP 1st 2019 -#> 1123 La Liga M ESP 1st 2019 -#> 1124 La Liga M ESP 1st 2019 -#> 1125 La Liga M ESP 1st 2019 -#> 1126 La Liga M ESP 1st 2019 -#> 1127 La Liga M ESP 1st 2019 -#> 1128 La Liga M ESP 1st 2019 -#> 1129 La Liga M ESP 1st 2019 -#> 1130 La Liga M ESP 1st 2019 -#> 1131 La Liga M ESP 1st 2019 -#> 1132 La Liga M ESP 1st 2019 -#> 1133 La Liga M ESP 1st 2019 -#> 1134 La Liga M ESP 1st 2019 -#> 1135 La Liga M ESP 1st 2019 -#> 1136 La Liga M ESP 1st 2019 -#> 1137 La Liga M ESP 1st 2019 -#> 1138 La Liga M ESP 1st 2019 -#> 1139 La Liga M ESP 1st 2019 -#> 1140 La Liga M ESP 1st 2019 -#> 1141 La Liga M ESP 1st 2019 -#> 1142 La Liga M ESP 1st 2019 -#> 1143 La Liga M ESP 1st 2019 -#> 1144 La Liga M ESP 1st 2019 -#> 1145 La Liga M ESP 1st 2019 -#> 1146 La Liga M ESP 1st 2019 -#> 1147 La Liga M ESP 1st 2019 -#> 1148 La Liga M ESP 1st 2019 -#> 1149 La Liga M ESP 1st 2019 -#> 1150 La Liga M ESP 1st 2019 -#> 1151 La Liga M ESP 1st 2019 -#> 1152 La Liga M ESP 1st 2019 -#> 1153 La Liga M ESP 1st 2019 -#> 1154 La Liga M ESP 1st 2019 -#> 1155 La Liga M ESP 1st 2019 -#> 1156 La Liga M ESP 1st 2019 -#> 1157 La Liga M ESP 1st 2019 -#> 1158 La Liga M ESP 1st 2019 -#> 1159 La Liga M ESP 1st 2019 -#> 1160 La Liga M ESP 1st 2019 -#> 1161 La Liga M ESP 1st 2019 -#> 1162 La Liga M ESP 1st 2019 -#> 1163 La Liga M ESP 1st 2019 -#> 1164 La Liga M ESP 1st 2019 -#> 1165 La Liga M ESP 1st 2019 -#> 1166 La Liga M ESP 1st 2019 -#> 1167 La Liga M ESP 1st 2019 -#> 1168 La Liga M ESP 1st 2019 -#> 1169 La Liga M ESP 1st 2019 -#> 1170 La Liga M ESP 1st 2019 -#> 1171 La Liga M ESP 1st 2019 -#> 1172 La Liga M ESP 1st 2019 -#> 1173 La Liga M ESP 1st 2019 -#> 1174 La Liga M ESP 1st 2019 -#> 1175 La Liga M ESP 1st 2019 -#> 1176 La Liga M ESP 1st 2019 -#> 1177 La Liga M ESP 1st 2019 -#> 1178 La Liga M ESP 1st 2019 -#> 1179 La Liga M ESP 1st 2019 -#> 1180 La Liga M ESP 1st 2019 -#> 1181 La Liga M ESP 1st 2019 -#> 1182 La Liga M ESP 1st 2019 -#> 1183 La Liga M ESP 1st 2019 -#> 1184 La Liga M ESP 1st 2019 -#> 1185 La Liga M ESP 1st 2019 -#> 1186 La Liga M ESP 1st 2019 -#> 1187 La Liga M ESP 1st 2019 -#> 1188 La Liga M ESP 1st 2019 -#> 1189 La Liga M ESP 1st 2019 -#> 1190 La Liga M ESP 1st 2019 -#> 1191 La Liga M ESP 1st 2019 -#> 1192 La Liga M ESP 1st 2019 -#> 1193 La Liga M ESP 1st 2019 -#> 1194 La Liga M ESP 1st 2019 -#> 1195 La Liga M ESP 1st 2019 -#> 1196 La Liga M ESP 1st 2019 -#> 1197 La Liga M ESP 1st 2019 -#> 1198 La Liga M ESP 1st 2019 -#> 1199 La Liga M ESP 1st 2019 -#> 1200 La Liga M ESP 1st 2019 -#> 1201 La Liga M ESP 1st 2019 -#> 1202 La Liga M ESP 1st 2019 -#> 1203 La Liga M ESP 1st 2019 -#> 1204 La Liga M ESP 1st 2019 -#> 1205 La Liga M ESP 1st 2019 -#> 1206 La Liga M ESP 1st 2019 -#> 1207 La Liga M ESP 1st 2019 -#> 1208 La Liga M ESP 1st 2019 -#> 1209 La Liga M ESP 1st 2019 -#> 1210 La Liga M ESP 1st 2019 -#> 1211 La Liga M ESP 1st 2019 -#> 1212 La Liga M ESP 1st 2019 -#> 1213 La Liga M ESP 1st 2019 -#> 1214 La Liga M ESP 1st 2019 -#> 1215 La Liga M ESP 1st 2019 -#> 1216 La Liga M ESP 1st 2019 -#> 1217 La Liga M ESP 1st 2019 -#> 1218 La Liga M ESP 1st 2019 -#> 1219 La Liga M ESP 1st 2019 -#> 1220 La Liga M ESP 1st 2019 -#> 1221 La Liga M ESP 1st 2019 -#> 1222 La Liga M ESP 1st 2019 -#> 1223 La Liga M ESP 1st 2019 -#> 1224 La Liga M ESP 1st 2019 -#> 1225 La Liga M ESP 1st 2019 -#> 1226 La Liga M ESP 1st 2019 -#> 1227 La Liga M ESP 1st 2019 -#> 1228 La Liga M ESP 1st 2019 -#> 1229 La Liga M ESP 1st 2019 -#> 1230 La Liga M ESP 1st 2019 -#> 1231 La Liga M ESP 1st 2019 -#> 1232 La Liga M ESP 1st 2019 -#> 1233 La Liga M ESP 1st 2019 -#> 1234 La Liga M ESP 1st 2019 -#> 1235 La Liga M ESP 1st 2019 -#> 1236 La Liga M ESP 1st 2019 -#> 1237 La Liga M ESP 1st 2019 -#> 1238 La Liga M ESP 1st 2019 -#> 1239 La Liga M ESP 1st 2019 -#> 1240 La Liga M ESP 1st 2019 -#> 1241 La Liga M ESP 1st 2019 -#> 1242 La Liga M ESP 1st 2019 -#> 1243 La Liga M ESP 1st 2019 -#> 1244 La Liga M ESP 1st 2019 -#> 1245 La Liga M ESP 1st 2019 -#> 1246 La Liga M ESP 1st 2019 -#> 1247 La Liga M ESP 1st 2019 -#> 1248 La Liga M ESP 1st 2019 -#> 1249 La Liga M ESP 1st 2019 -#> 1250 La Liga M ESP 1st 2019 -#> 1251 La Liga M ESP 1st 2019 -#> 1252 La Liga M ESP 1st 2019 -#> 1253 La Liga M ESP 1st 2019 -#> 1254 La Liga M ESP 1st 2019 -#> 1255 La Liga M ESP 1st 2019 -#> 1256 La Liga M ESP 1st 2019 -#> 1257 La Liga M ESP 1st 2019 -#> 1258 La Liga M ESP 1st 2019 -#> 1259 La Liga M ESP 1st 2019 -#> 1260 La Liga M ESP 1st 2019 -#> 1261 La Liga M ESP 1st 2019 -#> 1262 La Liga M ESP 1st 2019 -#> 1263 La Liga M ESP 1st 2019 -#> 1264 La Liga M ESP 1st 2019 -#> 1265 La Liga M ESP 1st 2019 -#> 1266 La Liga M ESP 1st 2019 -#> 1267 La Liga M ESP 1st 2019 -#> 1268 La Liga M ESP 1st 2019 -#> 1269 La Liga M ESP 1st 2019 -#> 1270 La Liga M ESP 1st 2019 -#> 1271 La Liga M ESP 1st 2019 -#> 1272 La Liga M ESP 1st 2019 -#> 1273 La Liga M ESP 1st 2019 -#> 1274 La Liga M ESP 1st 2019 -#> 1275 La Liga M ESP 1st 2019 -#> 1276 La Liga M ESP 1st 2019 -#> 1277 La Liga M ESP 1st 2019 -#> 1278 La Liga M ESP 1st 2019 -#> 1279 La Liga M ESP 1st 2019 -#> 1280 La Liga M ESP 1st 2019 -#> 1281 La Liga M ESP 1st 2019 -#> 1282 La Liga M ESP 1st 2019 -#> 1283 La Liga M ESP 1st 2019 -#> 1284 La Liga M ESP 1st 2019 -#> 1285 La Liga M ESP 1st 2019 -#> 1286 La Liga M ESP 1st 2019 -#> 1287 La Liga M ESP 1st 2019 -#> 1288 La Liga M ESP 1st 2019 -#> 1289 La Liga M ESP 1st 2019 -#> 1290 La Liga M ESP 1st 2019 -#> 1291 La Liga M ESP 1st 2019 -#> 1292 La Liga M ESP 1st 2019 -#> 1293 La Liga M ESP 1st 2019 -#> 1294 La Liga M ESP 1st 2019 -#> 1295 La Liga M ESP 1st 2019 -#> 1296 La Liga M ESP 1st 2019 -#> 1297 La Liga M ESP 1st 2019 -#> 1298 La Liga M ESP 1st 2019 -#> 1299 La Liga M ESP 1st 2019 -#> 1300 La Liga M ESP 1st 2019 -#> 1301 La Liga M ESP 1st 2019 -#> 1302 La Liga M ESP 1st 2019 -#> 1303 La Liga M ESP 1st 2019 -#> 1304 La Liga M ESP 1st 2019 -#> 1305 La Liga M ESP 1st 2019 -#> 1306 La Liga M ESP 1st 2019 -#> 1307 La Liga M ESP 1st 2019 -#> 1308 La Liga M ESP 1st 2019 -#> 1309 La Liga M ESP 1st 2019 -#> 1310 La Liga M ESP 1st 2019 -#> 1311 La Liga M ESP 1st 2019 -#> 1312 La Liga M ESP 1st 2019 -#> 1313 La Liga M ESP 1st 2019 -#> 1314 La Liga M ESP 1st 2019 -#> 1315 La Liga M ESP 1st 2019 -#> 1316 La Liga M ESP 1st 2019 -#> 1317 La Liga M ESP 1st 2019 -#> 1318 La Liga M ESP 1st 2019 -#> 1319 La Liga M ESP 1st 2019 -#> 1320 La Liga M ESP 1st 2019 -#> 1321 La Liga M ESP 1st 2019 -#> 1322 La Liga M ESP 1st 2019 -#> 1323 La Liga M ESP 1st 2019 -#> 1324 La Liga M ESP 1st 2019 -#> 1325 La Liga M ESP 1st 2019 -#> 1326 La Liga M ESP 1st 2019 -#> 1327 La Liga M ESP 1st 2019 -#> 1328 La Liga M ESP 1st 2019 -#> 1329 La Liga M ESP 1st 2019 -#> 1330 La Liga M ESP 1st 2019 -#> 1331 La Liga M ESP 1st 2019 -#> 1332 La Liga M ESP 1st 2019 -#> 1333 La Liga M ESP 1st 2019 -#> 1334 La Liga M ESP 1st 2019 -#> 1335 La Liga M ESP 1st 2019 -#> 1336 La Liga M ESP 1st 2019 -#> 1337 La Liga M ESP 1st 2019 -#> 1338 La Liga M ESP 1st 2019 -#> 1339 La Liga M ESP 1st 2019 -#> 1340 La Liga M ESP 1st 2019 -#> 1341 La Liga M ESP 1st 2019 -#> 1342 La Liga M ESP 1st 2019 -#> 1343 La Liga M ESP 1st 2019 -#> 1344 La Liga M ESP 1st 2019 -#> 1345 La Liga M ESP 1st 2019 -#> 1346 La Liga M ESP 1st 2019 -#> 1347 La Liga M ESP 1st 2019 -#> 1348 La Liga M ESP 1st 2019 -#> 1349 La Liga M ESP 1st 2019 -#> 1350 La Liga M ESP 1st 2019 -#> 1351 La Liga M ESP 1st 2019 -#> 1352 La Liga M ESP 1st 2019 -#> 1353 La Liga M ESP 1st 2019 -#> 1354 La Liga M ESP 1st 2019 -#> 1355 La Liga M ESP 1st 2019 -#> 1356 La Liga M ESP 1st 2019 -#> 1357 La Liga M ESP 1st 2019 -#> 1358 La Liga M ESP 1st 2019 -#> 1359 La Liga M ESP 1st 2019 -#> 1360 La Liga M ESP 1st 2019 -#> 1361 La Liga M ESP 1st 2019 -#> 1362 La Liga M ESP 1st 2019 -#> 1363 La Liga M ESP 1st 2019 -#> 1364 La Liga M ESP 1st 2019 -#> 1365 La Liga M ESP 1st 2019 -#> 1366 La Liga M ESP 1st 2019 -#> 1367 La Liga M ESP 1st 2019 -#> 1368 La Liga M ESP 1st 2019 -#> 1369 La Liga M ESP 1st 2019 -#> 1370 La Liga M ESP 1st 2019 -#> 1371 La Liga M ESP 1st 2019 -#> 1372 La Liga M ESP 1st 2019 -#> 1373 La Liga M ESP 1st 2019 -#> 1374 La Liga M ESP 1st 2019 -#> 1375 La Liga M ESP 1st 2019 -#> 1376 La Liga M ESP 1st 2019 -#> 1377 La Liga M ESP 1st 2019 -#> 1378 La Liga M ESP 1st 2019 -#> 1379 La Liga M ESP 1st 2019 -#> 1380 La Liga M ESP 1st 2019 -#> 1381 La Liga M ESP 1st 2019 -#> 1382 La Liga M ESP 1st 2019 -#> 1383 La Liga M ESP 1st 2019 -#> 1384 La Liga M ESP 1st 2019 -#> 1385 La Liga M ESP 1st 2019 -#> 1386 La Liga M ESP 1st 2019 -#> 1387 La Liga M ESP 1st 2019 -#> 1388 La Liga M ESP 1st 2019 -#> 1389 La Liga M ESP 1st 2019 -#> 1390 La Liga M ESP 1st 2019 -#> 1391 La Liga M ESP 1st 2019 -#> 1392 La Liga M ESP 1st 2019 -#> 1393 La Liga M ESP 1st 2019 -#> 1394 La Liga M ESP 1st 2019 -#> 1395 La Liga M ESP 1st 2019 -#> 1396 La Liga M ESP 1st 2019 -#> 1397 La Liga M ESP 1st 2019 -#> 1398 La Liga M ESP 1st 2019 -#> 1399 La Liga M ESP 1st 2019 -#> 1400 La Liga M ESP 1st 2019 -#> 1401 La Liga M ESP 1st 2019 -#> 1402 La Liga M ESP 1st 2019 -#> 1403 La Liga M ESP 1st 2019 -#> 1404 La Liga M ESP 1st 2019 -#> 1405 La Liga M ESP 1st 2019 -#> 1406 La Liga M ESP 1st 2019 -#> 1407 La Liga M ESP 1st 2019 -#> 1408 La Liga M ESP 1st 2019 -#> 1409 La Liga M ESP 1st 2019 -#> 1410 La Liga M ESP 1st 2019 -#> 1411 La Liga M ESP 1st 2019 -#> 1412 La Liga M ESP 1st 2019 -#> 1413 La Liga M ESP 1st 2019 -#> 1414 La Liga M ESP 1st 2019 -#> 1415 La Liga M ESP 1st 2019 -#> 1416 La Liga M ESP 1st 2019 -#> 1417 La Liga M ESP 1st 2019 -#> 1418 La Liga M ESP 1st 2019 -#> 1419 La Liga M ESP 1st 2019 -#> 1420 La Liga M ESP 1st 2019 -#> 1421 La Liga M ESP 1st 2019 -#> 1422 La Liga M ESP 1st 2019 -#> 1423 La Liga M ESP 1st 2019 -#> 1424 La Liga M ESP 1st 2019 -#> 1425 La Liga M ESP 1st 2019 -#> 1426 La Liga M ESP 1st 2019 -#> 1427 La Liga M ESP 1st 2019 -#> 1428 La Liga M ESP 1st 2019 -#> 1429 La Liga M ESP 1st 2019 -#> 1430 La Liga M ESP 1st 2019 -#> 1431 La Liga M ESP 1st 2019 -#> 1432 La Liga M ESP 1st 2019 -#> 1433 La Liga M ESP 1st 2019 -#> 1434 La Liga M ESP 1st 2019 -#> 1435 La Liga M ESP 1st 2019 -#> 1436 La Liga M ESP 1st 2019 -#> 1437 La Liga M ESP 1st 2019 -#> 1438 La Liga M ESP 1st 2019 -#> 1439 La Liga M ESP 1st 2019 -#> 1440 La Liga M ESP 1st 2019 -#> 1441 La Liga M ESP 1st 2019 -#> 1442 La Liga M ESP 1st 2019 -#> 1443 La Liga M ESP 1st 2019 -#> 1444 La Liga M ESP 1st 2019 -#> 1445 La Liga M ESP 1st 2019 -#> 1446 La Liga M ESP 1st 2019 -#> 1447 La Liga M ESP 1st 2019 -#> 1448 La Liga M ESP 1st 2019 -#> 1449 La Liga M ESP 1st 2019 -#> 1450 La Liga M ESP 1st 2019 -#> 1451 La Liga M ESP 1st 2019 -#> 1452 La Liga M ESP 1st 2019 -#> 1453 La Liga M ESP 1st 2019 -#> 1454 La Liga M ESP 1st 2019 -#> 1455 La Liga M ESP 1st 2019 -#> 1456 La Liga M ESP 1st 2019 -#> 1457 La Liga M ESP 1st 2019 -#> 1458 La Liga M ESP 1st 2019 -#> 1459 La Liga M ESP 1st 2019 -#> 1460 La Liga M ESP 1st 2019 -#> 1461 La Liga M ESP 1st 2019 -#> 1462 La Liga M ESP 1st 2019 -#> 1463 La Liga M ESP 1st 2019 -#> 1464 La Liga M ESP 1st 2019 -#> 1465 La Liga M ESP 1st 2019 -#> 1466 La Liga M ESP 1st 2019 -#> 1467 La Liga M ESP 1st 2019 -#> 1468 La Liga M ESP 1st 2019 -#> 1469 La Liga M ESP 1st 2019 -#> 1470 La Liga M ESP 1st 2019 -#> 1471 La Liga M ESP 1st 2019 -#> 1472 La Liga M ESP 1st 2019 -#> 1473 La Liga M ESP 1st 2019 -#> 1474 La Liga M ESP 1st 2019 -#> 1475 La Liga M ESP 1st 2019 -#> 1476 La Liga M ESP 1st 2019 -#> 1477 La Liga M ESP 1st 2019 -#> 1478 La Liga M ESP 1st 2019 -#> 1479 La Liga M ESP 1st 2019 -#> 1480 La Liga M ESP 1st 2019 -#> 1481 La Liga M ESP 1st 2019 -#> 1482 La Liga M ESP 1st 2019 -#> 1483 La Liga M ESP 1st 2019 -#> 1484 La Liga M ESP 1st 2019 -#> 1485 La Liga M ESP 1st 2019 -#> 1486 La Liga M ESP 1st 2019 -#> 1487 La Liga M ESP 1st 2019 -#> 1488 La Liga M ESP 1st 2019 -#> 1489 La Liga M ESP 1st 2019 -#> 1490 La Liga M ESP 1st 2019 -#> 1491 La Liga M ESP 1st 2019 -#> 1492 La Liga M ESP 1st 2019 -#> 1493 La Liga M ESP 1st 2019 -#> 1494 La Liga M ESP 1st 2019 -#> 1495 La Liga M ESP 1st 2019 -#> 1496 La Liga M ESP 1st 2019 -#> 1497 La Liga M ESP 1st 2019 -#> 1498 La Liga M ESP 1st 2019 -#> 1499 La Liga M ESP 1st 2019 -#> 1500 La Liga M ESP 1st 2019 -#> 1501 La Liga M ESP 1st 2019 -#> 1502 La Liga M ESP 1st 2019 -#> 1503 La Liga M ESP 1st 2019 -#> 1504 La Liga M ESP 1st 2019 -#> 1505 La Liga M ESP 1st 2019 -#> 1506 La Liga M ESP 1st 2019 -#> 1507 La Liga M ESP 1st 2019 -#> 1508 La Liga M ESP 1st 2019 -#> 1509 La Liga M ESP 1st 2019 -#> 1510 La Liga M ESP 1st 2019 -#> 1511 La Liga M ESP 1st 2019 -#> 1512 La Liga M ESP 1st 2019 -#> 1513 La Liga M ESP 1st 2019 -#> 1514 La Liga M ESP 1st 2019 -#> 1515 La Liga M ESP 1st 2019 -#> 1516 La Liga M ESP 1st 2019 -#> 1517 La Liga M ESP 1st 2019 -#> 1518 La Liga M ESP 1st 2019 -#> 1519 La Liga M ESP 1st 2019 -#> 1520 La Liga M ESP 1st 2019 -#> 1521 La Liga M ESP 1st 2019 -#> 1522 La Liga M ESP 1st 2019 -#> 1523 La Liga M ESP 1st 2019 -#> 1524 La Liga M ESP 1st 2019 -#> 1525 La Liga M ESP 1st 2019 -#> 1526 La Liga M ESP 1st 2019 -#> 1527 La Liga M ESP 1st 2019 -#> 1528 La Liga M ESP 1st 2019 -#> 1529 La Liga M ESP 1st 2019 -#> 1530 La Liga M ESP 1st 2019 -#> 1531 La Liga M ESP 1st 2019 -#> 1532 La Liga M ESP 1st 2019 -#> 1533 La Liga M ESP 1st 2019 -#> 1534 La Liga M ESP 1st 2019 -#> 1535 La Liga M ESP 1st 2019 -#> 1536 La Liga M ESP 1st 2019 -#> 1537 La Liga M ESP 1st 2019 -#> 1538 La Liga M ESP 1st 2019 -#> 1539 La Liga M ESP 1st 2019 -#> 1540 La Liga M ESP 1st 2019 -#> 1541 La Liga M ESP 1st 2019 -#> 1542 La Liga M ESP 1st 2019 -#> 1543 La Liga M ESP 1st 2019 -#> 1544 La Liga M ESP 1st 2019 -#> 1545 La Liga M ESP 1st 2019 -#> 1546 La Liga M ESP 1st 2019 -#> 1547 La Liga M ESP 1st 2019 -#> 1548 La Liga M ESP 1st 2019 -#> 1549 La Liga M ESP 1st 2019 -#> 1550 La Liga M ESP 1st 2019 -#> 1551 La Liga M ESP 1st 2019 -#> 1552 La Liga M ESP 1st 2019 -#> 1553 La Liga M ESP 1st 2019 -#> 1554 La Liga M ESP 1st 2019 -#> 1555 La Liga M ESP 1st 2019 -#> 1556 La Liga M ESP 1st 2019 -#> 1557 La Liga M ESP 1st 2019 -#> 1558 La Liga M ESP 1st 2019 -#> 1559 La Liga M ESP 1st 2019 -#> 1560 La Liga M ESP 1st 2019 -#> 1561 La Liga M ESP 1st 2019 -#> 1562 La Liga M ESP 1st 2019 -#> 1563 La Liga M ESP 1st 2019 -#> 1564 La Liga M ESP 1st 2019 -#> 1565 La Liga M ESP 1st 2019 -#> 1566 La Liga M ESP 1st 2019 -#> 1567 La Liga M ESP 1st 2019 -#> 1568 La Liga M ESP 1st 2019 -#> 1569 La Liga M ESP 1st 2019 -#> 1570 La Liga M ESP 1st 2019 -#> 1571 La Liga M ESP 1st 2019 -#> 1572 La Liga M ESP 1st 2019 -#> 1573 La Liga M ESP 1st 2019 -#> 1574 La Liga M ESP 1st 2019 -#> 1575 La Liga M ESP 1st 2019 -#> 1576 La Liga M ESP 1st 2019 -#> 1577 La Liga M ESP 1st 2019 -#> 1578 La Liga M ESP 1st 2019 -#> 1579 La Liga M ESP 1st 2019 -#> 1580 La Liga M ESP 1st 2019 -#> 1581 La Liga M ESP 1st 2019 -#> 1582 La Liga M ESP 1st 2019 -#> 1583 La Liga M ESP 1st 2019 -#> 1584 La Liga M ESP 1st 2019 -#> 1585 La Liga M ESP 1st 2019 -#> 1586 La Liga M ESP 1st 2019 -#> 1587 La Liga M ESP 1st 2019 -#> 1588 La Liga M ESP 1st 2019 -#> 1589 La Liga M ESP 1st 2019 -#> 1590 La Liga M ESP 1st 2019 -#> 1591 La Liga M ESP 1st 2019 -#> 1592 La Liga M ESP 1st 2019 -#> 1593 La Liga M ESP 1st 2019 -#> 1594 La Liga M ESP 1st 2019 -#> 1595 La Liga M ESP 1st 2019 -#> 1596 La Liga M ESP 1st 2019 -#> 1597 La Liga M ESP 1st 2019 -#> 1598 La Liga M ESP 1st 2019 -#> 1599 La Liga M ESP 1st 2019 -#> 1600 La Liga M ESP 1st 2019 -#> 1601 La Liga M ESP 1st 2019 -#> 1602 La Liga M ESP 1st 2019 -#> 1603 La Liga M ESP 1st 2019 -#> 1604 La Liga M ESP 1st 2019 -#> 1605 La Liga M ESP 1st 2019 -#> 1606 La Liga M ESP 1st 2019 -#> 1607 La Liga M ESP 1st 2019 -#> 1608 La Liga M ESP 1st 2019 -#> 1609 La Liga M ESP 1st 2019 -#> 1610 La Liga M ESP 1st 2019 -#> 1611 La Liga M ESP 1st 2019 -#> 1612 La Liga M ESP 1st 2019 -#> 1613 La Liga M ESP 1st 2019 -#> 1614 La Liga M ESP 1st 2019 -#> 1615 La Liga M ESP 1st 2019 -#> 1616 La Liga M ESP 1st 2019 -#> 1617 La Liga M ESP 1st 2019 -#> 1618 La Liga M ESP 1st 2019 -#> 1619 La Liga M ESP 1st 2019 -#> 1620 La Liga M ESP 1st 2019 -#> 1621 La Liga M ESP 1st 2019 -#> 1622 La Liga M ESP 1st 2019 -#> 1623 La Liga M ESP 1st 2019 -#> 1624 La Liga M ESP 1st 2019 -#> 1625 La Liga M ESP 1st 2019 -#> 1626 La Liga M ESP 1st 2019 -#> 1627 La Liga M ESP 1st 2019 -#> 1628 La Liga M ESP 1st 2019 -#> 1629 La Liga M ESP 1st 2019 -#> 1630 La Liga M ESP 1st 2019 -#> 1631 La Liga M ESP 1st 2019 -#> 1632 La Liga M ESP 1st 2019 -#> 1633 La Liga M ESP 1st 2019 -#> 1634 La Liga M ESP 1st 2019 -#> 1635 La Liga M ESP 1st 2019 -#> 1636 La Liga M ESP 1st 2019 -#> 1637 La Liga M ESP 1st 2019 -#> 1638 La Liga M ESP 1st 2019 -#> 1639 La Liga M ESP 1st 2019 -#> 1640 La Liga M ESP 1st 2019 -#> 1641 La Liga M ESP 1st 2019 -#> 1642 La Liga M ESP 1st 2019 -#> 1643 La Liga M ESP 1st 2019 -#> 1644 La Liga M ESP 1st 2019 -#> 1645 La Liga M ESP 1st 2019 -#> 1646 La Liga M ESP 1st 2019 -#> 1647 La Liga M ESP 1st 2019 -#> 1648 La Liga M ESP 1st 2019 -#> 1649 La Liga M ESP 1st 2019 -#> 1650 La Liga M ESP 1st 2019 -#> 1651 La Liga M ESP 1st 2019 -#> 1652 La Liga M ESP 1st 2019 -#> 1653 La Liga M ESP 1st 2019 -#> 1654 La Liga M ESP 1st 2019 -#> 1655 La Liga M ESP 1st 2019 -#> 1656 La Liga M ESP 1st 2019 -#> 1657 La Liga M ESP 1st 2019 -#> 1658 La Liga M ESP 1st 2019 -#> 1659 La Liga M ESP 1st 2019 -#> 1660 La Liga M ESP 1st 2019 -#> 1661 La Liga M ESP 1st 2019 -#> 1662 La Liga M ESP 1st 2019 -#> 1663 La Liga M ESP 1st 2019 -#> 1664 La Liga M ESP 1st 2019 -#> 1665 La Liga M ESP 1st 2019 -#> 1666 La Liga M ESP 1st 2019 -#> 1667 La Liga M ESP 1st 2019 -#> 1668 La Liga M ESP 1st 2019 -#> 1669 La Liga M ESP 1st 2019 -#> 1670 La Liga M ESP 1st 2019 -#> 1671 La Liga M ESP 1st 2019 -#> 1672 La Liga M ESP 1st 2019 -#> 1673 La Liga M ESP 1st 2019 -#> 1674 La Liga M ESP 1st 2019 -#> 1675 La Liga M ESP 1st 2019 -#> 1676 La Liga M ESP 1st 2019 -#> 1677 La Liga M ESP 1st 2019 -#> 1678 La Liga M ESP 1st 2019 -#> 1679 La Liga M ESP 1st 2019 -#> 1680 La Liga M ESP 1st 2019 -#> 1681 La Liga M ESP 1st 2019 -#> 1682 La Liga M ESP 1st 2019 -#> 1683 La Liga M ESP 1st 2019 -#> 1684 La Liga M ESP 1st 2019 -#> 1685 La Liga M ESP 1st 2019 -#> 1686 La Liga M ESP 1st 2019 -#> 1687 La Liga M ESP 1st 2019 -#> 1688 La Liga M ESP 1st 2019 -#> 1689 La Liga M ESP 1st 2019 -#> 1690 La Liga M ESP 1st 2019 -#> 1691 La Liga M ESP 1st 2019 -#> 1692 La Liga M ESP 1st 2019 -#> 1693 La Liga M ESP 1st 2019 -#> 1694 La Liga M ESP 1st 2019 -#> 1695 La Liga M ESP 1st 2019 -#> 1696 La Liga M ESP 1st 2019 -#> 1697 La Liga M ESP 1st 2019 -#> 1698 La Liga M ESP 1st 2019 -#> 1699 La Liga M ESP 1st 2019 -#> 1700 La Liga M ESP 1st 2019 -#> 1701 La Liga M ESP 1st 2019 -#> 1702 La Liga M ESP 1st 2019 -#> 1703 La Liga M ESP 1st 2019 -#> 1704 La Liga M ESP 1st 2019 -#> 1705 La Liga M ESP 1st 2019 -#> 1706 La Liga M ESP 1st 2019 -#> 1707 La Liga M ESP 1st 2019 -#> 1708 La Liga M ESP 1st 2019 -#> 1709 La Liga M ESP 1st 2019 -#> 1710 La Liga M ESP 1st 2019 -#> 1711 La Liga M ESP 1st 2019 -#> 1712 La Liga M ESP 1st 2019 -#> 1713 La Liga M ESP 1st 2019 -#> 1714 La Liga M ESP 1st 2019 -#> 1715 La Liga M ESP 1st 2019 -#> 1716 La Liga M ESP 1st 2019 -#> 1717 La Liga M ESP 1st 2019 -#> 1718 La Liga M ESP 1st 2019 -#> 1719 La Liga M ESP 1st 2019 -#> 1720 La Liga M ESP 1st 2019 -#> 1721 La Liga M ESP 1st 2019 -#> 1722 La Liga M ESP 1st 2019 -#> 1723 La Liga M ESP 1st 2019 -#> 1724 La Liga M ESP 1st 2019 -#> 1725 La Liga M ESP 1st 2019 -#> 1726 La Liga M ESP 1st 2019 -#> 1727 La Liga M ESP 1st 2019 -#> 1728 La Liga M ESP 1st 2019 -#> 1729 La Liga M ESP 1st 2019 -#> 1730 La Liga M ESP 1st 2019 -#> 1731 La Liga M ESP 1st 2019 -#> 1732 La Liga M ESP 1st 2019 -#> 1733 La Liga M ESP 1st 2019 -#> 1734 La Liga M ESP 1st 2019 -#> 1735 La Liga M ESP 1st 2019 -#> 1736 La Liga M ESP 1st 2019 -#> 1737 La Liga M ESP 1st 2019 -#> 1738 La Liga M ESP 1st 2019 -#> 1739 La Liga M ESP 1st 2019 -#> 1740 La Liga M ESP 1st 2019 -#> 1741 La Liga M ESP 1st 2019 -#> 1742 La Liga M ESP 1st 2019 -#> 1743 La Liga M ESP 1st 2019 -#> 1744 La Liga M ESP 1st 2019 -#> 1745 La Liga M ESP 1st 2019 -#> 1746 La Liga M ESP 1st 2019 -#> 1747 La Liga M ESP 1st 2019 -#> 1748 La Liga M ESP 1st 2019 -#> 1749 La Liga M ESP 1st 2019 -#> 1750 La Liga M ESP 1st 2019 -#> 1751 La Liga M ESP 1st 2019 -#> 1752 La Liga M ESP 1st 2019 -#> 1753 La Liga M ESP 1st 2019 -#> 1754 La Liga M ESP 1st 2019 -#> 1755 La Liga M ESP 1st 2019 -#> 1756 La Liga M ESP 1st 2019 -#> 1757 La Liga M ESP 1st 2019 -#> 1758 La Liga M ESP 1st 2019 -#> 1759 La Liga M ESP 1st 2019 -#> 1760 La Liga M ESP 1st 2019 -#> 1761 La Liga M ESP 1st 2019 -#> 1762 La Liga M ESP 1st 2019 -#> 1763 La Liga M ESP 1st 2019 -#> 1764 La Liga M ESP 1st 2019 -#> 1765 La Liga M ESP 1st 2019 -#> 1766 La Liga M ESP 1st 2019 -#> 1767 La Liga M ESP 1st 2019 -#> 1768 La Liga M ESP 1st 2019 -#> 1769 La Liga M ESP 1st 2019 -#> 1770 La Liga M ESP 1st 2019 -#> 1771 La Liga M ESP 1st 2019 -#> 1772 La Liga M ESP 1st 2019 -#> 1773 La Liga M ESP 1st 2019 -#> 1774 La Liga M ESP 1st 2019 -#> 1775 La Liga M ESP 1st 2019 -#> 1776 La Liga M ESP 1st 2019 -#> 1777 La Liga M ESP 1st 2019 -#> 1778 La Liga M ESP 1st 2019 -#> 1779 La Liga M ESP 1st 2019 -#> 1780 La Liga M ESP 1st 2019 -#> 1781 La Liga M ESP 1st 2019 -#> 1782 La Liga M ESP 1st 2019 -#> 1783 La Liga M ESP 1st 2019 -#> 1784 La Liga M ESP 1st 2019 -#> 1785 La Liga M ESP 1st 2019 -#> 1786 La Liga M ESP 1st 2019 -#> 1787 La Liga M ESP 1st 2019 -#> 1788 La Liga M ESP 1st 2019 -#> 1789 La Liga M ESP 1st 2019 -#> 1790 La Liga M ESP 1st 2019 -#> 1791 La Liga M ESP 1st 2019 -#> 1792 La Liga M ESP 1st 2019 -#> 1793 La Liga M ESP 1st 2019 -#> 1794 La Liga M ESP 1st 2019 -#> 1795 La Liga M ESP 1st 2019 -#> 1796 La Liga M ESP 1st 2019 -#> 1797 La Liga M ESP 1st 2019 -#> 1798 La Liga M ESP 1st 2019 -#> 1799 La Liga M ESP 1st 2019 -#> 1800 La Liga M ESP 1st 2019 -#> 1801 La Liga M ESP 1st 2019 -#> 1802 La Liga M ESP 1st 2019 -#> 1803 La Liga M ESP 1st 2019 -#> 1804 La Liga M ESP 1st 2019 -#> 1805 La Liga M ESP 1st 2019 -#> 1806 La Liga M ESP 1st 2019 -#> 1807 La Liga M ESP 1st 2019 -#> 1808 La Liga M ESP 1st 2019 -#> 1809 La Liga M ESP 1st 2019 -#> 1810 La Liga M ESP 1st 2019 -#> 1811 La Liga M ESP 1st 2019 -#> 1812 La Liga M ESP 1st 2019 -#> 1813 La Liga M ESP 1st 2019 -#> 1814 La Liga M ESP 1st 2019 -#> 1815 La Liga M ESP 1st 2019 -#> 1816 La Liga M ESP 1st 2019 -#> 1817 La Liga M ESP 1st 2019 -#> 1818 La Liga M ESP 1st 2019 -#> 1819 La Liga M ESP 1st 2019 -#> 1820 La Liga M ESP 1st 2019 -#> 1821 La Liga M ESP 1st 2019 -#> 1822 La Liga M ESP 1st 2019 -#> 1823 La Liga M ESP 1st 2019 -#> 1824 La Liga M ESP 1st 2019 -#> 1825 La Liga M ESP 1st 2019 -#> 1826 La Liga M ESP 1st 2019 -#> 1827 La Liga M ESP 1st 2019 -#> 1828 La Liga M ESP 1st 2019 -#> 1829 La Liga M ESP 1st 2019 -#> 1830 La Liga M ESP 1st 2019 -#> 1831 La Liga M ESP 1st 2019 -#> 1832 La Liga M ESP 1st 2019 -#> 1833 La Liga M ESP 1st 2019 -#> 1834 La Liga M ESP 1st 2019 -#> 1835 La Liga M ESP 1st 2019 -#> 1836 La Liga M ESP 1st 2019 -#> 1837 La Liga M ESP 1st 2019 -#> 1838 La Liga M ESP 1st 2019 -#> 1839 La Liga M ESP 1st 2019 -#> 1840 La Liga M ESP 1st 2019 -#> 1841 La Liga M ESP 1st 2019 -#> 1842 La Liga M ESP 1st 2019 -#> 1843 La Liga M ESP 1st 2019 -#> 1844 La Liga M ESP 1st 2019 -#> 1845 La Liga M ESP 1st 2019 -#> 1846 La Liga M ESP 1st 2019 -#> 1847 La Liga M ESP 1st 2019 -#> 1848 La Liga M ESP 1st 2019 -#> 1849 La Liga M ESP 1st 2019 -#> 1850 La Liga M ESP 1st 2019 -#> 1851 La Liga M ESP 1st 2019 -#> 1852 La Liga M ESP 1st 2019 -#> 1853 La Liga M ESP 1st 2019 -#> 1854 La Liga M ESP 1st 2019 -#> 1855 La Liga M ESP 1st 2019 -#> 1856 La Liga M ESP 1st 2019 -#> 1857 La Liga M ESP 1st 2019 -#> 1858 La Liga M ESP 1st 2019 -#> 1859 La Liga M ESP 1st 2019 -#> 1860 La Liga M ESP 1st 2019 -#> 1861 La Liga M ESP 1st 2019 -#> 1862 La Liga M ESP 1st 2019 -#> 1863 La Liga M ESP 1st 2019 -#> 1864 La Liga M ESP 1st 2019 -#> 1865 La Liga M ESP 1st 2019 -#> 1866 La Liga M ESP 1st 2019 -#> 1867 La Liga M ESP 1st 2019 -#> 1868 La Liga M ESP 1st 2019 -#> 1869 La Liga M ESP 1st 2019 -#> 1870 La Liga M ESP 1st 2019 -#> 1871 La Liga M ESP 1st 2019 -#> 1872 La Liga M ESP 1st 2019 -#> 1873 La Liga M ESP 1st 2019 -#> 1874 La Liga M ESP 1st 2019 -#> 1875 La Liga M ESP 1st 2019 -#> 1876 La Liga M ESP 1st 2019 -#> 1877 La Liga M ESP 1st 2019 -#> 1878 La Liga M ESP 1st 2019 -#> 1879 La Liga M ESP 1st 2019 -#> 1880 La Liga M ESP 1st 2019 -#> 1881 La Liga M ESP 1st 2019 -#> 1882 La Liga M ESP 1st 2019 -#> 1883 La Liga M ESP 1st 2019 -#> 1884 La Liga M ESP 1st 2019 -#> 1885 La Liga M ESP 1st 2019 -#> 1886 La Liga M ESP 1st 2019 -#> 1887 La Liga M ESP 1st 2019 -#> 1888 La Liga M ESP 1st 2019 -#> 1889 La Liga M ESP 1st 2019 -#> 1890 La Liga M ESP 1st 2019 -#> 1891 La Liga M ESP 1st 2019 -#> 1892 La Liga M ESP 1st 2019 -#> 1893 La Liga M ESP 1st 2019 -#> 1894 La Liga M ESP 1st 2019 -#> 1895 La Liga M ESP 1st 2019 -#> 1896 La Liga M ESP 1st 2019 -#> 1897 La Liga M ESP 1st 2019 -#> 1898 La Liga M ESP 1st 2019 -#> 1899 La Liga M ESP 1st 2019 -#> 1900 La Liga M ESP 1st 2019 -#> 1901 La Liga M ESP 1st 2019 -#> 1902 La Liga M ESP 1st 2019 -#> 1903 La Liga M ESP 1st 2019 -#> 1904 La Liga M ESP 1st 2019 -#> 1905 La Liga M ESP 1st 2019 -#> 1906 La Liga M ESP 1st 2019 -#> 1907 La Liga M ESP 1st 2019 -#> 1908 La Liga M ESP 1st 2019 -#> 1909 La Liga M ESP 1st 2019 -#> 1910 La Liga M ESP 1st 2019 -#> 1911 La Liga M ESP 1st 2019 -#> 1912 La Liga M ESP 1st 2019 -#> 1913 La Liga M ESP 1st 2019 -#> 1914 La Liga M ESP 1st 2019 -#> 1915 La Liga M ESP 1st 2019 -#> 1916 La Liga M ESP 1st 2019 -#> 1917 La Liga M ESP 1st 2019 -#> 1918 La Liga M ESP 1st 2019 -#> 1919 La Liga M ESP 1st 2019 -#> 1920 La Liga M ESP 1st 2019 -#> 1921 La Liga M ESP 1st 2019 -#> 1922 La Liga M ESP 1st 2019 -#> 1923 La Liga M ESP 1st 2019 -#> 1924 La Liga M ESP 1st 2019 -#> 1925 La Liga M ESP 1st 2019 -#> 1926 La Liga M ESP 1st 2019 -#> 1927 La Liga M ESP 1st 2019 -#> 1928 La Liga M ESP 1st 2019 -#> 1929 La Liga M ESP 1st 2019 -#> 1930 La Liga M ESP 1st 2019 -#> 1931 La Liga M ESP 1st 2019 -#> 1932 La Liga M ESP 1st 2019 -#> 1933 La Liga M ESP 1st 2019 -#> 1934 La Liga M ESP 1st 2019 -#> 1935 La Liga M ESP 1st 2019 -#> 1936 La Liga M ESP 1st 2019 -#> 1937 La Liga M ESP 1st 2019 -#> 1938 La Liga M ESP 1st 2019 -#> 1939 La Liga M ESP 1st 2019 -#> 1940 La Liga M ESP 1st 2019 -#> 1941 La Liga M ESP 1st 2019 -#> 1942 La Liga M ESP 1st 2019 -#> 1943 La Liga M ESP 1st 2019 -#> 1944 La Liga M ESP 1st 2019 -#> 1945 La Liga M ESP 1st 2019 -#> 1946 La Liga M ESP 1st 2019 -#> 1947 La Liga M ESP 1st 2019 -#> 1948 La Liga M ESP 1st 2019 -#> 1949 La Liga M ESP 1st 2019 -#> 1950 La Liga M ESP 1st 2019 -#> 1951 La Liga M ESP 1st 2019 -#> 1952 La Liga M ESP 1st 2019 -#> 1953 La Liga M ESP 1st 2019 -#> 1954 La Liga M ESP 1st 2019 -#> 1955 La Liga M ESP 1st 2019 -#> 1956 La Liga M ESP 1st 2019 -#> 1957 La Liga M ESP 1st 2019 -#> 1958 La Liga M ESP 1st 2019 -#> 1959 La Liga M ESP 1st 2019 -#> 1960 La Liga M ESP 1st 2019 -#> 1961 La Liga M ESP 1st 2019 -#> 1962 La Liga M ESP 1st 2019 -#> 1963 La Liga M ESP 1st 2019 -#> 1964 La Liga M ESP 1st 2019 -#> 1965 La Liga M ESP 1st 2019 -#> 1966 La Liga M ESP 1st 2019 -#> 1967 La Liga M ESP 1st 2019 -#> 1968 La Liga M ESP 1st 2019 -#> 1969 La Liga M ESP 1st 2019 -#> 1970 La Liga M ESP 1st 2019 -#> 1971 La Liga M ESP 1st 2019 -#> 1972 La Liga M ESP 1st 2019 -#> 1973 La Liga M ESP 1st 2019 -#> 1974 La Liga M ESP 1st 2019 -#> 1975 La Liga M ESP 1st 2019 -#> 1976 La Liga M ESP 1st 2019 -#> 1977 La Liga M ESP 1st 2019 -#> 1978 La Liga M ESP 1st 2019 -#> 1979 La Liga M ESP 1st 2019 -#> 1980 La Liga M ESP 1st 2019 -#> 1981 La Liga M ESP 1st 2019 -#> 1982 La Liga M ESP 1st 2019 -#> 1983 La Liga M ESP 1st 2019 -#> 1984 La Liga M ESP 1st 2019 -#> 1985 La Liga M ESP 1st 2019 -#> 1986 La Liga M ESP 1st 2019 -#> 1987 La Liga M ESP 1st 2019 -#> 1988 La Liga M ESP 1st 2019 -#> 1989 La Liga M ESP 1st 2019 -#> 1990 La Liga M ESP 1st 2019 -#> 1991 La Liga M ESP 1st 2019 -#> 1992 La Liga M ESP 1st 2019 -#> 1993 La Liga M ESP 1st 2019 -#> 1994 La Liga M ESP 1st 2019 -#> 1995 La Liga M ESP 1st 2019 -#> 1996 La Liga M ESP 1st 2019 -#> 1997 La Liga M ESP 1st 2019 -#> 1998 La Liga M ESP 1st 2019 -#> 1999 La Liga M ESP 1st 2019 -#> 2000 La Liga M ESP 1st 2019 -#> 2001 La Liga M ESP 1st 2019 -#> 2002 La Liga M ESP 1st 2019 -#> 2003 La Liga M ESP 1st 2019 -#> 2004 La Liga M ESP 1st 2019 -#> 2005 La Liga M ESP 1st 2019 -#> 2006 La Liga M ESP 1st 2019 -#> 2007 La Liga M ESP 1st 2019 -#> 2008 La Liga M ESP 1st 2019 -#> 2009 La Liga M ESP 1st 2019 -#> 2010 La Liga M ESP 1st 2019 -#> 2011 La Liga M ESP 1st 2019 -#> 2012 La Liga M ESP 1st 2019 -#> 2013 La Liga M ESP 1st 2019 -#> 2014 La Liga M ESP 1st 2019 -#> 2015 La Liga M ESP 1st 2019 -#> 2016 La Liga M ESP 1st 2019 -#> 2017 La Liga M ESP 1st 2019 -#> 2018 La Liga M ESP 1st 2019 -#> 2019 La Liga M ESP 1st 2019 -#> 2020 La Liga M ESP 1st 2019 -#> 2021 La Liga M ESP 1st 2019 -#> 2022 La Liga M ESP 1st 2019 -#> 2023 La Liga M ESP 1st 2019 -#> 2024 La Liga M ESP 1st 2019 -#> 2025 La Liga M ESP 1st 2019 -#> 2026 La Liga M ESP 1st 2019 -#> 2027 La Liga M ESP 1st 2019 -#> 2028 La Liga M ESP 1st 2019 -#> 2029 La Liga M ESP 1st 2019 -#> 2030 La Liga M ESP 1st 2019 -#> 2031 La Liga M ESP 1st 2019 -#> 2032 La Liga M ESP 1st 2019 -#> 2033 La Liga M ESP 1st 2019 -#> 2034 La Liga M ESP 1st 2019 -#> 2035 La Liga M ESP 1st 2019 -#> 2036 La Liga M ESP 1st 2019 -#> 2037 La Liga M ESP 1st 2019 -#> 2038 La Liga M ESP 1st 2019 -#> 2039 La Liga M ESP 1st 2019 -#> 2040 La Liga M ESP 1st 2019 -#> [ reached 'max' / getOption("max.print") -- omitted 8498 rows ]

    +#> # A tibble: 21,106 × 49 +#> MatchURL League Match_Date Matchweek Home_Team Home_Formation Home_Score +#> <chr> <chr> <chr> <chr> <chr> <chr> <dbl> +#> 1 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 +#> 2 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 +#> 3 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 +#> 4 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 +#> 5 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 +#> 6 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 +#> 7 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 +#> 8 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 +#> 9 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 +#> 10 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 +#> # ℹ 21,096 more rows +#> # ℹ 42 more variables: Home_xG <dbl>, Home_Goals <chr>, +#> # Home_Yellow_Cards <chr>, Home_Red_Cards <chr>, Away_Team <chr>, +#> # Away_Formation <chr>, Away_Score <dbl>, Away_xG <dbl>, Away_Goals <chr>, +#> # Away_Yellow_Cards <chr>, Away_Red_Cards <chr>, Game_URL <chr>, Team <chr>, +#> # Home_Away <chr>, Player <chr>, Player_Href <chr>, Player_Num <dbl>, +#> # Nation <chr>, Pos <chr>, Age <chr>, Min <dbl>, Tkl_Tackles <dbl>, …

    @@ -31118,10 +525,10 @@

    Load League Shotsunderstat_league_season_shots() function, however rather than needing to be scraped a season at a time, this data loads rapidly for all seasons for the selected league since the 2014/15 seasons.

    -
    +
     serie_a_shot_locations <- load_understat_league_shots(league = "Serie A")
     dplyr::glimpse(serie_a_shot_locations)
    -#> Rows: 99,375
    +#> Rows: 100,185
     #> Columns: 22
     #> $ league          <chr> "Serie_A", "Serie_A", "Serie_A", "Serie_A", "Serie_A",…
     #> $ id              <dbl> 41439, 41444, 41445, 41446, 41451, 41452, 41461, 41462…
    diff --git a/index.html b/index.html
    index 1d77228a..ad4872e3 100644
    --- a/index.html
    +++ b/index.html
    @@ -110,14 +110,12 @@ 

    Overview

    Installation

    -

    You can install the CRAN version of worldfootballR with:

    -
    -install.packages("worldfootballR")
    +

    As at 2024-06-29, we are no longer including instructions to install from CRAN. The version pushed to CRAN is very much out of date, and with very regular updates to this library, we advise installing from GitHub only.

    You can install the released version of worldfootballR from GitHub with:

    -
    +
     # install.packages("devtools")
     devtools::install_github("JaseZiv/worldfootballR")
    - @@ -206,6 +204,7 @@

    Contributing

    Issues and Improvements

    +

    Before creating an issue, please ensure you have the latest version installed from GitHub. Check the changelog for more details on changes that have been made to the library.

    When creating an issue, please include:

    diff --git a/reference/load_fb_advanced_match_stats.html b/reference/load_fb_advanced_match_stats.html index 3207ec46..079fed04 100644 --- a/reference/load_fb_advanced_match_stats.html +++ b/reference/load_fb_advanced_match_stats.html @@ -136,30624 +136,28 @@

    Examples team_or_player = "player" ) }) -#> → Data last updated 2024-05-07 18:36:11.7715599536896 UTC -#> → Data last updated UTC -#> MatchURL -#> 1 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 2 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 3 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 4 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 5 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 6 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 7 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 8 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 9 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 10 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 11 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 12 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 13 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 14 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 15 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 16 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 17 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 18 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 19 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 20 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 21 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 22 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 23 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 24 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 25 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 26 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 27 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 28 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 29 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 30 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 31 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 32 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 33 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 34 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 35 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 36 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 37 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 38 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 39 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 40 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 41 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 42 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 43 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 44 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 45 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 46 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 47 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 48 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 49 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 50 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 51 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 52 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 53 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 54 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 55 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 56 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 57 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 58 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 59 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 60 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 61 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 62 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 63 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 64 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 65 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 66 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 67 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 68 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 69 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 70 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 71 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 72 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 73 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 74 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 75 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 76 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 77 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 78 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 79 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 80 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 81 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 82 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 83 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 84 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 85 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 86 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 87 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 88 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 89 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 90 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 91 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 92 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 93 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 94 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 95 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 96 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 97 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 98 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 99 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 100 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 101 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 102 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 103 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 104 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 105 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 106 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 107 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 108 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 109 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 110 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 111 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 112 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 113 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 114 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 115 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 116 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 117 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 118 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 119 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 120 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 121 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 122 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 123 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 124 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 125 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 126 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 127 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 128 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 129 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 130 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 131 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 132 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 133 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 134 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 135 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 136 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 137 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 138 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 139 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 140 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 141 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 142 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 143 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 144 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 145 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 146 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 147 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 148 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 149 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 150 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 151 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 152 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 153 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 154 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 155 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 156 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 157 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 158 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 159 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 160 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 161 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 162 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 163 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 164 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 165 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 166 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 167 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 168 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 169 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 170 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 171 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 172 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 173 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 174 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 175 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 176 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 177 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 178 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 179 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 180 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 181 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 182 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 183 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 184 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 185 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 186 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 187 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 188 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 189 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 190 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 191 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 192 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 193 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 194 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 195 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 196 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 197 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 198 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 199 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 200 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 201 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 202 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 203 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 204 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 205 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 206 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 207 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 208 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 209 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 210 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 211 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 212 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 213 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 214 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 215 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 216 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 217 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 218 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 219 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 220 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 221 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 222 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 223 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 224 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 225 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 226 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 227 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 228 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 229 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 230 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 231 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 232 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 233 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 234 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 235 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 236 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 237 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 238 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 239 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 240 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 241 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 242 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 243 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 244 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 245 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 246 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 247 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 248 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 249 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 250 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 251 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 252 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 253 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 254 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 255 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 256 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 257 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 258 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 259 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 260 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 261 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 262 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 263 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 264 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 265 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 266 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 267 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 268 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 269 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 270 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 271 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 272 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 273 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 274 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 275 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 276 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 277 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 278 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 279 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 280 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 281 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 282 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 283 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 284 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 285 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 286 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 287 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 288 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 289 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 290 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 291 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 292 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 293 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 294 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 295 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 296 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 297 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 298 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 299 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 300 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 301 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 302 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 303 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 304 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 305 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 306 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 307 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 308 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 309 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 310 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 311 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 312 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 313 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 314 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 315 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 316 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 317 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 318 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 319 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 320 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 321 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 322 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 323 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 324 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 325 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 326 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 327 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 328 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 329 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 330 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 331 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 332 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 333 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 334 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 335 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 336 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 337 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 338 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 339 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 340 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 341 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 342 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 343 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 344 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 345 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 346 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 347 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 348 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 349 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 350 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 351 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 352 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 353 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 354 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 355 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 356 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 357 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 358 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 359 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 360 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 361 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 362 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 363 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 364 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 365 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 366 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 367 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 368 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 369 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 370 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 371 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 372 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 373 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 374 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 375 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 376 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 377 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 378 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 379 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 380 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 381 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 382 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 383 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 384 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 385 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 386 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 387 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 388 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 389 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 390 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 391 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 392 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 393 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 394 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 395 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 396 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 397 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 398 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 399 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 400 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 401 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 402 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 403 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 404 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 405 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 406 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 407 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 408 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 409 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 410 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 411 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 412 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 413 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 414 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 415 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 416 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 417 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 418 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 419 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 420 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 421 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 422 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 423 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 424 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 425 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 426 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 427 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 428 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 429 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 430 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 431 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 432 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 433 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 434 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 435 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 436 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 437 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 438 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 439 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 440 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 441 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 442 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 443 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 444 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 445 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 446 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 447 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 448 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 449 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 450 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 451 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 452 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 453 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 454 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 455 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 456 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 457 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 458 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 459 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 460 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 461 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 462 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 463 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 464 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 465 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 466 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 467 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 468 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 469 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 470 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 471 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 472 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 473 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 474 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 475 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 476 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 477 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 478 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 479 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 480 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 481 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 482 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 483 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 484 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 485 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 486 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 487 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 488 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 489 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 490 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 491 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 492 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 493 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 494 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 495 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 496 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 497 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 498 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 499 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 500 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 501 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 502 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 503 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 504 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 505 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 506 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 507 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 508 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 509 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 510 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 511 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 512 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 513 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 514 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 515 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 516 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 517 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 518 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 519 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 520 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 521 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 522 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 523 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 524 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 525 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 526 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 527 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 528 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 529 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 530 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 531 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 532 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 533 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 534 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 535 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 536 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 537 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 538 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 539 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 540 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 541 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 542 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 543 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 544 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 545 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 546 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 547 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 548 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 549 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 550 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 551 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 552 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 553 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 554 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 555 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 556 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 557 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 558 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 559 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 560 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 561 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 562 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 563 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 564 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 565 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 566 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 567 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 568 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 569 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 570 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 571 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 572 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 573 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 574 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 575 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 576 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 577 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 578 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 579 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 580 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 581 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 582 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 583 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 584 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 585 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 586 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 587 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 588 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 589 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 590 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 591 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 592 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 593 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 594 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 595 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 596 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 597 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 598 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 599 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 600 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 601 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 602 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 603 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 604 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 605 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 606 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 607 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 608 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 609 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 610 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 611 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 612 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 613 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 614 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 615 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 616 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 617 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 618 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 619 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 620 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 621 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 622 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 623 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 624 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 625 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 626 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 627 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 628 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 629 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 630 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 631 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 632 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 633 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 634 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 635 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 636 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 637 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 638 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 639 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 640 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 641 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 642 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 643 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 644 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 645 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 646 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 647 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 648 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 649 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 650 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 651 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 652 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 653 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 654 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 655 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 656 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 657 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 658 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 659 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 660 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 661 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 662 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 663 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 664 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 665 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 666 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 667 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 668 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 669 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 670 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 671 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 672 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 673 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 674 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 675 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 676 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 677 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 678 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 679 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 680 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 681 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 682 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 683 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 684 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 685 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 686 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 687 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 688 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 689 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 690 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 691 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 692 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 693 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 694 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 695 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 696 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 697 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 698 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 699 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 700 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 701 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 702 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 703 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 704 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 705 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 706 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 707 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 708 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 709 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 710 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 711 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 712 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 713 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 714 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 715 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 716 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 717 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 718 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 719 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 720 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 721 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 722 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 723 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 724 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 725 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 726 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 727 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 728 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 729 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 730 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 731 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 732 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 733 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 734 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 735 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 736 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 737 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 738 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 739 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 740 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 741 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 742 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 743 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 744 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 745 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 746 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 747 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 748 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 749 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 750 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 751 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 752 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 753 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 754 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 755 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 756 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 757 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 758 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 759 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 760 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 761 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 762 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 763 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 764 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 765 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 766 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 767 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 768 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 769 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 770 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 771 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 772 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 773 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 774 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 775 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 776 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 777 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 778 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 779 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 780 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 781 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 782 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 783 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 784 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 785 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 786 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 787 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 788 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 789 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 790 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 791 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 792 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 793 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 794 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 795 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 796 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 797 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 798 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 799 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 800 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 801 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 802 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 803 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 804 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 805 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 806 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 807 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 808 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 809 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 810 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 811 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 812 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 813 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 814 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 815 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 816 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 817 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 818 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 819 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 820 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 821 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 822 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 823 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 824 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 825 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 826 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 827 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 828 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 829 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 830 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 831 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 832 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 833 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 834 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 835 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 836 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 837 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 838 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 839 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 840 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 841 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 842 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 843 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 844 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 845 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 846 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 847 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 848 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 849 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 850 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 851 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 852 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 853 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 854 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 855 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 856 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 857 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 858 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 859 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 860 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 861 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 862 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 863 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 864 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 865 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 866 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 867 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 868 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 869 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 870 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 871 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 872 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 873 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 874 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 875 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 876 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 877 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 878 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 879 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 880 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 881 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 882 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 883 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 884 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 885 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 886 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 887 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 888 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 889 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 890 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 891 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 892 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 893 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 894 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 895 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 896 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 897 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 898 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 899 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 900 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 901 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 902 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 903 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 904 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 905 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 906 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 907 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 908 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 909 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 910 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 911 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 912 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 913 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 914 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 915 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 916 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 917 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 918 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 919 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 920 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 921 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 922 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 923 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 924 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 925 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 926 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 927 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 928 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 929 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 930 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 931 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 932 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 933 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 934 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 935 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 936 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 937 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 938 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 939 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 940 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 941 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 942 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 943 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 944 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 945 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 946 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 947 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 948 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 949 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 950 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 951 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 952 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 953 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 954 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 955 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 956 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 957 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 958 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 959 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 960 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 961 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 962 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 963 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 964 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 965 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 966 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 967 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 968 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 969 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 970 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 971 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 972 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 973 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 974 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 975 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 976 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 977 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 978 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 979 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 980 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 981 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 982 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 983 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 984 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 985 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 986 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 987 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 988 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 989 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 990 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 991 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 992 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 993 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 994 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 995 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 996 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 997 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 998 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 999 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1000 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1001 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1002 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1003 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1004 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1005 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1006 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1007 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1008 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1009 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1010 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1011 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1012 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1013 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1014 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1015 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1016 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1017 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1018 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1019 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1020 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1021 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1022 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1023 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1024 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1025 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1026 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1027 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1028 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1029 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1030 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1031 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1032 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1033 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1034 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1035 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1036 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1037 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1038 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1039 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1040 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1041 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1042 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1043 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1044 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1045 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1046 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1047 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1048 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1049 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1050 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1051 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1052 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1053 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1054 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1055 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1056 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1057 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1058 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1059 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1060 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1061 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1062 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1063 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1064 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1065 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1066 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1067 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1068 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1069 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1070 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1071 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1072 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1073 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1074 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1075 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1076 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1077 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1078 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1079 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1080 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1081 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1082 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1083 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1084 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1085 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1086 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1087 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1088 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1089 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1090 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1091 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1092 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1093 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1094 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1095 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1096 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1097 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1098 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1099 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1100 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1101 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1102 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1103 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1104 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1105 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1106 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1107 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1108 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1109 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1110 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1111 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1112 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1113 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1114 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1115 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1116 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1117 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1118 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1119 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1120 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1121 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1122 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1123 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1124 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1125 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1126 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1127 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1128 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1129 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1130 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1131 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1132 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1133 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1134 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1135 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1136 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1137 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1138 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1139 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1140 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1141 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1142 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1143 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1144 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1145 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1146 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1147 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1148 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1149 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1150 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1151 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1152 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1153 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1154 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1155 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1156 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1157 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1158 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1159 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1160 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1161 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1162 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1163 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1164 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1165 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1166 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1167 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1168 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1169 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1170 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1171 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1172 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1173 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1174 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1175 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1176 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1177 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1178 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1179 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1180 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1181 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1182 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1183 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1184 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1185 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1186 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1187 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1188 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1189 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1190 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1191 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1192 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1193 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1194 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1195 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1196 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1197 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1198 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1199 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1200 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1201 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1202 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1203 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1204 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1205 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1206 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1207 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1208 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1209 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1210 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1211 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1212 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1213 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1214 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1215 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1216 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1217 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1218 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1219 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1220 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1221 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1222 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1223 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1224 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1225 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1226 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1227 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1228 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1229 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1230 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1231 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1232 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1233 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1234 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1235 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1236 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1237 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1238 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1239 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1240 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1241 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1242 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1243 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1244 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1245 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1246 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1247 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1248 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1249 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1250 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1251 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1252 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1253 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1254 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1255 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1256 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1257 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1258 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1259 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1260 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1261 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1262 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1263 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1264 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1265 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1266 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1267 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1268 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1269 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1270 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1271 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1272 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1273 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1274 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1275 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1276 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1277 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1278 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1279 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1280 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1281 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1282 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1283 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1284 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1285 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1286 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1287 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1288 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1289 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1290 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1291 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1292 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1293 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1294 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1295 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1296 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1297 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1298 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1299 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1300 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1301 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1302 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1303 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1304 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1305 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1306 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1307 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1308 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1309 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1310 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1311 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1312 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1313 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1314 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1315 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1316 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1317 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1318 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1319 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1320 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1321 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1322 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1323 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1324 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1325 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1326 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1327 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1328 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1329 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1330 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1331 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1332 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1333 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1334 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1335 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1336 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1337 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1338 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1339 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1340 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1341 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1342 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1343 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1344 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1345 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1346 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1347 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1348 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1349 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1350 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1351 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1352 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1353 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1354 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1355 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1356 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1357 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1358 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1359 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1360 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1361 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1362 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1363 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1364 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1365 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1366 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1367 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1368 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1369 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1370 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1371 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1372 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1373 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1374 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1375 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1376 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1377 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1378 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1379 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1380 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1381 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1382 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1383 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1384 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1385 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1386 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1387 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1388 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1389 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1390 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1391 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1392 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1393 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1394 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1395 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1396 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1397 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1398 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1399 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1400 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1401 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1402 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1403 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1404 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1405 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1406 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1407 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1408 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1409 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1410 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1411 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1412 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1413 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1414 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1415 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1416 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1417 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1418 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1419 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1420 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1421 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1422 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1423 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1424 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1425 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1426 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1427 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1428 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1429 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1430 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1431 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1432 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1433 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1434 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1435 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1436 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1437 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1438 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1439 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1440 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1441 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1442 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1443 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1444 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1445 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1446 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1447 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1448 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1449 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1450 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1451 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1452 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1453 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1454 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1455 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1456 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1457 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1458 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1459 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1460 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1461 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1462 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1463 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1464 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1465 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1466 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1467 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1468 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1469 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1470 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1471 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1472 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1473 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1474 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1475 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1476 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1477 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1478 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1479 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1480 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1481 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1482 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1483 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1484 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1485 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1486 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1487 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1488 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1489 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1490 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1491 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1492 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1493 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1494 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1495 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1496 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1497 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1498 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1499 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1500 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1501 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1502 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1503 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1504 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1505 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1506 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1507 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1508 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1509 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1510 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1511 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1512 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1513 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1514 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1515 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1516 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1517 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1518 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1519 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1520 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1521 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1522 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1523 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1524 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1525 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1526 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1527 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1528 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1529 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1530 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1531 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1532 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1533 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1534 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1535 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1536 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1537 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1538 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1539 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1540 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1541 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1542 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1543 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1544 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1545 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1546 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1547 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1548 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1549 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1550 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1551 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1552 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1553 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1554 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1555 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1556 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1557 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1558 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1559 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1560 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1561 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1562 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1563 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1564 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1565 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1566 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1567 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1568 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1569 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1570 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1571 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1572 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1573 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1574 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1575 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1576 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1577 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1578 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1579 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1580 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1581 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1582 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1583 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1584 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1585 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1586 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1587 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1588 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1589 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1590 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1591 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1592 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1593 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1594 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1595 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1596 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1597 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1598 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1599 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1600 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1601 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1602 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1603 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1604 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1605 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1606 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1607 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1608 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1609 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1610 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1611 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1612 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1613 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1614 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1615 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1616 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1617 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1618 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1619 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1620 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1621 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1622 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1623 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1624 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1625 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1626 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1627 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1628 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1629 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1630 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1631 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1632 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1633 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1634 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1635 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1636 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1637 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1638 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1639 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1640 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1641 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1642 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1643 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1644 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1645 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1646 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1647 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1648 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1649 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1650 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1651 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1652 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1653 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1654 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1655 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1656 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1657 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1658 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1659 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1660 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1661 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1662 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1663 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1664 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1665 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1666 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1667 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1668 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1669 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1670 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1671 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1672 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1673 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1674 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1675 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1676 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1677 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1678 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1679 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1680 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1681 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1682 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1683 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1684 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1685 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1686 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1687 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1688 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1689 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1690 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1691 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1692 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1693 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1694 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1695 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1696 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1697 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1698 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1699 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1700 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1701 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1702 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1703 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1704 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1705 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1706 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1707 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1708 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1709 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1710 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1711 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1712 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1713 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1714 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1715 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1716 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1717 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1718 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1719 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1720 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1721 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1722 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1723 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1724 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1725 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1726 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1727 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1728 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1729 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1730 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1731 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1732 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1733 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1734 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1735 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1736 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1737 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1738 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1739 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1740 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1741 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1742 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1743 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1744 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1745 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1746 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1747 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1748 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1749 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1750 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1751 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1752 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1753 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1754 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1755 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1756 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1757 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1758 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1759 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1760 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1761 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1762 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1763 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1764 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1765 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1766 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1767 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1768 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1769 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1770 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1771 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1772 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1773 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1774 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1775 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1776 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1777 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1778 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1779 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1780 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1781 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1782 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1783 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1784 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1785 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1786 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1787 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1788 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1789 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1790 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1791 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1792 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1793 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1794 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1795 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1796 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1797 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1798 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1799 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1800 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1801 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1802 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1803 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1804 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1805 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1806 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1807 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1808 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1809 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1810 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1811 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1812 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1813 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1814 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1815 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1816 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1817 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1818 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1819 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1820 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1821 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1822 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1823 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1824 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1825 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1826 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1827 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1828 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1829 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1830 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1831 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1832 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1833 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1834 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1835 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1836 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1837 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1838 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1839 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1840 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1841 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1842 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1843 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1844 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1845 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1846 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1847 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1848 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1849 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1850 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1851 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1852 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1853 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1854 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1855 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1856 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1857 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1858 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1859 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1860 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1861 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1862 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1863 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1864 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1865 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1866 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1867 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1868 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1869 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1870 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1871 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1872 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1873 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1874 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1875 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1876 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1877 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1878 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1879 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1880 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1881 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1882 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1883 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1884 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1885 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1886 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1887 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1888 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1889 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1890 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1891 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1892 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1893 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1894 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1895 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1896 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1897 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1898 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1899 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1900 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1901 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1902 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1903 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1904 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1905 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1906 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1907 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1908 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1909 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1910 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1911 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1912 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1913 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1914 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1915 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1916 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1917 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1918 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1919 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1920 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1921 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1922 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1923 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1924 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1925 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1926 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1927 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1928 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1929 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1930 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1931 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1932 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1933 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1934 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1935 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1936 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1937 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1938 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1939 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1940 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1941 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1942 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1943 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1944 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1945 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1946 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1947 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1948 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1949 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1950 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1951 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1952 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1953 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1954 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1955 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1956 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1957 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1958 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1959 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1960 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1961 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1962 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1963 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1964 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1965 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1966 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1967 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1968 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1969 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1970 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1971 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1972 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1973 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1974 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1975 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1976 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1977 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1978 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1979 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1980 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1981 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1982 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1983 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1984 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1985 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1986 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1987 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1988 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1989 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1990 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1991 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1992 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1993 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1994 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 1995 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 1996 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 1997 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 1998 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 1999 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2000 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2001 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2002 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2003 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2004 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2005 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2006 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2007 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2008 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2009 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2010 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2011 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2012 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2013 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2014 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2015 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2016 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2017 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2018 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2019 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2020 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2021 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2022 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2023 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2024 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2025 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2026 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2027 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2028 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2029 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2030 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2031 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2032 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2033 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2034 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2035 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2036 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2037 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2038 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2039 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2040 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> League Match_Date Matchweek Home_Team Home_Formation -#> 1 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 2 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 3 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 4 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 5 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 6 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 7 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 8 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 9 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 10 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 11 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 12 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 13 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 14 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 15 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 16 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 17 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 18 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 19 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 20 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 21 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 22 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 23 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 24 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 25 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 26 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 27 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 28 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 29 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 30 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 31 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 32 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 -#> 33 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 34 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 35 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 36 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 37 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 38 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 39 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 40 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 41 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 42 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 43 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 44 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 45 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 46 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 47 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 48 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 49 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 50 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 51 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 52 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 53 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 54 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 55 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 56 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 57 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 58 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 59 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 60 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 61 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 62 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 -#> 63 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 64 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 65 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 66 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 67 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 68 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 69 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 70 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 71 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 72 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 73 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 74 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 75 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 76 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 77 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 78 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 79 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 80 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 81 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 82 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 83 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 84 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 85 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 86 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 87 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 88 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 89 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 90 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 91 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 92 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 93 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 -#> 94 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 95 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 96 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 97 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 98 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 99 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 100 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 101 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 102 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 103 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 104 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 105 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 106 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 107 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 108 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 109 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 110 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 111 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 112 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 113 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 114 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 115 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 116 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 117 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 118 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 119 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 120 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 121 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 122 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 123 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 124 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 -#> 125 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 126 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 127 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 128 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 129 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 130 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 131 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 132 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 133 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 134 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 135 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 136 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 137 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 138 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 139 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 140 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 141 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 142 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 143 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 144 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 145 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 146 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 147 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 148 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 149 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 150 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 151 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 152 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 153 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 154 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 155 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 156 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 -#> 157 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 158 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 159 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 160 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 161 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 162 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 163 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 164 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 165 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 166 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 167 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 168 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 169 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 170 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 171 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 172 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 173 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 174 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 175 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 176 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 177 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 178 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 179 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 180 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 181 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 182 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 183 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 184 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 185 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 186 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 187 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 188 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 -#> 189 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 190 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 191 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 192 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 193 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 194 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 195 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 196 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 197 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 198 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 199 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 200 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 201 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 202 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 203 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 204 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 205 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 206 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 207 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 208 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 209 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 210 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 211 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 212 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 213 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 214 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 215 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 216 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 217 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 218 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 219 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 220 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 -#> 221 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 222 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 223 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 224 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 225 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 226 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 227 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 228 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 229 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 230 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 231 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 232 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 233 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 234 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 235 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 236 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 237 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 238 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 239 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 240 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 241 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 242 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 243 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 244 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 245 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 246 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 247 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 248 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 249 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 250 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 251 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 -#> 252 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 253 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 254 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 255 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 256 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 257 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 258 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 259 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 260 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 261 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 262 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 263 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 264 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 265 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 266 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 267 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 268 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 269 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 270 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 271 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 272 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 273 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 274 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 275 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 276 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 277 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 278 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 279 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 280 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 281 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 282 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 -#> 283 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 284 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 285 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 286 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 287 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 288 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 289 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 290 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 291 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 292 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 293 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 294 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 295 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 296 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 297 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 298 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 299 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 300 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 301 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 302 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 303 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 304 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 305 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 306 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 307 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 308 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 309 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 310 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 311 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 312 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 313 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 314 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 -#> 315 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 316 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 317 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 318 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 319 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 320 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 321 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 322 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 323 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 324 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 325 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 326 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 327 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 328 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 329 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 330 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 331 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 332 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 333 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 334 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 335 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 336 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 337 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 338 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 339 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 340 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 341 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 342 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 343 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 344 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 345 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 -#> 346 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 347 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 348 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 349 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 350 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 351 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 352 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 353 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 354 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 355 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 356 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 357 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 358 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 359 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 360 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 361 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 362 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 363 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 364 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 365 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 366 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 367 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 368 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 369 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 370 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 371 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 372 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 373 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 374 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 375 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 376 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 377 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 -#> 378 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 379 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 380 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 381 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 382 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 383 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 384 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 385 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 386 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 387 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 388 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 389 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 390 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 391 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 392 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 393 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 394 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 395 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 396 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 397 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 398 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 399 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 400 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 401 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 402 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 403 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 404 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 405 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 406 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 407 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 408 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 409 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 -#> 410 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 411 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 412 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 413 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 414 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 415 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 416 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 417 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 418 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 419 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 420 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 421 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 422 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 423 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 424 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 425 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 426 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 427 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 428 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 429 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 430 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 431 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 432 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 433 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 434 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 435 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 436 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 437 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 438 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 -#> 439 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 440 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 441 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 442 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 443 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 444 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 445 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 446 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 447 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 448 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 449 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 450 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 451 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 452 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 453 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 454 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 455 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 456 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 457 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 458 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 459 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 460 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 461 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 462 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 463 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 464 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 465 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 466 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 467 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 468 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 -#> 469 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 470 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 471 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 472 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 473 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 474 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 475 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 476 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 477 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 478 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 479 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 480 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 481 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 482 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 483 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 484 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 485 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 486 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 487 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 488 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 489 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 490 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 491 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 492 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 493 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 494 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 495 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 496 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 497 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 498 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 499 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 500 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 -#> 501 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 502 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 503 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 504 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 505 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 506 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 507 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 508 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 509 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 510 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 511 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 512 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 513 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 514 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 515 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 516 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 517 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 518 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 519 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 520 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 521 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 522 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 523 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 524 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 525 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 526 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 527 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 528 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 529 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 530 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 531 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 -#> 532 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 533 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 534 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 535 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 536 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 537 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 538 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 539 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 540 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 541 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 542 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 543 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 544 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 545 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 546 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 547 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 548 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 549 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 550 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 551 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 552 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 553 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 554 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 555 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 556 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 557 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 558 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 559 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 560 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 561 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 562 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 563 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 -#> 564 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 565 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 566 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 567 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 568 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 569 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 570 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 571 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 572 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 573 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 574 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 575 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 576 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 577 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 578 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 579 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 580 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 581 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 582 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 583 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 584 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 585 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 586 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 587 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 588 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 589 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 590 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 591 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 -#> 592 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 593 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 594 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 595 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 596 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 597 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 598 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 599 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 600 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 601 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 602 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 603 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 604 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 605 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 606 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 607 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 608 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 609 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 610 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 611 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 612 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 613 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 614 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 615 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 616 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 617 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 618 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 619 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 620 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 621 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 622 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 -#> 623 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 624 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 625 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 626 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 627 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 628 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 629 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 630 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 631 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 632 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 633 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 634 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 635 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 636 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 637 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 638 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 639 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 640 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 641 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 642 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 643 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 644 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 645 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 646 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 647 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 648 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 649 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 650 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 651 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 652 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 653 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 -#> 654 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 655 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 656 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 657 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 658 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 659 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 660 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 661 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 662 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 663 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 664 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 665 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 666 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 667 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 668 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 669 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 670 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 671 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 672 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 673 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 674 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 675 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 676 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 677 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 678 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 679 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 680 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 681 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 682 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 683 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 684 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 685 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 -#> 686 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 687 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 688 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 689 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 690 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 691 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 692 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 693 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 694 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 695 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 696 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 697 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 698 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 699 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 700 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 701 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 702 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 703 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 704 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 705 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 706 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 707 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 708 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 709 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 710 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 711 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 712 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 713 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 714 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 715 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 716 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 -#> 717 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 718 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 719 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 720 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 721 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 722 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 723 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 724 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 725 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 726 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 727 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 728 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 729 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 730 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 731 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 732 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 733 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 734 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 735 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 736 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 737 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 738 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 739 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 740 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 741 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 742 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 743 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 744 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 745 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 746 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 747 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 748 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 -#> 749 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 750 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 751 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 752 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 753 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 754 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 755 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 756 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 757 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 758 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 759 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 760 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 761 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 762 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 763 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 764 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 765 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 766 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 767 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 768 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 769 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 770 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 771 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 772 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 773 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 774 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 775 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 776 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 777 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 778 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 -#> 779 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 780 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 781 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 782 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 783 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 784 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 785 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 786 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 787 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 788 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 789 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 790 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 791 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 792 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 793 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 794 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 795 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 796 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 797 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 798 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 799 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 800 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 801 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 802 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 803 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 804 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 805 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 806 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 807 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 808 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 809 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 810 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 -#> 811 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 812 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 813 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 814 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 815 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 816 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 817 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 818 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 819 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 820 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 821 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 822 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 823 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 824 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 825 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 826 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 827 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 828 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 829 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 830 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 831 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 832 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 833 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 834 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 835 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 836 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 837 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 838 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 839 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 -#> 840 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 841 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 842 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 843 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 844 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 845 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 846 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 847 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 848 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 849 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 850 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 851 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 852 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 853 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 854 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 855 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 856 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 857 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 858 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 859 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 860 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 861 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 862 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 863 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 864 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 865 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 866 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 867 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 868 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 869 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 870 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 871 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 -#> 872 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 873 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 874 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 875 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 876 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 877 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 878 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 879 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 880 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 881 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 882 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 883 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 884 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 885 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 886 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 887 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 888 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 889 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 890 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 891 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 892 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 893 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 894 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 895 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 896 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 897 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 898 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 899 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 900 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 901 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 902 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 903 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 -#> 904 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 905 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 906 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 907 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 908 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 909 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 910 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 911 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 912 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 913 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 914 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 915 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 916 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 917 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 918 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 919 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 920 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 921 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 922 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 923 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 924 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 925 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 926 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 927 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 928 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 929 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 930 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 931 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 932 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 933 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 934 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 935 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 -#> 936 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 937 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 938 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 939 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 940 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 941 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 942 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 943 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 944 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 945 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 946 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 947 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 948 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 949 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 950 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 951 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 952 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 953 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 954 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 955 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 956 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 957 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 958 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 959 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 960 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 961 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 962 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 963 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 964 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 965 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 -#> 966 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 967 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 968 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 969 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 970 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 971 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 972 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 973 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 974 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 975 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 976 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 977 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 978 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 979 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 980 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 981 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 982 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 983 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 984 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 985 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 986 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 987 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 988 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 989 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 990 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 991 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 992 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 993 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 994 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 995 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 -#> 996 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 997 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 998 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 999 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1000 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1001 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1002 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1003 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1004 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1005 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1006 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1007 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1008 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1009 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1010 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1011 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1012 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1013 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1014 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1015 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1016 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1017 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1018 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1019 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1020 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1021 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1022 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1023 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1024 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1025 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1026 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1027 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 -#> 1028 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1029 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1030 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1031 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1032 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1033 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1034 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1035 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1036 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1037 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1038 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1039 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1040 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1041 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1042 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1043 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1044 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1045 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1046 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1047 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1048 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1049 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1050 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1051 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1052 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1053 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1054 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1055 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1056 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1057 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1058 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1059 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 -#> 1060 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1061 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1062 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1063 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1064 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1065 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1066 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1067 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1068 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1069 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1070 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1071 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1072 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1073 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1074 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1075 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1076 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1077 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1078 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1079 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1080 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1081 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1082 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1083 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1084 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1085 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1086 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1087 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1088 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1089 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1090 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 -#> 1091 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1092 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1093 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1094 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1095 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1096 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1097 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1098 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1099 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1100 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1101 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1102 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1103 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1104 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1105 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1106 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1107 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1108 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1109 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1110 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1111 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1112 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1113 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1114 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1115 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1116 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1117 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1118 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1119 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1120 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1121 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 -#> 1122 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1123 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1124 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1125 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1126 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1127 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1128 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1129 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1130 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1131 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1132 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1133 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1134 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1135 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1136 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1137 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1138 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1139 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1140 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1141 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1142 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1143 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1144 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1145 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1146 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1147 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1148 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1149 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1150 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1151 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1152 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1153 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 -#> 1154 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1155 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1156 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1157 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1158 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1159 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1160 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1161 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1162 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1163 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1164 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1165 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1166 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1167 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1168 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1169 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1170 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1171 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1172 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1173 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1174 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1175 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1176 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1177 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1178 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1179 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1180 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1181 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1182 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1183 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1184 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1185 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 -#> 1186 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1187 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1188 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1189 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1190 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1191 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1192 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1193 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1194 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1195 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1196 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1197 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1198 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1199 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1200 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1201 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1202 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1203 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1204 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1205 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1206 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1207 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1208 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1209 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1210 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1211 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1212 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1213 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1214 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1215 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1216 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 -#> 1217 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1218 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1219 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1220 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1221 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1222 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1223 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1224 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1225 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1226 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1227 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1228 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1229 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1230 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1231 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1232 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1233 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1234 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1235 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1236 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1237 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1238 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1239 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1240 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1241 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1242 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1243 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1244 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1245 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1246 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1247 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1248 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 -#> 1249 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1250 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1251 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1252 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1253 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1254 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1255 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1256 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1257 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1258 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1259 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1260 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1261 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1262 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1263 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1264 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1265 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1266 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1267 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1268 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1269 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1270 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1271 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1272 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1273 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1274 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1275 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1276 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1277 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1278 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1279 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 -#> 1280 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1281 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1282 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1283 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1284 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1285 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1286 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1287 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1288 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1289 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1290 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1291 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1292 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1293 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1294 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1295 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1296 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1297 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1298 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1299 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1300 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1301 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1302 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1303 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1304 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1305 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1306 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1307 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1308 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1309 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1310 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 -#> 1311 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1312 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1313 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1314 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1315 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1316 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1317 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1318 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1319 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1320 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1321 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1322 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1323 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1324 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1325 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1326 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1327 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1328 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1329 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1330 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1331 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1332 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1333 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1334 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1335 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1336 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1337 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1338 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1339 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1340 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1341 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1342 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 -#> 1343 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1344 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1345 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1346 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1347 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1348 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1349 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1350 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1351 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1352 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1353 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1354 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1355 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1356 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1357 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1358 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1359 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1360 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1361 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1362 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1363 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1364 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1365 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1366 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1367 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1368 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1369 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1370 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1371 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 -#> 1372 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1373 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1374 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1375 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1376 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1377 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1378 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1379 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1380 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1381 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1382 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1383 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1384 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1385 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1386 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1387 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1388 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1389 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1390 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1391 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1392 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1393 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1394 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1395 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1396 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1397 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1398 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1399 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1400 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1401 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1402 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 -#> 1403 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1404 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1405 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1406 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1407 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1408 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1409 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1410 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1411 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1412 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1413 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1414 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1415 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1416 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1417 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1418 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1419 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1420 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1421 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1422 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1423 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1424 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1425 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1426 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1427 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1428 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1429 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1430 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1431 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1432 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1433 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1434 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 -#> 1435 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1436 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1437 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1438 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1439 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1440 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1441 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1442 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1443 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1444 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1445 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1446 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1447 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1448 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1449 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1450 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1451 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1452 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1453 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1454 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1455 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1456 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1457 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1458 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1459 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1460 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1461 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1462 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1463 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1464 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1465 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 -#> 1466 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1467 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1468 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1469 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1470 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1471 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1472 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1473 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1474 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1475 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1476 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1477 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1478 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1479 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1480 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1481 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1482 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1483 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1484 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1485 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1486 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1487 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1488 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1489 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1490 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1491 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1492 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1493 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1494 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1495 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 -#> 1496 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1497 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1498 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1499 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1500 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1501 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1502 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1503 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1504 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1505 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1506 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1507 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1508 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1509 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1510 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1511 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1512 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1513 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1514 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1515 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1516 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1517 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1518 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1519 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1520 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1521 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1522 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1523 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1524 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1525 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1526 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1527 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 -#> 1528 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1529 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1530 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1531 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1532 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1533 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1534 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1535 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1536 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1537 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1538 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1539 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1540 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1541 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1542 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1543 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1544 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1545 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1546 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1547 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1548 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1549 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1550 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1551 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1552 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1553 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1554 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1555 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1556 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1557 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1558 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1559 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 -#> 1560 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1561 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1562 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1563 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1564 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1565 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1566 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1567 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1568 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1569 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1570 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1571 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1572 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1573 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1574 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1575 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1576 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1577 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1578 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1579 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1580 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1581 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1582 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1583 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1584 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1585 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1586 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1587 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1588 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1589 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1590 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 -#> 1591 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1592 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1593 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1594 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1595 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1596 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1597 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1598 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1599 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1600 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1601 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1602 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1603 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1604 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1605 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1606 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1607 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1608 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1609 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1610 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1611 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1612 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1613 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1614 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1615 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1616 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1617 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1618 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1619 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1620 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1621 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1622 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 -#> 1623 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1624 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1625 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1626 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1627 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1628 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1629 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1630 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1631 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1632 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1633 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1634 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1635 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1636 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1637 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1638 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1639 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1640 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1641 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1642 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1643 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1644 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1645 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1646 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1647 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1648 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1649 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1650 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1651 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1652 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 -#> 1653 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1654 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1655 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1656 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1657 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1658 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1659 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1660 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1661 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1662 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1663 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1664 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1665 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1666 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1667 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1668 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1669 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1670 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1671 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1672 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1673 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1674 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1675 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1676 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1677 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1678 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1679 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1680 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1681 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1682 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1683 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1684 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 -#> 1685 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1686 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1687 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1688 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1689 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1690 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1691 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1692 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1693 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1694 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1695 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1696 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1697 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1698 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1699 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1700 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1701 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1702 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1703 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1704 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1705 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1706 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1707 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1708 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1709 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1710 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1711 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1712 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1713 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1714 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1715 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1716 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 -#> 1717 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1718 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1719 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1720 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1721 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1722 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1723 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1724 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1725 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1726 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1727 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1728 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1729 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1730 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1731 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1732 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1733 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1734 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1735 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1736 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1737 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1738 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1739 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1740 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1741 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1742 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1743 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1744 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1745 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1746 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1747 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1748 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 -#> 1749 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1750 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1751 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1752 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1753 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1754 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1755 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1756 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1757 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1758 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1759 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1760 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1761 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1762 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1763 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1764 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1765 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1766 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1767 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1768 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1769 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1770 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1771 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1772 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1773 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1774 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1775 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1776 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1777 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1778 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1779 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 -#> 1780 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1781 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1782 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1783 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1784 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1785 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1786 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1787 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1788 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1789 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1790 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1791 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1792 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1793 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1794 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1795 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1796 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1797 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1798 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1799 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1800 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1801 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1802 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1803 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1804 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1805 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1806 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1807 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1808 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 -#> 1809 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1810 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1811 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1812 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1813 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1814 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1815 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1816 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1817 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1818 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1819 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1820 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1821 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1822 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1823 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1824 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1825 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1826 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1827 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1828 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1829 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1830 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1831 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1832 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1833 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1834 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1835 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1836 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1837 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1838 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1839 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 -#> 1840 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1841 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1842 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1843 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1844 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1845 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1846 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1847 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1848 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1849 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1850 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1851 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1852 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1853 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1854 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1855 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1856 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1857 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1858 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1859 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1860 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1861 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1862 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1863 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1864 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1865 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1866 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1867 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1868 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1869 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1870 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1871 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 -#> 1872 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1873 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1874 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1875 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1876 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1877 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1878 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1879 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1880 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1881 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1882 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1883 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1884 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1885 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1886 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1887 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1888 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1889 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1890 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1891 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1892 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1893 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1894 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1895 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1896 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1897 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1898 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1899 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1900 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1901 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 -#> 1902 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1903 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1904 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1905 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1906 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1907 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1908 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1909 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1910 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1911 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1912 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1913 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1914 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1915 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1916 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1917 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1918 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1919 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1920 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1921 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1922 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1923 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1924 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1925 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1926 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1927 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1928 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1929 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1930 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1931 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1932 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 -#> 1933 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1934 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1935 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1936 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1937 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1938 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1939 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1940 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1941 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1942 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1943 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1944 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1945 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1946 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1947 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1948 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1949 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1950 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1951 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1952 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1953 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1954 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1955 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1956 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1957 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1958 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1959 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1960 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1961 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1962 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1963 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1964 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 -#> 1965 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1966 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1967 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1968 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1969 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1970 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1971 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1972 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1973 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1974 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1975 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1976 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1977 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1978 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1979 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1980 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1981 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1982 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1983 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1984 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1985 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1986 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1987 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1988 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1989 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1990 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1991 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1992 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1993 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 -#> 1994 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 1995 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 1996 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 1997 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 1998 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 1999 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2000 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2001 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2002 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2003 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2004 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2005 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2006 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2007 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2008 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2009 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2010 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2011 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2012 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2013 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2014 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2015 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2016 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2017 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2018 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2019 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2020 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2021 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2022 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2023 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2024 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2025 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 -#> 2026 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> 2027 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> 2028 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> 2029 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> 2030 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> 2031 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> 2032 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> 2033 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> 2034 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> 2035 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> 2036 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> 2037 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> 2038 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> 2039 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> 2040 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 -#> Home_Score Home_xG -#> 1 2 1.5 -#> 2 2 1.5 -#> 3 2 1.5 -#> 4 2 1.5 -#> 5 2 1.5 -#> 6 2 1.5 -#> 7 2 1.5 -#> 8 2 1.5 -#> 9 2 1.5 -#> 10 2 1.5 -#> 11 2 1.5 -#> 12 2 1.5 -#> 13 2 1.5 -#> 14 2 1.5 -#> 15 2 1.5 -#> 16 2 1.5 -#> 17 2 1.5 -#> 18 2 1.5 -#> 19 2 1.5 -#> 20 2 1.5 -#> 21 2 1.5 -#> 22 2 1.5 -#> 23 2 1.5 -#> 24 2 1.5 -#> 25 2 1.5 -#> 26 2 1.5 -#> 27 2 1.5 -#> 28 2 1.5 -#> 29 2 1.5 -#> 30 2 1.5 -#> 31 2 1.5 -#> 32 2 1.5 -#> 33 2 0.4 -#> 34 2 0.4 -#> 35 2 0.4 -#> 36 2 0.4 -#> 37 2 0.4 -#> 38 2 0.4 -#> 39 2 0.4 -#> 40 2 0.4 -#> 41 2 0.4 -#> 42 2 0.4 -#> 43 2 0.4 -#> 44 2 0.4 -#> 45 2 0.4 -#> 46 2 0.4 -#> 47 2 0.4 -#> 48 2 0.4 -#> 49 2 0.4 -#> 50 2 0.4 -#> 51 2 0.4 -#> 52 2 0.4 -#> 53 2 0.4 -#> 54 2 0.4 -#> 55 2 0.4 -#> 56 2 0.4 -#> 57 2 0.4 -#> 58 2 0.4 -#> 59 2 0.4 -#> 60 2 0.4 -#> 61 2 0.4 -#> 62 2 0.4 -#> 63 0 1.0 -#> 64 0 1.0 -#> 65 0 1.0 -#> 66 0 1.0 -#> 67 0 1.0 -#> 68 0 1.0 -#> 69 0 1.0 -#> 70 0 1.0 -#> 71 0 1.0 -#> 72 0 1.0 -#> 73 0 1.0 -#> 74 0 1.0 -#> 75 0 1.0 -#> 76 0 1.0 -#> 77 0 1.0 -#> 78 0 1.0 -#> 79 0 1.0 -#> 80 0 1.0 -#> 81 0 1.0 -#> 82 0 1.0 -#> 83 0 1.0 -#> 84 0 1.0 -#> 85 0 1.0 -#> 86 0 1.0 -#> 87 0 1.0 -#> 88 0 1.0 -#> 89 0 1.0 -#> 90 0 1.0 -#> 91 0 1.0 -#> 92 0 1.0 -#> 93 0 1.0 -#> 94 0 1.9 -#> 95 0 1.9 -#> 96 0 1.9 -#> 97 0 1.9 -#> 98 0 1.9 -#> 99 0 1.9 -#> 100 0 1.9 -#> 101 0 1.9 -#> 102 0 1.9 -#> 103 0 1.9 -#> 104 0 1.9 -#> 105 0 1.9 -#> 106 0 1.9 -#> 107 0 1.9 -#> 108 0 1.9 -#> 109 0 1.9 -#> 110 0 1.9 -#> 111 0 1.9 -#> 112 0 1.9 -#> 113 0 1.9 -#> 114 0 1.9 -#> 115 0 1.9 -#> 116 0 1.9 -#> 117 0 1.9 -#> 118 0 1.9 -#> 119 0 1.9 -#> 120 0 1.9 -#> 121 0 1.9 -#> 122 0 1.9 -#> 123 0 1.9 -#> 124 0 1.9 -#> 125 0 0.2 -#> 126 0 0.2 -#> 127 0 0.2 -#> 128 0 0.2 -#> 129 0 0.2 -#> 130 0 0.2 -#> 131 0 0.2 -#> 132 0 0.2 -#> 133 0 0.2 -#> 134 0 0.2 -#> 135 0 0.2 -#> 136 0 0.2 -#> 137 0 0.2 -#> 138 0 0.2 -#> 139 0 0.2 -#> 140 0 0.2 -#> 141 0 0.2 -#> 142 0 0.2 -#> 143 0 0.2 -#> 144 0 0.2 -#> 145 0 0.2 -#> 146 0 0.2 -#> 147 0 0.2 -#> 148 0 0.2 -#> 149 0 0.2 -#> 150 0 0.2 -#> 151 0 0.2 -#> 152 0 0.2 -#> 153 0 0.2 -#> 154 0 0.2 -#> 155 0 0.2 -#> 156 0 0.2 -#> 157 1 1.6 -#> 158 1 1.6 -#> 159 1 1.6 -#> 160 1 1.6 -#> 161 1 1.6 -#> 162 1 1.6 -#> 163 1 1.6 -#> 164 1 1.6 -#> 165 1 1.6 -#> 166 1 1.6 -#> 167 1 1.6 -#> 168 1 1.6 -#> 169 1 1.6 -#> 170 1 1.6 -#> 171 1 1.6 -#> 172 1 1.6 -#> 173 1 1.6 -#> 174 1 1.6 -#> 175 1 1.6 -#> 176 1 1.6 -#> 177 1 1.6 -#> 178 1 1.6 -#> 179 1 1.6 -#> 180 1 1.6 -#> 181 1 1.6 -#> 182 1 1.6 -#> 183 1 1.6 -#> 184 1 1.6 -#> 185 1 1.6 -#> 186 1 1.6 -#> 187 1 1.6 -#> 188 1 1.6 -#> 189 1 0.7 -#> 190 1 0.7 -#> 191 1 0.7 -#> 192 1 0.7 -#> 193 1 0.7 -#> 194 1 0.7 -#> 195 1 0.7 -#> 196 1 0.7 -#> 197 1 0.7 -#> 198 1 0.7 -#> 199 1 0.7 -#> 200 1 0.7 -#> 201 1 0.7 -#> 202 1 0.7 -#> 203 1 0.7 -#> 204 1 0.7 -#> 205 1 0.7 -#> 206 1 0.7 -#> 207 1 0.7 -#> 208 1 0.7 -#> 209 1 0.7 -#> 210 1 0.7 -#> 211 1 0.7 -#> 212 1 0.7 -#> 213 1 0.7 -#> 214 1 0.7 -#> 215 1 0.7 -#> 216 1 0.7 -#> 217 1 0.7 -#> 218 1 0.7 -#> 219 1 0.7 -#> 220 1 0.7 -#> 221 0 1.6 -#> 222 0 1.6 -#> 223 0 1.6 -#> 224 0 1.6 -#> 225 0 1.6 -#> 226 0 1.6 -#> 227 0 1.6 -#> 228 0 1.6 -#> 229 0 1.6 -#> 230 0 1.6 -#> 231 0 1.6 -#> 232 0 1.6 -#> 233 0 1.6 -#> 234 0 1.6 -#> 235 0 1.6 -#> 236 0 1.6 -#> 237 0 1.6 -#> 238 0 1.6 -#> 239 0 1.6 -#> 240 0 1.6 -#> 241 0 1.6 -#> 242 0 1.6 -#> 243 0 1.6 -#> 244 0 1.6 -#> 245 0 1.6 -#> 246 0 1.6 -#> 247 0 1.6 -#> 248 0 1.6 -#> 249 0 1.6 -#> 250 0 1.6 -#> 251 0 1.6 -#> 252 0 0.7 -#> 253 0 0.7 -#> 254 0 0.7 -#> 255 0 0.7 -#> 256 0 0.7 -#> 257 0 0.7 -#> 258 0 0.7 -#> 259 0 0.7 -#> 260 0 0.7 -#> 261 0 0.7 -#> 262 0 0.7 -#> 263 0 0.7 -#> 264 0 0.7 -#> 265 0 0.7 -#> 266 0 0.7 -#> 267 0 0.7 -#> 268 0 0.7 -#> 269 0 0.7 -#> 270 0 0.7 -#> 271 0 0.7 -#> 272 0 0.7 -#> 273 0 0.7 -#> 274 0 0.7 -#> 275 0 0.7 -#> 276 0 0.7 -#> 277 0 0.7 -#> 278 0 0.7 -#> 279 0 0.7 -#> 280 0 0.7 -#> 281 0 0.7 -#> 282 0 0.7 -#> 283 3 3.1 -#> 284 3 3.1 -#> 285 3 3.1 -#> 286 3 3.1 -#> 287 3 3.1 -#> 288 3 3.1 -#> 289 3 3.1 -#> 290 3 3.1 -#> 291 3 3.1 -#> 292 3 3.1 -#> 293 3 3.1 -#> 294 3 3.1 -#> 295 3 3.1 -#> 296 3 3.1 -#> 297 3 3.1 -#> 298 3 3.1 -#> 299 3 3.1 -#> 300 3 3.1 -#> 301 3 3.1 -#> 302 3 3.1 -#> 303 3 3.1 -#> 304 3 3.1 -#> 305 3 3.1 -#> 306 3 3.1 -#> 307 3 3.1 -#> 308 3 3.1 -#> 309 3 3.1 -#> 310 3 3.1 -#> 311 3 3.1 -#> 312 3 3.1 -#> 313 3 3.1 -#> 314 3 3.1 -#> 315 0 0.8 -#> 316 0 0.8 -#> 317 0 0.8 -#> 318 0 0.8 -#> 319 0 0.8 -#> 320 0 0.8 -#> 321 0 0.8 -#> 322 0 0.8 -#> 323 0 0.8 -#> 324 0 0.8 -#> 325 0 0.8 -#> 326 0 0.8 -#> 327 0 0.8 -#> 328 0 0.8 -#> 329 0 0.8 -#> 330 0 0.8 -#> 331 0 0.8 -#> 332 0 0.8 -#> 333 0 0.8 -#> 334 0 0.8 -#> 335 0 0.8 -#> 336 0 0.8 -#> 337 0 0.8 -#> 338 0 0.8 -#> 339 0 0.8 -#> 340 0 0.8 -#> 341 0 0.8 -#> 342 0 0.8 -#> 343 0 0.8 -#> 344 0 0.8 -#> 345 0 0.8 -#> 346 1 2.0 -#> 347 1 2.0 -#> 348 1 2.0 -#> 349 1 2.0 -#> 350 1 2.0 -#> 351 1 2.0 -#> 352 1 2.0 -#> 353 1 2.0 -#> 354 1 2.0 -#> 355 1 2.0 -#> 356 1 2.0 -#> 357 1 2.0 -#> 358 1 2.0 -#> 359 1 2.0 -#> 360 1 2.0 -#> 361 1 2.0 -#> 362 1 2.0 -#> 363 1 2.0 -#> 364 1 2.0 -#> 365 1 2.0 -#> 366 1 2.0 -#> 367 1 2.0 -#> 368 1 2.0 -#> 369 1 2.0 -#> 370 1 2.0 -#> 371 1 2.0 -#> 372 1 2.0 -#> 373 1 2.0 -#> 374 1 2.0 -#> 375 1 2.0 -#> 376 1 2.0 -#> 377 1 2.0 -#> 378 2 2.7 -#> 379 2 2.7 -#> 380 2 2.7 -#> 381 2 2.7 -#> 382 2 2.7 -#> 383 2 2.7 -#> 384 2 2.7 -#> 385 2 2.7 -#> 386 2 2.7 -#> 387 2 2.7 -#> 388 2 2.7 -#> 389 2 2.7 -#> 390 2 2.7 -#> 391 2 2.7 -#> 392 2 2.7 -#> 393 2 2.7 -#> 394 2 2.7 -#> 395 2 2.7 -#> 396 2 2.7 -#> 397 2 2.7 -#> 398 2 2.7 -#> 399 2 2.7 -#> 400 2 2.7 -#> 401 2 2.7 -#> 402 2 2.7 -#> 403 2 2.7 -#> 404 2 2.7 -#> 405 2 2.7 -#> 406 2 2.7 -#> 407 2 2.7 -#> 408 2 2.7 -#> 409 2 2.7 -#> 410 1 0.6 -#> 411 1 0.6 -#> 412 1 0.6 -#> 413 1 0.6 -#> 414 1 0.6 -#> 415 1 0.6 -#> 416 1 0.6 -#> 417 1 0.6 -#> 418 1 0.6 -#> 419 1 0.6 -#> 420 1 0.6 -#> 421 1 0.6 -#> 422 1 0.6 -#> 423 1 0.6 -#> 424 1 0.6 -#> 425 1 0.6 -#> 426 1 0.6 -#> 427 1 0.6 -#> 428 1 0.6 -#> 429 1 0.6 -#> 430 1 0.6 -#> 431 1 0.6 -#> 432 1 0.6 -#> 433 1 0.6 -#> 434 1 0.6 -#> 435 1 0.6 -#> 436 1 0.6 -#> 437 1 0.6 -#> 438 1 0.6 -#> 439 1 1.4 -#> 440 1 1.4 -#> 441 1 1.4 -#> 442 1 1.4 -#> 443 1 1.4 -#> 444 1 1.4 -#> 445 1 1.4 -#> 446 1 1.4 -#> 447 1 1.4 -#> 448 1 1.4 -#> 449 1 1.4 -#> 450 1 1.4 -#> 451 1 1.4 -#> 452 1 1.4 -#> 453 1 1.4 -#> 454 1 1.4 -#> 455 1 1.4 -#> 456 1 1.4 -#> 457 1 1.4 -#> 458 1 1.4 -#> 459 1 1.4 -#> 460 1 1.4 -#> 461 1 1.4 -#> 462 1 1.4 -#> 463 1 1.4 -#> 464 1 1.4 -#> 465 1 1.4 -#> 466 1 1.4 -#> 467 1 1.4 -#> 468 1 1.4 -#> 469 1 1.0 -#> 470 1 1.0 -#> 471 1 1.0 -#> 472 1 1.0 -#> 473 1 1.0 -#> 474 1 1.0 -#> 475 1 1.0 -#> 476 1 1.0 -#> 477 1 1.0 -#> 478 1 1.0 -#> 479 1 1.0 -#> 480 1 1.0 -#> 481 1 1.0 -#> 482 1 1.0 -#> 483 1 1.0 -#> 484 1 1.0 -#> 485 1 1.0 -#> 486 1 1.0 -#> 487 1 1.0 -#> 488 1 1.0 -#> 489 1 1.0 -#> 490 1 1.0 -#> 491 1 1.0 -#> 492 1 1.0 -#> 493 1 1.0 -#> 494 1 1.0 -#> 495 1 1.0 -#> 496 1 1.0 -#> 497 1 1.0 -#> 498 1 1.0 -#> 499 1 1.0 -#> 500 1 1.0 -#> 501 0 1.6 -#> 502 0 1.6 -#> 503 0 1.6 -#> 504 0 1.6 -#> 505 0 1.6 -#> 506 0 1.6 -#> 507 0 1.6 -#> 508 0 1.6 -#> 509 0 1.6 -#> 510 0 1.6 -#> 511 0 1.6 -#> 512 0 1.6 -#> 513 0 1.6 -#> 514 0 1.6 -#> 515 0 1.6 -#> 516 0 1.6 -#> 517 0 1.6 -#> 518 0 1.6 -#> 519 0 1.6 -#> 520 0 1.6 -#> 521 0 1.6 -#> 522 0 1.6 -#> 523 0 1.6 -#> 524 0 1.6 -#> 525 0 1.6 -#> 526 0 1.6 -#> 527 0 1.6 -#> 528 0 1.6 -#> 529 0 1.6 -#> 530 0 1.6 -#> 531 0 1.6 -#> 532 1 0.8 -#> 533 1 0.8 -#> 534 1 0.8 -#> 535 1 0.8 -#> 536 1 0.8 -#> 537 1 0.8 -#> 538 1 0.8 -#> 539 1 0.8 -#> 540 1 0.8 -#> 541 1 0.8 -#> 542 1 0.8 -#> 543 1 0.8 -#> 544 1 0.8 -#> 545 1 0.8 -#> 546 1 0.8 -#> 547 1 0.8 -#> 548 1 0.8 -#> 549 1 0.8 -#> 550 1 0.8 -#> 551 1 0.8 -#> 552 1 0.8 -#> 553 1 0.8 -#> 554 1 0.8 -#> 555 1 0.8 -#> 556 1 0.8 -#> 557 1 0.8 -#> 558 1 0.8 -#> 559 1 0.8 -#> 560 1 0.8 -#> 561 1 0.8 -#> 562 1 0.8 -#> 563 1 0.8 -#> 564 3 1.1 -#> 565 3 1.1 -#> 566 3 1.1 -#> 567 3 1.1 -#> 568 3 1.1 -#> 569 3 1.1 -#> 570 3 1.1 -#> 571 3 1.1 -#> 572 3 1.1 -#> 573 3 1.1 -#> 574 3 1.1 -#> 575 3 1.1 -#> 576 3 1.1 -#> 577 3 1.1 -#> 578 3 1.1 -#> 579 3 1.1 -#> 580 3 1.1 -#> 581 3 1.1 -#> 582 3 1.1 -#> 583 3 1.1 -#> 584 3 1.1 -#> 585 3 1.1 -#> 586 3 1.1 -#> 587 3 1.1 -#> 588 3 1.1 -#> 589 3 1.1 -#> 590 3 1.1 -#> 591 3 1.1 -#> 592 0 1.0 -#> 593 0 1.0 -#> 594 0 1.0 -#> 595 0 1.0 -#> 596 0 1.0 -#> 597 0 1.0 -#> 598 0 1.0 -#> 599 0 1.0 -#> 600 0 1.0 -#> 601 0 1.0 -#> 602 0 1.0 -#> 603 0 1.0 -#> 604 0 1.0 -#> 605 0 1.0 -#> 606 0 1.0 -#> 607 0 1.0 -#> 608 0 1.0 -#> 609 0 1.0 -#> 610 0 1.0 -#> 611 0 1.0 -#> 612 0 1.0 -#> 613 0 1.0 -#> 614 0 1.0 -#> 615 0 1.0 -#> 616 0 1.0 -#> 617 0 1.0 -#> 618 0 1.0 -#> 619 0 1.0 -#> 620 0 1.0 -#> 621 0 1.0 -#> 622 0 1.0 -#> 623 1 0.5 -#> 624 1 0.5 -#> 625 1 0.5 -#> 626 1 0.5 -#> 627 1 0.5 -#> 628 1 0.5 -#> 629 1 0.5 -#> 630 1 0.5 -#> 631 1 0.5 -#> 632 1 0.5 -#> 633 1 0.5 -#> 634 1 0.5 -#> 635 1 0.5 -#> 636 1 0.5 -#> 637 1 0.5 -#> 638 1 0.5 -#> 639 1 0.5 -#> 640 1 0.5 -#> 641 1 0.5 -#> 642 1 0.5 -#> 643 1 0.5 -#> 644 1 0.5 -#> 645 1 0.5 -#> 646 1 0.5 -#> 647 1 0.5 -#> 648 1 0.5 -#> 649 1 0.5 -#> 650 1 0.5 -#> 651 1 0.5 -#> 652 1 0.5 -#> 653 1 0.5 -#> 654 0 0.7 -#> 655 0 0.7 -#> 656 0 0.7 -#> 657 0 0.7 -#> 658 0 0.7 -#> 659 0 0.7 -#> 660 0 0.7 -#> 661 0 0.7 -#> 662 0 0.7 -#> 663 0 0.7 -#> 664 0 0.7 -#> 665 0 0.7 -#> 666 0 0.7 -#> 667 0 0.7 -#> 668 0 0.7 -#> 669 0 0.7 -#> 670 0 0.7 -#> 671 0 0.7 -#> 672 0 0.7 -#> 673 0 0.7 -#> 674 0 0.7 -#> 675 0 0.7 -#> 676 0 0.7 -#> 677 0 0.7 -#> 678 0 0.7 -#> 679 0 0.7 -#> 680 0 0.7 -#> 681 0 0.7 -#> 682 0 0.7 -#> 683 0 0.7 -#> 684 0 0.7 -#> 685 0 0.7 -#> 686 0 0.7 -#> 687 0 0.7 -#> 688 0 0.7 -#> 689 0 0.7 -#> 690 0 0.7 -#> 691 0 0.7 -#> 692 0 0.7 -#> 693 0 0.7 -#> 694 0 0.7 -#> 695 0 0.7 -#> 696 0 0.7 -#> 697 0 0.7 -#> 698 0 0.7 -#> 699 0 0.7 -#> 700 0 0.7 -#> 701 0 0.7 -#> 702 0 0.7 -#> 703 0 0.7 -#> 704 0 0.7 -#> 705 0 0.7 -#> 706 0 0.7 -#> 707 0 0.7 -#> 708 0 0.7 -#> 709 0 0.7 -#> 710 0 0.7 -#> 711 0 0.7 -#> 712 0 0.7 -#> 713 0 0.7 -#> 714 0 0.7 -#> 715 0 0.7 -#> 716 0 0.7 -#> 717 2 2.3 -#> 718 2 2.3 -#> 719 2 2.3 -#> 720 2 2.3 -#> 721 2 2.3 -#> 722 2 2.3 -#> 723 2 2.3 -#> 724 2 2.3 -#> 725 2 2.3 -#> 726 2 2.3 -#> 727 2 2.3 -#> 728 2 2.3 -#> 729 2 2.3 -#> 730 2 2.3 -#> 731 2 2.3 -#> 732 2 2.3 -#> 733 2 2.3 -#> 734 2 2.3 -#> 735 2 2.3 -#> 736 2 2.3 -#> 737 2 2.3 -#> 738 2 2.3 -#> 739 2 2.3 -#> 740 2 2.3 -#> 741 2 2.3 -#> 742 2 2.3 -#> 743 2 2.3 -#> 744 2 2.3 -#> 745 2 2.3 -#> 746 2 2.3 -#> 747 2 2.3 -#> 748 2 2.3 -#> 749 0 0.3 -#> 750 0 0.3 -#> 751 0 0.3 -#> 752 0 0.3 -#> 753 0 0.3 -#> 754 0 0.3 -#> 755 0 0.3 -#> 756 0 0.3 -#> 757 0 0.3 -#> 758 0 0.3 -#> 759 0 0.3 -#> 760 0 0.3 -#> 761 0 0.3 -#> 762 0 0.3 -#> 763 0 0.3 -#> 764 0 0.3 -#> 765 0 0.3 -#> 766 0 0.3 -#> 767 0 0.3 -#> 768 0 0.3 -#> 769 0 0.3 -#> 770 0 0.3 -#> 771 0 0.3 -#> 772 0 0.3 -#> 773 0 0.3 -#> 774 0 0.3 -#> 775 0 0.3 -#> 776 0 0.3 -#> 777 0 0.3 -#> 778 0 0.3 -#> 779 4 2.6 -#> 780 4 2.6 -#> 781 4 2.6 -#> 782 4 2.6 -#> 783 4 2.6 -#> 784 4 2.6 -#> 785 4 2.6 -#> 786 4 2.6 -#> 787 4 2.6 -#> 788 4 2.6 -#> 789 4 2.6 -#> 790 4 2.6 -#> 791 4 2.6 -#> 792 4 2.6 -#> 793 4 2.6 -#> 794 4 2.6 -#> 795 4 2.6 -#> 796 4 2.6 -#> 797 4 2.6 -#> 798 4 2.6 -#> 799 4 2.6 -#> 800 4 2.6 -#> 801 4 2.6 -#> 802 4 2.6 -#> 803 4 2.6 -#> 804 4 2.6 -#> 805 4 2.6 -#> 806 4 2.6 -#> 807 4 2.6 -#> 808 4 2.6 -#> 809 4 2.6 -#> 810 4 2.6 -#> 811 1 1.3 -#> 812 1 1.3 -#> 813 1 1.3 -#> 814 1 1.3 -#> 815 1 1.3 -#> 816 1 1.3 -#> 817 1 1.3 -#> 818 1 1.3 -#> 819 1 1.3 -#> 820 1 1.3 -#> 821 1 1.3 -#> 822 1 1.3 -#> 823 1 1.3 -#> 824 1 1.3 -#> 825 1 1.3 -#> 826 1 1.3 -#> 827 1 1.3 -#> 828 1 1.3 -#> 829 1 1.3 -#> 830 1 1.3 -#> 831 1 1.3 -#> 832 1 1.3 -#> 833 1 1.3 -#> 834 1 1.3 -#> 835 1 1.3 -#> 836 1 1.3 -#> 837 1 1.3 -#> 838 1 1.3 -#> 839 1 1.3 -#> 840 0 0.4 -#> 841 0 0.4 -#> 842 0 0.4 -#> 843 0 0.4 -#> 844 0 0.4 -#> 845 0 0.4 -#> 846 0 0.4 -#> 847 0 0.4 -#> 848 0 0.4 -#> 849 0 0.4 -#> 850 0 0.4 -#> 851 0 0.4 -#> 852 0 0.4 -#> 853 0 0.4 -#> 854 0 0.4 -#> 855 0 0.4 -#> 856 0 0.4 -#> 857 0 0.4 -#> 858 0 0.4 -#> 859 0 0.4 -#> 860 0 0.4 -#> 861 0 0.4 -#> 862 0 0.4 -#> 863 0 0.4 -#> 864 0 0.4 -#> 865 0 0.4 -#> 866 0 0.4 -#> 867 0 0.4 -#> 868 0 0.4 -#> 869 0 0.4 -#> 870 0 0.4 -#> 871 0 0.4 -#> 872 0 0.5 -#> 873 0 0.5 -#> 874 0 0.5 -#> 875 0 0.5 -#> 876 0 0.5 -#> 877 0 0.5 -#> 878 0 0.5 -#> 879 0 0.5 -#> 880 0 0.5 -#> 881 0 0.5 -#> 882 0 0.5 -#> 883 0 0.5 -#> 884 0 0.5 -#> 885 0 0.5 -#> 886 0 0.5 -#> 887 0 0.5 -#> 888 0 0.5 -#> 889 0 0.5 -#> 890 0 0.5 -#> 891 0 0.5 -#> 892 0 0.5 -#> 893 0 0.5 -#> 894 0 0.5 -#> 895 0 0.5 -#> 896 0 0.5 -#> 897 0 0.5 -#> 898 0 0.5 -#> 899 0 0.5 -#> 900 0 0.5 -#> 901 0 0.5 -#> 902 0 0.5 -#> 903 0 0.5 -#> 904 3 0.7 -#> 905 3 0.7 -#> 906 3 0.7 -#> 907 3 0.7 -#> 908 3 0.7 -#> 909 3 0.7 -#> 910 3 0.7 -#> 911 3 0.7 -#> 912 3 0.7 -#> 913 3 0.7 -#> 914 3 0.7 -#> 915 3 0.7 -#> 916 3 0.7 -#> 917 3 0.7 -#> 918 3 0.7 -#> 919 3 0.7 -#> 920 3 0.7 -#> 921 3 0.7 -#> 922 3 0.7 -#> 923 3 0.7 -#> 924 3 0.7 -#> 925 3 0.7 -#> 926 3 0.7 -#> 927 3 0.7 -#> 928 3 0.7 -#> 929 3 0.7 -#> 930 3 0.7 -#> 931 3 0.7 -#> 932 3 0.7 -#> 933 3 0.7 -#> 934 3 0.7 -#> 935 3 0.7 -#> 936 1 0.7 -#> 937 1 0.7 -#> 938 1 0.7 -#> 939 1 0.7 -#> 940 1 0.7 -#> 941 1 0.7 -#> 942 1 0.7 -#> 943 1 0.7 -#> 944 1 0.7 -#> 945 1 0.7 -#> 946 1 0.7 -#> 947 1 0.7 -#> 948 1 0.7 -#> 949 1 0.7 -#> 950 1 0.7 -#> 951 1 0.7 -#> 952 1 0.7 -#> 953 1 0.7 -#> 954 1 0.7 -#> 955 1 0.7 -#> 956 1 0.7 -#> 957 1 0.7 -#> 958 1 0.7 -#> 959 1 0.7 -#> 960 1 0.7 -#> 961 1 0.7 -#> 962 1 0.7 -#> 963 1 0.7 -#> 964 1 0.7 -#> 965 1 0.7 -#> 966 2 2.9 -#> 967 2 2.9 -#> 968 2 2.9 -#> 969 2 2.9 -#> 970 2 2.9 -#> 971 2 2.9 -#> 972 2 2.9 -#> 973 2 2.9 -#> 974 2 2.9 -#> 975 2 2.9 -#> 976 2 2.9 -#> 977 2 2.9 -#> 978 2 2.9 -#> 979 2 2.9 -#> 980 2 2.9 -#> 981 2 2.9 -#> 982 2 2.9 -#> 983 2 2.9 -#> 984 2 2.9 -#> 985 2 2.9 -#> 986 2 2.9 -#> 987 2 2.9 -#> 988 2 2.9 -#> 989 2 2.9 -#> 990 2 2.9 -#> 991 2 2.9 -#> 992 2 2.9 -#> 993 2 2.9 -#> 994 2 2.9 -#> 995 2 2.9 -#> 996 1 1.5 -#> 997 1 1.5 -#> 998 1 1.5 -#> 999 1 1.5 -#> 1000 1 1.5 -#> 1001 1 1.5 -#> 1002 1 1.5 -#> 1003 1 1.5 -#> 1004 1 1.5 -#> 1005 1 1.5 -#> 1006 1 1.5 -#> 1007 1 1.5 -#> 1008 1 1.5 -#> 1009 1 1.5 -#> 1010 1 1.5 -#> 1011 1 1.5 -#> 1012 1 1.5 -#> 1013 1 1.5 -#> 1014 1 1.5 -#> 1015 1 1.5 -#> 1016 1 1.5 -#> 1017 1 1.5 -#> 1018 1 1.5 -#> 1019 1 1.5 -#> 1020 1 1.5 -#> 1021 1 1.5 -#> 1022 1 1.5 -#> 1023 1 1.5 -#> 1024 1 1.5 -#> 1025 1 1.5 -#> 1026 1 1.5 -#> 1027 1 1.5 -#> 1028 0 1.0 -#> 1029 0 1.0 -#> 1030 0 1.0 -#> 1031 0 1.0 -#> 1032 0 1.0 -#> 1033 0 1.0 -#> 1034 0 1.0 -#> 1035 0 1.0 -#> 1036 0 1.0 -#> 1037 0 1.0 -#> 1038 0 1.0 -#> 1039 0 1.0 -#> 1040 0 1.0 -#> 1041 0 1.0 -#> 1042 0 1.0 -#> 1043 0 1.0 -#> 1044 0 1.0 -#> 1045 0 1.0 -#> 1046 0 1.0 -#> 1047 0 1.0 -#> 1048 0 1.0 -#> 1049 0 1.0 -#> 1050 0 1.0 -#> 1051 0 1.0 -#> 1052 0 1.0 -#> 1053 0 1.0 -#> 1054 0 1.0 -#> 1055 0 1.0 -#> 1056 0 1.0 -#> 1057 0 1.0 -#> 1058 0 1.0 -#> 1059 0 1.0 -#> 1060 2 2.0 -#> 1061 2 2.0 -#> 1062 2 2.0 -#> 1063 2 2.0 -#> 1064 2 2.0 -#> 1065 2 2.0 -#> 1066 2 2.0 -#> 1067 2 2.0 -#> 1068 2 2.0 -#> 1069 2 2.0 -#> 1070 2 2.0 -#> 1071 2 2.0 -#> 1072 2 2.0 -#> 1073 2 2.0 -#> 1074 2 2.0 -#> 1075 2 2.0 -#> 1076 2 2.0 -#> 1077 2 2.0 -#> 1078 2 2.0 -#> 1079 2 2.0 -#> 1080 2 2.0 -#> 1081 2 2.0 -#> 1082 2 2.0 -#> 1083 2 2.0 -#> 1084 2 2.0 -#> 1085 2 2.0 -#> 1086 2 2.0 -#> 1087 2 2.0 -#> 1088 2 2.0 -#> 1089 2 2.0 -#> 1090 2 2.0 -#> 1091 0 1.2 -#> 1092 0 1.2 -#> 1093 0 1.2 -#> 1094 0 1.2 -#> 1095 0 1.2 -#> 1096 0 1.2 -#> 1097 0 1.2 -#> 1098 0 1.2 -#> 1099 0 1.2 -#> 1100 0 1.2 -#> 1101 0 1.2 -#> 1102 0 1.2 -#> 1103 0 1.2 -#> 1104 0 1.2 -#> 1105 0 1.2 -#> 1106 0 1.2 -#> 1107 0 1.2 -#> 1108 0 1.2 -#> 1109 0 1.2 -#> 1110 0 1.2 -#> 1111 0 1.2 -#> 1112 0 1.2 -#> 1113 0 1.2 -#> 1114 0 1.2 -#> 1115 0 1.2 -#> 1116 0 1.2 -#> 1117 0 1.2 -#> 1118 0 1.2 -#> 1119 0 1.2 -#> 1120 0 1.2 -#> 1121 0 1.2 -#> 1122 4 3.4 -#> 1123 4 3.4 -#> 1124 4 3.4 -#> 1125 4 3.4 -#> 1126 4 3.4 -#> 1127 4 3.4 -#> 1128 4 3.4 -#> 1129 4 3.4 -#> 1130 4 3.4 -#> 1131 4 3.4 -#> 1132 4 3.4 -#> 1133 4 3.4 -#> 1134 4 3.4 -#> 1135 4 3.4 -#> 1136 4 3.4 -#> 1137 4 3.4 -#> 1138 4 3.4 -#> 1139 4 3.4 -#> 1140 4 3.4 -#> 1141 4 3.4 -#> 1142 4 3.4 -#> 1143 4 3.4 -#> 1144 4 3.4 -#> 1145 4 3.4 -#> 1146 4 3.4 -#> 1147 4 3.4 -#> 1148 4 3.4 -#> 1149 4 3.4 -#> 1150 4 3.4 -#> 1151 4 3.4 -#> 1152 4 3.4 -#> 1153 4 3.4 -#> 1154 5 2.3 -#> 1155 5 2.3 -#> 1156 5 2.3 -#> 1157 5 2.3 -#> 1158 5 2.3 -#> 1159 5 2.3 -#> 1160 5 2.3 -#> 1161 5 2.3 -#> 1162 5 2.3 -#> 1163 5 2.3 -#> 1164 5 2.3 -#> 1165 5 2.3 -#> 1166 5 2.3 -#> 1167 5 2.3 -#> 1168 5 2.3 -#> 1169 5 2.3 -#> 1170 5 2.3 -#> 1171 5 2.3 -#> 1172 5 2.3 -#> 1173 5 2.3 -#> 1174 5 2.3 -#> 1175 5 2.3 -#> 1176 5 2.3 -#> 1177 5 2.3 -#> 1178 5 2.3 -#> 1179 5 2.3 -#> 1180 5 2.3 -#> 1181 5 2.3 -#> 1182 5 2.3 -#> 1183 5 2.3 -#> 1184 5 2.3 -#> 1185 5 2.3 -#> 1186 1 1.2 -#> 1187 1 1.2 -#> 1188 1 1.2 -#> 1189 1 1.2 -#> 1190 1 1.2 -#> 1191 1 1.2 -#> 1192 1 1.2 -#> 1193 1 1.2 -#> 1194 1 1.2 -#> 1195 1 1.2 -#> 1196 1 1.2 -#> 1197 1 1.2 -#> 1198 1 1.2 -#> 1199 1 1.2 -#> 1200 1 1.2 -#> 1201 1 1.2 -#> 1202 1 1.2 -#> 1203 1 1.2 -#> 1204 1 1.2 -#> 1205 1 1.2 -#> 1206 1 1.2 -#> 1207 1 1.2 -#> 1208 1 1.2 -#> 1209 1 1.2 -#> 1210 1 1.2 -#> 1211 1 1.2 -#> 1212 1 1.2 -#> 1213 1 1.2 -#> 1214 1 1.2 -#> 1215 1 1.2 -#> 1216 1 1.2 -#> 1217 2 1.7 -#> 1218 2 1.7 -#> 1219 2 1.7 -#> 1220 2 1.7 -#> 1221 2 1.7 -#> 1222 2 1.7 -#> 1223 2 1.7 -#> 1224 2 1.7 -#> 1225 2 1.7 -#> 1226 2 1.7 -#> 1227 2 1.7 -#> 1228 2 1.7 -#> 1229 2 1.7 -#> 1230 2 1.7 -#> 1231 2 1.7 -#> 1232 2 1.7 -#> 1233 2 1.7 -#> 1234 2 1.7 -#> 1235 2 1.7 -#> 1236 2 1.7 -#> 1237 2 1.7 -#> 1238 2 1.7 -#> 1239 2 1.7 -#> 1240 2 1.7 -#> 1241 2 1.7 -#> 1242 2 1.7 -#> 1243 2 1.7 -#> 1244 2 1.7 -#> 1245 2 1.7 -#> 1246 2 1.7 -#> 1247 2 1.7 -#> 1248 2 1.7 -#> 1249 2 1.7 -#> 1250 2 1.7 -#> 1251 2 1.7 -#> 1252 2 1.7 -#> 1253 2 1.7 -#> 1254 2 1.7 -#> 1255 2 1.7 -#> 1256 2 1.7 -#> 1257 2 1.7 -#> 1258 2 1.7 -#> 1259 2 1.7 -#> 1260 2 1.7 -#> 1261 2 1.7 -#> 1262 2 1.7 -#> 1263 2 1.7 -#> 1264 2 1.7 -#> 1265 2 1.7 -#> 1266 2 1.7 -#> 1267 2 1.7 -#> 1268 2 1.7 -#> 1269 2 1.7 -#> 1270 2 1.7 -#> 1271 2 1.7 -#> 1272 2 1.7 -#> 1273 2 1.7 -#> 1274 2 1.7 -#> 1275 2 1.7 -#> 1276 2 1.7 -#> 1277 2 1.7 -#> 1278 2 1.7 -#> 1279 2 1.7 -#> 1280 2 2.5 -#> 1281 2 2.5 -#> 1282 2 2.5 -#> 1283 2 2.5 -#> 1284 2 2.5 -#> 1285 2 2.5 -#> 1286 2 2.5 -#> 1287 2 2.5 -#> 1288 2 2.5 -#> 1289 2 2.5 -#> 1290 2 2.5 -#> 1291 2 2.5 -#> 1292 2 2.5 -#> 1293 2 2.5 -#> 1294 2 2.5 -#> 1295 2 2.5 -#> 1296 2 2.5 -#> 1297 2 2.5 -#> 1298 2 2.5 -#> 1299 2 2.5 -#> 1300 2 2.5 -#> 1301 2 2.5 -#> 1302 2 2.5 -#> 1303 2 2.5 -#> 1304 2 2.5 -#> 1305 2 2.5 -#> 1306 2 2.5 -#> 1307 2 2.5 -#> 1308 2 2.5 -#> 1309 2 2.5 -#> 1310 2 2.5 -#> 1311 0 0.4 -#> 1312 0 0.4 -#> 1313 0 0.4 -#> 1314 0 0.4 -#> 1315 0 0.4 -#> 1316 0 0.4 -#> 1317 0 0.4 -#> 1318 0 0.4 -#> 1319 0 0.4 -#> 1320 0 0.4 -#> 1321 0 0.4 -#> 1322 0 0.4 -#> 1323 0 0.4 -#> 1324 0 0.4 -#> 1325 0 0.4 -#> 1326 0 0.4 -#> 1327 0 0.4 -#> 1328 0 0.4 -#> 1329 0 0.4 -#> 1330 0 0.4 -#> 1331 0 0.4 -#> 1332 0 0.4 -#> 1333 0 0.4 -#> 1334 0 0.4 -#> 1335 0 0.4 -#> 1336 0 0.4 -#> 1337 0 0.4 -#> 1338 0 0.4 -#> 1339 0 0.4 -#> 1340 0 0.4 -#> 1341 0 0.4 -#> 1342 0 0.4 -#> 1343 4 0.7 -#> 1344 4 0.7 -#> 1345 4 0.7 -#> 1346 4 0.7 -#> 1347 4 0.7 -#> 1348 4 0.7 -#> 1349 4 0.7 -#> 1350 4 0.7 -#> 1351 4 0.7 -#> 1352 4 0.7 -#> 1353 4 0.7 -#> 1354 4 0.7 -#> 1355 4 0.7 -#> 1356 4 0.7 -#> 1357 4 0.7 -#> 1358 4 0.7 -#> 1359 4 0.7 -#> 1360 4 0.7 -#> 1361 4 0.7 -#> 1362 4 0.7 -#> 1363 4 0.7 -#> 1364 4 0.7 -#> 1365 4 0.7 -#> 1366 4 0.7 -#> 1367 4 0.7 -#> 1368 4 0.7 -#> 1369 4 0.7 -#> 1370 4 0.7 -#> 1371 4 0.7 -#> 1372 4 2.3 -#> 1373 4 2.3 -#> 1374 4 2.3 -#> 1375 4 2.3 -#> 1376 4 2.3 -#> 1377 4 2.3 -#> 1378 4 2.3 -#> 1379 4 2.3 -#> 1380 4 2.3 -#> 1381 4 2.3 -#> 1382 4 2.3 -#> 1383 4 2.3 -#> 1384 4 2.3 -#> 1385 4 2.3 -#> 1386 4 2.3 -#> 1387 4 2.3 -#> 1388 4 2.3 -#> 1389 4 2.3 -#> 1390 4 2.3 -#> 1391 4 2.3 -#> 1392 4 2.3 -#> 1393 4 2.3 -#> 1394 4 2.3 -#> 1395 4 2.3 -#> 1396 4 2.3 -#> 1397 4 2.3 -#> 1398 4 2.3 -#> 1399 4 2.3 -#> 1400 4 2.3 -#> 1401 4 2.3 -#> 1402 4 2.3 -#> 1403 1 0.9 -#> 1404 1 0.9 -#> 1405 1 0.9 -#> 1406 1 0.9 -#> 1407 1 0.9 -#> 1408 1 0.9 -#> 1409 1 0.9 -#> 1410 1 0.9 -#> 1411 1 0.9 -#> 1412 1 0.9 -#> 1413 1 0.9 -#> 1414 1 0.9 -#> 1415 1 0.9 -#> 1416 1 0.9 -#> 1417 1 0.9 -#> 1418 1 0.9 -#> 1419 1 0.9 -#> 1420 1 0.9 -#> 1421 1 0.9 -#> 1422 1 0.9 -#> 1423 1 0.9 -#> 1424 1 0.9 -#> 1425 1 0.9 -#> 1426 1 0.9 -#> 1427 1 0.9 -#> 1428 1 0.9 -#> 1429 1 0.9 -#> 1430 1 0.9 -#> 1431 1 0.9 -#> 1432 1 0.9 -#> 1433 1 0.9 -#> 1434 1 0.9 -#> 1435 2 1.1 -#> 1436 2 1.1 -#> 1437 2 1.1 -#> 1438 2 1.1 -#> 1439 2 1.1 -#> 1440 2 1.1 -#> 1441 2 1.1 -#> 1442 2 1.1 -#> 1443 2 1.1 -#> 1444 2 1.1 -#> 1445 2 1.1 -#> 1446 2 1.1 -#> 1447 2 1.1 -#> 1448 2 1.1 -#> 1449 2 1.1 -#> 1450 2 1.1 -#> 1451 2 1.1 -#> 1452 2 1.1 -#> 1453 2 1.1 -#> 1454 2 1.1 -#> 1455 2 1.1 -#> 1456 2 1.1 -#> 1457 2 1.1 -#> 1458 2 1.1 -#> 1459 2 1.1 -#> 1460 2 1.1 -#> 1461 2 1.1 -#> 1462 2 1.1 -#> 1463 2 1.1 -#> 1464 2 1.1 -#> 1465 2 1.1 -#> 1466 1 1.9 -#> 1467 1 1.9 -#> 1468 1 1.9 -#> 1469 1 1.9 -#> 1470 1 1.9 -#> 1471 1 1.9 -#> 1472 1 1.9 -#> 1473 1 1.9 -#> 1474 1 1.9 -#> 1475 1 1.9 -#> 1476 1 1.9 -#> 1477 1 1.9 -#> 1478 1 1.9 -#> 1479 1 1.9 -#> 1480 1 1.9 -#> 1481 1 1.9 -#> 1482 1 1.9 -#> 1483 1 1.9 -#> 1484 1 1.9 -#> 1485 1 1.9 -#> 1486 1 1.9 -#> 1487 1 1.9 -#> 1488 1 1.9 -#> 1489 1 1.9 -#> 1490 1 1.9 -#> 1491 1 1.9 -#> 1492 1 1.9 -#> 1493 1 1.9 -#> 1494 1 1.9 -#> 1495 1 1.9 -#> 1496 0 0.2 -#> 1497 0 0.2 -#> 1498 0 0.2 -#> 1499 0 0.2 -#> 1500 0 0.2 -#> 1501 0 0.2 -#> 1502 0 0.2 -#> 1503 0 0.2 -#> 1504 0 0.2 -#> 1505 0 0.2 -#> 1506 0 0.2 -#> 1507 0 0.2 -#> 1508 0 0.2 -#> 1509 0 0.2 -#> 1510 0 0.2 -#> 1511 0 0.2 -#> 1512 0 0.2 -#> 1513 0 0.2 -#> 1514 0 0.2 -#> 1515 0 0.2 -#> 1516 0 0.2 -#> 1517 0 0.2 -#> 1518 0 0.2 -#> 1519 0 0.2 -#> 1520 0 0.2 -#> 1521 0 0.2 -#> 1522 0 0.2 -#> 1523 0 0.2 -#> 1524 0 0.2 -#> 1525 0 0.2 -#> 1526 0 0.2 -#> 1527 0 0.2 -#> 1528 0 1.5 -#> 1529 0 1.5 -#> 1530 0 1.5 -#> 1531 0 1.5 -#> 1532 0 1.5 -#> 1533 0 1.5 -#> 1534 0 1.5 -#> 1535 0 1.5 -#> 1536 0 1.5 -#> 1537 0 1.5 -#> 1538 0 1.5 -#> 1539 0 1.5 -#> 1540 0 1.5 -#> 1541 0 1.5 -#> 1542 0 1.5 -#> 1543 0 1.5 -#> 1544 0 1.5 -#> 1545 0 1.5 -#> 1546 0 1.5 -#> 1547 0 1.5 -#> 1548 0 1.5 -#> 1549 0 1.5 -#> 1550 0 1.5 -#> 1551 0 1.5 -#> 1552 0 1.5 -#> 1553 0 1.5 -#> 1554 0 1.5 -#> 1555 0 1.5 -#> 1556 0 1.5 -#> 1557 0 1.5 -#> 1558 0 1.5 -#> 1559 0 1.5 -#> 1560 1 0.6 -#> 1561 1 0.6 -#> 1562 1 0.6 -#> 1563 1 0.6 -#> 1564 1 0.6 -#> 1565 1 0.6 -#> 1566 1 0.6 -#> 1567 1 0.6 -#> 1568 1 0.6 -#> 1569 1 0.6 -#> 1570 1 0.6 -#> 1571 1 0.6 -#> 1572 1 0.6 -#> 1573 1 0.6 -#> 1574 1 0.6 -#> 1575 1 0.6 -#> 1576 1 0.6 -#> 1577 1 0.6 -#> 1578 1 0.6 -#> 1579 1 0.6 -#> 1580 1 0.6 -#> 1581 1 0.6 -#> 1582 1 0.6 -#> 1583 1 0.6 -#> 1584 1 0.6 -#> 1585 1 0.6 -#> 1586 1 0.6 -#> 1587 1 0.6 -#> 1588 1 0.6 -#> 1589 1 0.6 -#> 1590 1 0.6 -#> 1591 3 3.9 -#> 1592 3 3.9 -#> 1593 3 3.9 -#> 1594 3 3.9 -#> 1595 3 3.9 -#> 1596 3 3.9 -#> 1597 3 3.9 -#> 1598 3 3.9 -#> 1599 3 3.9 -#> 1600 3 3.9 -#> 1601 3 3.9 -#> 1602 3 3.9 -#> 1603 3 3.9 -#> 1604 3 3.9 -#> 1605 3 3.9 -#> 1606 3 3.9 -#> 1607 3 3.9 -#> 1608 3 3.9 -#> 1609 3 3.9 -#> 1610 3 3.9 -#> 1611 3 3.9 -#> 1612 3 3.9 -#> 1613 3 3.9 -#> 1614 3 3.9 -#> 1615 3 3.9 -#> 1616 3 3.9 -#> 1617 3 3.9 -#> 1618 3 3.9 -#> 1619 3 3.9 -#> 1620 3 3.9 -#> 1621 3 3.9 -#> 1622 3 3.9 -#> 1623 3 1.7 -#> 1624 3 1.7 -#> 1625 3 1.7 -#> 1626 3 1.7 -#> 1627 3 1.7 -#> 1628 3 1.7 -#> 1629 3 1.7 -#> 1630 3 1.7 -#> 1631 3 1.7 -#> 1632 3 1.7 -#> 1633 3 1.7 -#> 1634 3 1.7 -#> 1635 3 1.7 -#> 1636 3 1.7 -#> 1637 3 1.7 -#> 1638 3 1.7 -#> 1639 3 1.7 -#> 1640 3 1.7 -#> 1641 3 1.7 -#> 1642 3 1.7 -#> 1643 3 1.7 -#> 1644 3 1.7 -#> 1645 3 1.7 -#> 1646 3 1.7 -#> 1647 3 1.7 -#> 1648 3 1.7 -#> 1649 3 1.7 -#> 1650 3 1.7 -#> 1651 3 1.7 -#> 1652 3 1.7 -#> 1653 3 1.9 -#> 1654 3 1.9 -#> 1655 3 1.9 -#> 1656 3 1.9 -#> 1657 3 1.9 -#> 1658 3 1.9 -#> 1659 3 1.9 -#> 1660 3 1.9 -#> 1661 3 1.9 -#> 1662 3 1.9 -#> 1663 3 1.9 -#> 1664 3 1.9 -#> 1665 3 1.9 -#> 1666 3 1.9 -#> 1667 3 1.9 -#> 1668 3 1.9 -#> 1669 3 1.9 -#> 1670 3 1.9 -#> 1671 3 1.9 -#> 1672 3 1.9 -#> 1673 3 1.9 -#> 1674 3 1.9 -#> 1675 3 1.9 -#> 1676 3 1.9 -#> 1677 3 1.9 -#> 1678 3 1.9 -#> 1679 3 1.9 -#> 1680 3 1.9 -#> 1681 3 1.9 -#> 1682 3 1.9 -#> 1683 3 1.9 -#> 1684 3 1.9 -#> 1685 0 0.5 -#> 1686 0 0.5 -#> 1687 0 0.5 -#> 1688 0 0.5 -#> 1689 0 0.5 -#> 1690 0 0.5 -#> 1691 0 0.5 -#> 1692 0 0.5 -#> 1693 0 0.5 -#> 1694 0 0.5 -#> 1695 0 0.5 -#> 1696 0 0.5 -#> 1697 0 0.5 -#> 1698 0 0.5 -#> 1699 0 0.5 -#> 1700 0 0.5 -#> 1701 0 0.5 -#> 1702 0 0.5 -#> 1703 0 0.5 -#> 1704 0 0.5 -#> 1705 0 0.5 -#> 1706 0 0.5 -#> 1707 0 0.5 -#> 1708 0 0.5 -#> 1709 0 0.5 -#> 1710 0 0.5 -#> 1711 0 0.5 -#> 1712 0 0.5 -#> 1713 0 0.5 -#> 1714 0 0.5 -#> 1715 0 0.5 -#> 1716 0 0.5 -#> 1717 1 1.5 -#> 1718 1 1.5 -#> 1719 1 1.5 -#> 1720 1 1.5 -#> 1721 1 1.5 -#> 1722 1 1.5 -#> 1723 1 1.5 -#> 1724 1 1.5 -#> 1725 1 1.5 -#> 1726 1 1.5 -#> 1727 1 1.5 -#> 1728 1 1.5 -#> 1729 1 1.5 -#> 1730 1 1.5 -#> 1731 1 1.5 -#> 1732 1 1.5 -#> 1733 1 1.5 -#> 1734 1 1.5 -#> 1735 1 1.5 -#> 1736 1 1.5 -#> 1737 1 1.5 -#> 1738 1 1.5 -#> 1739 1 1.5 -#> 1740 1 1.5 -#> 1741 1 1.5 -#> 1742 1 1.5 -#> 1743 1 1.5 -#> 1744 1 1.5 -#> 1745 1 1.5 -#> 1746 1 1.5 -#> 1747 1 1.5 -#> 1748 1 1.5 -#> 1749 2 1.6 -#> 1750 2 1.6 -#> 1751 2 1.6 -#> 1752 2 1.6 -#> 1753 2 1.6 -#> 1754 2 1.6 -#> 1755 2 1.6 -#> 1756 2 1.6 -#> 1757 2 1.6 -#> 1758 2 1.6 -#> 1759 2 1.6 -#> 1760 2 1.6 -#> 1761 2 1.6 -#> 1762 2 1.6 -#> 1763 2 1.6 -#> 1764 2 1.6 -#> 1765 2 1.6 -#> 1766 2 1.6 -#> 1767 2 1.6 -#> 1768 2 1.6 -#> 1769 2 1.6 -#> 1770 2 1.6 -#> 1771 2 1.6 -#> 1772 2 1.6 -#> 1773 2 1.6 -#> 1774 2 1.6 -#> 1775 2 1.6 -#> 1776 2 1.6 -#> 1777 2 1.6 -#> 1778 2 1.6 -#> 1779 2 1.6 -#> 1780 2 1.9 -#> 1781 2 1.9 -#> 1782 2 1.9 -#> 1783 2 1.9 -#> 1784 2 1.9 -#> 1785 2 1.9 -#> 1786 2 1.9 -#> 1787 2 1.9 -#> 1788 2 1.9 -#> 1789 2 1.9 -#> 1790 2 1.9 -#> 1791 2 1.9 -#> 1792 2 1.9 -#> 1793 2 1.9 -#> 1794 2 1.9 -#> 1795 2 1.9 -#> 1796 2 1.9 -#> 1797 2 1.9 -#> 1798 2 1.9 -#> 1799 2 1.9 -#> 1800 2 1.9 -#> 1801 2 1.9 -#> 1802 2 1.9 -#> 1803 2 1.9 -#> 1804 2 1.9 -#> 1805 2 1.9 -#> 1806 2 1.9 -#> 1807 2 1.9 -#> 1808 2 1.9 -#> 1809 1 1.0 -#> 1810 1 1.0 -#> 1811 1 1.0 -#> 1812 1 1.0 -#> 1813 1 1.0 -#> 1814 1 1.0 -#> 1815 1 1.0 -#> 1816 1 1.0 -#> 1817 1 1.0 -#> 1818 1 1.0 -#> 1819 1 1.0 -#> 1820 1 1.0 -#> 1821 1 1.0 -#> 1822 1 1.0 -#> 1823 1 1.0 -#> 1824 1 1.0 -#> 1825 1 1.0 -#> 1826 1 1.0 -#> 1827 1 1.0 -#> 1828 1 1.0 -#> 1829 1 1.0 -#> 1830 1 1.0 -#> 1831 1 1.0 -#> 1832 1 1.0 -#> 1833 1 1.0 -#> 1834 1 1.0 -#> 1835 1 1.0 -#> 1836 1 1.0 -#> 1837 1 1.0 -#> 1838 1 1.0 -#> 1839 1 1.0 -#> 1840 4 2.1 -#> 1841 4 2.1 -#> 1842 4 2.1 -#> 1843 4 2.1 -#> 1844 4 2.1 -#> 1845 4 2.1 -#> 1846 4 2.1 -#> 1847 4 2.1 -#> 1848 4 2.1 -#> 1849 4 2.1 -#> 1850 4 2.1 -#> 1851 4 2.1 -#> 1852 4 2.1 -#> 1853 4 2.1 -#> 1854 4 2.1 -#> 1855 4 2.1 -#> 1856 4 2.1 -#> 1857 4 2.1 -#> 1858 4 2.1 -#> 1859 4 2.1 -#> 1860 4 2.1 -#> 1861 4 2.1 -#> 1862 4 2.1 -#> 1863 4 2.1 -#> 1864 4 2.1 -#> 1865 4 2.1 -#> 1866 4 2.1 -#> 1867 4 2.1 -#> 1868 4 2.1 -#> 1869 4 2.1 -#> 1870 4 2.1 -#> 1871 4 2.1 -#> 1872 0 0.7 -#> 1873 0 0.7 -#> 1874 0 0.7 -#> 1875 0 0.7 -#> 1876 0 0.7 -#> 1877 0 0.7 -#> 1878 0 0.7 -#> 1879 0 0.7 -#> 1880 0 0.7 -#> 1881 0 0.7 -#> 1882 0 0.7 -#> 1883 0 0.7 -#> 1884 0 0.7 -#> 1885 0 0.7 -#> 1886 0 0.7 -#> 1887 0 0.7 -#> 1888 0 0.7 -#> 1889 0 0.7 -#> 1890 0 0.7 -#> 1891 0 0.7 -#> 1892 0 0.7 -#> 1893 0 0.7 -#> 1894 0 0.7 -#> 1895 0 0.7 -#> 1896 0 0.7 -#> 1897 0 0.7 -#> 1898 0 0.7 -#> 1899 0 0.7 -#> 1900 0 0.7 -#> 1901 0 0.7 -#> 1902 2 2.8 -#> 1903 2 2.8 -#> 1904 2 2.8 -#> 1905 2 2.8 -#> 1906 2 2.8 -#> 1907 2 2.8 -#> 1908 2 2.8 -#> 1909 2 2.8 -#> 1910 2 2.8 -#> 1911 2 2.8 -#> 1912 2 2.8 -#> 1913 2 2.8 -#> 1914 2 2.8 -#> 1915 2 2.8 -#> 1916 2 2.8 -#> 1917 2 2.8 -#> 1918 2 2.8 -#> 1919 2 2.8 -#> 1920 2 2.8 -#> 1921 2 2.8 -#> 1922 2 2.8 -#> 1923 2 2.8 -#> 1924 2 2.8 -#> 1925 2 2.8 -#> 1926 2 2.8 -#> 1927 2 2.8 -#> 1928 2 2.8 -#> 1929 2 2.8 -#> 1930 2 2.8 -#> 1931 2 2.8 -#> 1932 2 2.8 -#> 1933 0 0.5 -#> 1934 0 0.5 -#> 1935 0 0.5 -#> 1936 0 0.5 -#> 1937 0 0.5 -#> 1938 0 0.5 -#> 1939 0 0.5 -#> 1940 0 0.5 -#> 1941 0 0.5 -#> 1942 0 0.5 -#> 1943 0 0.5 -#> 1944 0 0.5 -#> 1945 0 0.5 -#> 1946 0 0.5 -#> 1947 0 0.5 -#> 1948 0 0.5 -#> 1949 0 0.5 -#> 1950 0 0.5 -#> 1951 0 0.5 -#> 1952 0 0.5 -#> 1953 0 0.5 -#> 1954 0 0.5 -#> 1955 0 0.5 -#> 1956 0 0.5 -#> 1957 0 0.5 -#> 1958 0 0.5 -#> 1959 0 0.5 -#> 1960 0 0.5 -#> 1961 0 0.5 -#> 1962 0 0.5 -#> 1963 0 0.5 -#> 1964 0 0.5 -#> 1965 0 1.2 -#> 1966 0 1.2 -#> 1967 0 1.2 -#> 1968 0 1.2 -#> 1969 0 1.2 -#> 1970 0 1.2 -#> 1971 0 1.2 -#> 1972 0 1.2 -#> 1973 0 1.2 -#> 1974 0 1.2 -#> 1975 0 1.2 -#> 1976 0 1.2 -#> 1977 0 1.2 -#> 1978 0 1.2 -#> 1979 0 1.2 -#> 1980 0 1.2 -#> 1981 0 1.2 -#> 1982 0 1.2 -#> 1983 0 1.2 -#> 1984 0 1.2 -#> 1985 0 1.2 -#> 1986 0 1.2 -#> 1987 0 1.2 -#> 1988 0 1.2 -#> 1989 0 1.2 -#> 1990 0 1.2 -#> 1991 0 1.2 -#> 1992 0 1.2 -#> 1993 0 1.2 -#> 1994 2 0.8 -#> 1995 2 0.8 -#> 1996 2 0.8 -#> 1997 2 0.8 -#> 1998 2 0.8 -#> 1999 2 0.8 -#> 2000 2 0.8 -#> 2001 2 0.8 -#> 2002 2 0.8 -#> 2003 2 0.8 -#> 2004 2 0.8 -#> 2005 2 0.8 -#> 2006 2 0.8 -#> 2007 2 0.8 -#> 2008 2 0.8 -#> 2009 2 0.8 -#> 2010 2 0.8 -#> 2011 2 0.8 -#> 2012 2 0.8 -#> 2013 2 0.8 -#> 2014 2 0.8 -#> 2015 2 0.8 -#> 2016 2 0.8 -#> 2017 2 0.8 -#> 2018 2 0.8 -#> 2019 2 0.8 -#> 2020 2 0.8 -#> 2021 2 0.8 -#> 2022 2 0.8 -#> 2023 2 0.8 -#> 2024 2 0.8 -#> 2025 2 0.8 -#> 2026 1 0.9 -#> 2027 1 0.9 -#> 2028 1 0.9 -#> 2029 1 0.9 -#> 2030 1 0.9 -#> 2031 1 0.9 -#> 2032 1 0.9 -#> 2033 1 0.9 -#> 2034 1 0.9 -#> 2035 1 0.9 -#> 2036 1 0.9 -#> 2037 1 0.9 -#> 2038 1 0.9 -#> 2039 1 0.9 -#> 2040 1 0.9 -#> Home_Goals -#> 1 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 2 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 3 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 4 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 5 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 6 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 7 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 8 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 9 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 10 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 11 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 12 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 13 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 14 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 15 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 16 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 17 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 18 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 19 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 20 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 21 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 22 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 23 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 24 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 25 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 26 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 27 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 28 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 29 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 30 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 31 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 32 Ezequiel Ávila · 9&rsquor; Aimar Oroz (P) · 74&rsquor; -#> 33 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 34 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 35 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 36 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 37 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 38 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 39 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 40 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 41 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 42 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 43 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 44 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 45 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 46 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 47 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 48 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 49 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 50 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 51 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 52 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 53 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 54 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 55 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 56 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 57 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 58 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 59 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 60 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 61 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 62 Iago Aspas · 45+2&rsquor; Gonçalo Paciência · 63&rsquor; -#> 63 -#> 64 -#> 65 -#> 66 -#> 67 -#> 68 -#> 69 -#> 70 -#> 71 -#> 72 -#> 73 -#> 74 -#> 75 -#> 76 -#> 77 -#> 78 -#> 79 -#> 80 -#> 81 -#> 82 -#> 83 -#> 84 -#> 85 -#> 86 -#> 87 -#> 88 -#> 89 -#> 90 -#> 91 -#> 92 -#> 93 -#> 94 Sergio Busquets · 90+3&rsquor; -#> 95 Sergio Busquets · 90+3&rsquor; -#> 96 Sergio Busquets · 90+3&rsquor; -#> 97 Sergio Busquets · 90+3&rsquor; -#> 98 Sergio Busquets · 90+3&rsquor; -#> 99 Sergio Busquets · 90+3&rsquor; -#> 100 Sergio Busquets · 90+3&rsquor; -#> 101 Sergio Busquets · 90+3&rsquor; -#> 102 Sergio Busquets · 90+3&rsquor; -#> 103 Sergio Busquets · 90+3&rsquor; -#> 104 Sergio Busquets · 90+3&rsquor; -#> 105 Sergio Busquets · 90+3&rsquor; -#> 106 Sergio Busquets · 90+3&rsquor; -#> 107 Sergio Busquets · 90+3&rsquor; -#> 108 Sergio Busquets · 90+3&rsquor; -#> 109 Sergio Busquets · 90+3&rsquor; -#> 110 Sergio Busquets · 90+3&rsquor; -#> 111 Sergio Busquets · 90+3&rsquor; -#> 112 Sergio Busquets · 90+3&rsquor; -#> 113 Sergio Busquets · 90+3&rsquor; -#> 114 Sergio Busquets · 90+3&rsquor; -#> 115 Sergio Busquets · 90+3&rsquor; -#> 116 Sergio Busquets · 90+3&rsquor; -#> 117 Sergio Busquets · 90+3&rsquor; -#> 118 Sergio Busquets · 90+3&rsquor; -#> 119 Sergio Busquets · 90+3&rsquor; -#> 120 Sergio Busquets · 90+3&rsquor; -#> 121 Sergio Busquets · 90+3&rsquor; -#> 122 Sergio Busquets · 90+3&rsquor; -#> 123 Sergio Busquets · 90+3&rsquor; -#> 124 Sergio Busquets · 90+3&rsquor; -#> 125 -#> 126 -#> 127 -#> 128 -#> 129 -#> 130 -#> 131 -#> 132 -#> 133 -#> 134 -#> 135 -#> 136 -#> 137 -#> 138 -#> 139 -#> 140 -#> 141 -#> 142 -#> 143 -#> 144 -#> 145 -#> 146 -#> 147 -#> 148 -#> 149 -#> 150 -#> 151 -#> 152 -#> 153 -#> 154 -#> 155 -#> 156 -#> 157 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 158 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 159 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 160 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 161 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 162 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 163 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 164 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 165 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 166 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 167 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 168 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 169 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 170 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 171 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 172 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 173 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 174 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 175 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 176 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 177 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 178 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 179 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 180 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 181 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 182 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 183 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 184 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 185 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 186 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 187 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 188 Carlos Soler (P) · 45+1&rsquor; Eray Cömert · 52&rsquor; -#> 189 Largie Ramazani · 6&rsquor; -#> 190 Largie Ramazani · 6&rsquor; -#> 191 Largie Ramazani · 6&rsquor; -#> 192 Largie Ramazani · 6&rsquor; -#> 193 Largie Ramazani · 6&rsquor; -#> 194 Largie Ramazani · 6&rsquor; -#> 195 Largie Ramazani · 6&rsquor; -#> 196 Largie Ramazani · 6&rsquor; -#> 197 Largie Ramazani · 6&rsquor; -#> 198 Largie Ramazani · 6&rsquor; -#> 199 Largie Ramazani · 6&rsquor; -#> 200 Largie Ramazani · 6&rsquor; -#> 201 Largie Ramazani · 6&rsquor; -#> 202 Largie Ramazani · 6&rsquor; -#> 203 Largie Ramazani · 6&rsquor; -#> 204 Largie Ramazani · 6&rsquor; -#> 205 Largie Ramazani · 6&rsquor; -#> 206 Largie Ramazani · 6&rsquor; -#> 207 Largie Ramazani · 6&rsquor; -#> 208 Largie Ramazani · 6&rsquor; -#> 209 Largie Ramazani · 6&rsquor; -#> 210 Largie Ramazani · 6&rsquor; -#> 211 Largie Ramazani · 6&rsquor; -#> 212 Largie Ramazani · 6&rsquor; -#> 213 Largie Ramazani · 6&rsquor; -#> 214 Largie Ramazani · 6&rsquor; -#> 215 Largie Ramazani · 6&rsquor; -#> 216 Largie Ramazani · 6&rsquor; -#> 217 Largie Ramazani · 6&rsquor; -#> 218 Largie Ramazani · 6&rsquor; -#> 219 Largie Ramazani · 6&rsquor; -#> 220 Largie Ramazani · 6&rsquor; -#> 221 -#> 222 -#> 223 -#> 224 -#> 225 -#> 226 -#> 227 -#> 228 -#> 229 -#> 230 -#> 231 -#> 232 -#> 233 -#> 234 -#> 235 -#> 236 -#> 237 -#> 238 -#> 239 -#> 240 -#> 241 -#> 242 -#> 243 -#> 244 -#> 245 -#> 246 -#> 247 -#> 248 -#> 249 -#> 250 -#> 251 -#> 252 -#> 253 -#> 254 -#> 255 -#> 256 -#> 257 -#> 258 -#> 259 -#> 260 -#> 261 -#> 262 -#> 263 -#> 264 -#> 265 -#> 266 -#> 267 -#> 268 -#> 269 -#> 270 -#> 271 -#> 272 -#> 273 -#> 274 -#> 275 -#> 276 -#> 277 -#> 278 -#> 279 -#> 280 -#> 281 -#> 282 -#> 283 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 284 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 285 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 286 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 287 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 288 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 289 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 290 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 291 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 292 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 293 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 294 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 295 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 296 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 297 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 298 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 299 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 300 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 301 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 302 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 303 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 304 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 305 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 306 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 307 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 308 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 309 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 310 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 311 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 312 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 313 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 314 Borja Iglesias · 28&rsquor; Juanmi · 39&rsquor; Juanmi · 60&rsquor; -#> 315 Sergi Gómez · 30&rsquor; -#> 316 Sergi Gómez · 30&rsquor; -#> 317 Sergi Gómez · 30&rsquor; -#> 318 Sergi Gómez · 30&rsquor; -#> 319 Sergi Gómez · 30&rsquor; -#> 320 Sergi Gómez · 30&rsquor; -#> 321 Sergi Gómez · 30&rsquor; -#> 322 Sergi Gómez · 30&rsquor; -#> 323 Sergi Gómez · 30&rsquor; -#> 324 Sergi Gómez · 30&rsquor; -#> 325 Sergi Gómez · 30&rsquor; -#> 326 Sergi Gómez · 30&rsquor; -#> 327 Sergi Gómez · 30&rsquor; -#> 328 Sergi Gómez · 30&rsquor; -#> 329 Sergi Gómez · 30&rsquor; -#> 330 Sergi Gómez · 30&rsquor; -#> 331 Sergi Gómez · 30&rsquor; -#> 332 Sergi Gómez · 30&rsquor; -#> 333 Sergi Gómez · 30&rsquor; -#> 334 Sergi Gómez · 30&rsquor; -#> 335 Sergi Gómez · 30&rsquor; -#> 336 Sergi Gómez · 30&rsquor; -#> 337 Sergi Gómez · 30&rsquor; -#> 338 Sergi Gómez · 30&rsquor; -#> 339 Sergi Gómez · 30&rsquor; -#> 340 Sergi Gómez · 30&rsquor; -#> 341 Sergi Gómez · 30&rsquor; -#> 342 Sergi Gómez · 30&rsquor; -#> 343 Sergi Gómez · 30&rsquor; -#> 344 Sergi Gómez · 30&rsquor; -#> 345 Sergi Gómez · 30&rsquor; -#> 346 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 347 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 348 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 349 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 350 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 351 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 352 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 353 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 354 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 355 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 356 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 357 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 358 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 359 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 360 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 361 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 362 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 363 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 364 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 365 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 366 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 367 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 368 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 369 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 370 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 371 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 372 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 373 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 374 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 375 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 376 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 377 Karim Rekik · 86&rsquor; Marcos Acuña · 88&rsquor; -#> 378 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 379 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 380 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 381 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 382 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 383 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 384 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 385 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 386 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 387 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 388 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 389 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 390 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 391 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 392 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 393 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 394 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 395 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 396 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 397 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 398 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 399 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 400 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 401 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 402 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 403 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 404 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 405 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 406 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 407 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 408 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 409 Ezequiel Ávila (P) · 37&rsquor; Kiké (P) · 79&rsquor; -#> 410 Vedat Muriqi · 56&rsquor; -#> 411 Vedat Muriqi · 56&rsquor; -#> 412 Vedat Muriqi · 56&rsquor; -#> 413 Vedat Muriqi · 56&rsquor; -#> 414 Vedat Muriqi · 56&rsquor; -#> 415 Vedat Muriqi · 56&rsquor; -#> 416 Vedat Muriqi · 56&rsquor; -#> 417 Vedat Muriqi · 56&rsquor; -#> 418 Vedat Muriqi · 56&rsquor; -#> 419 Vedat Muriqi · 56&rsquor; -#> 420 Vedat Muriqi · 56&rsquor; -#> 421 Vedat Muriqi · 56&rsquor; -#> 422 Vedat Muriqi · 56&rsquor; -#> 423 Vedat Muriqi · 56&rsquor; -#> 424 Vedat Muriqi · 56&rsquor; -#> 425 Vedat Muriqi · 56&rsquor; -#> 426 Vedat Muriqi · 56&rsquor; -#> 427 Vedat Muriqi · 56&rsquor; -#> 428 Vedat Muriqi · 56&rsquor; -#> 429 Vedat Muriqi · 56&rsquor; -#> 430 Vedat Muriqi · 56&rsquor; -#> 431 Vedat Muriqi · 56&rsquor; -#> 432 Vedat Muriqi · 56&rsquor; -#> 433 Vedat Muriqi · 56&rsquor; -#> 434 Vedat Muriqi · 56&rsquor; -#> 435 Vedat Muriqi · 56&rsquor; -#> 436 Vedat Muriqi · 56&rsquor; -#> 437 Vedat Muriqi · 56&rsquor; -#> 438 Vedat Muriqi · 56&rsquor; -#> 439 Iago Aspas (P) · 23&rsquor; -#> 440 Iago Aspas (P) · 23&rsquor; -#> 441 Iago Aspas (P) · 23&rsquor; -#> 442 Iago Aspas (P) · 23&rsquor; -#> 443 Iago Aspas (P) · 23&rsquor; -#> 444 Iago Aspas (P) · 23&rsquor; -#> 445 Iago Aspas (P) · 23&rsquor; -#> 446 Iago Aspas (P) · 23&rsquor; -#> 447 Iago Aspas (P) · 23&rsquor; -#> 448 Iago Aspas (P) · 23&rsquor; -#> 449 Iago Aspas (P) · 23&rsquor; -#> 450 Iago Aspas (P) · 23&rsquor; -#> 451 Iago Aspas (P) · 23&rsquor; -#> 452 Iago Aspas (P) · 23&rsquor; -#> 453 Iago Aspas (P) · 23&rsquor; -#> 454 Iago Aspas (P) · 23&rsquor; -#> 455 Iago Aspas (P) · 23&rsquor; -#> 456 Iago Aspas (P) · 23&rsquor; -#> 457 Iago Aspas (P) · 23&rsquor; -#> 458 Iago Aspas (P) · 23&rsquor; -#> 459 Iago Aspas (P) · 23&rsquor; -#> 460 Iago Aspas (P) · 23&rsquor; -#> 461 Iago Aspas (P) · 23&rsquor; -#> 462 Iago Aspas (P) · 23&rsquor; -#> 463 Iago Aspas (P) · 23&rsquor; -#> 464 Iago Aspas (P) · 23&rsquor; -#> 465 Iago Aspas (P) · 23&rsquor; -#> 466 Iago Aspas (P) · 23&rsquor; -#> 467 Iago Aspas (P) · 23&rsquor; -#> 468 Iago Aspas (P) · 23&rsquor; -#> 469 Álex Berenguer · 42&rsquor; -#> 470 Álex Berenguer · 42&rsquor; -#> 471 Álex Berenguer · 42&rsquor; -#> 472 Álex Berenguer · 42&rsquor; -#> 473 Álex Berenguer · 42&rsquor; -#> 474 Álex Berenguer · 42&rsquor; -#> 475 Álex Berenguer · 42&rsquor; -#> 476 Álex Berenguer · 42&rsquor; -#> 477 Álex Berenguer · 42&rsquor; -#> 478 Álex Berenguer · 42&rsquor; -#> 479 Álex Berenguer · 42&rsquor; -#> 480 Álex Berenguer · 42&rsquor; -#> 481 Álex Berenguer · 42&rsquor; -#> 482 Álex Berenguer · 42&rsquor; -#> 483 Álex Berenguer · 42&rsquor; -#> 484 Álex Berenguer · 42&rsquor; -#> 485 Álex Berenguer · 42&rsquor; -#> 486 Álex Berenguer · 42&rsquor; -#> 487 Álex Berenguer · 42&rsquor; -#> 488 Álex Berenguer · 42&rsquor; -#> 489 Álex Berenguer · 42&rsquor; -#> 490 Álex Berenguer · 42&rsquor; -#> 491 Álex Berenguer · 42&rsquor; -#> 492 Álex Berenguer · 42&rsquor; -#> 493 Álex Berenguer · 42&rsquor; -#> 494 Álex Berenguer · 42&rsquor; -#> 495 Álex Berenguer · 42&rsquor; -#> 496 Álex Berenguer · 42&rsquor; -#> 497 Álex Berenguer · 42&rsquor; -#> 498 Álex Berenguer · 42&rsquor; -#> 499 Álex Berenguer · 42&rsquor; -#> 500 Álex Berenguer · 42&rsquor; -#> 501 Nahuel Molina · 90+4&rsquor; -#> 502 Nahuel Molina · 90+4&rsquor; -#> 503 Nahuel Molina · 90+4&rsquor; -#> 504 Nahuel Molina · 90+4&rsquor; -#> 505 Nahuel Molina · 90+4&rsquor; -#> 506 Nahuel Molina · 90+4&rsquor; -#> 507 Nahuel Molina · 90+4&rsquor; -#> 508 Nahuel Molina · 90+4&rsquor; -#> 509 Nahuel Molina · 90+4&rsquor; -#> 510 Nahuel Molina · 90+4&rsquor; -#> 511 Nahuel Molina · 90+4&rsquor; -#> 512 Nahuel Molina · 90+4&rsquor; -#> 513 Nahuel Molina · 90+4&rsquor; -#> 514 Nahuel Molina · 90+4&rsquor; -#> 515 Nahuel Molina · 90+4&rsquor; -#> 516 Nahuel Molina · 90+4&rsquor; -#> 517 Nahuel Molina · 90+4&rsquor; -#> 518 Nahuel Molina · 90+4&rsquor; -#> 519 Nahuel Molina · 90+4&rsquor; -#> 520 Nahuel Molina · 90+4&rsquor; -#> 521 Nahuel Molina · 90+4&rsquor; -#> 522 Nahuel Molina · 90+4&rsquor; -#> 523 Nahuel Molina · 90+4&rsquor; -#> 524 Nahuel Molina · 90+4&rsquor; -#> 525 Nahuel Molina · 90+4&rsquor; -#> 526 Nahuel Molina · 90+4&rsquor; -#> 527 Nahuel Molina · 90+4&rsquor; -#> 528 Nahuel Molina · 90+4&rsquor; -#> 529 Nahuel Molina · 90+4&rsquor; -#> 530 Nahuel Molina · 90+4&rsquor; -#> 531 Nahuel Molina · 90+4&rsquor; -#> 532 Alexander Isak · 6&rsquor; -#> 533 Alexander Isak · 6&rsquor; -#> 534 Alexander Isak · 6&rsquor; -#> 535 Alexander Isak · 6&rsquor; -#> 536 Alexander Isak · 6&rsquor; -#> 537 Alexander Isak · 6&rsquor; -#> 538 Alexander Isak · 6&rsquor; -#> 539 Alexander Isak · 6&rsquor; -#> 540 Alexander Isak · 6&rsquor; -#> 541 Alexander Isak · 6&rsquor; -#> 542 Alexander Isak · 6&rsquor; -#> 543 Alexander Isak · 6&rsquor; -#> 544 Alexander Isak · 6&rsquor; -#> 545 Alexander Isak · 6&rsquor; -#> 546 Alexander Isak · 6&rsquor; -#> 547 Alexander Isak · 6&rsquor; -#> 548 Alexander Isak · 6&rsquor; -#> 549 Alexander Isak · 6&rsquor; -#> 550 Alexander Isak · 6&rsquor; -#> 551 Alexander Isak · 6&rsquor; -#> 552 Alexander Isak · 6&rsquor; -#> 553 Alexander Isak · 6&rsquor; -#> 554 Alexander Isak · 6&rsquor; -#> 555 Alexander Isak · 6&rsquor; -#> 556 Alexander Isak · 6&rsquor; -#> 557 Alexander Isak · 6&rsquor; -#> 558 Alexander Isak · 6&rsquor; -#> 559 Alexander Isak · 6&rsquor; -#> 560 Alexander Isak · 6&rsquor; -#> 561 Alexander Isak · 6&rsquor; -#> 562 Alexander Isak · 6&rsquor; -#> 563 Alexander Isak · 6&rsquor; -#> 564 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 565 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 566 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 567 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 568 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 569 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 570 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 571 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 572 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 573 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 574 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 575 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 576 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 577 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 578 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 579 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 580 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 581 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 582 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 583 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 584 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 585 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 586 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 587 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 588 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 589 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 590 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 591 Cristhian Stuani · 42&rsquor; Domingos Duarte (OG) · 47&rsquor; Valentín Castellanos · 64&rsquor; -#> 592 -#> 593 -#> 594 -#> 595 -#> 596 -#> 597 -#> 598 -#> 599 -#> 600 -#> 601 -#> 602 -#> 603 -#> 604 -#> 605 -#> 606 -#> 607 -#> 608 -#> 609 -#> 610 -#> 611 -#> 612 -#> 613 -#> 614 -#> 615 -#> 616 -#> 617 -#> 618 -#> 619 -#> 620 -#> 621 -#> 622 -#> 623 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 624 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 625 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 626 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 627 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 628 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 629 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 630 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 631 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 632 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 633 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 634 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 635 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 636 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 637 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 638 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 639 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 640 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 641 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 642 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 643 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 644 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 645 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 646 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 647 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 648 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 649 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 650 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 651 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 652 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 653 Borja Iglesias · 34&rsquor; Germán Pezzella · 73&rsquor; -#> 654 -#> 655 -#> 656 -#> 657 -#> 658 -#> 659 -#> 660 -#> 661 -#> 662 -#> 663 -#> 664 -#> 665 -#> 666 -#> 667 -#> 668 -#> 669 -#> 670 -#> 671 -#> 672 -#> 673 -#> 674 -#> 675 -#> 676 -#> 677 -#> 678 -#> 679 -#> 680 -#> 681 -#> 682 -#> 683 -#> 684 -#> 685 -#> 686 -#> 687 -#> 688 -#> 689 -#> 690 -#> 691 -#> 692 -#> 693 -#> 694 -#> 695 -#> 696 -#> 697 -#> 698 -#> 699 -#> 700 -#> 701 -#> 702 -#> 703 -#> 704 -#> 705 -#> 706 -#> 707 -#> 708 -#> 709 -#> 710 -#> 711 -#> 712 -#> 713 -#> 714 -#> 715 -#> 716 -#> 717 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 718 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 719 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 720 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 721 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 722 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 723 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 724 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 725 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 726 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 727 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 728 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 729 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 730 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 731 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 732 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 733 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 734 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 735 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 736 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 737 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 738 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 739 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 740 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 741 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 742 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 743 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 744 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 745 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 746 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 747 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 748 Largie Ramazani · 42&rsquor; Umar Sadiq · 55&rsquor; -#> 749 -#> 750 -#> 751 -#> 752 -#> 753 -#> 754 -#> 755 -#> 756 -#> 757 -#> 758 -#> 759 -#> 760 -#> 761 -#> 762 -#> 763 -#> 764 -#> 765 -#> 766 -#> 767 -#> 768 -#> 769 -#> 770 -#> 771 -#> 772 -#> 773 -#> 774 -#> 775 -#> 776 -#> 777 -#> 778 -#> 779 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 780 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 781 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 782 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 783 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 784 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 785 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 786 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 787 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 788 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 789 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 790 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 791 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 792 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 793 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 794 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 795 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 796 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 797 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 798 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 799 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 800 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 801 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 802 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 803 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 804 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 805 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 806 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 807 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 808 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 809 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 810 Robert Lewandowski · 24&rsquor; Pedri · 43&rsquor; Robert Lewandowski · 64&rsquor; Sergi Roberto · 90+2&rsquor; -#> 811 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 812 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 813 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 814 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 815 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 816 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 817 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 818 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 819 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 820 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 821 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 822 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 823 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 824 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 825 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 826 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 827 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 828 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 829 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 830 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 831 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 832 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 833 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 834 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 835 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 836 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 837 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 838 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 839 Joselu · 43&rsquor; Benjamin Lecomte · 90+6&rsquor; -#> 840 -#> 841 -#> 842 -#> 843 -#> 844 -#> 845 -#> 846 -#> 847 -#> 848 -#> 849 -#> 850 -#> 851 -#> 852 -#> 853 -#> 854 -#> 855 -#> 856 -#> 857 -#> 858 -#> 859 -#> 860 -#> 861 -#> 862 -#> 863 -#> 864 -#> 865 -#> 866 -#> 867 -#> 868 -#> 869 -#> 870 -#> 871 -#> 872 -#> 873 -#> 874 -#> 875 -#> 876 -#> 877 -#> 878 -#> 879 -#> 880 -#> 881 -#> 882 -#> 883 -#> 884 -#> 885 -#> 886 -#> 887 -#> 888 -#> 889 -#> 890 -#> 891 -#> 892 -#> 893 -#> 894 -#> 895 -#> 896 -#> 897 -#> 898 -#> 899 -#> 900 -#> 901 -#> 902 -#> 903 -#> 904 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 905 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 906 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 907 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 908 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 909 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 910 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 911 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 912 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 913 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 914 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 915 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 916 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 917 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 918 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 919 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 920 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 921 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 922 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 923 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 924 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 925 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 926 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 927 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 928 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 929 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 930 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 931 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 932 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 933 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 934 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 935 Iago Aspas · 56&rsquor; Óscar Rodríguez Arnaiz · 62&rsquor; Iago Aspas · 75&rsquor; -#> 936 Antonio Raillo · 87&rsquor; -#> 937 Antonio Raillo · 87&rsquor; -#> 938 Antonio Raillo · 87&rsquor; -#> 939 Antonio Raillo · 87&rsquor; -#> 940 Antonio Raillo · 87&rsquor; -#> 941 Antonio Raillo · 87&rsquor; -#> 942 Antonio Raillo · 87&rsquor; -#> 943 Antonio Raillo · 87&rsquor; -#> 944 Antonio Raillo · 87&rsquor; -#> 945 Antonio Raillo · 87&rsquor; -#> 946 Antonio Raillo · 87&rsquor; -#> 947 Antonio Raillo · 87&rsquor; -#> 948 Antonio Raillo · 87&rsquor; -#> 949 Antonio Raillo · 87&rsquor; -#> 950 Antonio Raillo · 87&rsquor; -#> 951 Antonio Raillo · 87&rsquor; -#> 952 Antonio Raillo · 87&rsquor; -#> 953 Antonio Raillo · 87&rsquor; -#> 954 Antonio Raillo · 87&rsquor; -#> 955 Antonio Raillo · 87&rsquor; -#> 956 Antonio Raillo · 87&rsquor; -#> 957 Antonio Raillo · 87&rsquor; -#> 958 Antonio Raillo · 87&rsquor; -#> 959 Antonio Raillo · 87&rsquor; -#> 960 Antonio Raillo · 87&rsquor; -#> 961 Antonio Raillo · 87&rsquor; -#> 962 Antonio Raillo · 87&rsquor; -#> 963 Antonio Raillo · 87&rsquor; -#> 964 Antonio Raillo · 87&rsquor; -#> 965 Antonio Raillo · 87&rsquor; -#> 966 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 967 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 968 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 969 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 970 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 971 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 972 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 973 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 974 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 975 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 976 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 977 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 978 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 979 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 980 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 981 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 982 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 983 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 984 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 985 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 986 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 987 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 988 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 989 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 990 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 991 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 992 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 993 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 994 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 995 Vinicius Júnior · 9&rsquor; Rodrygo · 65&rsquor; -#> 996 Umar Sadiq · 55&rsquor; -#> 997 Umar Sadiq · 55&rsquor; -#> 998 Umar Sadiq · 55&rsquor; -#> 999 Umar Sadiq · 55&rsquor; -#> 1000 Umar Sadiq · 55&rsquor; -#> 1001 Umar Sadiq · 55&rsquor; -#> 1002 Umar Sadiq · 55&rsquor; -#> 1003 Umar Sadiq · 55&rsquor; -#> 1004 Umar Sadiq · 55&rsquor; -#> 1005 Umar Sadiq · 55&rsquor; -#> 1006 Umar Sadiq · 55&rsquor; -#> 1007 Umar Sadiq · 55&rsquor; -#> 1008 Umar Sadiq · 55&rsquor; -#> 1009 Umar Sadiq · 55&rsquor; -#> 1010 Umar Sadiq · 55&rsquor; -#> 1011 Umar Sadiq · 55&rsquor; -#> 1012 Umar Sadiq · 55&rsquor; -#> 1013 Umar Sadiq · 55&rsquor; -#> 1014 Umar Sadiq · 55&rsquor; -#> 1015 Umar Sadiq · 55&rsquor; -#> 1016 Umar Sadiq · 55&rsquor; -#> 1017 Umar Sadiq · 55&rsquor; -#> 1018 Umar Sadiq · 55&rsquor; -#> 1019 Umar Sadiq · 55&rsquor; -#> 1020 Umar Sadiq · 55&rsquor; -#> 1021 Umar Sadiq · 55&rsquor; -#> 1022 Umar Sadiq · 55&rsquor; -#> 1023 Umar Sadiq · 55&rsquor; -#> 1024 Umar Sadiq · 55&rsquor; -#> 1025 Umar Sadiq · 55&rsquor; -#> 1026 Umar Sadiq · 55&rsquor; -#> 1027 Umar Sadiq · 55&rsquor; -#> 1028 -#> 1029 -#> 1030 -#> 1031 -#> 1032 -#> 1033 -#> 1034 -#> 1035 -#> 1036 -#> 1037 -#> 1038 -#> 1039 -#> 1040 -#> 1041 -#> 1042 -#> 1043 -#> 1044 -#> 1045 -#> 1046 -#> 1047 -#> 1048 -#> 1049 -#> 1050 -#> 1051 -#> 1052 -#> 1053 -#> 1054 -#> 1055 -#> 1056 -#> 1057 -#> 1058 -#> 1059 -#> 1060 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1061 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1062 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1063 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1064 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1065 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1066 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1067 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1068 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1069 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1070 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1071 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1072 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1073 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1074 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1075 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1076 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1077 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1078 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1079 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1080 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1081 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1082 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1083 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1084 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1085 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1086 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1087 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1088 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1089 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1090 Aimar Oroz · 54&rsquor; Rubén García · 90&rsquor; -#> 1091 -#> 1092 -#> 1093 -#> 1094 -#> 1095 -#> 1096 -#> 1097 -#> 1098 -#> 1099 -#> 1100 -#> 1101 -#> 1102 -#> 1103 -#> 1104 -#> 1105 -#> 1106 -#> 1107 -#> 1108 -#> 1109 -#> 1110 -#> 1111 -#> 1112 -#> 1113 -#> 1114 -#> 1115 -#> 1116 -#> 1117 -#> 1118 -#> 1119 -#> 1120 -#> 1121 -#> 1122 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1123 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1124 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1125 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1126 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1127 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1128 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1129 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1130 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1131 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1132 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1133 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1134 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1135 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1136 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1137 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1138 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1139 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1140 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1141 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1142 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1143 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1144 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1145 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1146 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1147 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1148 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1149 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1150 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1151 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1152 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1153 Gerard Moreno · 26&rsquor; Giovani Lo Celso · 36&rsquor; Francis Coquelin · 89&rsquor; José Luis Morales · 90+3&rsquor; -#> 1154 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1155 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1156 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1157 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1158 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1159 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1160 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1161 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1162 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1163 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1164 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1165 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1166 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1167 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1168 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1169 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1170 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1171 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1172 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1173 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1174 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1175 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1176 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1177 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1178 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1179 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1180 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1181 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1182 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1183 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1184 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1185 Toni Lato · 7&rsquor; Samuel · 14&rsquor; Samu Castillejo · 16&rsquor; Nicolás González · 65&rsquor; Hugo Duro · 68&rsquor; Ilaix Moriba · 88&rsquor; -#> 1186 Shon Weissman · 90+3&rsquor; -#> 1187 Shon Weissman · 90+3&rsquor; -#> 1188 Shon Weissman · 90+3&rsquor; -#> 1189 Shon Weissman · 90+3&rsquor; -#> 1190 Shon Weissman · 90+3&rsquor; -#> 1191 Shon Weissman · 90+3&rsquor; -#> 1192 Shon Weissman · 90+3&rsquor; -#> 1193 Shon Weissman · 90+3&rsquor; -#> 1194 Shon Weissman · 90+3&rsquor; -#> 1195 Shon Weissman · 90+3&rsquor; -#> 1196 Shon Weissman · 90+3&rsquor; -#> 1197 Shon Weissman · 90+3&rsquor; -#> 1198 Shon Weissman · 90+3&rsquor; -#> 1199 Shon Weissman · 90+3&rsquor; -#> 1200 Shon Weissman · 90+3&rsquor; -#> 1201 Shon Weissman · 90+3&rsquor; -#> 1202 Shon Weissman · 90+3&rsquor; -#> 1203 Shon Weissman · 90+3&rsquor; -#> 1204 Shon Weissman · 90+3&rsquor; -#> 1205 Shon Weissman · 90+3&rsquor; -#> 1206 Shon Weissman · 90+3&rsquor; -#> 1207 Shon Weissman · 90+3&rsquor; -#> 1208 Shon Weissman · 90+3&rsquor; -#> 1209 Shon Weissman · 90+3&rsquor; -#> 1210 Shon Weissman · 90+3&rsquor; -#> 1211 Shon Weissman · 90+3&rsquor; -#> 1212 Shon Weissman · 90+3&rsquor; -#> 1213 Shon Weissman · 90+3&rsquor; -#> 1214 Shon Weissman · 90+3&rsquor; -#> 1215 Shon Weissman · 90+3&rsquor; -#> 1216 Shon Weissman · 90+3&rsquor; -#> 1217 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1218 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1219 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1220 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1221 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1222 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1223 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1224 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1225 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1226 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1227 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1228 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1229 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1230 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1231 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1232 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1233 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1234 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1235 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1236 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1237 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1238 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1239 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1240 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1241 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1242 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1243 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1244 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1245 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1246 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1247 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1248 Reinier · 21&rsquor; Oriol Romeu · 88&rsquor; -#> 1249 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1250 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1251 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1252 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1253 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1254 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1255 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1256 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1257 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1258 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1259 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1260 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1261 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1262 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1263 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1264 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1265 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1266 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1267 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1268 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1269 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1270 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1271 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1272 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1273 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1274 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1275 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1276 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1277 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1278 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1279 Isaac Palazón Camacho · 5&rsquor; Nicolás González (OG) · 52&rsquor; -#> 1280 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1281 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1282 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1283 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1284 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1285 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1286 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1287 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1288 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1289 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1290 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1291 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1292 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1293 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1294 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1295 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1296 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1297 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1298 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1299 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1300 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1301 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1302 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1303 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1304 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1305 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1306 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1307 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1308 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1309 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1310 Joselu (P) · 45+4&rsquor; Martin Braithwaite · 62&rsquor; -#> 1311 -#> 1312 -#> 1313 -#> 1314 -#> 1315 -#> 1316 -#> 1317 -#> 1318 -#> 1319 -#> 1320 -#> 1321 -#> 1322 -#> 1323 -#> 1324 -#> 1325 -#> 1326 -#> 1327 -#> 1328 -#> 1329 -#> 1330 -#> 1331 -#> 1332 -#> 1333 -#> 1334 -#> 1335 -#> 1336 -#> 1337 -#> 1338 -#> 1339 -#> 1340 -#> 1341 -#> 1342 -#> 1343 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1344 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1345 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1346 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1347 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1348 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1349 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1350 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1351 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1352 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1353 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1354 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1355 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1356 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1357 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1358 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1359 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1360 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1361 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1362 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1363 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1364 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1365 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1366 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1367 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1368 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1369 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1370 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1371 Ángel Correa · 9&rsquor; Rodrigo De Paul · 50&rsquor; Yannick Carrasco · 66&rsquor; Unai Núñez (OG) · 82&rsquor; -#> 1372 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1373 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1374 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1375 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1376 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1377 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1378 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1379 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1380 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1381 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1382 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1383 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1384 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1385 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1386 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1387 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1388 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1389 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1390 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1391 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1392 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1393 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1394 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1395 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1396 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1397 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1398 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1399 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1400 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1401 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1402 Federico Valverde · 45+3&rsquor; Vinicius Júnior · 72&rsquor; Rodrygo · 89&rsquor; Antonio Rüdiger · 90+3&rsquor; -#> 1403 Ezequiel Ponce · 59&rsquor; -#> 1404 Ezequiel Ponce · 59&rsquor; -#> 1405 Ezequiel Ponce · 59&rsquor; -#> 1406 Ezequiel Ponce · 59&rsquor; -#> 1407 Ezequiel Ponce · 59&rsquor; -#> 1408 Ezequiel Ponce · 59&rsquor; -#> 1409 Ezequiel Ponce · 59&rsquor; -#> 1410 Ezequiel Ponce · 59&rsquor; -#> 1411 Ezequiel Ponce · 59&rsquor; -#> 1412 Ezequiel Ponce · 59&rsquor; -#> 1413 Ezequiel Ponce · 59&rsquor; -#> 1414 Ezequiel Ponce · 59&rsquor; -#> 1415 Ezequiel Ponce · 59&rsquor; -#> 1416 Ezequiel Ponce · 59&rsquor; -#> 1417 Ezequiel Ponce · 59&rsquor; -#> 1418 Ezequiel Ponce · 59&rsquor; -#> 1419 Ezequiel Ponce · 59&rsquor; -#> 1420 Ezequiel Ponce · 59&rsquor; -#> 1421 Ezequiel Ponce · 59&rsquor; -#> 1422 Ezequiel Ponce · 59&rsquor; -#> 1423 Ezequiel Ponce · 59&rsquor; -#> 1424 Ezequiel Ponce · 59&rsquor; -#> 1425 Ezequiel Ponce · 59&rsquor; -#> 1426 Ezequiel Ponce · 59&rsquor; -#> 1427 Ezequiel Ponce · 59&rsquor; -#> 1428 Ezequiel Ponce · 59&rsquor; -#> 1429 Ezequiel Ponce · 59&rsquor; -#> 1430 Ezequiel Ponce · 59&rsquor; -#> 1431 Ezequiel Ponce · 59&rsquor; -#> 1432 Ezequiel Ponce · 59&rsquor; -#> 1433 Ezequiel Ponce · 59&rsquor; -#> 1434 Ezequiel Ponce · 59&rsquor; -#> 1435 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1436 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1437 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1438 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1439 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1440 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1441 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1442 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1443 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1444 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1445 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1446 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1447 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1448 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1449 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1450 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1451 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1452 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1453 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1454 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1455 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1456 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1457 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1458 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1459 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1460 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1461 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1462 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1463 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1464 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1465 Enes Ünal · 45+5&rsquor; Carles Aleñá · 48&rsquor; -#> 1466 Rodri · 61&rsquor; -#> 1467 Rodri · 61&rsquor; -#> 1468 Rodri · 61&rsquor; -#> 1469 Rodri · 61&rsquor; -#> 1470 Rodri · 61&rsquor; -#> 1471 Rodri · 61&rsquor; -#> 1472 Rodri · 61&rsquor; -#> 1473 Rodri · 61&rsquor; -#> 1474 Rodri · 61&rsquor; -#> 1475 Rodri · 61&rsquor; -#> 1476 Rodri · 61&rsquor; -#> 1477 Rodri · 61&rsquor; -#> 1478 Rodri · 61&rsquor; -#> 1479 Rodri · 61&rsquor; -#> 1480 Rodri · 61&rsquor; -#> 1481 Rodri · 61&rsquor; -#> 1482 Rodri · 61&rsquor; -#> 1483 Rodri · 61&rsquor; -#> 1484 Rodri · 61&rsquor; -#> 1485 Rodri · 61&rsquor; -#> 1486 Rodri · 61&rsquor; -#> 1487 Rodri · 61&rsquor; -#> 1488 Rodri · 61&rsquor; -#> 1489 Rodri · 61&rsquor; -#> 1490 Rodri · 61&rsquor; -#> 1491 Rodri · 61&rsquor; -#> 1492 Rodri · 61&rsquor; -#> 1493 Rodri · 61&rsquor; -#> 1494 Rodri · 61&rsquor; -#> 1495 Rodri · 61&rsquor; -#> 1496 -#> 1497 -#> 1498 -#> 1499 -#> 1500 -#> 1501 -#> 1502 -#> 1503 -#> 1504 -#> 1505 -#> 1506 -#> 1507 -#> 1508 -#> 1509 -#> 1510 -#> 1511 -#> 1512 -#> 1513 -#> 1514 -#> 1515 -#> 1516 -#> 1517 -#> 1518 -#> 1519 -#> 1520 -#> 1521 -#> 1522 -#> 1523 -#> 1524 -#> 1525 -#> 1526 -#> 1527 -#> 1528 -#> 1529 -#> 1530 -#> 1531 -#> 1532 -#> 1533 -#> 1534 -#> 1535 -#> 1536 -#> 1537 -#> 1538 -#> 1539 -#> 1540 -#> 1541 -#> 1542 -#> 1543 -#> 1544 -#> 1545 -#> 1546 -#> 1547 -#> 1548 -#> 1549 -#> 1550 -#> 1551 -#> 1552 -#> 1553 -#> 1554 -#> 1555 -#> 1556 -#> 1557 -#> 1558 -#> 1559 -#> 1560 Pablo Maffeo · 25&rsquor; -#> 1561 Pablo Maffeo · 25&rsquor; -#> 1562 Pablo Maffeo · 25&rsquor; -#> 1563 Pablo Maffeo · 25&rsquor; -#> 1564 Pablo Maffeo · 25&rsquor; -#> 1565 Pablo Maffeo · 25&rsquor; -#> 1566 Pablo Maffeo · 25&rsquor; -#> 1567 Pablo Maffeo · 25&rsquor; -#> 1568 Pablo Maffeo · 25&rsquor; -#> 1569 Pablo Maffeo · 25&rsquor; -#> 1570 Pablo Maffeo · 25&rsquor; -#> 1571 Pablo Maffeo · 25&rsquor; -#> 1572 Pablo Maffeo · 25&rsquor; -#> 1573 Pablo Maffeo · 25&rsquor; -#> 1574 Pablo Maffeo · 25&rsquor; -#> 1575 Pablo Maffeo · 25&rsquor; -#> 1576 Pablo Maffeo · 25&rsquor; -#> 1577 Pablo Maffeo · 25&rsquor; -#> 1578 Pablo Maffeo · 25&rsquor; -#> 1579 Pablo Maffeo · 25&rsquor; -#> 1580 Pablo Maffeo · 25&rsquor; -#> 1581 Pablo Maffeo · 25&rsquor; -#> 1582 Pablo Maffeo · 25&rsquor; -#> 1583 Pablo Maffeo · 25&rsquor; -#> 1584 Pablo Maffeo · 25&rsquor; -#> 1585 Pablo Maffeo · 25&rsquor; -#> 1586 Pablo Maffeo · 25&rsquor; -#> 1587 Pablo Maffeo · 25&rsquor; -#> 1588 Pablo Maffeo · 25&rsquor; -#> 1589 Pablo Maffeo · 25&rsquor; -#> 1590 Pablo Maffeo · 25&rsquor; -#> 1591 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1592 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1593 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1594 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1595 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1596 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1597 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1598 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1599 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1600 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1601 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1602 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1603 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1604 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1605 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1606 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1607 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1608 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1609 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1610 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1611 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1612 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1613 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1614 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1615 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1616 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1617 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1618 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1619 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1620 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1621 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1622 Robert Lewandowski · 34&rsquor; Memphis · 41&rsquor; Robert Lewandowski · 48&rsquor; -#> 1623 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1624 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1625 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1626 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1627 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1628 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1629 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1630 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1631 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1632 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1633 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1634 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1635 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1636 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1637 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1638 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1639 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1640 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1641 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1642 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1643 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1644 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1645 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1646 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1647 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1648 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1649 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1650 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1651 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1652 Samu Castillejo · 37&rsquor; Marcos André · 82&rsquor; Domingos André Ribeiro Almeida · 90+3&rsquor; -#> 1653 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1654 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1655 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1656 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1657 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1658 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1659 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1660 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1661 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1662 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1663 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1664 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1665 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1666 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1667 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1668 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1669 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1670 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1671 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1672 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1673 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1674 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1675 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1676 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1677 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1678 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1679 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1680 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1681 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1682 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1683 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1684 Iñaki Williams · 14&rsquor; Oihan Sancet · 28&rsquor; Nico Williams · 33&rsquor; -#> 1685 Ezequiel Ávila · 43&rsquor; -#> 1686 Ezequiel Ávila · 43&rsquor; -#> 1687 Ezequiel Ávila · 43&rsquor; -#> 1688 Ezequiel Ávila · 43&rsquor; -#> 1689 Ezequiel Ávila · 43&rsquor; -#> 1690 Ezequiel Ávila · 43&rsquor; -#> 1691 Ezequiel Ávila · 43&rsquor; -#> 1692 Ezequiel Ávila · 43&rsquor; -#> 1693 Ezequiel Ávila · 43&rsquor; -#> 1694 Ezequiel Ávila · 43&rsquor; -#> 1695 Ezequiel Ávila · 43&rsquor; -#> 1696 Ezequiel Ávila · 43&rsquor; -#> 1697 Ezequiel Ávila · 43&rsquor; -#> 1698 Ezequiel Ávila · 43&rsquor; -#> 1699 Ezequiel Ávila · 43&rsquor; -#> 1700 Ezequiel Ávila · 43&rsquor; -#> 1701 Ezequiel Ávila · 43&rsquor; -#> 1702 Ezequiel Ávila · 43&rsquor; -#> 1703 Ezequiel Ávila · 43&rsquor; -#> 1704 Ezequiel Ávila · 43&rsquor; -#> 1705 Ezequiel Ávila · 43&rsquor; -#> 1706 Ezequiel Ávila · 43&rsquor; -#> 1707 Ezequiel Ávila · 43&rsquor; -#> 1708 Ezequiel Ávila · 43&rsquor; -#> 1709 Ezequiel Ávila · 43&rsquor; -#> 1710 Ezequiel Ávila · 43&rsquor; -#> 1711 Ezequiel Ávila · 43&rsquor; -#> 1712 Ezequiel Ávila · 43&rsquor; -#> 1713 Ezequiel Ávila · 43&rsquor; -#> 1714 Ezequiel Ávila · 43&rsquor; -#> 1715 Ezequiel Ávila · 43&rsquor; -#> 1716 Ezequiel Ávila · 43&rsquor; -#> 1717 Alex Baena · 51&rsquor; -#> 1718 Alex Baena · 51&rsquor; -#> 1719 Alex Baena · 51&rsquor; -#> 1720 Alex Baena · 51&rsquor; -#> 1721 Alex Baena · 51&rsquor; -#> 1722 Alex Baena · 51&rsquor; -#> 1723 Alex Baena · 51&rsquor; -#> 1724 Alex Baena · 51&rsquor; -#> 1725 Alex Baena · 51&rsquor; -#> 1726 Alex Baena · 51&rsquor; -#> 1727 Alex Baena · 51&rsquor; -#> 1728 Alex Baena · 51&rsquor; -#> 1729 Alex Baena · 51&rsquor; -#> 1730 Alex Baena · 51&rsquor; -#> 1731 Alex Baena · 51&rsquor; -#> 1732 Alex Baena · 51&rsquor; -#> 1733 Alex Baena · 51&rsquor; -#> 1734 Alex Baena · 51&rsquor; -#> 1735 Alex Baena · 51&rsquor; -#> 1736 Alex Baena · 51&rsquor; -#> 1737 Alex Baena · 51&rsquor; -#> 1738 Alex Baena · 51&rsquor; -#> 1739 Alex Baena · 51&rsquor; -#> 1740 Alex Baena · 51&rsquor; -#> 1741 Alex Baena · 51&rsquor; -#> 1742 Alex Baena · 51&rsquor; -#> 1743 Alex Baena · 51&rsquor; -#> 1744 Alex Baena · 51&rsquor; -#> 1745 Alex Baena · 51&rsquor; -#> 1746 Alex Baena · 51&rsquor; -#> 1747 Alex Baena · 51&rsquor; -#> 1748 Alex Baena · 51&rsquor; -#> 1749 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1750 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1751 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1752 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1753 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1754 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1755 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1756 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1757 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1758 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1759 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1760 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1761 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1762 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1763 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1764 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1765 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1766 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1767 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1768 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1769 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1770 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1771 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1772 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1773 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1774 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1775 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1776 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1777 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1778 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1779 Borja Iglesias (P) · 15&rsquor; Borja Iglesias · 71&rsquor; -#> 1780 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1781 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1782 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1783 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1784 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1785 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1786 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1787 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1788 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1789 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1790 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1791 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1792 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1793 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1794 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1795 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1796 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1797 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1798 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1799 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1800 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1801 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1802 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1803 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1804 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1805 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1806 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1807 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1808 Alexander Sørloth · 17&rsquor; Brais Méndez · 29&rsquor; -#> 1809 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1810 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1811 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1812 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1813 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1814 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1815 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1816 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1817 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1818 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1819 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1820 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1821 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1822 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1823 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1824 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1825 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1826 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1827 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1828 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1829 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1830 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1831 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1832 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1833 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1834 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1835 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1836 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1837 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1838 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1839 Mario Hermoso · 83&rsquor; Mario Hermoso · 90+1&rsquor; -#> 1840 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1841 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1842 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1843 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1844 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1845 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1846 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1847 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1848 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1849 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1850 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1851 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1852 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1853 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1854 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1855 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1856 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1857 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1858 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1859 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1860 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1861 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1862 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1863 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1864 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1865 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1866 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1867 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1868 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1869 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1870 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1871 Iñaki Williams · 10&rsquor; Oihan Sancet · 17&rsquor; Nico Williams · 62&rsquor; Mikel Vesga (P) · 84&rsquor; -#> 1872 Isaac Carcelen · 90+3&rsquor; -#> 1873 Isaac Carcelen · 90+3&rsquor; -#> 1874 Isaac Carcelen · 90+3&rsquor; -#> 1875 Isaac Carcelen · 90+3&rsquor; -#> 1876 Isaac Carcelen · 90+3&rsquor; -#> 1877 Isaac Carcelen · 90+3&rsquor; -#> 1878 Isaac Carcelen · 90+3&rsquor; -#> 1879 Isaac Carcelen · 90+3&rsquor; -#> 1880 Isaac Carcelen · 90+3&rsquor; -#> 1881 Isaac Carcelen · 90+3&rsquor; -#> 1882 Isaac Carcelen · 90+3&rsquor; -#> 1883 Isaac Carcelen · 90+3&rsquor; -#> 1884 Isaac Carcelen · 90+3&rsquor; -#> 1885 Isaac Carcelen · 90+3&rsquor; -#> 1886 Isaac Carcelen · 90+3&rsquor; -#> 1887 Isaac Carcelen · 90+3&rsquor; -#> 1888 Isaac Carcelen · 90+3&rsquor; -#> 1889 Isaac Carcelen · 90+3&rsquor; -#> 1890 Isaac Carcelen · 90+3&rsquor; -#> 1891 Isaac Carcelen · 90+3&rsquor; -#> 1892 Isaac Carcelen · 90+3&rsquor; -#> 1893 Isaac Carcelen · 90+3&rsquor; -#> 1894 Isaac Carcelen · 90+3&rsquor; -#> 1895 Isaac Carcelen · 90+3&rsquor; -#> 1896 Isaac Carcelen · 90+3&rsquor; -#> 1897 Isaac Carcelen · 90+3&rsquor; -#> 1898 Isaac Carcelen · 90+3&rsquor; -#> 1899 Isaac Carcelen · 90+3&rsquor; -#> 1900 Isaac Carcelen · 90+3&rsquor; -#> 1901 Isaac Carcelen · 90+3&rsquor; -#> 1902 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1903 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1904 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1905 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1906 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1907 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1908 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1909 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1910 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1911 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1912 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1913 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1914 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1915 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1916 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1917 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1918 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1919 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1920 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1921 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1922 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1923 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1924 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1925 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1926 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1927 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1928 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1929 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1930 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1931 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1932 Borja Mayoral · 29&rsquor; Damián Suárez · 31&rsquor; -#> 1933 -#> 1934 -#> 1935 -#> 1936 -#> 1937 -#> 1938 -#> 1939 -#> 1940 -#> 1941 -#> 1942 -#> 1943 -#> 1944 -#> 1945 -#> 1946 -#> 1947 -#> 1948 -#> 1949 -#> 1950 -#> 1951 -#> 1952 -#> 1953 -#> 1954 -#> 1955 -#> 1956 -#> 1957 -#> 1958 -#> 1959 -#> 1960 -#> 1961 -#> 1962 -#> 1963 -#> 1964 -#> 1965 -#> 1966 -#> 1967 -#> 1968 -#> 1969 -#> 1970 -#> 1971 -#> 1972 -#> 1973 -#> 1974 -#> 1975 -#> 1976 -#> 1977 -#> 1978 -#> 1979 -#> 1980 -#> 1981 -#> 1982 -#> 1983 -#> 1984 -#> 1985 -#> 1986 -#> 1987 -#> 1988 -#> 1989 -#> 1990 -#> 1991 -#> 1992 -#> 1993 -#> 1994 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 1995 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 1996 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 1997 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 1998 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 1999 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2000 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2001 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2002 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2003 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2004 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2005 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2006 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2007 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2008 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2009 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2010 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2011 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2012 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2013 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2014 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2015 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2016 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2017 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2018 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2019 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2020 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2021 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2022 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2023 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2024 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2025 Joselu · 56&rsquor; Sergi Darder · 83&rsquor; Martin Braithwaite · 90+2&rsquor; -#> 2026 Gabriel Veiga · 9&rsquor; -#> 2027 Gabriel Veiga · 9&rsquor; -#> 2028 Gabriel Veiga · 9&rsquor; -#> 2029 Gabriel Veiga · 9&rsquor; -#> 2030 Gabriel Veiga · 9&rsquor; -#> 2031 Gabriel Veiga · 9&rsquor; -#> 2032 Gabriel Veiga · 9&rsquor; -#> 2033 Gabriel Veiga · 9&rsquor; -#> 2034 Gabriel Veiga · 9&rsquor; -#> 2035 Gabriel Veiga · 9&rsquor; -#> 2036 Gabriel Veiga · 9&rsquor; -#> 2037 Gabriel Veiga · 9&rsquor; -#> 2038 Gabriel Veiga · 9&rsquor; -#> 2039 Gabriel Veiga · 9&rsquor; -#> 2040 Gabriel Veiga · 9&rsquor; -#> Home_Yellow_Cards Home_Red_Cards Away_Team Away_Formation Away_Score -#> 1 5 0 Sevilla 4-2-3-1 1 -#> 2 5 0 Sevilla 4-2-3-1 1 -#> 3 5 0 Sevilla 4-2-3-1 1 -#> 4 5 0 Sevilla 4-2-3-1 1 -#> 5 5 0 Sevilla 4-2-3-1 1 -#> 6 5 0 Sevilla 4-2-3-1 1 -#> 7 5 0 Sevilla 4-2-3-1 1 -#> 8 5 0 Sevilla 4-2-3-1 1 -#> 9 5 0 Sevilla 4-2-3-1 1 -#> 10 5 0 Sevilla 4-2-3-1 1 -#> 11 5 0 Sevilla 4-2-3-1 1 -#> 12 5 0 Sevilla 4-2-3-1 1 -#> 13 5 0 Sevilla 4-2-3-1 1 -#> 14 5 0 Sevilla 4-2-3-1 1 -#> 15 5 0 Sevilla 4-2-3-1 1 -#> 16 5 0 Sevilla 4-2-3-1 1 -#> 17 5 0 Sevilla 4-2-3-1 1 -#> 18 5 0 Sevilla 4-2-3-1 1 -#> 19 5 0 Sevilla 4-2-3-1 1 -#> 20 5 0 Sevilla 4-2-3-1 1 -#> 21 5 0 Sevilla 4-2-3-1 1 -#> 22 5 0 Sevilla 4-2-3-1 1 -#> 23 5 0 Sevilla 4-2-3-1 1 -#> 24 5 0 Sevilla 4-2-3-1 1 -#> 25 5 0 Sevilla 4-2-3-1 1 -#> 26 5 0 Sevilla 4-2-3-1 1 -#> 27 5 0 Sevilla 4-2-3-1 1 -#> 28 5 0 Sevilla 4-2-3-1 1 -#> 29 5 0 Sevilla 4-2-3-1 1 -#> 30 5 0 Sevilla 4-2-3-1 1 -#> 31 5 0 Sevilla 4-2-3-1 1 -#> 32 5 0 Sevilla 4-2-3-1 1 -#> 33 5 0 Espanyol 4-3-3 2 -#> 34 5 0 Espanyol 4-3-3 2 -#> 35 5 0 Espanyol 4-3-3 2 -#> 36 5 0 Espanyol 4-3-3 2 -#> 37 5 0 Espanyol 4-3-3 2 -#> 38 5 0 Espanyol 4-3-3 2 -#> 39 5 0 Espanyol 4-3-3 2 -#> 40 5 0 Espanyol 4-3-3 2 -#> 41 5 0 Espanyol 4-3-3 2 -#> 42 5 0 Espanyol 4-3-3 2 -#> 43 5 0 Espanyol 4-3-3 2 -#> 44 5 0 Espanyol 4-3-3 2 -#> 45 5 0 Espanyol 4-3-3 2 -#> 46 5 0 Espanyol 4-3-3 2 -#> 47 5 0 Espanyol 4-3-3 2 -#> 48 5 0 Espanyol 4-3-3 2 -#> 49 5 0 Espanyol 4-3-3 2 -#> 50 5 0 Espanyol 4-3-3 2 -#> 51 5 0 Espanyol 4-3-3 2 -#> 52 5 0 Espanyol 4-3-3 2 -#> 53 5 0 Espanyol 4-3-3 2 -#> 54 5 0 Espanyol 4-3-3 2 -#> 55 5 0 Espanyol 4-3-3 2 -#> 56 5 0 Espanyol 4-3-3 2 -#> 57 5 0 Espanyol 4-3-3 2 -#> 58 5 0 Espanyol 4-3-3 2 -#> 59 5 0 Espanyol 4-3-3 2 -#> 60 5 0 Espanyol 4-3-3 2 -#> 61 5 0 Espanyol 4-3-3 2 -#> 62 5 0 Espanyol 4-3-3 2 -#> 63 1 0 Villarreal 4-4-2 3 -#> 64 1 0 Villarreal 4-4-2 3 -#> 65 1 0 Villarreal 4-4-2 3 -#> 66 1 0 Villarreal 4-4-2 3 -#> 67 1 0 Villarreal 4-4-2 3 -#> 68 1 0 Villarreal 4-4-2 3 -#> 69 1 0 Villarreal 4-4-2 3 -#> 70 1 0 Villarreal 4-4-2 3 -#> 71 1 0 Villarreal 4-4-2 3 -#> 72 1 0 Villarreal 4-4-2 3 -#> 73 1 0 Villarreal 4-4-2 3 -#> 74 1 0 Villarreal 4-4-2 3 -#> 75 1 0 Villarreal 4-4-2 3 -#> 76 1 0 Villarreal 4-4-2 3 -#> 77 1 0 Villarreal 4-4-2 3 -#> 78 1 0 Villarreal 4-4-2 3 -#> 79 1 0 Villarreal 4-4-2 3 -#> 80 1 0 Villarreal 4-4-2 3 -#> 81 1 0 Villarreal 4-4-2 3 -#> 82 1 0 Villarreal 4-4-2 3 -#> 83 1 0 Villarreal 4-4-2 3 -#> 84 1 0 Villarreal 4-4-2 3 -#> 85 1 0 Villarreal 4-4-2 3 -#> 86 1 0 Villarreal 4-4-2 3 -#> 87 1 0 Villarreal 4-4-2 3 -#> 88 1 0 Villarreal 4-4-2 3 -#> 89 1 0 Villarreal 4-4-2 3 -#> 90 1 0 Villarreal 4-4-2 3 -#> 91 1 0 Villarreal 4-4-2 3 -#> 92 1 0 Villarreal 4-4-2 3 -#> 93 1 0 Villarreal 4-4-2 3 -#> 94 4 1 Rayo Vallecano 4-2-3-1 0 -#> 95 4 1 Rayo Vallecano 4-2-3-1 0 -#> 96 4 1 Rayo Vallecano 4-2-3-1 0 -#> 97 4 1 Rayo Vallecano 4-2-3-1 0 -#> 98 4 1 Rayo Vallecano 4-2-3-1 0 -#> 99 4 1 Rayo Vallecano 4-2-3-1 0 -#> 100 4 1 Rayo Vallecano 4-2-3-1 0 -#> 101 4 1 Rayo Vallecano 4-2-3-1 0 -#> 102 4 1 Rayo Vallecano 4-2-3-1 0 -#> 103 4 1 Rayo Vallecano 4-2-3-1 0 -#> 104 4 1 Rayo Vallecano 4-2-3-1 0 -#> 105 4 1 Rayo Vallecano 4-2-3-1 0 -#> 106 4 1 Rayo Vallecano 4-2-3-1 0 -#> 107 4 1 Rayo Vallecano 4-2-3-1 0 -#> 108 4 1 Rayo Vallecano 4-2-3-1 0 -#> 109 4 1 Rayo Vallecano 4-2-3-1 0 -#> 110 4 1 Rayo Vallecano 4-2-3-1 0 -#> 111 4 1 Rayo Vallecano 4-2-3-1 0 -#> 112 4 1 Rayo Vallecano 4-2-3-1 0 -#> 113 4 1 Rayo Vallecano 4-2-3-1 0 -#> 114 4 1 Rayo Vallecano 4-2-3-1 0 -#> 115 4 1 Rayo Vallecano 4-2-3-1 0 -#> 116 4 1 Rayo Vallecano 4-2-3-1 0 -#> 117 4 1 Rayo Vallecano 4-2-3-1 0 -#> 118 4 1 Rayo Vallecano 4-2-3-1 0 -#> 119 4 1 Rayo Vallecano 4-2-3-1 0 -#> 120 4 1 Rayo Vallecano 4-2-3-1 0 -#> 121 4 1 Rayo Vallecano 4-2-3-1 0 -#> 122 4 1 Rayo Vallecano 4-2-3-1 0 -#> 123 4 1 Rayo Vallecano 4-2-3-1 0 -#> 124 4 1 Rayo Vallecano 4-2-3-1 0 -#> 125 4 0 Real Sociedad 4-1-2-1-2 1 -#> 126 4 0 Real Sociedad 4-1-2-1-2 1 -#> 127 4 0 Real Sociedad 4-1-2-1-2 1 -#> 128 4 0 Real Sociedad 4-1-2-1-2 1 -#> 129 4 0 Real Sociedad 4-1-2-1-2 1 -#> 130 4 0 Real Sociedad 4-1-2-1-2 1 -#> 131 4 0 Real Sociedad 4-1-2-1-2 1 -#> 132 4 0 Real Sociedad 4-1-2-1-2 1 -#> 133 4 0 Real Sociedad 4-1-2-1-2 1 -#> 134 4 0 Real Sociedad 4-1-2-1-2 1 -#> 135 4 0 Real Sociedad 4-1-2-1-2 1 -#> 136 4 0 Real Sociedad 4-1-2-1-2 1 -#> 137 4 0 Real Sociedad 4-1-2-1-2 1 -#> 138 4 0 Real Sociedad 4-1-2-1-2 1 -#> 139 4 0 Real Sociedad 4-1-2-1-2 1 -#> 140 4 0 Real Sociedad 4-1-2-1-2 1 -#> 141 4 0 Real Sociedad 4-1-2-1-2 1 -#> 142 4 0 Real Sociedad 4-1-2-1-2 1 -#> 143 4 0 Real Sociedad 4-1-2-1-2 1 -#> 144 4 0 Real Sociedad 4-1-2-1-2 1 -#> 145 4 0 Real Sociedad 4-1-2-1-2 1 -#> 146 4 0 Real Sociedad 4-1-2-1-2 1 -#> 147 4 0 Real Sociedad 4-1-2-1-2 1 -#> 148 4 0 Real Sociedad 4-1-2-1-2 1 -#> 149 4 0 Real Sociedad 4-1-2-1-2 1 -#> 150 4 0 Real Sociedad 4-1-2-1-2 1 -#> 151 4 0 Real Sociedad 4-1-2-1-2 1 -#> 152 4 0 Real Sociedad 4-1-2-1-2 1 -#> 153 4 0 Real Sociedad 4-1-2-1-2 1 -#> 154 4 0 Real Sociedad 4-1-2-1-2 1 -#> 155 4 0 Real Sociedad 4-1-2-1-2 1 -#> 156 4 0 Real Sociedad 4-1-2-1-2 1 -#> 157 2 1 Girona 3-4-3 0 -#> 158 2 1 Girona 3-4-3 0 -#> 159 2 1 Girona 3-4-3 0 -#> 160 2 1 Girona 3-4-3 0 -#> 161 2 1 Girona 3-4-3 0 -#> 162 2 1 Girona 3-4-3 0 -#> 163 2 1 Girona 3-4-3 0 -#> 164 2 1 Girona 3-4-3 0 -#> 165 2 1 Girona 3-4-3 0 -#> 166 2 1 Girona 3-4-3 0 -#> 167 2 1 Girona 3-4-3 0 -#> 168 2 1 Girona 3-4-3 0 -#> 169 2 1 Girona 3-4-3 0 -#> 170 2 1 Girona 3-4-3 0 -#> 171 2 1 Girona 3-4-3 0 -#> 172 2 1 Girona 3-4-3 0 -#> 173 2 1 Girona 3-4-3 0 -#> 174 2 1 Girona 3-4-3 0 -#> 175 2 1 Girona 3-4-3 0 -#> 176 2 1 Girona 3-4-3 0 -#> 177 2 1 Girona 3-4-3 0 -#> 178 2 1 Girona 3-4-3 0 -#> 179 2 1 Girona 3-4-3 0 -#> 180 2 1 Girona 3-4-3 0 -#> 181 2 1 Girona 3-4-3 0 -#> 182 2 1 Girona 3-4-3 0 -#> 183 2 1 Girona 3-4-3 0 -#> 184 2 1 Girona 3-4-3 0 -#> 185 2 1 Girona 3-4-3 0 -#> 186 2 1 Girona 3-4-3 0 -#> 187 2 1 Girona 3-4-3 0 -#> 188 2 1 Girona 3-4-3 0 -#> 189 3 0 Real Madrid 4-3-3 2 -#> 190 3 0 Real Madrid 4-3-3 2 -#> 191 3 0 Real Madrid 4-3-3 2 -#> 192 3 0 Real Madrid 4-3-3 2 -#> 193 3 0 Real Madrid 4-3-3 2 -#> 194 3 0 Real Madrid 4-3-3 2 -#> 195 3 0 Real Madrid 4-3-3 2 -#> 196 3 0 Real Madrid 4-3-3 2 -#> 197 3 0 Real Madrid 4-3-3 2 -#> 198 3 0 Real Madrid 4-3-3 2 -#> 199 3 0 Real Madrid 4-3-3 2 -#> 200 3 0 Real Madrid 4-3-3 2 -#> 201 3 0 Real Madrid 4-3-3 2 -#> 202 3 0 Real Madrid 4-3-3 2 -#> 203 3 0 Real Madrid 4-3-3 2 -#> 204 3 0 Real Madrid 4-3-3 2 -#> 205 3 0 Real Madrid 4-3-3 2 -#> 206 3 0 Real Madrid 4-3-3 2 -#> 207 3 0 Real Madrid 4-3-3 2 -#> 208 3 0 Real Madrid 4-3-3 2 -#> 209 3 0 Real Madrid 4-3-3 2 -#> 210 3 0 Real Madrid 4-3-3 2 -#> 211 3 0 Real Madrid 4-3-3 2 -#> 212 3 0 Real Madrid 4-3-3 2 -#> 213 3 0 Real Madrid 4-3-3 2 -#> 214 3 0 Real Madrid 4-3-3 2 -#> 215 3 0 Real Madrid 4-3-3 2 -#> 216 3 0 Real Madrid 4-3-3 2 -#> 217 3 0 Real Madrid 4-3-3 2 -#> 218 3 0 Real Madrid 4-3-3 2 -#> 219 3 0 Real Madrid 4-3-3 2 -#> 220 3 0 Real Madrid 4-3-3 2 -#> 221 0 0 Mallorca 5-4-1 0 -#> 222 0 0 Mallorca 5-4-1 0 -#> 223 0 0 Mallorca 5-4-1 0 -#> 224 0 0 Mallorca 5-4-1 0 -#> 225 0 0 Mallorca 5-4-1 0 -#> 226 0 0 Mallorca 5-4-1 0 -#> 227 0 0 Mallorca 5-4-1 0 -#> 228 0 0 Mallorca 5-4-1 0 -#> 229 0 0 Mallorca 5-4-1 0 -#> 230 0 0 Mallorca 5-4-1 0 -#> 231 0 0 Mallorca 5-4-1 0 -#> 232 0 0 Mallorca 5-4-1 0 -#> 233 0 0 Mallorca 5-4-1 0 -#> 234 0 0 Mallorca 5-4-1 0 -#> 235 0 0 Mallorca 5-4-1 0 -#> 236 0 0 Mallorca 5-4-1 0 -#> 237 0 0 Mallorca 5-4-1 0 -#> 238 0 0 Mallorca 5-4-1 0 -#> 239 0 0 Mallorca 5-4-1 0 -#> 240 0 0 Mallorca 5-4-1 0 -#> 241 0 0 Mallorca 5-4-1 0 -#> 242 0 0 Mallorca 5-4-1 0 -#> 243 0 0 Mallorca 5-4-1 0 -#> 244 0 0 Mallorca 5-4-1 0 -#> 245 0 0 Mallorca 5-4-1 0 -#> 246 0 0 Mallorca 5-4-1 0 -#> 247 0 0 Mallorca 5-4-1 0 -#> 248 0 0 Mallorca 5-4-1 0 -#> 249 0 0 Mallorca 5-4-1 0 -#> 250 0 0 Mallorca 5-4-1 0 -#> 251 0 0 Mallorca 5-4-1 0 -#> 252 2 0 Atlético Madrid 5-3-2 3 -#> 253 2 0 Atlético Madrid 5-3-2 3 -#> 254 2 0 Atlético Madrid 5-3-2 3 -#> 255 2 0 Atlético Madrid 5-3-2 3 -#> 256 2 0 Atlético Madrid 5-3-2 3 -#> 257 2 0 Atlético Madrid 5-3-2 3 -#> 258 2 0 Atlético Madrid 5-3-2 3 -#> 259 2 0 Atlético Madrid 5-3-2 3 -#> 260 2 0 Atlético Madrid 5-3-2 3 -#> 261 2 0 Atlético Madrid 5-3-2 3 -#> 262 2 0 Atlético Madrid 5-3-2 3 -#> 263 2 0 Atlético Madrid 5-3-2 3 -#> 264 2 0 Atlético Madrid 5-3-2 3 -#> 265 2 0 Atlético Madrid 5-3-2 3 -#> 266 2 0 Atlético Madrid 5-3-2 3 -#> 267 2 0 Atlético Madrid 5-3-2 3 -#> 268 2 0 Atlético Madrid 5-3-2 3 -#> 269 2 0 Atlético Madrid 5-3-2 3 -#> 270 2 0 Atlético Madrid 5-3-2 3 -#> 271 2 0 Atlético Madrid 5-3-2 3 -#> 272 2 0 Atlético Madrid 5-3-2 3 -#> 273 2 0 Atlético Madrid 5-3-2 3 -#> 274 2 0 Atlético Madrid 5-3-2 3 -#> 275 2 0 Atlético Madrid 5-3-2 3 -#> 276 2 0 Atlético Madrid 5-3-2 3 -#> 277 2 0 Atlético Madrid 5-3-2 3 -#> 278 2 0 Atlético Madrid 5-3-2 3 -#> 279 2 0 Atlético Madrid 5-3-2 3 -#> 280 2 0 Atlético Madrid 5-3-2 3 -#> 281 2 0 Atlético Madrid 5-3-2 3 -#> 282 2 0 Atlético Madrid 5-3-2 3 -#> 283 3 0 Elche 3-4-3 0 -#> 284 3 0 Elche 3-4-3 0 -#> 285 3 0 Elche 3-4-3 0 -#> 286 3 0 Elche 3-4-3 0 -#> 287 3 0 Elche 3-4-3 0 -#> 288 3 0 Elche 3-4-3 0 -#> 289 3 0 Elche 3-4-3 0 -#> 290 3 0 Elche 3-4-3 0 -#> 291 3 0 Elche 3-4-3 0 -#> 292 3 0 Elche 3-4-3 0 -#> 293 3 0 Elche 3-4-3 0 -#> 294 3 0 Elche 3-4-3 0 -#> 295 3 0 Elche 3-4-3 0 -#> 296 3 0 Elche 3-4-3 0 -#> 297 3 0 Elche 3-4-3 0 -#> 298 3 0 Elche 3-4-3 0 -#> 299 3 0 Elche 3-4-3 0 -#> 300 3 0 Elche 3-4-3 0 -#> 301 3 0 Elche 3-4-3 0 -#> 302 3 0 Elche 3-4-3 0 -#> 303 3 0 Elche 3-4-3 0 -#> 304 3 0 Elche 3-4-3 0 -#> 305 3 0 Elche 3-4-3 0 -#> 306 3 0 Elche 3-4-3 0 -#> 307 3 0 Elche 3-4-3 0 -#> 308 3 0 Elche 3-4-3 0 -#> 309 3 0 Elche 3-4-3 0 -#> 310 3 0 Elche 3-4-3 0 -#> 311 3 0 Elche 3-4-3 0 -#> 312 3 0 Elche 3-4-3 0 -#> 313 3 0 Elche 3-4-3 0 -#> 314 3 0 Elche 3-4-3 0 -#> 315 2 1 Rayo Vallecano 4-2-3-1 2 -#> 316 2 1 Rayo Vallecano 4-2-3-1 2 -#> 317 2 1 Rayo Vallecano 4-2-3-1 2 -#> 318 2 1 Rayo Vallecano 4-2-3-1 2 -#> 319 2 1 Rayo Vallecano 4-2-3-1 2 -#> 320 2 1 Rayo Vallecano 4-2-3-1 2 -#> 321 2 1 Rayo Vallecano 4-2-3-1 2 -#> 322 2 1 Rayo Vallecano 4-2-3-1 2 -#> 323 2 1 Rayo Vallecano 4-2-3-1 2 -#> 324 2 1 Rayo Vallecano 4-2-3-1 2 -#> 325 2 1 Rayo Vallecano 4-2-3-1 2 -#> 326 2 1 Rayo Vallecano 4-2-3-1 2 -#> 327 2 1 Rayo Vallecano 4-2-3-1 2 -#> 328 2 1 Rayo Vallecano 4-2-3-1 2 -#> 329 2 1 Rayo Vallecano 4-2-3-1 2 -#> 330 2 1 Rayo Vallecano 4-2-3-1 2 -#> 331 2 1 Rayo Vallecano 4-2-3-1 2 -#> 332 2 1 Rayo Vallecano 4-2-3-1 2 -#> 333 2 1 Rayo Vallecano 4-2-3-1 2 -#> 334 2 1 Rayo Vallecano 4-2-3-1 2 -#> 335 2 1 Rayo Vallecano 4-2-3-1 2 -#> 336 2 1 Rayo Vallecano 4-2-3-1 2 -#> 337 2 1 Rayo Vallecano 4-2-3-1 2 -#> 338 2 1 Rayo Vallecano 4-2-3-1 2 -#> 339 2 1 Rayo Vallecano 4-2-3-1 2 -#> 340 2 1 Rayo Vallecano 4-2-3-1 2 -#> 341 2 1 Rayo Vallecano 4-2-3-1 2 -#> 342 2 1 Rayo Vallecano 4-2-3-1 2 -#> 343 2 1 Rayo Vallecano 4-2-3-1 2 -#> 344 2 1 Rayo Vallecano 4-2-3-1 2 -#> 345 2 1 Rayo Vallecano 4-2-3-1 2 -#> 346 3 1 Valladolid 4-3-3 1 -#> 347 3 1 Valladolid 4-3-3 1 -#> 348 3 1 Valladolid 4-3-3 1 -#> 349 3 1 Valladolid 4-3-3 1 -#> 350 3 1 Valladolid 4-3-3 1 -#> 351 3 1 Valladolid 4-3-3 1 -#> 352 3 1 Valladolid 4-3-3 1 -#> 353 3 1 Valladolid 4-3-3 1 -#> 354 3 1 Valladolid 4-3-3 1 -#> 355 3 1 Valladolid 4-3-3 1 -#> 356 3 1 Valladolid 4-3-3 1 -#> 357 3 1 Valladolid 4-3-3 1 -#> 358 3 1 Valladolid 4-3-3 1 -#> 359 3 1 Valladolid 4-3-3 1 -#> 360 3 1 Valladolid 4-3-3 1 -#> 361 3 1 Valladolid 4-3-3 1 -#> 362 3 1 Valladolid 4-3-3 1 -#> 363 3 1 Valladolid 4-3-3 1 -#> 364 3 1 Valladolid 4-3-3 1 -#> 365 3 1 Valladolid 4-3-3 1 -#> 366 3 1 Valladolid 4-3-3 1 -#> 367 3 1 Valladolid 4-3-3 1 -#> 368 3 1 Valladolid 4-3-3 1 -#> 369 3 1 Valladolid 4-3-3 1 -#> 370 3 1 Valladolid 4-3-3 1 -#> 371 3 1 Valladolid 4-3-3 1 -#> 372 3 1 Valladolid 4-3-3 1 -#> 373 3 1 Valladolid 4-3-3 1 -#> 374 3 1 Valladolid 4-3-3 1 -#> 375 3 1 Valladolid 4-3-3 1 -#> 376 3 1 Valladolid 4-3-3 1 -#> 377 3 1 Valladolid 4-3-3 1 -#> 378 2 0 Cádiz 4-4-2 0 -#> 379 2 0 Cádiz 4-4-2 0 -#> 380 2 0 Cádiz 4-4-2 0 -#> 381 2 0 Cádiz 4-4-2 0 -#> 382 2 0 Cádiz 4-4-2 0 -#> 383 2 0 Cádiz 4-4-2 0 -#> 384 2 0 Cádiz 4-4-2 0 -#> 385 2 0 Cádiz 4-4-2 0 -#> 386 2 0 Cádiz 4-4-2 0 -#> 387 2 0 Cádiz 4-4-2 0 -#> 388 2 0 Cádiz 4-4-2 0 -#> 389 2 0 Cádiz 4-4-2 0 -#> 390 2 0 Cádiz 4-4-2 0 -#> 391 2 0 Cádiz 4-4-2 0 -#> 392 2 0 Cádiz 4-4-2 0 -#> 393 2 0 Cádiz 4-4-2 0 -#> 394 2 0 Cádiz 4-4-2 0 -#> 395 2 0 Cádiz 4-4-2 0 -#> 396 2 0 Cádiz 4-4-2 0 -#> 397 2 0 Cádiz 4-4-2 0 -#> 398 2 0 Cádiz 4-4-2 0 -#> 399 2 0 Cádiz 4-4-2 0 -#> 400 2 0 Cádiz 4-4-2 0 -#> 401 2 0 Cádiz 4-4-2 0 -#> 402 2 0 Cádiz 4-4-2 0 -#> 403 2 0 Cádiz 4-4-2 0 -#> 404 2 0 Cádiz 4-4-2 0 -#> 405 2 0 Cádiz 4-4-2 0 -#> 406 2 0 Cádiz 4-4-2 0 -#> 407 2 0 Cádiz 4-4-2 0 -#> 408 2 0 Cádiz 4-4-2 0 -#> 409 2 0 Cádiz 4-4-2 0 -#> 410 7 0 Real Betis 4-2-3-1 2 -#> 411 7 0 Real Betis 4-2-3-1 2 -#> 412 7 0 Real Betis 4-2-3-1 2 -#> 413 7 0 Real Betis 4-2-3-1 2 -#> 414 7 0 Real Betis 4-2-3-1 2 -#> 415 7 0 Real Betis 4-2-3-1 2 -#> 416 7 0 Real Betis 4-2-3-1 2 -#> 417 7 0 Real Betis 4-2-3-1 2 -#> 418 7 0 Real Betis 4-2-3-1 2 -#> 419 7 0 Real Betis 4-2-3-1 2 -#> 420 7 0 Real Betis 4-2-3-1 2 -#> 421 7 0 Real Betis 4-2-3-1 2 -#> 422 7 0 Real Betis 4-2-3-1 2 -#> 423 7 0 Real Betis 4-2-3-1 2 -#> 424 7 0 Real Betis 4-2-3-1 2 -#> 425 7 0 Real Betis 4-2-3-1 2 -#> 426 7 0 Real Betis 4-2-3-1 2 -#> 427 7 0 Real Betis 4-2-3-1 2 -#> 428 7 0 Real Betis 4-2-3-1 2 -#> 429 7 0 Real Betis 4-2-3-1 2 -#> 430 7 0 Real Betis 4-2-3-1 2 -#> 431 7 0 Real Betis 4-2-3-1 2 -#> 432 7 0 Real Betis 4-2-3-1 2 -#> 433 7 0 Real Betis 4-2-3-1 2 -#> 434 7 0 Real Betis 4-2-3-1 2 -#> 435 7 0 Real Betis 4-2-3-1 2 -#> 436 7 0 Real Betis 4-2-3-1 2 -#> 437 7 0 Real Betis 4-2-3-1 2 -#> 438 7 0 Real Betis 4-2-3-1 2 -#> 439 2 0 Real Madrid 4-3-3 4 -#> 440 2 0 Real Madrid 4-3-3 4 -#> 441 2 0 Real Madrid 4-3-3 4 -#> 442 2 0 Real Madrid 4-3-3 4 -#> 443 2 0 Real Madrid 4-3-3 4 -#> 444 2 0 Real Madrid 4-3-3 4 -#> 445 2 0 Real Madrid 4-3-3 4 -#> 446 2 0 Real Madrid 4-3-3 4 -#> 447 2 0 Real Madrid 4-3-3 4 -#> 448 2 0 Real Madrid 4-3-3 4 -#> 449 2 0 Real Madrid 4-3-3 4 -#> 450 2 0 Real Madrid 4-3-3 4 -#> 451 2 0 Real Madrid 4-3-3 4 -#> 452 2 0 Real Madrid 4-3-3 4 -#> 453 2 0 Real Madrid 4-3-3 4 -#> 454 2 0 Real Madrid 4-3-3 4 -#> 455 2 0 Real Madrid 4-3-3 4 -#> 456 2 0 Real Madrid 4-3-3 4 -#> 457 2 0 Real Madrid 4-3-3 4 -#> 458 2 0 Real Madrid 4-3-3 4 -#> 459 2 0 Real Madrid 4-3-3 4 -#> 460 2 0 Real Madrid 4-3-3 4 -#> 461 2 0 Real Madrid 4-3-3 4 -#> 462 2 0 Real Madrid 4-3-3 4 -#> 463 2 0 Real Madrid 4-3-3 4 -#> 464 2 0 Real Madrid 4-3-3 4 -#> 465 2 0 Real Madrid 4-3-3 4 -#> 466 2 0 Real Madrid 4-3-3 4 -#> 467 2 0 Real Madrid 4-3-3 4 -#> 468 2 0 Real Madrid 4-3-3 4 -#> 469 5 0 Valencia 4-3-3 0 -#> 470 5 0 Valencia 4-3-3 0 -#> 471 5 0 Valencia 4-3-3 0 -#> 472 5 0 Valencia 4-3-3 0 -#> 473 5 0 Valencia 4-3-3 0 -#> 474 5 0 Valencia 4-3-3 0 -#> 475 5 0 Valencia 4-3-3 0 -#> 476 5 0 Valencia 4-3-3 0 -#> 477 5 0 Valencia 4-3-3 0 -#> 478 5 0 Valencia 4-3-3 0 -#> 479 5 0 Valencia 4-3-3 0 -#> 480 5 0 Valencia 4-3-3 0 -#> 481 5 0 Valencia 4-3-3 0 -#> 482 5 0 Valencia 4-3-3 0 -#> 483 5 0 Valencia 4-3-3 0 -#> 484 5 0 Valencia 4-3-3 0 -#> 485 5 0 Valencia 4-3-3 0 -#> 486 5 0 Valencia 4-3-3 0 -#> 487 5 0 Valencia 4-3-3 0 -#> 488 5 0 Valencia 4-3-3 0 -#> 489 5 0 Valencia 4-3-3 0 -#> 490 5 0 Valencia 4-3-3 0 -#> 491 5 0 Valencia 4-3-3 0 -#> 492 5 0 Valencia 4-3-3 0 -#> 493 5 0 Valencia 4-3-3 0 -#> 494 5 0 Valencia 4-3-3 0 -#> 495 5 0 Valencia 4-3-3 0 -#> 496 5 0 Valencia 4-3-3 0 -#> 497 5 0 Valencia 4-3-3 0 -#> 498 5 0 Valencia 4-3-3 0 -#> 499 5 0 Valencia 4-3-3 0 -#> 500 5 0 Valencia 4-3-3 0 -#> 501 2 1 Villarreal 4-4-2 2 -#> 502 2 1 Villarreal 4-4-2 2 -#> 503 2 1 Villarreal 4-4-2 2 -#> 504 2 1 Villarreal 4-4-2 2 -#> 505 2 1 Villarreal 4-4-2 2 -#> 506 2 1 Villarreal 4-4-2 2 -#> 507 2 1 Villarreal 4-4-2 2 -#> 508 2 1 Villarreal 4-4-2 2 -#> 509 2 1 Villarreal 4-4-2 2 -#> 510 2 1 Villarreal 4-4-2 2 -#> 511 2 1 Villarreal 4-4-2 2 -#> 512 2 1 Villarreal 4-4-2 2 -#> 513 2 1 Villarreal 4-4-2 2 -#> 514 2 1 Villarreal 4-4-2 2 -#> 515 2 1 Villarreal 4-4-2 2 -#> 516 2 1 Villarreal 4-4-2 2 -#> 517 2 1 Villarreal 4-4-2 2 -#> 518 2 1 Villarreal 4-4-2 2 -#> 519 2 1 Villarreal 4-4-2 2 -#> 520 2 1 Villarreal 4-4-2 2 -#> 521 2 1 Villarreal 4-4-2 2 -#> 522 2 1 Villarreal 4-4-2 2 -#> 523 2 1 Villarreal 4-4-2 2 -#> 524 2 1 Villarreal 4-4-2 2 -#> 525 2 1 Villarreal 4-4-2 2 -#> 526 2 1 Villarreal 4-4-2 2 -#> 527 2 1 Villarreal 4-4-2 2 -#> 528 2 1 Villarreal 4-4-2 2 -#> 529 2 1 Villarreal 4-4-2 2 -#> 530 2 1 Villarreal 4-4-2 2 -#> 531 2 1 Villarreal 4-4-2 2 -#> 532 2 0 Barcelona 3-2-4-1 4 -#> 533 2 0 Barcelona 3-2-4-1 4 -#> 534 2 0 Barcelona 3-2-4-1 4 -#> 535 2 0 Barcelona 3-2-4-1 4 -#> 536 2 0 Barcelona 3-2-4-1 4 -#> 537 2 0 Barcelona 3-2-4-1 4 -#> 538 2 0 Barcelona 3-2-4-1 4 -#> 539 2 0 Barcelona 3-2-4-1 4 -#> 540 2 0 Barcelona 3-2-4-1 4 -#> 541 2 0 Barcelona 3-2-4-1 4 -#> 542 2 0 Barcelona 3-2-4-1 4 -#> 543 2 0 Barcelona 3-2-4-1 4 -#> 544 2 0 Barcelona 3-2-4-1 4 -#> 545 2 0 Barcelona 3-2-4-1 4 -#> 546 2 0 Barcelona 3-2-4-1 4 -#> 547 2 0 Barcelona 3-2-4-1 4 -#> 548 2 0 Barcelona 3-2-4-1 4 -#> 549 2 0 Barcelona 3-2-4-1 4 -#> 550 2 0 Barcelona 3-2-4-1 4 -#> 551 2 0 Barcelona 3-2-4-1 4 -#> 552 2 0 Barcelona 3-2-4-1 4 -#> 553 2 0 Barcelona 3-2-4-1 4 -#> 554 2 0 Barcelona 3-2-4-1 4 -#> 555 2 0 Barcelona 3-2-4-1 4 -#> 556 2 0 Barcelona 3-2-4-1 4 -#> 557 2 0 Barcelona 3-2-4-1 4 -#> 558 2 0 Barcelona 3-2-4-1 4 -#> 559 2 0 Barcelona 3-2-4-1 4 -#> 560 2 0 Barcelona 3-2-4-1 4 -#> 561 2 0 Barcelona 3-2-4-1 4 -#> 562 2 0 Barcelona 3-2-4-1 4 -#> 563 2 0 Barcelona 3-2-4-1 4 -#> 564 2 0 Getafe 5-3-2 1 -#> 565 2 0 Getafe 5-3-2 1 -#> 566 2 0 Getafe 5-3-2 1 -#> 567 2 0 Getafe 5-3-2 1 -#> 568 2 0 Getafe 5-3-2 1 -#> 569 2 0 Getafe 5-3-2 1 -#> 570 2 0 Getafe 5-3-2 1 -#> 571 2 0 Getafe 5-3-2 1 -#> 572 2 0 Getafe 5-3-2 1 -#> 573 2 0 Getafe 5-3-2 1 -#> 574 2 0 Getafe 5-3-2 1 -#> 575 2 0 Getafe 5-3-2 1 -#> 576 2 0 Getafe 5-3-2 1 -#> 577 2 0 Getafe 5-3-2 1 -#> 578 2 0 Getafe 5-3-2 1 -#> 579 2 0 Getafe 5-3-2 1 -#> 580 2 0 Getafe 5-3-2 1 -#> 581 2 0 Getafe 5-3-2 1 -#> 582 2 0 Getafe 5-3-2 1 -#> 583 2 0 Getafe 5-3-2 1 -#> 584 2 0 Getafe 5-3-2 1 -#> 585 2 0 Getafe 5-3-2 1 -#> 586 2 0 Getafe 5-3-2 1 -#> 587 2 0 Getafe 5-3-2 1 -#> 588 2 0 Getafe 5-3-2 1 -#> 589 2 0 Getafe 5-3-2 1 -#> 590 2 0 Getafe 5-3-2 1 -#> 591 2 0 Getafe 5-3-2 1 -#> 592 2 0 Celta Vigo 4-1-3-2 1 -#> 593 2 0 Celta Vigo 4-1-3-2 1 -#> 594 2 0 Celta Vigo 4-1-3-2 1 -#> 595 2 0 Celta Vigo 4-1-3-2 1 -#> 596 2 0 Celta Vigo 4-1-3-2 1 -#> 597 2 0 Celta Vigo 4-1-3-2 1 -#> 598 2 0 Celta Vigo 4-1-3-2 1 -#> 599 2 0 Celta Vigo 4-1-3-2 1 -#> 600 2 0 Celta Vigo 4-1-3-2 1 -#> 601 2 0 Celta Vigo 4-1-3-2 1 -#> 602 2 0 Celta Vigo 4-1-3-2 1 -#> 603 2 0 Celta Vigo 4-1-3-2 1 -#> 604 2 0 Celta Vigo 4-1-3-2 1 -#> 605 2 0 Celta Vigo 4-1-3-2 1 -#> 606 2 0 Celta Vigo 4-1-3-2 1 -#> 607 2 0 Celta Vigo 4-1-3-2 1 -#> 608 2 0 Celta Vigo 4-1-3-2 1 -#> 609 2 0 Celta Vigo 4-1-3-2 1 -#> 610 2 0 Celta Vigo 4-1-3-2 1 -#> 611 2 0 Celta Vigo 4-1-3-2 1 -#> 612 2 0 Celta Vigo 4-1-3-2 1 -#> 613 2 0 Celta Vigo 4-1-3-2 1 -#> 614 2 0 Celta Vigo 4-1-3-2 1 -#> 615 2 0 Celta Vigo 4-1-3-2 1 -#> 616 2 0 Celta Vigo 4-1-3-2 1 -#> 617 2 0 Celta Vigo 4-1-3-2 1 -#> 618 2 0 Celta Vigo 4-1-3-2 1 -#> 619 2 0 Celta Vigo 4-1-3-2 1 -#> 620 2 0 Celta Vigo 4-1-3-2 1 -#> 621 2 0 Celta Vigo 4-1-3-2 1 -#> 622 2 0 Celta Vigo 4-1-3-2 1 -#> 623 0 1 Osasuna 4-4-1-1 0 -#> 624 0 1 Osasuna 4-4-1-1 0 -#> 625 0 1 Osasuna 4-4-1-1 0 -#> 626 0 1 Osasuna 4-4-1-1 0 -#> 627 0 1 Osasuna 4-4-1-1 0 -#> 628 0 1 Osasuna 4-4-1-1 0 -#> 629 0 1 Osasuna 4-4-1-1 0 -#> 630 0 1 Osasuna 4-4-1-1 0 -#> 631 0 1 Osasuna 4-4-1-1 0 -#> 632 0 1 Osasuna 4-4-1-1 0 -#> 633 0 1 Osasuna 4-4-1-1 0 -#> 634 0 1 Osasuna 4-4-1-1 0 -#> 635 0 1 Osasuna 4-4-1-1 0 -#> 636 0 1 Osasuna 4-4-1-1 0 -#> 637 0 1 Osasuna 4-4-1-1 0 -#> 638 0 1 Osasuna 4-4-1-1 0 -#> 639 0 1 Osasuna 4-4-1-1 0 -#> 640 0 1 Osasuna 4-4-1-1 0 -#> 641 0 1 Osasuna 4-4-1-1 0 -#> 642 0 1 Osasuna 4-4-1-1 0 -#> 643 0 1 Osasuna 4-4-1-1 0 -#> 644 0 1 Osasuna 4-4-1-1 0 -#> 645 0 1 Osasuna 4-4-1-1 0 -#> 646 0 1 Osasuna 4-4-1-1 0 -#> 647 0 1 Osasuna 4-4-1-1 0 -#> 648 0 1 Osasuna 4-4-1-1 0 -#> 649 0 1 Osasuna 4-4-1-1 0 -#> 650 0 1 Osasuna 4-4-1-1 0 -#> 651 0 1 Osasuna 4-4-1-1 0 -#> 652 0 1 Osasuna 4-4-1-1 0 -#> 653 0 1 Osasuna 4-4-1-1 0 -#> 654 3 0 Real Sociedad 4-1-2-1-2 1 -#> 655 3 0 Real Sociedad 4-1-2-1-2 1 -#> 656 3 0 Real Sociedad 4-1-2-1-2 1 -#> 657 3 0 Real Sociedad 4-1-2-1-2 1 -#> 658 3 0 Real Sociedad 4-1-2-1-2 1 -#> 659 3 0 Real Sociedad 4-1-2-1-2 1 -#> 660 3 0 Real Sociedad 4-1-2-1-2 1 -#> 661 3 0 Real Sociedad 4-1-2-1-2 1 -#> 662 3 0 Real Sociedad 4-1-2-1-2 1 -#> 663 3 0 Real Sociedad 4-1-2-1-2 1 -#> 664 3 0 Real Sociedad 4-1-2-1-2 1 -#> 665 3 0 Real Sociedad 4-1-2-1-2 1 -#> 666 3 0 Real Sociedad 4-1-2-1-2 1 -#> 667 3 0 Real Sociedad 4-1-2-1-2 1 -#> 668 3 0 Real Sociedad 4-1-2-1-2 1 -#> 669 3 0 Real Sociedad 4-1-2-1-2 1 -#> 670 3 0 Real Sociedad 4-1-2-1-2 1 -#> 671 3 0 Real Sociedad 4-1-2-1-2 1 -#> 672 3 0 Real Sociedad 4-1-2-1-2 1 -#> 673 3 0 Real Sociedad 4-1-2-1-2 1 -#> 674 3 0 Real Sociedad 4-1-2-1-2 1 -#> 675 3 0 Real Sociedad 4-1-2-1-2 1 -#> 676 3 0 Real Sociedad 4-1-2-1-2 1 -#> 677 3 0 Real Sociedad 4-1-2-1-2 1 -#> 678 3 0 Real Sociedad 4-1-2-1-2 1 -#> 679 3 0 Real Sociedad 4-1-2-1-2 1 -#> 680 3 0 Real Sociedad 4-1-2-1-2 1 -#> 681 3 0 Real Sociedad 4-1-2-1-2 1 -#> 682 3 0 Real Sociedad 4-1-2-1-2 1 -#> 683 3 0 Real Sociedad 4-1-2-1-2 1 -#> 684 3 0 Real Sociedad 4-1-2-1-2 1 -#> 685 3 0 Real Sociedad 4-1-2-1-2 1 -#> 686 1 0 Mallorca 5-3-2 2 -#> 687 1 0 Mallorca 5-3-2 2 -#> 688 1 0 Mallorca 5-3-2 2 -#> 689 1 0 Mallorca 5-3-2 2 -#> 690 1 0 Mallorca 5-3-2 2 -#> 691 1 0 Mallorca 5-3-2 2 -#> 692 1 0 Mallorca 5-3-2 2 -#> 693 1 0 Mallorca 5-3-2 2 -#> 694 1 0 Mallorca 5-3-2 2 -#> 695 1 0 Mallorca 5-3-2 2 -#> 696 1 0 Mallorca 5-3-2 2 -#> 697 1 0 Mallorca 5-3-2 2 -#> 698 1 0 Mallorca 5-3-2 2 -#> 699 1 0 Mallorca 5-3-2 2 -#> 700 1 0 Mallorca 5-3-2 2 -#> 701 1 0 Mallorca 5-3-2 2 -#> 702 1 0 Mallorca 5-3-2 2 -#> 703 1 0 Mallorca 5-3-2 2 -#> 704 1 0 Mallorca 5-3-2 2 -#> 705 1 0 Mallorca 5-3-2 2 -#> 706 1 0 Mallorca 5-3-2 2 -#> 707 1 0 Mallorca 5-3-2 2 -#> 708 1 0 Mallorca 5-3-2 2 -#> 709 1 0 Mallorca 5-3-2 2 -#> 710 1 0 Mallorca 5-3-2 2 -#> 711 1 0 Mallorca 5-3-2 2 -#> 712 1 0 Mallorca 5-3-2 2 -#> 713 1 0 Mallorca 5-3-2 2 -#> 714 1 0 Mallorca 5-3-2 2 -#> 715 1 0 Mallorca 5-3-2 2 -#> 716 1 0 Mallorca 5-3-2 2 -#> 717 5 0 Sevilla 4-2-2-2 1 -#> 718 5 0 Sevilla 4-2-2-2 1 -#> 719 5 0 Sevilla 4-2-2-2 1 -#> 720 5 0 Sevilla 4-2-2-2 1 -#> 721 5 0 Sevilla 4-2-2-2 1 -#> 722 5 0 Sevilla 4-2-2-2 1 -#> 723 5 0 Sevilla 4-2-2-2 1 -#> 724 5 0 Sevilla 4-2-2-2 1 -#> 725 5 0 Sevilla 4-2-2-2 1 -#> 726 5 0 Sevilla 4-2-2-2 1 -#> 727 5 0 Sevilla 4-2-2-2 1 -#> 728 5 0 Sevilla 4-2-2-2 1 -#> 729 5 0 Sevilla 4-2-2-2 1 -#> 730 5 0 Sevilla 4-2-2-2 1 -#> 731 5 0 Sevilla 4-2-2-2 1 -#> 732 5 0 Sevilla 4-2-2-2 1 -#> 733 5 0 Sevilla 4-2-2-2 1 -#> 734 5 0 Sevilla 4-2-2-2 1 -#> 735 5 0 Sevilla 4-2-2-2 1 -#> 736 5 0 Sevilla 4-2-2-2 1 -#> 737 5 0 Sevilla 4-2-2-2 1 -#> 738 5 0 Sevilla 4-2-2-2 1 -#> 739 5 0 Sevilla 4-2-2-2 1 -#> 740 5 0 Sevilla 4-2-2-2 1 -#> 741 5 0 Sevilla 4-2-2-2 1 -#> 742 5 0 Sevilla 4-2-2-2 1 -#> 743 5 0 Sevilla 4-2-2-2 1 -#> 744 5 0 Sevilla 4-2-2-2 1 -#> 745 5 0 Sevilla 4-2-2-2 1 -#> 746 5 0 Sevilla 4-2-2-2 1 -#> 747 5 0 Sevilla 4-2-2-2 1 -#> 748 5 0 Sevilla 4-2-2-2 1 -#> 749 1 0 Villarreal 4-4-2 0 -#> 750 1 0 Villarreal 4-4-2 0 -#> 751 1 0 Villarreal 4-4-2 0 -#> 752 1 0 Villarreal 4-4-2 0 -#> 753 1 0 Villarreal 4-4-2 0 -#> 754 1 0 Villarreal 4-4-2 0 -#> 755 1 0 Villarreal 4-4-2 0 -#> 756 1 0 Villarreal 4-4-2 0 -#> 757 1 0 Villarreal 4-4-2 0 -#> 758 1 0 Villarreal 4-4-2 0 -#> 759 1 0 Villarreal 4-4-2 0 -#> 760 1 0 Villarreal 4-4-2 0 -#> 761 1 0 Villarreal 4-4-2 0 -#> 762 1 0 Villarreal 4-4-2 0 -#> 763 1 0 Villarreal 4-4-2 0 -#> 764 1 0 Villarreal 4-4-2 0 -#> 765 1 0 Villarreal 4-4-2 0 -#> 766 1 0 Villarreal 4-4-2 0 -#> 767 1 0 Villarreal 4-4-2 0 -#> 768 1 0 Villarreal 4-4-2 0 -#> 769 1 0 Villarreal 4-4-2 0 -#> 770 1 0 Villarreal 4-4-2 0 -#> 771 1 0 Villarreal 4-4-2 0 -#> 772 1 0 Villarreal 4-4-2 0 -#> 773 1 0 Villarreal 4-4-2 0 -#> 774 1 0 Villarreal 4-4-2 0 -#> 775 1 0 Villarreal 4-4-2 0 -#> 776 1 0 Villarreal 4-4-2 0 -#> 777 1 0 Villarreal 4-4-2 0 -#> 778 1 0 Villarreal 4-4-2 0 -#> 779 0 0 Valladolid 4-1-4-1 0 -#> 780 0 0 Valladolid 4-1-4-1 0 -#> 781 0 0 Valladolid 4-1-4-1 0 -#> 782 0 0 Valladolid 4-1-4-1 0 -#> 783 0 0 Valladolid 4-1-4-1 0 -#> 784 0 0 Valladolid 4-1-4-1 0 -#> 785 0 0 Valladolid 4-1-4-1 0 -#> 786 0 0 Valladolid 4-1-4-1 0 -#> 787 0 0 Valladolid 4-1-4-1 0 -#> 788 0 0 Valladolid 4-1-4-1 0 -#> 789 0 0 Valladolid 4-1-4-1 0 -#> 790 0 0 Valladolid 4-1-4-1 0 -#> 791 0 0 Valladolid 4-1-4-1 0 -#> 792 0 0 Valladolid 4-1-4-1 0 -#> 793 0 0 Valladolid 4-1-4-1 0 -#> 794 0 0 Valladolid 4-1-4-1 0 -#> 795 0 0 Valladolid 4-1-4-1 0 -#> 796 0 0 Valladolid 4-1-4-1 0 -#> 797 0 0 Valladolid 4-1-4-1 0 -#> 798 0 0 Valladolid 4-1-4-1 0 -#> 799 0 0 Valladolid 4-1-4-1 0 -#> 800 0 0 Valladolid 4-1-4-1 0 -#> 801 0 0 Valladolid 4-1-4-1 0 -#> 802 0 0 Valladolid 4-1-4-1 0 -#> 803 0 0 Valladolid 4-1-4-1 0 -#> 804 0 0 Valladolid 4-1-4-1 0 -#> 805 0 0 Valladolid 4-1-4-1 0 -#> 806 0 0 Valladolid 4-1-4-1 0 -#> 807 0 0 Valladolid 4-1-4-1 0 -#> 808 0 0 Valladolid 4-1-4-1 0 -#> 809 0 0 Valladolid 4-1-4-1 0 -#> 810 0 0 Valladolid 4-1-4-1 0 -#> 811 0 1 Real Madrid 4-3-3 3 -#> 812 0 1 Real Madrid 4-3-3 3 -#> 813 0 1 Real Madrid 4-3-3 3 -#> 814 0 1 Real Madrid 4-3-3 3 -#> 815 0 1 Real Madrid 4-3-3 3 -#> 816 0 1 Real Madrid 4-3-3 3 -#> 817 0 1 Real Madrid 4-3-3 3 -#> 818 0 1 Real Madrid 4-3-3 3 -#> 819 0 1 Real Madrid 4-3-3 3 -#> 820 0 1 Real Madrid 4-3-3 3 -#> 821 0 1 Real Madrid 4-3-3 3 -#> 822 0 1 Real Madrid 4-3-3 3 -#> 823 0 1 Real Madrid 4-3-3 3 -#> 824 0 1 Real Madrid 4-3-3 3 -#> 825 0 1 Real Madrid 4-3-3 3 -#> 826 0 1 Real Madrid 4-3-3 3 -#> 827 0 1 Real Madrid 4-3-3 3 -#> 828 0 1 Real Madrid 4-3-3 3 -#> 829 0 1 Real Madrid 4-3-3 3 -#> 830 0 1 Real Madrid 4-3-3 3 -#> 831 0 1 Real Madrid 4-3-3 3 -#> 832 0 1 Real Madrid 4-3-3 3 -#> 833 0 1 Real Madrid 4-3-3 3 -#> 834 0 1 Real Madrid 4-3-3 3 -#> 835 0 1 Real Madrid 4-3-3 3 -#> 836 0 1 Real Madrid 4-3-3 3 -#> 837 0 1 Real Madrid 4-3-3 3 -#> 838 0 1 Real Madrid 4-3-3 3 -#> 839 0 1 Real Madrid 4-3-3 3 -#> 840 2 0 Athletic Club 4-2-3-1 4 -#> 841 2 0 Athletic Club 4-2-3-1 4 -#> 842 2 0 Athletic Club 4-2-3-1 4 -#> 843 2 0 Athletic Club 4-2-3-1 4 -#> 844 2 0 Athletic Club 4-2-3-1 4 -#> 845 2 0 Athletic Club 4-2-3-1 4 -#> 846 2 0 Athletic Club 4-2-3-1 4 -#> 847 2 0 Athletic Club 4-2-3-1 4 -#> 848 2 0 Athletic Club 4-2-3-1 4 -#> 849 2 0 Athletic Club 4-2-3-1 4 -#> 850 2 0 Athletic Club 4-2-3-1 4 -#> 851 2 0 Athletic Club 4-2-3-1 4 -#> 852 2 0 Athletic Club 4-2-3-1 4 -#> 853 2 0 Athletic Club 4-2-3-1 4 -#> 854 2 0 Athletic Club 4-2-3-1 4 -#> 855 2 0 Athletic Club 4-2-3-1 4 -#> 856 2 0 Athletic Club 4-2-3-1 4 -#> 857 2 0 Athletic Club 4-2-3-1 4 -#> 858 2 0 Athletic Club 4-2-3-1 4 -#> 859 2 0 Athletic Club 4-2-3-1 4 -#> 860 2 0 Athletic Club 4-2-3-1 4 -#> 861 2 0 Athletic Club 4-2-3-1 4 -#> 862 2 0 Athletic Club 4-2-3-1 4 -#> 863 2 0 Athletic Club 4-2-3-1 4 -#> 864 2 0 Athletic Club 4-2-3-1 4 -#> 865 2 0 Athletic Club 4-2-3-1 4 -#> 866 2 0 Athletic Club 4-2-3-1 4 -#> 867 2 0 Athletic Club 4-2-3-1 4 -#> 868 2 0 Athletic Club 4-2-3-1 4 -#> 869 2 0 Athletic Club 4-2-3-1 4 -#> 870 2 0 Athletic Club 4-2-3-1 4 -#> 871 2 0 Athletic Club 4-2-3-1 4 -#> 872 4 0 Atlético Madrid 5-3-2 1 -#> 873 4 0 Atlético Madrid 5-3-2 1 -#> 874 4 0 Atlético Madrid 5-3-2 1 -#> 875 4 0 Atlético Madrid 5-3-2 1 -#> 876 4 0 Atlético Madrid 5-3-2 1 -#> 877 4 0 Atlético Madrid 5-3-2 1 -#> 878 4 0 Atlético Madrid 5-3-2 1 -#> 879 4 0 Atlético Madrid 5-3-2 1 -#> 880 4 0 Atlético Madrid 5-3-2 1 -#> 881 4 0 Atlético Madrid 5-3-2 1 -#> 882 4 0 Atlético Madrid 5-3-2 1 -#> 883 4 0 Atlético Madrid 5-3-2 1 -#> 884 4 0 Atlético Madrid 5-3-2 1 -#> 885 4 0 Atlético Madrid 5-3-2 1 -#> 886 4 0 Atlético Madrid 5-3-2 1 -#> 887 4 0 Atlético Madrid 5-3-2 1 -#> 888 4 0 Atlético Madrid 5-3-2 1 -#> 889 4 0 Atlético Madrid 5-3-2 1 -#> 890 4 0 Atlético Madrid 5-3-2 1 -#> 891 4 0 Atlético Madrid 5-3-2 1 -#> 892 4 0 Atlético Madrid 5-3-2 1 -#> 893 4 0 Atlético Madrid 5-3-2 1 -#> 894 4 0 Atlético Madrid 5-3-2 1 -#> 895 4 0 Atlético Madrid 5-3-2 1 -#> 896 4 0 Atlético Madrid 5-3-2 1 -#> 897 4 0 Atlético Madrid 5-3-2 1 -#> 898 4 0 Atlético Madrid 5-3-2 1 -#> 899 4 0 Atlético Madrid 5-3-2 1 -#> 900 4 0 Atlético Madrid 5-3-2 1 -#> 901 4 0 Atlético Madrid 5-3-2 1 -#> 902 4 0 Atlético Madrid 5-3-2 1 -#> 903 4 0 Atlético Madrid 5-3-2 1 -#> 904 1 0 Cádiz 4-1-4-1 0 -#> 905 1 0 Cádiz 4-1-4-1 0 -#> 906 1 0 Cádiz 4-1-4-1 0 -#> 907 1 0 Cádiz 4-1-4-1 0 -#> 908 1 0 Cádiz 4-1-4-1 0 -#> 909 1 0 Cádiz 4-1-4-1 0 -#> 910 1 0 Cádiz 4-1-4-1 0 -#> 911 1 0 Cádiz 4-1-4-1 0 -#> 912 1 0 Cádiz 4-1-4-1 0 -#> 913 1 0 Cádiz 4-1-4-1 0 -#> 914 1 0 Cádiz 4-1-4-1 0 -#> 915 1 0 Cádiz 4-1-4-1 0 -#> 916 1 0 Cádiz 4-1-4-1 0 -#> 917 1 0 Cádiz 4-1-4-1 0 -#> 918 1 0 Cádiz 4-1-4-1 0 -#> 919 1 0 Cádiz 4-1-4-1 0 -#> 920 1 0 Cádiz 4-1-4-1 0 -#> 921 1 0 Cádiz 4-1-4-1 0 -#> 922 1 0 Cádiz 4-1-4-1 0 -#> 923 1 0 Cádiz 4-1-4-1 0 -#> 924 1 0 Cádiz 4-1-4-1 0 -#> 925 1 0 Cádiz 4-1-4-1 0 -#> 926 1 0 Cádiz 4-1-4-1 0 -#> 927 1 0 Cádiz 4-1-4-1 0 -#> 928 1 0 Cádiz 4-1-4-1 0 -#> 929 1 0 Cádiz 4-1-4-1 0 -#> 930 1 0 Cádiz 4-1-4-1 0 -#> 931 1 0 Cádiz 4-1-4-1 0 -#> 932 1 0 Cádiz 4-1-4-1 0 -#> 933 1 0 Cádiz 4-1-4-1 0 -#> 934 1 0 Cádiz 4-1-4-1 0 -#> 935 1 0 Cádiz 4-1-4-1 0 -#> 936 4 0 Girona 3-4-3 1 -#> 937 4 0 Girona 3-4-3 1 -#> 938 4 0 Girona 3-4-3 1 -#> 939 4 0 Girona 3-4-3 1 -#> 940 4 0 Girona 3-4-3 1 -#> 941 4 0 Girona 3-4-3 1 -#> 942 4 0 Girona 3-4-3 1 -#> 943 4 0 Girona 3-4-3 1 -#> 944 4 0 Girona 3-4-3 1 -#> 945 4 0 Girona 3-4-3 1 -#> 946 4 0 Girona 3-4-3 1 -#> 947 4 0 Girona 3-4-3 1 -#> 948 4 0 Girona 3-4-3 1 -#> 949 4 0 Girona 3-4-3 1 -#> 950 4 0 Girona 3-4-3 1 -#> 951 4 0 Girona 3-4-3 1 -#> 952 4 0 Girona 3-4-3 1 -#> 953 4 0 Girona 3-4-3 1 -#> 954 4 0 Girona 3-4-3 1 -#> 955 4 0 Girona 3-4-3 1 -#> 956 4 0 Girona 3-4-3 1 -#> 957 4 0 Girona 3-4-3 1 -#> 958 4 0 Girona 3-4-3 1 -#> 959 4 0 Girona 3-4-3 1 -#> 960 4 0 Girona 3-4-3 1 -#> 961 4 0 Girona 3-4-3 1 -#> 962 4 0 Girona 3-4-3 1 -#> 963 4 0 Girona 3-4-3 1 -#> 964 4 0 Girona 3-4-3 1 -#> 965 4 0 Girona 3-4-3 1 -#> 966 0 0 Real Betis 4-2-3-1 1 -#> 967 0 0 Real Betis 4-2-3-1 1 -#> 968 0 0 Real Betis 4-2-3-1 1 -#> 969 0 0 Real Betis 4-2-3-1 1 -#> 970 0 0 Real Betis 4-2-3-1 1 -#> 971 0 0 Real Betis 4-2-3-1 1 -#> 972 0 0 Real Betis 4-2-3-1 1 -#> 973 0 0 Real Betis 4-2-3-1 1 -#> 974 0 0 Real Betis 4-2-3-1 1 -#> 975 0 0 Real Betis 4-2-3-1 1 -#> 976 0 0 Real Betis 4-2-3-1 1 -#> 977 0 0 Real Betis 4-2-3-1 1 -#> 978 0 0 Real Betis 4-2-3-1 1 -#> 979 0 0 Real Betis 4-2-3-1 1 -#> 980 0 0 Real Betis 4-2-3-1 1 -#> 981 0 0 Real Betis 4-2-3-1 1 -#> 982 0 0 Real Betis 4-2-3-1 1 -#> 983 0 0 Real Betis 4-2-3-1 1 -#> 984 0 0 Real Betis 4-2-3-1 1 -#> 985 0 0 Real Betis 4-2-3-1 1 -#> 986 0 0 Real Betis 4-2-3-1 1 -#> 987 0 0 Real Betis 4-2-3-1 1 -#> 988 0 0 Real Betis 4-2-3-1 1 -#> 989 0 0 Real Betis 4-2-3-1 1 -#> 990 0 0 Real Betis 4-2-3-1 1 -#> 991 0 0 Real Betis 4-2-3-1 1 -#> 992 0 0 Real Betis 4-2-3-1 1 -#> 993 0 0 Real Betis 4-2-3-1 1 -#> 994 0 0 Real Betis 4-2-3-1 1 -#> 995 0 0 Real Betis 4-2-3-1 1 -#> 996 5 0 Atlético Madrid 3-1-4-2 1 -#> 997 5 0 Atlético Madrid 3-1-4-2 1 -#> 998 5 0 Atlético Madrid 3-1-4-2 1 -#> 999 5 0 Atlético Madrid 3-1-4-2 1 -#> 1000 5 0 Atlético Madrid 3-1-4-2 1 -#> 1001 5 0 Atlético Madrid 3-1-4-2 1 -#> 1002 5 0 Atlético Madrid 3-1-4-2 1 -#> 1003 5 0 Atlético Madrid 3-1-4-2 1 -#> 1004 5 0 Atlético Madrid 3-1-4-2 1 -#> 1005 5 0 Atlético Madrid 3-1-4-2 1 -#> 1006 5 0 Atlético Madrid 3-1-4-2 1 -#> 1007 5 0 Atlético Madrid 3-1-4-2 1 -#> 1008 5 0 Atlético Madrid 3-1-4-2 1 -#> 1009 5 0 Atlético Madrid 3-1-4-2 1 -#> 1010 5 0 Atlético Madrid 3-1-4-2 1 -#> 1011 5 0 Atlético Madrid 3-1-4-2 1 -#> 1012 5 0 Atlético Madrid 3-1-4-2 1 -#> 1013 5 0 Atlético Madrid 3-1-4-2 1 -#> 1014 5 0 Atlético Madrid 3-1-4-2 1 -#> 1015 5 0 Atlético Madrid 3-1-4-2 1 -#> 1016 5 0 Atlético Madrid 3-1-4-2 1 -#> 1017 5 0 Atlético Madrid 3-1-4-2 1 -#> 1018 5 0 Atlético Madrid 3-1-4-2 1 -#> 1019 5 0 Atlético Madrid 3-1-4-2 1 -#> 1020 5 0 Atlético Madrid 3-1-4-2 1 -#> 1021 5 0 Atlético Madrid 3-1-4-2 1 -#> 1022 5 0 Atlético Madrid 3-1-4-2 1 -#> 1023 5 0 Atlético Madrid 3-1-4-2 1 -#> 1024 5 0 Atlético Madrid 3-1-4-2 1 -#> 1025 5 0 Atlético Madrid 3-1-4-2 1 -#> 1026 5 0 Atlético Madrid 3-1-4-2 1 -#> 1027 5 0 Atlético Madrid 3-1-4-2 1 -#> 1028 2 0 Barcelona 4-3-3 3 -#> 1029 2 0 Barcelona 4-3-3 3 -#> 1030 2 0 Barcelona 4-3-3 3 -#> 1031 2 0 Barcelona 4-3-3 3 -#> 1032 2 0 Barcelona 4-3-3 3 -#> 1033 2 0 Barcelona 4-3-3 3 -#> 1034 2 0 Barcelona 4-3-3 3 -#> 1035 2 0 Barcelona 4-3-3 3 -#> 1036 2 0 Barcelona 4-3-3 3 -#> 1037 2 0 Barcelona 4-3-3 3 -#> 1038 2 0 Barcelona 4-3-3 3 -#> 1039 2 0 Barcelona 4-3-3 3 -#> 1040 2 0 Barcelona 4-3-3 3 -#> 1041 2 0 Barcelona 4-3-3 3 -#> 1042 2 0 Barcelona 4-3-3 3 -#> 1043 2 0 Barcelona 4-3-3 3 -#> 1044 2 0 Barcelona 4-3-3 3 -#> 1045 2 0 Barcelona 4-3-3 3 -#> 1046 2 0 Barcelona 4-3-3 3 -#> 1047 2 0 Barcelona 4-3-3 3 -#> 1048 2 0 Barcelona 4-3-3 3 -#> 1049 2 0 Barcelona 4-3-3 3 -#> 1050 2 0 Barcelona 4-3-3 3 -#> 1051 2 0 Barcelona 4-3-3 3 -#> 1052 2 0 Barcelona 4-3-3 3 -#> 1053 2 0 Barcelona 4-3-3 3 -#> 1054 2 0 Barcelona 4-3-3 3 -#> 1055 2 0 Barcelona 4-3-3 3 -#> 1056 2 0 Barcelona 4-3-3 3 -#> 1057 2 0 Barcelona 4-3-3 3 -#> 1058 2 0 Barcelona 4-3-3 3 -#> 1059 2 0 Barcelona 4-3-3 3 -#> 1060 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1061 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1062 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1063 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1064 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1065 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1066 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1067 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1068 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1069 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1070 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1071 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1072 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1073 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1074 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1075 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1076 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1077 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1078 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1079 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1080 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1081 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1082 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1083 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1084 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1085 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1086 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1087 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1088 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1089 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1090 2 0 Rayo Vallecano 4-2-3-1 1 -#> 1091 3 0 Espanyol 4-3-3 1 -#> 1092 3 0 Espanyol 4-3-3 1 -#> 1093 3 0 Espanyol 4-3-3 1 -#> 1094 3 0 Espanyol 4-3-3 1 -#> 1095 3 0 Espanyol 4-3-3 1 -#> 1096 3 0 Espanyol 4-3-3 1 -#> 1097 3 0 Espanyol 4-3-3 1 -#> 1098 3 0 Espanyol 4-3-3 1 -#> 1099 3 0 Espanyol 4-3-3 1 -#> 1100 3 0 Espanyol 4-3-3 1 -#> 1101 3 0 Espanyol 4-3-3 1 -#> 1102 3 0 Espanyol 4-3-3 1 -#> 1103 3 0 Espanyol 4-3-3 1 -#> 1104 3 0 Espanyol 4-3-3 1 -#> 1105 3 0 Espanyol 4-3-3 1 -#> 1106 3 0 Espanyol 4-3-3 1 -#> 1107 3 0 Espanyol 4-3-3 1 -#> 1108 3 0 Espanyol 4-3-3 1 -#> 1109 3 0 Espanyol 4-3-3 1 -#> 1110 3 0 Espanyol 4-3-3 1 -#> 1111 3 0 Espanyol 4-3-3 1 -#> 1112 3 0 Espanyol 4-3-3 1 -#> 1113 3 0 Espanyol 4-3-3 1 -#> 1114 3 0 Espanyol 4-3-3 1 -#> 1115 3 0 Espanyol 4-3-3 1 -#> 1116 3 0 Espanyol 4-3-3 1 -#> 1117 3 0 Espanyol 4-3-3 1 -#> 1118 3 0 Espanyol 4-3-3 1 -#> 1119 3 0 Espanyol 4-3-3 1 -#> 1120 3 0 Espanyol 4-3-3 1 -#> 1121 3 0 Espanyol 4-3-3 1 -#> 1122 1 0 Elche 4-4-2 0 -#> 1123 1 0 Elche 4-4-2 0 -#> 1124 1 0 Elche 4-4-2 0 -#> 1125 1 0 Elche 4-4-2 0 -#> 1126 1 0 Elche 4-4-2 0 -#> 1127 1 0 Elche 4-4-2 0 -#> 1128 1 0 Elche 4-4-2 0 -#> 1129 1 0 Elche 4-4-2 0 -#> 1130 1 0 Elche 4-4-2 0 -#> 1131 1 0 Elche 4-4-2 0 -#> 1132 1 0 Elche 4-4-2 0 -#> 1133 1 0 Elche 4-4-2 0 -#> 1134 1 0 Elche 4-4-2 0 -#> 1135 1 0 Elche 4-4-2 0 -#> 1136 1 0 Elche 4-4-2 0 -#> 1137 1 0 Elche 4-4-2 0 -#> 1138 1 0 Elche 4-4-2 0 -#> 1139 1 0 Elche 4-4-2 0 -#> 1140 1 0 Elche 4-4-2 0 -#> 1141 1 0 Elche 4-4-2 0 -#> 1142 1 0 Elche 4-4-2 0 -#> 1143 1 0 Elche 4-4-2 0 -#> 1144 1 0 Elche 4-4-2 0 -#> 1145 1 0 Elche 4-4-2 0 -#> 1146 1 0 Elche 4-4-2 0 -#> 1147 1 0 Elche 4-4-2 0 -#> 1148 1 0 Elche 4-4-2 0 -#> 1149 1 0 Elche 4-4-2 0 -#> 1150 1 0 Elche 4-4-2 0 -#> 1151 1 0 Elche 4-4-2 0 -#> 1152 1 0 Elche 4-4-2 0 -#> 1153 1 0 Elche 4-4-2 0 -#> 1154 4 1 Getafe 4-4-2 1 -#> 1155 4 1 Getafe 4-4-2 1 -#> 1156 4 1 Getafe 4-4-2 1 -#> 1157 4 1 Getafe 4-4-2 1 -#> 1158 4 1 Getafe 4-4-2 1 -#> 1159 4 1 Getafe 4-4-2 1 -#> 1160 4 1 Getafe 4-4-2 1 -#> 1161 4 1 Getafe 4-4-2 1 -#> 1162 4 1 Getafe 4-4-2 1 -#> 1163 4 1 Getafe 4-4-2 1 -#> 1164 4 1 Getafe 4-4-2 1 -#> 1165 4 1 Getafe 4-4-2 1 -#> 1166 4 1 Getafe 4-4-2 1 -#> 1167 4 1 Getafe 4-4-2 1 -#> 1168 4 1 Getafe 4-4-2 1 -#> 1169 4 1 Getafe 4-4-2 1 -#> 1170 4 1 Getafe 4-4-2 1 -#> 1171 4 1 Getafe 4-4-2 1 -#> 1172 4 1 Getafe 4-4-2 1 -#> 1173 4 1 Getafe 4-4-2 1 -#> 1174 4 1 Getafe 4-4-2 1 -#> 1175 4 1 Getafe 4-4-2 1 -#> 1176 4 1 Getafe 4-4-2 1 -#> 1177 4 1 Getafe 4-4-2 1 -#> 1178 4 1 Getafe 4-4-2 1 -#> 1179 4 1 Getafe 4-4-2 1 -#> 1180 4 1 Getafe 4-4-2 1 -#> 1181 4 1 Getafe 4-4-2 1 -#> 1182 4 1 Getafe 4-4-2 1 -#> 1183 4 1 Getafe 4-4-2 1 -#> 1184 4 1 Getafe 4-4-2 1 -#> 1185 4 1 Getafe 4-4-2 1 -#> 1186 1 0 Almería 4-2-3-1 0 -#> 1187 1 0 Almería 4-2-3-1 0 -#> 1188 1 0 Almería 4-2-3-1 0 -#> 1189 1 0 Almería 4-2-3-1 0 -#> 1190 1 0 Almería 4-2-3-1 0 -#> 1191 1 0 Almería 4-2-3-1 0 -#> 1192 1 0 Almería 4-2-3-1 0 -#> 1193 1 0 Almería 4-2-3-1 0 -#> 1194 1 0 Almería 4-2-3-1 0 -#> 1195 1 0 Almería 4-2-3-1 0 -#> 1196 1 0 Almería 4-2-3-1 0 -#> 1197 1 0 Almería 4-2-3-1 0 -#> 1198 1 0 Almería 4-2-3-1 0 -#> 1199 1 0 Almería 4-2-3-1 0 -#> 1200 1 0 Almería 4-2-3-1 0 -#> 1201 1 0 Almería 4-2-3-1 0 -#> 1202 1 0 Almería 4-2-3-1 0 -#> 1203 1 0 Almería 4-2-3-1 0 -#> 1204 1 0 Almería 4-2-3-1 0 -#> 1205 1 0 Almería 4-2-3-1 0 -#> 1206 1 0 Almería 4-2-3-1 0 -#> 1207 1 0 Almería 4-2-3-1 0 -#> 1208 1 0 Almería 4-2-3-1 0 -#> 1209 1 0 Almería 4-2-3-1 0 -#> 1210 1 0 Almería 4-2-3-1 0 -#> 1211 1 0 Almería 4-2-3-1 0 -#> 1212 1 0 Almería 4-2-3-1 0 -#> 1213 1 0 Almería 4-2-3-1 0 -#> 1214 1 0 Almería 4-2-3-1 0 -#> 1215 1 0 Almería 4-2-3-1 0 -#> 1216 1 0 Almería 4-2-3-1 0 -#> 1217 0 0 Valladolid 4-1-4-1 1 -#> 1218 0 0 Valladolid 4-1-4-1 1 -#> 1219 0 0 Valladolid 4-1-4-1 1 -#> 1220 0 0 Valladolid 4-1-4-1 1 -#> 1221 0 0 Valladolid 4-1-4-1 1 -#> 1222 0 0 Valladolid 4-1-4-1 1 -#> 1223 0 0 Valladolid 4-1-4-1 1 -#> 1224 0 0 Valladolid 4-1-4-1 1 -#> 1225 0 0 Valladolid 4-1-4-1 1 -#> 1226 0 0 Valladolid 4-1-4-1 1 -#> 1227 0 0 Valladolid 4-1-4-1 1 -#> 1228 0 0 Valladolid 4-1-4-1 1 -#> 1229 0 0 Valladolid 4-1-4-1 1 -#> 1230 0 0 Valladolid 4-1-4-1 1 -#> 1231 0 0 Valladolid 4-1-4-1 1 -#> 1232 0 0 Valladolid 4-1-4-1 1 -#> 1233 0 0 Valladolid 4-1-4-1 1 -#> 1234 0 0 Valladolid 4-1-4-1 1 -#> 1235 0 0 Valladolid 4-1-4-1 1 -#> 1236 0 0 Valladolid 4-1-4-1 1 -#> 1237 0 0 Valladolid 4-1-4-1 1 -#> 1238 0 0 Valladolid 4-1-4-1 1 -#> 1239 0 0 Valladolid 4-1-4-1 1 -#> 1240 0 0 Valladolid 4-1-4-1 1 -#> 1241 0 0 Valladolid 4-1-4-1 1 -#> 1242 0 0 Valladolid 4-1-4-1 1 -#> 1243 0 0 Valladolid 4-1-4-1 1 -#> 1244 0 0 Valladolid 4-1-4-1 1 -#> 1245 0 0 Valladolid 4-1-4-1 1 -#> 1246 0 0 Valladolid 4-1-4-1 1 -#> 1247 0 0 Valladolid 4-1-4-1 1 -#> 1248 0 0 Valladolid 4-1-4-1 1 -#> 1249 5 0 Valencia 4-2-3-1 1 -#> 1250 5 0 Valencia 4-2-3-1 1 -#> 1251 5 0 Valencia 4-2-3-1 1 -#> 1252 5 0 Valencia 4-2-3-1 1 -#> 1253 5 0 Valencia 4-2-3-1 1 -#> 1254 5 0 Valencia 4-2-3-1 1 -#> 1255 5 0 Valencia 4-2-3-1 1 -#> 1256 5 0 Valencia 4-2-3-1 1 -#> 1257 5 0 Valencia 4-2-3-1 1 -#> 1258 5 0 Valencia 4-2-3-1 1 -#> 1259 5 0 Valencia 4-2-3-1 1 -#> 1260 5 0 Valencia 4-2-3-1 1 -#> 1261 5 0 Valencia 4-2-3-1 1 -#> 1262 5 0 Valencia 4-2-3-1 1 -#> 1263 5 0 Valencia 4-2-3-1 1 -#> 1264 5 0 Valencia 4-2-3-1 1 -#> 1265 5 0 Valencia 4-2-3-1 1 -#> 1266 5 0 Valencia 4-2-3-1 1 -#> 1267 5 0 Valencia 4-2-3-1 1 -#> 1268 5 0 Valencia 4-2-3-1 1 -#> 1269 5 0 Valencia 4-2-3-1 1 -#> 1270 5 0 Valencia 4-2-3-1 1 -#> 1271 5 0 Valencia 4-2-3-1 1 -#> 1272 5 0 Valencia 4-2-3-1 1 -#> 1273 5 0 Valencia 4-2-3-1 1 -#> 1274 5 0 Valencia 4-2-3-1 1 -#> 1275 5 0 Valencia 4-2-3-1 1 -#> 1276 5 0 Valencia 4-2-3-1 1 -#> 1277 5 0 Valencia 4-2-3-1 1 -#> 1278 5 0 Valencia 4-2-3-1 1 -#> 1279 5 0 Valencia 4-2-3-1 1 -#> 1280 4 0 Sevilla 4-2-3-1 3 -#> 1281 4 0 Sevilla 4-2-3-1 3 -#> 1282 4 0 Sevilla 4-2-3-1 3 -#> 1283 4 0 Sevilla 4-2-3-1 3 -#> 1284 4 0 Sevilla 4-2-3-1 3 -#> 1285 4 0 Sevilla 4-2-3-1 3 -#> 1286 4 0 Sevilla 4-2-3-1 3 -#> 1287 4 0 Sevilla 4-2-3-1 3 -#> 1288 4 0 Sevilla 4-2-3-1 3 -#> 1289 4 0 Sevilla 4-2-3-1 3 -#> 1290 4 0 Sevilla 4-2-3-1 3 -#> 1291 4 0 Sevilla 4-2-3-1 3 -#> 1292 4 0 Sevilla 4-2-3-1 3 -#> 1293 4 0 Sevilla 4-2-3-1 3 -#> 1294 4 0 Sevilla 4-2-3-1 3 -#> 1295 4 0 Sevilla 4-2-3-1 3 -#> 1296 4 0 Sevilla 4-2-3-1 3 -#> 1297 4 0 Sevilla 4-2-3-1 3 -#> 1298 4 0 Sevilla 4-2-3-1 3 -#> 1299 4 0 Sevilla 4-2-3-1 3 -#> 1300 4 0 Sevilla 4-2-3-1 3 -#> 1301 4 0 Sevilla 4-2-3-1 3 -#> 1302 4 0 Sevilla 4-2-3-1 3 -#> 1303 4 0 Sevilla 4-2-3-1 3 -#> 1304 4 0 Sevilla 4-2-3-1 3 -#> 1305 4 0 Sevilla 4-2-3-1 3 -#> 1306 4 0 Sevilla 4-2-3-1 3 -#> 1307 4 0 Sevilla 4-2-3-1 3 -#> 1308 4 0 Sevilla 4-2-3-1 3 -#> 1309 4 0 Sevilla 4-2-3-1 3 -#> 1310 4 0 Sevilla 4-2-3-1 3 -#> 1311 1 0 Barcelona 4-3-3 4 -#> 1312 1 0 Barcelona 4-3-3 4 -#> 1313 1 0 Barcelona 4-3-3 4 -#> 1314 1 0 Barcelona 4-3-3 4 -#> 1315 1 0 Barcelona 4-3-3 4 -#> 1316 1 0 Barcelona 4-3-3 4 -#> 1317 1 0 Barcelona 4-3-3 4 -#> 1318 1 0 Barcelona 4-3-3 4 -#> 1319 1 0 Barcelona 4-3-3 4 -#> 1320 1 0 Barcelona 4-3-3 4 -#> 1321 1 0 Barcelona 4-3-3 4 -#> 1322 1 0 Barcelona 4-3-3 4 -#> 1323 1 0 Barcelona 4-3-3 4 -#> 1324 1 0 Barcelona 4-3-3 4 -#> 1325 1 0 Barcelona 4-3-3 4 -#> 1326 1 0 Barcelona 4-3-3 4 -#> 1327 1 0 Barcelona 4-3-3 4 -#> 1328 1 0 Barcelona 4-3-3 4 -#> 1329 1 0 Barcelona 4-3-3 4 -#> 1330 1 0 Barcelona 4-3-3 4 -#> 1331 1 0 Barcelona 4-3-3 4 -#> 1332 1 0 Barcelona 4-3-3 4 -#> 1333 1 0 Barcelona 4-3-3 4 -#> 1334 1 0 Barcelona 4-3-3 4 -#> 1335 1 0 Barcelona 4-3-3 4 -#> 1336 1 0 Barcelona 4-3-3 4 -#> 1337 1 0 Barcelona 4-3-3 4 -#> 1338 1 0 Barcelona 4-3-3 4 -#> 1339 1 0 Barcelona 4-3-3 4 -#> 1340 1 0 Barcelona 4-3-3 4 -#> 1341 1 0 Barcelona 4-3-3 4 -#> 1342 1 0 Barcelona 4-3-3 4 -#> 1343 2 0 Celta Vigo 4-1-3-2 1 -#> 1344 2 0 Celta Vigo 4-1-3-2 1 -#> 1345 2 0 Celta Vigo 4-1-3-2 1 -#> 1346 2 0 Celta Vigo 4-1-3-2 1 -#> 1347 2 0 Celta Vigo 4-1-3-2 1 -#> 1348 2 0 Celta Vigo 4-1-3-2 1 -#> 1349 2 0 Celta Vigo 4-1-3-2 1 -#> 1350 2 0 Celta Vigo 4-1-3-2 1 -#> 1351 2 0 Celta Vigo 4-1-3-2 1 -#> 1352 2 0 Celta Vigo 4-1-3-2 1 -#> 1353 2 0 Celta Vigo 4-1-3-2 1 -#> 1354 2 0 Celta Vigo 4-1-3-2 1 -#> 1355 2 0 Celta Vigo 4-1-3-2 1 -#> 1356 2 0 Celta Vigo 4-1-3-2 1 -#> 1357 2 0 Celta Vigo 4-1-3-2 1 -#> 1358 2 0 Celta Vigo 4-1-3-2 1 -#> 1359 2 0 Celta Vigo 4-1-3-2 1 -#> 1360 2 0 Celta Vigo 4-1-3-2 1 -#> 1361 2 0 Celta Vigo 4-1-3-2 1 -#> 1362 2 0 Celta Vigo 4-1-3-2 1 -#> 1363 2 0 Celta Vigo 4-1-3-2 1 -#> 1364 2 0 Celta Vigo 4-1-3-2 1 -#> 1365 2 0 Celta Vigo 4-1-3-2 1 -#> 1366 2 0 Celta Vigo 4-1-3-2 1 -#> 1367 2 0 Celta Vigo 4-1-3-2 1 -#> 1368 2 0 Celta Vigo 4-1-3-2 1 -#> 1369 2 0 Celta Vigo 4-1-3-2 1 -#> 1370 2 0 Celta Vigo 4-1-3-2 1 -#> 1371 2 0 Celta Vigo 4-1-3-2 1 -#> 1372 3 0 Mallorca 5-3-2 1 -#> 1373 3 0 Mallorca 5-3-2 1 -#> 1374 3 0 Mallorca 5-3-2 1 -#> 1375 3 0 Mallorca 5-3-2 1 -#> 1376 3 0 Mallorca 5-3-2 1 -#> 1377 3 0 Mallorca 5-3-2 1 -#> 1378 3 0 Mallorca 5-3-2 1 -#> 1379 3 0 Mallorca 5-3-2 1 -#> 1380 3 0 Mallorca 5-3-2 1 -#> 1381 3 0 Mallorca 5-3-2 1 -#> 1382 3 0 Mallorca 5-3-2 1 -#> 1383 3 0 Mallorca 5-3-2 1 -#> 1384 3 0 Mallorca 5-3-2 1 -#> 1385 3 0 Mallorca 5-3-2 1 -#> 1386 3 0 Mallorca 5-3-2 1 -#> 1387 3 0 Mallorca 5-3-2 1 -#> 1388 3 0 Mallorca 5-3-2 1 -#> 1389 3 0 Mallorca 5-3-2 1 -#> 1390 3 0 Mallorca 5-3-2 1 -#> 1391 3 0 Mallorca 5-3-2 1 -#> 1392 3 0 Mallorca 5-3-2 1 -#> 1393 3 0 Mallorca 5-3-2 1 -#> 1394 3 0 Mallorca 5-3-2 1 -#> 1395 3 0 Mallorca 5-3-2 1 -#> 1396 3 0 Mallorca 5-3-2 1 -#> 1397 3 0 Mallorca 5-3-2 1 -#> 1398 3 0 Mallorca 5-3-2 1 -#> 1399 3 0 Mallorca 5-3-2 1 -#> 1400 3 0 Mallorca 5-3-2 1 -#> 1401 3 0 Mallorca 5-3-2 1 -#> 1402 3 0 Mallorca 5-3-2 1 -#> 1403 3 0 Athletic Club 4-2-3-1 4 -#> 1404 3 0 Athletic Club 4-2-3-1 4 -#> 1405 3 0 Athletic Club 4-2-3-1 4 -#> 1406 3 0 Athletic Club 4-2-3-1 4 -#> 1407 3 0 Athletic Club 4-2-3-1 4 -#> 1408 3 0 Athletic Club 4-2-3-1 4 -#> 1409 3 0 Athletic Club 4-2-3-1 4 -#> 1410 3 0 Athletic Club 4-2-3-1 4 -#> 1411 3 0 Athletic Club 4-2-3-1 4 -#> 1412 3 0 Athletic Club 4-2-3-1 4 -#> 1413 3 0 Athletic Club 4-2-3-1 4 -#> 1414 3 0 Athletic Club 4-2-3-1 4 -#> 1415 3 0 Athletic Club 4-2-3-1 4 -#> 1416 3 0 Athletic Club 4-2-3-1 4 -#> 1417 3 0 Athletic Club 4-2-3-1 4 -#> 1418 3 0 Athletic Club 4-2-3-1 4 -#> 1419 3 0 Athletic Club 4-2-3-1 4 -#> 1420 3 0 Athletic Club 4-2-3-1 4 -#> 1421 3 0 Athletic Club 4-2-3-1 4 -#> 1422 3 0 Athletic Club 4-2-3-1 4 -#> 1423 3 0 Athletic Club 4-2-3-1 4 -#> 1424 3 0 Athletic Club 4-2-3-1 4 -#> 1425 3 0 Athletic Club 4-2-3-1 4 -#> 1426 3 0 Athletic Club 4-2-3-1 4 -#> 1427 3 0 Athletic Club 4-2-3-1 4 -#> 1428 3 0 Athletic Club 4-2-3-1 4 -#> 1429 3 0 Athletic Club 4-2-3-1 4 -#> 1430 3 0 Athletic Club 4-2-3-1 4 -#> 1431 3 0 Athletic Club 4-2-3-1 4 -#> 1432 3 0 Athletic Club 4-2-3-1 4 -#> 1433 3 0 Athletic Club 4-2-3-1 4 -#> 1434 3 0 Athletic Club 4-2-3-1 4 -#> 1435 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1436 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1437 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1438 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1439 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1440 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1441 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1442 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1443 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1444 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1445 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1446 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1447 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1448 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1449 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1450 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1451 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1452 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1453 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1454 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1455 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1456 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1457 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1458 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1459 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1460 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1461 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1462 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1463 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1464 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1465 4 0 Real Sociedad 4-1-2-1-2 1 -#> 1466 1 0 Villarreal 4-4-2 0 -#> 1467 1 0 Villarreal 4-4-2 0 -#> 1468 1 0 Villarreal 4-4-2 0 -#> 1469 1 0 Villarreal 4-4-2 0 -#> 1470 1 0 Villarreal 4-4-2 0 -#> 1471 1 0 Villarreal 4-4-2 0 -#> 1472 1 0 Villarreal 4-4-2 0 -#> 1473 1 0 Villarreal 4-4-2 0 -#> 1474 1 0 Villarreal 4-4-2 0 -#> 1475 1 0 Villarreal 4-4-2 0 -#> 1476 1 0 Villarreal 4-4-2 0 -#> 1477 1 0 Villarreal 4-4-2 0 -#> 1478 1 0 Villarreal 4-4-2 0 -#> 1479 1 0 Villarreal 4-4-2 0 -#> 1480 1 0 Villarreal 4-4-2 0 -#> 1481 1 0 Villarreal 4-4-2 0 -#> 1482 1 0 Villarreal 4-4-2 0 -#> 1483 1 0 Villarreal 4-4-2 0 -#> 1484 1 0 Villarreal 4-4-2 0 -#> 1485 1 0 Villarreal 4-4-2 0 -#> 1486 1 0 Villarreal 4-4-2 0 -#> 1487 1 0 Villarreal 4-4-2 0 -#> 1488 1 0 Villarreal 4-4-2 0 -#> 1489 1 0 Villarreal 4-4-2 0 -#> 1490 1 0 Villarreal 4-4-2 0 -#> 1491 1 0 Villarreal 4-4-2 0 -#> 1492 1 0 Villarreal 4-4-2 0 -#> 1493 1 0 Villarreal 4-4-2 0 -#> 1494 1 0 Villarreal 4-4-2 0 -#> 1495 1 0 Villarreal 4-4-2 0 -#> 1496 0 0 Osasuna 4-2-3-1 1 -#> 1497 0 0 Osasuna 4-2-3-1 1 -#> 1498 0 0 Osasuna 4-2-3-1 1 -#> 1499 0 0 Osasuna 4-2-3-1 1 -#> 1500 0 0 Osasuna 4-2-3-1 1 -#> 1501 0 0 Osasuna 4-2-3-1 1 -#> 1502 0 0 Osasuna 4-2-3-1 1 -#> 1503 0 0 Osasuna 4-2-3-1 1 -#> 1504 0 0 Osasuna 4-2-3-1 1 -#> 1505 0 0 Osasuna 4-2-3-1 1 -#> 1506 0 0 Osasuna 4-2-3-1 1 -#> 1507 0 0 Osasuna 4-2-3-1 1 -#> 1508 0 0 Osasuna 4-2-3-1 1 -#> 1509 0 0 Osasuna 4-2-3-1 1 -#> 1510 0 0 Osasuna 4-2-3-1 1 -#> 1511 0 0 Osasuna 4-2-3-1 1 -#> 1512 0 0 Osasuna 4-2-3-1 1 -#> 1513 0 0 Osasuna 4-2-3-1 1 -#> 1514 0 0 Osasuna 4-2-3-1 1 -#> 1515 0 0 Osasuna 4-2-3-1 1 -#> 1516 0 0 Osasuna 4-2-3-1 1 -#> 1517 0 0 Osasuna 4-2-3-1 1 -#> 1518 0 0 Osasuna 4-2-3-1 1 -#> 1519 0 0 Osasuna 4-2-3-1 1 -#> 1520 0 0 Osasuna 4-2-3-1 1 -#> 1521 0 0 Osasuna 4-2-3-1 1 -#> 1522 0 0 Osasuna 4-2-3-1 1 -#> 1523 0 0 Osasuna 4-2-3-1 1 -#> 1524 0 0 Osasuna 4-2-3-1 1 -#> 1525 0 0 Osasuna 4-2-3-1 1 -#> 1526 0 0 Osasuna 4-2-3-1 1 -#> 1527 0 0 Osasuna 4-2-3-1 1 -#> 1528 1 0 Cádiz 4-2-3-1 1 -#> 1529 1 0 Cádiz 4-2-3-1 1 -#> 1530 1 0 Cádiz 4-2-3-1 1 -#> 1531 1 0 Cádiz 4-2-3-1 1 -#> 1532 1 0 Cádiz 4-2-3-1 1 -#> 1533 1 0 Cádiz 4-2-3-1 1 -#> 1534 1 0 Cádiz 4-2-3-1 1 -#> 1535 1 0 Cádiz 4-2-3-1 1 -#> 1536 1 0 Cádiz 4-2-3-1 1 -#> 1537 1 0 Cádiz 4-2-3-1 1 -#> 1538 1 0 Cádiz 4-2-3-1 1 -#> 1539 1 0 Cádiz 4-2-3-1 1 -#> 1540 1 0 Cádiz 4-2-3-1 1 -#> 1541 1 0 Cádiz 4-2-3-1 1 -#> 1542 1 0 Cádiz 4-2-3-1 1 -#> 1543 1 0 Cádiz 4-2-3-1 1 -#> 1544 1 0 Cádiz 4-2-3-1 1 -#> 1545 1 0 Cádiz 4-2-3-1 1 -#> 1546 1 0 Cádiz 4-2-3-1 1 -#> 1547 1 0 Cádiz 4-2-3-1 1 -#> 1548 1 0 Cádiz 4-2-3-1 1 -#> 1549 1 0 Cádiz 4-2-3-1 1 -#> 1550 1 0 Cádiz 4-2-3-1 1 -#> 1551 1 0 Cádiz 4-2-3-1 1 -#> 1552 1 0 Cádiz 4-2-3-1 1 -#> 1553 1 0 Cádiz 4-2-3-1 1 -#> 1554 1 0 Cádiz 4-2-3-1 1 -#> 1555 1 0 Cádiz 4-2-3-1 1 -#> 1556 1 0 Cádiz 4-2-3-1 1 -#> 1557 1 0 Cádiz 4-2-3-1 1 -#> 1558 1 0 Cádiz 4-2-3-1 1 -#> 1559 1 0 Cádiz 4-2-3-1 1 -#> 1560 3 0 Almería 5-3-2 0 -#> 1561 3 0 Almería 5-3-2 0 -#> 1562 3 0 Almería 5-3-2 0 -#> 1563 3 0 Almería 5-3-2 0 -#> 1564 3 0 Almería 5-3-2 0 -#> 1565 3 0 Almería 5-3-2 0 -#> 1566 3 0 Almería 5-3-2 0 -#> 1567 3 0 Almería 5-3-2 0 -#> 1568 3 0 Almería 5-3-2 0 -#> 1569 3 0 Almería 5-3-2 0 -#> 1570 3 0 Almería 5-3-2 0 -#> 1571 3 0 Almería 5-3-2 0 -#> 1572 3 0 Almería 5-3-2 0 -#> 1573 3 0 Almería 5-3-2 0 -#> 1574 3 0 Almería 5-3-2 0 -#> 1575 3 0 Almería 5-3-2 0 -#> 1576 3 0 Almería 5-3-2 0 -#> 1577 3 0 Almería 5-3-2 0 -#> 1578 3 0 Almería 5-3-2 0 -#> 1579 3 0 Almería 5-3-2 0 -#> 1580 3 0 Almería 5-3-2 0 -#> 1581 3 0 Almería 5-3-2 0 -#> 1582 3 0 Almería 5-3-2 0 -#> 1583 3 0 Almería 5-3-2 0 -#> 1584 3 0 Almería 5-3-2 0 -#> 1585 3 0 Almería 5-3-2 0 -#> 1586 3 0 Almería 5-3-2 0 -#> 1587 3 0 Almería 5-3-2 0 -#> 1588 3 0 Almería 5-3-2 0 -#> 1589 3 0 Almería 5-3-2 0 -#> 1590 3 0 Almería 5-3-2 0 -#> 1591 2 0 Elche 5-4-1 0 -#> 1592 2 0 Elche 5-4-1 0 -#> 1593 2 0 Elche 5-4-1 0 -#> 1594 2 0 Elche 5-4-1 0 -#> 1595 2 0 Elche 5-4-1 0 -#> 1596 2 0 Elche 5-4-1 0 -#> 1597 2 0 Elche 5-4-1 0 -#> 1598 2 0 Elche 5-4-1 0 -#> 1599 2 0 Elche 5-4-1 0 -#> 1600 2 0 Elche 5-4-1 0 -#> 1601 2 0 Elche 5-4-1 0 -#> 1602 2 0 Elche 5-4-1 0 -#> 1603 2 0 Elche 5-4-1 0 -#> 1604 2 0 Elche 5-4-1 0 -#> 1605 2 0 Elche 5-4-1 0 -#> 1606 2 0 Elche 5-4-1 0 -#> 1607 2 0 Elche 5-4-1 0 -#> 1608 2 0 Elche 5-4-1 0 -#> 1609 2 0 Elche 5-4-1 0 -#> 1610 2 0 Elche 5-4-1 0 -#> 1611 2 0 Elche 5-4-1 0 -#> 1612 2 0 Elche 5-4-1 0 -#> 1613 2 0 Elche 5-4-1 0 -#> 1614 2 0 Elche 5-4-1 0 -#> 1615 2 0 Elche 5-4-1 0 -#> 1616 2 0 Elche 5-4-1 0 -#> 1617 2 0 Elche 5-4-1 0 -#> 1618 2 0 Elche 5-4-1 0 -#> 1619 2 0 Elche 5-4-1 0 -#> 1620 2 0 Elche 5-4-1 0 -#> 1621 2 0 Elche 5-4-1 0 -#> 1622 2 0 Elche 5-4-1 0 -#> 1623 3 0 Celta Vigo 4-1-3-2 0 -#> 1624 3 0 Celta Vigo 4-1-3-2 0 -#> 1625 3 0 Celta Vigo 4-1-3-2 0 -#> 1626 3 0 Celta Vigo 4-1-3-2 0 -#> 1627 3 0 Celta Vigo 4-1-3-2 0 -#> 1628 3 0 Celta Vigo 4-1-3-2 0 -#> 1629 3 0 Celta Vigo 4-1-3-2 0 -#> 1630 3 0 Celta Vigo 4-1-3-2 0 -#> 1631 3 0 Celta Vigo 4-1-3-2 0 -#> 1632 3 0 Celta Vigo 4-1-3-2 0 -#> 1633 3 0 Celta Vigo 4-1-3-2 0 -#> 1634 3 0 Celta Vigo 4-1-3-2 0 -#> 1635 3 0 Celta Vigo 4-1-3-2 0 -#> 1636 3 0 Celta Vigo 4-1-3-2 0 -#> 1637 3 0 Celta Vigo 4-1-3-2 0 -#> 1638 3 0 Celta Vigo 4-1-3-2 0 -#> 1639 3 0 Celta Vigo 4-1-3-2 0 -#> 1640 3 0 Celta Vigo 4-1-3-2 0 -#> 1641 3 0 Celta Vigo 4-1-3-2 0 -#> 1642 3 0 Celta Vigo 4-1-3-2 0 -#> 1643 3 0 Celta Vigo 4-1-3-2 0 -#> 1644 3 0 Celta Vigo 4-1-3-2 0 -#> 1645 3 0 Celta Vigo 4-1-3-2 0 -#> 1646 3 0 Celta Vigo 4-1-3-2 0 -#> 1647 3 0 Celta Vigo 4-1-3-2 0 -#> 1648 3 0 Celta Vigo 4-1-3-2 0 -#> 1649 3 0 Celta Vigo 4-1-3-2 0 -#> 1650 3 0 Celta Vigo 4-1-3-2 0 -#> 1651 3 0 Celta Vigo 4-1-3-2 0 -#> 1652 3 0 Celta Vigo 4-1-3-2 0 -#> 1653 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1654 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1655 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1656 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1657 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1658 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1659 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1660 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1661 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1662 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1663 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1664 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1665 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1666 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1667 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1668 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1669 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1670 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1671 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1672 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1673 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1674 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1675 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1676 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1677 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1678 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1679 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1680 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1681 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1682 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1683 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1684 1 0 Rayo Vallecano 4-2-3-1 2 -#> 1685 7 1 Getafe 5-3-2 2 -#> 1686 7 1 Getafe 5-3-2 2 -#> 1687 7 1 Getafe 5-3-2 2 -#> 1688 7 1 Getafe 5-3-2 2 -#> 1689 7 1 Getafe 5-3-2 2 -#> 1690 7 1 Getafe 5-3-2 2 -#> 1691 7 1 Getafe 5-3-2 2 -#> 1692 7 1 Getafe 5-3-2 2 -#> 1693 7 1 Getafe 5-3-2 2 -#> 1694 7 1 Getafe 5-3-2 2 -#> 1695 7 1 Getafe 5-3-2 2 -#> 1696 7 1 Getafe 5-3-2 2 -#> 1697 7 1 Getafe 5-3-2 2 -#> 1698 7 1 Getafe 5-3-2 2 -#> 1699 7 1 Getafe 5-3-2 2 -#> 1700 7 1 Getafe 5-3-2 2 -#> 1701 7 1 Getafe 5-3-2 2 -#> 1702 7 1 Getafe 5-3-2 2 -#> 1703 7 1 Getafe 5-3-2 2 -#> 1704 7 1 Getafe 5-3-2 2 -#> 1705 7 1 Getafe 5-3-2 2 -#> 1706 7 1 Getafe 5-3-2 2 -#> 1707 7 1 Getafe 5-3-2 2 -#> 1708 7 1 Getafe 5-3-2 2 -#> 1709 7 1 Getafe 5-3-2 2 -#> 1710 7 1 Getafe 5-3-2 2 -#> 1711 7 1 Getafe 5-3-2 2 -#> 1712 7 1 Getafe 5-3-2 2 -#> 1713 7 1 Getafe 5-3-2 2 -#> 1714 7 1 Getafe 5-3-2 2 -#> 1715 7 1 Getafe 5-3-2 2 -#> 1716 7 1 Getafe 5-3-2 2 -#> 1717 1 0 Sevilla 4-2-3-1 1 -#> 1718 1 0 Sevilla 4-2-3-1 1 -#> 1719 1 0 Sevilla 4-2-3-1 1 -#> 1720 1 0 Sevilla 4-2-3-1 1 -#> 1721 1 0 Sevilla 4-2-3-1 1 -#> 1722 1 0 Sevilla 4-2-3-1 1 -#> 1723 1 0 Sevilla 4-2-3-1 1 -#> 1724 1 0 Sevilla 4-2-3-1 1 -#> 1725 1 0 Sevilla 4-2-3-1 1 -#> 1726 1 0 Sevilla 4-2-3-1 1 -#> 1727 1 0 Sevilla 4-2-3-1 1 -#> 1728 1 0 Sevilla 4-2-3-1 1 -#> 1729 1 0 Sevilla 4-2-3-1 1 -#> 1730 1 0 Sevilla 4-2-3-1 1 -#> 1731 1 0 Sevilla 4-2-3-1 1 -#> 1732 1 0 Sevilla 4-2-3-1 1 -#> 1733 1 0 Sevilla 4-2-3-1 1 -#> 1734 1 0 Sevilla 4-2-3-1 1 -#> 1735 1 0 Sevilla 4-2-3-1 1 -#> 1736 1 0 Sevilla 4-2-3-1 1 -#> 1737 1 0 Sevilla 4-2-3-1 1 -#> 1738 1 0 Sevilla 4-2-3-1 1 -#> 1739 1 0 Sevilla 4-2-3-1 1 -#> 1740 1 0 Sevilla 4-2-3-1 1 -#> 1741 1 0 Sevilla 4-2-3-1 1 -#> 1742 1 0 Sevilla 4-2-3-1 1 -#> 1743 1 0 Sevilla 4-2-3-1 1 -#> 1744 1 0 Sevilla 4-2-3-1 1 -#> 1745 1 0 Sevilla 4-2-3-1 1 -#> 1746 1 0 Sevilla 4-2-3-1 1 -#> 1747 1 0 Sevilla 4-2-3-1 1 -#> 1748 1 0 Sevilla 4-2-3-1 1 -#> 1749 0 0 Girona 3-4-3 1 -#> 1750 0 0 Girona 3-4-3 1 -#> 1751 0 0 Girona 3-4-3 1 -#> 1752 0 0 Girona 3-4-3 1 -#> 1753 0 0 Girona 3-4-3 1 -#> 1754 0 0 Girona 3-4-3 1 -#> 1755 0 0 Girona 3-4-3 1 -#> 1756 0 0 Girona 3-4-3 1 -#> 1757 0 0 Girona 3-4-3 1 -#> 1758 0 0 Girona 3-4-3 1 -#> 1759 0 0 Girona 3-4-3 1 -#> 1760 0 0 Girona 3-4-3 1 -#> 1761 0 0 Girona 3-4-3 1 -#> 1762 0 0 Girona 3-4-3 1 -#> 1763 0 0 Girona 3-4-3 1 -#> 1764 0 0 Girona 3-4-3 1 -#> 1765 0 0 Girona 3-4-3 1 -#> 1766 0 0 Girona 3-4-3 1 -#> 1767 0 0 Girona 3-4-3 1 -#> 1768 0 0 Girona 3-4-3 1 -#> 1769 0 0 Girona 3-4-3 1 -#> 1770 0 0 Girona 3-4-3 1 -#> 1771 0 0 Girona 3-4-3 1 -#> 1772 0 0 Girona 3-4-3 1 -#> 1773 0 0 Girona 3-4-3 1 -#> 1774 0 0 Girona 3-4-3 1 -#> 1775 0 0 Girona 3-4-3 1 -#> 1776 0 0 Girona 3-4-3 1 -#> 1777 0 0 Girona 3-4-3 1 -#> 1778 0 0 Girona 3-4-3 1 -#> 1779 0 0 Girona 3-4-3 1 -#> 1780 3 0 Espanyol 5-3-2 1 -#> 1781 3 0 Espanyol 5-3-2 1 -#> 1782 3 0 Espanyol 5-3-2 1 -#> 1783 3 0 Espanyol 5-3-2 1 -#> 1784 3 0 Espanyol 5-3-2 1 -#> 1785 3 0 Espanyol 5-3-2 1 -#> 1786 3 0 Espanyol 5-3-2 1 -#> 1787 3 0 Espanyol 5-3-2 1 -#> 1788 3 0 Espanyol 5-3-2 1 -#> 1789 3 0 Espanyol 5-3-2 1 -#> 1790 3 0 Espanyol 5-3-2 1 -#> 1791 3 0 Espanyol 5-3-2 1 -#> 1792 3 0 Espanyol 5-3-2 1 -#> 1793 3 0 Espanyol 5-3-2 1 -#> 1794 3 0 Espanyol 5-3-2 1 -#> 1795 3 0 Espanyol 5-3-2 1 -#> 1796 3 0 Espanyol 5-3-2 1 -#> 1797 3 0 Espanyol 5-3-2 1 -#> 1798 3 0 Espanyol 5-3-2 1 -#> 1799 3 0 Espanyol 5-3-2 1 -#> 1800 3 0 Espanyol 5-3-2 1 -#> 1801 3 0 Espanyol 5-3-2 1 -#> 1802 3 0 Espanyol 5-3-2 1 -#> 1803 3 0 Espanyol 5-3-2 1 -#> 1804 3 0 Espanyol 5-3-2 1 -#> 1805 3 0 Espanyol 5-3-2 1 -#> 1806 3 0 Espanyol 5-3-2 1 -#> 1807 3 0 Espanyol 5-3-2 1 -#> 1808 3 0 Espanyol 5-3-2 1 -#> 1809 5 1 Real Madrid 4-3-3 2 -#> 1810 5 1 Real Madrid 4-3-3 2 -#> 1811 5 1 Real Madrid 4-3-3 2 -#> 1812 5 1 Real Madrid 4-3-3 2 -#> 1813 5 1 Real Madrid 4-3-3 2 -#> 1814 5 1 Real Madrid 4-3-3 2 -#> 1815 5 1 Real Madrid 4-3-3 2 -#> 1816 5 1 Real Madrid 4-3-3 2 -#> 1817 5 1 Real Madrid 4-3-3 2 -#> 1818 5 1 Real Madrid 4-3-3 2 -#> 1819 5 1 Real Madrid 4-3-3 2 -#> 1820 5 1 Real Madrid 4-3-3 2 -#> 1821 5 1 Real Madrid 4-3-3 2 -#> 1822 5 1 Real Madrid 4-3-3 2 -#> 1823 5 1 Real Madrid 4-3-3 2 -#> 1824 5 1 Real Madrid 4-3-3 2 -#> 1825 5 1 Real Madrid 4-3-3 2 -#> 1826 5 1 Real Madrid 4-3-3 2 -#> 1827 5 1 Real Madrid 4-3-3 2 -#> 1828 5 1 Real Madrid 4-3-3 2 -#> 1829 5 1 Real Madrid 4-3-3 2 -#> 1830 5 1 Real Madrid 4-3-3 2 -#> 1831 5 1 Real Madrid 4-3-3 2 -#> 1832 5 1 Real Madrid 4-3-3 2 -#> 1833 5 1 Real Madrid 4-3-3 2 -#> 1834 5 1 Real Madrid 4-3-3 2 -#> 1835 5 1 Real Madrid 4-3-3 2 -#> 1836 5 1 Real Madrid 4-3-3 2 -#> 1837 5 1 Real Madrid 4-3-3 2 -#> 1838 5 1 Real Madrid 4-3-3 2 -#> 1839 5 1 Real Madrid 4-3-3 2 -#> 1840 1 0 Almería 5-3-2 0 -#> 1841 1 0 Almería 5-3-2 0 -#> 1842 1 0 Almería 5-3-2 0 -#> 1843 1 0 Almería 5-3-2 0 -#> 1844 1 0 Almería 5-3-2 0 -#> 1845 1 0 Almería 5-3-2 0 -#> 1846 1 0 Almería 5-3-2 0 -#> 1847 1 0 Almería 5-3-2 0 -#> 1848 1 0 Almería 5-3-2 0 -#> 1849 1 0 Almería 5-3-2 0 -#> 1850 1 0 Almería 5-3-2 0 -#> 1851 1 0 Almería 5-3-2 0 -#> 1852 1 0 Almería 5-3-2 0 -#> 1853 1 0 Almería 5-3-2 0 -#> 1854 1 0 Almería 5-3-2 0 -#> 1855 1 0 Almería 5-3-2 0 -#> 1856 1 0 Almería 5-3-2 0 -#> 1857 1 0 Almería 5-3-2 0 -#> 1858 1 0 Almería 5-3-2 0 -#> 1859 1 0 Almería 5-3-2 0 -#> 1860 1 0 Almería 5-3-2 0 -#> 1861 1 0 Almería 5-3-2 0 -#> 1862 1 0 Almería 5-3-2 0 -#> 1863 1 0 Almería 5-3-2 0 -#> 1864 1 0 Almería 5-3-2 0 -#> 1865 1 0 Almería 5-3-2 0 -#> 1866 1 0 Almería 5-3-2 0 -#> 1867 1 0 Almería 5-3-2 0 -#> 1868 1 0 Almería 5-3-2 0 -#> 1869 1 0 Almería 5-3-2 0 -#> 1870 1 0 Almería 5-3-2 0 -#> 1871 1 0 Almería 5-3-2 0 -#> 1872 2 1 Villarreal 4-4-2 0 -#> 1873 2 1 Villarreal 4-4-2 0 -#> 1874 2 1 Villarreal 4-4-2 0 -#> 1875 2 1 Villarreal 4-4-2 0 -#> 1876 2 1 Villarreal 4-4-2 0 -#> 1877 2 1 Villarreal 4-4-2 0 -#> 1878 2 1 Villarreal 4-4-2 0 -#> 1879 2 1 Villarreal 4-4-2 0 -#> 1880 2 1 Villarreal 4-4-2 0 -#> 1881 2 1 Villarreal 4-4-2 0 -#> 1882 2 1 Villarreal 4-4-2 0 -#> 1883 2 1 Villarreal 4-4-2 0 -#> 1884 2 1 Villarreal 4-4-2 0 -#> 1885 2 1 Villarreal 4-4-2 0 -#> 1886 2 1 Villarreal 4-4-2 0 -#> 1887 2 1 Villarreal 4-4-2 0 -#> 1888 2 1 Villarreal 4-4-2 0 -#> 1889 2 1 Villarreal 4-4-2 0 -#> 1890 2 1 Villarreal 4-4-2 0 -#> 1891 2 1 Villarreal 4-4-2 0 -#> 1892 2 1 Villarreal 4-4-2 0 -#> 1893 2 1 Villarreal 4-4-2 0 -#> 1894 2 1 Villarreal 4-4-2 0 -#> 1895 2 1 Villarreal 4-4-2 0 -#> 1896 2 1 Villarreal 4-4-2 0 -#> 1897 2 1 Villarreal 4-4-2 0 -#> 1898 2 1 Villarreal 4-4-2 0 -#> 1899 2 1 Villarreal 4-4-2 0 -#> 1900 2 1 Villarreal 4-4-2 0 -#> 1901 2 1 Villarreal 4-4-2 0 -#> 1902 2 0 Valladolid 4-3-3 3 -#> 1903 2 0 Valladolid 4-3-3 3 -#> 1904 2 0 Valladolid 4-3-3 3 -#> 1905 2 0 Valladolid 4-3-3 3 -#> 1906 2 0 Valladolid 4-3-3 3 -#> 1907 2 0 Valladolid 4-3-3 3 -#> 1908 2 0 Valladolid 4-3-3 3 -#> 1909 2 0 Valladolid 4-3-3 3 -#> 1910 2 0 Valladolid 4-3-3 3 -#> 1911 2 0 Valladolid 4-3-3 3 -#> 1912 2 0 Valladolid 4-3-3 3 -#> 1913 2 0 Valladolid 4-3-3 3 -#> 1914 2 0 Valladolid 4-3-3 3 -#> 1915 2 0 Valladolid 4-3-3 3 -#> 1916 2 0 Valladolid 4-3-3 3 -#> 1917 2 0 Valladolid 4-3-3 3 -#> 1918 2 0 Valladolid 4-3-3 3 -#> 1919 2 0 Valladolid 4-3-3 3 -#> 1920 2 0 Valladolid 4-3-3 3 -#> 1921 2 0 Valladolid 4-3-3 3 -#> 1922 2 0 Valladolid 4-3-3 3 -#> 1923 2 0 Valladolid 4-3-3 3 -#> 1924 2 0 Valladolid 4-3-3 3 -#> 1925 2 0 Valladolid 4-3-3 3 -#> 1926 2 0 Valladolid 4-3-3 3 -#> 1927 2 0 Valladolid 4-3-3 3 -#> 1928 2 0 Valladolid 4-3-3 3 -#> 1929 2 0 Valladolid 4-3-3 3 -#> 1930 2 0 Valladolid 4-3-3 3 -#> 1931 2 0 Valladolid 4-3-3 3 -#> 1932 2 0 Valladolid 4-3-3 3 -#> 1933 3 0 Atlético Madrid 4-1-4-1 2 -#> 1934 3 0 Atlético Madrid 4-1-4-1 2 -#> 1935 3 0 Atlético Madrid 4-1-4-1 2 -#> 1936 3 0 Atlético Madrid 4-1-4-1 2 -#> 1937 3 0 Atlético Madrid 4-1-4-1 2 -#> 1938 3 0 Atlético Madrid 4-1-4-1 2 -#> 1939 3 0 Atlético Madrid 4-1-4-1 2 -#> 1940 3 0 Atlético Madrid 4-1-4-1 2 -#> 1941 3 0 Atlético Madrid 4-1-4-1 2 -#> 1942 3 0 Atlético Madrid 4-1-4-1 2 -#> 1943 3 0 Atlético Madrid 4-1-4-1 2 -#> 1944 3 0 Atlético Madrid 4-1-4-1 2 -#> 1945 3 0 Atlético Madrid 4-1-4-1 2 -#> 1946 3 0 Atlético Madrid 4-1-4-1 2 -#> 1947 3 0 Atlético Madrid 4-1-4-1 2 -#> 1948 3 0 Atlético Madrid 4-1-4-1 2 -#> 1949 3 0 Atlético Madrid 4-1-4-1 2 -#> 1950 3 0 Atlético Madrid 4-1-4-1 2 -#> 1951 3 0 Atlético Madrid 4-1-4-1 2 -#> 1952 3 0 Atlético Madrid 4-1-4-1 2 -#> 1953 3 0 Atlético Madrid 4-1-4-1 2 -#> 1954 3 0 Atlético Madrid 4-1-4-1 2 -#> 1955 3 0 Atlético Madrid 4-1-4-1 2 -#> 1956 3 0 Atlético Madrid 4-1-4-1 2 -#> 1957 3 0 Atlético Madrid 4-1-4-1 2 -#> 1958 3 0 Atlético Madrid 4-1-4-1 2 -#> 1959 3 0 Atlético Madrid 4-1-4-1 2 -#> 1960 3 0 Atlético Madrid 4-1-4-1 2 -#> 1961 3 0 Atlético Madrid 4-1-4-1 2 -#> 1962 3 0 Atlético Madrid 4-1-4-1 2 -#> 1963 3 0 Atlético Madrid 4-1-4-1 2 -#> 1964 3 0 Atlético Madrid 4-1-4-1 2 -#> 1965 2 0 Barcelona 4-3-3 1 -#> 1966 2 0 Barcelona 4-3-3 1 -#> 1967 2 0 Barcelona 4-3-3 1 -#> 1968 2 0 Barcelona 4-3-3 1 -#> 1969 2 0 Barcelona 4-3-3 1 -#> 1970 2 0 Barcelona 4-3-3 1 -#> 1971 2 0 Barcelona 4-3-3 1 -#> 1972 2 0 Barcelona 4-3-3 1 -#> 1973 2 0 Barcelona 4-3-3 1 -#> 1974 2 0 Barcelona 4-3-3 1 -#> 1975 2 0 Barcelona 4-3-3 1 -#> 1976 2 0 Barcelona 4-3-3 1 -#> 1977 2 0 Barcelona 4-3-3 1 -#> 1978 2 0 Barcelona 4-3-3 1 -#> 1979 2 0 Barcelona 4-3-3 1 -#> 1980 2 0 Barcelona 4-3-3 1 -#> 1981 2 0 Barcelona 4-3-3 1 -#> 1982 2 0 Barcelona 4-3-3 1 -#> 1983 2 0 Barcelona 4-3-3 1 -#> 1984 2 0 Barcelona 4-3-3 1 -#> 1985 2 0 Barcelona 4-3-3 1 -#> 1986 2 0 Barcelona 4-3-3 1 -#> 1987 2 0 Barcelona 4-3-3 1 -#> 1988 2 0 Barcelona 4-3-3 1 -#> 1989 2 0 Barcelona 4-3-3 1 -#> 1990 2 0 Barcelona 4-3-3 1 -#> 1991 2 0 Barcelona 4-3-3 1 -#> 1992 2 0 Barcelona 4-3-3 1 -#> 1993 2 0 Barcelona 4-3-3 1 -#> 1994 2 1 Valencia 4-3-3 2 -#> 1995 2 1 Valencia 4-3-3 2 -#> 1996 2 1 Valencia 4-3-3 2 -#> 1997 2 1 Valencia 4-3-3 2 -#> 1998 2 1 Valencia 4-3-3 2 -#> 1999 2 1 Valencia 4-3-3 2 -#> 2000 2 1 Valencia 4-3-3 2 -#> 2001 2 1 Valencia 4-3-3 2 -#> 2002 2 1 Valencia 4-3-3 2 -#> 2003 2 1 Valencia 4-3-3 2 -#> 2004 2 1 Valencia 4-3-3 2 -#> 2005 2 1 Valencia 4-3-3 2 -#> 2006 2 1 Valencia 4-3-3 2 -#> 2007 2 1 Valencia 4-3-3 2 -#> 2008 2 1 Valencia 4-3-3 2 -#> 2009 2 1 Valencia 4-3-3 2 -#> 2010 2 1 Valencia 4-3-3 2 -#> 2011 2 1 Valencia 4-3-3 2 -#> 2012 2 1 Valencia 4-3-3 2 -#> 2013 2 1 Valencia 4-3-3 2 -#> 2014 2 1 Valencia 4-3-3 2 -#> 2015 2 1 Valencia 4-3-3 2 -#> 2016 2 1 Valencia 4-3-3 2 -#> 2017 2 1 Valencia 4-3-3 2 -#> 2018 2 1 Valencia 4-3-3 2 -#> 2019 2 1 Valencia 4-3-3 2 -#> 2020 2 1 Valencia 4-3-3 2 -#> 2021 2 1 Valencia 4-3-3 2 -#> 2022 2 1 Valencia 4-3-3 2 -#> 2023 2 1 Valencia 4-3-3 2 -#> 2024 2 1 Valencia 4-3-3 2 -#> 2025 2 1 Valencia 4-3-3 2 -#> 2026 4 0 Real Betis 4-2-3-1 0 -#> 2027 4 0 Real Betis 4-2-3-1 0 -#> 2028 4 0 Real Betis 4-2-3-1 0 -#> 2029 4 0 Real Betis 4-2-3-1 0 -#> 2030 4 0 Real Betis 4-2-3-1 0 -#> 2031 4 0 Real Betis 4-2-3-1 0 -#> 2032 4 0 Real Betis 4-2-3-1 0 -#> 2033 4 0 Real Betis 4-2-3-1 0 -#> 2034 4 0 Real Betis 4-2-3-1 0 -#> 2035 4 0 Real Betis 4-2-3-1 0 -#> 2036 4 0 Real Betis 4-2-3-1 0 -#> 2037 4 0 Real Betis 4-2-3-1 0 -#> 2038 4 0 Real Betis 4-2-3-1 0 -#> 2039 4 0 Real Betis 4-2-3-1 0 -#> 2040 4 0 Real Betis 4-2-3-1 0 -#> Away_xG -#> 1 0.9 -#> 2 0.9 -#> 3 0.9 -#> 4 0.9 -#> 5 0.9 -#> 6 0.9 -#> 7 0.9 -#> 8 0.9 -#> 9 0.9 -#> 10 0.9 -#> 11 0.9 -#> 12 0.9 -#> 13 0.9 -#> 14 0.9 -#> 15 0.9 -#> 16 0.9 -#> 17 0.9 -#> 18 0.9 -#> 19 0.9 -#> 20 0.9 -#> 21 0.9 -#> 22 0.9 -#> 23 0.9 -#> 24 0.9 -#> 25 0.9 -#> 26 0.9 -#> 27 0.9 -#> 28 0.9 -#> 29 0.9 -#> 30 0.9 -#> 31 0.9 -#> 32 0.9 -#> 33 1.1 -#> 34 1.1 -#> 35 1.1 -#> 36 1.1 -#> 37 1.1 -#> 38 1.1 -#> 39 1.1 -#> 40 1.1 -#> 41 1.1 -#> 42 1.1 -#> 43 1.1 -#> 44 1.1 -#> 45 1.1 -#> 46 1.1 -#> 47 1.1 -#> 48 1.1 -#> 49 1.1 -#> 50 1.1 -#> 51 1.1 -#> 52 1.1 -#> 53 1.1 -#> 54 1.1 -#> 55 1.1 -#> 56 1.1 -#> 57 1.1 -#> 58 1.1 -#> 59 1.1 -#> 60 1.1 -#> 61 1.1 -#> 62 1.1 -#> 63 1.5 -#> 64 1.5 -#> 65 1.5 -#> 66 1.5 -#> 67 1.5 -#> 68 1.5 -#> 69 1.5 -#> 70 1.5 -#> 71 1.5 -#> 72 1.5 -#> 73 1.5 -#> 74 1.5 -#> 75 1.5 -#> 76 1.5 -#> 77 1.5 -#> 78 1.5 -#> 79 1.5 -#> 80 1.5 -#> 81 1.5 -#> 82 1.5 -#> 83 1.5 -#> 84 1.5 -#> 85 1.5 -#> 86 1.5 -#> 87 1.5 -#> 88 1.5 -#> 89 1.5 -#> 90 1.5 -#> 91 1.5 -#> 92 1.5 -#> 93 1.5 -#> 94 0.5 -#> 95 0.5 -#> 96 0.5 -#> 97 0.5 -#> 98 0.5 -#> 99 0.5 -#> 100 0.5 -#> 101 0.5 -#> 102 0.5 -#> 103 0.5 -#> 104 0.5 -#> 105 0.5 -#> 106 0.5 -#> 107 0.5 -#> 108 0.5 -#> 109 0.5 -#> 110 0.5 -#> 111 0.5 -#> 112 0.5 -#> 113 0.5 -#> 114 0.5 -#> 115 0.5 -#> 116 0.5 -#> 117 0.5 -#> 118 0.5 -#> 119 0.5 -#> 120 0.5 -#> 121 0.5 -#> 122 0.5 -#> 123 0.5 -#> 124 0.5 -#> 125 1.5 -#> 126 1.5 -#> 127 1.5 -#> 128 1.5 -#> 129 1.5 -#> 130 1.5 -#> 131 1.5 -#> 132 1.5 -#> 133 1.5 -#> 134 1.5 -#> 135 1.5 -#> 136 1.5 -#> 137 1.5 -#> 138 1.5 -#> 139 1.5 -#> 140 1.5 -#> 141 1.5 -#> 142 1.5 -#> 143 1.5 -#> 144 1.5 -#> 145 1.5 -#> 146 1.5 -#> 147 1.5 -#> 148 1.5 -#> 149 1.5 -#> 150 1.5 -#> 151 1.5 -#> 152 1.5 -#> 153 1.5 -#> 154 1.5 -#> 155 1.5 -#> 156 1.5 -#> 157 0.1 -#> 158 0.1 -#> 159 0.1 -#> 160 0.1 -#> 161 0.1 -#> 162 0.1 -#> 163 0.1 -#> 164 0.1 -#> 165 0.1 -#> 166 0.1 -#> 167 0.1 -#> 168 0.1 -#> 169 0.1 -#> 170 0.1 -#> 171 0.1 -#> 172 0.1 -#> 173 0.1 -#> 174 0.1 -#> 175 0.1 -#> 176 0.1 -#> 177 0.1 -#> 178 0.1 -#> 179 0.1 -#> 180 0.1 -#> 181 0.1 -#> 182 0.1 -#> 183 0.1 -#> 184 0.1 -#> 185 0.1 -#> 186 0.1 -#> 187 0.1 -#> 188 0.1 -#> 189 2.1 -#> 190 2.1 -#> 191 2.1 -#> 192 2.1 -#> 193 2.1 -#> 194 2.1 -#> 195 2.1 -#> 196 2.1 -#> 197 2.1 -#> 198 2.1 -#> 199 2.1 -#> 200 2.1 -#> 201 2.1 -#> 202 2.1 -#> 203 2.1 -#> 204 2.1 -#> 205 2.1 -#> 206 2.1 -#> 207 2.1 -#> 208 2.1 -#> 209 2.1 -#> 210 2.1 -#> 211 2.1 -#> 212 2.1 -#> 213 2.1 -#> 214 2.1 -#> 215 2.1 -#> 216 2.1 -#> 217 2.1 -#> 218 2.1 -#> 219 2.1 -#> 220 2.1 -#> 221 0.4 -#> 222 0.4 -#> 223 0.4 -#> 224 0.4 -#> 225 0.4 -#> 226 0.4 -#> 227 0.4 -#> 228 0.4 -#> 229 0.4 -#> 230 0.4 -#> 231 0.4 -#> 232 0.4 -#> 233 0.4 -#> 234 0.4 -#> 235 0.4 -#> 236 0.4 -#> 237 0.4 -#> 238 0.4 -#> 239 0.4 -#> 240 0.4 -#> 241 0.4 -#> 242 0.4 -#> 243 0.4 -#> 244 0.4 -#> 245 0.4 -#> 246 0.4 -#> 247 0.4 -#> 248 0.4 -#> 249 0.4 -#> 250 0.4 -#> 251 0.4 -#> 252 1.2 -#> 253 1.2 -#> 254 1.2 -#> 255 1.2 -#> 256 1.2 -#> 257 1.2 -#> 258 1.2 -#> 259 1.2 -#> 260 1.2 -#> 261 1.2 -#> 262 1.2 -#> 263 1.2 -#> 264 1.2 -#> 265 1.2 -#> 266 1.2 -#> 267 1.2 -#> 268 1.2 -#> 269 1.2 -#> 270 1.2 -#> 271 1.2 -#> 272 1.2 -#> 273 1.2 -#> 274 1.2 -#> 275 1.2 -#> 276 1.2 -#> 277 1.2 -#> 278 1.2 -#> 279 1.2 -#> 280 1.2 -#> 281 1.2 -#> 282 1.2 -#> 283 0.4 -#> 284 0.4 -#> 285 0.4 -#> 286 0.4 -#> 287 0.4 -#> 288 0.4 -#> 289 0.4 -#> 290 0.4 -#> 291 0.4 -#> 292 0.4 -#> 293 0.4 -#> 294 0.4 -#> 295 0.4 -#> 296 0.4 -#> 297 0.4 -#> 298 0.4 -#> 299 0.4 -#> 300 0.4 -#> 301 0.4 -#> 302 0.4 -#> 303 0.4 -#> 304 0.4 -#> 305 0.4 -#> 306 0.4 -#> 307 0.4 -#> 308 0.4 -#> 309 0.4 -#> 310 0.4 -#> 311 0.4 -#> 312 0.4 -#> 313 0.4 -#> 314 0.4 -#> 315 1.4 -#> 316 1.4 -#> 317 1.4 -#> 318 1.4 -#> 319 1.4 -#> 320 1.4 -#> 321 1.4 -#> 322 1.4 -#> 323 1.4 -#> 324 1.4 -#> 325 1.4 -#> 326 1.4 -#> 327 1.4 -#> 328 1.4 -#> 329 1.4 -#> 330 1.4 -#> 331 1.4 -#> 332 1.4 -#> 333 1.4 -#> 334 1.4 -#> 335 1.4 -#> 336 1.4 -#> 337 1.4 -#> 338 1.4 -#> 339 1.4 -#> 340 1.4 -#> 341 1.4 -#> 342 1.4 -#> 343 1.4 -#> 344 1.4 -#> 345 1.4 -#> 346 0.5 -#> 347 0.5 -#> 348 0.5 -#> 349 0.5 -#> 350 0.5 -#> 351 0.5 -#> 352 0.5 -#> 353 0.5 -#> 354 0.5 -#> 355 0.5 -#> 356 0.5 -#> 357 0.5 -#> 358 0.5 -#> 359 0.5 -#> 360 0.5 -#> 361 0.5 -#> 362 0.5 -#> 363 0.5 -#> 364 0.5 -#> 365 0.5 -#> 366 0.5 -#> 367 0.5 -#> 368 0.5 -#> 369 0.5 -#> 370 0.5 -#> 371 0.5 -#> 372 0.5 -#> 373 0.5 -#> 374 0.5 -#> 375 0.5 -#> 376 0.5 -#> 377 0.5 -#> 378 1.0 -#> 379 1.0 -#> 380 1.0 -#> 381 1.0 -#> 382 1.0 -#> 383 1.0 -#> 384 1.0 -#> 385 1.0 -#> 386 1.0 -#> 387 1.0 -#> 388 1.0 -#> 389 1.0 -#> 390 1.0 -#> 391 1.0 -#> 392 1.0 -#> 393 1.0 -#> 394 1.0 -#> 395 1.0 -#> 396 1.0 -#> 397 1.0 -#> 398 1.0 -#> 399 1.0 -#> 400 1.0 -#> 401 1.0 -#> 402 1.0 -#> 403 1.0 -#> 404 1.0 -#> 405 1.0 -#> 406 1.0 -#> 407 1.0 -#> 408 1.0 -#> 409 1.0 -#> 410 2.1 -#> 411 2.1 -#> 412 2.1 -#> 413 2.1 -#> 414 2.1 -#> 415 2.1 -#> 416 2.1 -#> 417 2.1 -#> 418 2.1 -#> 419 2.1 -#> 420 2.1 -#> 421 2.1 -#> 422 2.1 -#> 423 2.1 -#> 424 2.1 -#> 425 2.1 -#> 426 2.1 -#> 427 2.1 -#> 428 2.1 -#> 429 2.1 -#> 430 2.1 -#> 431 2.1 -#> 432 2.1 -#> 433 2.1 -#> 434 2.1 -#> 435 2.1 -#> 436 2.1 -#> 437 2.1 -#> 438 2.1 -#> 439 3.7 -#> 440 3.7 -#> 441 3.7 -#> 442 3.7 -#> 443 3.7 -#> 444 3.7 -#> 445 3.7 -#> 446 3.7 -#> 447 3.7 -#> 448 3.7 -#> 449 3.7 -#> 450 3.7 -#> 451 3.7 -#> 452 3.7 -#> 453 3.7 -#> 454 3.7 -#> 455 3.7 -#> 456 3.7 -#> 457 3.7 -#> 458 3.7 -#> 459 3.7 -#> 460 3.7 -#> 461 3.7 -#> 462 3.7 -#> 463 3.7 -#> 464 3.7 -#> 465 3.7 -#> 466 3.7 -#> 467 3.7 -#> 468 3.7 -#> 469 0.7 -#> 470 0.7 -#> 471 0.7 -#> 472 0.7 -#> 473 0.7 -#> 474 0.7 -#> 475 0.7 -#> 476 0.7 -#> 477 0.7 -#> 478 0.7 -#> 479 0.7 -#> 480 0.7 -#> 481 0.7 -#> 482 0.7 -#> 483 0.7 -#> 484 0.7 -#> 485 0.7 -#> 486 0.7 -#> 487 0.7 -#> 488 0.7 -#> 489 0.7 -#> 490 0.7 -#> 491 0.7 -#> 492 0.7 -#> 493 0.7 -#> 494 0.7 -#> 495 0.7 -#> 496 0.7 -#> 497 0.7 -#> 498 0.7 -#> 499 0.7 -#> 500 0.7 -#> 501 1.8 -#> 502 1.8 -#> 503 1.8 -#> 504 1.8 -#> 505 1.8 -#> 506 1.8 -#> 507 1.8 -#> 508 1.8 -#> 509 1.8 -#> 510 1.8 -#> 511 1.8 -#> 512 1.8 -#> 513 1.8 -#> 514 1.8 -#> 515 1.8 -#> 516 1.8 -#> 517 1.8 -#> 518 1.8 -#> 519 1.8 -#> 520 1.8 -#> 521 1.8 -#> 522 1.8 -#> 523 1.8 -#> 524 1.8 -#> 525 1.8 -#> 526 1.8 -#> 527 1.8 -#> 528 1.8 -#> 529 1.8 -#> 530 1.8 -#> 531 1.8 -#> 532 2.1 -#> 533 2.1 -#> 534 2.1 -#> 535 2.1 -#> 536 2.1 -#> 537 2.1 -#> 538 2.1 -#> 539 2.1 -#> 540 2.1 -#> 541 2.1 -#> 542 2.1 -#> 543 2.1 -#> 544 2.1 -#> 545 2.1 -#> 546 2.1 -#> 547 2.1 -#> 548 2.1 -#> 549 2.1 -#> 550 2.1 -#> 551 2.1 -#> 552 2.1 -#> 553 2.1 -#> 554 2.1 -#> 555 2.1 -#> 556 2.1 -#> 557 2.1 -#> 558 2.1 -#> 559 2.1 -#> 560 2.1 -#> 561 2.1 -#> 562 2.1 -#> 563 2.1 -#> 564 0.6 -#> 565 0.6 -#> 566 0.6 -#> 567 0.6 -#> 568 0.6 -#> 569 0.6 -#> 570 0.6 -#> 571 0.6 -#> 572 0.6 -#> 573 0.6 -#> 574 0.6 -#> 575 0.6 -#> 576 0.6 -#> 577 0.6 -#> 578 0.6 -#> 579 0.6 -#> 580 0.6 -#> 581 0.6 -#> 582 0.6 -#> 583 0.6 -#> 584 0.6 -#> 585 0.6 -#> 586 0.6 -#> 587 0.6 -#> 588 0.6 -#> 589 0.6 -#> 590 0.6 -#> 591 0.6 -#> 592 1.0 -#> 593 1.0 -#> 594 1.0 -#> 595 1.0 -#> 596 1.0 -#> 597 1.0 -#> 598 1.0 -#> 599 1.0 -#> 600 1.0 -#> 601 1.0 -#> 602 1.0 -#> 603 1.0 -#> 604 1.0 -#> 605 1.0 -#> 606 1.0 -#> 607 1.0 -#> 608 1.0 -#> 609 1.0 -#> 610 1.0 -#> 611 1.0 -#> 612 1.0 -#> 613 1.0 -#> 614 1.0 -#> 615 1.0 -#> 616 1.0 -#> 617 1.0 -#> 618 1.0 -#> 619 1.0 -#> 620 1.0 -#> 621 1.0 -#> 622 1.0 -#> 623 1.3 -#> 624 1.3 -#> 625 1.3 -#> 626 1.3 -#> 627 1.3 -#> 628 1.3 -#> 629 1.3 -#> 630 1.3 -#> 631 1.3 -#> 632 1.3 -#> 633 1.3 -#> 634 1.3 -#> 635 1.3 -#> 636 1.3 -#> 637 1.3 -#> 638 1.3 -#> 639 1.3 -#> 640 1.3 -#> 641 1.3 -#> 642 1.3 -#> 643 1.3 -#> 644 1.3 -#> 645 1.3 -#> 646 1.3 -#> 647 1.3 -#> 648 1.3 -#> 649 1.3 -#> 650 1.3 -#> 651 1.3 -#> 652 1.3 -#> 653 1.3 -#> 654 1.8 -#> 655 1.8 -#> 656 1.8 -#> 657 1.8 -#> 658 1.8 -#> 659 1.8 -#> 660 1.8 -#> 661 1.8 -#> 662 1.8 -#> 663 1.8 -#> 664 1.8 -#> 665 1.8 -#> 666 1.8 -#> 667 1.8 -#> 668 1.8 -#> 669 1.8 -#> 670 1.8 -#> 671 1.8 -#> 672 1.8 -#> 673 1.8 -#> 674 1.8 -#> 675 1.8 -#> 676 1.8 -#> 677 1.8 -#> 678 1.8 -#> 679 1.8 -#> 680 1.8 -#> 681 1.8 -#> 682 1.8 -#> 683 1.8 -#> 684 1.8 -#> 685 1.8 -#> 686 0.8 -#> 687 0.8 -#> 688 0.8 -#> 689 0.8 -#> 690 0.8 -#> 691 0.8 -#> 692 0.8 -#> 693 0.8 -#> 694 0.8 -#> 695 0.8 -#> 696 0.8 -#> 697 0.8 -#> 698 0.8 -#> 699 0.8 -#> 700 0.8 -#> 701 0.8 -#> 702 0.8 -#> 703 0.8 -#> 704 0.8 -#> 705 0.8 -#> 706 0.8 -#> 707 0.8 -#> 708 0.8 -#> 709 0.8 -#> 710 0.8 -#> 711 0.8 -#> 712 0.8 -#> 713 0.8 -#> 714 0.8 -#> 715 0.8 -#> 716 0.8 -#> 717 1.0 -#> 718 1.0 -#> 719 1.0 -#> 720 1.0 -#> 721 1.0 -#> 722 1.0 -#> 723 1.0 -#> 724 1.0 -#> 725 1.0 -#> 726 1.0 -#> 727 1.0 -#> 728 1.0 -#> 729 1.0 -#> 730 1.0 -#> 731 1.0 -#> 732 1.0 -#> 733 1.0 -#> 734 1.0 -#> 735 1.0 -#> 736 1.0 -#> 737 1.0 -#> 738 1.0 -#> 739 1.0 -#> 740 1.0 -#> 741 1.0 -#> 742 1.0 -#> 743 1.0 -#> 744 1.0 -#> 745 1.0 -#> 746 1.0 -#> 747 1.0 -#> 748 1.0 -#> 749 1.1 -#> 750 1.1 -#> 751 1.1 -#> 752 1.1 -#> 753 1.1 -#> 754 1.1 -#> 755 1.1 -#> 756 1.1 -#> 757 1.1 -#> 758 1.1 -#> 759 1.1 -#> 760 1.1 -#> 761 1.1 -#> 762 1.1 -#> 763 1.1 -#> 764 1.1 -#> 765 1.1 -#> 766 1.1 -#> 767 1.1 -#> 768 1.1 -#> 769 1.1 -#> 770 1.1 -#> 771 1.1 -#> 772 1.1 -#> 773 1.1 -#> 774 1.1 -#> 775 1.1 -#> 776 1.1 -#> 777 1.1 -#> 778 1.1 -#> 779 0.8 -#> 780 0.8 -#> 781 0.8 -#> 782 0.8 -#> 783 0.8 -#> 784 0.8 -#> 785 0.8 -#> 786 0.8 -#> 787 0.8 -#> 788 0.8 -#> 789 0.8 -#> 790 0.8 -#> 791 0.8 -#> 792 0.8 -#> 793 0.8 -#> 794 0.8 -#> 795 0.8 -#> 796 0.8 -#> 797 0.8 -#> 798 0.8 -#> 799 0.8 -#> 800 0.8 -#> 801 0.8 -#> 802 0.8 -#> 803 0.8 -#> 804 0.8 -#> 805 0.8 -#> 806 0.8 -#> 807 0.8 -#> 808 0.8 -#> 809 0.8 -#> 810 0.8 -#> 811 2.1 -#> 812 2.1 -#> 813 2.1 -#> 814 2.1 -#> 815 2.1 -#> 816 2.1 -#> 817 2.1 -#> 818 2.1 -#> 819 2.1 -#> 820 2.1 -#> 821 2.1 -#> 822 2.1 -#> 823 2.1 -#> 824 2.1 -#> 825 2.1 -#> 826 2.1 -#> 827 2.1 -#> 828 2.1 -#> 829 2.1 -#> 830 2.1 -#> 831 2.1 -#> 832 2.1 -#> 833 2.1 -#> 834 2.1 -#> 835 2.1 -#> 836 2.1 -#> 837 2.1 -#> 838 2.1 -#> 839 2.1 -#> 840 2.4 -#> 841 2.4 -#> 842 2.4 -#> 843 2.4 -#> 844 2.4 -#> 845 2.4 -#> 846 2.4 -#> 847 2.4 -#> 848 2.4 -#> 849 2.4 -#> 850 2.4 -#> 851 2.4 -#> 852 2.4 -#> 853 2.4 -#> 854 2.4 -#> 855 2.4 -#> 856 2.4 -#> 857 2.4 -#> 858 2.4 -#> 859 2.4 -#> 860 2.4 -#> 861 2.4 -#> 862 2.4 -#> 863 2.4 -#> 864 2.4 -#> 865 2.4 -#> 866 2.4 -#> 867 2.4 -#> 868 2.4 -#> 869 2.4 -#> 870 2.4 -#> 871 2.4 -#> 872 1.5 -#> 873 1.5 -#> 874 1.5 -#> 875 1.5 -#> 876 1.5 -#> 877 1.5 -#> 878 1.5 -#> 879 1.5 -#> 880 1.5 -#> 881 1.5 -#> 882 1.5 -#> 883 1.5 -#> 884 1.5 -#> 885 1.5 -#> 886 1.5 -#> 887 1.5 -#> 888 1.5 -#> 889 1.5 -#> 890 1.5 -#> 891 1.5 -#> 892 1.5 -#> 893 1.5 -#> 894 1.5 -#> 895 1.5 -#> 896 1.5 -#> 897 1.5 -#> 898 1.5 -#> 899 1.5 -#> 900 1.5 -#> 901 1.5 -#> 902 1.5 -#> 903 1.5 -#> 904 0.3 -#> 905 0.3 -#> 906 0.3 -#> 907 0.3 -#> 908 0.3 -#> 909 0.3 -#> 910 0.3 -#> 911 0.3 -#> 912 0.3 -#> 913 0.3 -#> 914 0.3 -#> 915 0.3 -#> 916 0.3 -#> 917 0.3 -#> 918 0.3 -#> 919 0.3 -#> 920 0.3 -#> 921 0.3 -#> 922 0.3 -#> 923 0.3 -#> 924 0.3 -#> 925 0.3 -#> 926 0.3 -#> 927 0.3 -#> 928 0.3 -#> 929 0.3 -#> 930 0.3 -#> 931 0.3 -#> 932 0.3 -#> 933 0.3 -#> 934 0.3 -#> 935 0.3 -#> 936 1.2 -#> 937 1.2 -#> 938 1.2 -#> 939 1.2 -#> 940 1.2 -#> 941 1.2 -#> 942 1.2 -#> 943 1.2 -#> 944 1.2 -#> 945 1.2 -#> 946 1.2 -#> 947 1.2 -#> 948 1.2 -#> 949 1.2 -#> 950 1.2 -#> 951 1.2 -#> 952 1.2 -#> 953 1.2 -#> 954 1.2 -#> 955 1.2 -#> 956 1.2 -#> 957 1.2 -#> 958 1.2 -#> 959 1.2 -#> 960 1.2 -#> 961 1.2 -#> 962 1.2 -#> 963 1.2 -#> 964 1.2 -#> 965 1.2 -#> 966 0.5 -#> 967 0.5 -#> 968 0.5 -#> 969 0.5 -#> 970 0.5 -#> 971 0.5 -#> 972 0.5 -#> 973 0.5 -#> 974 0.5 -#> 975 0.5 -#> 976 0.5 -#> 977 0.5 -#> 978 0.5 -#> 979 0.5 -#> 980 0.5 -#> 981 0.5 -#> 982 0.5 -#> 983 0.5 -#> 984 0.5 -#> 985 0.5 -#> 986 0.5 -#> 987 0.5 -#> 988 0.5 -#> 989 0.5 -#> 990 0.5 -#> 991 0.5 -#> 992 0.5 -#> 993 0.5 -#> 994 0.5 -#> 995 0.5 -#> 996 1.4 -#> 997 1.4 -#> 998 1.4 -#> 999 1.4 -#> 1000 1.4 -#> 1001 1.4 -#> 1002 1.4 -#> 1003 1.4 -#> 1004 1.4 -#> 1005 1.4 -#> 1006 1.4 -#> 1007 1.4 -#> 1008 1.4 -#> 1009 1.4 -#> 1010 1.4 -#> 1011 1.4 -#> 1012 1.4 -#> 1013 1.4 -#> 1014 1.4 -#> 1015 1.4 -#> 1016 1.4 -#> 1017 1.4 -#> 1018 1.4 -#> 1019 1.4 -#> 1020 1.4 -#> 1021 1.4 -#> 1022 1.4 -#> 1023 1.4 -#> 1024 1.4 -#> 1025 1.4 -#> 1026 1.4 -#> 1027 1.4 -#> 1028 4.0 -#> 1029 4.0 -#> 1030 4.0 -#> 1031 4.0 -#> 1032 4.0 -#> 1033 4.0 -#> 1034 4.0 -#> 1035 4.0 -#> 1036 4.0 -#> 1037 4.0 -#> 1038 4.0 -#> 1039 4.0 -#> 1040 4.0 -#> 1041 4.0 -#> 1042 4.0 -#> 1043 4.0 -#> 1044 4.0 -#> 1045 4.0 -#> 1046 4.0 -#> 1047 4.0 -#> 1048 4.0 -#> 1049 4.0 -#> 1050 4.0 -#> 1051 4.0 -#> 1052 4.0 -#> 1053 4.0 -#> 1054 4.0 -#> 1055 4.0 -#> 1056 4.0 -#> 1057 4.0 -#> 1058 4.0 -#> 1059 4.0 -#> 1060 0.2 -#> 1061 0.2 -#> 1062 0.2 -#> 1063 0.2 -#> 1064 0.2 -#> 1065 0.2 -#> 1066 0.2 -#> 1067 0.2 -#> 1068 0.2 -#> 1069 0.2 -#> 1070 0.2 -#> 1071 0.2 -#> 1072 0.2 -#> 1073 0.2 -#> 1074 0.2 -#> 1075 0.2 -#> 1076 0.2 -#> 1077 0.2 -#> 1078 0.2 -#> 1079 0.2 -#> 1080 0.2 -#> 1081 0.2 -#> 1082 0.2 -#> 1083 0.2 -#> 1084 0.2 -#> 1085 0.2 -#> 1086 0.2 -#> 1087 0.2 -#> 1088 0.2 -#> 1089 0.2 -#> 1090 0.2 -#> 1091 0.6 -#> 1092 0.6 -#> 1093 0.6 -#> 1094 0.6 -#> 1095 0.6 -#> 1096 0.6 -#> 1097 0.6 -#> 1098 0.6 -#> 1099 0.6 -#> 1100 0.6 -#> 1101 0.6 -#> 1102 0.6 -#> 1103 0.6 -#> 1104 0.6 -#> 1105 0.6 -#> 1106 0.6 -#> 1107 0.6 -#> 1108 0.6 -#> 1109 0.6 -#> 1110 0.6 -#> 1111 0.6 -#> 1112 0.6 -#> 1113 0.6 -#> 1114 0.6 -#> 1115 0.6 -#> 1116 0.6 -#> 1117 0.6 -#> 1118 0.6 -#> 1119 0.6 -#> 1120 0.6 -#> 1121 0.6 -#> 1122 0.6 -#> 1123 0.6 -#> 1124 0.6 -#> 1125 0.6 -#> 1126 0.6 -#> 1127 0.6 -#> 1128 0.6 -#> 1129 0.6 -#> 1130 0.6 -#> 1131 0.6 -#> 1132 0.6 -#> 1133 0.6 -#> 1134 0.6 -#> 1135 0.6 -#> 1136 0.6 -#> 1137 0.6 -#> 1138 0.6 -#> 1139 0.6 -#> 1140 0.6 -#> 1141 0.6 -#> 1142 0.6 -#> 1143 0.6 -#> 1144 0.6 -#> 1145 0.6 -#> 1146 0.6 -#> 1147 0.6 -#> 1148 0.6 -#> 1149 0.6 -#> 1150 0.6 -#> 1151 0.6 -#> 1152 0.6 -#> 1153 0.6 -#> 1154 0.2 -#> 1155 0.2 -#> 1156 0.2 -#> 1157 0.2 -#> 1158 0.2 -#> 1159 0.2 -#> 1160 0.2 -#> 1161 0.2 -#> 1162 0.2 -#> 1163 0.2 -#> 1164 0.2 -#> 1165 0.2 -#> 1166 0.2 -#> 1167 0.2 -#> 1168 0.2 -#> 1169 0.2 -#> 1170 0.2 -#> 1171 0.2 -#> 1172 0.2 -#> 1173 0.2 -#> 1174 0.2 -#> 1175 0.2 -#> 1176 0.2 -#> 1177 0.2 -#> 1178 0.2 -#> 1179 0.2 -#> 1180 0.2 -#> 1181 0.2 -#> 1182 0.2 -#> 1183 0.2 -#> 1184 0.2 -#> 1185 0.2 -#> 1186 0.5 -#> 1187 0.5 -#> 1188 0.5 -#> 1189 0.5 -#> 1190 0.5 -#> 1191 0.5 -#> 1192 0.5 -#> 1193 0.5 -#> 1194 0.5 -#> 1195 0.5 -#> 1196 0.5 -#> 1197 0.5 -#> 1198 0.5 -#> 1199 0.5 -#> 1200 0.5 -#> 1201 0.5 -#> 1202 0.5 -#> 1203 0.5 -#> 1204 0.5 -#> 1205 0.5 -#> 1206 0.5 -#> 1207 0.5 -#> 1208 0.5 -#> 1209 0.5 -#> 1210 0.5 -#> 1211 0.5 -#> 1212 0.5 -#> 1213 0.5 -#> 1214 0.5 -#> 1215 0.5 -#> 1216 0.5 -#> 1217 0.6 -#> 1218 0.6 -#> 1219 0.6 -#> 1220 0.6 -#> 1221 0.6 -#> 1222 0.6 -#> 1223 0.6 -#> 1224 0.6 -#> 1225 0.6 -#> 1226 0.6 -#> 1227 0.6 -#> 1228 0.6 -#> 1229 0.6 -#> 1230 0.6 -#> 1231 0.6 -#> 1232 0.6 -#> 1233 0.6 -#> 1234 0.6 -#> 1235 0.6 -#> 1236 0.6 -#> 1237 0.6 -#> 1238 0.6 -#> 1239 0.6 -#> 1240 0.6 -#> 1241 0.6 -#> 1242 0.6 -#> 1243 0.6 -#> 1244 0.6 -#> 1245 0.6 -#> 1246 0.6 -#> 1247 0.6 -#> 1248 0.6 -#> 1249 1.7 -#> 1250 1.7 -#> 1251 1.7 -#> 1252 1.7 -#> 1253 1.7 -#> 1254 1.7 -#> 1255 1.7 -#> 1256 1.7 -#> 1257 1.7 -#> 1258 1.7 -#> 1259 1.7 -#> 1260 1.7 -#> 1261 1.7 -#> 1262 1.7 -#> 1263 1.7 -#> 1264 1.7 -#> 1265 1.7 -#> 1266 1.7 -#> 1267 1.7 -#> 1268 1.7 -#> 1269 1.7 -#> 1270 1.7 -#> 1271 1.7 -#> 1272 1.7 -#> 1273 1.7 -#> 1274 1.7 -#> 1275 1.7 -#> 1276 1.7 -#> 1277 1.7 -#> 1278 1.7 -#> 1279 1.7 -#> 1280 2.0 -#> 1281 2.0 -#> 1282 2.0 -#> 1283 2.0 -#> 1284 2.0 -#> 1285 2.0 -#> 1286 2.0 -#> 1287 2.0 -#> 1288 2.0 -#> 1289 2.0 -#> 1290 2.0 -#> 1291 2.0 -#> 1292 2.0 -#> 1293 2.0 -#> 1294 2.0 -#> 1295 2.0 -#> 1296 2.0 -#> 1297 2.0 -#> 1298 2.0 -#> 1299 2.0 -#> 1300 2.0 -#> 1301 2.0 -#> 1302 2.0 -#> 1303 2.0 -#> 1304 2.0 -#> 1305 2.0 -#> 1306 2.0 -#> 1307 2.0 -#> 1308 2.0 -#> 1309 2.0 -#> 1310 2.0 -#> 1311 3.4 -#> 1312 3.4 -#> 1313 3.4 -#> 1314 3.4 -#> 1315 3.4 -#> 1316 3.4 -#> 1317 3.4 -#> 1318 3.4 -#> 1319 3.4 -#> 1320 3.4 -#> 1321 3.4 -#> 1322 3.4 -#> 1323 3.4 -#> 1324 3.4 -#> 1325 3.4 -#> 1326 3.4 -#> 1327 3.4 -#> 1328 3.4 -#> 1329 3.4 -#> 1330 3.4 -#> 1331 3.4 -#> 1332 3.4 -#> 1333 3.4 -#> 1334 3.4 -#> 1335 3.4 -#> 1336 3.4 -#> 1337 3.4 -#> 1338 3.4 -#> 1339 3.4 -#> 1340 3.4 -#> 1341 3.4 -#> 1342 3.4 -#> 1343 1.7 -#> 1344 1.7 -#> 1345 1.7 -#> 1346 1.7 -#> 1347 1.7 -#> 1348 1.7 -#> 1349 1.7 -#> 1350 1.7 -#> 1351 1.7 -#> 1352 1.7 -#> 1353 1.7 -#> 1354 1.7 -#> 1355 1.7 -#> 1356 1.7 -#> 1357 1.7 -#> 1358 1.7 -#> 1359 1.7 -#> 1360 1.7 -#> 1361 1.7 -#> 1362 1.7 -#> 1363 1.7 -#> 1364 1.7 -#> 1365 1.7 -#> 1366 1.7 -#> 1367 1.7 -#> 1368 1.7 -#> 1369 1.7 -#> 1370 1.7 -#> 1371 1.7 -#> 1372 0.5 -#> 1373 0.5 -#> 1374 0.5 -#> 1375 0.5 -#> 1376 0.5 -#> 1377 0.5 -#> 1378 0.5 -#> 1379 0.5 -#> 1380 0.5 -#> 1381 0.5 -#> 1382 0.5 -#> 1383 0.5 -#> 1384 0.5 -#> 1385 0.5 -#> 1386 0.5 -#> 1387 0.5 -#> 1388 0.5 -#> 1389 0.5 -#> 1390 0.5 -#> 1391 0.5 -#> 1392 0.5 -#> 1393 0.5 -#> 1394 0.5 -#> 1395 0.5 -#> 1396 0.5 -#> 1397 0.5 -#> 1398 0.5 -#> 1399 0.5 -#> 1400 0.5 -#> 1401 0.5 -#> 1402 0.5 -#> 1403 2.7 -#> 1404 2.7 -#> 1405 2.7 -#> 1406 2.7 -#> 1407 2.7 -#> 1408 2.7 -#> 1409 2.7 -#> 1410 2.7 -#> 1411 2.7 -#> 1412 2.7 -#> 1413 2.7 -#> 1414 2.7 -#> 1415 2.7 -#> 1416 2.7 -#> 1417 2.7 -#> 1418 2.7 -#> 1419 2.7 -#> 1420 2.7 -#> 1421 2.7 -#> 1422 2.7 -#> 1423 2.7 -#> 1424 2.7 -#> 1425 2.7 -#> 1426 2.7 -#> 1427 2.7 -#> 1428 2.7 -#> 1429 2.7 -#> 1430 2.7 -#> 1431 2.7 -#> 1432 2.7 -#> 1433 2.7 -#> 1434 2.7 -#> 1435 1.2 -#> 1436 1.2 -#> 1437 1.2 -#> 1438 1.2 -#> 1439 1.2 -#> 1440 1.2 -#> 1441 1.2 -#> 1442 1.2 -#> 1443 1.2 -#> 1444 1.2 -#> 1445 1.2 -#> 1446 1.2 -#> 1447 1.2 -#> 1448 1.2 -#> 1449 1.2 -#> 1450 1.2 -#> 1451 1.2 -#> 1452 1.2 -#> 1453 1.2 -#> 1454 1.2 -#> 1455 1.2 -#> 1456 1.2 -#> 1457 1.2 -#> 1458 1.2 -#> 1459 1.2 -#> 1460 1.2 -#> 1461 1.2 -#> 1462 1.2 -#> 1463 1.2 -#> 1464 1.2 -#> 1465 1.2 -#> 1466 1.7 -#> 1467 1.7 -#> 1468 1.7 -#> 1469 1.7 -#> 1470 1.7 -#> 1471 1.7 -#> 1472 1.7 -#> 1473 1.7 -#> 1474 1.7 -#> 1475 1.7 -#> 1476 1.7 -#> 1477 1.7 -#> 1478 1.7 -#> 1479 1.7 -#> 1480 1.7 -#> 1481 1.7 -#> 1482 1.7 -#> 1483 1.7 -#> 1484 1.7 -#> 1485 1.7 -#> 1486 1.7 -#> 1487 1.7 -#> 1488 1.7 -#> 1489 1.7 -#> 1490 1.7 -#> 1491 1.7 -#> 1492 1.7 -#> 1493 1.7 -#> 1494 1.7 -#> 1495 1.7 -#> 1496 2.0 -#> 1497 2.0 -#> 1498 2.0 -#> 1499 2.0 -#> 1500 2.0 -#> 1501 2.0 -#> 1502 2.0 -#> 1503 2.0 -#> 1504 2.0 -#> 1505 2.0 -#> 1506 2.0 -#> 1507 2.0 -#> 1508 2.0 -#> 1509 2.0 -#> 1510 2.0 -#> 1511 2.0 -#> 1512 2.0 -#> 1513 2.0 -#> 1514 2.0 -#> 1515 2.0 -#> 1516 2.0 -#> 1517 2.0 -#> 1518 2.0 -#> 1519 2.0 -#> 1520 2.0 -#> 1521 2.0 -#> 1522 2.0 -#> 1523 2.0 -#> 1524 2.0 -#> 1525 2.0 -#> 1526 2.0 -#> 1527 2.0 -#> 1528 0.3 -#> 1529 0.3 -#> 1530 0.3 -#> 1531 0.3 -#> 1532 0.3 -#> 1533 0.3 -#> 1534 0.3 -#> 1535 0.3 -#> 1536 0.3 -#> 1537 0.3 -#> 1538 0.3 -#> 1539 0.3 -#> 1540 0.3 -#> 1541 0.3 -#> 1542 0.3 -#> 1543 0.3 -#> 1544 0.3 -#> 1545 0.3 -#> 1546 0.3 -#> 1547 0.3 -#> 1548 0.3 -#> 1549 0.3 -#> 1550 0.3 -#> 1551 0.3 -#> 1552 0.3 -#> 1553 0.3 -#> 1554 0.3 -#> 1555 0.3 -#> 1556 0.3 -#> 1557 0.3 -#> 1558 0.3 -#> 1559 0.3 -#> 1560 0.4 -#> 1561 0.4 -#> 1562 0.4 -#> 1563 0.4 -#> 1564 0.4 -#> 1565 0.4 -#> 1566 0.4 -#> 1567 0.4 -#> 1568 0.4 -#> 1569 0.4 -#> 1570 0.4 -#> 1571 0.4 -#> 1572 0.4 -#> 1573 0.4 -#> 1574 0.4 -#> 1575 0.4 -#> 1576 0.4 -#> 1577 0.4 -#> 1578 0.4 -#> 1579 0.4 -#> 1580 0.4 -#> 1581 0.4 -#> 1582 0.4 -#> 1583 0.4 -#> 1584 0.4 -#> 1585 0.4 -#> 1586 0.4 -#> 1587 0.4 -#> 1588 0.4 -#> 1589 0.4 -#> 1590 0.4 -#> 1591 0.0 -#> 1592 0.0 -#> 1593 0.0 -#> 1594 0.0 -#> 1595 0.0 -#> 1596 0.0 -#> 1597 0.0 -#> 1598 0.0 -#> 1599 0.0 -#> 1600 0.0 -#> 1601 0.0 -#> 1602 0.0 -#> 1603 0.0 -#> 1604 0.0 -#> 1605 0.0 -#> 1606 0.0 -#> 1607 0.0 -#> 1608 0.0 -#> 1609 0.0 -#> 1610 0.0 -#> 1611 0.0 -#> 1612 0.0 -#> 1613 0.0 -#> 1614 0.0 -#> 1615 0.0 -#> 1616 0.0 -#> 1617 0.0 -#> 1618 0.0 -#> 1619 0.0 -#> 1620 0.0 -#> 1621 0.0 -#> 1622 0.0 -#> 1623 0.5 -#> 1624 0.5 -#> 1625 0.5 -#> 1626 0.5 -#> 1627 0.5 -#> 1628 0.5 -#> 1629 0.5 -#> 1630 0.5 -#> 1631 0.5 -#> 1632 0.5 -#> 1633 0.5 -#> 1634 0.5 -#> 1635 0.5 -#> 1636 0.5 -#> 1637 0.5 -#> 1638 0.5 -#> 1639 0.5 -#> 1640 0.5 -#> 1641 0.5 -#> 1642 0.5 -#> 1643 0.5 -#> 1644 0.5 -#> 1645 0.5 -#> 1646 0.5 -#> 1647 0.5 -#> 1648 0.5 -#> 1649 0.5 -#> 1650 0.5 -#> 1651 0.5 -#> 1652 0.5 -#> 1653 0.7 -#> 1654 0.7 -#> 1655 0.7 -#> 1656 0.7 -#> 1657 0.7 -#> 1658 0.7 -#> 1659 0.7 -#> 1660 0.7 -#> 1661 0.7 -#> 1662 0.7 -#> 1663 0.7 -#> 1664 0.7 -#> 1665 0.7 -#> 1666 0.7 -#> 1667 0.7 -#> 1668 0.7 -#> 1669 0.7 -#> 1670 0.7 -#> 1671 0.7 -#> 1672 0.7 -#> 1673 0.7 -#> 1674 0.7 -#> 1675 0.7 -#> 1676 0.7 -#> 1677 0.7 -#> 1678 0.7 -#> 1679 0.7 -#> 1680 0.7 -#> 1681 0.7 -#> 1682 0.7 -#> 1683 0.7 -#> 1684 0.7 -#> 1685 0.8 -#> 1686 0.8 -#> 1687 0.8 -#> 1688 0.8 -#> 1689 0.8 -#> 1690 0.8 -#> 1691 0.8 -#> 1692 0.8 -#> 1693 0.8 -#> 1694 0.8 -#> 1695 0.8 -#> 1696 0.8 -#> 1697 0.8 -#> 1698 0.8 -#> 1699 0.8 -#> 1700 0.8 -#> 1701 0.8 -#> 1702 0.8 -#> 1703 0.8 -#> 1704 0.8 -#> 1705 0.8 -#> 1706 0.8 -#> 1707 0.8 -#> 1708 0.8 -#> 1709 0.8 -#> 1710 0.8 -#> 1711 0.8 -#> 1712 0.8 -#> 1713 0.8 -#> 1714 0.8 -#> 1715 0.8 -#> 1716 0.8 -#> 1717 0.6 -#> 1718 0.6 -#> 1719 0.6 -#> 1720 0.6 -#> 1721 0.6 -#> 1722 0.6 -#> 1723 0.6 -#> 1724 0.6 -#> 1725 0.6 -#> 1726 0.6 -#> 1727 0.6 -#> 1728 0.6 -#> 1729 0.6 -#> 1730 0.6 -#> 1731 0.6 -#> 1732 0.6 -#> 1733 0.6 -#> 1734 0.6 -#> 1735 0.6 -#> 1736 0.6 -#> 1737 0.6 -#> 1738 0.6 -#> 1739 0.6 -#> 1740 0.6 -#> 1741 0.6 -#> 1742 0.6 -#> 1743 0.6 -#> 1744 0.6 -#> 1745 0.6 -#> 1746 0.6 -#> 1747 0.6 -#> 1748 0.6 -#> 1749 1.3 -#> 1750 1.3 -#> 1751 1.3 -#> 1752 1.3 -#> 1753 1.3 -#> 1754 1.3 -#> 1755 1.3 -#> 1756 1.3 -#> 1757 1.3 -#> 1758 1.3 -#> 1759 1.3 -#> 1760 1.3 -#> 1761 1.3 -#> 1762 1.3 -#> 1763 1.3 -#> 1764 1.3 -#> 1765 1.3 -#> 1766 1.3 -#> 1767 1.3 -#> 1768 1.3 -#> 1769 1.3 -#> 1770 1.3 -#> 1771 1.3 -#> 1772 1.3 -#> 1773 1.3 -#> 1774 1.3 -#> 1775 1.3 -#> 1776 1.3 -#> 1777 1.3 -#> 1778 1.3 -#> 1779 1.3 -#> 1780 0.8 -#> 1781 0.8 -#> 1782 0.8 -#> 1783 0.8 -#> 1784 0.8 -#> 1785 0.8 -#> 1786 0.8 -#> 1787 0.8 -#> 1788 0.8 -#> 1789 0.8 -#> 1790 0.8 -#> 1791 0.8 -#> 1792 0.8 -#> 1793 0.8 -#> 1794 0.8 -#> 1795 0.8 -#> 1796 0.8 -#> 1797 0.8 -#> 1798 0.8 -#> 1799 0.8 -#> 1800 0.8 -#> 1801 0.8 -#> 1802 0.8 -#> 1803 0.8 -#> 1804 0.8 -#> 1805 0.8 -#> 1806 0.8 -#> 1807 0.8 -#> 1808 0.8 -#> 1809 0.9 -#> 1810 0.9 -#> 1811 0.9 -#> 1812 0.9 -#> 1813 0.9 -#> 1814 0.9 -#> 1815 0.9 -#> 1816 0.9 -#> 1817 0.9 -#> 1818 0.9 -#> 1819 0.9 -#> 1820 0.9 -#> 1821 0.9 -#> 1822 0.9 -#> 1823 0.9 -#> 1824 0.9 -#> 1825 0.9 -#> 1826 0.9 -#> 1827 0.9 -#> 1828 0.9 -#> 1829 0.9 -#> 1830 0.9 -#> 1831 0.9 -#> 1832 0.9 -#> 1833 0.9 -#> 1834 0.9 -#> 1835 0.9 -#> 1836 0.9 -#> 1837 0.9 -#> 1838 0.9 -#> 1839 0.9 -#> 1840 0.7 -#> 1841 0.7 -#> 1842 0.7 -#> 1843 0.7 -#> 1844 0.7 -#> 1845 0.7 -#> 1846 0.7 -#> 1847 0.7 -#> 1848 0.7 -#> 1849 0.7 -#> 1850 0.7 -#> 1851 0.7 -#> 1852 0.7 -#> 1853 0.7 -#> 1854 0.7 -#> 1855 0.7 -#> 1856 0.7 -#> 1857 0.7 -#> 1858 0.7 -#> 1859 0.7 -#> 1860 0.7 -#> 1861 0.7 -#> 1862 0.7 -#> 1863 0.7 -#> 1864 0.7 -#> 1865 0.7 -#> 1866 0.7 -#> 1867 0.7 -#> 1868 0.7 -#> 1869 0.7 -#> 1870 0.7 -#> 1871 0.7 -#> 1872 1.6 -#> 1873 1.6 -#> 1874 1.6 -#> 1875 1.6 -#> 1876 1.6 -#> 1877 1.6 -#> 1878 1.6 -#> 1879 1.6 -#> 1880 1.6 -#> 1881 1.6 -#> 1882 1.6 -#> 1883 1.6 -#> 1884 1.6 -#> 1885 1.6 -#> 1886 1.6 -#> 1887 1.6 -#> 1888 1.6 -#> 1889 1.6 -#> 1890 1.6 -#> 1891 1.6 -#> 1892 1.6 -#> 1893 1.6 -#> 1894 1.6 -#> 1895 1.6 -#> 1896 1.6 -#> 1897 1.6 -#> 1898 1.6 -#> 1899 1.6 -#> 1900 1.6 -#> 1901 1.6 -#> 1902 1.6 -#> 1903 1.6 -#> 1904 1.6 -#> 1905 1.6 -#> 1906 1.6 -#> 1907 1.6 -#> 1908 1.6 -#> 1909 1.6 -#> 1910 1.6 -#> 1911 1.6 -#> 1912 1.6 -#> 1913 1.6 -#> 1914 1.6 -#> 1915 1.6 -#> 1916 1.6 -#> 1917 1.6 -#> 1918 1.6 -#> 1919 1.6 -#> 1920 1.6 -#> 1921 1.6 -#> 1922 1.6 -#> 1923 1.6 -#> 1924 1.6 -#> 1925 1.6 -#> 1926 1.6 -#> 1927 1.6 -#> 1928 1.6 -#> 1929 1.6 -#> 1930 1.6 -#> 1931 1.6 -#> 1932 1.6 -#> 1933 2.2 -#> 1934 2.2 -#> 1935 2.2 -#> 1936 2.2 -#> 1937 2.2 -#> 1938 2.2 -#> 1939 2.2 -#> 1940 2.2 -#> 1941 2.2 -#> 1942 2.2 -#> 1943 2.2 -#> 1944 2.2 -#> 1945 2.2 -#> 1946 2.2 -#> 1947 2.2 -#> 1948 2.2 -#> 1949 2.2 -#> 1950 2.2 -#> 1951 2.2 -#> 1952 2.2 -#> 1953 2.2 -#> 1954 2.2 -#> 1955 2.2 -#> 1956 2.2 -#> 1957 2.2 -#> 1958 2.2 -#> 1959 2.2 -#> 1960 2.2 -#> 1961 2.2 -#> 1962 2.2 -#> 1963 2.2 -#> 1964 2.2 -#> 1965 0.7 -#> 1966 0.7 -#> 1967 0.7 -#> 1968 0.7 -#> 1969 0.7 -#> 1970 0.7 -#> 1971 0.7 -#> 1972 0.7 -#> 1973 0.7 -#> 1974 0.7 -#> 1975 0.7 -#> 1976 0.7 -#> 1977 0.7 -#> 1978 0.7 -#> 1979 0.7 -#> 1980 0.7 -#> 1981 0.7 -#> 1982 0.7 -#> 1983 0.7 -#> 1984 0.7 -#> 1985 0.7 -#> 1986 0.7 -#> 1987 0.7 -#> 1988 0.7 -#> 1989 0.7 -#> 1990 0.7 -#> 1991 0.7 -#> 1992 0.7 -#> 1993 0.7 -#> 1994 1.1 -#> 1995 1.1 -#> 1996 1.1 -#> 1997 1.1 -#> 1998 1.1 -#> 1999 1.1 -#> 2000 1.1 -#> 2001 1.1 -#> 2002 1.1 -#> 2003 1.1 -#> 2004 1.1 -#> 2005 1.1 -#> 2006 1.1 -#> 2007 1.1 -#> 2008 1.1 -#> 2009 1.1 -#> 2010 1.1 -#> 2011 1.1 -#> 2012 1.1 -#> 2013 1.1 -#> 2014 1.1 -#> 2015 1.1 -#> 2016 1.1 -#> 2017 1.1 -#> 2018 1.1 -#> 2019 1.1 -#> 2020 1.1 -#> 2021 1.1 -#> 2022 1.1 -#> 2023 1.1 -#> 2024 1.1 -#> 2025 1.1 -#> 2026 0.9 -#> 2027 0.9 -#> 2028 0.9 -#> 2029 0.9 -#> 2030 0.9 -#> 2031 0.9 -#> 2032 0.9 -#> 2033 0.9 -#> 2034 0.9 -#> 2035 0.9 -#> 2036 0.9 -#> 2037 0.9 -#> 2038 0.9 -#> 2039 0.9 -#> 2040 0.9 -#> Away_Goals -#> 1 Rafa Mir · 11&rsquor; -#> 2 Rafa Mir · 11&rsquor; -#> 3 Rafa Mir · 11&rsquor; -#> 4 Rafa Mir · 11&rsquor; -#> 5 Rafa Mir · 11&rsquor; -#> 6 Rafa Mir · 11&rsquor; -#> 7 Rafa Mir · 11&rsquor; -#> 8 Rafa Mir · 11&rsquor; -#> 9 Rafa Mir · 11&rsquor; -#> 10 Rafa Mir · 11&rsquor; -#> 11 Rafa Mir · 11&rsquor; -#> 12 Rafa Mir · 11&rsquor; -#> 13 Rafa Mir · 11&rsquor; -#> 14 Rafa Mir · 11&rsquor; -#> 15 Rafa Mir · 11&rsquor; -#> 16 Rafa Mir · 11&rsquor; -#> 17 Rafa Mir · 11&rsquor; -#> 18 Rafa Mir · 11&rsquor; -#> 19 Rafa Mir · 11&rsquor; -#> 20 Rafa Mir · 11&rsquor; -#> 21 Rafa Mir · 11&rsquor; -#> 22 Rafa Mir · 11&rsquor; -#> 23 Rafa Mir · 11&rsquor; -#> 24 Rafa Mir · 11&rsquor; -#> 25 Rafa Mir · 11&rsquor; -#> 26 Rafa Mir · 11&rsquor; -#> 27 Rafa Mir · 11&rsquor; -#> 28 Rafa Mir · 11&rsquor; -#> 29 Rafa Mir · 11&rsquor; -#> 30 Rafa Mir · 11&rsquor; -#> 31 Rafa Mir · 11&rsquor; -#> 32 Rafa Mir · 11&rsquor; -#> 33 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 34 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 35 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 36 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 37 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 38 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 39 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 40 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 41 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 42 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 43 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 44 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 45 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 46 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 47 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 48 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 49 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 50 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 51 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 52 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 53 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 54 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 55 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 56 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 57 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 58 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 59 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 60 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 61 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 62 Edu Expósito · 72&rsquor; Joselu (P) · 90+8&rsquor; -#> 63 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 64 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 65 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 66 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 67 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 68 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 69 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 70 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 71 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 72 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 73 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 74 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 75 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 76 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 77 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 78 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 79 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 80 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 81 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 82 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 83 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 84 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 85 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 86 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 87 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 88 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 89 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 90 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 91 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 92 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 93 Nicolas Jackson · 49&rsquor; Alex Baena · 81&rsquor; Alex Baena · 90&rsquor; -#> 94 -#> 95 -#> 96 -#> 97 -#> 98 -#> 99 -#> 100 -#> 101 -#> 102 -#> 103 -#> 104 -#> 105 -#> 106 -#> 107 -#> 108 -#> 109 -#> 110 -#> 111 -#> 112 -#> 113 -#> 114 -#> 115 -#> 116 -#> 117 -#> 118 -#> 119 -#> 120 -#> 121 -#> 122 -#> 123 -#> 124 -#> 125 Takefusa Kubo · 24&rsquor; -#> 126 Takefusa Kubo · 24&rsquor; -#> 127 Takefusa Kubo · 24&rsquor; -#> 128 Takefusa Kubo · 24&rsquor; -#> 129 Takefusa Kubo · 24&rsquor; -#> 130 Takefusa Kubo · 24&rsquor; -#> 131 Takefusa Kubo · 24&rsquor; -#> 132 Takefusa Kubo · 24&rsquor; -#> 133 Takefusa Kubo · 24&rsquor; -#> 134 Takefusa Kubo · 24&rsquor; -#> 135 Takefusa Kubo · 24&rsquor; -#> 136 Takefusa Kubo · 24&rsquor; -#> 137 Takefusa Kubo · 24&rsquor; -#> 138 Takefusa Kubo · 24&rsquor; -#> 139 Takefusa Kubo · 24&rsquor; -#> 140 Takefusa Kubo · 24&rsquor; -#> 141 Takefusa Kubo · 24&rsquor; -#> 142 Takefusa Kubo · 24&rsquor; -#> 143 Takefusa Kubo · 24&rsquor; -#> 144 Takefusa Kubo · 24&rsquor; -#> 145 Takefusa Kubo · 24&rsquor; -#> 146 Takefusa Kubo · 24&rsquor; -#> 147 Takefusa Kubo · 24&rsquor; -#> 148 Takefusa Kubo · 24&rsquor; -#> 149 Takefusa Kubo · 24&rsquor; -#> 150 Takefusa Kubo · 24&rsquor; -#> 151 Takefusa Kubo · 24&rsquor; -#> 152 Takefusa Kubo · 24&rsquor; -#> 153 Takefusa Kubo · 24&rsquor; -#> 154 Takefusa Kubo · 24&rsquor; -#> 155 Takefusa Kubo · 24&rsquor; -#> 156 Takefusa Kubo · 24&rsquor; -#> 157 -#> 158 -#> 159 -#> 160 -#> 161 -#> 162 -#> 163 -#> 164 -#> 165 -#> 166 -#> 167 -#> 168 -#> 169 -#> 170 -#> 171 -#> 172 -#> 173 -#> 174 -#> 175 -#> 176 -#> 177 -#> 178 -#> 179 -#> 180 -#> 181 -#> 182 -#> 183 -#> 184 -#> 185 -#> 186 -#> 187 -#> 188 -#> 189 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 190 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 191 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 192 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 193 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 194 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 195 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 196 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 197 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 198 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 199 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 200 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 201 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 202 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 203 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 204 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 205 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 206 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 207 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 208 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 209 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 210 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 211 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 212 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 213 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 214 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 215 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 216 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 217 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 218 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 219 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 220 Lucas Vázquez · 61&rsquor; David Alaba · 75&rsquor; -#> 221 -#> 222 -#> 223 -#> 224 -#> 225 -#> 226 -#> 227 -#> 228 -#> 229 -#> 230 -#> 231 -#> 232 -#> 233 -#> 234 -#> 235 -#> 236 -#> 237 -#> 238 -#> 239 -#> 240 -#> 241 -#> 242 -#> 243 -#> 244 -#> 245 -#> 246 -#> 247 -#> 248 -#> 249 -#> 250 -#> 251 -#> 252 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 253 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 254 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 255 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 256 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 257 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 258 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 259 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 260 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 261 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 262 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 263 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 264 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 265 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 266 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 267 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 268 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 269 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 270 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 271 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 272 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 273 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 274 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 275 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 276 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 277 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 278 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 279 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 280 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 281 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 282 Álvaro Morata · 15&rsquor; Álvaro Morata · 59&rsquor; Antoine Griezmann · 75&rsquor; -#> 283 John Donald · 16&rsquor; -#> 284 John Donald · 16&rsquor; -#> 285 John Donald · 16&rsquor; -#> 286 John Donald · 16&rsquor; -#> 287 John Donald · 16&rsquor; -#> 288 John Donald · 16&rsquor; -#> 289 John Donald · 16&rsquor; -#> 290 John Donald · 16&rsquor; -#> 291 John Donald · 16&rsquor; -#> 292 John Donald · 16&rsquor; -#> 293 John Donald · 16&rsquor; -#> 294 John Donald · 16&rsquor; -#> 295 John Donald · 16&rsquor; -#> 296 John Donald · 16&rsquor; -#> 297 John Donald · 16&rsquor; -#> 298 John Donald · 16&rsquor; -#> 299 John Donald · 16&rsquor; -#> 300 John Donald · 16&rsquor; -#> 301 John Donald · 16&rsquor; -#> 302 John Donald · 16&rsquor; -#> 303 John Donald · 16&rsquor; -#> 304 John Donald · 16&rsquor; -#> 305 John Donald · 16&rsquor; -#> 306 John Donald · 16&rsquor; -#> 307 John Donald · 16&rsquor; -#> 308 John Donald · 16&rsquor; -#> 309 John Donald · 16&rsquor; -#> 310 John Donald · 16&rsquor; -#> 311 John Donald · 16&rsquor; -#> 312 John Donald · 16&rsquor; -#> 313 John Donald · 16&rsquor; -#> 314 John Donald · 16&rsquor; -#> 315 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 316 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 317 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 318 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 319 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 320 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 321 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 322 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 323 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 324 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 325 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 326 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 327 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 328 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 329 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 330 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 331 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 332 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 333 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 334 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 335 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 336 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 337 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 338 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 339 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 340 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 341 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 342 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 343 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 344 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 345 Florian Lejeune · 16&rsquor; Isaac Palazón Camacho · 40&rsquor; Pathé Ciss · 59&rsquor; -#> 346 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 347 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 348 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 349 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 350 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 351 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 352 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 353 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 354 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 355 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 356 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 357 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 358 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 359 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 360 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 361 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 362 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 363 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 364 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 365 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 366 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 367 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 368 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 369 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 370 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 371 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 372 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 373 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 374 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 375 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 376 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 377 Anuar · 80&rsquor; Jawad El Yamiq · 88&rsquor; -#> 378 Tomás Alarcón · 76&rsquor; -#> 379 Tomás Alarcón · 76&rsquor; -#> 380 Tomás Alarcón · 76&rsquor; -#> 381 Tomás Alarcón · 76&rsquor; -#> 382 Tomás Alarcón · 76&rsquor; -#> 383 Tomás Alarcón · 76&rsquor; -#> 384 Tomás Alarcón · 76&rsquor; -#> 385 Tomás Alarcón · 76&rsquor; -#> 386 Tomás Alarcón · 76&rsquor; -#> 387 Tomás Alarcón · 76&rsquor; -#> 388 Tomás Alarcón · 76&rsquor; -#> 389 Tomás Alarcón · 76&rsquor; -#> 390 Tomás Alarcón · 76&rsquor; -#> 391 Tomás Alarcón · 76&rsquor; -#> 392 Tomás Alarcón · 76&rsquor; -#> 393 Tomás Alarcón · 76&rsquor; -#> 394 Tomás Alarcón · 76&rsquor; -#> 395 Tomás Alarcón · 76&rsquor; -#> 396 Tomás Alarcón · 76&rsquor; -#> 397 Tomás Alarcón · 76&rsquor; -#> 398 Tomás Alarcón · 76&rsquor; -#> 399 Tomás Alarcón · 76&rsquor; -#> 400 Tomás Alarcón · 76&rsquor; -#> 401 Tomás Alarcón · 76&rsquor; -#> 402 Tomás Alarcón · 76&rsquor; -#> 403 Tomás Alarcón · 76&rsquor; -#> 404 Tomás Alarcón · 76&rsquor; -#> 405 Tomás Alarcón · 76&rsquor; -#> 406 Tomás Alarcón · 76&rsquor; -#> 407 Tomás Alarcón · 76&rsquor; -#> 408 Tomás Alarcón · 76&rsquor; -#> 409 Tomás Alarcón · 76&rsquor; -#> 410 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 411 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 412 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 413 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 414 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 415 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 416 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 417 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 418 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 419 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 420 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 421 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 422 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 423 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 424 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 425 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 426 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 427 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 428 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 429 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 430 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 431 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 432 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 433 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 434 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 435 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 436 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 437 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 438 Borja Iglesias (P) · 9&rsquor; Borja Iglesias (P) · 73&rsquor; -#> 439 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 440 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 441 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 442 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 443 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 444 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 445 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 446 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 447 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 448 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 449 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 450 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 451 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 452 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 453 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 454 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 455 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 456 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 457 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 458 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 459 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 460 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 461 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 462 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 463 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 464 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 465 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 466 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 467 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 468 Karim Benzema (P) · 14&rsquor; Luka Modrić · 41&rsquor; Vinicius Júnior · 56&rsquor; Federico Valverde · 66&rsquor; -#> 469 -#> 470 -#> 471 -#> 472 -#> 473 -#> 474 -#> 475 -#> 476 -#> 477 -#> 478 -#> 479 -#> 480 -#> 481 -#> 482 -#> 483 -#> 484 -#> 485 -#> 486 -#> 487 -#> 488 -#> 489 -#> 490 -#> 491 -#> 492 -#> 493 -#> 494 -#> 495 -#> 496 -#> 497 -#> 498 -#> 499 -#> 500 -#> 501 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 502 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 503 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 504 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 505 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 506 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 507 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 508 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 509 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 510 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 511 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 512 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 513 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 514 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 515 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 516 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 517 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 518 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 519 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 520 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 521 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 522 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 523 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 524 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 525 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 526 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 527 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 528 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 529 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 530 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 531 Yeremi Pino · 73&rsquor; Gerard Moreno · 90+7&rsquor; -#> 532 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 533 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 534 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 535 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 536 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 537 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 538 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 539 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 540 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 541 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 542 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 543 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 544 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 545 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 546 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 547 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 548 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 549 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 550 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 551 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 552 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 553 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 554 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 555 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 556 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 557 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 558 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 559 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 560 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 561 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 562 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 563 Robert Lewandowski · 1&rsquor; Ousmane Dembélé · 66&rsquor; Robert Lewandowski · 68&rsquor; Ansu Fati · 79&rsquor; -#> 564 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 565 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 566 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 567 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 568 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 569 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 570 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 571 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 572 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 573 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 574 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 575 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 576 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 577 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 578 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 579 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 580 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 581 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 582 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 583 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 584 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 585 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 586 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 587 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 588 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 589 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 590 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 591 Enes Ünal · 73&rsquor; Fabrizio Angileri · 90+7&rsquor; -#> 592 Iago Aspas · 49&rsquor; -#> 593 Iago Aspas · 49&rsquor; -#> 594 Iago Aspas · 49&rsquor; -#> 595 Iago Aspas · 49&rsquor; -#> 596 Iago Aspas · 49&rsquor; -#> 597 Iago Aspas · 49&rsquor; -#> 598 Iago Aspas · 49&rsquor; -#> 599 Iago Aspas · 49&rsquor; -#> 600 Iago Aspas · 49&rsquor; -#> 601 Iago Aspas · 49&rsquor; -#> 602 Iago Aspas · 49&rsquor; -#> 603 Iago Aspas · 49&rsquor; -#> 604 Iago Aspas · 49&rsquor; -#> 605 Iago Aspas · 49&rsquor; -#> 606 Iago Aspas · 49&rsquor; -#> 607 Iago Aspas · 49&rsquor; -#> 608 Iago Aspas · 49&rsquor; -#> 609 Iago Aspas · 49&rsquor; -#> 610 Iago Aspas · 49&rsquor; -#> 611 Iago Aspas · 49&rsquor; -#> 612 Iago Aspas · 49&rsquor; -#> 613 Iago Aspas · 49&rsquor; -#> 614 Iago Aspas · 49&rsquor; -#> 615 Iago Aspas · 49&rsquor; -#> 616 Iago Aspas · 49&rsquor; -#> 617 Iago Aspas · 49&rsquor; -#> 618 Iago Aspas · 49&rsquor; -#> 619 Iago Aspas · 49&rsquor; -#> 620 Iago Aspas · 49&rsquor; -#> 621 Iago Aspas · 49&rsquor; -#> 622 Iago Aspas · 49&rsquor; -#> 623 -#> 624 -#> 625 -#> 626 -#> 627 -#> 628 -#> 629 -#> 630 -#> 631 -#> 632 -#> 633 -#> 634 -#> 635 -#> 636 -#> 637 -#> 638 -#> 639 -#> 640 -#> 641 -#> 642 -#> 643 -#> 644 -#> 645 -#> 646 -#> 647 -#> 648 -#> 649 -#> 650 -#> 651 -#> 652 -#> 653 -#> 654 Brais Méndez · 20&rsquor; -#> 655 Brais Méndez · 20&rsquor; -#> 656 Brais Méndez · 20&rsquor; -#> 657 Brais Méndez · 20&rsquor; -#> 658 Brais Méndez · 20&rsquor; -#> 659 Brais Méndez · 20&rsquor; -#> 660 Brais Méndez · 20&rsquor; -#> 661 Brais Méndez · 20&rsquor; -#> 662 Brais Méndez · 20&rsquor; -#> 663 Brais Méndez · 20&rsquor; -#> 664 Brais Méndez · 20&rsquor; -#> 665 Brais Méndez · 20&rsquor; -#> 666 Brais Méndez · 20&rsquor; -#> 667 Brais Méndez · 20&rsquor; -#> 668 Brais Méndez · 20&rsquor; -#> 669 Brais Méndez · 20&rsquor; -#> 670 Brais Méndez · 20&rsquor; -#> 671 Brais Méndez · 20&rsquor; -#> 672 Brais Méndez · 20&rsquor; -#> 673 Brais Méndez · 20&rsquor; -#> 674 Brais Méndez · 20&rsquor; -#> 675 Brais Méndez · 20&rsquor; -#> 676 Brais Méndez · 20&rsquor; -#> 677 Brais Méndez · 20&rsquor; -#> 678 Brais Méndez · 20&rsquor; -#> 679 Brais Méndez · 20&rsquor; -#> 680 Brais Méndez · 20&rsquor; -#> 681 Brais Méndez · 20&rsquor; -#> 682 Brais Méndez · 20&rsquor; -#> 683 Brais Méndez · 20&rsquor; -#> 684 Brais Méndez · 20&rsquor; -#> 685 Brais Méndez · 20&rsquor; -#> 686 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 687 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 688 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 689 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 690 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 691 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 692 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 693 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 694 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 695 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 696 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 697 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 698 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 699 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 700 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 701 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 702 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 703 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 704 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 705 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 706 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 707 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 708 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 709 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 710 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 711 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 712 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 713 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 714 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 715 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 716 Vedat Muriqi · 13&rsquor; Lee Kang-in · 64&rsquor; -#> 717 Óliver Torres · 30&rsquor; -#> 718 Óliver Torres · 30&rsquor; -#> 719 Óliver Torres · 30&rsquor; -#> 720 Óliver Torres · 30&rsquor; -#> 721 Óliver Torres · 30&rsquor; -#> 722 Óliver Torres · 30&rsquor; -#> 723 Óliver Torres · 30&rsquor; -#> 724 Óliver Torres · 30&rsquor; -#> 725 Óliver Torres · 30&rsquor; -#> 726 Óliver Torres · 30&rsquor; -#> 727 Óliver Torres · 30&rsquor; -#> 728 Óliver Torres · 30&rsquor; -#> 729 Óliver Torres · 30&rsquor; -#> 730 Óliver Torres · 30&rsquor; -#> 731 Óliver Torres · 30&rsquor; -#> 732 Óliver Torres · 30&rsquor; -#> 733 Óliver Torres · 30&rsquor; -#> 734 Óliver Torres · 30&rsquor; -#> 735 Óliver Torres · 30&rsquor; -#> 736 Óliver Torres · 30&rsquor; -#> 737 Óliver Torres · 30&rsquor; -#> 738 Óliver Torres · 30&rsquor; -#> 739 Óliver Torres · 30&rsquor; -#> 740 Óliver Torres · 30&rsquor; -#> 741 Óliver Torres · 30&rsquor; -#> 742 Óliver Torres · 30&rsquor; -#> 743 Óliver Torres · 30&rsquor; -#> 744 Óliver Torres · 30&rsquor; -#> 745 Óliver Torres · 30&rsquor; -#> 746 Óliver Torres · 30&rsquor; -#> 747 Óliver Torres · 30&rsquor; -#> 748 Óliver Torres · 30&rsquor; -#> 749 -#> 750 -#> 751 -#> 752 -#> 753 -#> 754 -#> 755 -#> 756 -#> 757 -#> 758 -#> 759 -#> 760 -#> 761 -#> 762 -#> 763 -#> 764 -#> 765 -#> 766 -#> 767 -#> 768 -#> 769 -#> 770 -#> 771 -#> 772 -#> 773 -#> 774 -#> 775 -#> 776 -#> 777 -#> 778 -#> 779 -#> 780 -#> 781 -#> 782 -#> 783 -#> 784 -#> 785 -#> 786 -#> 787 -#> 788 -#> 789 -#> 790 -#> 791 -#> 792 -#> 793 -#> 794 -#> 795 -#> 796 -#> 797 -#> 798 -#> 799 -#> 800 -#> 801 -#> 802 -#> 803 -#> 804 -#> 805 -#> 806 -#> 807 -#> 808 -#> 809 -#> 810 -#> 811 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 812 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 813 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 814 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 815 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 816 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 817 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 818 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 819 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 820 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 821 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 822 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 823 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 824 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 825 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 826 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 827 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 828 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 829 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 830 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 831 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 832 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 833 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 834 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 835 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 836 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 837 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 838 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 839 Vinicius Júnior · 12&rsquor; Karim Benzema · 88&rsquor; Karim Benzema · 90+10&rsquor; -#> 840 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 841 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 842 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 843 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 844 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 845 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 846 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 847 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 848 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 849 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 850 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 851 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 852 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 853 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 854 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 855 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 856 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 857 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 858 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 859 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 860 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 861 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 862 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 863 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 864 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 865 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 866 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 867 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 868 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 869 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 870 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 871 Iñaki Williams · 24&rsquor; Gorka Guruzeta · 56&rsquor; Álex Berenguer · 78&rsquor; Gorka Guruzeta · 90+3&rsquor; -#> 872 Antoine Griezmann · 66&rsquor; -#> 873 Antoine Griezmann · 66&rsquor; -#> 874 Antoine Griezmann · 66&rsquor; -#> 875 Antoine Griezmann · 66&rsquor; -#> 876 Antoine Griezmann · 66&rsquor; -#> 877 Antoine Griezmann · 66&rsquor; -#> 878 Antoine Griezmann · 66&rsquor; -#> 879 Antoine Griezmann · 66&rsquor; -#> 880 Antoine Griezmann · 66&rsquor; -#> 881 Antoine Griezmann · 66&rsquor; -#> 882 Antoine Griezmann · 66&rsquor; -#> 883 Antoine Griezmann · 66&rsquor; -#> 884 Antoine Griezmann · 66&rsquor; -#> 885 Antoine Griezmann · 66&rsquor; -#> 886 Antoine Griezmann · 66&rsquor; -#> 887 Antoine Griezmann · 66&rsquor; -#> 888 Antoine Griezmann · 66&rsquor; -#> 889 Antoine Griezmann · 66&rsquor; -#> 890 Antoine Griezmann · 66&rsquor; -#> 891 Antoine Griezmann · 66&rsquor; -#> 892 Antoine Griezmann · 66&rsquor; -#> 893 Antoine Griezmann · 66&rsquor; -#> 894 Antoine Griezmann · 66&rsquor; -#> 895 Antoine Griezmann · 66&rsquor; -#> 896 Antoine Griezmann · 66&rsquor; -#> 897 Antoine Griezmann · 66&rsquor; -#> 898 Antoine Griezmann · 66&rsquor; -#> 899 Antoine Griezmann · 66&rsquor; -#> 900 Antoine Griezmann · 66&rsquor; -#> 901 Antoine Griezmann · 66&rsquor; -#> 902 Antoine Griezmann · 66&rsquor; -#> 903 Antoine Griezmann · 66&rsquor; -#> 904 -#> 905 -#> 906 -#> 907 -#> 908 -#> 909 -#> 910 -#> 911 -#> 912 -#> 913 -#> 914 -#> 915 -#> 916 -#> 917 -#> 918 -#> 919 -#> 920 -#> 921 -#> 922 -#> 923 -#> 924 -#> 925 -#> 926 -#> 927 -#> 928 -#> 929 -#> 930 -#> 931 -#> 932 -#> 933 -#> 934 -#> 935 -#> 936 Samuel Sáiz (P) · 90+2&rsquor; -#> 937 Samuel Sáiz (P) · 90+2&rsquor; -#> 938 Samuel Sáiz (P) · 90+2&rsquor; -#> 939 Samuel Sáiz (P) · 90+2&rsquor; -#> 940 Samuel Sáiz (P) · 90+2&rsquor; -#> 941 Samuel Sáiz (P) · 90+2&rsquor; -#> 942 Samuel Sáiz (P) · 90+2&rsquor; -#> 943 Samuel Sáiz (P) · 90+2&rsquor; -#> 944 Samuel Sáiz (P) · 90+2&rsquor; -#> 945 Samuel Sáiz (P) · 90+2&rsquor; -#> 946 Samuel Sáiz (P) · 90+2&rsquor; -#> 947 Samuel Sáiz (P) · 90+2&rsquor; -#> 948 Samuel Sáiz (P) · 90+2&rsquor; -#> 949 Samuel Sáiz (P) · 90+2&rsquor; -#> 950 Samuel Sáiz (P) · 90+2&rsquor; -#> 951 Samuel Sáiz (P) · 90+2&rsquor; -#> 952 Samuel Sáiz (P) · 90+2&rsquor; -#> 953 Samuel Sáiz (P) · 90+2&rsquor; -#> 954 Samuel Sáiz (P) · 90+2&rsquor; -#> 955 Samuel Sáiz (P) · 90+2&rsquor; -#> 956 Samuel Sáiz (P) · 90+2&rsquor; -#> 957 Samuel Sáiz (P) · 90+2&rsquor; -#> 958 Samuel Sáiz (P) · 90+2&rsquor; -#> 959 Samuel Sáiz (P) · 90+2&rsquor; -#> 960 Samuel Sáiz (P) · 90+2&rsquor; -#> 961 Samuel Sáiz (P) · 90+2&rsquor; -#> 962 Samuel Sáiz (P) · 90+2&rsquor; -#> 963 Samuel Sáiz (P) · 90+2&rsquor; -#> 964 Samuel Sáiz (P) · 90+2&rsquor; -#> 965 Samuel Sáiz (P) · 90+2&rsquor; -#> 966 Sergio Canales · 17&rsquor; -#> 967 Sergio Canales · 17&rsquor; -#> 968 Sergio Canales · 17&rsquor; -#> 969 Sergio Canales · 17&rsquor; -#> 970 Sergio Canales · 17&rsquor; -#> 971 Sergio Canales · 17&rsquor; -#> 972 Sergio Canales · 17&rsquor; -#> 973 Sergio Canales · 17&rsquor; -#> 974 Sergio Canales · 17&rsquor; -#> 975 Sergio Canales · 17&rsquor; -#> 976 Sergio Canales · 17&rsquor; -#> 977 Sergio Canales · 17&rsquor; -#> 978 Sergio Canales · 17&rsquor; -#> 979 Sergio Canales · 17&rsquor; -#> 980 Sergio Canales · 17&rsquor; -#> 981 Sergio Canales · 17&rsquor; -#> 982 Sergio Canales · 17&rsquor; -#> 983 Sergio Canales · 17&rsquor; -#> 984 Sergio Canales · 17&rsquor; -#> 985 Sergio Canales · 17&rsquor; -#> 986 Sergio Canales · 17&rsquor; -#> 987 Sergio Canales · 17&rsquor; -#> 988 Sergio Canales · 17&rsquor; -#> 989 Sergio Canales · 17&rsquor; -#> 990 Sergio Canales · 17&rsquor; -#> 991 Sergio Canales · 17&rsquor; -#> 992 Sergio Canales · 17&rsquor; -#> 993 Sergio Canales · 17&rsquor; -#> 994 Sergio Canales · 17&rsquor; -#> 995 Sergio Canales · 17&rsquor; -#> 996 Álvaro Morata · 5&rsquor; -#> 997 Álvaro Morata · 5&rsquor; -#> 998 Álvaro Morata · 5&rsquor; -#> 999 Álvaro Morata · 5&rsquor; -#> 1000 Álvaro Morata · 5&rsquor; -#> 1001 Álvaro Morata · 5&rsquor; -#> 1002 Álvaro Morata · 5&rsquor; -#> 1003 Álvaro Morata · 5&rsquor; -#> 1004 Álvaro Morata · 5&rsquor; -#> 1005 Álvaro Morata · 5&rsquor; -#> 1006 Álvaro Morata · 5&rsquor; -#> 1007 Álvaro Morata · 5&rsquor; -#> 1008 Álvaro Morata · 5&rsquor; -#> 1009 Álvaro Morata · 5&rsquor; -#> 1010 Álvaro Morata · 5&rsquor; -#> 1011 Álvaro Morata · 5&rsquor; -#> 1012 Álvaro Morata · 5&rsquor; -#> 1013 Álvaro Morata · 5&rsquor; -#> 1014 Álvaro Morata · 5&rsquor; -#> 1015 Álvaro Morata · 5&rsquor; -#> 1016 Álvaro Morata · 5&rsquor; -#> 1017 Álvaro Morata · 5&rsquor; -#> 1018 Álvaro Morata · 5&rsquor; -#> 1019 Álvaro Morata · 5&rsquor; -#> 1020 Álvaro Morata · 5&rsquor; -#> 1021 Álvaro Morata · 5&rsquor; -#> 1022 Álvaro Morata · 5&rsquor; -#> 1023 Álvaro Morata · 5&rsquor; -#> 1024 Álvaro Morata · 5&rsquor; -#> 1025 Álvaro Morata · 5&rsquor; -#> 1026 Álvaro Morata · 5&rsquor; -#> 1027 Álvaro Morata · 5&rsquor; -#> 1028 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1029 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1030 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1031 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1032 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1033 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1034 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1035 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1036 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1037 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1038 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1039 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1040 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1041 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1042 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1043 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1044 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1045 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1046 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1047 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1048 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1049 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1050 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1051 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1052 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1053 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1054 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1055 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1056 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1057 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1058 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1059 Raphinha · 21&rsquor; Robert Lewandowski · 36&rsquor; Eric García · 50&rsquor; -#> 1060 Florian Lejeune · 75&rsquor; -#> 1061 Florian Lejeune · 75&rsquor; -#> 1062 Florian Lejeune · 75&rsquor; -#> 1063 Florian Lejeune · 75&rsquor; -#> 1064 Florian Lejeune · 75&rsquor; -#> 1065 Florian Lejeune · 75&rsquor; -#> 1066 Florian Lejeune · 75&rsquor; -#> 1067 Florian Lejeune · 75&rsquor; -#> 1068 Florian Lejeune · 75&rsquor; -#> 1069 Florian Lejeune · 75&rsquor; -#> 1070 Florian Lejeune · 75&rsquor; -#> 1071 Florian Lejeune · 75&rsquor; -#> 1072 Florian Lejeune · 75&rsquor; -#> 1073 Florian Lejeune · 75&rsquor; -#> 1074 Florian Lejeune · 75&rsquor; -#> 1075 Florian Lejeune · 75&rsquor; -#> 1076 Florian Lejeune · 75&rsquor; -#> 1077 Florian Lejeune · 75&rsquor; -#> 1078 Florian Lejeune · 75&rsquor; -#> 1079 Florian Lejeune · 75&rsquor; -#> 1080 Florian Lejeune · 75&rsquor; -#> 1081 Florian Lejeune · 75&rsquor; -#> 1082 Florian Lejeune · 75&rsquor; -#> 1083 Florian Lejeune · 75&rsquor; -#> 1084 Florian Lejeune · 75&rsquor; -#> 1085 Florian Lejeune · 75&rsquor; -#> 1086 Florian Lejeune · 75&rsquor; -#> 1087 Florian Lejeune · 75&rsquor; -#> 1088 Florian Lejeune · 75&rsquor; -#> 1089 Florian Lejeune · 75&rsquor; -#> 1090 Florian Lejeune · 75&rsquor; -#> 1091 Martin Braithwaite · 83&rsquor; -#> 1092 Martin Braithwaite · 83&rsquor; -#> 1093 Martin Braithwaite · 83&rsquor; -#> 1094 Martin Braithwaite · 83&rsquor; -#> 1095 Martin Braithwaite · 83&rsquor; -#> 1096 Martin Braithwaite · 83&rsquor; -#> 1097 Martin Braithwaite · 83&rsquor; -#> 1098 Martin Braithwaite · 83&rsquor; -#> 1099 Martin Braithwaite · 83&rsquor; -#> 1100 Martin Braithwaite · 83&rsquor; -#> 1101 Martin Braithwaite · 83&rsquor; -#> 1102 Martin Braithwaite · 83&rsquor; -#> 1103 Martin Braithwaite · 83&rsquor; -#> 1104 Martin Braithwaite · 83&rsquor; -#> 1105 Martin Braithwaite · 83&rsquor; -#> 1106 Martin Braithwaite · 83&rsquor; -#> 1107 Martin Braithwaite · 83&rsquor; -#> 1108 Martin Braithwaite · 83&rsquor; -#> 1109 Martin Braithwaite · 83&rsquor; -#> 1110 Martin Braithwaite · 83&rsquor; -#> 1111 Martin Braithwaite · 83&rsquor; -#> 1112 Martin Braithwaite · 83&rsquor; -#> 1113 Martin Braithwaite · 83&rsquor; -#> 1114 Martin Braithwaite · 83&rsquor; -#> 1115 Martin Braithwaite · 83&rsquor; -#> 1116 Martin Braithwaite · 83&rsquor; -#> 1117 Martin Braithwaite · 83&rsquor; -#> 1118 Martin Braithwaite · 83&rsquor; -#> 1119 Martin Braithwaite · 83&rsquor; -#> 1120 Martin Braithwaite · 83&rsquor; -#> 1121 Martin Braithwaite · 83&rsquor; -#> 1122 -#> 1123 -#> 1124 -#> 1125 -#> 1126 -#> 1127 -#> 1128 -#> 1129 -#> 1130 -#> 1131 -#> 1132 -#> 1133 -#> 1134 -#> 1135 -#> 1136 -#> 1137 -#> 1138 -#> 1139 -#> 1140 -#> 1141 -#> 1142 -#> 1143 -#> 1144 -#> 1145 -#> 1146 -#> 1147 -#> 1148 -#> 1149 -#> 1150 -#> 1151 -#> 1152 -#> 1153 -#> 1154 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1155 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1156 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1157 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1158 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1159 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1160 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1161 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1162 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1163 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1164 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1165 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1166 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1167 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1168 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1169 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1170 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1171 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1172 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1173 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1174 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1175 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1176 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1177 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1178 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1179 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1180 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1181 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1182 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1183 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1184 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1185 Gastón Álvarez · 78&rsquor; Mauro Arambarri · 90+5&rsquor; -#> 1186 -#> 1187 -#> 1188 -#> 1189 -#> 1190 -#> 1191 -#> 1192 -#> 1193 -#> 1194 -#> 1195 -#> 1196 -#> 1197 -#> 1198 -#> 1199 -#> 1200 -#> 1201 -#> 1202 -#> 1203 -#> 1204 -#> 1205 -#> 1206 -#> 1207 -#> 1208 -#> 1209 -#> 1210 -#> 1211 -#> 1212 -#> 1213 -#> 1214 -#> 1215 -#> 1216 -#> 1217 Monchu · 38&rsquor; -#> 1218 Monchu · 38&rsquor; -#> 1219 Monchu · 38&rsquor; -#> 1220 Monchu · 38&rsquor; -#> 1221 Monchu · 38&rsquor; -#> 1222 Monchu · 38&rsquor; -#> 1223 Monchu · 38&rsquor; -#> 1224 Monchu · 38&rsquor; -#> 1225 Monchu · 38&rsquor; -#> 1226 Monchu · 38&rsquor; -#> 1227 Monchu · 38&rsquor; -#> 1228 Monchu · 38&rsquor; -#> 1229 Monchu · 38&rsquor; -#> 1230 Monchu · 38&rsquor; -#> 1231 Monchu · 38&rsquor; -#> 1232 Monchu · 38&rsquor; -#> 1233 Monchu · 38&rsquor; -#> 1234 Monchu · 38&rsquor; -#> 1235 Monchu · 38&rsquor; -#> 1236 Monchu · 38&rsquor; -#> 1237 Monchu · 38&rsquor; -#> 1238 Monchu · 38&rsquor; -#> 1239 Monchu · 38&rsquor; -#> 1240 Monchu · 38&rsquor; -#> 1241 Monchu · 38&rsquor; -#> 1242 Monchu · 38&rsquor; -#> 1243 Monchu · 38&rsquor; -#> 1244 Monchu · 38&rsquor; -#> 1245 Monchu · 38&rsquor; -#> 1246 Monchu · 38&rsquor; -#> 1247 Monchu · 38&rsquor; -#> 1248 Monchu · 38&rsquor; -#> 1249 Mouctar Diakhaby · 90+3&rsquor; -#> 1250 Mouctar Diakhaby · 90+3&rsquor; -#> 1251 Mouctar Diakhaby · 90+3&rsquor; -#> 1252 Mouctar Diakhaby · 90+3&rsquor; -#> 1253 Mouctar Diakhaby · 90+3&rsquor; -#> 1254 Mouctar Diakhaby · 90+3&rsquor; -#> 1255 Mouctar Diakhaby · 90+3&rsquor; -#> 1256 Mouctar Diakhaby · 90+3&rsquor; -#> 1257 Mouctar Diakhaby · 90+3&rsquor; -#> 1258 Mouctar Diakhaby · 90+3&rsquor; -#> 1259 Mouctar Diakhaby · 90+3&rsquor; -#> 1260 Mouctar Diakhaby · 90+3&rsquor; -#> 1261 Mouctar Diakhaby · 90+3&rsquor; -#> 1262 Mouctar Diakhaby · 90+3&rsquor; -#> 1263 Mouctar Diakhaby · 90+3&rsquor; -#> 1264 Mouctar Diakhaby · 90+3&rsquor; -#> 1265 Mouctar Diakhaby · 90+3&rsquor; -#> 1266 Mouctar Diakhaby · 90+3&rsquor; -#> 1267 Mouctar Diakhaby · 90+3&rsquor; -#> 1268 Mouctar Diakhaby · 90+3&rsquor; -#> 1269 Mouctar Diakhaby · 90+3&rsquor; -#> 1270 Mouctar Diakhaby · 90+3&rsquor; -#> 1271 Mouctar Diakhaby · 90+3&rsquor; -#> 1272 Mouctar Diakhaby · 90+3&rsquor; -#> 1273 Mouctar Diakhaby · 90+3&rsquor; -#> 1274 Mouctar Diakhaby · 90+3&rsquor; -#> 1275 Mouctar Diakhaby · 90+3&rsquor; -#> 1276 Mouctar Diakhaby · 90+3&rsquor; -#> 1277 Mouctar Diakhaby · 90+3&rsquor; -#> 1278 Mouctar Diakhaby · 90+3&rsquor; -#> 1279 Mouctar Diakhaby · 90+3&rsquor; -#> 1280 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1281 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1282 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1283 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1284 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1285 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1286 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1287 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1288 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1289 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1290 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1291 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1292 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1293 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1294 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1295 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1296 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1297 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1298 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1299 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1300 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1301 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1302 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1303 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1304 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1305 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1306 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1307 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1308 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1309 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1310 Érik Lamela · 1&rsquor; Carmona · 26&rsquor; Carmona · 45&rsquor; Érik Lamela · 84&rsquor; -#> 1311 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1312 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1313 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1314 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1315 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1316 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1317 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1318 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1319 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1320 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1321 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1322 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1323 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1324 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1325 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1326 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1327 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1328 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1329 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1330 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1331 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1332 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1333 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1334 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1335 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1336 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1337 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1338 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1339 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1340 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1341 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1342 Frenkie de Jong · 55&rsquor; Robert Lewandowski · 65&rsquor; Ansu Fati · 86&rsquor; Ousmane Dembélé · 90+2&rsquor; -#> 1343 Gabriel Veiga · 71&rsquor; -#> 1344 Gabriel Veiga · 71&rsquor; -#> 1345 Gabriel Veiga · 71&rsquor; -#> 1346 Gabriel Veiga · 71&rsquor; -#> 1347 Gabriel Veiga · 71&rsquor; -#> 1348 Gabriel Veiga · 71&rsquor; -#> 1349 Gabriel Veiga · 71&rsquor; -#> 1350 Gabriel Veiga · 71&rsquor; -#> 1351 Gabriel Veiga · 71&rsquor; -#> 1352 Gabriel Veiga · 71&rsquor; -#> 1353 Gabriel Veiga · 71&rsquor; -#> 1354 Gabriel Veiga · 71&rsquor; -#> 1355 Gabriel Veiga · 71&rsquor; -#> 1356 Gabriel Veiga · 71&rsquor; -#> 1357 Gabriel Veiga · 71&rsquor; -#> 1358 Gabriel Veiga · 71&rsquor; -#> 1359 Gabriel Veiga · 71&rsquor; -#> 1360 Gabriel Veiga · 71&rsquor; -#> 1361 Gabriel Veiga · 71&rsquor; -#> 1362 Gabriel Veiga · 71&rsquor; -#> 1363 Gabriel Veiga · 71&rsquor; -#> 1364 Gabriel Veiga · 71&rsquor; -#> 1365 Gabriel Veiga · 71&rsquor; -#> 1366 Gabriel Veiga · 71&rsquor; -#> 1367 Gabriel Veiga · 71&rsquor; -#> 1368 Gabriel Veiga · 71&rsquor; -#> 1369 Gabriel Veiga · 71&rsquor; -#> 1370 Gabriel Veiga · 71&rsquor; -#> 1371 Gabriel Veiga · 71&rsquor; -#> 1372 Vedat Muriqi · 35&rsquor; -#> 1373 Vedat Muriqi · 35&rsquor; -#> 1374 Vedat Muriqi · 35&rsquor; -#> 1375 Vedat Muriqi · 35&rsquor; -#> 1376 Vedat Muriqi · 35&rsquor; -#> 1377 Vedat Muriqi · 35&rsquor; -#> 1378 Vedat Muriqi · 35&rsquor; -#> 1379 Vedat Muriqi · 35&rsquor; -#> 1380 Vedat Muriqi · 35&rsquor; -#> 1381 Vedat Muriqi · 35&rsquor; -#> 1382 Vedat Muriqi · 35&rsquor; -#> 1383 Vedat Muriqi · 35&rsquor; -#> 1384 Vedat Muriqi · 35&rsquor; -#> 1385 Vedat Muriqi · 35&rsquor; -#> 1386 Vedat Muriqi · 35&rsquor; -#> 1387 Vedat Muriqi · 35&rsquor; -#> 1388 Vedat Muriqi · 35&rsquor; -#> 1389 Vedat Muriqi · 35&rsquor; -#> 1390 Vedat Muriqi · 35&rsquor; -#> 1391 Vedat Muriqi · 35&rsquor; -#> 1392 Vedat Muriqi · 35&rsquor; -#> 1393 Vedat Muriqi · 35&rsquor; -#> 1394 Vedat Muriqi · 35&rsquor; -#> 1395 Vedat Muriqi · 35&rsquor; -#> 1396 Vedat Muriqi · 35&rsquor; -#> 1397 Vedat Muriqi · 35&rsquor; -#> 1398 Vedat Muriqi · 35&rsquor; -#> 1399 Vedat Muriqi · 35&rsquor; -#> 1400 Vedat Muriqi · 35&rsquor; -#> 1401 Vedat Muriqi · 35&rsquor; -#> 1402 Vedat Muriqi · 35&rsquor; -#> 1403 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1404 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1405 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1406 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1407 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1408 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1409 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1410 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1411 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1412 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1413 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1414 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1415 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1416 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1417 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1418 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1419 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1420 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1421 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1422 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1423 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1424 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1425 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1426 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1427 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1428 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1429 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1430 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1431 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1432 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1433 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1434 Nicolás Ezequiel Fernández (OG) · 9&rsquor; Oihan Sancet (P) · 14&rsquor; Nico Williams · 22&rsquor; Álex Berenguer · 44&rsquor; -#> 1435 Brais Méndez · 50&rsquor; -#> 1436 Brais Méndez · 50&rsquor; -#> 1437 Brais Méndez · 50&rsquor; -#> 1438 Brais Méndez · 50&rsquor; -#> 1439 Brais Méndez · 50&rsquor; -#> 1440 Brais Méndez · 50&rsquor; -#> 1441 Brais Méndez · 50&rsquor; -#> 1442 Brais Méndez · 50&rsquor; -#> 1443 Brais Méndez · 50&rsquor; -#> 1444 Brais Méndez · 50&rsquor; -#> 1445 Brais Méndez · 50&rsquor; -#> 1446 Brais Méndez · 50&rsquor; -#> 1447 Brais Méndez · 50&rsquor; -#> 1448 Brais Méndez · 50&rsquor; -#> 1449 Brais Méndez · 50&rsquor; -#> 1450 Brais Méndez · 50&rsquor; -#> 1451 Brais Méndez · 50&rsquor; -#> 1452 Brais Méndez · 50&rsquor; -#> 1453 Brais Méndez · 50&rsquor; -#> 1454 Brais Méndez · 50&rsquor; -#> 1455 Brais Méndez · 50&rsquor; -#> 1456 Brais Méndez · 50&rsquor; -#> 1457 Brais Méndez · 50&rsquor; -#> 1458 Brais Méndez · 50&rsquor; -#> 1459 Brais Méndez · 50&rsquor; -#> 1460 Brais Méndez · 50&rsquor; -#> 1461 Brais Méndez · 50&rsquor; -#> 1462 Brais Méndez · 50&rsquor; -#> 1463 Brais Méndez · 50&rsquor; -#> 1464 Brais Méndez · 50&rsquor; -#> 1465 Brais Méndez · 50&rsquor; -#> 1466 -#> 1467 -#> 1468 -#> 1469 -#> 1470 -#> 1471 -#> 1472 -#> 1473 -#> 1474 -#> 1475 -#> 1476 -#> 1477 -#> 1478 -#> 1479 -#> 1480 -#> 1481 -#> 1482 -#> 1483 -#> 1484 -#> 1485 -#> 1486 -#> 1487 -#> 1488 -#> 1489 -#> 1490 -#> 1491 -#> 1492 -#> 1493 -#> 1494 -#> 1495 -#> 1496 Ezequiel Ávila · 28&rsquor; -#> 1497 Ezequiel Ávila · 28&rsquor; -#> 1498 Ezequiel Ávila · 28&rsquor; -#> 1499 Ezequiel Ávila · 28&rsquor; -#> 1500 Ezequiel Ávila · 28&rsquor; -#> 1501 Ezequiel Ávila · 28&rsquor; -#> 1502 Ezequiel Ávila · 28&rsquor; -#> 1503 Ezequiel Ávila · 28&rsquor; -#> 1504 Ezequiel Ávila · 28&rsquor; -#> 1505 Ezequiel Ávila · 28&rsquor; -#> 1506 Ezequiel Ávila · 28&rsquor; -#> 1507 Ezequiel Ávila · 28&rsquor; -#> 1508 Ezequiel Ávila · 28&rsquor; -#> 1509 Ezequiel Ávila · 28&rsquor; -#> 1510 Ezequiel Ávila · 28&rsquor; -#> 1511 Ezequiel Ávila · 28&rsquor; -#> 1512 Ezequiel Ávila · 28&rsquor; -#> 1513 Ezequiel Ávila · 28&rsquor; -#> 1514 Ezequiel Ávila · 28&rsquor; -#> 1515 Ezequiel Ávila · 28&rsquor; -#> 1516 Ezequiel Ávila · 28&rsquor; -#> 1517 Ezequiel Ávila · 28&rsquor; -#> 1518 Ezequiel Ávila · 28&rsquor; -#> 1519 Ezequiel Ávila · 28&rsquor; -#> 1520 Ezequiel Ávila · 28&rsquor; -#> 1521 Ezequiel Ávila · 28&rsquor; -#> 1522 Ezequiel Ávila · 28&rsquor; -#> 1523 Ezequiel Ávila · 28&rsquor; -#> 1524 Ezequiel Ávila · 28&rsquor; -#> 1525 Ezequiel Ávila · 28&rsquor; -#> 1526 Ezequiel Ávila · 28&rsquor; -#> 1527 Ezequiel Ávila · 28&rsquor; -#> 1528 Álvaro Negredo · 90+2&rsquor; -#> 1529 Álvaro Negredo · 90+2&rsquor; -#> 1530 Álvaro Negredo · 90+2&rsquor; -#> 1531 Álvaro Negredo · 90+2&rsquor; -#> 1532 Álvaro Negredo · 90+2&rsquor; -#> 1533 Álvaro Negredo · 90+2&rsquor; -#> 1534 Álvaro Negredo · 90+2&rsquor; -#> 1535 Álvaro Negredo · 90+2&rsquor; -#> 1536 Álvaro Negredo · 90+2&rsquor; -#> 1537 Álvaro Negredo · 90+2&rsquor; -#> 1538 Álvaro Negredo · 90+2&rsquor; -#> 1539 Álvaro Negredo · 90+2&rsquor; -#> 1540 Álvaro Negredo · 90+2&rsquor; -#> 1541 Álvaro Negredo · 90+2&rsquor; -#> 1542 Álvaro Negredo · 90+2&rsquor; -#> 1543 Álvaro Negredo · 90+2&rsquor; -#> 1544 Álvaro Negredo · 90+2&rsquor; -#> 1545 Álvaro Negredo · 90+2&rsquor; -#> 1546 Álvaro Negredo · 90+2&rsquor; -#> 1547 Álvaro Negredo · 90+2&rsquor; -#> 1548 Álvaro Negredo · 90+2&rsquor; -#> 1549 Álvaro Negredo · 90+2&rsquor; -#> 1550 Álvaro Negredo · 90+2&rsquor; -#> 1551 Álvaro Negredo · 90+2&rsquor; -#> 1552 Álvaro Negredo · 90+2&rsquor; -#> 1553 Álvaro Negredo · 90+2&rsquor; -#> 1554 Álvaro Negredo · 90+2&rsquor; -#> 1555 Álvaro Negredo · 90+2&rsquor; -#> 1556 Álvaro Negredo · 90+2&rsquor; -#> 1557 Álvaro Negredo · 90+2&rsquor; -#> 1558 Álvaro Negredo · 90+2&rsquor; -#> 1559 Álvaro Negredo · 90+2&rsquor; -#> 1560 -#> 1561 -#> 1562 -#> 1563 -#> 1564 -#> 1565 -#> 1566 -#> 1567 -#> 1568 -#> 1569 -#> 1570 -#> 1571 -#> 1572 -#> 1573 -#> 1574 -#> 1575 -#> 1576 -#> 1577 -#> 1578 -#> 1579 -#> 1580 -#> 1581 -#> 1582 -#> 1583 -#> 1584 -#> 1585 -#> 1586 -#> 1587 -#> 1588 -#> 1589 -#> 1590 -#> 1591 Gonzalo Verdú · 14&rsquor; -#> 1592 Gonzalo Verdú · 14&rsquor; -#> 1593 Gonzalo Verdú · 14&rsquor; -#> 1594 Gonzalo Verdú · 14&rsquor; -#> 1595 Gonzalo Verdú · 14&rsquor; -#> 1596 Gonzalo Verdú · 14&rsquor; -#> 1597 Gonzalo Verdú · 14&rsquor; -#> 1598 Gonzalo Verdú · 14&rsquor; -#> 1599 Gonzalo Verdú · 14&rsquor; -#> 1600 Gonzalo Verdú · 14&rsquor; -#> 1601 Gonzalo Verdú · 14&rsquor; -#> 1602 Gonzalo Verdú · 14&rsquor; -#> 1603 Gonzalo Verdú · 14&rsquor; -#> 1604 Gonzalo Verdú · 14&rsquor; -#> 1605 Gonzalo Verdú · 14&rsquor; -#> 1606 Gonzalo Verdú · 14&rsquor; -#> 1607 Gonzalo Verdú · 14&rsquor; -#> 1608 Gonzalo Verdú · 14&rsquor; -#> 1609 Gonzalo Verdú · 14&rsquor; -#> 1610 Gonzalo Verdú · 14&rsquor; -#> 1611 Gonzalo Verdú · 14&rsquor; -#> 1612 Gonzalo Verdú · 14&rsquor; -#> 1613 Gonzalo Verdú · 14&rsquor; -#> 1614 Gonzalo Verdú · 14&rsquor; -#> 1615 Gonzalo Verdú · 14&rsquor; -#> 1616 Gonzalo Verdú · 14&rsquor; -#> 1617 Gonzalo Verdú · 14&rsquor; -#> 1618 Gonzalo Verdú · 14&rsquor; -#> 1619 Gonzalo Verdú · 14&rsquor; -#> 1620 Gonzalo Verdú · 14&rsquor; -#> 1621 Gonzalo Verdú · 14&rsquor; -#> 1622 Gonzalo Verdú · 14&rsquor; -#> 1623 Franco Cervi · 59&rsquor; -#> 1624 Franco Cervi · 59&rsquor; -#> 1625 Franco Cervi · 59&rsquor; -#> 1626 Franco Cervi · 59&rsquor; -#> 1627 Franco Cervi · 59&rsquor; -#> 1628 Franco Cervi · 59&rsquor; -#> 1629 Franco Cervi · 59&rsquor; -#> 1630 Franco Cervi · 59&rsquor; -#> 1631 Franco Cervi · 59&rsquor; -#> 1632 Franco Cervi · 59&rsquor; -#> 1633 Franco Cervi · 59&rsquor; -#> 1634 Franco Cervi · 59&rsquor; -#> 1635 Franco Cervi · 59&rsquor; -#> 1636 Franco Cervi · 59&rsquor; -#> 1637 Franco Cervi · 59&rsquor; -#> 1638 Franco Cervi · 59&rsquor; -#> 1639 Franco Cervi · 59&rsquor; -#> 1640 Franco Cervi · 59&rsquor; -#> 1641 Franco Cervi · 59&rsquor; -#> 1642 Franco Cervi · 59&rsquor; -#> 1643 Franco Cervi · 59&rsquor; -#> 1644 Franco Cervi · 59&rsquor; -#> 1645 Franco Cervi · 59&rsquor; -#> 1646 Franco Cervi · 59&rsquor; -#> 1647 Franco Cervi · 59&rsquor; -#> 1648 Franco Cervi · 59&rsquor; -#> 1649 Franco Cervi · 59&rsquor; -#> 1650 Franco Cervi · 59&rsquor; -#> 1651 Franco Cervi · 59&rsquor; -#> 1652 Franco Cervi · 59&rsquor; -#> 1653 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1654 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1655 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1656 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1657 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1658 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1659 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1660 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1661 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1662 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1663 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1664 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1665 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1666 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1667 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1668 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1669 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1670 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1671 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1672 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1673 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1674 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1675 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1676 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1677 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1678 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1679 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1680 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1681 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1682 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1683 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1684 Óscar Trejo · 5&rsquor; Radamel Falcao · 80&rsquor; -#> 1685 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1686 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1687 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1688 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1689 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1690 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1691 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1692 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1693 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1694 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1695 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1696 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1697 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1698 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1699 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1700 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1701 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1702 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1703 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1704 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1705 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1706 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1707 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1708 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1709 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1710 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1711 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1712 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1713 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1714 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1715 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1716 Iglesias · 30&rsquor; Gastón Álvarez · 76&rsquor; Luis Milla · 90+1&rsquor; -#> 1717 Óliver Torres · 8&rsquor; -#> 1718 Óliver Torres · 8&rsquor; -#> 1719 Óliver Torres · 8&rsquor; -#> 1720 Óliver Torres · 8&rsquor; -#> 1721 Óliver Torres · 8&rsquor; -#> 1722 Óliver Torres · 8&rsquor; -#> 1723 Óliver Torres · 8&rsquor; -#> 1724 Óliver Torres · 8&rsquor; -#> 1725 Óliver Torres · 8&rsquor; -#> 1726 Óliver Torres · 8&rsquor; -#> 1727 Óliver Torres · 8&rsquor; -#> 1728 Óliver Torres · 8&rsquor; -#> 1729 Óliver Torres · 8&rsquor; -#> 1730 Óliver Torres · 8&rsquor; -#> 1731 Óliver Torres · 8&rsquor; -#> 1732 Óliver Torres · 8&rsquor; -#> 1733 Óliver Torres · 8&rsquor; -#> 1734 Óliver Torres · 8&rsquor; -#> 1735 Óliver Torres · 8&rsquor; -#> 1736 Óliver Torres · 8&rsquor; -#> 1737 Óliver Torres · 8&rsquor; -#> 1738 Óliver Torres · 8&rsquor; -#> 1739 Óliver Torres · 8&rsquor; -#> 1740 Óliver Torres · 8&rsquor; -#> 1741 Óliver Torres · 8&rsquor; -#> 1742 Óliver Torres · 8&rsquor; -#> 1743 Óliver Torres · 8&rsquor; -#> 1744 Óliver Torres · 8&rsquor; -#> 1745 Óliver Torres · 8&rsquor; -#> 1746 Óliver Torres · 8&rsquor; -#> 1747 Óliver Torres · 8&rsquor; -#> 1748 Óliver Torres · 8&rsquor; -#> 1749 Arnau Martinez · 7&rsquor; -#> 1750 Arnau Martinez · 7&rsquor; -#> 1751 Arnau Martinez · 7&rsquor; -#> 1752 Arnau Martinez · 7&rsquor; -#> 1753 Arnau Martinez · 7&rsquor; -#> 1754 Arnau Martinez · 7&rsquor; -#> 1755 Arnau Martinez · 7&rsquor; -#> 1756 Arnau Martinez · 7&rsquor; -#> 1757 Arnau Martinez · 7&rsquor; -#> 1758 Arnau Martinez · 7&rsquor; -#> 1759 Arnau Martinez · 7&rsquor; -#> 1760 Arnau Martinez · 7&rsquor; -#> 1761 Arnau Martinez · 7&rsquor; -#> 1762 Arnau Martinez · 7&rsquor; -#> 1763 Arnau Martinez · 7&rsquor; -#> 1764 Arnau Martinez · 7&rsquor; -#> 1765 Arnau Martinez · 7&rsquor; -#> 1766 Arnau Martinez · 7&rsquor; -#> 1767 Arnau Martinez · 7&rsquor; -#> 1768 Arnau Martinez · 7&rsquor; -#> 1769 Arnau Martinez · 7&rsquor; -#> 1770 Arnau Martinez · 7&rsquor; -#> 1771 Arnau Martinez · 7&rsquor; -#> 1772 Arnau Martinez · 7&rsquor; -#> 1773 Arnau Martinez · 7&rsquor; -#> 1774 Arnau Martinez · 7&rsquor; -#> 1775 Arnau Martinez · 7&rsquor; -#> 1776 Arnau Martinez · 7&rsquor; -#> 1777 Arnau Martinez · 7&rsquor; -#> 1778 Arnau Martinez · 7&rsquor; -#> 1779 Arnau Martinez · 7&rsquor; -#> 1780 Edu Expósito · 19&rsquor; -#> 1781 Edu Expósito · 19&rsquor; -#> 1782 Edu Expósito · 19&rsquor; -#> 1783 Edu Expósito · 19&rsquor; -#> 1784 Edu Expósito · 19&rsquor; -#> 1785 Edu Expósito · 19&rsquor; -#> 1786 Edu Expósito · 19&rsquor; -#> 1787 Edu Expósito · 19&rsquor; -#> 1788 Edu Expósito · 19&rsquor; -#> 1789 Edu Expósito · 19&rsquor; -#> 1790 Edu Expósito · 19&rsquor; -#> 1791 Edu Expósito · 19&rsquor; -#> 1792 Edu Expósito · 19&rsquor; -#> 1793 Edu Expósito · 19&rsquor; -#> 1794 Edu Expósito · 19&rsquor; -#> 1795 Edu Expósito · 19&rsquor; -#> 1796 Edu Expósito · 19&rsquor; -#> 1797 Edu Expósito · 19&rsquor; -#> 1798 Edu Expósito · 19&rsquor; -#> 1799 Edu Expósito · 19&rsquor; -#> 1800 Edu Expósito · 19&rsquor; -#> 1801 Edu Expósito · 19&rsquor; -#> 1802 Edu Expósito · 19&rsquor; -#> 1803 Edu Expósito · 19&rsquor; -#> 1804 Edu Expósito · 19&rsquor; -#> 1805 Edu Expósito · 19&rsquor; -#> 1806 Edu Expósito · 19&rsquor; -#> 1807 Edu Expósito · 19&rsquor; -#> 1808 Edu Expósito · 19&rsquor; -#> 1809 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1810 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1811 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1812 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1813 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1814 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1815 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1816 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1817 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1818 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1819 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1820 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1821 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1822 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1823 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1824 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1825 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1826 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1827 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1828 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1829 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1830 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1831 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1832 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1833 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1834 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1835 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1836 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1837 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1838 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1839 Rodrygo · 18&rsquor; Federico Valverde · 36&rsquor; -#> 1840 -#> 1841 -#> 1842 -#> 1843 -#> 1844 -#> 1845 -#> 1846 -#> 1847 -#> 1848 -#> 1849 -#> 1850 -#> 1851 -#> 1852 -#> 1853 -#> 1854 -#> 1855 -#> 1856 -#> 1857 -#> 1858 -#> 1859 -#> 1860 -#> 1861 -#> 1862 -#> 1863 -#> 1864 -#> 1865 -#> 1866 -#> 1867 -#> 1868 -#> 1869 -#> 1870 -#> 1871 -#> 1872 -#> 1873 -#> 1874 -#> 1875 -#> 1876 -#> 1877 -#> 1878 -#> 1879 -#> 1880 -#> 1881 -#> 1882 -#> 1883 -#> 1884 -#> 1885 -#> 1886 -#> 1887 -#> 1888 -#> 1889 -#> 1890 -#> 1891 -#> 1892 -#> 1893 -#> 1894 -#> 1895 -#> 1896 -#> 1897 -#> 1898 -#> 1899 -#> 1900 -#> 1901 -#> 1902 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1903 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1904 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1905 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1906 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1907 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1908 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1909 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1910 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1911 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1912 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1913 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1914 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1915 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1916 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1917 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1918 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1919 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1920 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1921 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1922 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1923 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1924 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1925 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1926 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1927 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1928 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1929 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1930 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1931 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1932 Sergio León (P) · 20&rsquor; Sergio León · 37&rsquor; Óscar Plano · 49&rsquor; -#> 1933 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1934 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1935 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1936 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1937 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1938 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1939 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1940 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1941 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1942 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1943 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1944 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1945 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1946 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1947 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1948 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1949 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1950 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1951 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1952 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1953 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1954 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1955 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1956 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1957 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1958 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1959 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1960 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1961 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1962 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1963 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1964 Marcos Llorente · 29&rsquor; Álvaro Morata · 57&rsquor; -#> 1965 Robert Lewandowski · 20&rsquor; -#> 1966 Robert Lewandowski · 20&rsquor; -#> 1967 Robert Lewandowski · 20&rsquor; -#> 1968 Robert Lewandowski · 20&rsquor; -#> 1969 Robert Lewandowski · 20&rsquor; -#> 1970 Robert Lewandowski · 20&rsquor; -#> 1971 Robert Lewandowski · 20&rsquor; -#> 1972 Robert Lewandowski · 20&rsquor; -#> 1973 Robert Lewandowski · 20&rsquor; -#> 1974 Robert Lewandowski · 20&rsquor; -#> 1975 Robert Lewandowski · 20&rsquor; -#> 1976 Robert Lewandowski · 20&rsquor; -#> 1977 Robert Lewandowski · 20&rsquor; -#> 1978 Robert Lewandowski · 20&rsquor; -#> 1979 Robert Lewandowski · 20&rsquor; -#> 1980 Robert Lewandowski · 20&rsquor; -#> 1981 Robert Lewandowski · 20&rsquor; -#> 1982 Robert Lewandowski · 20&rsquor; -#> 1983 Robert Lewandowski · 20&rsquor; -#> 1984 Robert Lewandowski · 20&rsquor; -#> 1985 Robert Lewandowski · 20&rsquor; -#> 1986 Robert Lewandowski · 20&rsquor; -#> 1987 Robert Lewandowski · 20&rsquor; -#> 1988 Robert Lewandowski · 20&rsquor; -#> 1989 Robert Lewandowski · 20&rsquor; -#> 1990 Robert Lewandowski · 20&rsquor; -#> 1991 Robert Lewandowski · 20&rsquor; -#> 1992 Robert Lewandowski · 20&rsquor; -#> 1993 Robert Lewandowski · 20&rsquor; -#> 1994 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 1995 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 1996 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 1997 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 1998 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 1999 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2000 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2001 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2002 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2003 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2004 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2005 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2006 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2007 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2008 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2009 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2010 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2011 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2012 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2013 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2014 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2015 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2016 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2017 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2018 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2019 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2020 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2021 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2022 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2023 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2024 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2025 Gabriel Paulista · 53&rsquor; Marcos André · 85&rsquor; Eray Cömert · 90+6&rsquor; -#> 2026 Luiz Felipe · 20&rsquor; -#> 2027 Luiz Felipe · 20&rsquor; -#> 2028 Luiz Felipe · 20&rsquor; -#> 2029 Luiz Felipe · 20&rsquor; -#> 2030 Luiz Felipe · 20&rsquor; -#> 2031 Luiz Felipe · 20&rsquor; -#> 2032 Luiz Felipe · 20&rsquor; -#> 2033 Luiz Felipe · 20&rsquor; -#> 2034 Luiz Felipe · 20&rsquor; -#> 2035 Luiz Felipe · 20&rsquor; -#> 2036 Luiz Felipe · 20&rsquor; -#> 2037 Luiz Felipe · 20&rsquor; -#> 2038 Luiz Felipe · 20&rsquor; -#> 2039 Luiz Felipe · 20&rsquor; -#> 2040 Luiz Felipe · 20&rsquor; -#> Away_Yellow_Cards Away_Red_Cards -#> 1 3 0 -#> 2 3 0 -#> 3 3 0 -#> 4 3 0 -#> 5 3 0 -#> 6 3 0 -#> 7 3 0 -#> 8 3 0 -#> 9 3 0 -#> 10 3 0 -#> 11 3 0 -#> 12 3 0 -#> 13 3 0 -#> 14 3 0 -#> 15 3 0 -#> 16 3 0 -#> 17 3 0 -#> 18 3 0 -#> 19 3 0 -#> 20 3 0 -#> 21 3 0 -#> 22 3 0 -#> 23 3 0 -#> 24 3 0 -#> 25 3 0 -#> 26 3 0 -#> 27 3 0 -#> 28 3 0 -#> 29 3 0 -#> 30 3 0 -#> 31 3 0 -#> 32 3 0 -#> 33 2 0 -#> 34 2 0 -#> 35 2 0 -#> 36 2 0 -#> 37 2 0 -#> 38 2 0 -#> 39 2 0 -#> 40 2 0 -#> 41 2 0 -#> 42 2 0 -#> 43 2 0 -#> 44 2 0 -#> 45 2 0 -#> 46 2 0 -#> 47 2 0 -#> 48 2 0 -#> 49 2 0 -#> 50 2 0 -#> 51 2 0 -#> 52 2 0 -#> 53 2 0 -#> 54 2 0 -#> 55 2 0 -#> 56 2 0 -#> 57 2 0 -#> 58 2 0 -#> 59 2 0 -#> 60 2 0 -#> 61 2 0 -#> 62 2 0 -#> 63 0 0 -#> 64 0 0 -#> 65 0 0 -#> 66 0 0 -#> 67 0 0 -#> 68 0 0 -#> 69 0 0 -#> 70 0 0 -#> 71 0 0 -#> 72 0 0 -#> 73 0 0 -#> 74 0 0 -#> 75 0 0 -#> 76 0 0 -#> 77 0 0 -#> 78 0 0 -#> 79 0 0 -#> 80 0 0 -#> 81 0 0 -#> 82 0 0 -#> 83 0 0 -#> 84 0 0 -#> 85 0 0 -#> 86 0 0 -#> 87 0 0 -#> 88 0 0 -#> 89 0 0 -#> 90 0 0 -#> 91 0 0 -#> 92 0 0 -#> 93 0 0 -#> 94 6 0 -#> 95 6 0 -#> 96 6 0 -#> 97 6 0 -#> 98 6 0 -#> 99 6 0 -#> 100 6 0 -#> 101 6 0 -#> 102 6 0 -#> 103 6 0 -#> 104 6 0 -#> 105 6 0 -#> 106 6 0 -#> 107 6 0 -#> 108 6 0 -#> 109 6 0 -#> 110 6 0 -#> 111 6 0 -#> 112 6 0 -#> 113 6 0 -#> 114 6 0 -#> 115 6 0 -#> 116 6 0 -#> 117 6 0 -#> 118 6 0 -#> 119 6 0 -#> 120 6 0 -#> 121 6 0 -#> 122 6 0 -#> 123 6 0 -#> 124 6 0 -#> 125 2 0 -#> 126 2 0 -#> 127 2 0 -#> 128 2 0 -#> 129 2 0 -#> 130 2 0 -#> 131 2 0 -#> 132 2 0 -#> 133 2 0 -#> 134 2 0 -#> 135 2 0 -#> 136 2 0 -#> 137 2 0 -#> 138 2 0 -#> 139 2 0 -#> 140 2 0 -#> 141 2 0 -#> 142 2 0 -#> 143 2 0 -#> 144 2 0 -#> 145 2 0 -#> 146 2 0 -#> 147 2 0 -#> 148 2 0 -#> 149 2 0 -#> 150 2 0 -#> 151 2 0 -#> 152 2 0 -#> 153 2 0 -#> 154 2 0 -#> 155 2 0 -#> 156 2 0 -#> 157 3 0 -#> 158 3 0 -#> 159 3 0 -#> 160 3 0 -#> 161 3 0 -#> 162 3 0 -#> 163 3 0 -#> 164 3 0 -#> 165 3 0 -#> 166 3 0 -#> 167 3 0 -#> 168 3 0 -#> 169 3 0 -#> 170 3 0 -#> 171 3 0 -#> 172 3 0 -#> 173 3 0 -#> 174 3 0 -#> 175 3 0 -#> 176 3 0 -#> 177 3 0 -#> 178 3 0 -#> 179 3 0 -#> 180 3 0 -#> 181 3 0 -#> 182 3 0 -#> 183 3 0 -#> 184 3 0 -#> 185 3 0 -#> 186 3 0 -#> 187 3 0 -#> 188 3 0 -#> 189 1 0 -#> 190 1 0 -#> 191 1 0 -#> 192 1 0 -#> 193 1 0 -#> 194 1 0 -#> 195 1 0 -#> 196 1 0 -#> 197 1 0 -#> 198 1 0 -#> 199 1 0 -#> 200 1 0 -#> 201 1 0 -#> 202 1 0 -#> 203 1 0 -#> 204 1 0 -#> 205 1 0 -#> 206 1 0 -#> 207 1 0 -#> 208 1 0 -#> 209 1 0 -#> 210 1 0 -#> 211 1 0 -#> 212 1 0 -#> 213 1 0 -#> 214 1 0 -#> 215 1 0 -#> 216 1 0 -#> 217 1 0 -#> 218 1 0 -#> 219 1 0 -#> 220 1 0 -#> 221 6 0 -#> 222 6 0 -#> 223 6 0 -#> 224 6 0 -#> 225 6 0 -#> 226 6 0 -#> 227 6 0 -#> 228 6 0 -#> 229 6 0 -#> 230 6 0 -#> 231 6 0 -#> 232 6 0 -#> 233 6 0 -#> 234 6 0 -#> 235 6 0 -#> 236 6 0 -#> 237 6 0 -#> 238 6 0 -#> 239 6 0 -#> 240 6 0 -#> 241 6 0 -#> 242 6 0 -#> 243 6 0 -#> 244 6 0 -#> 245 6 0 -#> 246 6 0 -#> 247 6 0 -#> 248 6 0 -#> 249 6 0 -#> 250 6 0 -#> 251 6 0 -#> 252 1 0 -#> 253 1 0 -#> 254 1 0 -#> 255 1 0 -#> 256 1 0 -#> 257 1 0 -#> 258 1 0 -#> 259 1 0 -#> 260 1 0 -#> 261 1 0 -#> 262 1 0 -#> 263 1 0 -#> 264 1 0 -#> 265 1 0 -#> 266 1 0 -#> 267 1 0 -#> 268 1 0 -#> 269 1 0 -#> 270 1 0 -#> 271 1 0 -#> 272 1 0 -#> 273 1 0 -#> 274 1 0 -#> 275 1 0 -#> 276 1 0 -#> 277 1 0 -#> 278 1 0 -#> 279 1 0 -#> 280 1 0 -#> 281 1 0 -#> 282 1 0 -#> 283 6 1 -#> 284 6 1 -#> 285 6 1 -#> 286 6 1 -#> 287 6 1 -#> 288 6 1 -#> 289 6 1 -#> 290 6 1 -#> 291 6 1 -#> 292 6 1 -#> 293 6 1 -#> 294 6 1 -#> 295 6 1 -#> 296 6 1 -#> 297 6 1 -#> 298 6 1 -#> 299 6 1 -#> 300 6 1 -#> 301 6 1 -#> 302 6 1 -#> 303 6 1 -#> 304 6 1 -#> 305 6 1 -#> 306 6 1 -#> 307 6 1 -#> 308 6 1 -#> 309 6 1 -#> 310 6 1 -#> 311 6 1 -#> 312 6 1 -#> 313 6 1 -#> 314 6 1 -#> 315 6 1 -#> 316 6 1 -#> 317 6 1 -#> 318 6 1 -#> 319 6 1 -#> 320 6 1 -#> 321 6 1 -#> 322 6 1 -#> 323 6 1 -#> 324 6 1 -#> 325 6 1 -#> 326 6 1 -#> 327 6 1 -#> 328 6 1 -#> 329 6 1 -#> 330 6 1 -#> 331 6 1 -#> 332 6 1 -#> 333 6 1 -#> 334 6 1 -#> 335 6 1 -#> 336 6 1 -#> 337 6 1 -#> 338 6 1 -#> 339 6 1 -#> 340 6 1 -#> 341 6 1 -#> 342 6 1 -#> 343 6 1 -#> 344 6 1 -#> 345 6 1 -#> 346 2 1 -#> 347 2 1 -#> 348 2 1 -#> 349 2 1 -#> 350 2 1 -#> 351 2 1 -#> 352 2 1 -#> 353 2 1 -#> 354 2 1 -#> 355 2 1 -#> 356 2 1 -#> 357 2 1 -#> 358 2 1 -#> 359 2 1 -#> 360 2 1 -#> 361 2 1 -#> 362 2 1 -#> 363 2 1 -#> 364 2 1 -#> 365 2 1 -#> 366 2 1 -#> 367 2 1 -#> 368 2 1 -#> 369 2 1 -#> 370 2 1 -#> 371 2 1 -#> 372 2 1 -#> 373 2 1 -#> 374 2 1 -#> 375 2 1 -#> 376 2 1 -#> 377 2 1 -#> 378 6 1 -#> 379 6 1 -#> 380 6 1 -#> 381 6 1 -#> 382 6 1 -#> 383 6 1 -#> 384 6 1 -#> 385 6 1 -#> 386 6 1 -#> 387 6 1 -#> 388 6 1 -#> 389 6 1 -#> 390 6 1 -#> 391 6 1 -#> 392 6 1 -#> 393 6 1 -#> 394 6 1 -#> 395 6 1 -#> 396 6 1 -#> 397 6 1 -#> 398 6 1 -#> 399 6 1 -#> 400 6 1 -#> 401 6 1 -#> 402 6 1 -#> 403 6 1 -#> 404 6 1 -#> 405 6 1 -#> 406 6 1 -#> 407 6 1 -#> 408 6 1 -#> 409 6 1 -#> 410 8 0 -#> 411 8 0 -#> 412 8 0 -#> 413 8 0 -#> 414 8 0 -#> 415 8 0 -#> 416 8 0 -#> 417 8 0 -#> 418 8 0 -#> 419 8 0 -#> 420 8 0 -#> 421 8 0 -#> 422 8 0 -#> 423 8 0 -#> 424 8 0 -#> 425 8 0 -#> 426 8 0 -#> 427 8 0 -#> 428 8 0 -#> 429 8 0 -#> 430 8 0 -#> 431 8 0 -#> 432 8 0 -#> 433 8 0 -#> 434 8 0 -#> 435 8 0 -#> 436 8 0 -#> 437 8 0 -#> 438 8 0 -#> 439 2 0 -#> 440 2 0 -#> 441 2 0 -#> 442 2 0 -#> 443 2 0 -#> 444 2 0 -#> 445 2 0 -#> 446 2 0 -#> 447 2 0 -#> 448 2 0 -#> 449 2 0 -#> 450 2 0 -#> 451 2 0 -#> 452 2 0 -#> 453 2 0 -#> 454 2 0 -#> 455 2 0 -#> 456 2 0 -#> 457 2 0 -#> 458 2 0 -#> 459 2 0 -#> 460 2 0 -#> 461 2 0 -#> 462 2 0 -#> 463 2 0 -#> 464 2 0 -#> 465 2 0 -#> 466 2 0 -#> 467 2 0 -#> 468 2 0 -#> 469 2 0 -#> 470 2 0 -#> 471 2 0 -#> 472 2 0 -#> 473 2 0 -#> 474 2 0 -#> 475 2 0 -#> 476 2 0 -#> 477 2 0 -#> 478 2 0 -#> 479 2 0 -#> 480 2 0 -#> 481 2 0 -#> 482 2 0 -#> 483 2 0 -#> 484 2 0 -#> 485 2 0 -#> 486 2 0 -#> 487 2 0 -#> 488 2 0 -#> 489 2 0 -#> 490 2 0 -#> 491 2 0 -#> 492 2 0 -#> 493 2 0 -#> 494 2 0 -#> 495 2 0 -#> 496 2 0 -#> 497 2 0 -#> 498 2 0 -#> 499 2 0 -#> 500 2 0 -#> 501 3 0 -#> 502 3 0 -#> 503 3 0 -#> 504 3 0 -#> 505 3 0 -#> 506 3 0 -#> 507 3 0 -#> 508 3 0 -#> 509 3 0 -#> 510 3 0 -#> 511 3 0 -#> 512 3 0 -#> 513 3 0 -#> 514 3 0 -#> 515 3 0 -#> 516 3 0 -#> 517 3 0 -#> 518 3 0 -#> 519 3 0 -#> 520 3 0 -#> 521 3 0 -#> 522 3 0 -#> 523 3 0 -#> 524 3 0 -#> 525 3 0 -#> 526 3 0 -#> 527 3 0 -#> 528 3 0 -#> 529 3 0 -#> 530 3 0 -#> 531 3 0 -#> 532 1 0 -#> 533 1 0 -#> 534 1 0 -#> 535 1 0 -#> 536 1 0 -#> 537 1 0 -#> 538 1 0 -#> 539 1 0 -#> 540 1 0 -#> 541 1 0 -#> 542 1 0 -#> 543 1 0 -#> 544 1 0 -#> 545 1 0 -#> 546 1 0 -#> 547 1 0 -#> 548 1 0 -#> 549 1 0 -#> 550 1 0 -#> 551 1 0 -#> 552 1 0 -#> 553 1 0 -#> 554 1 0 -#> 555 1 0 -#> 556 1 0 -#> 557 1 0 -#> 558 1 0 -#> 559 1 0 -#> 560 1 0 -#> 561 1 0 -#> 562 1 0 -#> 563 1 0 -#> 564 6 1 -#> 565 6 1 -#> 566 6 1 -#> 567 6 1 -#> 568 6 1 -#> 569 6 1 -#> 570 6 1 -#> 571 6 1 -#> 572 6 1 -#> 573 6 1 -#> 574 6 1 -#> 575 6 1 -#> 576 6 1 -#> 577 6 1 -#> 578 6 1 -#> 579 6 1 -#> 580 6 1 -#> 581 6 1 -#> 582 6 1 -#> 583 6 1 -#> 584 6 1 -#> 585 6 1 -#> 586 6 1 -#> 587 6 1 -#> 588 6 1 -#> 589 6 1 -#> 590 6 1 -#> 591 6 1 -#> 592 1 0 -#> 593 1 0 -#> 594 1 0 -#> 595 1 0 -#> 596 1 0 -#> 597 1 0 -#> 598 1 0 -#> 599 1 0 -#> 600 1 0 -#> 601 1 0 -#> 602 1 0 -#> 603 1 0 -#> 604 1 0 -#> 605 1 0 -#> 606 1 0 -#> 607 1 0 -#> 608 1 0 -#> 609 1 0 -#> 610 1 0 -#> 611 1 0 -#> 612 1 0 -#> 613 1 0 -#> 614 1 0 -#> 615 1 0 -#> 616 1 0 -#> 617 1 0 -#> 618 1 0 -#> 619 1 0 -#> 620 1 0 -#> 621 1 0 -#> 622 1 0 -#> 623 3 0 -#> 624 3 0 -#> 625 3 0 -#> 626 3 0 -#> 627 3 0 -#> 628 3 0 -#> 629 3 0 -#> 630 3 0 -#> 631 3 0 -#> 632 3 0 -#> 633 3 0 -#> 634 3 0 -#> 635 3 0 -#> 636 3 0 -#> 637 3 0 -#> 638 3 0 -#> 639 3 0 -#> 640 3 0 -#> 641 3 0 -#> 642 3 0 -#> 643 3 0 -#> 644 3 0 -#> 645 3 0 -#> 646 3 0 -#> 647 3 0 -#> 648 3 0 -#> 649 3 0 -#> 650 3 0 -#> 651 3 0 -#> 652 3 0 -#> 653 3 0 -#> 654 3 0 -#> 655 3 0 -#> 656 3 0 -#> 657 3 0 -#> 658 3 0 -#> 659 3 0 -#> 660 3 0 -#> 661 3 0 -#> 662 3 0 -#> 663 3 0 -#> 664 3 0 -#> 665 3 0 -#> 666 3 0 -#> 667 3 0 -#> 668 3 0 -#> 669 3 0 -#> 670 3 0 -#> 671 3 0 -#> 672 3 0 -#> 673 3 0 -#> 674 3 0 -#> 675 3 0 -#> 676 3 0 -#> 677 3 0 -#> 678 3 0 -#> 679 3 0 -#> 680 3 0 -#> 681 3 0 -#> 682 3 0 -#> 683 3 0 -#> 684 3 0 -#> 685 3 0 -#> 686 3 0 -#> 687 3 0 -#> 688 3 0 -#> 689 3 0 -#> 690 3 0 -#> 691 3 0 -#> 692 3 0 -#> 693 3 0 -#> 694 3 0 -#> 695 3 0 -#> 696 3 0 -#> 697 3 0 -#> 698 3 0 -#> 699 3 0 -#> 700 3 0 -#> 701 3 0 -#> 702 3 0 -#> 703 3 0 -#> 704 3 0 -#> 705 3 0 -#> 706 3 0 -#> 707 3 0 -#> 708 3 0 -#> 709 3 0 -#> 710 3 0 -#> 711 3 0 -#> 712 3 0 -#> 713 3 0 -#> 714 3 0 -#> 715 3 0 -#> 716 3 0 -#> 717 8 0 -#> 718 8 0 -#> 719 8 0 -#> 720 8 0 -#> 721 8 0 -#> 722 8 0 -#> 723 8 0 -#> 724 8 0 -#> 725 8 0 -#> 726 8 0 -#> 727 8 0 -#> 728 8 0 -#> 729 8 0 -#> 730 8 0 -#> 731 8 0 -#> 732 8 0 -#> 733 8 0 -#> 734 8 0 -#> 735 8 0 -#> 736 8 0 -#> 737 8 0 -#> 738 8 0 -#> 739 8 0 -#> 740 8 0 -#> 741 8 0 -#> 742 8 0 -#> 743 8 0 -#> 744 8 0 -#> 745 8 0 -#> 746 8 0 -#> 747 8 0 -#> 748 8 0 -#> 749 5 0 -#> 750 5 0 -#> 751 5 0 -#> 752 5 0 -#> 753 5 0 -#> 754 5 0 -#> 755 5 0 -#> 756 5 0 -#> 757 5 0 -#> 758 5 0 -#> 759 5 0 -#> 760 5 0 -#> 761 5 0 -#> 762 5 0 -#> 763 5 0 -#> 764 5 0 -#> 765 5 0 -#> 766 5 0 -#> 767 5 0 -#> 768 5 0 -#> 769 5 0 -#> 770 5 0 -#> 771 5 0 -#> 772 5 0 -#> 773 5 0 -#> 774 5 0 -#> 775 5 0 -#> 776 5 0 -#> 777 5 0 -#> 778 5 0 -#> 779 3 0 -#> 780 3 0 -#> 781 3 0 -#> 782 3 0 -#> 783 3 0 -#> 784 3 0 -#> 785 3 0 -#> 786 3 0 -#> 787 3 0 -#> 788 3 0 -#> 789 3 0 -#> 790 3 0 -#> 791 3 0 -#> 792 3 0 -#> 793 3 0 -#> 794 3 0 -#> 795 3 0 -#> 796 3 0 -#> 797 3 0 -#> 798 3 0 -#> 799 3 0 -#> 800 3 0 -#> 801 3 0 -#> 802 3 0 -#> 803 3 0 -#> 804 3 0 -#> 805 3 0 -#> 806 3 0 -#> 807 3 0 -#> 808 3 0 -#> 809 3 0 -#> 810 3 0 -#> 811 0 0 -#> 812 0 0 -#> 813 0 0 -#> 814 0 0 -#> 815 0 0 -#> 816 0 0 -#> 817 0 0 -#> 818 0 0 -#> 819 0 0 -#> 820 0 0 -#> 821 0 0 -#> 822 0 0 -#> 823 0 0 -#> 824 0 0 -#> 825 0 0 -#> 826 0 0 -#> 827 0 0 -#> 828 0 0 -#> 829 0 0 -#> 830 0 0 -#> 831 0 0 -#> 832 0 0 -#> 833 0 0 -#> 834 0 0 -#> 835 0 0 -#> 836 0 0 -#> 837 0 0 -#> 838 0 0 -#> 839 0 0 -#> 840 1 0 -#> 841 1 0 -#> 842 1 0 -#> 843 1 0 -#> 844 1 0 -#> 845 1 0 -#> 846 1 0 -#> 847 1 0 -#> 848 1 0 -#> 849 1 0 -#> 850 1 0 -#> 851 1 0 -#> 852 1 0 -#> 853 1 0 -#> 854 1 0 -#> 855 1 0 -#> 856 1 0 -#> 857 1 0 -#> 858 1 0 -#> 859 1 0 -#> 860 1 0 -#> 861 1 0 -#> 862 1 0 -#> 863 1 0 -#> 864 1 0 -#> 865 1 0 -#> 866 1 0 -#> 867 1 0 -#> 868 1 0 -#> 869 1 0 -#> 870 1 0 -#> 871 1 0 -#> 872 3 0 -#> 873 3 0 -#> 874 3 0 -#> 875 3 0 -#> 876 3 0 -#> 877 3 0 -#> 878 3 0 -#> 879 3 0 -#> 880 3 0 -#> 881 3 0 -#> 882 3 0 -#> 883 3 0 -#> 884 3 0 -#> 885 3 0 -#> 886 3 0 -#> 887 3 0 -#> 888 3 0 -#> 889 3 0 -#> 890 3 0 -#> 891 3 0 -#> 892 3 0 -#> 893 3 0 -#> 894 3 0 -#> 895 3 0 -#> 896 3 0 -#> 897 3 0 -#> 898 3 0 -#> 899 3 0 -#> 900 3 0 -#> 901 3 0 -#> 902 3 0 -#> 903 3 0 -#> 904 2 0 -#> 905 2 0 -#> 906 2 0 -#> 907 2 0 -#> 908 2 0 -#> 909 2 0 -#> 910 2 0 -#> 911 2 0 -#> 912 2 0 -#> 913 2 0 -#> 914 2 0 -#> 915 2 0 -#> 916 2 0 -#> 917 2 0 -#> 918 2 0 -#> 919 2 0 -#> 920 2 0 -#> 921 2 0 -#> 922 2 0 -#> 923 2 0 -#> 924 2 0 -#> 925 2 0 -#> 926 2 0 -#> 927 2 0 -#> 928 2 0 -#> 929 2 0 -#> 930 2 0 -#> 931 2 0 -#> 932 2 0 -#> 933 2 0 -#> 934 2 0 -#> 935 2 0 -#> 936 2 0 -#> 937 2 0 -#> 938 2 0 -#> 939 2 0 -#> 940 2 0 -#> 941 2 0 -#> 942 2 0 -#> 943 2 0 -#> 944 2 0 -#> 945 2 0 -#> 946 2 0 -#> 947 2 0 -#> 948 2 0 -#> 949 2 0 -#> 950 2 0 -#> 951 2 0 -#> 952 2 0 -#> 953 2 0 -#> 954 2 0 -#> 955 2 0 -#> 956 2 0 -#> 957 2 0 -#> 958 2 0 -#> 959 2 0 -#> 960 2 0 -#> 961 2 0 -#> 962 2 0 -#> 963 2 0 -#> 964 2 0 -#> 965 2 0 -#> 966 1 0 -#> 967 1 0 -#> 968 1 0 -#> 969 1 0 -#> 970 1 0 -#> 971 1 0 -#> 972 1 0 -#> 973 1 0 -#> 974 1 0 -#> 975 1 0 -#> 976 1 0 -#> 977 1 0 -#> 978 1 0 -#> 979 1 0 -#> 980 1 0 -#> 981 1 0 -#> 982 1 0 -#> 983 1 0 -#> 984 1 0 -#> 985 1 0 -#> 986 1 0 -#> 987 1 0 -#> 988 1 0 -#> 989 1 0 -#> 990 1 0 -#> 991 1 0 -#> 992 1 0 -#> 993 1 0 -#> 994 1 0 -#> 995 1 0 -#> 996 4 0 -#> 997 4 0 -#> 998 4 0 -#> 999 4 0 -#> 1000 4 0 -#> 1001 4 0 -#> 1002 4 0 -#> 1003 4 0 -#> 1004 4 0 -#> 1005 4 0 -#> 1006 4 0 -#> 1007 4 0 -#> 1008 4 0 -#> 1009 4 0 -#> 1010 4 0 -#> 1011 4 0 -#> 1012 4 0 -#> 1013 4 0 -#> 1014 4 0 -#> 1015 4 0 -#> 1016 4 0 -#> 1017 4 0 -#> 1018 4 0 -#> 1019 4 0 -#> 1020 4 0 -#> 1021 4 0 -#> 1022 4 0 -#> 1023 4 0 -#> 1024 4 0 -#> 1025 4 0 -#> 1026 4 0 -#> 1027 4 0 -#> 1028 4 0 -#> 1029 4 0 -#> 1030 4 0 -#> 1031 4 0 -#> 1032 4 0 -#> 1033 4 0 -#> 1034 4 0 -#> 1035 4 0 -#> 1036 4 0 -#> 1037 4 0 -#> 1038 4 0 -#> 1039 4 0 -#> 1040 4 0 -#> 1041 4 0 -#> 1042 4 0 -#> 1043 4 0 -#> 1044 4 0 -#> 1045 4 0 -#> 1046 4 0 -#> 1047 4 0 -#> 1048 4 0 -#> 1049 4 0 -#> 1050 4 0 -#> 1051 4 0 -#> 1052 4 0 -#> 1053 4 0 -#> 1054 4 0 -#> 1055 4 0 -#> 1056 4 0 -#> 1057 4 0 -#> 1058 4 0 -#> 1059 4 0 -#> 1060 2 0 -#> 1061 2 0 -#> 1062 2 0 -#> 1063 2 0 -#> 1064 2 0 -#> 1065 2 0 -#> 1066 2 0 -#> 1067 2 0 -#> 1068 2 0 -#> 1069 2 0 -#> 1070 2 0 -#> 1071 2 0 -#> 1072 2 0 -#> 1073 2 0 -#> 1074 2 0 -#> 1075 2 0 -#> 1076 2 0 -#> 1077 2 0 -#> 1078 2 0 -#> 1079 2 0 -#> 1080 2 0 -#> 1081 2 0 -#> 1082 2 0 -#> 1083 2 0 -#> 1084 2 0 -#> 1085 2 0 -#> 1086 2 0 -#> 1087 2 0 -#> 1088 2 0 -#> 1089 2 0 -#> 1090 2 0 -#> 1091 2 0 -#> 1092 2 0 -#> 1093 2 0 -#> 1094 2 0 -#> 1095 2 0 -#> 1096 2 0 -#> 1097 2 0 -#> 1098 2 0 -#> 1099 2 0 -#> 1100 2 0 -#> 1101 2 0 -#> 1102 2 0 -#> 1103 2 0 -#> 1104 2 0 -#> 1105 2 0 -#> 1106 2 0 -#> 1107 2 0 -#> 1108 2 0 -#> 1109 2 0 -#> 1110 2 0 -#> 1111 2 0 -#> 1112 2 0 -#> 1113 2 0 -#> 1114 2 0 -#> 1115 2 0 -#> 1116 2 0 -#> 1117 2 0 -#> 1118 2 0 -#> 1119 2 0 -#> 1120 2 0 -#> 1121 2 0 -#> 1122 3 0 -#> 1123 3 0 -#> 1124 3 0 -#> 1125 3 0 -#> 1126 3 0 -#> 1127 3 0 -#> 1128 3 0 -#> 1129 3 0 -#> 1130 3 0 -#> 1131 3 0 -#> 1132 3 0 -#> 1133 3 0 -#> 1134 3 0 -#> 1135 3 0 -#> 1136 3 0 -#> 1137 3 0 -#> 1138 3 0 -#> 1139 3 0 -#> 1140 3 0 -#> 1141 3 0 -#> 1142 3 0 -#> 1143 3 0 -#> 1144 3 0 -#> 1145 3 0 -#> 1146 3 0 -#> 1147 3 0 -#> 1148 3 0 -#> 1149 3 0 -#> 1150 3 0 -#> 1151 3 0 -#> 1152 3 0 -#> 1153 3 0 -#> 1154 7 1 -#> 1155 7 1 -#> 1156 7 1 -#> 1157 7 1 -#> 1158 7 1 -#> 1159 7 1 -#> 1160 7 1 -#> 1161 7 1 -#> 1162 7 1 -#> 1163 7 1 -#> 1164 7 1 -#> 1165 7 1 -#> 1166 7 1 -#> 1167 7 1 -#> 1168 7 1 -#> 1169 7 1 -#> 1170 7 1 -#> 1171 7 1 -#> 1172 7 1 -#> 1173 7 1 -#> 1174 7 1 -#> 1175 7 1 -#> 1176 7 1 -#> 1177 7 1 -#> 1178 7 1 -#> 1179 7 1 -#> 1180 7 1 -#> 1181 7 1 -#> 1182 7 1 -#> 1183 7 1 -#> 1184 7 1 -#> 1185 7 1 -#> 1186 6 0 -#> 1187 6 0 -#> 1188 6 0 -#> 1189 6 0 -#> 1190 6 0 -#> 1191 6 0 -#> 1192 6 0 -#> 1193 6 0 -#> 1194 6 0 -#> 1195 6 0 -#> 1196 6 0 -#> 1197 6 0 -#> 1198 6 0 -#> 1199 6 0 -#> 1200 6 0 -#> 1201 6 0 -#> 1202 6 0 -#> 1203 6 0 -#> 1204 6 0 -#> 1205 6 0 -#> 1206 6 0 -#> 1207 6 0 -#> 1208 6 0 -#> 1209 6 0 -#> 1210 6 0 -#> 1211 6 0 -#> 1212 6 0 -#> 1213 6 0 -#> 1214 6 0 -#> 1215 6 0 -#> 1216 6 0 -#> 1217 2 0 -#> 1218 2 0 -#> 1219 2 0 -#> 1220 2 0 -#> 1221 2 0 -#> 1222 2 0 -#> 1223 2 0 -#> 1224 2 0 -#> 1225 2 0 -#> 1226 2 0 -#> 1227 2 0 -#> 1228 2 0 -#> 1229 2 0 -#> 1230 2 0 -#> 1231 2 0 -#> 1232 2 0 -#> 1233 2 0 -#> 1234 2 0 -#> 1235 2 0 -#> 1236 2 0 -#> 1237 2 0 -#> 1238 2 0 -#> 1239 2 0 -#> 1240 2 0 -#> 1241 2 0 -#> 1242 2 0 -#> 1243 2 0 -#> 1244 2 0 -#> 1245 2 0 -#> 1246 2 0 -#> 1247 2 0 -#> 1248 2 0 -#> 1249 2 0 -#> 1250 2 0 -#> 1251 2 0 -#> 1252 2 0 -#> 1253 2 0 -#> 1254 2 0 -#> 1255 2 0 -#> 1256 2 0 -#> 1257 2 0 -#> 1258 2 0 -#> 1259 2 0 -#> 1260 2 0 -#> 1261 2 0 -#> 1262 2 0 -#> 1263 2 0 -#> 1264 2 0 -#> 1265 2 0 -#> 1266 2 0 -#> 1267 2 0 -#> 1268 2 0 -#> 1269 2 0 -#> 1270 2 0 -#> 1271 2 0 -#> 1272 2 0 -#> 1273 2 0 -#> 1274 2 0 -#> 1275 2 0 -#> 1276 2 0 -#> 1277 2 0 -#> 1278 2 0 -#> 1279 2 0 -#> 1280 6 1 -#> 1281 6 1 -#> 1282 6 1 -#> 1283 6 1 -#> 1284 6 1 -#> 1285 6 1 -#> 1286 6 1 -#> 1287 6 1 -#> 1288 6 1 -#> 1289 6 1 -#> 1290 6 1 -#> 1291 6 1 -#> 1292 6 1 -#> 1293 6 1 -#> 1294 6 1 -#> 1295 6 1 -#> 1296 6 1 -#> 1297 6 1 -#> 1298 6 1 -#> 1299 6 1 -#> 1300 6 1 -#> 1301 6 1 -#> 1302 6 1 -#> 1303 6 1 -#> 1304 6 1 -#> 1305 6 1 -#> 1306 6 1 -#> 1307 6 1 -#> 1308 6 1 -#> 1309 6 1 -#> 1310 6 1 -#> 1311 2 0 -#> 1312 2 0 -#> 1313 2 0 -#> 1314 2 0 -#> 1315 2 0 -#> 1316 2 0 -#> 1317 2 0 -#> 1318 2 0 -#> 1319 2 0 -#> 1320 2 0 -#> 1321 2 0 -#> 1322 2 0 -#> 1323 2 0 -#> 1324 2 0 -#> 1325 2 0 -#> 1326 2 0 -#> 1327 2 0 -#> 1328 2 0 -#> 1329 2 0 -#> 1330 2 0 -#> 1331 2 0 -#> 1332 2 0 -#> 1333 2 0 -#> 1334 2 0 -#> 1335 2 0 -#> 1336 2 0 -#> 1337 2 0 -#> 1338 2 0 -#> 1339 2 0 -#> 1340 2 0 -#> 1341 2 0 -#> 1342 2 0 -#> 1343 3 0 -#> 1344 3 0 -#> 1345 3 0 -#> 1346 3 0 -#> 1347 3 0 -#> 1348 3 0 -#> 1349 3 0 -#> 1350 3 0 -#> 1351 3 0 -#> 1352 3 0 -#> 1353 3 0 -#> 1354 3 0 -#> 1355 3 0 -#> 1356 3 0 -#> 1357 3 0 -#> 1358 3 0 -#> 1359 3 0 -#> 1360 3 0 -#> 1361 3 0 -#> 1362 3 0 -#> 1363 3 0 -#> 1364 3 0 -#> 1365 3 0 -#> 1366 3 0 -#> 1367 3 0 -#> 1368 3 0 -#> 1369 3 0 -#> 1370 3 0 -#> 1371 3 0 -#> 1372 5 0 -#> 1373 5 0 -#> 1374 5 0 -#> 1375 5 0 -#> 1376 5 0 -#> 1377 5 0 -#> 1378 5 0 -#> 1379 5 0 -#> 1380 5 0 -#> 1381 5 0 -#> 1382 5 0 -#> 1383 5 0 -#> 1384 5 0 -#> 1385 5 0 -#> 1386 5 0 -#> 1387 5 0 -#> 1388 5 0 -#> 1389 5 0 -#> 1390 5 0 -#> 1391 5 0 -#> 1392 5 0 -#> 1393 5 0 -#> 1394 5 0 -#> 1395 5 0 -#> 1396 5 0 -#> 1397 5 0 -#> 1398 5 0 -#> 1399 5 0 -#> 1400 5 0 -#> 1401 5 0 -#> 1402 5 0 -#> 1403 0 0 -#> 1404 0 0 -#> 1405 0 0 -#> 1406 0 0 -#> 1407 0 0 -#> 1408 0 0 -#> 1409 0 0 -#> 1410 0 0 -#> 1411 0 0 -#> 1412 0 0 -#> 1413 0 0 -#> 1414 0 0 -#> 1415 0 0 -#> 1416 0 0 -#> 1417 0 0 -#> 1418 0 0 -#> 1419 0 0 -#> 1420 0 0 -#> 1421 0 0 -#> 1422 0 0 -#> 1423 0 0 -#> 1424 0 0 -#> 1425 0 0 -#> 1426 0 0 -#> 1427 0 0 -#> 1428 0 0 -#> 1429 0 0 -#> 1430 0 0 -#> 1431 0 0 -#> 1432 0 0 -#> 1433 0 0 -#> 1434 0 0 -#> 1435 1 0 -#> 1436 1 0 -#> 1437 1 0 -#> 1438 1 0 -#> 1439 1 0 -#> 1440 1 0 -#> 1441 1 0 -#> 1442 1 0 -#> 1443 1 0 -#> 1444 1 0 -#> 1445 1 0 -#> 1446 1 0 -#> 1447 1 0 -#> 1448 1 0 -#> 1449 1 0 -#> 1450 1 0 -#> 1451 1 0 -#> 1452 1 0 -#> 1453 1 0 -#> 1454 1 0 -#> 1455 1 0 -#> 1456 1 0 -#> 1457 1 0 -#> 1458 1 0 -#> 1459 1 0 -#> 1460 1 0 -#> 1461 1 0 -#> 1462 1 0 -#> 1463 1 0 -#> 1464 1 0 -#> 1465 1 0 -#> 1466 1 0 -#> 1467 1 0 -#> 1468 1 0 -#> 1469 1 0 -#> 1470 1 0 -#> 1471 1 0 -#> 1472 1 0 -#> 1473 1 0 -#> 1474 1 0 -#> 1475 1 0 -#> 1476 1 0 -#> 1477 1 0 -#> 1478 1 0 -#> 1479 1 0 -#> 1480 1 0 -#> 1481 1 0 -#> 1482 1 0 -#> 1483 1 0 -#> 1484 1 0 -#> 1485 1 0 -#> 1486 1 0 -#> 1487 1 0 -#> 1488 1 0 -#> 1489 1 0 -#> 1490 1 0 -#> 1491 1 0 -#> 1492 1 0 -#> 1493 1 0 -#> 1494 1 0 -#> 1495 1 0 -#> 1496 2 0 -#> 1497 2 0 -#> 1498 2 0 -#> 1499 2 0 -#> 1500 2 0 -#> 1501 2 0 -#> 1502 2 0 -#> 1503 2 0 -#> 1504 2 0 -#> 1505 2 0 -#> 1506 2 0 -#> 1507 2 0 -#> 1508 2 0 -#> 1509 2 0 -#> 1510 2 0 -#> 1511 2 0 -#> 1512 2 0 -#> 1513 2 0 -#> 1514 2 0 -#> 1515 2 0 -#> 1516 2 0 -#> 1517 2 0 -#> 1518 2 0 -#> 1519 2 0 -#> 1520 2 0 -#> 1521 2 0 -#> 1522 2 0 -#> 1523 2 0 -#> 1524 2 0 -#> 1525 2 0 -#> 1526 2 0 -#> 1527 2 0 -#> 1528 4 0 -#> 1529 4 0 -#> 1530 4 0 -#> 1531 4 0 -#> 1532 4 0 -#> 1533 4 0 -#> 1534 4 0 -#> 1535 4 0 -#> 1536 4 0 -#> 1537 4 0 -#> 1538 4 0 -#> 1539 4 0 -#> 1540 4 0 -#> 1541 4 0 -#> 1542 4 0 -#> 1543 4 0 -#> 1544 4 0 -#> 1545 4 0 -#> 1546 4 0 -#> 1547 4 0 -#> 1548 4 0 -#> 1549 4 0 -#> 1550 4 0 -#> 1551 4 0 -#> 1552 4 0 -#> 1553 4 0 -#> 1554 4 0 -#> 1555 4 0 -#> 1556 4 0 -#> 1557 4 0 -#> 1558 4 0 -#> 1559 4 0 -#> 1560 6 0 -#> 1561 6 0 -#> 1562 6 0 -#> 1563 6 0 -#> 1564 6 0 -#> 1565 6 0 -#> 1566 6 0 -#> 1567 6 0 -#> 1568 6 0 -#> 1569 6 0 -#> 1570 6 0 -#> 1571 6 0 -#> 1572 6 0 -#> 1573 6 0 -#> 1574 6 0 -#> 1575 6 0 -#> 1576 6 0 -#> 1577 6 0 -#> 1578 6 0 -#> 1579 6 0 -#> 1580 6 0 -#> 1581 6 0 -#> 1582 6 0 -#> 1583 6 0 -#> 1584 6 0 -#> 1585 6 0 -#> 1586 6 0 -#> 1587 6 0 -#> 1588 6 0 -#> 1589 6 0 -#> 1590 6 0 -#> 1591 2 1 -#> 1592 2 1 -#> 1593 2 1 -#> 1594 2 1 -#> 1595 2 1 -#> 1596 2 1 -#> 1597 2 1 -#> 1598 2 1 -#> 1599 2 1 -#> 1600 2 1 -#> 1601 2 1 -#> 1602 2 1 -#> 1603 2 1 -#> 1604 2 1 -#> 1605 2 1 -#> 1606 2 1 -#> 1607 2 1 -#> 1608 2 1 -#> 1609 2 1 -#> 1610 2 1 -#> 1611 2 1 -#> 1612 2 1 -#> 1613 2 1 -#> 1614 2 1 -#> 1615 2 1 -#> 1616 2 1 -#> 1617 2 1 -#> 1618 2 1 -#> 1619 2 1 -#> 1620 2 1 -#> 1621 2 1 -#> 1622 2 1 -#> 1623 2 1 -#> 1624 2 1 -#> 1625 2 1 -#> 1626 2 1 -#> 1627 2 1 -#> 1628 2 1 -#> 1629 2 1 -#> 1630 2 1 -#> 1631 2 1 -#> 1632 2 1 -#> 1633 2 1 -#> 1634 2 1 -#> 1635 2 1 -#> 1636 2 1 -#> 1637 2 1 -#> 1638 2 1 -#> 1639 2 1 -#> 1640 2 1 -#> 1641 2 1 -#> 1642 2 1 -#> 1643 2 1 -#> 1644 2 1 -#> 1645 2 1 -#> 1646 2 1 -#> 1647 2 1 -#> 1648 2 1 -#> 1649 2 1 -#> 1650 2 1 -#> 1651 2 1 -#> 1652 2 1 -#> 1653 2 0 -#> 1654 2 0 -#> 1655 2 0 -#> 1656 2 0 -#> 1657 2 0 -#> 1658 2 0 -#> 1659 2 0 -#> 1660 2 0 -#> 1661 2 0 -#> 1662 2 0 -#> 1663 2 0 -#> 1664 2 0 -#> 1665 2 0 -#> 1666 2 0 -#> 1667 2 0 -#> 1668 2 0 -#> 1669 2 0 -#> 1670 2 0 -#> 1671 2 0 -#> 1672 2 0 -#> 1673 2 0 -#> 1674 2 0 -#> 1675 2 0 -#> 1676 2 0 -#> 1677 2 0 -#> 1678 2 0 -#> 1679 2 0 -#> 1680 2 0 -#> 1681 2 0 -#> 1682 2 0 -#> 1683 2 0 -#> 1684 2 0 -#> 1685 4 1 -#> 1686 4 1 -#> 1687 4 1 -#> 1688 4 1 -#> 1689 4 1 -#> 1690 4 1 -#> 1691 4 1 -#> 1692 4 1 -#> 1693 4 1 -#> 1694 4 1 -#> 1695 4 1 -#> 1696 4 1 -#> 1697 4 1 -#> 1698 4 1 -#> 1699 4 1 -#> 1700 4 1 -#> 1701 4 1 -#> 1702 4 1 -#> 1703 4 1 -#> 1704 4 1 -#> 1705 4 1 -#> 1706 4 1 -#> 1707 4 1 -#> 1708 4 1 -#> 1709 4 1 -#> 1710 4 1 -#> 1711 4 1 -#> 1712 4 1 -#> 1713 4 1 -#> 1714 4 1 -#> 1715 4 1 -#> 1716 4 1 -#> 1717 5 0 -#> 1718 5 0 -#> 1719 5 0 -#> 1720 5 0 -#> 1721 5 0 -#> 1722 5 0 -#> 1723 5 0 -#> 1724 5 0 -#> 1725 5 0 -#> 1726 5 0 -#> 1727 5 0 -#> 1728 5 0 -#> 1729 5 0 -#> 1730 5 0 -#> 1731 5 0 -#> 1732 5 0 -#> 1733 5 0 -#> 1734 5 0 -#> 1735 5 0 -#> 1736 5 0 -#> 1737 5 0 -#> 1738 5 0 -#> 1739 5 0 -#> 1740 5 0 -#> 1741 5 0 -#> 1742 5 0 -#> 1743 5 0 -#> 1744 5 0 -#> 1745 5 0 -#> 1746 5 0 -#> 1747 5 0 -#> 1748 5 0 -#> 1749 3 0 -#> 1750 3 0 -#> 1751 3 0 -#> 1752 3 0 -#> 1753 3 0 -#> 1754 3 0 -#> 1755 3 0 -#> 1756 3 0 -#> 1757 3 0 -#> 1758 3 0 -#> 1759 3 0 -#> 1760 3 0 -#> 1761 3 0 -#> 1762 3 0 -#> 1763 3 0 -#> 1764 3 0 -#> 1765 3 0 -#> 1766 3 0 -#> 1767 3 0 -#> 1768 3 0 -#> 1769 3 0 -#> 1770 3 0 -#> 1771 3 0 -#> 1772 3 0 -#> 1773 3 0 -#> 1774 3 0 -#> 1775 3 0 -#> 1776 3 0 -#> 1777 3 0 -#> 1778 3 0 -#> 1779 3 0 -#> 1780 0 0 -#> 1781 0 0 -#> 1782 0 0 -#> 1783 0 0 -#> 1784 0 0 -#> 1785 0 0 -#> 1786 0 0 -#> 1787 0 0 -#> 1788 0 0 -#> 1789 0 0 -#> 1790 0 0 -#> 1791 0 0 -#> 1792 0 0 -#> 1793 0 0 -#> 1794 0 0 -#> 1795 0 0 -#> 1796 0 0 -#> 1797 0 0 -#> 1798 0 0 -#> 1799 0 0 -#> 1800 0 0 -#> 1801 0 0 -#> 1802 0 0 -#> 1803 0 0 -#> 1804 0 0 -#> 1805 0 0 -#> 1806 0 0 -#> 1807 0 0 -#> 1808 0 0 -#> 1809 2 0 -#> 1810 2 0 -#> 1811 2 0 -#> 1812 2 0 -#> 1813 2 0 -#> 1814 2 0 -#> 1815 2 0 -#> 1816 2 0 -#> 1817 2 0 -#> 1818 2 0 -#> 1819 2 0 -#> 1820 2 0 -#> 1821 2 0 -#> 1822 2 0 -#> 1823 2 0 -#> 1824 2 0 -#> 1825 2 0 -#> 1826 2 0 -#> 1827 2 0 -#> 1828 2 0 -#> 1829 2 0 -#> 1830 2 0 -#> 1831 2 0 -#> 1832 2 0 -#> 1833 2 0 -#> 1834 2 0 -#> 1835 2 0 -#> 1836 2 0 -#> 1837 2 0 -#> 1838 2 0 -#> 1839 2 0 -#> 1840 3 0 -#> 1841 3 0 -#> 1842 3 0 -#> 1843 3 0 -#> 1844 3 0 -#> 1845 3 0 -#> 1846 3 0 -#> 1847 3 0 -#> 1848 3 0 -#> 1849 3 0 -#> 1850 3 0 -#> 1851 3 0 -#> 1852 3 0 -#> 1853 3 0 -#> 1854 3 0 -#> 1855 3 0 -#> 1856 3 0 -#> 1857 3 0 -#> 1858 3 0 -#> 1859 3 0 -#> 1860 3 0 -#> 1861 3 0 -#> 1862 3 0 -#> 1863 3 0 -#> 1864 3 0 -#> 1865 3 0 -#> 1866 3 0 -#> 1867 3 0 -#> 1868 3 0 -#> 1869 3 0 -#> 1870 3 0 -#> 1871 3 0 -#> 1872 3 0 -#> 1873 3 0 -#> 1874 3 0 -#> 1875 3 0 -#> 1876 3 0 -#> 1877 3 0 -#> 1878 3 0 -#> 1879 3 0 -#> 1880 3 0 -#> 1881 3 0 -#> 1882 3 0 -#> 1883 3 0 -#> 1884 3 0 -#> 1885 3 0 -#> 1886 3 0 -#> 1887 3 0 -#> 1888 3 0 -#> 1889 3 0 -#> 1890 3 0 -#> 1891 3 0 -#> 1892 3 0 -#> 1893 3 0 -#> 1894 3 0 -#> 1895 3 0 -#> 1896 3 0 -#> 1897 3 0 -#> 1898 3 0 -#> 1899 3 0 -#> 1900 3 0 -#> 1901 3 0 -#> 1902 5 0 -#> 1903 5 0 -#> 1904 5 0 -#> 1905 5 0 -#> 1906 5 0 -#> 1907 5 0 -#> 1908 5 0 -#> 1909 5 0 -#> 1910 5 0 -#> 1911 5 0 -#> 1912 5 0 -#> 1913 5 0 -#> 1914 5 0 -#> 1915 5 0 -#> 1916 5 0 -#> 1917 5 0 -#> 1918 5 0 -#> 1919 5 0 -#> 1920 5 0 -#> 1921 5 0 -#> 1922 5 0 -#> 1923 5 0 -#> 1924 5 0 -#> 1925 5 0 -#> 1926 5 0 -#> 1927 5 0 -#> 1928 5 0 -#> 1929 5 0 -#> 1930 5 0 -#> 1931 5 0 -#> 1932 5 0 -#> 1933 2 0 -#> 1934 2 0 -#> 1935 2 0 -#> 1936 2 0 -#> 1937 2 0 -#> 1938 2 0 -#> 1939 2 0 -#> 1940 2 0 -#> 1941 2 0 -#> 1942 2 0 -#> 1943 2 0 -#> 1944 2 0 -#> 1945 2 0 -#> 1946 2 0 -#> 1947 2 0 -#> 1948 2 0 -#> 1949 2 0 -#> 1950 2 0 -#> 1951 2 0 -#> 1952 2 0 -#> 1953 2 0 -#> 1954 2 0 -#> 1955 2 0 -#> 1956 2 0 -#> 1957 2 0 -#> 1958 2 0 -#> 1959 2 0 -#> 1960 2 0 -#> 1961 2 0 -#> 1962 2 0 -#> 1963 2 0 -#> 1964 2 0 -#> 1965 4 0 -#> 1966 4 0 -#> 1967 4 0 -#> 1968 4 0 -#> 1969 4 0 -#> 1970 4 0 -#> 1971 4 0 -#> 1972 4 0 -#> 1973 4 0 -#> 1974 4 0 -#> 1975 4 0 -#> 1976 4 0 -#> 1977 4 0 -#> 1978 4 0 -#> 1979 4 0 -#> 1980 4 0 -#> 1981 4 0 -#> 1982 4 0 -#> 1983 4 0 -#> 1984 4 0 -#> 1985 4 0 -#> 1986 4 0 -#> 1987 4 0 -#> 1988 4 0 -#> 1989 4 0 -#> 1990 4 0 -#> 1991 4 0 -#> 1992 4 0 -#> 1993 4 0 -#> 1994 1 1 -#> 1995 1 1 -#> 1996 1 1 -#> 1997 1 1 -#> 1998 1 1 -#> 1999 1 1 -#> 2000 1 1 -#> 2001 1 1 -#> 2002 1 1 -#> 2003 1 1 -#> 2004 1 1 -#> 2005 1 1 -#> 2006 1 1 -#> 2007 1 1 -#> 2008 1 1 -#> 2009 1 1 -#> 2010 1 1 -#> 2011 1 1 -#> 2012 1 1 -#> 2013 1 1 -#> 2014 1 1 -#> 2015 1 1 -#> 2016 1 1 -#> 2017 1 1 -#> 2018 1 1 -#> 2019 1 1 -#> 2020 1 1 -#> 2021 1 1 -#> 2022 1 1 -#> 2023 1 1 -#> 2024 1 1 -#> 2025 1 1 -#> 2026 3 1 -#> 2027 3 1 -#> 2028 3 1 -#> 2029 3 1 -#> 2030 3 1 -#> 2031 3 1 -#> 2032 3 1 -#> 2033 3 1 -#> 2034 3 1 -#> 2035 3 1 -#> 2036 3 1 -#> 2037 3 1 -#> 2038 3 1 -#> 2039 3 1 -#> 2040 3 1 -#> Game_URL -#> 1 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 2 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 3 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 4 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 5 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 6 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 7 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 8 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 9 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 10 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 11 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 12 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 13 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 14 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 15 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 16 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 17 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 18 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 19 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 20 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 21 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 22 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 23 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 24 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 25 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 26 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 27 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 28 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 29 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 30 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 31 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 32 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga -#> 33 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 34 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 35 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 36 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 37 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 38 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 39 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 40 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 41 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 42 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 43 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 44 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 45 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 46 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 47 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 48 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 49 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 50 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 51 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 52 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 53 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 54 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 55 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 56 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 57 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 58 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 59 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 60 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 61 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 62 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga -#> 63 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 64 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 65 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 66 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 67 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 68 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 69 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 70 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 71 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 72 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 73 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 74 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 75 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 76 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 77 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 78 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 79 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 80 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 81 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 82 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 83 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 84 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 85 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 86 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 87 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 88 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 89 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 90 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 91 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 92 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 93 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga -#> 94 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 95 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 96 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 97 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 98 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 99 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 100 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 101 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 102 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 103 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 104 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 105 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 106 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 107 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 108 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 109 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 110 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 111 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 112 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 113 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 114 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 115 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 116 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 117 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 118 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 119 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 120 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 121 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 122 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 123 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 124 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga -#> 125 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 126 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 127 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 128 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 129 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 130 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 131 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 132 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 133 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 134 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 135 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 136 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 137 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 138 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 139 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 140 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 141 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 142 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 143 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 144 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 145 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 146 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 147 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 148 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 149 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 150 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 151 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 152 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 153 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 154 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 155 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 156 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga -#> 157 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 158 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 159 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 160 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 161 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 162 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 163 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 164 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 165 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 166 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 167 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 168 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 169 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 170 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 171 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 172 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 173 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 174 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 175 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 176 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 177 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 178 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 179 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 180 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 181 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 182 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 183 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 184 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 185 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 186 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 187 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 188 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga -#> 189 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 190 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 191 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 192 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 193 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 194 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 195 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 196 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 197 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 198 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 199 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 200 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 201 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 202 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 203 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 204 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 205 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 206 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 207 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 208 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 209 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 210 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 211 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 212 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 213 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 214 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 215 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 216 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 217 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 218 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 219 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 220 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga -#> 221 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 222 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 223 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 224 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 225 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 226 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 227 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 228 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 229 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 230 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 231 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 232 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 233 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 234 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 235 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 236 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 237 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 238 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 239 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 240 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 241 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 242 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 243 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 244 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 245 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 246 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 247 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 248 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 249 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 250 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 251 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga -#> 252 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 253 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 254 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 255 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 256 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 257 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 258 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 259 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 260 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 261 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 262 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 263 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 264 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 265 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 266 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 267 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 268 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 269 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 270 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 271 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 272 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 273 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 274 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 275 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 276 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 277 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 278 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 279 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 280 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 281 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 282 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga -#> 283 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 284 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 285 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 286 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 287 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 288 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 289 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 290 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 291 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 292 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 293 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 294 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 295 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 296 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 297 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 298 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 299 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 300 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 301 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 302 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 303 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 304 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 305 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 306 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 307 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 308 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 309 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 310 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 311 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 312 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 313 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 314 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga -#> 315 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 316 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 317 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 318 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 319 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 320 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 321 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 322 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 323 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 324 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 325 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 326 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 327 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 328 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 329 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 330 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 331 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 332 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 333 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 334 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 335 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 336 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 337 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 338 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 339 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 340 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 341 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 342 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 343 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 344 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 345 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga -#> 346 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 347 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 348 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 349 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 350 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 351 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 352 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 353 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 354 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 355 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 356 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 357 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 358 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 359 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 360 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 361 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 362 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 363 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 364 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 365 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 366 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 367 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 368 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 369 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 370 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 371 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 372 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 373 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 374 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 375 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 376 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 377 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga -#> 378 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 379 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 380 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 381 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 382 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 383 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 384 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 385 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 386 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 387 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 388 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 389 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 390 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 391 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 392 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 393 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 394 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 395 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 396 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 397 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 398 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 399 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 400 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 401 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 402 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 403 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 404 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 405 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 406 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 407 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 408 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 409 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga -#> 410 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 411 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 412 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 413 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 414 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 415 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 416 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 417 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 418 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 419 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 420 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 421 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 422 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 423 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 424 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 425 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 426 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 427 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 428 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 429 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 430 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 431 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 432 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 433 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 434 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 435 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 436 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 437 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 438 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga -#> 439 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 440 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 441 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 442 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 443 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 444 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 445 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 446 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 447 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 448 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 449 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 450 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 451 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 452 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 453 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 454 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 455 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 456 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 457 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 458 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 459 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 460 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 461 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 462 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 463 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 464 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 465 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 466 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 467 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 468 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga -#> 469 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 470 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 471 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 472 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 473 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 474 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 475 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 476 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 477 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 478 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 479 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 480 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 481 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 482 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 483 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 484 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 485 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 486 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 487 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 488 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 489 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 490 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 491 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 492 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 493 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 494 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 495 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 496 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 497 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 498 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 499 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 500 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga -#> 501 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 502 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 503 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 504 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 505 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 506 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 507 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 508 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 509 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 510 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 511 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 512 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 513 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 514 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 515 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 516 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 517 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 518 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 519 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 520 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 521 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 522 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 523 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 524 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 525 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 526 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 527 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 528 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 529 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 530 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 531 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga -#> 532 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 533 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 534 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 535 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 536 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 537 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 538 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 539 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 540 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 541 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 542 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 543 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 544 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 545 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 546 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 547 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 548 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 549 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 550 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 551 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 552 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 553 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 554 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 555 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 556 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 557 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 558 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 559 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 560 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 561 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 562 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 563 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga -#> 564 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 565 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 566 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 567 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 568 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 569 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 570 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 571 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 572 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 573 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 574 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 575 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 576 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 577 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 578 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 579 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 580 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 581 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 582 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 583 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 584 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 585 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 586 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 587 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 588 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 589 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 590 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 591 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga -#> 592 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 593 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 594 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 595 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 596 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 597 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 598 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 599 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 600 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 601 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 602 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 603 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 604 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 605 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 606 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 607 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 608 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 609 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 610 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 611 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 612 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 613 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 614 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 615 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 616 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 617 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 618 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 619 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 620 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 621 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 622 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga -#> 623 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 624 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 625 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 626 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 627 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 628 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 629 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 630 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 631 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 632 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 633 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 634 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 635 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 636 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 637 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 638 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 639 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 640 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 641 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 642 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 643 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 644 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 645 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 646 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 647 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 648 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 649 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 650 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 651 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 652 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 653 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga -#> 654 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 655 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 656 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 657 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 658 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 659 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 660 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 661 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 662 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 663 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 664 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 665 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 666 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 667 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 668 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 669 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 670 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 671 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 672 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 673 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 674 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 675 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 676 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 677 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 678 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 679 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 680 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 681 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 682 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 683 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 684 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 685 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga -#> 686 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 687 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 688 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 689 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 690 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 691 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 692 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 693 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 694 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 695 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 696 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 697 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 698 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 699 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 700 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 701 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 702 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 703 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 704 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 705 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 706 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 707 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 708 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 709 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 710 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 711 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 712 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 713 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 714 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 715 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 716 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga -#> 717 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 718 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 719 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 720 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 721 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 722 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 723 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 724 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 725 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 726 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 727 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 728 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 729 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 730 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 731 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 732 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 733 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 734 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 735 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 736 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 737 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 738 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 739 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 740 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 741 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 742 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 743 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 744 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 745 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 746 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 747 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 748 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga -#> 749 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 750 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 751 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 752 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 753 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 754 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 755 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 756 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 757 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 758 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 759 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 760 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 761 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 762 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 763 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 764 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 765 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 766 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 767 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 768 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 769 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 770 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 771 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 772 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 773 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 774 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 775 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 776 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 777 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 778 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga -#> 779 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 780 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 781 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 782 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 783 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 784 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 785 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 786 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 787 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 788 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 789 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 790 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 791 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 792 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 793 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 794 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 795 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 796 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 797 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 798 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 799 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 800 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 801 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 802 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 803 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 804 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 805 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 806 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 807 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 808 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 809 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 810 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga -#> 811 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 812 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 813 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 814 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 815 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 816 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 817 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 818 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 819 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 820 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 821 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 822 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 823 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 824 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 825 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 826 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 827 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 828 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 829 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 830 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 831 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 832 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 833 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 834 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 835 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 836 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 837 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 838 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 839 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga -#> 840 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 841 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 842 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 843 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 844 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 845 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 846 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 847 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 848 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 849 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 850 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 851 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 852 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 853 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 854 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 855 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 856 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 857 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 858 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 859 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 860 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 861 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 862 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 863 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 864 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 865 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 866 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 867 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 868 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 869 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 870 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 871 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga -#> 872 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 873 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 874 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 875 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 876 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 877 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 878 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 879 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 880 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 881 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 882 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 883 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 884 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 885 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 886 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 887 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 888 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 889 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 890 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 891 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 892 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 893 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 894 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 895 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 896 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 897 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 898 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 899 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 900 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 901 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 902 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 903 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga -#> 904 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 905 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 906 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 907 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 908 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 909 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 910 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 911 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 912 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 913 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 914 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 915 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 916 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 917 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 918 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 919 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 920 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 921 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 922 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 923 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 924 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 925 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 926 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 927 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 928 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 929 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 930 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 931 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 932 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 933 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 934 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 935 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga -#> 936 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 937 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 938 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 939 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 940 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 941 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 942 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 943 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 944 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 945 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 946 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 947 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 948 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 949 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 950 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 951 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 952 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 953 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 954 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 955 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 956 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 957 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 958 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 959 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 960 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 961 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 962 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 963 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 964 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 965 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga -#> 966 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 967 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 968 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 969 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 970 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 971 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 972 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 973 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 974 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 975 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 976 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 977 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 978 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 979 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 980 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 981 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 982 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 983 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 984 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 985 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 986 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 987 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 988 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 989 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 990 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 991 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 992 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 993 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 994 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 995 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga -#> 996 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 997 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 998 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 999 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1000 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1001 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1002 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1003 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1004 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1005 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1006 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1007 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1008 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1009 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1010 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1011 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1012 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1013 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1014 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1015 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1016 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1017 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1018 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1019 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1020 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1021 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1022 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1023 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1024 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1025 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1026 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1027 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga -#> 1028 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1029 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1030 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1031 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1032 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1033 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1034 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1035 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1036 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1037 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1038 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1039 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1040 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1041 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1042 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1043 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1044 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1045 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1046 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1047 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1048 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1049 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1050 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1051 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1052 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1053 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1054 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1055 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1056 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1057 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1058 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1059 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga -#> 1060 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1061 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1062 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1063 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1064 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1065 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1066 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1067 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1068 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1069 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1070 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1071 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1072 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1073 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1074 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1075 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1076 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1077 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1078 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1079 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1080 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1081 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1082 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1083 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1084 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1085 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1086 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1087 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1088 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1089 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1090 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga -#> 1091 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1092 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1093 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1094 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1095 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1096 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1097 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1098 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1099 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1100 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1101 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1102 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1103 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1104 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1105 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1106 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1107 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1108 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1109 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1110 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1111 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1112 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1113 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1114 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1115 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1116 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1117 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1118 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1119 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1120 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1121 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga -#> 1122 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1123 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1124 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1125 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1126 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1127 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1128 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1129 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1130 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1131 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1132 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1133 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1134 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1135 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1136 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1137 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1138 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1139 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1140 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1141 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1142 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1143 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1144 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1145 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1146 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1147 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1148 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1149 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1150 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1151 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1152 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1153 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga -#> 1154 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1155 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1156 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1157 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1158 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1159 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1160 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1161 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1162 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1163 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1164 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1165 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1166 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1167 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1168 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1169 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1170 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1171 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1172 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1173 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1174 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1175 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1176 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1177 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1178 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1179 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1180 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1181 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1182 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1183 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1184 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1185 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga -#> 1186 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1187 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1188 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1189 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1190 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1191 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1192 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1193 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1194 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1195 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1196 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1197 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1198 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1199 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1200 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1201 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1202 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1203 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1204 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1205 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1206 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1207 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1208 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1209 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1210 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1211 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1212 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1213 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1214 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1215 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1216 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga -#> 1217 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1218 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1219 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1220 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1221 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1222 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1223 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1224 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1225 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1226 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1227 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1228 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1229 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1230 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1231 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1232 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1233 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1234 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1235 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1236 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1237 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1238 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1239 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1240 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1241 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1242 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1243 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1244 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1245 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1246 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1247 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1248 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga -#> 1249 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1250 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1251 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1252 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1253 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1254 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1255 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1256 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1257 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1258 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1259 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1260 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1261 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1262 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1263 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1264 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1265 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1266 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1267 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1268 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1269 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1270 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1271 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1272 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1273 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1274 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1275 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1276 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1277 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1278 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1279 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga -#> 1280 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1281 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1282 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1283 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1284 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1285 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1286 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1287 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1288 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1289 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1290 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1291 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1292 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1293 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1294 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1295 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1296 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1297 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1298 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1299 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1300 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1301 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1302 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1303 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1304 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1305 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1306 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1307 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1308 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1309 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1310 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga -#> 1311 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1312 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1313 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1314 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1315 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1316 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1317 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1318 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1319 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1320 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1321 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1322 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1323 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1324 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1325 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1326 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1327 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1328 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1329 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1330 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1331 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1332 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1333 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1334 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1335 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1336 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1337 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1338 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1339 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1340 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1341 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1342 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga -#> 1343 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1344 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1345 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1346 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1347 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1348 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1349 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1350 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1351 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1352 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1353 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1354 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1355 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1356 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1357 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1358 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1359 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1360 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1361 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1362 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1363 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1364 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1365 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1366 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1367 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1368 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1369 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1370 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1371 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga -#> 1372 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1373 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1374 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1375 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1376 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1377 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1378 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1379 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1380 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1381 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1382 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1383 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1384 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1385 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1386 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1387 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1388 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1389 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1390 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1391 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1392 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1393 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1394 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1395 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1396 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1397 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1398 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1399 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1400 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1401 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1402 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga -#> 1403 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1404 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1405 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1406 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1407 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1408 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1409 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1410 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1411 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1412 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1413 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1414 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1415 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1416 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1417 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1418 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1419 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1420 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1421 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1422 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1423 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1424 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1425 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1426 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1427 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1428 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1429 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1430 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1431 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1432 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1433 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1434 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga -#> 1435 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1436 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1437 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1438 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1439 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1440 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1441 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1442 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1443 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1444 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1445 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1446 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1447 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1448 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1449 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1450 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1451 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1452 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1453 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1454 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1455 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1456 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1457 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1458 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1459 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1460 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1461 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1462 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1463 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1464 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1465 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga -#> 1466 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1467 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1468 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1469 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1470 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1471 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1472 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1473 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1474 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1475 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1476 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1477 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1478 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1479 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1480 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1481 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1482 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1483 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1484 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1485 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1486 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1487 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1488 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1489 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1490 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1491 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1492 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1493 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1494 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1495 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga -#> 1496 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1497 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1498 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1499 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1500 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1501 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1502 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1503 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1504 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1505 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1506 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1507 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1508 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1509 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1510 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1511 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1512 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1513 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1514 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1515 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1516 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1517 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1518 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1519 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1520 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1521 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1522 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1523 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1524 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1525 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1526 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1527 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga -#> 1528 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1529 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1530 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1531 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1532 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1533 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1534 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1535 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1536 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1537 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1538 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1539 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1540 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1541 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1542 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1543 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1544 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1545 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1546 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1547 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1548 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1549 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1550 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1551 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1552 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1553 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1554 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1555 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1556 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1557 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1558 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1559 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga -#> 1560 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1561 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1562 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1563 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1564 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1565 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1566 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1567 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1568 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1569 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1570 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1571 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1572 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1573 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1574 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1575 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1576 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1577 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1578 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1579 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1580 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1581 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1582 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1583 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1584 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1585 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1586 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1587 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1588 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1589 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1590 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga -#> 1591 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1592 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1593 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1594 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1595 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1596 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1597 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1598 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1599 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1600 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1601 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1602 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1603 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1604 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1605 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1606 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1607 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1608 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1609 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1610 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1611 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1612 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1613 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1614 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1615 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1616 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1617 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1618 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1619 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1620 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1621 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1622 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga -#> 1623 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1624 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1625 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1626 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1627 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1628 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1629 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1630 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1631 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1632 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1633 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1634 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1635 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1636 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1637 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1638 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1639 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1640 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1641 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1642 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1643 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1644 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1645 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1646 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1647 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1648 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1649 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1650 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1651 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1652 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga -#> 1653 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1654 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1655 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1656 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1657 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1658 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1659 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1660 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1661 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1662 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1663 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1664 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1665 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1666 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1667 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1668 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1669 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1670 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1671 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1672 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1673 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1674 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1675 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1676 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1677 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1678 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1679 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1680 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1681 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1682 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1683 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1684 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga -#> 1685 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1686 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1687 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1688 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1689 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1690 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1691 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1692 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1693 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1694 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1695 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1696 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1697 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1698 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1699 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1700 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1701 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1702 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1703 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1704 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1705 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1706 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1707 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1708 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1709 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1710 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1711 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1712 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1713 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1714 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1715 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1716 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga -#> 1717 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1718 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1719 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1720 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1721 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1722 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1723 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1724 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1725 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1726 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1727 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1728 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1729 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1730 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1731 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1732 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1733 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1734 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1735 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1736 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1737 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1738 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1739 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1740 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1741 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1742 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1743 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1744 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1745 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1746 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1747 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1748 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga -#> 1749 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1750 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1751 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1752 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1753 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1754 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1755 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1756 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1757 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1758 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1759 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1760 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1761 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1762 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1763 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1764 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1765 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1766 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1767 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1768 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1769 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1770 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1771 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1772 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1773 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1774 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1775 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1776 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1777 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1778 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1779 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga -#> 1780 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1781 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1782 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1783 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1784 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1785 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1786 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1787 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1788 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1789 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1790 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1791 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1792 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1793 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1794 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1795 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1796 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1797 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1798 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1799 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1800 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1801 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1802 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1803 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1804 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1805 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1806 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1807 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1808 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga -#> 1809 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1810 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1811 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1812 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1813 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1814 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1815 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1816 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1817 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1818 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1819 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1820 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1821 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1822 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1823 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1824 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1825 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1826 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1827 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1828 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1829 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1830 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1831 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1832 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1833 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1834 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1835 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1836 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1837 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1838 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1839 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga -#> 1840 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1841 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1842 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1843 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1844 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1845 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1846 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1847 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1848 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1849 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1850 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1851 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1852 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1853 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1854 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1855 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1856 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1857 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1858 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1859 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1860 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1861 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1862 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1863 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1864 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1865 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1866 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1867 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1868 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1869 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1870 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1871 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga -#> 1872 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1873 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1874 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1875 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1876 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1877 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1878 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1879 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1880 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1881 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1882 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1883 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1884 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1885 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1886 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1887 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1888 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1889 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1890 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1891 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1892 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1893 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1894 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1895 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1896 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1897 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1898 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1899 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1900 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1901 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga -#> 1902 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1903 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1904 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1905 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1906 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1907 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1908 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1909 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1910 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1911 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1912 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1913 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1914 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1915 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1916 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1917 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1918 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1919 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1920 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1921 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1922 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1923 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1924 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1925 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1926 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1927 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1928 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1929 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1930 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1931 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1932 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga -#> 1933 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1934 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1935 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1936 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1937 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1938 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1939 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1940 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1941 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1942 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1943 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1944 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1945 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1946 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1947 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1948 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1949 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1950 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1951 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1952 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1953 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1954 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1955 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1956 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1957 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1958 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1959 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1960 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1961 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1962 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1963 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1964 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga -#> 1965 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1966 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1967 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1968 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1969 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1970 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1971 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1972 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1973 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1974 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1975 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1976 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1977 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1978 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1979 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1980 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1981 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1982 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1983 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1984 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1985 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1986 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1987 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1988 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1989 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1990 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1991 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1992 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1993 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga -#> 1994 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 1995 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 1996 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 1997 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 1998 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 1999 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2000 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2001 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2002 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2003 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2004 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2005 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2006 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2007 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2008 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2009 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2010 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2011 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2012 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2013 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2014 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2015 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2016 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2017 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2018 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2019 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2020 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2021 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2022 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2023 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2024 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2025 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga -#> 2026 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2027 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2028 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2029 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2030 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2031 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2032 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2033 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2034 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2035 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2036 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2037 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2038 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2039 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> 2040 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga -#> Team Home_Away Player -#> 1 Osasuna Home Aimar Oroz -#> 2 Osasuna Home Pablo Ibáñez -#> 3 Osasuna Home Ezequiel Ávila -#> 4 Osasuna Home Kiké -#> 5 Osasuna Home Moi Gómez -#> 6 Osasuna Home Lucas Torró -#> 7 Osasuna Home Jon Moncayola -#> 8 Osasuna Home Kike Barja -#> 9 Osasuna Home Nacho Vidal -#> 10 Osasuna Home Juan Cruz Armada -#> 11 Osasuna Home David García -#> 12 Osasuna Home Unai García -#> 13 Osasuna Home Manu Sánchez -#> 14 Osasuna Home Rubén Peña -#> 15 Osasuna Home Darko Brašanac -#> 16 Osasuna Home Sergio Herrera -#> 17 Sevilla Away Rafa Mir -#> 18 Sevilla Away Youssef En-Nesyri -#> 19 Sevilla Away Lucas Ocampos -#> 20 Sevilla Away Alex Telles -#> 21 Sevilla Away Jesús Corona -#> 22 Sevilla Away Érik Lamela -#> 23 Sevilla Away Papu Gómez -#> 24 Sevilla Away Iván Romero -#> 25 Sevilla Away Thomas Delaney -#> 26 Sevilla Away Ivan Rakitić -#> 27 Sevilla Away Fernando -#> 28 Sevilla Away Marcos Acuña -#> 29 Sevilla Away Karim Rekik -#> 30 Sevilla Away Nemanja Gudelj -#> 31 Sevilla Away Jesús Navas -#> 32 Sevilla Away Yassine Bounou -#> 33 Celta Vigo Home Gonçalo Paciência -#> 34 Celta Vigo Home Carles Pérez -#> 35 Celta Vigo Home Iago Aspas -#> 36 Celta Vigo Home Franco Cervi -#> 37 Celta Vigo Home Óscar Mingueza -#> 38 Celta Vigo Home Óscar Rodríguez Arnaiz -#> 39 Celta Vigo Home Gabriel Veiga -#> 40 Celta Vigo Home Augusto Solari -#> 41 Celta Vigo Home Renato Tapia -#> 42 Celta Vigo Home Fran Beltrán -#> 43 Celta Vigo Home Javi Galán -#> 44 Celta Vigo Home Unai Núñez -#> 45 Celta Vigo Home Joseph Aidoo -#> 46 Celta Vigo Home Hugo Mallo -#> 47 Celta Vigo Home Agustín Marchesín -#> 48 Espanyol Away Joselu -#> 49 Espanyol Away Nico Ribaudo -#> 50 Espanyol Away Adri Embarba -#> 51 Espanyol Away Rubén -#> 52 Espanyol Away Luca Koleosho -#> 53 Espanyol Away Sergi Darder -#> 54 Espanyol Away Fernando Calero -#> 55 Espanyol Away Edu Expósito -#> 56 Espanyol Away Vinicius Souza -#> 57 Espanyol Away Nabil Touaizi -#> 58 Espanyol Away Brian Oliván -#> 59 Espanyol Away Leandro Cabrera -#> 60 Espanyol Away Sergi Gómez -#> 61 Espanyol Away Óscar Gil -#> 62 Espanyol Away Benjamin Lecomte -#> 63 Valladolid Home Sergio León -#> 64 Valladolid Home Sékou Gassama -#> 65 Valladolid Home Toni Villa -#> 66 Valladolid Home Óscar Plano -#> 67 Valladolid Home Álvaro Aguado -#> 68 Valladolid Home Roque Mesa -#> 69 Valladolid Home Kike Pérez -#> 70 Valladolid Home Gonzalo Plata -#> 71 Valladolid Home Iván Sánchez -#> 72 Valladolid Home Monchu -#> 73 Valladolid Home Sergio Escudero -#> 74 Valladolid Home Lucas Olaza -#> 75 Valladolid Home Jawad El Yamiq -#> 76 Valladolid Home Joaquín Fernández -#> 77 Valladolid Home Luis Pérez -#> 78 Valladolid Home Sergio Asenjo -#> 79 Villarreal Away Nicolas Jackson -#> 80 Villarreal Away Gerard Moreno -#> 81 Villarreal Away José Luis Morales -#> 82 Villarreal Away Francis Coquelin -#> 83 Villarreal Away Samuel Chukwueze -#> 84 Villarreal Away Daniel Parejo -#> 85 Villarreal Away Étienne Capoue -#> 86 Villarreal Away Yeremi Pino -#> 87 Villarreal Away Alex Baena -#> 88 Villarreal Away Alfonso Pedraza -#> 89 Villarreal Away Pau Torres -#> 90 Villarreal Away Raúl Albiol -#> 91 Villarreal Away Juan Foyth -#> 92 Villarreal Away Aïssa Mandi -#> 93 Villarreal Away Gerónimo Rulli -#> 94 Barcelona Home Robert Lewandowski -#> 95 Barcelona Home Ousmane Dembélé -#> 96 Barcelona Home Raphinha -#> 97 Barcelona Home Ansu Fati -#> 98 Barcelona Home Pedri -#> 99 Barcelona Home Franck Kessié -#> 100 Barcelona Home Sergio Busquets -#> 101 Barcelona Home Gavi -#> 102 Barcelona Home Frenkie de Jong -#> 103 Barcelona Home Jordi Alba -#> 104 Barcelona Home Pierre-Emerick Aubameyang -#> 105 Barcelona Home Eric García -#> 106 Barcelona Home Andreas Christensen -#> 107 Barcelona Home Sergi Roberto -#> 108 Barcelona Home Ronald Araújo -#> 109 Barcelona Home Marc-André ter Stegen -#> 110 Rayo Vallecano Away Sergio Camello -#> 111 Rayo Vallecano Away Radamel Falcao -#> 112 Rayo Vallecano Away Álvaro García -#> 113 Rayo Vallecano Away Isaac Palazón Camacho -#> 114 Rayo Vallecano Away Salvi -#> 115 Rayo Vallecano Away Óscar Trejo -#> 116 Rayo Vallecano Away José Pozo -#> 117 Rayo Vallecano Away Pathé Ciss -#> 118 Rayo Vallecano Away Unai López -#> 119 Rayo Vallecano Away Óscar Valentín -#> 120 Rayo Vallecano Away Fran Garcia -#> 121 Rayo Vallecano Away Catena -#> 122 Rayo Vallecano Away Florian Lejeune -#> 123 Rayo Vallecano Away Iván Balliu -#> 124 Rayo Vallecano Away Stole Dimitrievski -#> 125 Cádiz Home Anthony Lozano -#> 126 Cádiz Home Lucas Pérez -#> 127 Cádiz Home Álvaro Negredo -#> 128 Cádiz Home Santiago Arzamendia -#> 129 Cádiz Home Iván Alejo -#> 130 Cádiz Home José Mari -#> 131 Cádiz Home Tomás Alarcón -#> 132 Cádiz Home Fali -#> 133 Cádiz Home Alberto Perea -#> 134 Cádiz Home Awer Mabil -#> 135 Cádiz Home Alfonso Espino -#> 136 Cádiz Home Víctor Chust -#> 137 Cádiz Home Luis Hernández -#> 138 Cádiz Home Joseba Zaldúa -#> 139 Cádiz Home Mamady Diarra -#> 140 Cádiz Home Jeremías Ledesma -#> 141 Real Sociedad Away Takefusa Kubo -#> 142 Real Sociedad Away Mohamed Ali Cho -#> 143 Real Sociedad Away Alexander Isak -#> 144 Real Sociedad Away Jon Karrikaburu -#> 145 Real Sociedad Away David Silva -#> 146 Real Sociedad Away Ander Barrenetxea -#> 147 Real Sociedad Away Mikel Merino -#> 148 Real Sociedad Away Asier Illarramendi -#> 149 Real Sociedad Away Brais Méndez -#> 150 Real Sociedad Away Martín Zubimendi -#> 151 Real Sociedad Away Diego Rico -#> 152 Real Sociedad Away Aihen Muñoz -#> 153 Real Sociedad Away Robin Le Normand -#> 154 Real Sociedad Away Igor Zubeldia -#> 155 Real Sociedad Away Aritz Elustondo -#> 156 Real Sociedad Away Álex Remiro -#> 157 Valencia Home Hugo Duro -#> 158 Valencia Home Cristhian Mosquera -#> 159 Valencia Home Samuel -#> 160 Valencia Home Maxi Gómez -#> 161 Valencia Home Samu Castillejo -#> 162 Valencia Home Nicolás González -#> 163 Valencia Home Carlos Soler -#> 164 Valencia Home Dimitri Foulquier -#> 165 Valencia Home Hugo Guillamón -#> 166 Valencia Home Yunus Musah -#> 167 Valencia Home Jesus Vazquez -#> 168 Valencia Home Toni Lato -#> 169 Valencia Home Mouctar Diakhaby -#> 170 Valencia Home Eray Cömert -#> 171 Valencia Home Thierry Correia -#> 172 Valencia Home Giorgi Mamardashvili -#> 173 Girona Away Valentín Castellanos -#> 174 Girona Away Samuel Sáiz -#> 175 Girona Away Oscar Ureña -#> 176 Girona Away Rodrigo Riquelme -#> 177 Girona Away Aleix García -#> 178 Girona Away Ramón Terrats -#> 179 Girona Away Yangel Herrera -#> 180 Girona Away Valery Fernández -#> 181 Girona Away Miguel Gutiérrez -#> 182 Girona Away Yan Couto -#> 183 Girona Away Arnau Martinez -#> 184 Girona Away Juanpe -#> 185 Girona Away David López -#> 186 Girona Away Cristhian Stuani -#> 187 Girona Away Santiago Bueno -#> 188 Girona Away Juan Carlos -#> 189 Almería Home Umar Sadiq -#> 190 Almería Home Dyego Sousa -#> 191 Almería Home Largie Ramazani -#> 192 Almería Home José Carlos Lazo -#> 193 Almería Home Samu Costa -#> 194 Almería Home Íñigo Eguaras -#> 195 Almería Home Francisco Portillo -#> 196 Almería Home Lucas Robertone -#> 197 Almería Home Curro -#> 198 Almería Home Sergio Akieme -#> 199 Almería Home Srđan Babić -#> 200 Almería Home Rodrigo Ely -#> 201 Almería Home Kaiky -#> 202 Almería Home Arnau Puigmal -#> 203 Almería Home Juan Brandáriz -#> 204 Almería Home Fernando -#> 205 Real Madrid Away Karim Benzema -#> 206 Real Madrid Away Vinicius Júnior -#> 207 Real Madrid Away Dani Ceballos -#> 208 Real Madrid Away Federico Valverde -#> 209 Real Madrid Away Toni Kroos -#> 210 Real Madrid Away Casemiro -#> 211 Real Madrid Away Aurélien Tchouaméni -#> 212 Real Madrid Away Eden Hazard -#> 213 Real Madrid Away Eduardo Camavinga -#> 214 Real Madrid Away Luka Modrić -#> 215 Real Madrid Away Ferland Mendy -#> 216 Real Madrid Away David Alaba -#> 217 Real Madrid Away Nacho -#> 218 Real Madrid Away Antonio Rüdiger -#> 219 Real Madrid Away Lucas Vázquez -#> 220 Real Madrid Away Thibaut Courtois -#> 221 Athletic Club Home Asier Villalibre -#> 222 Athletic Club Home Raúl García -#> 223 Athletic Club Home Álex Berenguer -#> 224 Athletic Club Home Nico Williams -#> 225 Athletic Club Home Iñaki Williams -#> 226 Athletic Club Home Adu Ares -#> 227 Athletic Club Home Iker Muniain -#> 228 Athletic Club Home Gorka Guruzeta -#> 229 Athletic Club Home Mikel Vesga -#> 230 Athletic Club Home Oihan Sancet -#> 231 Athletic Club Home Oier Zarraga -#> 232 Athletic Club Home Yuri Berchiche -#> 233 Athletic Club Home Yeray Álvarez -#> 234 Athletic Club Home Daniel Vivian -#> 235 Athletic Club Home Óscar de Marcos -#> 236 Athletic Club Home Unai Simón -#> 237 Mallorca Away Vedat Muriqi -#> 238 Mallorca Away Abdón Prats -#> 239 Mallorca Away Dani Rodríguez -#> 240 Mallorca Away Antonio Sánchez -#> 241 Mallorca Away Rodrigo Battaglia -#> 242 Mallorca Away Clément Grenier -#> 243 Mallorca Away Iddrisu Baba -#> 244 Mallorca Away Lee Kang-in -#> 245 Mallorca Away Lago Junior -#> 246 Mallorca Away Jaume Costa -#> 247 Mallorca Away Copete -#> 248 Mallorca Away Antonio Raillo -#> 249 Mallorca Away Martin Valjent -#> 250 Mallorca Away Pablo Maffeo -#> 251 Mallorca Away Predrag Rajković -#> 252 Getafe Home Enes Ünal -#> 253 Getafe Home Jaime Mata -#> 254 Getafe Home Borja Mayoral -#> 255 Getafe Home Moises Parra Gutierrez -#> 256 Getafe Home Nemanja Maksimović -#> 257 Getafe Home Jaime Seoane -#> 258 Getafe Home Mauro Arambarri -#> 259 Getafe Home Carles Aleñá -#> 260 Getafe Home Portu -#> 261 Getafe Home Fabrizio Angileri -#> 262 Getafe Home Domingos Duarte -#> 263 Getafe Home Stefan Mitrović -#> 264 Getafe Home Djené -#> 265 Getafe Home Iglesias -#> 266 Getafe Home David Soria -#> 267 Atlético Madrid Away João Félix -#> 268 Atlético Madrid Away Ángel Correa -#> 269 Atlético Madrid Away Álvaro Morata -#> 270 Atlético Madrid Away Matheus Cunha -#> 271 Atlético Madrid Away Thomas Lemar -#> 272 Atlético Madrid Away Antoine Griezmann -#> 273 Atlético Madrid Away Koke -#> 274 Atlético Madrid Away Marcos Llorente -#> 275 Atlético Madrid Away Rodrigo De Paul -#> 276 Atlético Madrid Away Saúl Ñíguez -#> 277 Atlético Madrid Away Yannick Carrasco -#> 278 Atlético Madrid Away Reinildo Mandava -#> 279 Atlético Madrid Away Axel Witsel -#> 280 Atlético Madrid Away Stefan Savić -#> 281 Atlético Madrid Away Nahuel Molina -#> 282 Atlético Madrid Away Jan Oblak -#> 283 Real Betis Home Borja Iglesias -#> 284 Real Betis Home Loren Morón -#> 285 Real Betis Home Juanmi -#> 286 Real Betis Home Rodri -#> 287 Real Betis Home Juan Miranda -#> 288 Real Betis Home Nabil Fekir -#> 289 Real Betis Home Roberto González -#> 290 Real Betis Home William Carvalho -#> 291 Real Betis Home Guido Rodríguez -#> 292 Real Betis Home Paul Akouokou -#> 293 Real Betis Home Álex Moreno -#> 294 Real Betis Home Édgar González -#> 295 Real Betis Home Germán Pezzella -#> 296 Real Betis Home Aitor Ruibal -#> 297 Real Betis Home Fran Delgado -#> 298 Real Betis Home Rui Silva -#> 299 Elche Away Roger Martí -#> 300 Elche Away Ezequiel Ponce -#> 301 Elche Away Fidel -#> 302 Elche Away Tete Morente -#> 303 Elche Away Pere Milla -#> 304 Elche Away Josan -#> 305 Elche Away Johan Mojica -#> 306 Elche Away Gerard Gumbau -#> 307 Elche Away Alejandro Alfaro -#> 308 Elche Away Omar Mascarell -#> 309 Elche Away Helibelton Palacios -#> 310 Elche Away Pedro Bigas -#> 311 Elche Away Enzo Roco -#> 312 Elche Away Diego González -#> 313 Elche Away John Donald -#> 314 Elche Away Édgar Badía -#> 315 Espanyol Home Joselu -#> 316 Espanyol Home Nico Ribaudo -#> 317 Espanyol Home Fernando Calero -#> 318 Espanyol Home Rubén -#> 319 Espanyol Home Javi Puado -#> 320 Espanyol Home Sergi Darder -#> 321 Espanyol Home Vinicius Souza -#> 322 Espanyol Home Edu Expósito -#> 323 Espanyol Home Keidi Bare -#> 324 Espanyol Home Brian Oliván -#> 325 Espanyol Home Luca Koleosho -#> 326 Espanyol Home Leandro Cabrera -#> 327 Espanyol Home Sergi Gómez -#> 328 Espanyol Home Óscar Gil -#> 329 Espanyol Home Benjamin Lecomte -#> 330 Rayo Vallecano Away Sergio Camello -#> 331 Rayo Vallecano Away Radamel Falcao -#> 332 Rayo Vallecano Away Álvaro García -#> 333 Rayo Vallecano Away Randy Ntekja -#> 334 Rayo Vallecano Away Isaac Palazón Camacho -#> 335 Rayo Vallecano Away Salvi -#> 336 Rayo Vallecano Away Óscar Trejo -#> 337 Rayo Vallecano Away Óscar Valentín -#> 338 Rayo Vallecano Away Pathé Ciss -#> 339 Rayo Vallecano Away Unai López -#> 340 Rayo Vallecano Away Mario Suárez -#> 341 Rayo Vallecano Away Fran Garcia -#> 342 Rayo Vallecano Away Catena -#> 343 Rayo Vallecano Away Florian Lejeune -#> 344 Rayo Vallecano Away Iván Balliu -#> 345 Rayo Vallecano Away Stole Dimitrievski -#> 346 Sevilla Home Rafa Mir -#> 347 Sevilla Home Youssef En-Nesyri -#> 348 Sevilla Home Papu Gómez -#> 349 Sevilla Home Isco -#> 350 Sevilla Home Érik Lamela -#> 351 Sevilla Home Óliver Torres -#> 352 Sevilla Home Ivan Rakitić -#> 353 Sevilla Home Fernando -#> 354 Sevilla Home Joan Jordán -#> 355 Sevilla Home Lucas Ocampos -#> 356 Sevilla Home Marcos Acuña -#> 357 Sevilla Home Alex Telles -#> 358 Sevilla Home Karim Rekik -#> 359 Sevilla Home Tanguy Nianzou -#> 360 Sevilla Home Gonzalo Montiel -#> 361 Sevilla Home Yassine Bounou -#> 362 Valladolid Away Sergi Guardiola -#> 363 Valladolid Away Monchu -#> 364 Valladolid Away Anuar -#> 365 Valladolid Away Iván Sánchez -#> 366 Valladolid Away Sergio León -#> 367 Valladolid Away Kike Pérez -#> 368 Valladolid Away Roque Mesa -#> 369 Valladolid Away Óscar Plano -#> 370 Valladolid Away Álvaro Aguado -#> 371 Valladolid Away Sergio Escudero -#> 372 Valladolid Away Lucas Olaza -#> 373 Valladolid Away Jawad El Yamiq -#> 374 Valladolid Away Joaquín Fernández -#> 375 Valladolid Away Javi Sánchez -#> 376 Valladolid Away Luis Pérez -#> 377 Valladolid Away Sergio Asenjo -#> 378 Osasuna Home Aimar Oroz -#> 379 Osasuna Home Roberto Torres -#> 380 Osasuna Home Ante Budimir -#> 381 Osasuna Home Kiké -#> 382 Osasuna Home Moi Gómez -#> 383 Osasuna Home Lucas Torró -#> 384 Osasuna Home Jon Moncayola -#> 385 Osasuna Home Darko Brašanac -#> 386 Osasuna Home Ezequiel Ávila -#> 387 Osasuna Home Rubén García -#> 388 Osasuna Home Juan Cruz Armada -#> 389 Osasuna Home David García -#> 390 Osasuna Home Unai García -#> 391 Osasuna Home Rubén Peña -#> 392 Osasuna Home Nacho Vidal -#> 393 Osasuna Home Sergio Herrera -#> 394 Cádiz Away Anthony Lozano -#> 395 Cádiz Away Lucas Pérez -#> 396 Cádiz Away Fede San Emeterio -#> 397 Cádiz Away Awer Mabil -#> 398 Cádiz Away José Mari -#> 399 Cádiz Away Tomás Alarcón -#> 400 Cádiz Away Fali -#> 401 Cádiz Away Santiago Arzamendia -#> 402 Cádiz Away Mamady Diarra -#> 403 Cádiz Away Iván Alejo -#> 404 Cádiz Away Alfonso Espino -#> 405 Cádiz Away Álvaro Negredo -#> 406 Cádiz Away Víctor Chust -#> 407 Cádiz Away Luis Hernández -#> 408 Cádiz Away Joseba Zaldúa -#> 409 Cádiz Away Jeremías Ledesma -#> 410 Mallorca Home Vedat Muriqi -#> 411 Mallorca Home Lee Kang-in -#> 412 Mallorca Home Dani Rodríguez -#> 413 Mallorca Home Abdón Prats -#> 414 Mallorca Home Rodrigo Battaglia -#> 415 Mallorca Home Iddrisu Baba -#> 416 Mallorca Home Clément Grenier -#> 417 Mallorca Home Antonio Sánchez -#> 418 Mallorca Home Jaume Costa -#> 419 Mallorca Home Copete -#> 420 Mallorca Home Lago Junior -#> 421 Mallorca Home Antonio Raillo -#> 422 Mallorca Home Martin Valjent -#> 423 Mallorca Home Pablo Maffeo -#> 424 Mallorca Home Predrag Rajković -#> 425 Real Betis Away Borja Iglesias -#> 426 Real Betis Away Paul Akouokou -#> 427 Real Betis Away Juanmi -#> 428 Real Betis Away Rodri -#> 429 Real Betis Away Roberto González -#> 430 Real Betis Away Nabil Fekir -#> 431 Real Betis Away William Carvalho -#> 432 Real Betis Away Loren Morón -#> 433 Real Betis Away Guido Rodríguez -#> 434 Real Betis Away Álex Moreno -#> 435 Real Betis Away Édgar González -#> 436 Real Betis Away Germán Pezzella -#> 437 Real Betis Away Aitor Ruibal -#> 438 Real Betis Away Rui Silva -#> 439 Celta Vigo Home Gonçalo Paciência -#> 440 Celta Vigo Home Carles Pérez -#> 441 Celta Vigo Home Iago Aspas -#> 442 Celta Vigo Home Óscar Rodríguez Arnaiz -#> 443 Celta Vigo Home Gabriel Veiga -#> 444 Celta Vigo Home Fran Beltrán -#> 445 Celta Vigo Home Franco Cervi -#> 446 Celta Vigo Home Renato Tapia -#> 447 Celta Vigo Home Luca de la Torre -#> 448 Celta Vigo Home Javi Galán -#> 449 Celta Vigo Home Unai Núñez -#> 450 Celta Vigo Home Joseph Aidoo -#> 451 Celta Vigo Home Hugo Mallo -#> 452 Celta Vigo Home Agustín Marchesín -#> 453 Real Madrid Away Karim Benzema -#> 454 Real Madrid Away Vinicius Júnior -#> 455 Real Madrid Away Eden Hazard -#> 456 Real Madrid Away Federico Valverde -#> 457 Real Madrid Away Eduardo Camavinga -#> 458 Real Madrid Away Marco Asensio -#> 459 Real Madrid Away Aurélien Tchouaméni -#> 460 Real Madrid Away Luka Modrić -#> 461 Real Madrid Away Dani Ceballos -#> 462 Real Madrid Away Ferland Mendy -#> 463 Real Madrid Away David Alaba -#> 464 Real Madrid Away Lucas Vázquez -#> 465 Real Madrid Away Éder Militão -#> 466 Real Madrid Away Dani Carvajal -#> 467 Real Madrid Away Antonio Rüdiger -#> 468 Real Madrid Away Thibaut Courtois -#> 469 Athletic Club Home Iñaki Williams -#> 470 Athletic Club Home Jon Morcillo -#> 471 Athletic Club Home Álex Berenguer -#> 472 Athletic Club Home Oier Zarraga -#> 473 Athletic Club Home Nico Williams -#> 474 Athletic Club Home Ander Capa -#> 475 Athletic Club Home Iker Muniain -#> 476 Athletic Club Home Raúl García -#> 477 Athletic Club Home Mikel Vesga -#> 478 Athletic Club Home Oihan Sancet -#> 479 Athletic Club Home Unai Vencedor Paris -#> 480 Athletic Club Home Yuri Berchiche -#> 481 Athletic Club Home Yeray Álvarez -#> 482 Athletic Club Home Daniel Vivian -#> 483 Athletic Club Home Óscar de Marcos -#> 484 Athletic Club Home Unai Simón -#> 485 Valencia Away Hugo Duro -#> 486 Valencia Away Maxi Gómez -#> 487 Valencia Away Samuel -#> 488 Valencia Away Samu Castillejo -#> 489 Valencia Away Carlos Soler -#> 490 Valencia Away Hugo Guillamón -#> 491 Valencia Away Marcos André -#> 492 Valencia Away Yunus Musah -#> 493 Valencia Away Nicolás González -#> 494 Valencia Away Jesus Vazquez -#> 495 Valencia Away Toni Lato -#> 496 Valencia Away Mouctar Diakhaby -#> 497 Valencia Away Gabriel Paulista -#> 498 Valencia Away Thierry Correia -#> 499 Valencia Away Dimitri Foulquier -#> 500 Valencia Away Giorgi Mamardashvili -#> 501 Atlético Madrid Home João Félix -#> 502 Atlético Madrid Home Ángel Correa -#> 503 Atlético Madrid Home Álvaro Morata -#> 504 Atlético Madrid Home Matheus Cunha -#> 505 Atlético Madrid Home Yannick Carrasco -#> 506 Atlético Madrid Home Nahuel Molina -#> 507 Atlético Madrid Home Thomas Lemar -#> 508 Atlético Madrid Home Rodrigo De Paul -#> 509 Atlético Madrid Home Marcos Llorente -#> 510 Atlético Madrid Home Antoine Griezmann -#> 511 Atlético Madrid Home Koke -#> 512 Atlético Madrid Home Reinildo Mandava -#> 513 Atlético Madrid Home Axel Witsel -#> 514 Atlético Madrid Home Stefan Savić -#> 515 Atlético Madrid Home José María Giménez -#> 516 Atlético Madrid Home Jan Oblak -#> 517 Villarreal Away Nicolas Jackson -#> 518 Villarreal Away José Luis Morales -#> 519 Villarreal Away Gerard Moreno -#> 520 Villarreal Away Giovani Lo Celso -#> 521 Villarreal Away Alex Baena -#> 522 Villarreal Away Daniel Parejo -#> 523 Villarreal Away Étienne Capoue -#> 524 Villarreal Away Francis Coquelin -#> 525 Villarreal Away Yeremi Pino -#> 526 Villarreal Away Samuel Chukwueze -#> 527 Villarreal Away Alfonso Pedraza -#> 528 Villarreal Away Pau Torres -#> 529 Villarreal Away Raúl Albiol -#> 530 Villarreal Away Juan Foyth -#> 531 Villarreal Away Gerónimo Rulli -#> 532 Real Sociedad Home Takefusa Kubo -#> 533 Real Sociedad Home Mohamed Ali Cho -#> 534 Real Sociedad Home Alexander Isak -#> 535 Real Sociedad Home Roberto Navarro -#> 536 Real Sociedad Home David Silva -#> 537 Real Sociedad Home Beñat Turrientes -#> 538 Real Sociedad Home Mikel Merino -#> 539 Real Sociedad Home Jon Karrikaburu -#> 540 Real Sociedad Home Brais Méndez -#> 541 Real Sociedad Home Martín Zubimendi -#> 542 Real Sociedad Home Aihen Muñoz -#> 543 Real Sociedad Home Robin Le Normand -#> 544 Real Sociedad Home Igor Zubeldia -#> 545 Real Sociedad Home Aritz Elustondo -#> 546 Real Sociedad Home Andoni Gorosabel -#> 547 Real Sociedad Home Álex Remiro -#> 548 Barcelona Away Robert Lewandowski -#> 549 Barcelona Away Alejandro Balde -#> 550 Barcelona Away Raphinha -#> 551 Barcelona Away Ousmane Dembélé -#> 552 Barcelona Away Jordi Alba -#> 553 Barcelona Away Ferrán Torres -#> 554 Barcelona Away Ansu Fati -#> 555 Barcelona Away Pedri -#> 556 Barcelona Away Gavi -#> 557 Barcelona Away Franck Kessié -#> 558 Barcelona Away Frenkie de Jong -#> 559 Barcelona Away Sergi Roberto -#> 560 Barcelona Away Eric García -#> 561 Barcelona Away Andreas Christensen -#> 562 Barcelona Away Ronald Araújo -#> 563 Barcelona Away Marc-André ter Stegen -#> 564 Girona Home Valentín Castellanos -#> 565 Girona Home Ramón Terrats -#> 566 Girona Home Cristhian Stuani -#> 567 Girona Home Reinier -#> 568 Girona Home Miguel Gutiérrez -#> 569 Girona Home Javi Hernández -#> 570 Girona Home Yan Couto -#> 571 Girona Home Rodrigo Riquelme -#> 572 Girona Home Samuel Sáiz -#> 573 Girona Home Yangel Herrera -#> 574 Girona Home Aleix García -#> 575 Girona Home Juanpe -#> 576 Girona Home David López -#> 577 Girona Home Santiago Bueno -#> 578 Girona Home Juan Carlos -#> 579 Getafe Away Borja Mayoral -#> 580 Getafe Away Enes Ünal -#> 581 Getafe Away Nemanja Maksimović -#> 582 Getafe Away Jaime Seoane -#> 583 Getafe Away Mauro Arambarri -#> 584 Getafe Away Carles Aleñá -#> 585 Getafe Away Fabrizio Angileri -#> 586 Getafe Away Domingos Duarte -#> 587 Getafe Away Stefan Mitrović -#> 588 Getafe Away Portu -#> 589 Getafe Away Djené -#> 590 Getafe Away Iglesias -#> 591 Getafe Away David Soria -#> 592 Girona Home Cristhian Stuani -#> 593 Girona Home Valentín Castellanos -#> 594 Girona Home Joel Roca -#> 595 Girona Home Oscar Ureña -#> 596 Girona Home Reinier -#> 597 Girona Home David López -#> 598 Girona Home Aleix García -#> 599 Girona Home Yangel Herrera -#> 600 Girona Home Ramón Terrats -#> 601 Girona Home Samuel Sáiz -#> 602 Girona Home Miguel Gutiérrez -#> 603 Girona Home Javi Hernández -#> 604 Girona Home Juanpe -#> 605 Girona Home Santiago Bueno -#> 606 Girona Home Yan Couto -#> 607 Girona Home Juan Carlos -#> 608 Celta Vigo Away Carles Pérez -#> 609 Celta Vigo Away Augusto Solari -#> 610 Celta Vigo Away Iago Aspas -#> 611 Celta Vigo Away Franco Cervi -#> 612 Celta Vigo Away Carlos Dominguez -#> 613 Celta Vigo Away Fran Beltrán -#> 614 Celta Vigo Away Óscar Rodríguez Arnaiz -#> 615 Celta Vigo Away Gonçalo Paciência -#> 616 Celta Vigo Away Renato Tapia -#> 617 Celta Vigo Away Gabriel Veiga -#> 618 Celta Vigo Away Javi Galán -#> 619 Celta Vigo Away Unai Núñez -#> 620 Celta Vigo Away Joseph Aidoo -#> 621 Celta Vigo Away Hugo Mallo -#> 622 Celta Vigo Away Agustín Marchesín -#> 623 Real Betis Home Borja Iglesias -#> 624 Real Betis Home Luiz Felipe -#> 625 Real Betis Home Juanmi -#> 626 Real Betis Home Luiz Henrique -#> 627 Real Betis Home Rodri -#> 628 Real Betis Home Sergio Canales -#> 629 Real Betis Home Nabil Fekir -#> 630 Real Betis Home Andrés Guardado -#> 631 Real Betis Home William Carvalho -#> 632 Real Betis Home Guido Rodríguez -#> 633 Real Betis Home Álex Moreno -#> 634 Real Betis Home Édgar González -#> 635 Real Betis Home Germán Pezzella -#> 636 Real Betis Home Aitor Ruibal -#> 637 Real Betis Home Rui Silva -#> 638 Osasuna Away Ezequiel Ávila -#> 639 Osasuna Away Ante Budimir -#> 640 Osasuna Away Aimar Oroz -#> 641 Osasuna Away Kiké -#> 642 Osasuna Away Moi Gómez -#> 643 Osasuna Away Lucas Torró -#> 644 Osasuna Away Rubén García -#> 645 Osasuna Away Jon Moncayola -#> 646 Osasuna Away Rubén Peña -#> 647 Osasuna Away Kike Barja -#> 648 Osasuna Away Juan Cruz Armada -#> 649 Osasuna Away David García -#> 650 Osasuna Away Unai García -#> 651 Osasuna Away Manu Sánchez -#> 652 Osasuna Away Nacho Vidal -#> 653 Osasuna Away Sergio Herrera -#> 654 Elche Home Ezequiel Ponce -#> 655 Elche Home Lucas Boyé -#> 656 Elche Home Roger Martí -#> 657 Elche Home Pere Milla -#> 658 Elche Home Tete Morente -#> 659 Elche Home Gerard Gumbau -#> 660 Elche Home Raúl Guti -#> 661 Elche Home Omar Mascarell -#> 662 Elche Home Domingos Quina -#> 663 Elche Home Álex Collado -#> 664 Elche Home Johan Mojica -#> 665 Elche Home Pedro Bigas -#> 666 Elche Home Enzo Roco -#> 667 Elche Home Pol Lirola -#> 668 Elche Home Helibelton Palacios -#> 669 Elche Home Édgar Badía -#> 670 Real Sociedad Away Mohamed Ali Cho -#> 671 Real Sociedad Away Jon Karrikaburu -#> 672 Real Sociedad Away Takefusa Kubo -#> 673 Real Sociedad Away Ander Barrenetxea -#> 674 Real Sociedad Away David Silva -#> 675 Real Sociedad Away Asier Illarramendi -#> 676 Real Sociedad Away Mikel Merino -#> 677 Real Sociedad Away Brais Méndez -#> 678 Real Sociedad Away Martín Zubimendi -#> 679 Real Sociedad Away Aihen Muñoz -#> 680 Real Sociedad Away Robin Le Normand -#> 681 Real Sociedad Away Igor Zubeldia -#> 682 Real Sociedad Away Aritz Elustondo -#> 683 Real Sociedad Away Andoni Gorosabel -#> 684 Real Sociedad Away Jon Pacheco -#> 685 Real Sociedad Away Álex Remiro -#> 686 Rayo Vallecano Home Radamel Falcao -#> 687 Rayo Vallecano Home Randy Ntekja -#> 688 Rayo Vallecano Home Álvaro García -#> 689 Rayo Vallecano Home Salvi -#> 690 Rayo Vallecano Home Bebé -#> 691 Rayo Vallecano Home Óscar Trejo -#> 692 Rayo Vallecano Home Santi Comesaña -#> 693 Rayo Vallecano Home Unai López -#> 694 Rayo Vallecano Home Sergio Camello -#> 695 Rayo Vallecano Home Óscar Valentín -#> 696 Rayo Vallecano Home José Pozo -#> 697 Rayo Vallecano Home Fran Garcia -#> 698 Rayo Vallecano Home Catena -#> 699 Rayo Vallecano Home Pathé Ciss -#> 700 Rayo Vallecano Home Iván Balliu -#> 701 Rayo Vallecano Home Stole Dimitrievski -#> 702 Mallorca Away Vedat Muriqi -#> 703 Mallorca Away Abdón Prats -#> 704 Mallorca Away Lee Kang-in -#> 705 Mallorca Away Javier Llabrés -#> 706 Mallorca Away Dani Rodríguez -#> 707 Mallorca Away Iñigo Ruiz de Galarreta -#> 708 Mallorca Away Rodrigo Battaglia -#> 709 Mallorca Away Clément Grenier -#> 710 Mallorca Away Antonio Sánchez -#> 711 Mallorca Away Jaume Costa -#> 712 Mallorca Away Copete -#> 713 Mallorca Away Antonio Raillo -#> 714 Mallorca Away Martin Valjent -#> 715 Mallorca Away Pablo Maffeo -#> 716 Mallorca Away Predrag Rajković -#> 717 Almería Home Umar Sadiq -#> 718 Almería Home Largie Ramazani -#> 719 Almería Home Léo Baptistão -#> 720 Almería Home Lucas Robertone -#> 721 Almería Home Curro -#> 722 Almería Home Samu Costa -#> 723 Almería Home Íñigo Eguaras -#> 724 Almería Home César de la Hoz -#> 725 Almería Home Sergio Akieme -#> 726 Almería Home Alejandro Pozo Pozo -#> 727 Almería Home Houboulang Mendes -#> 728 Almería Home Srđan Babić -#> 729 Almería Home Rodrigo Ely -#> 730 Almería Home Kaiky -#> 731 Almería Home Juan Brandáriz -#> 732 Almería Home Fernando -#> 733 Sevilla Away Érik Lamela -#> 734 Sevilla Away Youssef En-Nesyri -#> 735 Sevilla Away Rafa Mir -#> 736 Sevilla Away Óliver Torres -#> 737 Sevilla Away Thomas Delaney -#> 738 Sevilla Away Papu Gómez -#> 739 Sevilla Away Fernando -#> 740 Sevilla Away Joan Jordán -#> 741 Sevilla Away Isco -#> 742 Sevilla Away Alex Telles -#> 743 Sevilla Away Karim Rekik -#> 744 Sevilla Away Carmona -#> 745 Sevilla Away Tanguy Nianzou -#> 746 Sevilla Away Jesús Navas -#> 747 Sevilla Away Lucas Ocampos -#> 748 Sevilla Away Yassine Bounou -#> 749 Getafe Home Borja Mayoral -#> 750 Getafe Home Juanmi Latasa -#> 751 Getafe Home Enes Ünal -#> 752 Getafe Home Jaime Mata -#> 753 Getafe Home Portu -#> 754 Getafe Home Mauro Arambarri -#> 755 Getafe Home Jaime Seoane -#> 756 Getafe Home Nemanja Maksimović -#> 757 Getafe Home Carles Aleñá -#> 758 Getafe Home Gastón Álvarez -#> 759 Getafe Home Djené -#> 760 Getafe Home Domingos Duarte -#> 761 Getafe Home Iglesias -#> 762 Getafe Home David Soria -#> 763 Villarreal Away José Luis Morales -#> 764 Villarreal Away Nicolas Jackson -#> 765 Villarreal Away Gerard Moreno -#> 766 Villarreal Away Giovani Lo Celso -#> 767 Villarreal Away Alex Baena -#> 768 Villarreal Away Daniel Parejo -#> 769 Villarreal Away Francis Coquelin -#> 770 Villarreal Away Étienne Capoue -#> 771 Villarreal Away Yeremi Pino -#> 772 Villarreal Away Samuel Chukwueze -#> 773 Villarreal Away Alfonso Pedraza -#> 774 Villarreal Away Pau Torres -#> 775 Villarreal Away Raúl Albiol -#> 776 Villarreal Away Juan Foyth -#> 777 Villarreal Away Kiko Femenía -#> 778 Villarreal Away Gerónimo Rulli -#> 779 Barcelona Home Robert Lewandowski -#> 780 Barcelona Home Ousmane Dembélé -#> 781 Barcelona Home Ferrán Torres -#> 782 Barcelona Home Raphinha -#> 783 Barcelona Home Ansu Fati -#> 784 Barcelona Home Pedri -#> 785 Barcelona Home Sergio Busquets -#> 786 Barcelona Home Franck Kessié -#> 787 Barcelona Home Gavi -#> 788 Barcelona Home Frenkie de Jong -#> 789 Barcelona Home Alejandro Balde -#> 790 Barcelona Home Eric García -#> 791 Barcelona Home Ronald Araújo -#> 792 Barcelona Home Sergi Roberto -#> 793 Barcelona Home Jules Koundé -#> 794 Barcelona Home Marc-André ter Stegen -#> 795 Valladolid Away Sergi Guardiola -#> 796 Valladolid Away Sergio León -#> 797 Valladolid Away Anuar -#> 798 Valladolid Away Roberto Arroyo -#> 799 Valladolid Away Álvaro Aguado -#> 800 Valladolid Away Roque Mesa -#> 801 Valladolid Away Kike Pérez -#> 802 Valladolid Away Iván Sánchez -#> 803 Valladolid Away Toni Villa -#> 804 Valladolid Away Monchu -#> 805 Valladolid Away Óscar Plano -#> 806 Valladolid Away Sergio Escudero -#> 807 Valladolid Away Javi Sánchez -#> 808 Valladolid Away Joaquín Fernández -#> 809 Valladolid Away Luis Pérez -#> 810 Valladolid Away Jordi Masip -#> 811 Espanyol Home Joselu -#> 812 Espanyol Home Javi Puado -#> 813 Espanyol Home Nico Ribaudo -#> 814 Espanyol Home Sergi Darder -#> 815 Espanyol Home Edu Expósito -#> 816 Espanyol Home Dani Gómez -#> 817 Espanyol Home Rubén -#> 818 Espanyol Home Vinicius Souza -#> 819 Espanyol Home Keidi Bare -#> 820 Espanyol Home Brian Oliván -#> 821 Espanyol Home Leandro Cabrera -#> 822 Espanyol Home Fernando Calero -#> 823 Espanyol Home Óscar Gil -#> 824 Espanyol Home Benjamin Lecomte -#> 825 Real Madrid Away Karim Benzema -#> 826 Real Madrid Away Vinicius Júnior -#> 827 Real Madrid Away Federico Valverde -#> 828 Real Madrid Away Rodrygo -#> 829 Real Madrid Away Toni Kroos -#> 830 Real Madrid Away Dani Ceballos -#> 831 Real Madrid Away Aurélien Tchouaméni -#> 832 Real Madrid Away Luka Modrić -#> 833 Real Madrid Away Eduardo Camavinga -#> 834 Real Madrid Away David Alaba -#> 835 Real Madrid Away Antonio Rüdiger -#> 836 Real Madrid Away Éder Militão -#> 837 Real Madrid Away Lucas Vázquez -#> 838 Real Madrid Away Dani Carvajal -#> 839 Real Madrid Away Thibaut Courtois -#> 840 Cádiz Home Álvaro Negredo -#> 841 Cádiz Home Anthony Lozano -#> 842 Cádiz Home Lucas Pérez -#> 843 Cádiz Home Santiago Arzamendia -#> 844 Cádiz Home José Mari -#> 845 Cádiz Home Fede San Emeterio -#> 846 Cádiz Home Blanco -#> 847 Cádiz Home Álex Fernández -#> 848 Cádiz Home Iván Alejo -#> 849 Cádiz Home Alfonso Espino -#> 850 Cádiz Home Awer Mabil -#> 851 Cádiz Home Fali -#> 852 Cádiz Home Víctor Chust -#> 853 Cádiz Home Luis Hernández -#> 854 Cádiz Home Joseba Zaldúa -#> 855 Cádiz Home Jeremías Ledesma -#> 856 Athletic Club Away Iñaki Williams -#> 857 Athletic Club Away Gorka Guruzeta -#> 858 Athletic Club Away Álex Berenguer -#> 859 Athletic Club Away Jon Morcillo -#> 860 Athletic Club Away Nico Williams -#> 861 Athletic Club Away Raúl García -#> 862 Athletic Club Away Iker Muniain -#> 863 Athletic Club Away Mikel Vesga -#> 864 Athletic Club Away Oihan Sancet -#> 865 Athletic Club Away Dani García -#> 866 Athletic Club Away Iñigo Lekue -#> 867 Athletic Club Away Aitor Paredes -#> 868 Athletic Club Away Yeray Álvarez -#> 869 Athletic Club Away Daniel Vivian -#> 870 Athletic Club Away Óscar de Marcos -#> 871 Athletic Club Away Unai Simón -#> 872 Valencia Home Marcos André -#> 873 Valencia Home Maxi Gómez -#> 874 Valencia Home Samuel -#> 875 Valencia Home Samu Castillejo -#> 876 Valencia Home Francisco Perez -#> 877 Valencia Home Carlos Soler -#> 878 Valencia Home Hugo Guillamón -#> 879 Valencia Home Nicolás González -#> 880 Valencia Home Yunus Musah -#> 881 Valencia Home Toni Lato -#> 882 Valencia Home Diego López -#> 883 Valencia Home Mouctar Diakhaby -#> 884 Valencia Home Eray Cömert -#> 885 Valencia Home Thierry Correia -#> 886 Valencia Home Dimitri Foulquier -#> 887 Valencia Home Giorgi Mamardashvili -#> 888 Atlético Madrid Away João Félix -#> 889 Atlético Madrid Away Matheus Cunha -#> 890 Atlético Madrid Away Álvaro Morata -#> 891 Atlético Madrid Away Ángel Correa -#> 892 Atlético Madrid Away Koke -#> 893 Atlético Madrid Away Geoffrey Kondogbia -#> 894 Atlético Madrid Away Antoine Griezmann -#> 895 Atlético Madrid Away Rodrigo De Paul -#> 896 Atlético Madrid Away Thomas Lemar -#> 897 Atlético Madrid Away Saúl Ñíguez -#> 898 Atlético Madrid Away Yannick Carrasco -#> 899 Atlético Madrid Away Reinildo Mandava -#> 900 Atlético Madrid Away Axel Witsel -#> 901 Atlético Madrid Away José María Giménez -#> 902 Atlético Madrid Away Marcos Llorente -#> 903 Atlético Madrid Away Jan Oblak -#> 904 Celta Vigo Home Iago Aspas -#> 905 Celta Vigo Home Carles Pérez -#> 906 Celta Vigo Home Jørgen Strand Larsen -#> 907 Celta Vigo Home Óscar Rodríguez Arnaiz -#> 908 Celta Vigo Home Augusto Solari -#> 909 Celta Vigo Home Fran Beltrán -#> 910 Celta Vigo Home Luca de la Torre -#> 911 Celta Vigo Home Franco Cervi -#> 912 Celta Vigo Home Renato Tapia -#> 913 Celta Vigo Home Gabriel Veiga -#> 914 Celta Vigo Home Javi Galán -#> 915 Celta Vigo Home Unai Núñez -#> 916 Celta Vigo Home Joseph Aidoo -#> 917 Celta Vigo Home Hugo Mallo -#> 918 Celta Vigo Home Óscar Mingueza -#> 919 Celta Vigo Home Agustín Marchesín -#> 920 Cádiz Away Anthony Lozano -#> 921 Cádiz Away Lucas Pérez -#> 922 Cádiz Away Blanco -#> 923 Cádiz Away Álvaro Giménez -#> 924 Cádiz Away Brian Ocampo -#> 925 Cádiz Away Álex Fernández -#> 926 Cádiz Away Tomás Alarcón -#> 927 Cádiz Away Iván Alejo -#> 928 Cádiz Away Rubén Sobrino -#> 929 Cádiz Away Fede San Emeterio -#> 930 Cádiz Away Theo Bongonda -#> 931 Cádiz Away Alfonso Espino -#> 932 Cádiz Away Víctor Chust -#> 933 Cádiz Away Luis Hernández -#> 934 Cádiz Away Joseba Zaldúa -#> 935 Cádiz Away Jeremías Ledesma -#> 936 Mallorca Home Vedat Muriqi -#> 937 Mallorca Home Lee Kang-in -#> 938 Mallorca Home Dani Rodríguez -#> 939 Mallorca Home Abdón Prats -#> 940 Mallorca Home Rodrigo Battaglia -#> 941 Mallorca Home Iñigo Ruiz de Galarreta -#> 942 Mallorca Home Antonio Sánchez -#> 943 Mallorca Home Clément Grenier -#> 944 Mallorca Home Jaume Costa -#> 945 Mallorca Home Copete -#> 946 Mallorca Home Antonio Raillo -#> 947 Mallorca Home Martin Valjent -#> 948 Mallorca Home Pablo Maffeo -#> 949 Mallorca Home Predrag Rajković -#> 950 Girona Away Valentín Castellanos -#> 951 Girona Away Manu Vallejo -#> 952 Girona Away Rodrigo Riquelme -#> 953 Girona Away Samuel Sáiz -#> 954 Girona Away Reinier -#> 955 Girona Away Toni Villa -#> 956 Girona Away Miguel Gutiérrez -#> 957 Girona Away Bernardo Espinosa -#> 958 Girona Away Aleix García -#> 959 Girona Away Oriol Romeu -#> 960 Girona Away Arnau Martinez -#> 961 Girona Away Juanpe -#> 962 Girona Away David López -#> 963 Girona Away Javi Hernández -#> 964 Girona Away Santiago Bueno -#> 965 Girona Away Juan Carlos -#> 966 Real Madrid Home Karim Benzema -#> 967 Real Madrid Home Vinicius Júnior -#> 968 Real Madrid Home Rodrygo -#> 969 Real Madrid Home Dani Ceballos -#> 970 Real Madrid Home Eduardo Camavinga -#> 971 Real Madrid Home Federico Valverde -#> 972 Real Madrid Home Aurélien Tchouaméni -#> 973 Real Madrid Home Luka Modrić -#> 974 Real Madrid Home Toni Kroos -#> 975 Real Madrid Home Ferland Mendy -#> 976 Real Madrid Home David Alaba -#> 977 Real Madrid Home Éder Militão -#> 978 Real Madrid Home Dani Carvajal -#> 979 Real Madrid Home Antonio Rüdiger -#> 980 Real Madrid Home Thibaut Courtois -#> 981 Real Betis Away Borja Iglesias -#> 982 Real Betis Away Juanmi -#> 983 Real Betis Away Joaquín -#> 984 Real Betis Away Sergio Canales -#> 985 Real Betis Away Nabil Fekir -#> 986 Real Betis Away Luiz Henrique -#> 987 Real Betis Away Andrés Guardado -#> 988 Real Betis Away Willian José -#> 989 Real Betis Away Guido Rodríguez -#> 990 Real Betis Away Álex Moreno -#> 991 Real Betis Away Édgar González -#> 992 Real Betis Away Luiz Felipe -#> 993 Real Betis Away Youssouf Sabaly -#> 994 Real Betis Away Aitor Ruibal -#> 995 Real Betis Away Rui Silva -#> 996 Real Sociedad Home Alexander Sørloth -#> 997 Real Sociedad Home Umar Sadiq -#> 998 Real Sociedad Home Mohamed Ali Cho -#> 999 Real Sociedad Home Ander Barrenetxea -#> 1000 Real Sociedad Home David Silva -#> 1001 Real Sociedad Home Takefusa Kubo -#> 1002 Real Sociedad Home Mikel Merino -#> 1003 Real Sociedad Home Brais Méndez -#> 1004 Real Sociedad Home Martín Zubimendi -#> 1005 Real Sociedad Home Aihen Muñoz -#> 1006 Real Sociedad Home Robin Le Normand -#> 1007 Real Sociedad Home Igor Zubeldia -#> 1008 Real Sociedad Home Aritz Elustondo -#> 1009 Real Sociedad Home Andoni Gorosabel -#> 1010 Real Sociedad Home Alex Sola -#> 1011 Real Sociedad Home Álex Remiro -#> 1012 Atlético Madrid Away João Félix -#> 1013 Atlético Madrid Away Álvaro Morata -#> 1014 Atlético Madrid Away Ángel Correa -#> 1015 Atlético Madrid Away Yannick Carrasco -#> 1016 Atlético Madrid Away Mario Hermoso -#> 1017 Atlético Madrid Away Marcos Llorente -#> 1018 Atlético Madrid Away Saúl Ñíguez -#> 1019 Atlético Madrid Away Geoffrey Kondogbia -#> 1020 Atlético Madrid Away Rodrigo De Paul -#> 1021 Atlético Madrid Away Antoine Griezmann -#> 1022 Atlético Madrid Away Koke -#> 1023 Atlético Madrid Away Reinildo Mandava -#> 1024 Atlético Madrid Away Axel Witsel -#> 1025 Atlético Madrid Away José María Giménez -#> 1026 Atlético Madrid Away Jan Oblak -#> 1027 Atlético Madrid Away Ivo Grbić -#> 1028 Sevilla Home Youssef En-Nesyri -#> 1029 Sevilla Home Kasper Dolberg -#> 1030 Sevilla Home Isco -#> 1031 Sevilla Home Papu Gómez -#> 1032 Sevilla Home Érik Lamela -#> 1033 Sevilla Home Ivan Rakitić -#> 1034 Sevilla Home Nemanja Gudelj -#> 1035 Sevilla Home Carmona -#> 1036 Sevilla Home Joan Jordán -#> 1037 Sevilla Home Thomas Delaney -#> 1038 Sevilla Home Marcos Acuña -#> 1039 Sevilla Home Tanguy Nianzou -#> 1040 Sevilla Home Fernando -#> 1041 Sevilla Home Gonzalo Montiel -#> 1042 Sevilla Home Suso -#> 1043 Sevilla Home Yassine Bounou -#> 1044 Barcelona Away Robert Lewandowski -#> 1045 Barcelona Away Ansu Fati -#> 1046 Barcelona Away Ousmane Dembélé -#> 1047 Barcelona Away Ferrán Torres -#> 1048 Barcelona Away Raphinha -#> 1049 Barcelona Away Pedri -#> 1050 Barcelona Away Frenkie de Jong -#> 1051 Barcelona Away Sergio Busquets -#> 1052 Barcelona Away Gavi -#> 1053 Barcelona Away Alejandro Balde -#> 1054 Barcelona Away Jordi Alba -#> 1055 Barcelona Away Eric García -#> 1056 Barcelona Away Sergi Roberto -#> 1057 Barcelona Away Ronald Araújo -#> 1058 Barcelona Away Jules Koundé -#> 1059 Barcelona Away Marc-André ter Stegen -#> 1060 Osasuna Home Ante Budimir -#> 1061 Osasuna Home Kiké -#> 1062 Osasuna Home Aimar Oroz -#> 1063 Osasuna Home Moi Gómez -#> 1064 Osasuna Home Pablo Ibáñez -#> 1065 Osasuna Home Lucas Torró -#> 1066 Osasuna Home Darko Brašanac -#> 1067 Osasuna Home Jon Moncayola -#> 1068 Osasuna Home Abdessamad Ezzalzouli -#> 1069 Osasuna Home Ezequiel Ávila -#> 1070 Osasuna Home Rubén García -#> 1071 Osasuna Home Juan Cruz Armada -#> 1072 Osasuna Home David García -#> 1073 Osasuna Home Unai García -#> 1074 Osasuna Home Nacho Vidal -#> 1075 Osasuna Home Sergio Herrera -#> 1076 Rayo Vallecano Away Sergio Camello -#> 1077 Rayo Vallecano Away Radamel Falcao -#> 1078 Rayo Vallecano Away Álvaro García -#> 1079 Rayo Vallecano Away Salvi -#> 1080 Rayo Vallecano Away Isaac Palazón Camacho -#> 1081 Rayo Vallecano Away Óscar Trejo -#> 1082 Rayo Vallecano Away Óscar Valentín -#> 1083 Rayo Vallecano Away Santi Comesaña -#> 1084 Rayo Vallecano Away Pathé Ciss -#> 1085 Rayo Vallecano Away Fran Garcia -#> 1086 Rayo Vallecano Away Pep Chavarría -#> 1087 Rayo Vallecano Away Catena -#> 1088 Rayo Vallecano Away Florian Lejeune -#> 1089 Rayo Vallecano Away Iván Balliu -#> 1090 Rayo Vallecano Away Stole Dimitrievski -#> 1091 Athletic Club Home Iñaki Williams -#> 1092 Athletic Club Home Raúl García -#> 1093 Athletic Club Home Álex Berenguer -#> 1094 Athletic Club Home Nico Williams -#> 1095 Athletic Club Home Gorka Guruzeta -#> 1096 Athletic Club Home Iker Muniain -#> 1097 Athletic Club Home Mikel Vesga -#> 1098 Athletic Club Home Oihan Sancet -#> 1099 Athletic Club Home Unai Vencedor Paris -#> 1100 Athletic Club Home Iñigo Lekue -#> 1101 Athletic Club Home Jon Morcillo -#> 1102 Athletic Club Home Yeray Álvarez -#> 1103 Athletic Club Home Daniel Vivian -#> 1104 Athletic Club Home Óscar de Marcos -#> 1105 Athletic Club Home Unai Simón -#> 1106 Espanyol Away Joselu -#> 1107 Espanyol Away Martin Braithwaite -#> 1108 Espanyol Away Dani Gómez -#> 1109 Espanyol Away Javi Puado -#> 1110 Espanyol Away José Carlos Lazo -#> 1111 Espanyol Away Sergi Darder -#> 1112 Espanyol Away Edu Expósito -#> 1113 Espanyol Away Keidi Bare -#> 1114 Espanyol Away Simo -#> 1115 Espanyol Away Vinicius Souza -#> 1116 Espanyol Away Brian Oliván -#> 1117 Espanyol Away Leandro Cabrera -#> 1118 Espanyol Away Fernando Calero -#> 1119 Espanyol Away Omar El Hilali -#> 1120 Espanyol Away Óscar Gil -#> 1121 Espanyol Away Álvaro Fernández -#> 1122 Villarreal Home Nicolas Jackson -#> 1123 Villarreal Home José Luis Morales -#> 1124 Villarreal Home Gerard Moreno -#> 1125 Villarreal Home Alex Baena -#> 1126 Villarreal Home Giovani Lo Celso -#> 1127 Villarreal Home Francis Coquelin -#> 1128 Villarreal Home Daniel Parejo -#> 1129 Villarreal Home Étienne Capoue -#> 1130 Villarreal Home Yeremi Pino -#> 1131 Villarreal Home Samuel Chukwueze -#> 1132 Villarreal Home Alfonso Pedraza -#> 1133 Villarreal Home Pau Torres -#> 1134 Villarreal Home Raúl Albiol -#> 1135 Villarreal Home Kiko Femenía -#> 1136 Villarreal Home Aïssa Mandi -#> 1137 Villarreal Home Gerónimo Rulli -#> 1138 Elche Away Ezequiel Ponce -#> 1139 Elche Away Roger Martí -#> 1140 Elche Away Lucas Boyé -#> 1141 Elche Away Pere Milla -#> 1142 Elche Away Álex Collado -#> 1143 Elche Away Domingos Quina -#> 1144 Elche Away Raúl Guti -#> 1145 Elche Away Gerard Gumbau -#> 1146 Elche Away Omar Mascarell -#> 1147 Elche Away Tete Morente -#> 1148 Elche Away Josan -#> 1149 Elche Away Carlos Clerc -#> 1150 Elche Away Pedro Bigas -#> 1151 Elche Away Enzo Roco -#> 1152 Elche Away Helibelton Palacios -#> 1153 Elche Away Édgar Badía -#> 1154 Valencia Home Marcos André -#> 1155 Valencia Home Hugo Duro -#> 1156 Valencia Home Samuel -#> 1157 Valencia Home Samu Castillejo -#> 1158 Valencia Home Ilaix Moriba -#> 1159 Valencia Home Nicolás González -#> 1160 Valencia Home Domingos André Ribeiro Almeida -#> 1161 Valencia Home Hugo Guillamón -#> 1162 Valencia Home Yunus Musah -#> 1163 Valencia Home Toni Lato -#> 1164 Valencia Home Dimitri Foulquier -#> 1165 Valencia Home Mouctar Diakhaby -#> 1166 Valencia Home Cristhian Mosquera -#> 1167 Valencia Home Eray Cömert -#> 1168 Valencia Home Thierry Correia -#> 1169 Valencia Home Giorgi Mamardashvili -#> 1170 Getafe Away Borja Mayoral -#> 1171 Getafe Away Enes Ünal -#> 1172 Getafe Away Jaime Mata -#> 1173 Getafe Away Portu -#> 1174 Getafe Away Nemanja Maksimović -#> 1175 Getafe Away Jaime Seoane -#> 1176 Getafe Away Gastón Álvarez -#> 1177 Getafe Away Mauro Arambarri -#> 1178 Getafe Away Carles Aleñá -#> 1179 Getafe Away Munir El Haddadi -#> 1180 Getafe Away Fabrizio Angileri -#> 1181 Getafe Away Domingos Duarte -#> 1182 Getafe Away Djené -#> 1183 Getafe Away Stefan Mitrović -#> 1184 Getafe Away Iglesias -#> 1185 Getafe Away David Soria -#> 1186 Valladolid Home Sergi Guardiola -#> 1187 Valladolid Home Shon Weissman -#> 1188 Valladolid Home Óscar Plano -#> 1189 Valladolid Home Gonzalo Plata -#> 1190 Valladolid Home Iván Sánchez -#> 1191 Valladolid Home Sergio León -#> 1192 Valladolid Home Kike Pérez -#> 1193 Valladolid Home Roque Mesa -#> 1194 Valladolid Home Juanjo Narváez -#> 1195 Valladolid Home Álvaro Aguado -#> 1196 Valladolid Home Monchu -#> 1197 Valladolid Home Sergio Escudero -#> 1198 Valladolid Home Javi Sánchez -#> 1199 Valladolid Home Joaquín Fernández -#> 1200 Valladolid Home Luis Pérez -#> 1201 Valladolid Home Sergio Asenjo -#> 1202 Almería Away Dyego Sousa -#> 1203 Almería Away Adri Embarba -#> 1204 Almería Away Largie Ramazani -#> 1205 Almería Away Francisco Portillo -#> 1206 Almería Away Léo Baptistão -#> 1207 Almería Away Marko Milovanović -#> 1208 Almería Away Lucas Robertone -#> 1209 Almería Away Samu Costa -#> 1210 Almería Away César de la Hoz -#> 1211 Almería Away Kaiky -#> 1212 Almería Away Sergio Akieme -#> 1213 Almería Away Srđan Babić -#> 1214 Almería Away Rodrigo Ely -#> 1215 Almería Away Alejandro Pozo Pozo -#> 1216 Almería Away Fernando -#> 1217 Girona Home Valentín Castellanos -#> 1218 Girona Home Javi Hernández -#> 1219 Girona Home Reinier -#> 1220 Girona Home Toni Villa -#> 1221 Girona Home Rodrigo Riquelme -#> 1222 Girona Home Samuel Sáiz -#> 1223 Girona Home Aleix García -#> 1224 Girona Home Oriol Romeu -#> 1225 Girona Home Miguel Gutiérrez -#> 1226 Girona Home Arnau Martinez -#> 1227 Girona Home Yan Couto -#> 1228 Girona Home Juanpe -#> 1229 Girona Home Bernardo Espinosa -#> 1230 Girona Home Manu Vallejo -#> 1231 Girona Home Santiago Bueno -#> 1232 Girona Home Juan Carlos -#> 1233 Valladolid Away Sergi Guardiola -#> 1234 Valladolid Away Shon Weissman -#> 1235 Valladolid Away Anuar -#> 1236 Valladolid Away Óscar Plano -#> 1237 Valladolid Away Monchu -#> 1238 Valladolid Away Kike Pérez -#> 1239 Valladolid Away Álvaro Aguado -#> 1240 Valladolid Away Gonzalo Plata -#> 1241 Valladolid Away Kenedy -#> 1242 Valladolid Away Roque Mesa -#> 1243 Valladolid Away Lucas Olaza -#> 1244 Valladolid Away Javi Sánchez -#> 1245 Valladolid Away Joaquín Fernández -#> 1246 Valladolid Away Luis Pérez -#> 1247 Valladolid Away Iván Fresneda -#> 1248 Valladolid Away Sergio Asenjo -#> 1249 Rayo Vallecano Home Sergio Camello -#> 1250 Rayo Vallecano Home Pathé Ciss -#> 1251 Rayo Vallecano Home Álvaro García -#> 1252 Rayo Vallecano Home Isaac Palazón Camacho -#> 1253 Rayo Vallecano Home Randy Ntekja -#> 1254 Rayo Vallecano Home Óscar Trejo -#> 1255 Rayo Vallecano Home Unai López -#> 1256 Rayo Vallecano Home Óscar Valentín -#> 1257 Rayo Vallecano Home José Pozo -#> 1258 Rayo Vallecano Home Santi Comesaña -#> 1259 Rayo Vallecano Home Radamel Falcao -#> 1260 Rayo Vallecano Home Fran Garcia -#> 1261 Rayo Vallecano Home Catena -#> 1262 Rayo Vallecano Home Florian Lejeune -#> 1263 Rayo Vallecano Home Iván Balliu -#> 1264 Rayo Vallecano Home Stole Dimitrievski -#> 1265 Valencia Away Hugo Duro -#> 1266 Valencia Away Justin Kluivert -#> 1267 Valencia Away Samuel -#> 1268 Valencia Away Samu Castillejo -#> 1269 Valencia Away Yunus Musah -#> 1270 Valencia Away Nicolás González -#> 1271 Valencia Away Marcos André -#> 1272 Valencia Away Hugo Guillamón -#> 1273 Valencia Away Domingos André Ribeiro Almeida -#> 1274 Valencia Away José Luis Gayà -#> 1275 Valencia Away Toni Lato -#> 1276 Valencia Away Mouctar Diakhaby -#> 1277 Valencia Away Gabriel Paulista -#> 1278 Valencia Away Thierry Correia -#> 1279 Valencia Away Giorgi Mamardashvili -#> 1280 Espanyol Home Joselu -#> 1281 Espanyol Home Martin Braithwaite -#> 1282 Espanyol Home Javi Puado -#> 1283 Espanyol Home Nico Ribaudo -#> 1284 Espanyol Home Sergi Darder -#> 1285 Espanyol Home Vinicius Souza -#> 1286 Espanyol Home Edu Expósito -#> 1287 Espanyol Home Dani Gómez -#> 1288 Espanyol Home Brian Oliván -#> 1289 Espanyol Home Leandro Cabrera -#> 1290 Espanyol Home Sergi Gómez -#> 1291 Espanyol Home Óscar Gil -#> 1292 Espanyol Home Rubén -#> 1293 Espanyol Home Omar El Hilali -#> 1294 Espanyol Home Álvaro Fernández -#> 1295 Sevilla Away Érik Lamela -#> 1296 Sevilla Away Óliver Torres -#> 1297 Sevilla Away Tanguy Nianzou -#> 1298 Sevilla Away Youssef En-Nesyri -#> 1299 Sevilla Away Isco -#> 1300 Sevilla Away Fernando -#> 1301 Sevilla Away Joan Jordán -#> 1302 Sevilla Away Ivan Rakitić -#> 1303 Sevilla Away Marcos Acuña -#> 1304 Sevilla Away Alex Telles -#> 1305 Sevilla Away Kike Salas -#> 1306 Sevilla Away Karim Rekik -#> 1307 Sevilla Away Nemanja Gudelj -#> 1308 Sevilla Away Carmona -#> 1309 Sevilla Away Jesús Navas -#> 1310 Sevilla Away Yassine Bounou -#> 1311 Cádiz Home Lucas Pérez -#> 1312 Cádiz Home Awer Mabil -#> 1313 Cádiz Home Brian Ocampo -#> 1314 Cádiz Home Iván Alejo -#> 1315 Cádiz Home Theo Bongonda -#> 1316 Cádiz Home Rubén Sobrino -#> 1317 Cádiz Home Álvaro Negredo -#> 1318 Cádiz Home Fede San Emeterio -#> 1319 Cádiz Home Rubén Alcaraz -#> 1320 Cádiz Home Álex Fernández -#> 1321 Cádiz Home Tomás Alarcón -#> 1322 Cádiz Home Alfonso Espino -#> 1323 Cádiz Home Mamadou Mbaye -#> 1324 Cádiz Home Luis Hernández -#> 1325 Cádiz Home Joseba Zaldúa -#> 1326 Cádiz Home Jeremías Ledesma -#> 1327 Barcelona Away Memphis -#> 1328 Barcelona Away Robert Lewandowski -#> 1329 Barcelona Away Ferrán Torres -#> 1330 Barcelona Away Ousmane Dembélé -#> 1331 Barcelona Away Raphinha -#> 1332 Barcelona Away Ansu Fati -#> 1333 Barcelona Away Gavi -#> 1334 Barcelona Away Pedri -#> 1335 Barcelona Away Sergio Busquets -#> 1336 Barcelona Away Frenkie de Jong -#> 1337 Barcelona Away Alejandro Balde -#> 1338 Barcelona Away Marcos Alonso -#> 1339 Barcelona Away Gerard Piqué -#> 1340 Barcelona Away Ronald Araújo -#> 1341 Barcelona Away Héctor Bellerín -#> 1342 Barcelona Away Marc-André ter Stegen -#> 1343 Atlético Madrid Home Álvaro Morata -#> 1344 Atlético Madrid Home Antoine Griezmann -#> 1345 Atlético Madrid Home Ángel Correa -#> 1346 Atlético Madrid Home João Félix -#> 1347 Atlético Madrid Home Thomas Lemar -#> 1348 Atlético Madrid Home Koke -#> 1349 Atlético Madrid Home Geoffrey Kondogbia -#> 1350 Atlético Madrid Home Rodrigo De Paul -#> 1351 Atlético Madrid Home Matheus Cunha -#> 1352 Atlético Madrid Home Yannick Carrasco -#> 1353 Atlético Madrid Home Saúl Ñíguez -#> 1354 Atlético Madrid Home Reinildo Mandava -#> 1355 Atlético Madrid Home Mario Hermoso -#> 1356 Atlético Madrid Home Axel Witsel -#> 1357 Atlético Madrid Home Nahuel Molina -#> 1358 Atlético Madrid Home Ivo Grbić -#> 1359 Celta Vigo Away Jørgen Strand Larsen -#> 1360 Celta Vigo Away Iago Aspas -#> 1361 Celta Vigo Away Franco Cervi -#> 1362 Celta Vigo Away Fran Beltrán -#> 1363 Celta Vigo Away Carles Pérez -#> 1364 Celta Vigo Away Gabriel Veiga -#> 1365 Celta Vigo Away Renato Tapia -#> 1366 Celta Vigo Away Augusto Solari -#> 1367 Celta Vigo Away Javi Galán -#> 1368 Celta Vigo Away Unai Núñez -#> 1369 Celta Vigo Away Joseph Aidoo -#> 1370 Celta Vigo Away Hugo Mallo -#> 1371 Celta Vigo Away Agustín Marchesín -#> 1372 Real Madrid Home Eden Hazard -#> 1373 Real Madrid Home Luka Modrić -#> 1374 Real Madrid Home Vinicius Júnior -#> 1375 Real Madrid Home Rodrygo -#> 1376 Real Madrid Home Dani Ceballos -#> 1377 Real Madrid Home Eduardo Camavinga -#> 1378 Real Madrid Home Toni Kroos -#> 1379 Real Madrid Home Federico Valverde -#> 1380 Real Madrid Home Ferland Mendy -#> 1381 Real Madrid Home Nacho -#> 1382 Real Madrid Home David Alaba -#> 1383 Real Madrid Home Antonio Rüdiger -#> 1384 Real Madrid Home Lucas Vázquez -#> 1385 Real Madrid Home Dani Carvajal -#> 1386 Real Madrid Home Thibaut Courtois -#> 1387 Mallorca Away Lee Kang-in -#> 1388 Mallorca Away Lago Junior -#> 1389 Mallorca Away Vedat Muriqi -#> 1390 Mallorca Away Abdón Prats -#> 1391 Mallorca Away Iñigo Ruiz de Galarreta -#> 1392 Mallorca Away Antonio Sánchez -#> 1393 Mallorca Away Rodrigo Battaglia -#> 1394 Mallorca Away Iddrisu Baba -#> 1395 Mallorca Away Dani Rodríguez -#> 1396 Mallorca Away Clément Grenier -#> 1397 Mallorca Away Jaume Costa -#> 1398 Mallorca Away Matija Nastasić -#> 1399 Mallorca Away Antonio Raillo -#> 1400 Mallorca Away Martin Valjent -#> 1401 Mallorca Away Pablo Maffeo -#> 1402 Mallorca Away Predrag Rajković -#> 1403 Elche Home Lucas Boyé -#> 1404 Elche Home Pere Milla -#> 1405 Elche Home Álex Collado -#> 1406 Elche Home Fidel -#> 1407 Elche Home Domingos Quina -#> 1408 Elche Home Gerard Gumbau -#> 1409 Elche Home Raúl Guti -#> 1410 Elche Home Omar Mascarell -#> 1411 Elche Home Ezequiel Ponce -#> 1412 Elche Home Nicolás Ezequiel Fernández -#> 1413 Elche Home Pedro Bigas -#> 1414 Elche Home Enzo Roco -#> 1415 Elche Home John Donald -#> 1416 Elche Home Pol Lirola -#> 1417 Elche Home Josan -#> 1418 Elche Home Édgar Badía -#> 1419 Athletic Club Away Iñaki Williams -#> 1420 Athletic Club Away Jon Morcillo -#> 1421 Athletic Club Away Álex Berenguer -#> 1422 Athletic Club Away Nico Williams -#> 1423 Athletic Club Away Oier Zarraga -#> 1424 Athletic Club Away Iker Muniain -#> 1425 Athletic Club Away Gorka Guruzeta -#> 1426 Athletic Club Away Dani García -#> 1427 Athletic Club Away Mikel Vesga -#> 1428 Athletic Club Away Oihan Sancet -#> 1429 Athletic Club Away Raúl García -#> 1430 Athletic Club Away Iñigo Lekue -#> 1431 Athletic Club Away Iñigo Martínez -#> 1432 Athletic Club Away Daniel Vivian -#> 1433 Athletic Club Away Óscar de Marcos -#> 1434 Athletic Club Away Unai Simón -#> 1435 Getafe Home Borja Mayoral -#> 1436 Getafe Home Munir El Haddadi -#> 1437 Getafe Home Enes Ünal -#> 1438 Getafe Home Nemanja Maksimović -#> 1439 Getafe Home Ángel Algobia -#> 1440 Getafe Home Jaime Seoane -#> 1441 Getafe Home Carles Aleñá -#> 1442 Getafe Home Portu -#> 1443 Getafe Home Fabrizio Angileri -#> 1444 Getafe Home Iglesias -#> 1445 Getafe Home Gastón Álvarez -#> 1446 Getafe Home Stefan Mitrović -#> 1447 Getafe Home Domingos Duarte -#> 1448 Getafe Home Damián Suárez -#> 1449 Getafe Home David Soria -#> 1450 Real Sociedad Away Alexander Sørloth -#> 1451 Real Sociedad Away Jon Karrikaburu -#> 1452 Real Sociedad Away Umar Sadiq -#> 1453 Real Sociedad Away Mohamed Ali Cho -#> 1454 Real Sociedad Away Takefusa Kubo -#> 1455 Real Sociedad Away Brais Méndez -#> 1456 Real Sociedad Away Beñat Turrientes -#> 1457 Real Sociedad Away David Silva -#> 1458 Real Sociedad Away Mikel Merino -#> 1459 Real Sociedad Away Martín Zubimendi -#> 1460 Real Sociedad Away Aihen Muñoz -#> 1461 Real Sociedad Away Jon Pacheco -#> 1462 Real Sociedad Away Igor Zubeldia -#> 1463 Real Sociedad Away Alex Sola -#> 1464 Real Sociedad Away Andoni Gorosabel -#> 1465 Real Sociedad Away Álex Remiro -#> 1466 Real Betis Home Borja Iglesias -#> 1467 Real Betis Home Willian José -#> 1468 Real Betis Home Rodri -#> 1469 Real Betis Home Aitor Ruibal -#> 1470 Real Betis Home Luiz Henrique -#> 1471 Real Betis Home Andrés Guardado -#> 1472 Real Betis Home Sergio Canales -#> 1473 Real Betis Home William Carvalho -#> 1474 Real Betis Home Guido Rodríguez -#> 1475 Real Betis Home Álex Moreno -#> 1476 Real Betis Home Luiz Felipe -#> 1477 Real Betis Home Germán Pezzella -#> 1478 Real Betis Home Youssouf Sabaly -#> 1479 Real Betis Home Rui Silva -#> 1480 Villarreal Away Nicolas Jackson -#> 1481 Villarreal Away José Luis Morales -#> 1482 Villarreal Away Gerard Moreno -#> 1483 Villarreal Away Alex Baena -#> 1484 Villarreal Away Giovani Lo Celso -#> 1485 Villarreal Away Daniel Parejo -#> 1486 Villarreal Away Étienne Capoue -#> 1487 Villarreal Away Francis Coquelin -#> 1488 Villarreal Away Yeremi Pino -#> 1489 Villarreal Away Samuel Chukwueze -#> 1490 Villarreal Away Alfonso Pedraza -#> 1491 Villarreal Away Johan Mojica -#> 1492 Villarreal Away Pau Torres -#> 1493 Villarreal Away Raúl Albiol -#> 1494 Villarreal Away Kiko Femenía -#> 1495 Villarreal Away Gerónimo Rulli -#> 1496 Almería Home Dyego Sousa -#> 1497 Almería Home El Bilal Touré -#> 1498 Almería Home Adri Embarba -#> 1499 Almería Home Arnau Puigmal -#> 1500 Almería Home Largie Ramazani -#> 1501 Almería Home Marko Milovanović -#> 1502 Almería Home Samu Costa -#> 1503 Almería Home Íñigo Eguaras -#> 1504 Almería Home Francisco Portillo -#> 1505 Almería Home Lucas Robertone -#> 1506 Almería Home Lázaro -#> 1507 Almería Home Sergio Akieme -#> 1508 Almería Home Srđan Babić -#> 1509 Almería Home Rodrigo Ely -#> 1510 Almería Home Alejandro Pozo Pozo -#> 1511 Almería Home Fernando -#> 1512 Osasuna Away Ante Budimir -#> 1513 Osasuna Away Abdessamad Ezzalzouli -#> 1514 Osasuna Away Moi Gómez -#> 1515 Osasuna Away Kike Barja -#> 1516 Osasuna Away Ezequiel Ávila -#> 1517 Osasuna Away Kiké -#> 1518 Osasuna Away Rubén García -#> 1519 Osasuna Away Jon Moncayola -#> 1520 Osasuna Away Darko Brašanac -#> 1521 Osasuna Away Pablo Ibáñez -#> 1522 Osasuna Away Lucas Torró -#> 1523 Osasuna Away Juan Cruz Armada -#> 1524 Osasuna Away David García -#> 1525 Osasuna Away Unai García -#> 1526 Osasuna Away Nacho Vidal -#> 1527 Osasuna Away Sergio Herrera -#> 1528 Valladolid Home Shon Weissman -#> 1529 Valladolid Home Sergi Guardiola -#> 1530 Valladolid Home Óscar Plano -#> 1531 Valladolid Home Juanjo Narváez -#> 1532 Valladolid Home Gonzalo Plata -#> 1533 Valladolid Home Sergio León -#> 1534 Valladolid Home Kike Pérez -#> 1535 Valladolid Home Roque Mesa -#> 1536 Valladolid Home Mickael Malsa -#> 1537 Valladolid Home Monchu -#> 1538 Valladolid Home Iván Sánchez -#> 1539 Valladolid Home Lucas Olaza -#> 1540 Valladolid Home Javi Sánchez -#> 1541 Valladolid Home Joaquín Fernández -#> 1542 Valladolid Home Iván Fresneda -#> 1543 Valladolid Home Sergio Asenjo -#> 1544 Cádiz Away Lucas Pérez -#> 1545 Cádiz Away Brian Ocampo -#> 1546 Cádiz Away Rubén Alcaraz -#> 1547 Cádiz Away Iván Alejo -#> 1548 Cádiz Away Álvaro Negredo -#> 1549 Cádiz Away Rubén Sobrino -#> 1550 Cádiz Away Álex Fernández -#> 1551 Cádiz Away Theo Bongonda -#> 1552 Cádiz Away Fede San Emeterio -#> 1553 Cádiz Away José Mari -#> 1554 Cádiz Away Alfonso Espino -#> 1555 Cádiz Away Víctor Chust -#> 1556 Cádiz Away Luis Hernández -#> 1557 Cádiz Away Isaac Carcelen -#> 1558 Cádiz Away Joseba Zaldúa -#> 1559 Cádiz Away Jeremías Ledesma -#> 1560 Mallorca Home Vedat Muriqi -#> 1561 Mallorca Home Ángel Rodríguez -#> 1562 Mallorca Home Lee Kang-in -#> 1563 Mallorca Home Clément Grenier -#> 1564 Mallorca Home Iddrisu Baba -#> 1565 Mallorca Home Iñigo Ruiz de Galarreta -#> 1566 Mallorca Home Abdón Prats -#> 1567 Mallorca Home Antonio Sánchez -#> 1568 Mallorca Home Dani Rodríguez -#> 1569 Mallorca Home Jaume Costa -#> 1570 Mallorca Home Copete -#> 1571 Mallorca Home Antonio Raillo -#> 1572 Mallorca Home Martin Valjent -#> 1573 Mallorca Home Pablo Maffeo -#> 1574 Mallorca Home Predrag Rajković -#> 1575 Almería Away Largie Ramazani -#> 1576 Almería Away El Bilal Touré -#> 1577 Almería Away Dyego Sousa -#> 1578 Almería Away Lázaro -#> 1579 Almería Away Gonzalo Melero -#> 1580 Almería Away Samu Costa -#> 1581 Almería Away Lucas Robertone -#> 1582 Almería Away Francisco Portillo -#> 1583 Almería Away Sergio Akieme -#> 1584 Almería Away Srđan Babić -#> 1585 Almería Away Rodrigo Ely -#> 1586 Almería Away Juan Brandáriz -#> 1587 Almería Away Adri Embarba -#> 1588 Almería Away Alejandro Pozo Pozo -#> 1589 Almería Away Arnau Puigmal -#> 1590 Almería Away Fernando -#> 1591 Barcelona Home Robert Lewandowski -#> 1592 Barcelona Home Ferrán Torres -#> 1593 Barcelona Home Memphis -#> 1594 Barcelona Home Ansu Fati -#> 1595 Barcelona Home Ousmane Dembélé -#> 1596 Barcelona Home Raphinha -#> 1597 Barcelona Home Pedri -#> 1598 Barcelona Home Frenkie de Jong -#> 1599 Barcelona Home Franck Kessié -#> 1600 Barcelona Home Gavi -#> 1601 Barcelona Home Alejandro Balde -#> 1602 Barcelona Home Eric García -#> 1603 Barcelona Home Héctor Bellerín -#> 1604 Barcelona Home Ronald Araújo -#> 1605 Barcelona Home Jules Koundé -#> 1606 Barcelona Home Marc-André ter Stegen -#> 1607 Elche Away Lucas Boyé -#> 1608 Elche Away Josan -#> 1609 Elche Away Fidel -#> 1610 Elche Away Domingos Quina -#> 1611 Elche Away Gerard Gumbau -#> 1612 Elche Away Raúl Guti -#> 1613 Elche Away Nicolás Ezequiel Fernández -#> 1614 Elche Away Tete Morente -#> 1615 Elche Away Ezequiel Ponce -#> 1616 Elche Away Carlos Clerc -#> 1617 Elche Away Pedro Bigas -#> 1618 Elche Away Diego González -#> 1619 Elche Away Gonzalo Verdú -#> 1620 Elche Away John Donald -#> 1621 Elche Away Helibelton Palacios -#> 1622 Elche Away Édgar Badía -#> 1623 Valencia Home Edinson Cavani -#> 1624 Valencia Home Justin Kluivert -#> 1625 Valencia Home Samuel -#> 1626 Valencia Home Samu Castillejo -#> 1627 Valencia Home Marcos André -#> 1628 Valencia Home Ilaix Moriba -#> 1629 Valencia Home Nicolás González -#> 1630 Valencia Home Hugo Guillamón -#> 1631 Valencia Home Domingos André Ribeiro Almeida -#> 1632 Valencia Home José Luis Gayà -#> 1633 Valencia Home Toni Lato -#> 1634 Valencia Home Mouctar Diakhaby -#> 1635 Valencia Home Eray Cömert -#> 1636 Valencia Home Gabriel Paulista -#> 1637 Valencia Home Thierry Correia -#> 1638 Valencia Home Giorgi Mamardashvili -#> 1639 Celta Vigo Away Jørgen Strand Larsen -#> 1640 Celta Vigo Away Luca de la Torre -#> 1641 Celta Vigo Away Iago Aspas -#> 1642 Celta Vigo Away Franco Cervi -#> 1643 Celta Vigo Away Fran Beltrán -#> 1644 Celta Vigo Away Carles Pérez -#> 1645 Celta Vigo Away Óscar Rodríguez Arnaiz -#> 1646 Celta Vigo Away Gabriel Veiga -#> 1647 Celta Vigo Away Renato Tapia -#> 1648 Celta Vigo Away Javi Galán -#> 1649 Celta Vigo Away Unai Núñez -#> 1650 Celta Vigo Away Joseph Aidoo -#> 1651 Celta Vigo Away Hugo Mallo -#> 1652 Celta Vigo Away Agustín Marchesín -#> 1653 Athletic Club Home Iñaki Williams -#> 1654 Athletic Club Home Raúl García -#> 1655 Athletic Club Home Álex Berenguer -#> 1656 Athletic Club Home Aitor Paredes -#> 1657 Athletic Club Home Nico Williams -#> 1658 Athletic Club Home Oier Zarraga -#> 1659 Athletic Club Home Iker Muniain -#> 1660 Athletic Club Home Jon Morcillo -#> 1661 Athletic Club Home Dani García -#> 1662 Athletic Club Home Oihan Sancet -#> 1663 Athletic Club Home Ander Herrera -#> 1664 Athletic Club Home Iñigo Lekue -#> 1665 Athletic Club Home Iñigo Martínez -#> 1666 Athletic Club Home Yeray Álvarez -#> 1667 Athletic Club Home Óscar de Marcos -#> 1668 Athletic Club Home Unai Simón -#> 1669 Rayo Vallecano Away Sergio Camello -#> 1670 Rayo Vallecano Away Radamel Falcao -#> 1671 Rayo Vallecano Away Álvaro García -#> 1672 Rayo Vallecano Away Isaac Palazón Camacho -#> 1673 Rayo Vallecano Away Óscar Trejo -#> 1674 Rayo Vallecano Away Bebé -#> 1675 Rayo Vallecano Away Santi Comesaña -#> 1676 Rayo Vallecano Away Unai López -#> 1677 Rayo Vallecano Away Óscar Valentín -#> 1678 Rayo Vallecano Away Pathé Ciss -#> 1679 Rayo Vallecano Away Fran Garcia -#> 1680 Rayo Vallecano Away Catena -#> 1681 Rayo Vallecano Away Florian Lejeune -#> 1682 Rayo Vallecano Away Abdul Mumin -#> 1683 Rayo Vallecano Away Iván Balliu -#> 1684 Rayo Vallecano Away Stole Dimitrievski -#> 1685 Osasuna Home Ante Budimir -#> 1686 Osasuna Home Kiké -#> 1687 Osasuna Home Moi Gómez -#> 1688 Osasuna Home Ezequiel Ávila -#> 1689 Osasuna Home Rubén García -#> 1690 Osasuna Home Abdessamad Ezzalzouli -#> 1691 Osasuna Home Darko Brašanac -#> 1692 Osasuna Home Jon Moncayola -#> 1693 Osasuna Home Lucas Torró -#> 1694 Osasuna Home Juan Cruz Armada -#> 1695 Osasuna Home David García -#> 1696 Osasuna Home Manu Sánchez -#> 1697 Osasuna Home Unai García -#> 1698 Osasuna Home Nacho Vidal -#> 1699 Osasuna Home Rubén Peña -#> 1700 Osasuna Home Sergio Herrera -#> 1701 Getafe Away Enes Ünal -#> 1702 Getafe Away Jaime Mata -#> 1703 Getafe Away Borja Mayoral -#> 1704 Getafe Away Munir El Haddadi -#> 1705 Getafe Away Nemanja Maksimović -#> 1706 Getafe Away Luis Milla -#> 1707 Getafe Away Mauro Arambarri -#> 1708 Getafe Away Carles Aleñá -#> 1709 Getafe Away Jaime Seoane -#> 1710 Getafe Away Iglesias -#> 1711 Getafe Away Gastón Álvarez -#> 1712 Getafe Away Alejandro Revuelta Montero -#> 1713 Getafe Away Stefan Mitrović -#> 1714 Getafe Away Domingos Duarte -#> 1715 Getafe Away Damián Suárez -#> 1716 Getafe Away David Soria -#> 1717 Villarreal Home Nicolas Jackson -#> 1718 Villarreal Home José Luis Morales -#> 1719 Villarreal Home Giovani Lo Celso -#> 1720 Villarreal Home Alex Baena -#> 1721 Villarreal Home Francis Coquelin -#> 1722 Villarreal Home Arnaut Danjuma -#> 1723 Villarreal Home Daniel Parejo -#> 1724 Villarreal Home Étienne Capoue -#> 1725 Villarreal Home Samuel Chukwueze -#> 1726 Villarreal Home Yeremi Pino -#> 1727 Villarreal Home Alfonso Pedraza -#> 1728 Villarreal Home Johan Mojica -#> 1729 Villarreal Home Pau Torres -#> 1730 Villarreal Home Raúl Albiol -#> 1731 Villarreal Home Kiko Femenía -#> 1732 Villarreal Home Gerónimo Rulli -#> 1733 Sevilla Away Rafa Mir -#> 1734 Sevilla Away Óliver Torres -#> 1735 Sevilla Away Papu Gómez -#> 1736 Sevilla Away Jesús Navas -#> 1737 Sevilla Away Isco -#> 1738 Sevilla Away Fernando -#> 1739 Sevilla Away Tanguy Nianzou -#> 1740 Sevilla Away Joan Jordán -#> 1741 Sevilla Away Marcos Acuña -#> 1742 Sevilla Away Alex Telles -#> 1743 Sevilla Away Kike Salas -#> 1744 Sevilla Away Nemanja Gudelj -#> 1745 Sevilla Away Carmona -#> 1746 Sevilla Away Suso -#> 1747 Sevilla Away Yassine Bounou -#> 1748 Sevilla Away Marko Dmitrović -#> 1749 Real Betis Home Borja Iglesias -#> 1750 Real Betis Home Rodri -#> 1751 Real Betis Home Luiz Henrique -#> 1752 Real Betis Home Willian José -#> 1753 Real Betis Home Sergio Canales -#> 1754 Real Betis Home Paul Akouokou -#> 1755 Real Betis Home William Carvalho -#> 1756 Real Betis Home Guido Rodríguez -#> 1757 Real Betis Home Álex Moreno -#> 1758 Real Betis Home Luiz Felipe -#> 1759 Real Betis Home Germán Pezzella -#> 1760 Real Betis Home Édgar González -#> 1761 Real Betis Home Martín Montoya -#> 1762 Real Betis Home Aitor Ruibal -#> 1763 Real Betis Home Rui Silva -#> 1764 Girona Away Valentín Castellanos -#> 1765 Girona Away Manu Vallejo -#> 1766 Girona Away Rodrigo Riquelme -#> 1767 Girona Away Samuel Sáiz -#> 1768 Girona Away Reinier -#> 1769 Girona Away Aleix García -#> 1770 Girona Away Joel Roca -#> 1771 Girona Away Oriol Romeu -#> 1772 Girona Away Miguel Gutiérrez -#> 1773 Girona Away Arnau Martinez -#> 1774 Girona Away Yan Couto -#> 1775 Girona Away Juanpe -#> 1776 Girona Away Bernardo Espinosa -#> 1777 Girona Away Toni Villa -#> 1778 Girona Away Santiago Bueno -#> 1779 Girona Away Juan Carlos -#> 1780 Real Sociedad Home Takefusa Kubo -#> 1781 Real Sociedad Home Beñat Turrientes -#> 1782 Real Sociedad Home Alexander Sørloth -#> 1783 Real Sociedad Home Mikel Merino -#> 1784 Real Sociedad Home David Silva -#> 1785 Real Sociedad Home Mohamed Ali Cho -#> 1786 Real Sociedad Home Brais Méndez -#> 1787 Real Sociedad Home Igor Zubeldia -#> 1788 Real Sociedad Home Martín Zubimendi -#> 1789 Real Sociedad Home Aihen Muñoz -#> 1790 Real Sociedad Home Jon Pacheco -#> 1791 Real Sociedad Home Aritz Elustondo -#> 1792 Real Sociedad Home Andoni Gorosabel -#> 1793 Real Sociedad Home Álex Remiro -#> 1794 Espanyol Away Martin Braithwaite -#> 1795 Espanyol Away Joselu -#> 1796 Espanyol Away Edu Expósito -#> 1797 Espanyol Away Dani Gómez -#> 1798 Espanyol Away Vinicius Souza -#> 1799 Espanyol Away Pol Lozano -#> 1800 Espanyol Away Sergi Darder -#> 1801 Espanyol Away Brian Oliván -#> 1802 Espanyol Away Leandro Cabrera -#> 1803 Espanyol Away Sergi Gómez -#> 1804 Espanyol Away Fernando Calero -#> 1805 Espanyol Away Aleix Vidal -#> 1806 Espanyol Away Omar El Hilali -#> 1807 Espanyol Away Javi Puado -#> 1808 Espanyol Away Álvaro Fernández -#> 1809 Atlético Madrid Home João Félix -#> 1810 Atlético Madrid Home Matheus Cunha -#> 1811 Atlético Madrid Home Antoine Griezmann -#> 1812 Atlético Madrid Home Koke -#> 1813 Atlético Madrid Home Ángel Correa -#> 1814 Atlético Madrid Home Geoffrey Kondogbia -#> 1815 Atlético Madrid Home Saúl Ñíguez -#> 1816 Atlético Madrid Home Rodrigo De Paul -#> 1817 Atlético Madrid Home Álvaro Morata -#> 1818 Atlético Madrid Home Yannick Carrasco -#> 1819 Atlético Madrid Home Mario Hermoso -#> 1820 Atlético Madrid Home Marcos Llorente -#> 1821 Atlético Madrid Home Reinildo Mandava -#> 1822 Atlético Madrid Home Axel Witsel -#> 1823 Atlético Madrid Home Felipe -#> 1824 Atlético Madrid Home Jan Oblak -#> 1825 Real Madrid Away Rodrygo -#> 1826 Real Madrid Away Dani Ceballos -#> 1827 Real Madrid Away Vinicius Júnior -#> 1828 Real Madrid Away Federico Valverde -#> 1829 Real Madrid Away Toni Kroos -#> 1830 Real Madrid Away Marco Asensio -#> 1831 Real Madrid Away Aurélien Tchouaméni -#> 1832 Real Madrid Away Luka Modrić -#> 1833 Real Madrid Away Eduardo Camavinga -#> 1834 Real Madrid Away Ferland Mendy -#> 1835 Real Madrid Away Antonio Rüdiger -#> 1836 Real Madrid Away David Alaba -#> 1837 Real Madrid Away Éder Militão -#> 1838 Real Madrid Away Dani Carvajal -#> 1839 Real Madrid Away Thibaut Courtois -#> 1840 Athletic Club Home Iñaki Williams -#> 1841 Athletic Club Home Álex Berenguer -#> 1842 Athletic Club Home Mikel Vesga -#> 1843 Athletic Club Home Nico Williams -#> 1844 Athletic Club Home Iker Muniain -#> 1845 Athletic Club Home Asier Villalibre -#> 1846 Athletic Club Home Dani García -#> 1847 Athletic Club Home Oier Zarraga -#> 1848 Athletic Club Home Oihan Sancet -#> 1849 Athletic Club Home Ander Herrera -#> 1850 Athletic Club Home Iñigo Lekue -#> 1851 Athletic Club Home Iñigo Martínez -#> 1852 Athletic Club Home Yeray Álvarez -#> 1853 Athletic Club Home Aitor Paredes -#> 1854 Athletic Club Home Óscar de Marcos -#> 1855 Athletic Club Home Unai Simón -#> 1856 Almería Away Lázaro -#> 1857 Almería Away Adri Embarba -#> 1858 Almería Away Largie Ramazani -#> 1859 Almería Away Dyego Sousa -#> 1860 Almería Away Samu Costa -#> 1861 Almería Away Íñigo Eguaras -#> 1862 Almería Away Lucas Robertone -#> 1863 Almería Away Arnau Puigmal -#> 1864 Almería Away Francisco Portillo -#> 1865 Almería Away Léo Baptistão -#> 1866 Almería Away Sergio Akieme -#> 1867 Almería Away Srđan Babić -#> 1868 Almería Away Rodrigo Ely -#> 1869 Almería Away Kaiky -#> 1870 Almería Away Houboulang Mendes -#> 1871 Almería Away Fernando -#> 1872 Cádiz Home Álvaro Negredo -#> 1873 Cádiz Home Álex Fernández -#> 1874 Cádiz Home Rubén Sobrino -#> 1875 Cádiz Home Theo Bongonda -#> 1876 Cádiz Home Anthony Lozano -#> 1877 Cádiz Home Rubén Alcaraz -#> 1878 Cádiz Home José Mari -#> 1879 Cádiz Home Fede San Emeterio -#> 1880 Cádiz Home Lucas Pérez -#> 1881 Cádiz Home Iván Alejo -#> 1882 Cádiz Home Joseba Zaldúa -#> 1883 Cádiz Home Alfonso Espino -#> 1884 Cádiz Home Víctor Chust -#> 1885 Cádiz Home Luis Hernández -#> 1886 Cádiz Home Isaac Carcelen -#> 1887 Cádiz Home Jeremías Ledesma -#> 1888 Villarreal Away Nicolas Jackson -#> 1889 Villarreal Away Samuel Chukwueze -#> 1890 Villarreal Away Alex Baena -#> 1891 Villarreal Away Francis Coquelin -#> 1892 Villarreal Away Arnaut Danjuma -#> 1893 Villarreal Away Daniel Parejo -#> 1894 Villarreal Away Étienne Capoue -#> 1895 Villarreal Away Giovani Lo Celso -#> 1896 Villarreal Away José Luis Morales -#> 1897 Villarreal Away Alfonso Pedraza -#> 1898 Villarreal Away Pau Torres -#> 1899 Villarreal Away Raúl Albiol -#> 1900 Villarreal Away Kiko Femenía -#> 1901 Villarreal Away Gerónimo Rulli -#> 1902 Getafe Home Borja Mayoral -#> 1903 Getafe Home Enes Ünal -#> 1904 Getafe Home Ángel Algobia -#> 1905 Getafe Home Jaime Seoane -#> 1906 Getafe Home Stefan Mitrović -#> 1907 Getafe Home Mauro Arambarri -#> 1908 Getafe Home Munir El Haddadi -#> 1909 Getafe Home Carles Aleñá -#> 1910 Getafe Home Iglesias -#> 1911 Getafe Home Juanmi Latasa -#> 1912 Getafe Home Gastón Álvarez -#> 1913 Getafe Home Domingos Duarte -#> 1914 Getafe Home Djené -#> 1915 Getafe Home Damián Suárez -#> 1916 Getafe Home David Soria -#> 1917 Valladolid Away Sergio León -#> 1918 Valladolid Away Shon Weissman -#> 1919 Valladolid Away Óscar Plano -#> 1920 Valladolid Away Iván Sánchez -#> 1921 Valladolid Away Gonzalo Plata -#> 1922 Valladolid Away Álvaro Aguado -#> 1923 Valladolid Away Roque Mesa -#> 1924 Valladolid Away Mickael Malsa -#> 1925 Valladolid Away Kike Pérez -#> 1926 Valladolid Away Sergio Escudero -#> 1927 Valladolid Away Javi Sánchez -#> 1928 Valladolid Away Joaquín Fernández -#> 1929 Valladolid Away Jawad El Yamiq -#> 1930 Valladolid Away Zouhair Feddal -#> 1931 Valladolid Away Iván Fresneda -#> 1932 Valladolid Away Jordi Masip -#> 1933 Sevilla Home Kasper Dolberg -#> 1934 Sevilla Home Isco -#> 1935 Sevilla Home Érik Lamela -#> 1936 Sevilla Home Óliver Torres -#> 1937 Sevilla Home Papu Gómez -#> 1938 Sevilla Home Thomas Delaney -#> 1939 Sevilla Home Ivan Rakitić -#> 1940 Sevilla Home Nemanja Gudelj -#> 1941 Sevilla Home Karim Rekik -#> 1942 Sevilla Home Alex Telles -#> 1943 Sevilla Home Kike Salas -#> 1944 Sevilla Home Jesús Navas -#> 1945 Sevilla Home Tanguy Nianzou -#> 1946 Sevilla Home Youssef En-Nesyri -#> 1947 Sevilla Home Carmona -#> 1948 Sevilla Home Yassine Bounou -#> 1949 Atlético Madrid Away Álvaro Morata -#> 1950 Atlético Madrid Away Antoine Griezmann -#> 1951 Atlético Madrid Away Matheus Cunha -#> 1952 Atlético Madrid Away Ángel Correa -#> 1953 Atlético Madrid Away Saúl Ñíguez -#> 1954 Atlético Madrid Away Yannick Carrasco -#> 1955 Atlético Madrid Away Koke -#> 1956 Atlético Madrid Away Geoffrey Kondogbia -#> 1957 Atlético Madrid Away Marcos Llorente -#> 1958 Atlético Madrid Away Axel Witsel -#> 1959 Atlético Madrid Away Reinildo Mandava -#> 1960 Atlético Madrid Away José María Giménez -#> 1961 Atlético Madrid Away Stefan Savić -#> 1962 Atlético Madrid Away Nahuel Molina -#> 1963 Atlético Madrid Away João Félix -#> 1964 Atlético Madrid Away Jan Oblak -#> 1965 Mallorca Home Vedat Muriqi -#> 1966 Mallorca Home Lee Kang-in -#> 1967 Mallorca Home Iddrisu Baba -#> 1968 Mallorca Home Iñigo Ruiz de Galarreta -#> 1969 Mallorca Home Lago Junior -#> 1970 Mallorca Home Antonio Sánchez -#> 1971 Mallorca Home Dani Rodríguez -#> 1972 Mallorca Home Jaume Costa -#> 1973 Mallorca Home Braian Cufré -#> 1974 Mallorca Home Copete -#> 1975 Mallorca Home Antonio Raillo -#> 1976 Mallorca Home Martin Valjent -#> 1977 Mallorca Home Pablo Maffeo -#> 1978 Mallorca Home Predrag Rajković -#> 1979 Barcelona Away Robert Lewandowski -#> 1980 Barcelona Away Ansu Fati -#> 1981 Barcelona Away Raphinha -#> 1982 Barcelona Away Ousmane Dembélé -#> 1983 Barcelona Away Ferrán Torres -#> 1984 Barcelona Away Gavi -#> 1985 Barcelona Away Sergio Busquets -#> 1986 Barcelona Away Franck Kessié -#> 1987 Barcelona Away Pedri -#> 1988 Barcelona Away Jordi Alba -#> 1989 Barcelona Away Sergi Roberto -#> 1990 Barcelona Away Andreas Christensen -#> 1991 Barcelona Away Gerard Piqué -#> 1992 Barcelona Away Alejandro Balde -#> 1993 Barcelona Away Marc-André ter Stegen -#> 1994 Espanyol Home Joselu -#> 1995 Espanyol Home Martin Braithwaite -#> 1996 Espanyol Home Javi Puado -#> 1997 Espanyol Home Aleix Vidal -#> 1998 Espanyol Home Edu Expósito -#> 1999 Espanyol Home Keidi Bare -#> 2000 Espanyol Home Vinicius Souza -#> 2001 Espanyol Home Pol Lozano -#> 2002 Espanyol Home Sergi Darder -#> 2003 Espanyol Home Simo -#> 2004 Espanyol Home Brian Oliván -#> 2005 Espanyol Home Leandro Cabrera -#> 2006 Espanyol Home Sergi Gómez -#> 2007 Espanyol Home Fernando Calero -#> 2008 Espanyol Home Nico Ribaudo -#> 2009 Espanyol Home Álvaro Fernández -#> 2010 Valencia Away Edinson Cavani -#> 2011 Valencia Away Marcos André -#> 2012 Valencia Away Samuel -#> 2013 Valencia Away Samu Castillejo -#> 2014 Valencia Away Justin Kluivert -#> 2015 Valencia Away Ilaix Moriba -#> 2016 Valencia Away Hugo Duro -#> 2017 Valencia Away Hugo Guillamón -#> 2018 Valencia Away Domingos André Ribeiro Almeida -#> 2019 Valencia Away Nicolás González -#> 2020 Valencia Away José Luis Gayà -#> 2021 Valencia Away Mouctar Diakhaby -#> 2022 Valencia Away Gabriel Paulista -#> 2023 Valencia Away Eray Cömert -#> 2024 Valencia Away Thierry Correia -#> 2025 Valencia Away Giorgi Mamardashvili -#> 2026 Celta Vigo Home Jørgen Strand Larsen -#> 2027 Celta Vigo Home Gonçalo Paciência -#> 2028 Celta Vigo Home Carles Pérez -#> 2029 Celta Vigo Home Iago Aspas -#> 2030 Celta Vigo Home Óscar Rodríguez Arnaiz -#> 2031 Celta Vigo Home Gabriel Veiga -#> 2032 Celta Vigo Home Luca de la Torre -#> 2033 Celta Vigo Home Augusto Solari -#> 2034 Celta Vigo Home Renato Tapia -#> 2035 Celta Vigo Home Fran Beltrán -#> 2036 Celta Vigo Home Javi Galán -#> 2037 Celta Vigo Home Unai Núñez -#> 2038 Celta Vigo Home Joseph Aidoo -#> 2039 Celta Vigo Home Hugo Mallo -#> 2040 Celta Vigo Home Óscar Mingueza -#> Player_Href Player_Num Nation -#> 1 /en/players/7c363088/Aimar-Oroz 29 ESP -#> 2 /en/players/3701906c/Pablo-Ibanez 19 ESP -#> 3 /en/players/253a06b9/Ezequiel-Avila 9 ARG -#> 4 /en/players/e897d8ba/Kike 18 ESP -#> 5 /en/players/5a626448/Moi-Gomez 16 ESP -#> 6 /en/players/0e4fef6e/Lucas-Torro 6 ESP -#> 7 /en/players/9939e168/Jon-Moncayola 7 ESP -#> 8 /en/players/aad53e64/Kike-Barja 11 ESP -#> 9 /en/players/3a9c4b7b/Nacho-Vidal 2 ESP -#> 10 /en/players/a56da3ba/Juan-Cruz-Armada 3 ESP -#> 11 /en/players/3e42f707/David-Garcia 5 ESP -#> 12 /en/players/4a633cfe/Unai-Garcia 4 ESP -#> 13 /en/players/ffacd3d5/Manu-Sanchez 20 ESP -#> 14 /en/players/1f079188/Ruben-Pena 15 ESP -#> 15 /en/players/4accb7e0/Darko-Brasanac 8 SRB -#> 16 /en/players/a4995f48/Sergio-Herrera 1 ESP -#> 17 /en/players/bbf5c11b/Rafa-Mir 12 ESP -#> 18 /en/players/04e17fd5/Youssef-En-Nesyri 15 MAR -#> 19 /en/players/a08b974a/Lucas-Ocampos 5 ARG -#> 20 /en/players/e73c9bb2/Alex-Telles 3 BRA -#> 21 /en/players/fb938d24/Jesus-Corona 9 MEX -#> 22 /en/players/abe66106/Erik-Lamela 17 ARG -#> 23 /en/players/6e4df551/Papu-Gomez 24 ARG -#> 24 /en/players/2fbe6af0/Ivan-Romero 36 ESP -#> 25 /en/players/fe641c1a/Thomas-Delaney 18 DEN -#> 26 /en/players/89f951b5/Ivan-Rakitic 10 CRO -#> 27 /en/players/41f32541/Fernando 20 BRA -#> 28 /en/players/81442ecb/Marcos-Acuna 19 ARG -#> 29 /en/players/3376a776/Karim-Rekik 4 NED -#> 30 /en/players/0076ab7f/Nemanja-Gudelj 6 SRB -#> 31 /en/players/3f10bd22/Jesus-Navas 16 ESP -#> 32 /en/players/f6798fc3/Yassine-Bounou 13 MAR -#> 33 /en/players/962e54cb/Goncalo-Paciencia 9 POR -#> 34 /en/players/a8f21b9f/Carles-Perez 7 ESP -#> 35 /en/players/7dcf86f6/Iago-Aspas 10 ESP -#> 36 /en/players/5e1028e5/Franco-Cervi 11 ARG -#> 37 /en/players/056269d7/Oscar-Mingueza 3 ESP -#> 38 /en/players/19709006/Oscar-Rodriguez-Arnaiz 5 ESP -#> 39 /en/players/35a6e5c7/Gabriel-Veiga 28 ESP -#> 40 /en/players/3ca6106c/Augusto-Solari 21 ARG -#> 41 /en/players/34269bdf/Renato-Tapia 14 PER -#> 42 /en/players/ed5c5fa3/Fran-Beltran 8 ESP -#> 43 /en/players/a4b00319/Javi-Galan 17 ESP -#> 44 /en/players/be170419/Unai-Nunez 4 ESP -#> 45 /en/players/18abe173/Joseph-Aidoo 15 GHA -#> 46 /en/players/cb574619/Hugo-Mallo 2 ESP -#> 47 /en/players/853b7c48/Agustin-Marchesin 1 ARG -#> 48 /en/players/6265208f/Joselu 9 ESP -#> 49 /en/players/ce8039aa/Nico-Ribaudo 21 ESP -#> 50 /en/players/db8f0eba/Adri-Embarba 23 ESP -#> 51 /en/players/35d4f151/Ruben 27 ESP -#> 52 /en/players/fc076f78/Luca-Koleosho 30 ITA -#> 53 /en/players/070a3904/Sergi-Darder 10 ESP -#> 54 /en/players/41b3069f/Fernando-Calero 5 ESP -#> 55 /en/players/283c7121/Edu-Exposito 20 ESP -#> 56 /en/players/6a8a7af8/Vinicius-Souza 12 BRA -#> 57 /en/players/e96b2583/Nabil-Touaizi 32 MAR -#> 58 /en/players/a3e4bf46/Brian-Olivan 14 ESP -#> 59 /en/players/69cbc8b6/Leandro-Cabrera 4 URU -#> 60 /en/players/bc6f5f06/Sergi-Gomez 24 ESP -#> 61 /en/players/6652cf96/Oscar-Gil 2 ESP -#> 62 /en/players/2fa2a875/Benjamin-Lecomte 13 FRA -#> 63 /en/players/0a0cc13c/Sergio-Leon 7 ESP -#> 64 /en/players/475a738b/Sekou-Gassama 22 SEN -#> 65 /en/players/636eae97/Toni-Villa 19 ESP -#> 66 /en/players/7c388b20/Oscar-Plano 10 ESP -#> 67 /en/players/014aa7bd/Alvaro-Aguado 6 ESP -#> 68 /en/players/7c4243d4/Roque-Mesa 17 ESP -#> 69 /en/players/237a3851/Kike-Perez 4 ESP -#> 70 /en/players/54bcdeb0/Gonzalo-Plata 11 ECU -#> 71 /en/players/70107d4d/Ivan-Sanchez 21 ESP -#> 72 /en/players/8ac501f5/Monchu 8 ESP -#> 73 /en/players/b0616e3d/Sergio-Escudero 18 ESP -#> 74 /en/players/4cee5954/Lucas-Olaza 12 URU -#> 75 /en/players/f6f6b6e8/Jawad-El-Yamiq 15 MAR -#> 76 /en/players/b86a64b2/Joaquin-Fernandez 24 ESP -#> 77 /en/players/b7c04927/Luis-Perez 2 ESP -#> 78 /en/players/9f0ea33f/Sergio-Asenjo 25 ESP -#> 79 /en/players/9c36ed83/Nicolas-Jackson 26 SEN -#> 80 /en/players/81f0781e/Gerard-Moreno 7 ESP -#> 81 /en/players/4a478107/Jose-Luis-Morales 22 ESP -#> 82 /en/players/a6951bf8/Francis-Coquelin 19 FRA -#> 83 /en/players/b8a642fc/Samuel-Chukwueze 11 NGA -#> 84 /en/players/7460ca0d/Daniel-Parejo 10 ESP -#> 85 /en/players/5acc4a10/Etienne-Capoue 6 FRA -#> 86 /en/players/540ec57b/Yeremi-Pino 21 ESP -#> 87 /en/players/518f2234/Alex-Baena 30 ESP -#> 88 /en/players/63f04c6c/Alfonso-Pedraza 24 ESP -#> 89 /en/players/532e1e4f/Pau-Torres 4 ESP -#> 90 /en/players/4bd414c1/Raul-Albiol 3 ESP -#> 91 /en/players/6c7762c3/Juan-Foyth 8 ARG -#> 92 /en/players/fbd6378b/Aissa-Mandi 23 ALG -#> 93 /en/players/625c144a/Geronimo-Rulli 13 ARG -#> 94 /en/players/8d78e732/Robert-Lewandowski 9 POL -#> 95 /en/players/b19db005/Ousmane-Dembele 7 FRA -#> 96 /en/players/3423f250/Raphinha 22 BRA -#> 97 /en/players/0ba976e4/Ansu-Fati 10 ESP -#> 98 /en/players/0d9b2d31/Pedri 8 ESP -#> 99 /en/players/05e19d6a/Franck-Kessie 19 CIV -#> 100 /en/players/5ab0ea87/Sergio-Busquets 5 ESP -#> 101 /en/players/19cae58d/Gavi 30 ESP -#> 102 /en/players/1bacc518/Frenkie-de-Jong 21 NED -#> 103 /en/players/4601e194/Jordi-Alba 18 ESP -#> 104 /en/players/d5dd5f1f/Pierre-Emerick-Aubameyang 17 GAB -#> 105 /en/players/2bed3eab/Eric-Garcia 24 ESP -#> 106 /en/players/1cb49278/Andreas-Christensen 15 DEN -#> 107 /en/players/335fa267/Sergi-Roberto 20 ESP -#> 108 /en/players/2bef2bca/Ronald-Araujo 4 URU -#> 109 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER -#> 110 /en/players/873619c6/Sergio-Camello 34 ESP -#> 111 /en/players/66116290/Radamel-Falcao 9 COL -#> 112 /en/players/90bbd822/Alvaro-Garcia 18 ESP -#> 113 /en/players/49dbab27/Isaac-Palazon-Camacho 7 ESP -#> 114 /en/players/405f267a/Salvi 14 ESP -#> 115 /en/players/fc647b34/Oscar-Trejo 8 ARG -#> 116 /en/players/fc8b614b/Jose-Pozo 22 ESP -#> 117 /en/players/9a0408b6/Pathe-Ciss 21 SEN -#> 118 /en/players/88050721/Unai-Lopez 17 ESP -#> 119 /en/players/592f3158/Oscar-Valentin 23 ESP -#> 120 /en/players/7226539b/Fran-Garcia 3 ESP -#> 121 /en/players/274ab13c/Catena 5 ESP -#> 122 /en/players/6eaed4eb/Florian-Lejeune 19 FRA -#> 123 /en/players/cee88597/Ivan-Balliu 20 ALB -#> 124 /en/players/fc70e345/Stole-Dimitrievski 1 MKD -#> 125 /en/players/38699c72/Anthony-Lozano 9 HON -#> 126 /en/players/a300ac7e/Lucas-Perez 15 ESP -#> 127 /en/players/63b0ca6b/Alvaro-Negredo 18 ESP -#> 128 /en/players/759d8dd7/Santiago-Arzamendia 21 PAR -#> 129 /en/players/3d7e48ce/Ivan-Alejo 11 ESP -#> 130 /en/players/6f4c734d/Jose-Mari 6 ESP -#> 131 /en/players/99ea2ddd/Tomas-Alarcon 12 CHI -#> 132 /en/players/72a84002/Fali 3 ESP -#> 133 /en/players/5496cc91/Alberto-Perea 10 ESP -#> 134 /en/players/922da988/Awer-Mabil 17 AUS -#> 135 /en/players/db001fa9/Alfonso-Espino 22 URU -#> 136 /en/players/ec1a731e/Victor-Chust 32 ESP -#> 137 /en/players/02d2c436/Luis-Hernandez 23 ESP -#> 138 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP -#> 139 /en/players/80211dc5/Mamady-Diarra 29 MLI -#> 140 /en/players/6c4776b1/Jeremias-Ledesma 1 ARG -#> 141 /en/players/16aa3654/Takefusa-Kubo 14 JPN -#> 142 /en/players/f8405304/Mohamed-Ali-Cho 11 FRA -#> 143 /en/players/8e92be30/Alexander-Isak 19 SWE -#> 144 /en/players/211589b8/Jon-Karrikaburu 33 ESP -#> 145 /en/players/e2716bd0/David-Silva 21 ESP -#> 146 /en/players/200e89e1/Ander-Barrenetxea 7 ESP -#> 147 /en/players/d080ed5e/Mikel-Merino 8 ESP -#> 148 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP -#> 149 /en/players/c9e39d91/Brais-Mendez 23 ESP -#> 150 /en/players/3ee0dd59/Martin-Zubimendi 3 ESP -#> 151 /en/players/d9ba39fc/Diego-Rico 15 ESP -#> 152 /en/players/228b0d9d/Aihen-Munoz 12 ESP -#> 153 /en/players/9a64e67e/Robin-Le-Normand 24 ESP -#> 154 /en/players/5c7845f6/Igor-Zubeldia 5 ESP -#> 155 /en/players/f7dc2ae5/Aritz-Elustondo 6 ESP -#> 156 /en/players/374ee424/Alex-Remiro 1 ESP -#> 157 /en/players/37e103f8/Hugo-Duro 19 ESP -#> 158 /en/players/dc1ce4f5/Cristhian-Mosquera 33 COL -#> 159 /en/players/2a295d33/Samuel 16 BRA -#> 160 /en/players/4c2e9442/Maxi-Gomez 9 URU -#> 161 /en/players/130a7a3f/Samu-Castillejo 11 ESP -#> 162 /en/players/2c56a792/Nicolas-Gonzalez 17 ESP -#> 163 /en/players/fed17f5a/Carlos-Soler 10 ESP -#> 164 /en/players/45e17712/Dimitri-Foulquier 20 FRA -#> 165 /en/players/45d96179/Hugo-Guillamon 6 -#> 166 /en/players/b51b1b9c/Yunus-Musah 4 USA -#> 167 /en/players/106c142c/Jesus-Vazquez 32 ESP -#> 168 /en/players/8e088e04/Toni-Lato 3 ESP -#> 169 /en/players/d2110326/Mouctar-Diakhaby 12 GUI -#> 170 /en/players/15937e17/Eray-Comert 24 SUI -#> 171 /en/players/c78b352d/Thierry-Correia 2 POR -#> 172 /en/players/d4b73232/Giorgi-Mamardashvili 28 GEO -#> 173 /en/players/da76bab4/Valentin-Castellanos 9 ARG -#> 174 /en/players/13e0eb29/Samuel-Saiz 10 ESP -#> 175 /en/players/2dd7e29d/Oscar-Urena 32 ESP -#> 176 /en/players/65154df0/Rodrigo-Riquelme 17 ESP -#> 177 /en/players/a10361d2/Aleix-Garcia 14 ESP -#> 178 /en/players/f36016a5/Ramon-Terrats 8 ESP -#> 179 /en/players/5083a734/Yangel-Herrera 21 VEN -#> 180 /en/players/4acd733a/Valery-Fernandez 11 ESP -#> 181 /en/players/7e98cff1/Miguel-Gutierrez 3 ESP -#> 182 /en/players/1944818c/Yan-Couto 20 BRA -#> 183 /en/players/c3e66ffe/Arnau-Martinez 4 ESP -#> 184 /en/players/1633fc8a/Juanpe 15 ESP -#> 185 /en/players/f03f284b/David-Lopez 5 ESP -#> 186 /en/players/220c11f1/Cristhian-Stuani 7 URU -#> 187 /en/players/edc98fac/Santiago-Bueno 22 URU -#> 188 /en/players/688b96e3/Juan-Carlos 1 ESP -#> 189 /en/players/686cbe7d/Umar-Sadiq 9 NGA -#> 190 /en/players/e4738e91/Dyego-Sousa 11 POR -#> 191 /en/players/cc9256ef/Largie-Ramazani 7 BEL -#> 192 /en/players/5b93209a/Jose-Carlos-Lazo 16 ESP -#> 193 /en/players/76c2a023/Samu-Costa 23 POR -#> 194 /en/players/3e93f8cf/Inigo-Eguaras 4 ESP -#> 195 /en/players/8e010ff4/Francisco-Portillo 8 ESP -#> 196 /en/players/a8981944/Lucas-Robertone 5 ARG -#> 197 /en/players/f9a225f5/Curro 10 ESP -#> 198 /en/players/06efa9dc/Sergio-Akieme 15 ESP -#> 199 /en/players/075fe5a3/Srdjan-Babic 22 SRB -#> 200 /en/players/fd47b4f2/Rodrigo-Ely 19 BRA -#> 201 /en/players/55634fb8/Kaiky 2 BRA -#> 202 /en/players/39352da2/Arnau-Puigmal 18 ESP -#> 203 /en/players/2475cf9b/Juan-Brandariz 21 ESP -#> 204 /en/players/dabb2827/Fernando 13 ESP -#> 205 /en/players/70d74ece/Karim-Benzema 9 FRA -#> 206 /en/players/7111d552/Vinicius-Junior 20 BRA -#> 207 /en/players/c0617e2b/Dani-Ceballos 19 ESP -#> 208 /en/players/0959c2a2/Federico-Valverde 15 URU -#> 209 /en/players/6ce1f46f/Toni-Kroos 8 GER -#> 210 /en/players/4d224fe8/Casemiro 14 BRA -#> 211 /en/players/4f255115/Aurelien-Tchouameni 18 FRA -#> 212 /en/players/a39bb753/Eden-Hazard 7 BEL -#> 213 /en/players/7b9c2d84/Eduardo-Camavinga 12 FRA -#> 214 /en/players/6025fab1/Luka-Modric 10 CRO -#> 215 /en/players/3cefcaef/Ferland-Mendy 23 FRA -#> 216 /en/players/05439de2/David-Alaba 4 AUT -#> 217 /en/players/2946f9a1/Nacho 6 ESP -#> 218 /en/players/18b896d6/Antonio-Rudiger 22 GER -#> 219 /en/players/fd51b456/Lucas-Vazquez 17 ESP -#> 220 /en/players/1840e36d/Thibaut-Courtois 1 BEL -#> 221 /en/players/57be54ec/Asier-Villalibre 20 ESP -#> 222 /en/players/b418dbd4/Raul-Garcia 22 ESP -#> 223 /en/players/dc1c2fce/Alex-Berenguer 7 ESP -#> 224 /en/players/afdc14d7/Nico-Williams 11 ESP -#> 225 /en/players/6a99e0b1/Inaki-Williams 9 GHA -#> 226 /en/players/a461f098/Adu-Ares 29 ESP -#> 227 /en/players/c05dfb74/Iker-Muniain 10 ESP -#> 228 /en/players/6b5ea2f4/Gorka-Guruzeta 12 ESP -#> 229 /en/players/b0fce72c/Mikel-Vesga 6 ESP -#> 230 /en/players/bdb624a3/Oihan-Sancet 8 ESP -#> 231 /en/players/968a1c2f/Oier-Zarraga 19 ESP -#> 232 /en/players/b6e50615/Yuri-Berchiche 17 ESP -#> 233 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP -#> 234 /en/players/ab7bf91d/Daniel-Vivian 3 ESP -#> 235 /en/players/9f323c71/Oscar-de-Marcos 18 ESP -#> 236 /en/players/5dcf3e90/Unai-Simon 1 ESP -#> 237 /en/players/0cadc46d/Vedat-Muriqi 7 KVX -#> 238 /en/players/d1b060e2/Abdon-Prats 9 ESP -#> 239 /en/players/70f8e0bd/Dani-Rodriguez 14 ESP -#> 240 /en/players/a254bbe0/Antonio-Sanchez 10 ESP -#> 241 /en/players/d637fc22/Rodrigo-Battaglia 16 ARG -#> 242 /en/players/8b298f56/Clement-Grenier 8 FRA -#> 243 /en/players/bfd381b3/Iddrisu-Baba 12 GHA -#> 244 /en/players/8455ad90/Lee-Kang-in 19 KOR -#> 245 /en/players/360d70f8/Lago-Junior 11 CIV -#> 246 /en/players/808d48f3/Jaume-Costa 18 ESP -#> 247 /en/players/0f26ffd7/Copete 6 ESP -#> 248 /en/players/b857bd29/Antonio-Raillo 21 ESP -#> 249 /en/players/f2c6ac01/Martin-Valjent 24 SVK -#> 250 /en/players/5db04597/Pablo-Maffeo 15 ESP -#> 251 /en/players/58ad9383/Predrag-Rajkovic 1 SRB -#> 252 /en/players/f8eca1b6/Enes-Unal 10 TUR -#> 253 /en/players/02319ad7/Jaime-Mata 7 ESP -#> 254 /en/players/64e8ed6d/Borja-Mayoral 19 ESP -#> 255 /en/players/e2dcc60e/Moises-Parra-Gutierrez 30 ESP -#> 256 /en/players/00b28772/Nemanja-Maksimovic 20 SRB -#> 257 /en/players/a62b4888/Jaime-Seoane 8 ESP -#> 258 /en/players/58afe001/Mauro-Arambarri 18 URU -#> 259 /en/players/6c811eb7/Carles-Alena 11 ESP -#> 260 /en/players/1bda5842/Portu 9 ESP -#> 261 /en/players/fdd26d71/Fabrizio-Angileri 3 ARG -#> 262 /en/players/93090f69/Domingos-Duarte 6 POR -#> 263 /en/players/e6777e6b/Stefan-Mitrovic 23 SRB -#> 264 /en/players/a4971d84/Djene 2 TOG -#> 265 /en/players/974322dc/Iglesias 21 ESP -#> 266 /en/players/8f8c6934/David-Soria 13 ESP -#> 267 /en/players/8aafd64f/Joao-Felix 7 POR -#> 268 /en/players/01eb744d/Angel-Correa 10 ARG -#> 269 /en/players/129af0db/Alvaro-Morata 19 ESP -#> 270 /en/players/dc62b55d/Matheus-Cunha 9 BRA -#> 271 /en/players/4dbd0916/Thomas-Lemar 11 FRA -#> 272 /en/players/df69b544/Antoine-Griezmann 8 FRA -#> 273 /en/players/55126f3b/Koke 6 ESP -#> 274 /en/players/02c15616/Marcos-Llorente 14 ESP -#> 275 /en/players/162efffd/Rodrigo-De-Paul 5 ARG -#> 276 /en/players/c14bc029/Saul-Niguez 17 ESP -#> 277 /en/players/de39485a/Yannick-Carrasco 21 BEL -#> 278 /en/players/c20bdcd7/Reinildo-Mandava 23 MOZ -#> 279 /en/players/5dfc6ad5/Axel-Witsel 20 BEL -#> 280 /en/players/f6ac68c1/Stefan-Savic 15 MNE -#> 281 /en/players/23610943/Nahuel-Molina 16 ARG -#> 282 /en/players/ee8508c0/Jan-Oblak 13 SVN -#> 283 /en/players/75645f0e/Borja-Iglesias 9 ESP -#> 284 /en/players/3aa4a3be/Loren-Moron 21 ESP -#> 285 /en/players/84399660/Juanmi 7 ESP -#> 286 /en/players/85bed4ee/Rodri 28 ESP -#> 287 /en/players/ead61f73/Juan-Miranda 33 ESP -#> 288 /en/players/bece776f/Nabil-Fekir 8 FRA -#> 289 /en/players/56545648/Roberto-Gonzalez 27 ESP -#> 290 /en/players/dee86451/William-Carvalho 14 POR -#> 291 /en/players/34e393f2/Guido-Rodriguez 5 ARG -#> 292 /en/players/31f5b89b/Paul-Akouokou 4 CIV -#> 293 /en/players/16e9d0ea/Alex-Moreno 15 ESP -#> 294 /en/players/49d028db/Edgar-Gonzalez 3 ESP -#> 295 /en/players/8c725b43/German-Pezzella 16 ARG -#> 296 /en/players/a55d8df5/Aitor-Ruibal 24 ESP -#> 297 /en/players/e7d2a50b/Fran-Delgado 32 ESP -#> 298 /en/players/ea83bfa6/Rui-Silva 13 POR -#> 299 /en/players/0ae4e09a/Roger-Marti 18 ESP -#> 300 /en/players/ccbbe661/Ezequiel-Ponce 19 ARG -#> 301 /en/players/eb82b6f1/Fidel 16 ESP -#> 302 /en/players/004d185e/Tete-Morente 11 ESP -#> 303 /en/players/335039a2/Pere-Milla 10 ESP -#> 304 /en/players/5b28b2f6/Josan 17 ESP -#> 305 /en/players/608f2092/Johan-Mojica 22 COL -#> 306 /en/players/ac454a4f/Gerard-Gumbau 20 ESP -#> 307 /en/players/b907d169/Alejandro-Alfaro 32 ESP -#> 308 /en/players/11fd2b75/Omar-Mascarell 21 ESP -#> 309 /en/players/ac8b2421/Helibelton-Palacios 14 COL -#> 310 /en/players/697295b1/Pedro-Bigas 6 ESP -#> 311 /en/players/37f827ec/Enzo-Roco 3 CHI -#> 312 /en/players/4ac7608e/Diego-Gonzalez 4 ESP -#> 313 /en/players/5e95c000/John-Donald 26 ESP -#> 314 /en/players/e4346678/Edgar-Badia 13 ESP -#> 315 /en/players/6265208f/Joselu 9 ESP -#> 316 /en/players/ce8039aa/Nico-Ribaudo 21 ESP -#> 317 /en/players/41b3069f/Fernando-Calero 5 ESP -#> 318 /en/players/35d4f151/Ruben 27 ESP -#> 319 /en/players/2683eda7/Javi-Puado 7 ESP -#> 320 /en/players/070a3904/Sergi-Darder 10 ESP -#> 321 /en/players/6a8a7af8/Vinicius-Souza 12 BRA -#> 322 /en/players/283c7121/Edu-Exposito 20 ESP -#> 323 /en/players/03049c8c/Keidi-Bare 8 ALB -#> 324 /en/players/a3e4bf46/Brian-Olivan 14 ESP -#> 325 /en/players/fc076f78/Luca-Koleosho 30 ITA -#> 326 /en/players/69cbc8b6/Leandro-Cabrera 4 URU -#> 327 /en/players/bc6f5f06/Sergi-Gomez 24 ESP -#> 328 /en/players/6652cf96/Oscar-Gil 2 ESP -#> 329 /en/players/2fa2a875/Benjamin-Lecomte 13 FRA -#> 330 /en/players/873619c6/Sergio-Camello 34 ESP -#> 331 /en/players/66116290/Radamel-Falcao 9 COL -#> 332 /en/players/90bbd822/Alvaro-Garcia 18 ESP -#> 333 /en/players/a6103274/Randy-Ntekja 11 FRA -#> 334 /en/players/49dbab27/Isaac-Palazon-Camacho 7 ESP -#> 335 /en/players/405f267a/Salvi 14 ESP -#> 336 /en/players/fc647b34/Oscar-Trejo 8 ARG -#> 337 /en/players/592f3158/Oscar-Valentin 23 ESP -#> 338 /en/players/9a0408b6/Pathe-Ciss 21 SEN -#> 339 /en/players/88050721/Unai-Lopez 17 ESP -#> 340 /en/players/7106f0a0/Mario-Suarez 4 ESP -#> 341 /en/players/7226539b/Fran-Garcia 3 ESP -#> 342 /en/players/274ab13c/Catena 5 ESP -#> 343 /en/players/6eaed4eb/Florian-Lejeune 19 FRA -#> 344 /en/players/cee88597/Ivan-Balliu 20 ALB -#> 345 /en/players/fc70e345/Stole-Dimitrievski 1 MKD -#> 346 /en/players/bbf5c11b/Rafa-Mir 12 ESP -#> 347 /en/players/04e17fd5/Youssef-En-Nesyri 15 MAR -#> 348 /en/players/6e4df551/Papu-Gomez 24 ARG -#> 349 /en/players/a0b4bb3e/Isco 22 ESP -#> 350 /en/players/abe66106/Erik-Lamela 17 ARG -#> 351 /en/players/58a9a4d9/Oliver-Torres 21 ESP -#> 352 /en/players/89f951b5/Ivan-Rakitic 10 CRO -#> 353 /en/players/41f32541/Fernando 20 BRA -#> 354 /en/players/2a0c8ba4/Joan-Jordan 8 ESP -#> 355 /en/players/a08b974a/Lucas-Ocampos 5 ARG -#> 356 /en/players/81442ecb/Marcos-Acuna 19 ARG -#> 357 /en/players/e73c9bb2/Alex-Telles 3 BRA -#> 358 /en/players/3376a776/Karim-Rekik 4 NED -#> 359 /en/players/5853ac44/Tanguy-Nianzou 14 FRA -#> 360 /en/players/374d5158/Gonzalo-Montiel 2 ARG -#> 361 /en/players/f6798fc3/Yassine-Bounou 13 MAR -#> 362 /en/players/32974271/Sergi-Guardiola 16 ESP -#> 363 /en/players/8ac501f5/Monchu 8 ESP -#> 364 /en/players/c93231dc/Anuar 23 MAR -#> 365 /en/players/70107d4d/Ivan-Sanchez 21 ESP -#> 366 /en/players/0a0cc13c/Sergio-Leon 7 ESP -#> 367 /en/players/237a3851/Kike-Perez 4 ESP -#> 368 /en/players/7c4243d4/Roque-Mesa 17 ESP -#> 369 /en/players/7c388b20/Oscar-Plano 10 ESP -#> 370 /en/players/014aa7bd/Alvaro-Aguado 6 ESP -#> 371 /en/players/b0616e3d/Sergio-Escudero 18 ESP -#> 372 /en/players/4cee5954/Lucas-Olaza 12 URU -#> 373 /en/players/f6f6b6e8/Jawad-El-Yamiq 15 MAR -#> 374 /en/players/b86a64b2/Joaquin-Fernandez 24 ESP -#> 375 /en/players/60359288/Javi-Sanchez 5 ESP -#> 376 /en/players/b7c04927/Luis-Perez 2 ESP -#> 377 /en/players/9f0ea33f/Sergio-Asenjo 25 ESP -#> 378 /en/players/7c363088/Aimar-Oroz 29 ESP -#> 379 /en/players/d733aa38/Roberto-Torres 10 ESP -#> 380 /en/players/8f3565b3/Ante-Budimir 17 CRO -#> 381 /en/players/e897d8ba/Kike 18 ESP -#> 382 /en/players/5a626448/Moi-Gomez 16 ESP -#> 383 /en/players/0e4fef6e/Lucas-Torro 6 ESP -#> 384 /en/players/9939e168/Jon-Moncayola 7 ESP -#> 385 /en/players/4accb7e0/Darko-Brasanac 8 SRB -#> 386 /en/players/253a06b9/Ezequiel-Avila 9 ARG -#> 387 /en/players/5c96b017/Ruben-Garcia 14 ESP -#> 388 /en/players/a56da3ba/Juan-Cruz-Armada 3 ESP -#> 389 /en/players/3e42f707/David-Garcia 5 ESP -#> 390 /en/players/4a633cfe/Unai-Garcia 4 ESP -#> 391 /en/players/1f079188/Ruben-Pena 15 ESP -#> 392 /en/players/3a9c4b7b/Nacho-Vidal 2 ESP -#> 393 /en/players/a4995f48/Sergio-Herrera 1 ESP -#> 394 /en/players/38699c72/Anthony-Lozano 9 HON -#> 395 /en/players/a300ac7e/Lucas-Perez 15 ESP -#> 396 /en/players/efecd633/Fede-San-Emeterio 24 ESP -#> 397 /en/players/922da988/Awer-Mabil 17 AUS -#> 398 /en/players/6f4c734d/Jose-Mari 6 ESP -#> 399 /en/players/99ea2ddd/Tomas-Alarcon 12 CHI -#> 400 /en/players/72a84002/Fali 3 ESP -#> 401 /en/players/759d8dd7/Santiago-Arzamendia 21 PAR -#> 402 /en/players/80211dc5/Mamady-Diarra 29 MLI -#> 403 /en/players/3d7e48ce/Ivan-Alejo 11 ESP -#> 404 /en/players/db001fa9/Alfonso-Espino 22 URU -#> 405 /en/players/63b0ca6b/Alvaro-Negredo 18 ESP -#> 406 /en/players/ec1a731e/Victor-Chust 32 ESP -#> 407 /en/players/02d2c436/Luis-Hernandez 23 ESP -#> 408 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP -#> 409 /en/players/6c4776b1/Jeremias-Ledesma 1 ARG -#> 410 /en/players/0cadc46d/Vedat-Muriqi 7 KVX -#> 411 /en/players/8455ad90/Lee-Kang-in 19 KOR -#> 412 /en/players/70f8e0bd/Dani-Rodriguez 14 ESP -#> 413 /en/players/d1b060e2/Abdon-Prats 9 ESP -#> 414 /en/players/d637fc22/Rodrigo-Battaglia 16 ARG -#> 415 /en/players/bfd381b3/Iddrisu-Baba 12 GHA -#> 416 /en/players/8b298f56/Clement-Grenier 8 FRA -#> 417 /en/players/a254bbe0/Antonio-Sanchez 10 ESP -#> 418 /en/players/808d48f3/Jaume-Costa 18 ESP -#> 419 /en/players/0f26ffd7/Copete 6 ESP -#> 420 /en/players/360d70f8/Lago-Junior 11 CIV -#> 421 /en/players/b857bd29/Antonio-Raillo 21 ESP -#> 422 /en/players/f2c6ac01/Martin-Valjent 24 SVK -#> 423 /en/players/5db04597/Pablo-Maffeo 15 ESP -#> 424 /en/players/58ad9383/Predrag-Rajkovic 1 SRB -#> 425 /en/players/75645f0e/Borja-Iglesias 9 ESP -#> 426 /en/players/31f5b89b/Paul-Akouokou 4 CIV -#> 427 /en/players/84399660/Juanmi 7 ESP -#> 428 /en/players/85bed4ee/Rodri 28 ESP -#> 429 /en/players/56545648/Roberto-Gonzalez 27 ESP -#> 430 /en/players/bece776f/Nabil-Fekir 8 FRA -#> 431 /en/players/dee86451/William-Carvalho 14 POR -#> 432 /en/players/3aa4a3be/Loren-Moron 21 ESP -#> 433 /en/players/34e393f2/Guido-Rodriguez 5 ARG -#> 434 /en/players/16e9d0ea/Alex-Moreno 15 ESP -#> 435 /en/players/49d028db/Edgar-Gonzalez 3 ESP -#> 436 /en/players/8c725b43/German-Pezzella 16 ARG -#> 437 /en/players/a55d8df5/Aitor-Ruibal 24 ESP -#> 438 /en/players/ea83bfa6/Rui-Silva 13 POR -#> 439 /en/players/962e54cb/Goncalo-Paciencia 9 POR -#> 440 /en/players/a8f21b9f/Carles-Perez 7 ESP -#> 441 /en/players/7dcf86f6/Iago-Aspas 10 ESP -#> 442 /en/players/19709006/Oscar-Rodriguez-Arnaiz 5 ESP -#> 443 /en/players/35a6e5c7/Gabriel-Veiga 28 ESP -#> 444 /en/players/ed5c5fa3/Fran-Beltran 8 ESP -#> 445 /en/players/5e1028e5/Franco-Cervi 11 ARG -#> 446 /en/players/34269bdf/Renato-Tapia 14 PER -#> 447 /en/players/e9241b40/Luca-de-la-Torre 23 USA -#> 448 /en/players/a4b00319/Javi-Galan 17 ESP -#> 449 /en/players/be170419/Unai-Nunez 4 ESP -#> 450 /en/players/18abe173/Joseph-Aidoo 15 GHA -#> 451 /en/players/cb574619/Hugo-Mallo 2 ESP -#> 452 /en/players/853b7c48/Agustin-Marchesin 1 ARG -#> 453 /en/players/70d74ece/Karim-Benzema 9 FRA -#> 454 /en/players/7111d552/Vinicius-Junior 20 BRA -#> 455 /en/players/a39bb753/Eden-Hazard 7 BEL -#> 456 /en/players/0959c2a2/Federico-Valverde 15 URU -#> 457 /en/players/7b9c2d84/Eduardo-Camavinga 12 FRA -#> 458 /en/players/45af8a54/Marco-Asensio 11 ESP -#> 459 /en/players/4f255115/Aurelien-Tchouameni 18 FRA -#> 460 /en/players/6025fab1/Luka-Modric 10 CRO -#> 461 /en/players/c0617e2b/Dani-Ceballos 19 ESP -#> 462 /en/players/3cefcaef/Ferland-Mendy 23 FRA -#> 463 /en/players/05439de2/David-Alaba 4 AUT -#> 464 /en/players/fd51b456/Lucas-Vazquez 17 ESP -#> 465 /en/players/2784f898/Eder-Militao 3 BRA -#> 466 /en/players/4958bfb2/Dani-Carvajal 2 ESP -#> 467 /en/players/18b896d6/Antonio-Rudiger 22 GER -#> 468 /en/players/1840e36d/Thibaut-Courtois 1 BEL -#> 469 /en/players/6a99e0b1/Inaki-Williams 9 GHA -#> 470 /en/players/b7d7f3bf/Jon-Morcillo 2 ESP -#> 471 /en/players/dc1c2fce/Alex-Berenguer 7 ESP -#> 472 /en/players/968a1c2f/Oier-Zarraga 19 ESP -#> 473 /en/players/afdc14d7/Nico-Williams 11 ESP -#> 474 /en/players/37f1cf47/Ander-Capa 21 ESP -#> 475 /en/players/c05dfb74/Iker-Muniain 10 ESP -#> 476 /en/players/b418dbd4/Raul-Garcia 22 ESP -#> 477 /en/players/b0fce72c/Mikel-Vesga 6 ESP -#> 478 /en/players/bdb624a3/Oihan-Sancet 8 ESP -#> 479 /en/players/4112ace5/Unai-Vencedor-Paris 16 ESP -#> 480 /en/players/b6e50615/Yuri-Berchiche 17 ESP -#> 481 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP -#> 482 /en/players/ab7bf91d/Daniel-Vivian 3 ESP -#> 483 /en/players/9f323c71/Oscar-de-Marcos 18 ESP -#> 484 /en/players/5dcf3e90/Unai-Simon 1 ESP -#> 485 /en/players/37e103f8/Hugo-Duro 19 ESP -#> 486 /en/players/4c2e9442/Maxi-Gomez 9 URU -#> 487 /en/players/2a295d33/Samuel 16 BRA -#> 488 /en/players/130a7a3f/Samu-Castillejo 11 ESP -#> 489 /en/players/fed17f5a/Carlos-Soler 10 ESP -#> 490 /en/players/45d96179/Hugo-Guillamon 6 -#> 491 /en/players/ae86d473/Marcos-Andre 22 BRA -#> 492 /en/players/b51b1b9c/Yunus-Musah 4 USA -#> 493 /en/players/2c56a792/Nicolas-Gonzalez 17 ESP -#> 494 /en/players/106c142c/Jesus-Vazquez 32 ESP -#> 495 /en/players/8e088e04/Toni-Lato 3 ESP -#> 496 /en/players/d2110326/Mouctar-Diakhaby 12 GUI -#> 497 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA -#> 498 /en/players/c78b352d/Thierry-Correia 2 POR -#> 499 /en/players/45e17712/Dimitri-Foulquier 20 FRA -#> 500 /en/players/d4b73232/Giorgi-Mamardashvili 28 GEO -#> 501 /en/players/8aafd64f/Joao-Felix 7 POR -#> 502 /en/players/01eb744d/Angel-Correa 10 ARG -#> 503 /en/players/129af0db/Alvaro-Morata 19 ESP -#> 504 /en/players/dc62b55d/Matheus-Cunha 9 BRA -#> 505 /en/players/de39485a/Yannick-Carrasco 21 BEL -#> 506 /en/players/23610943/Nahuel-Molina 16 ARG -#> 507 /en/players/4dbd0916/Thomas-Lemar 11 FRA -#> 508 /en/players/162efffd/Rodrigo-De-Paul 5 ARG -#> 509 /en/players/02c15616/Marcos-Llorente 14 ESP -#> 510 /en/players/df69b544/Antoine-Griezmann 8 FRA -#> 511 /en/players/55126f3b/Koke 6 ESP -#> 512 /en/players/c20bdcd7/Reinildo-Mandava 23 MOZ -#> 513 /en/players/5dfc6ad5/Axel-Witsel 20 BEL -#> 514 /en/players/f6ac68c1/Stefan-Savic 15 MNE -#> 515 /en/players/f0da930c/Jose-Maria-Gimenez 2 URU -#> 516 /en/players/ee8508c0/Jan-Oblak 13 SVN -#> 517 /en/players/9c36ed83/Nicolas-Jackson 26 SEN -#> 518 /en/players/4a478107/Jose-Luis-Morales 22 ESP -#> 519 /en/players/81f0781e/Gerard-Moreno 7 ESP -#> 520 /en/players/d7553721/Giovani-Lo-Celso 17 ARG -#> 521 /en/players/518f2234/Alex-Baena 30 ESP -#> 522 /en/players/7460ca0d/Daniel-Parejo 10 ESP -#> 523 /en/players/5acc4a10/Etienne-Capoue 6 FRA -#> 524 /en/players/a6951bf8/Francis-Coquelin 19 FRA -#> 525 /en/players/540ec57b/Yeremi-Pino 21 ESP -#> 526 /en/players/b8a642fc/Samuel-Chukwueze 11 NGA -#> 527 /en/players/63f04c6c/Alfonso-Pedraza 24 ESP -#> 528 /en/players/532e1e4f/Pau-Torres 4 ESP -#> 529 /en/players/4bd414c1/Raul-Albiol 3 ESP -#> 530 /en/players/6c7762c3/Juan-Foyth 8 ARG -#> 531 /en/players/625c144a/Geronimo-Rulli 13 ARG -#> 532 /en/players/16aa3654/Takefusa-Kubo 14 JPN -#> 533 /en/players/f8405304/Mohamed-Ali-Cho 11 FRA -#> 534 /en/players/8e92be30/Alexander-Isak 19 SWE -#> 535 /en/players/c997b942/Roberto-Navarro 29 ESP -#> 536 /en/players/e2716bd0/David-Silva 21 ESP -#> 537 /en/players/068f4dec/Benat-Turrientes 27 ESP -#> 538 /en/players/d080ed5e/Mikel-Merino 8 ESP -#> 539 /en/players/211589b8/Jon-Karrikaburu 33 ESP -#> 540 /en/players/c9e39d91/Brais-Mendez 23 ESP -#> 541 /en/players/3ee0dd59/Martin-Zubimendi 3 ESP -#> 542 /en/players/228b0d9d/Aihen-Munoz 12 ESP -#> 543 /en/players/9a64e67e/Robin-Le-Normand 24 ESP -#> 544 /en/players/5c7845f6/Igor-Zubeldia 5 ESP -#> 545 /en/players/f7dc2ae5/Aritz-Elustondo 6 ESP -#> 546 /en/players/6f5f82c0/Andoni-Gorosabel 18 ESP -#> 547 /en/players/374ee424/Alex-Remiro 1 ESP -#> 548 /en/players/8d78e732/Robert-Lewandowski 9 POL -#> 549 /en/players/5ccc9672/Alejandro-Balde 28 ESP -#> 550 /en/players/3423f250/Raphinha 22 BRA -#> 551 /en/players/b19db005/Ousmane-Dembele 7 FRA -#> 552 /en/players/4601e194/Jordi-Alba 18 ESP -#> 553 /en/players/9e1035f8/Ferran-Torres 11 ESP -#> 554 /en/players/0ba976e4/Ansu-Fati 10 ESP -#> 555 /en/players/0d9b2d31/Pedri 8 ESP -#> 556 /en/players/19cae58d/Gavi 30 ESP -#> 557 /en/players/05e19d6a/Franck-Kessie 19 CIV -#> 558 /en/players/1bacc518/Frenkie-de-Jong 21 NED -#> 559 /en/players/335fa267/Sergi-Roberto 20 ESP -#> 560 /en/players/2bed3eab/Eric-Garcia 24 ESP -#> 561 /en/players/1cb49278/Andreas-Christensen 15 DEN -#> 562 /en/players/2bef2bca/Ronald-Araujo 4 URU -#> 563 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER -#> 564 /en/players/da76bab4/Valentin-Castellanos 9 ARG -#> 565 /en/players/f36016a5/Ramon-Terrats 8 ESP -#> 566 /en/players/220c11f1/Cristhian-Stuani 7 URU -#> 567 /en/players/6b21b7b5/Reinier 19 BRA -#> 568 /en/players/7e98cff1/Miguel-Gutierrez 3 ESP -#> 569 /en/players/9a76c2e9/Javi-Hernandez 16 ESP -#> 570 /en/players/1944818c/Yan-Couto 20 BRA -#> 571 /en/players/65154df0/Rodrigo-Riquelme 17 ESP -#> 572 /en/players/13e0eb29/Samuel-Saiz 10 ESP -#> 573 /en/players/5083a734/Yangel-Herrera 21 VEN -#> 574 /en/players/a10361d2/Aleix-Garcia 14 ESP -#> 575 /en/players/1633fc8a/Juanpe 15 ESP -#> 576 /en/players/f03f284b/David-Lopez 5 ESP -#> 577 /en/players/edc98fac/Santiago-Bueno 22 URU -#> 578 /en/players/688b96e3/Juan-Carlos 1 ESP -#> 579 /en/players/64e8ed6d/Borja-Mayoral 19 ESP -#> 580 /en/players/f8eca1b6/Enes-Unal 10 TUR -#> 581 /en/players/00b28772/Nemanja-Maksimovic 20 SRB -#> 582 /en/players/a62b4888/Jaime-Seoane 8 ESP -#> 583 /en/players/58afe001/Mauro-Arambarri 18 URU -#> 584 /en/players/6c811eb7/Carles-Alena 11 ESP -#> 585 /en/players/fdd26d71/Fabrizio-Angileri 3 ARG -#> 586 /en/players/93090f69/Domingos-Duarte 6 POR -#> 587 /en/players/e6777e6b/Stefan-Mitrovic 23 SRB -#> 588 /en/players/1bda5842/Portu 9 ESP -#> 589 /en/players/a4971d84/Djene 2 TOG -#> 590 /en/players/974322dc/Iglesias 21 ESP -#> 591 /en/players/8f8c6934/David-Soria 13 ESP -#> 592 /en/players/220c11f1/Cristhian-Stuani 7 URU -#> 593 /en/players/da76bab4/Valentin-Castellanos 9 ARG -#> 594 /en/players/5f21b94c/Joel-Roca 33 ESP -#> 595 /en/players/2dd7e29d/Oscar-Urena 32 ESP -#> 596 /en/players/6b21b7b5/Reinier 19 BRA -#> 597 /en/players/f03f284b/David-Lopez 5 ESP -#> 598 /en/players/a10361d2/Aleix-Garcia 14 ESP -#> 599 /en/players/5083a734/Yangel-Herrera 21 VEN -#> 600 /en/players/f36016a5/Ramon-Terrats 8 ESP -#> 601 /en/players/13e0eb29/Samuel-Saiz 10 ESP -#> 602 /en/players/7e98cff1/Miguel-Gutierrez 3 ESP -#> 603 /en/players/9a76c2e9/Javi-Hernandez 16 ESP -#> 604 /en/players/1633fc8a/Juanpe 15 ESP -#> 605 /en/players/edc98fac/Santiago-Bueno 22 URU -#> 606 /en/players/1944818c/Yan-Couto 20 BRA -#> 607 /en/players/688b96e3/Juan-Carlos 1 ESP -#> 608 /en/players/a8f21b9f/Carles-Perez 7 ESP -#> 609 /en/players/3ca6106c/Augusto-Solari 21 ARG -#> 610 /en/players/7dcf86f6/Iago-Aspas 10 ESP -#> 611 /en/players/5e1028e5/Franco-Cervi 11 ARG -#> 612 /en/players/3521abfe/Carlos-Dominguez 26 ESP -#> 613 /en/players/ed5c5fa3/Fran-Beltran 8 ESP -#> 614 /en/players/19709006/Oscar-Rodriguez-Arnaiz 5 ESP -#> 615 /en/players/962e54cb/Goncalo-Paciencia 9 POR -#> 616 /en/players/34269bdf/Renato-Tapia 14 PER -#> 617 /en/players/35a6e5c7/Gabriel-Veiga 28 ESP -#> 618 /en/players/a4b00319/Javi-Galan 17 ESP -#> 619 /en/players/be170419/Unai-Nunez 4 ESP -#> 620 /en/players/18abe173/Joseph-Aidoo 15 GHA -#> 621 /en/players/cb574619/Hugo-Mallo 2 ESP -#> 622 /en/players/853b7c48/Agustin-Marchesin 1 ARG -#> 623 /en/players/75645f0e/Borja-Iglesias 9 ESP -#> 624 /en/players/15d0c248/Luiz-Felipe 19 ITA -#> 625 /en/players/84399660/Juanmi 7 ESP -#> 626 /en/players/8059806f/Luiz-Henrique 11 BRA -#> 627 /en/players/85bed4ee/Rodri 28 ESP -#> 628 /en/players/a6de370d/Sergio-Canales 10 ESP -#> 629 /en/players/bece776f/Nabil-Fekir 8 FRA -#> 630 /en/players/ef322658/Andres-Guardado 18 MEX -#> 631 /en/players/dee86451/William-Carvalho 14 POR -#> 632 /en/players/34e393f2/Guido-Rodriguez 5 ARG -#> 633 /en/players/16e9d0ea/Alex-Moreno 15 ESP -#> 634 /en/players/49d028db/Edgar-Gonzalez 3 ESP -#> 635 /en/players/8c725b43/German-Pezzella 16 ARG -#> 636 /en/players/a55d8df5/Aitor-Ruibal 24 ESP -#> 637 /en/players/ea83bfa6/Rui-Silva 13 POR -#> 638 /en/players/253a06b9/Ezequiel-Avila 9 ARG -#> 639 /en/players/8f3565b3/Ante-Budimir 17 CRO -#> 640 /en/players/7c363088/Aimar-Oroz 29 ESP -#> 641 /en/players/e897d8ba/Kike 18 ESP -#> 642 /en/players/5a626448/Moi-Gomez 16 ESP -#> 643 /en/players/0e4fef6e/Lucas-Torro 6 ESP -#> 644 /en/players/5c96b017/Ruben-Garcia 14 ESP -#> 645 /en/players/9939e168/Jon-Moncayola 7 ESP -#> 646 /en/players/1f079188/Ruben-Pena 15 ESP -#> 647 /en/players/aad53e64/Kike-Barja 11 ESP -#> 648 /en/players/a56da3ba/Juan-Cruz-Armada 3 ESP -#> 649 /en/players/3e42f707/David-Garcia 5 ESP -#> 650 /en/players/4a633cfe/Unai-Garcia 4 ESP -#> 651 /en/players/ffacd3d5/Manu-Sanchez 20 ESP -#> 652 /en/players/3a9c4b7b/Nacho-Vidal 2 ESP -#> 653 /en/players/a4995f48/Sergio-Herrera 1 ESP -#> 654 /en/players/ccbbe661/Ezequiel-Ponce 19 ARG -#> 655 /en/players/d49f3e6b/Lucas-Boye 9 ARG -#> 656 /en/players/0ae4e09a/Roger-Marti 18 ESP -#> 657 /en/players/335039a2/Pere-Milla 10 ESP -#> 658 /en/players/004d185e/Tete-Morente 11 ESP -#> 659 /en/players/ac454a4f/Gerard-Gumbau 20 ESP -#> 660 /en/players/0b2c8585/Raul-Guti 8 ESP -#> 661 /en/players/11fd2b75/Omar-Mascarell 21 ESP -#> 662 /en/players/41fb0f4e/Domingos-Quina 12 POR -#> 663 /en/players/85dace26/Alex-Collado 15 ESP -#> 664 /en/players/608f2092/Johan-Mojica 22 COL -#> 665 /en/players/697295b1/Pedro-Bigas 6 ESP -#> 666 /en/players/37f827ec/Enzo-Roco 3 CHI -#> 667 /en/players/ff800ed8/Pol-Lirola 24 ESP -#> 668 /en/players/ac8b2421/Helibelton-Palacios 14 COL -#> 669 /en/players/e4346678/Edgar-Badia 13 ESP -#> 670 /en/players/f8405304/Mohamed-Ali-Cho 11 FRA -#> 671 /en/players/211589b8/Jon-Karrikaburu 33 ESP -#> 672 /en/players/16aa3654/Takefusa-Kubo 14 JPN -#> 673 /en/players/200e89e1/Ander-Barrenetxea 7 ESP -#> 674 /en/players/e2716bd0/David-Silva 21 ESP -#> 675 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP -#> 676 /en/players/d080ed5e/Mikel-Merino 8 ESP -#> 677 /en/players/c9e39d91/Brais-Mendez 23 ESP -#> 678 /en/players/3ee0dd59/Martin-Zubimendi 3 ESP -#> 679 /en/players/228b0d9d/Aihen-Munoz 12 ESP -#> 680 /en/players/9a64e67e/Robin-Le-Normand 24 ESP -#> 681 /en/players/5c7845f6/Igor-Zubeldia 5 ESP -#> 682 /en/players/f7dc2ae5/Aritz-Elustondo 6 ESP -#> 683 /en/players/6f5f82c0/Andoni-Gorosabel 18 ESP -#> 684 /en/players/44150beb/Jon-Pacheco 20 ESP -#> 685 /en/players/374ee424/Alex-Remiro 1 ESP -#> 686 /en/players/66116290/Radamel-Falcao 9 COL -#> 687 /en/players/a6103274/Randy-Ntekja 11 FRA -#> 688 /en/players/90bbd822/Alvaro-Garcia 18 ESP -#> 689 /en/players/405f267a/Salvi 14 ESP -#> 690 /en/players/d8712bf9/Bebe 10 CPV -#> 691 /en/players/fc647b34/Oscar-Trejo 8 ARG -#> 692 /en/players/5ae499d0/Santi-Comesana 6 ESP -#> 693 /en/players/88050721/Unai-Lopez 17 ESP -#> 694 /en/players/873619c6/Sergio-Camello 34 ESP -#> 695 /en/players/592f3158/Oscar-Valentin 23 ESP -#> 696 /en/players/fc8b614b/Jose-Pozo 22 ESP -#> 697 /en/players/7226539b/Fran-Garcia 3 ESP -#> 698 /en/players/274ab13c/Catena 5 ESP -#> 699 /en/players/9a0408b6/Pathe-Ciss 21 SEN -#> 700 /en/players/cee88597/Ivan-Balliu 20 ALB -#> 701 /en/players/fc70e345/Stole-Dimitrievski 1 MKD -#> 702 /en/players/0cadc46d/Vedat-Muriqi 7 KVX -#> 703 /en/players/d1b060e2/Abdon-Prats 9 ESP -#> 704 /en/players/8455ad90/Lee-Kang-in 19 KOR -#> 705 /en/players/38b0cf42/Javier-Llabres 34 ESP -#> 706 /en/players/70f8e0bd/Dani-Rodriguez 14 ESP -#> 707 /en/players/91f7631f/Inigo-Ruiz-de-Galarreta 4 ESP -#> 708 /en/players/d637fc22/Rodrigo-Battaglia 16 ARG -#> 709 /en/players/8b298f56/Clement-Grenier 8 FRA -#> 710 /en/players/a254bbe0/Antonio-Sanchez 10 ESP -#> 711 /en/players/808d48f3/Jaume-Costa 18 ESP -#> 712 /en/players/0f26ffd7/Copete 6 ESP -#> 713 /en/players/b857bd29/Antonio-Raillo 21 ESP -#> 714 /en/players/f2c6ac01/Martin-Valjent 24 SVK -#> 715 /en/players/5db04597/Pablo-Maffeo 15 ESP -#> 716 /en/players/58ad9383/Predrag-Rajkovic 1 SRB -#> 717 /en/players/686cbe7d/Umar-Sadiq 9 NGA -#> 718 /en/players/cc9256ef/Largie-Ramazani 7 BEL -#> 719 /en/players/35f6db55/Leo-Baptistao 12 BRA -#> 720 /en/players/a8981944/Lucas-Robertone 5 ARG -#> 721 /en/players/f9a225f5/Curro 10 ESP -#> 722 /en/players/76c2a023/Samu-Costa 23 POR -#> 723 /en/players/3e93f8cf/Inigo-Eguaras 4 ESP -#> 724 /en/players/60abea75/Cesar-de-la-Hoz 6 ESP -#> 725 /en/players/06efa9dc/Sergio-Akieme 15 ESP -#> 726 /en/players/3c16d927/Alejandro-Pozo-Pozo 17 ESP -#> 727 /en/players/1545cf15/Houboulang-Mendes 24 GNB -#> 728 /en/players/075fe5a3/Srdjan-Babic 22 SRB -#> 729 /en/players/fd47b4f2/Rodrigo-Ely 19 BRA -#> 730 /en/players/55634fb8/Kaiky 2 BRA -#> 731 /en/players/2475cf9b/Juan-Brandariz 21 ESP -#> 732 /en/players/dabb2827/Fernando 13 ESP -#> 733 /en/players/abe66106/Erik-Lamela 17 ARG -#> 734 /en/players/04e17fd5/Youssef-En-Nesyri 15 MAR -#> 735 /en/players/bbf5c11b/Rafa-Mir 12 ESP -#> 736 /en/players/58a9a4d9/Oliver-Torres 21 ESP -#> 737 /en/players/fe641c1a/Thomas-Delaney 18 DEN -#> 738 /en/players/6e4df551/Papu-Gomez 24 ARG -#> 739 /en/players/41f32541/Fernando 20 BRA -#> 740 /en/players/2a0c8ba4/Joan-Jordan 8 ESP -#> 741 /en/players/a0b4bb3e/Isco 22 ESP -#> 742 /en/players/e73c9bb2/Alex-Telles 3 BRA -#> 743 /en/players/3376a776/Karim-Rekik 4 NED -#> 744 /en/players/2dce876a/Carmona 30 ESP -#> 745 /en/players/5853ac44/Tanguy-Nianzou 14 FRA -#> 746 /en/players/3f10bd22/Jesus-Navas 16 ESP -#> 747 /en/players/a08b974a/Lucas-Ocampos 5 ARG -#> 748 /en/players/f6798fc3/Yassine-Bounou 13 MAR -#> 749 /en/players/64e8ed6d/Borja-Mayoral 19 ESP -#> 750 /en/players/2bea832e/Juanmi-Latasa 14 ESP -#> 751 /en/players/f8eca1b6/Enes-Unal 10 TUR -#> 752 /en/players/02319ad7/Jaime-Mata 7 ESP -#> 753 /en/players/1bda5842/Portu 9 ESP -#> 754 /en/players/58afe001/Mauro-Arambarri 18 URU -#> 755 /en/players/a62b4888/Jaime-Seoane 8 ESP -#> 756 /en/players/00b28772/Nemanja-Maksimovic 20 SRB -#> 757 /en/players/6c811eb7/Carles-Alena 11 ESP -#> 758 /en/players/852ddfb8/Gaston-Alvarez 4 URU -#> 759 /en/players/a4971d84/Djene 2 TOG -#> 760 /en/players/93090f69/Domingos-Duarte 6 POR -#> 761 /en/players/974322dc/Iglesias 21 ESP -#> 762 /en/players/8f8c6934/David-Soria 13 ESP -#> 763 /en/players/4a478107/Jose-Luis-Morales 22 ESP -#> 764 /en/players/9c36ed83/Nicolas-Jackson 15 SEN -#> 765 /en/players/81f0781e/Gerard-Moreno 7 ESP -#> 766 /en/players/d7553721/Giovani-Lo-Celso 17 ARG -#> 767 /en/players/518f2234/Alex-Baena 16 ESP -#> 768 /en/players/7460ca0d/Daniel-Parejo 10 ESP -#> 769 /en/players/a6951bf8/Francis-Coquelin 19 FRA -#> 770 /en/players/5acc4a10/Etienne-Capoue 6 FRA -#> 771 /en/players/540ec57b/Yeremi-Pino 21 ESP -#> 772 /en/players/b8a642fc/Samuel-Chukwueze 11 NGA -#> 773 /en/players/63f04c6c/Alfonso-Pedraza 24 ESP -#> 774 /en/players/532e1e4f/Pau-Torres 4 ESP -#> 775 /en/players/4bd414c1/Raul-Albiol 3 ESP -#> 776 /en/players/6c7762c3/Juan-Foyth 8 ARG -#> 777 /en/players/e5d01ecf/Kiko-Femenia 2 ESP -#> 778 /en/players/625c144a/Geronimo-Rulli 13 ARG -#> 779 /en/players/8d78e732/Robert-Lewandowski 9 POL -#> 780 /en/players/b19db005/Ousmane-Dembele 7 FRA -#> 781 /en/players/9e1035f8/Ferran-Torres 11 ESP -#> 782 /en/players/3423f250/Raphinha 22 BRA -#> 783 /en/players/0ba976e4/Ansu-Fati 10 ESP -#> 784 /en/players/0d9b2d31/Pedri 8 ESP -#> 785 /en/players/5ab0ea87/Sergio-Busquets 5 ESP -#> 786 /en/players/05e19d6a/Franck-Kessie 19 CIV -#> 787 /en/players/19cae58d/Gavi 30 ESP -#> 788 /en/players/1bacc518/Frenkie-de-Jong 21 NED -#> 789 /en/players/5ccc9672/Alejandro-Balde 28 ESP -#> 790 /en/players/2bed3eab/Eric-Garcia 24 ESP -#> 791 /en/players/2bef2bca/Ronald-Araujo 4 URU -#> 792 /en/players/335fa267/Sergi-Roberto 20 ESP -#> 793 /en/players/4d1666ff/Jules-Kounde 23 FRA -#> 794 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER -#> 795 /en/players/32974271/Sergi-Guardiola 16 ESP -#> 796 /en/players/0a0cc13c/Sergio-Leon 7 ESP -#> 797 /en/players/c93231dc/Anuar 23 MAR -#> 798 /en/players/6091cf45/Roberto-Arroyo 30 ESP -#> 799 /en/players/014aa7bd/Alvaro-Aguado 6 ESP -#> 800 /en/players/7c4243d4/Roque-Mesa 17 ESP -#> 801 /en/players/237a3851/Kike-Perez 4 ESP -#> 802 /en/players/70107d4d/Ivan-Sanchez 21 ESP -#> 803 /en/players/636eae97/Toni-Villa 19 ESP -#> 804 /en/players/8ac501f5/Monchu 8 ESP -#> 805 /en/players/7c388b20/Oscar-Plano 10 ESP -#> 806 /en/players/b0616e3d/Sergio-Escudero 18 ESP -#> 807 /en/players/60359288/Javi-Sanchez 5 ESP -#> 808 /en/players/b86a64b2/Joaquin-Fernandez 24 ESP -#> 809 /en/players/b7c04927/Luis-Perez 2 ESP -#> 810 /en/players/8fae77ea/Jordi-Masip 1 ESP -#> 811 /en/players/6265208f/Joselu 9 ESP -#> 812 /en/players/2683eda7/Javi-Puado 7 ESP -#> 813 /en/players/ce8039aa/Nico-Ribaudo 21 ESP -#> 814 /en/players/070a3904/Sergi-Darder 10 ESP -#> 815 /en/players/283c7121/Edu-Exposito 20 ESP -#> 816 /en/players/0e5ddc7c/Dani-Gomez 19 ESP -#> 817 /en/players/35d4f151/Ruben 27 ESP -#> 818 /en/players/6a8a7af8/Vinicius-Souza 12 BRA -#> 819 /en/players/03049c8c/Keidi-Bare 8 ALB -#> 820 /en/players/a3e4bf46/Brian-Olivan 14 ESP -#> 821 /en/players/69cbc8b6/Leandro-Cabrera 4 URU -#> 822 /en/players/41b3069f/Fernando-Calero 5 ESP -#> 823 /en/players/6652cf96/Oscar-Gil 2 ESP -#> 824 /en/players/2fa2a875/Benjamin-Lecomte 13 FRA -#> 825 /en/players/70d74ece/Karim-Benzema 9 FRA -#> 826 /en/players/7111d552/Vinicius-Junior 20 BRA -#> 827 /en/players/0959c2a2/Federico-Valverde 15 URU -#> 828 /en/players/8f5e92a6/Rodrygo 21 BRA -#> 829 /en/players/6ce1f46f/Toni-Kroos 8 GER -#> 830 /en/players/c0617e2b/Dani-Ceballos 19 ESP -#> 831 /en/players/4f255115/Aurelien-Tchouameni 18 FRA -#> 832 /en/players/6025fab1/Luka-Modric 10 CRO -#> 833 /en/players/7b9c2d84/Eduardo-Camavinga 12 FRA -#> 834 /en/players/05439de2/David-Alaba 4 AUT -#> 835 /en/players/18b896d6/Antonio-Rudiger 22 GER -#> 836 /en/players/2784f898/Eder-Militao 3 BRA -#> 837 /en/players/fd51b456/Lucas-Vazquez 17 ESP -#> 838 /en/players/4958bfb2/Dani-Carvajal 2 ESP -#> 839 /en/players/1840e36d/Thibaut-Courtois 1 BEL -#> 840 /en/players/63b0ca6b/Alvaro-Negredo 18 ESP -#> 841 /en/players/38699c72/Anthony-Lozano 9 HON -#> 842 /en/players/a300ac7e/Lucas-Perez 15 ESP -#> 843 /en/players/759d8dd7/Santiago-Arzamendia 21 PAR -#> 844 /en/players/6f4c734d/Jose-Mari 6 ESP -#> 845 /en/players/efecd633/Fede-San-Emeterio 24 ESP -#> 846 /en/players/e8deefd6/Blanco 36 -#> 847 /en/players/aa677a35/Alex-Fernandez 8 ESP -#> 848 /en/players/3d7e48ce/Ivan-Alejo 11 ESP -#> 849 /en/players/db001fa9/Alfonso-Espino 22 URU -#> 850 /en/players/922da988/Awer-Mabil 17 AUS -#> 851 /en/players/72a84002/Fali 3 ESP -#> 852 /en/players/ec1a731e/Victor-Chust 32 ESP -#> 853 /en/players/02d2c436/Luis-Hernandez 23 ESP -#> 854 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP -#> 855 /en/players/6c4776b1/Jeremias-Ledesma 1 ARG -#> 856 /en/players/6a99e0b1/Inaki-Williams 9 GHA -#> 857 /en/players/6b5ea2f4/Gorka-Guruzeta 12 ESP -#> 858 /en/players/dc1c2fce/Alex-Berenguer 7 ESP -#> 859 /en/players/b7d7f3bf/Jon-Morcillo 2 ESP -#> 860 /en/players/afdc14d7/Nico-Williams 11 ESP -#> 861 /en/players/b418dbd4/Raul-Garcia 22 ESP -#> 862 /en/players/c05dfb74/Iker-Muniain 10 ESP -#> 863 /en/players/b0fce72c/Mikel-Vesga 6 ESP -#> 864 /en/players/bdb624a3/Oihan-Sancet 8 ESP -#> 865 /en/players/240d3a0b/Dani-Garcia 14 ESP -#> 866 /en/players/59b7d823/Inigo-Lekue 15 ESP -#> 867 /en/players/b906757a/Aitor-Paredes 31 ESP -#> 868 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP -#> 869 /en/players/ab7bf91d/Daniel-Vivian 3 ESP -#> 870 /en/players/9f323c71/Oscar-de-Marcos 18 ESP -#> 871 /en/players/5dcf3e90/Unai-Simon 1 ESP -#> 872 /en/players/ae86d473/Marcos-Andre 22 BRA -#> 873 /en/players/4c2e9442/Maxi-Gomez 9 URU -#> 874 /en/players/2a295d33/Samuel 16 BRA -#> 875 /en/players/130a7a3f/Samu-Castillejo 11 ESP -#> 876 /en/players/3d79a68c/Francisco-Perez 29 ESP -#> 877 /en/players/fed17f5a/Carlos-Soler 10 ESP -#> 878 /en/players/45d96179/Hugo-Guillamon 6 -#> 879 /en/players/2c56a792/Nicolas-Gonzalez 17 ESP -#> 880 /en/players/b51b1b9c/Yunus-Musah 4 USA -#> 881 /en/players/8e088e04/Toni-Lato 3 ESP -#> 882 /en/players/c487901c/Diego-Lopez 40 ESP -#> 883 /en/players/d2110326/Mouctar-Diakhaby 12 GUI -#> 884 /en/players/15937e17/Eray-Comert 24 SUI -#> 885 /en/players/c78b352d/Thierry-Correia 2 POR -#> 886 /en/players/45e17712/Dimitri-Foulquier 20 FRA -#> 887 /en/players/d4b73232/Giorgi-Mamardashvili 28 GEO -#> 888 /en/players/8aafd64f/Joao-Felix 7 POR -#> 889 /en/players/dc62b55d/Matheus-Cunha 9 BRA -#> 890 /en/players/129af0db/Alvaro-Morata 19 ESP -#> 891 /en/players/01eb744d/Angel-Correa 10 ARG -#> 892 /en/players/55126f3b/Koke 6 ESP -#> 893 /en/players/cce181df/Geoffrey-Kondogbia 4 CTA -#> 894 /en/players/df69b544/Antoine-Griezmann 8 FRA -#> 895 /en/players/162efffd/Rodrigo-De-Paul 5 ARG -#> 896 /en/players/4dbd0916/Thomas-Lemar 11 FRA -#> 897 /en/players/c14bc029/Saul-Niguez 17 ESP -#> 898 /en/players/de39485a/Yannick-Carrasco 21 BEL -#> 899 /en/players/c20bdcd7/Reinildo-Mandava 23 MOZ -#> 900 /en/players/5dfc6ad5/Axel-Witsel 20 BEL -#> 901 /en/players/f0da930c/Jose-Maria-Gimenez 2 URU -#> 902 /en/players/02c15616/Marcos-Llorente 14 ESP -#> 903 /en/players/ee8508c0/Jan-Oblak 13 SVN -#> 904 /en/players/7dcf86f6/Iago-Aspas 10 ESP -#> 905 /en/players/a8f21b9f/Carles-Perez 7 ESP -#> 906 /en/players/f553b2b3/Jorgen-Strand-Larsen 18 NOR -#> 907 /en/players/19709006/Oscar-Rodriguez-Arnaiz 5 ESP -#> 908 /en/players/3ca6106c/Augusto-Solari 21 ARG -#> 909 /en/players/ed5c5fa3/Fran-Beltran 8 ESP -#> 910 /en/players/e9241b40/Luca-de-la-Torre 23 USA -#> 911 /en/players/5e1028e5/Franco-Cervi 11 ARG -#> 912 /en/players/34269bdf/Renato-Tapia 14 PER -#> 913 /en/players/35a6e5c7/Gabriel-Veiga 28 ESP -#> 914 /en/players/a4b00319/Javi-Galan 17 ESP -#> 915 /en/players/be170419/Unai-Nunez 4 ESP -#> 916 /en/players/18abe173/Joseph-Aidoo 15 GHA -#> 917 /en/players/cb574619/Hugo-Mallo 2 ESP -#> 918 /en/players/056269d7/Oscar-Mingueza 3 ESP -#> 919 /en/players/853b7c48/Agustin-Marchesin 1 ARG -#> 920 /en/players/38699c72/Anthony-Lozano 9 HON -#> 921 /en/players/a300ac7e/Lucas-Perez 15 ESP -#> 922 /en/players/e8deefd6/Blanco 36 -#> 923 /en/players/18017beb/Alvaro-Gimenez 19 ESP -#> 924 /en/players/2e3995cd/Brian-Ocampo 14 URU -#> 925 /en/players/aa677a35/Alex-Fernandez 8 ESP -#> 926 /en/players/99ea2ddd/Tomas-Alarcon 12 CHI -#> 927 /en/players/3d7e48ce/Ivan-Alejo 11 ESP -#> 928 /en/players/19b776e9/Ruben-Sobrino 7 ESP -#> 929 /en/players/efecd633/Fede-San-Emeterio 24 ESP -#> 930 /en/players/0da6a13e/Theo-Bongonda 10 COD -#> 931 /en/players/db001fa9/Alfonso-Espino 22 URU -#> 932 /en/players/ec1a731e/Victor-Chust 32 ESP -#> 933 /en/players/02d2c436/Luis-Hernandez 23 ESP -#> 934 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP -#> 935 /en/players/6c4776b1/Jeremias-Ledesma 1 ARG -#> 936 /en/players/0cadc46d/Vedat-Muriqi 7 KVX -#> 937 /en/players/8455ad90/Lee-Kang-in 19 KOR -#> 938 /en/players/70f8e0bd/Dani-Rodriguez 14 ESP -#> 939 /en/players/d1b060e2/Abdon-Prats 9 ESP -#> 940 /en/players/d637fc22/Rodrigo-Battaglia 16 ARG -#> 941 /en/players/91f7631f/Inigo-Ruiz-de-Galarreta 4 ESP -#> 942 /en/players/a254bbe0/Antonio-Sanchez 10 ESP -#> 943 /en/players/8b298f56/Clement-Grenier 8 FRA -#> 944 /en/players/808d48f3/Jaume-Costa 18 ESP -#> 945 /en/players/0f26ffd7/Copete 6 ESP -#> 946 /en/players/b857bd29/Antonio-Raillo 21 ESP -#> 947 /en/players/f2c6ac01/Martin-Valjent 24 SVK -#> 948 /en/players/5db04597/Pablo-Maffeo 15 ESP -#> 949 /en/players/58ad9383/Predrag-Rajkovic 1 SRB -#> 950 /en/players/da76bab4/Valentin-Castellanos 9 ARG -#> 951 /en/players/0bc4e720/Manu-Vallejo 25 ESP -#> 952 /en/players/65154df0/Rodrigo-Riquelme 17 ESP -#> 953 /en/players/13e0eb29/Samuel-Saiz 10 ESP -#> 954 /en/players/6b21b7b5/Reinier 19 BRA -#> 955 /en/players/636eae97/Toni-Villa 12 ESP -#> 956 /en/players/7e98cff1/Miguel-Gutierrez 3 ESP -#> 957 /en/players/4242011c/Bernardo-Espinosa 2 COL -#> 958 /en/players/a10361d2/Aleix-Garcia 14 ESP -#> 959 /en/players/4b511457/Oriol-Romeu 18 ESP -#> 960 /en/players/c3e66ffe/Arnau-Martinez 4 ESP -#> 961 /en/players/1633fc8a/Juanpe 15 ESP -#> 962 /en/players/f03f284b/David-Lopez 5 ESP -#> 963 /en/players/9a76c2e9/Javi-Hernandez 16 ESP -#> 964 /en/players/edc98fac/Santiago-Bueno 22 URU -#> 965 /en/players/688b96e3/Juan-Carlos 1 ESP -#> 966 /en/players/70d74ece/Karim-Benzema 9 FRA -#> 967 /en/players/7111d552/Vinicius-Junior 20 BRA -#> 968 /en/players/8f5e92a6/Rodrygo 21 BRA -#> 969 /en/players/c0617e2b/Dani-Ceballos 19 ESP -#> 970 /en/players/7b9c2d84/Eduardo-Camavinga 12 FRA -#> 971 /en/players/0959c2a2/Federico-Valverde 15 URU -#> 972 /en/players/4f255115/Aurelien-Tchouameni 18 FRA -#> 973 /en/players/6025fab1/Luka-Modric 10 CRO -#> 974 /en/players/6ce1f46f/Toni-Kroos 8 GER -#> 975 /en/players/3cefcaef/Ferland-Mendy 23 FRA -#> 976 /en/players/05439de2/David-Alaba 4 AUT -#> 977 /en/players/2784f898/Eder-Militao 3 BRA -#> 978 /en/players/4958bfb2/Dani-Carvajal 2 ESP -#> 979 /en/players/18b896d6/Antonio-Rudiger 22 GER -#> 980 /en/players/1840e36d/Thibaut-Courtois 1 BEL -#> 981 /en/players/75645f0e/Borja-Iglesias 9 ESP -#> 982 /en/players/84399660/Juanmi 7 ESP -#> 983 /en/players/4c5b14d2/Joaquin 17 ESP -#> 984 /en/players/a6de370d/Sergio-Canales 10 ESP -#> 985 /en/players/bece776f/Nabil-Fekir 8 FRA -#> 986 /en/players/8059806f/Luiz-Henrique 11 BRA -#> 987 /en/players/ef322658/Andres-Guardado 18 MEX -#> 988 /en/players/d87e2cae/Willian-Jose 12 BRA -#> 989 /en/players/34e393f2/Guido-Rodriguez 5 ARG -#> 990 /en/players/16e9d0ea/Alex-Moreno 15 ESP -#> 991 /en/players/49d028db/Edgar-Gonzalez 3 ESP -#> 992 /en/players/15d0c248/Luiz-Felipe 19 ITA -#> 993 /en/players/fbbb9269/Youssouf-Sabaly 23 SEN -#> 994 /en/players/a55d8df5/Aitor-Ruibal 24 ESP -#> 995 /en/players/ea83bfa6/Rui-Silva 13 POR -#> 996 /en/players/e92cd3f7/Alexander-Sorloth 19 NOR -#> 997 /en/players/686cbe7d/Umar-Sadiq 25 NGA -#> 998 /en/players/f8405304/Mohamed-Ali-Cho 11 FRA -#> 999 /en/players/200e89e1/Ander-Barrenetxea 7 ESP -#> 1000 /en/players/e2716bd0/David-Silva 21 ESP -#> 1001 /en/players/16aa3654/Takefusa-Kubo 14 JPN -#> 1002 /en/players/d080ed5e/Mikel-Merino 8 ESP -#> 1003 /en/players/c9e39d91/Brais-Mendez 23 ESP -#> 1004 /en/players/3ee0dd59/Martin-Zubimendi 3 ESP -#> 1005 /en/players/228b0d9d/Aihen-Munoz 12 ESP -#> 1006 /en/players/9a64e67e/Robin-Le-Normand 24 ESP -#> 1007 /en/players/5c7845f6/Igor-Zubeldia 5 ESP -#> 1008 /en/players/f7dc2ae5/Aritz-Elustondo 6 ESP -#> 1009 /en/players/6f5f82c0/Andoni-Gorosabel 18 ESP -#> 1010 /en/players/5fa714d5/Alex-Sola 2 ESP -#> 1011 /en/players/374ee424/Alex-Remiro 1 ESP -#> 1012 /en/players/8aafd64f/Joao-Felix 7 POR -#> 1013 /en/players/129af0db/Alvaro-Morata 19 ESP -#> 1014 /en/players/01eb744d/Angel-Correa 10 ARG -#> 1015 /en/players/de39485a/Yannick-Carrasco 21 BEL -#> 1016 /en/players/555f3a0b/Mario-Hermoso 22 ESP -#> 1017 /en/players/02c15616/Marcos-Llorente 14 ESP -#> 1018 /en/players/c14bc029/Saul-Niguez 17 ESP -#> 1019 /en/players/cce181df/Geoffrey-Kondogbia 4 CTA -#> 1020 /en/players/162efffd/Rodrigo-De-Paul 5 ARG -#> 1021 /en/players/df69b544/Antoine-Griezmann 8 FRA -#> 1022 /en/players/55126f3b/Koke 6 ESP -#> 1023 /en/players/c20bdcd7/Reinildo-Mandava 23 MOZ -#> 1024 /en/players/5dfc6ad5/Axel-Witsel 20 BEL -#> 1025 /en/players/f0da930c/Jose-Maria-Gimenez 2 URU -#> 1026 /en/players/ee8508c0/Jan-Oblak 13 SVN -#> 1027 /en/players/3f034750/Ivo-Grbic 1 CRO -#> 1028 /en/players/04e17fd5/Youssef-En-Nesyri 15 MAR -#> 1029 /en/players/cc83b74d/Kasper-Dolberg 5 DEN -#> 1030 /en/players/a0b4bb3e/Isco 22 ESP -#> 1031 /en/players/6e4df551/Papu-Gomez 24 ARG -#> 1032 /en/players/abe66106/Erik-Lamela 17 ARG -#> 1033 /en/players/89f951b5/Ivan-Rakitic 10 CRO -#> 1034 /en/players/0076ab7f/Nemanja-Gudelj 6 SRB -#> 1035 /en/players/2dce876a/Carmona 30 ESP -#> 1036 /en/players/2a0c8ba4/Joan-Jordan 8 ESP -#> 1037 /en/players/fe641c1a/Thomas-Delaney 18 DEN -#> 1038 /en/players/81442ecb/Marcos-Acuna 19 ARG -#> 1039 /en/players/5853ac44/Tanguy-Nianzou 14 FRA -#> 1040 /en/players/41f32541/Fernando 20 BRA -#> 1041 /en/players/374d5158/Gonzalo-Montiel 2 ARG -#> 1042 /en/players/4e219ad2/Suso 7 ESP -#> 1043 /en/players/f6798fc3/Yassine-Bounou 13 MAR -#> 1044 /en/players/8d78e732/Robert-Lewandowski 9 POL -#> 1045 /en/players/0ba976e4/Ansu-Fati 10 ESP -#> 1046 /en/players/b19db005/Ousmane-Dembele 7 FRA -#> 1047 /en/players/9e1035f8/Ferran-Torres 11 ESP -#> 1048 /en/players/3423f250/Raphinha 22 BRA -#> 1049 /en/players/0d9b2d31/Pedri 8 ESP -#> 1050 /en/players/1bacc518/Frenkie-de-Jong 21 NED -#> 1051 /en/players/5ab0ea87/Sergio-Busquets 5 ESP -#> 1052 /en/players/19cae58d/Gavi 30 ESP -#> 1053 /en/players/5ccc9672/Alejandro-Balde 28 ESP -#> 1054 /en/players/4601e194/Jordi-Alba 18 ESP -#> 1055 /en/players/2bed3eab/Eric-Garcia 24 ESP -#> 1056 /en/players/335fa267/Sergi-Roberto 20 ESP -#> 1057 /en/players/2bef2bca/Ronald-Araujo 4 URU -#> 1058 /en/players/4d1666ff/Jules-Kounde 23 FRA -#> 1059 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER -#> 1060 /en/players/8f3565b3/Ante-Budimir 17 CRO -#> 1061 /en/players/e897d8ba/Kike 18 ESP -#> 1062 /en/players/7c363088/Aimar-Oroz 22 ESP -#> 1063 /en/players/5a626448/Moi-Gomez 16 ESP -#> 1064 /en/players/3701906c/Pablo-Ibanez 19 ESP -#> 1065 /en/players/0e4fef6e/Lucas-Torro 6 ESP -#> 1066 /en/players/4accb7e0/Darko-Brasanac 8 SRB -#> 1067 /en/players/9939e168/Jon-Moncayola 7 ESP -#> 1068 /en/players/bed68338/Abdessamad-Ezzalzouli 12 MAR -#> 1069 /en/players/253a06b9/Ezequiel-Avila 9 ARG -#> 1070 /en/players/5c96b017/Ruben-Garcia 14 ESP -#> 1071 /en/players/a56da3ba/Juan-Cruz-Armada 3 ESP -#> 1072 /en/players/3e42f707/David-Garcia 5 ESP -#> 1073 /en/players/4a633cfe/Unai-Garcia 4 ESP -#> 1074 /en/players/3a9c4b7b/Nacho-Vidal 2 ESP -#> 1075 /en/players/a4995f48/Sergio-Herrera 1 ESP -#> 1076 /en/players/873619c6/Sergio-Camello 34 ESP -#> 1077 /en/players/66116290/Radamel-Falcao 9 COL -#> 1078 /en/players/90bbd822/Alvaro-Garcia 18 ESP -#> 1079 /en/players/405f267a/Salvi 14 ESP -#> 1080 /en/players/49dbab27/Isaac-Palazon-Camacho 7 ESP -#> 1081 /en/players/fc647b34/Oscar-Trejo 8 ARG -#> 1082 /en/players/592f3158/Oscar-Valentin 23 ESP -#> 1083 /en/players/5ae499d0/Santi-Comesana 6 ESP -#> 1084 /en/players/9a0408b6/Pathe-Ciss 21 SEN -#> 1085 /en/players/7226539b/Fran-Garcia 3 ESP -#> 1086 /en/players/63c5e56b/Pep-Chavarria 15 ESP -#> 1087 /en/players/274ab13c/Catena 5 ESP -#> 1088 /en/players/6eaed4eb/Florian-Lejeune 19 FRA -#> 1089 /en/players/cee88597/Ivan-Balliu 20 ALB -#> 1090 /en/players/fc70e345/Stole-Dimitrievski 1 MKD -#> 1091 /en/players/6a99e0b1/Inaki-Williams 9 GHA -#> 1092 /en/players/b418dbd4/Raul-Garcia 22 ESP -#> 1093 /en/players/dc1c2fce/Alex-Berenguer 7 ESP -#> 1094 /en/players/afdc14d7/Nico-Williams 11 ESP -#> 1095 /en/players/6b5ea2f4/Gorka-Guruzeta 12 ESP -#> 1096 /en/players/c05dfb74/Iker-Muniain 10 ESP -#> 1097 /en/players/b0fce72c/Mikel-Vesga 6 ESP -#> 1098 /en/players/bdb624a3/Oihan-Sancet 8 ESP -#> 1099 /en/players/4112ace5/Unai-Vencedor-Paris 16 ESP -#> 1100 /en/players/59b7d823/Inigo-Lekue 15 ESP -#> 1101 /en/players/b7d7f3bf/Jon-Morcillo 2 ESP -#> 1102 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP -#> 1103 /en/players/ab7bf91d/Daniel-Vivian 3 ESP -#> 1104 /en/players/9f323c71/Oscar-de-Marcos 18 ESP -#> 1105 /en/players/5dcf3e90/Unai-Simon 1 ESP -#> 1106 /en/players/6265208f/Joselu 9 ESP -#> 1107 /en/players/fd771f95/Martin-Braithwaite 17 DEN -#> 1108 /en/players/0e5ddc7c/Dani-Gomez 19 ESP -#> 1109 /en/players/2683eda7/Javi-Puado 7 ESP -#> 1110 /en/players/5b93209a/Jose-Carlos-Lazo 16 ESP -#> 1111 /en/players/070a3904/Sergi-Darder 10 ESP -#> 1112 /en/players/283c7121/Edu-Exposito 20 ESP -#> 1113 /en/players/03049c8c/Keidi-Bare 8 ALB -#> 1114 /en/players/7f271d74/Simo 28 ESP -#> 1115 /en/players/6a8a7af8/Vinicius-Souza 12 BRA -#> 1116 /en/players/a3e4bf46/Brian-Olivan 14 ESP -#> 1117 /en/players/69cbc8b6/Leandro-Cabrera 4 URU -#> 1118 /en/players/41b3069f/Fernando-Calero 5 ESP -#> 1119 /en/players/139560df/Omar-El-Hilali 26 MAR -#> 1120 /en/players/6652cf96/Oscar-Gil 2 ESP -#> 1121 /en/players/f127d782/Alvaro-Fernandez 25 ESP -#> 1122 /en/players/9c36ed83/Nicolas-Jackson 15 SEN -#> 1123 /en/players/4a478107/Jose-Luis-Morales 22 ESP -#> 1124 /en/players/81f0781e/Gerard-Moreno 7 ESP -#> 1125 /en/players/518f2234/Alex-Baena 16 ESP -#> 1126 /en/players/d7553721/Giovani-Lo-Celso 17 ARG -#> 1127 /en/players/a6951bf8/Francis-Coquelin 19 FRA -#> 1128 /en/players/7460ca0d/Daniel-Parejo 10 ESP -#> 1129 /en/players/5acc4a10/Etienne-Capoue 6 FRA -#> 1130 /en/players/540ec57b/Yeremi-Pino 21 ESP -#> 1131 /en/players/b8a642fc/Samuel-Chukwueze 11 NGA -#> 1132 /en/players/63f04c6c/Alfonso-Pedraza 24 ESP -#> 1133 /en/players/532e1e4f/Pau-Torres 4 ESP -#> 1134 /en/players/4bd414c1/Raul-Albiol 3 ESP -#> 1135 /en/players/e5d01ecf/Kiko-Femenia 2 ESP -#> 1136 /en/players/fbd6378b/Aissa-Mandi 23 ALG -#> 1137 /en/players/625c144a/Geronimo-Rulli 13 ARG -#> 1138 /en/players/ccbbe661/Ezequiel-Ponce 19 ARG -#> 1139 /en/players/0ae4e09a/Roger-Marti 18 ESP -#> 1140 /en/players/d49f3e6b/Lucas-Boye 9 ARG -#> 1141 /en/players/335039a2/Pere-Milla 10 ESP -#> 1142 /en/players/85dace26/Alex-Collado 15 ESP -#> 1143 /en/players/41fb0f4e/Domingos-Quina 12 POR -#> 1144 /en/players/0b2c8585/Raul-Guti 8 ESP -#> 1145 /en/players/ac454a4f/Gerard-Gumbau 20 ESP -#> 1146 /en/players/11fd2b75/Omar-Mascarell 21 ESP -#> 1147 /en/players/004d185e/Tete-Morente 11 ESP -#> 1148 /en/players/5b28b2f6/Josan 17 ESP -#> 1149 /en/players/33a61a52/Carlos-Clerc 23 ESP -#> 1150 /en/players/697295b1/Pedro-Bigas 6 ESP -#> 1151 /en/players/37f827ec/Enzo-Roco 3 CHI -#> 1152 /en/players/ac8b2421/Helibelton-Palacios 14 COL -#> 1153 /en/players/e4346678/Edgar-Badia 13 ESP -#> 1154 /en/players/ae86d473/Marcos-Andre 22 BRA -#> 1155 /en/players/37e103f8/Hugo-Duro 19 ESP -#> 1156 /en/players/2a295d33/Samuel 16 BRA -#> 1157 /en/players/130a7a3f/Samu-Castillejo 11 ESP -#> 1158 /en/players/f4c69aa6/Ilaix-Moriba 8 GUI -#> 1159 /en/players/2c56a792/Nicolas-Gonzalez 17 ESP -#> 1160 /en/players/e6697917/Domingos-Andre-Ribeiro-Almeida 18 POR -#> 1161 /en/players/45d96179/Hugo-Guillamon 6 -#> 1162 /en/players/b51b1b9c/Yunus-Musah 4 USA -#> 1163 /en/players/8e088e04/Toni-Lato 3 ESP -#> 1164 /en/players/45e17712/Dimitri-Foulquier 20 FRA -#> 1165 /en/players/d2110326/Mouctar-Diakhaby 12 GUI -#> 1166 /en/players/dc1ce4f5/Cristhian-Mosquera 33 COL -#> 1167 /en/players/15937e17/Eray-Comert 24 SUI -#> 1168 /en/players/c78b352d/Thierry-Correia 2 POR -#> 1169 /en/players/d4b73232/Giorgi-Mamardashvili 25 GEO -#> 1170 /en/players/64e8ed6d/Borja-Mayoral 19 ESP -#> 1171 /en/players/f8eca1b6/Enes-Unal 10 TUR -#> 1172 /en/players/02319ad7/Jaime-Mata 7 ESP -#> 1173 /en/players/1bda5842/Portu 9 ESP -#> 1174 /en/players/00b28772/Nemanja-Maksimovic 20 SRB -#> 1175 /en/players/a62b4888/Jaime-Seoane 8 ESP -#> 1176 /en/players/852ddfb8/Gaston-Alvarez 4 URU -#> 1177 /en/players/58afe001/Mauro-Arambarri 18 URU -#> 1178 /en/players/6c811eb7/Carles-Alena 11 ESP -#> 1179 /en/players/8696bc90/Munir-El-Haddadi 17 MAR -#> 1180 /en/players/fdd26d71/Fabrizio-Angileri 3 ARG -#> 1181 /en/players/93090f69/Domingos-Duarte 6 POR -#> 1182 /en/players/a4971d84/Djene 2 TOG -#> 1183 /en/players/e6777e6b/Stefan-Mitrovic 23 SRB -#> 1184 /en/players/974322dc/Iglesias 21 ESP -#> 1185 /en/players/8f8c6934/David-Soria 13 ESP -#> 1186 /en/players/32974271/Sergi-Guardiola 16 ESP -#> 1187 /en/players/379dc075/Shon-Weissman 9 ISR -#> 1188 /en/players/7c388b20/Oscar-Plano 10 ESP -#> 1189 /en/players/54bcdeb0/Gonzalo-Plata 11 ECU -#> 1190 /en/players/70107d4d/Ivan-Sanchez 21 ESP -#> 1191 /en/players/0a0cc13c/Sergio-Leon 7 ESP -#> 1192 /en/players/237a3851/Kike-Perez 4 ESP -#> 1193 /en/players/7c4243d4/Roque-Mesa 17 ESP -#> 1194 /en/players/485e4939/Juanjo-Narvaez 20 COL -#> 1195 /en/players/014aa7bd/Alvaro-Aguado 6 ESP -#> 1196 /en/players/8ac501f5/Monchu 8 ESP -#> 1197 /en/players/b0616e3d/Sergio-Escudero 18 ESP -#> 1198 /en/players/60359288/Javi-Sanchez 5 ESP -#> 1199 /en/players/b86a64b2/Joaquin-Fernandez 24 ESP -#> 1200 /en/players/b7c04927/Luis-Perez 2 ESP -#> 1201 /en/players/9f0ea33f/Sergio-Asenjo 25 ESP -#> 1202 /en/players/e4738e91/Dyego-Sousa 11 POR -#> 1203 /en/players/db8f0eba/Adri-Embarba 10 ESP -#> 1204 /en/players/cc9256ef/Largie-Ramazani 7 BEL -#> 1205 /en/players/8e010ff4/Francisco-Portillo 8 ESP -#> 1206 /en/players/35f6db55/Leo-Baptistao 12 BRA -#> 1207 /en/players/1fda2b14/Marko-Milovanovic 16 SRB -#> 1208 /en/players/a8981944/Lucas-Robertone 5 ARG -#> 1209 /en/players/76c2a023/Samu-Costa 23 POR -#> 1210 /en/players/60abea75/Cesar-de-la-Hoz 6 ESP -#> 1211 /en/players/55634fb8/Kaiky 2 BRA -#> 1212 /en/players/06efa9dc/Sergio-Akieme 15 ESP -#> 1213 /en/players/075fe5a3/Srdjan-Babic 22 SRB -#> 1214 /en/players/fd47b4f2/Rodrigo-Ely 19 BRA -#> 1215 /en/players/3c16d927/Alejandro-Pozo-Pozo 17 ESP -#> 1216 /en/players/dabb2827/Fernando 13 ESP -#> 1217 /en/players/da76bab4/Valentin-Castellanos 9 ARG -#> 1218 /en/players/9a76c2e9/Javi-Hernandez 16 ESP -#> 1219 /en/players/6b21b7b5/Reinier 19 BRA -#> 1220 /en/players/636eae97/Toni-Villa 12 ESP -#> 1221 /en/players/65154df0/Rodrigo-Riquelme 17 ESP -#> 1222 /en/players/13e0eb29/Samuel-Saiz 10 ESP -#> 1223 /en/players/a10361d2/Aleix-Garcia 14 ESP -#> 1224 /en/players/4b511457/Oriol-Romeu 18 ESP -#> 1225 /en/players/7e98cff1/Miguel-Gutierrez 3 ESP -#> 1226 /en/players/c3e66ffe/Arnau-Martinez 4 ESP -#> 1227 /en/players/1944818c/Yan-Couto 20 BRA -#> 1228 /en/players/1633fc8a/Juanpe 15 ESP -#> 1229 /en/players/4242011c/Bernardo-Espinosa 2 COL -#> 1230 /en/players/0bc4e720/Manu-Vallejo 25 ESP -#> 1231 /en/players/edc98fac/Santiago-Bueno 22 URU -#> 1232 /en/players/688b96e3/Juan-Carlos 1 ESP -#> 1233 /en/players/32974271/Sergi-Guardiola 16 ESP -#> 1234 /en/players/379dc075/Shon-Weissman 9 ISR -#> 1235 /en/players/c93231dc/Anuar 23 MAR -#> 1236 /en/players/7c388b20/Oscar-Plano 10 ESP -#> 1237 /en/players/8ac501f5/Monchu 8 ESP -#> 1238 /en/players/237a3851/Kike-Perez 4 ESP -#> 1239 /en/players/014aa7bd/Alvaro-Aguado 6 ESP -#> 1240 /en/players/54bcdeb0/Gonzalo-Plata 11 ECU -#> 1241 /en/players/5eebbfdf/Kenedy 19 BRA -#> 1242 /en/players/7c4243d4/Roque-Mesa 17 ESP -#> 1243 /en/players/4cee5954/Lucas-Olaza 12 URU -#> 1244 /en/players/60359288/Javi-Sanchez 5 ESP -#> 1245 /en/players/b86a64b2/Joaquin-Fernandez 24 ESP -#> 1246 /en/players/b7c04927/Luis-Perez 2 ESP -#> 1247 /en/players/29d0f2ac/Ivan-Fresneda 27 ESP -#> 1248 /en/players/9f0ea33f/Sergio-Asenjo 25 ESP -#> 1249 /en/players/873619c6/Sergio-Camello 34 ESP -#> 1250 /en/players/9a0408b6/Pathe-Ciss 21 SEN -#> 1251 /en/players/90bbd822/Alvaro-Garcia 18 ESP -#> 1252 /en/players/49dbab27/Isaac-Palazon-Camacho 7 ESP -#> 1253 /en/players/a6103274/Randy-Ntekja 11 FRA -#> 1254 /en/players/fc647b34/Oscar-Trejo 8 ARG -#> 1255 /en/players/88050721/Unai-Lopez 17 ESP -#> 1256 /en/players/592f3158/Oscar-Valentin 23 ESP -#> 1257 /en/players/fc8b614b/Jose-Pozo 22 ESP -#> 1258 /en/players/5ae499d0/Santi-Comesana 6 ESP -#> 1259 /en/players/66116290/Radamel-Falcao 9 COL -#> 1260 /en/players/7226539b/Fran-Garcia 3 ESP -#> 1261 /en/players/274ab13c/Catena 5 ESP -#> 1262 /en/players/6eaed4eb/Florian-Lejeune 19 FRA -#> 1263 /en/players/cee88597/Ivan-Balliu 20 ALB -#> 1264 /en/players/fc70e345/Stole-Dimitrievski 1 MKD -#> 1265 /en/players/37e103f8/Hugo-Duro 19 ESP -#> 1266 /en/players/4c3a6744/Justin-Kluivert 9 NED -#> 1267 /en/players/2a295d33/Samuel 16 BRA -#> 1268 /en/players/130a7a3f/Samu-Castillejo 11 ESP -#> 1269 /en/players/b51b1b9c/Yunus-Musah 4 USA -#> 1270 /en/players/2c56a792/Nicolas-Gonzalez 17 ESP -#> 1271 /en/players/ae86d473/Marcos-Andre 22 BRA -#> 1272 /en/players/45d96179/Hugo-Guillamon 6 -#> 1273 /en/players/e6697917/Domingos-Andre-Ribeiro-Almeida 18 POR -#> 1274 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP -#> 1275 /en/players/8e088e04/Toni-Lato 3 ESP -#> 1276 /en/players/d2110326/Mouctar-Diakhaby 12 GUI -#> 1277 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA -#> 1278 /en/players/c78b352d/Thierry-Correia 2 POR -#> 1279 /en/players/d4b73232/Giorgi-Mamardashvili 25 GEO -#> 1280 /en/players/6265208f/Joselu 9 ESP -#> 1281 /en/players/fd771f95/Martin-Braithwaite 17 DEN -#> 1282 /en/players/2683eda7/Javi-Puado 7 ESP -#> 1283 /en/players/ce8039aa/Nico-Ribaudo 21 ESP -#> 1284 /en/players/070a3904/Sergi-Darder 10 ESP -#> 1285 /en/players/6a8a7af8/Vinicius-Souza 12 BRA -#> 1286 /en/players/283c7121/Edu-Exposito 20 ESP -#> 1287 /en/players/0e5ddc7c/Dani-Gomez 19 ESP -#> 1288 /en/players/a3e4bf46/Brian-Olivan 14 ESP -#> 1289 /en/players/69cbc8b6/Leandro-Cabrera 4 URU -#> 1290 /en/players/bc6f5f06/Sergi-Gomez 24 ESP -#> 1291 /en/players/6652cf96/Oscar-Gil 2 ESP -#> 1292 /en/players/35d4f151/Ruben 27 ESP -#> 1293 /en/players/139560df/Omar-El-Hilali 26 MAR -#> 1294 /en/players/f127d782/Alvaro-Fernandez 25 ESP -#> 1295 /en/players/abe66106/Erik-Lamela 17 ARG -#> 1296 /en/players/58a9a4d9/Oliver-Torres 21 ESP -#> 1297 /en/players/5853ac44/Tanguy-Nianzou 14 FRA -#> 1298 /en/players/04e17fd5/Youssef-En-Nesyri 15 MAR -#> 1299 /en/players/a0b4bb3e/Isco 22 ESP -#> 1300 /en/players/41f32541/Fernando 20 BRA -#> 1301 /en/players/2a0c8ba4/Joan-Jordan 8 ESP -#> 1302 /en/players/89f951b5/Ivan-Rakitic 10 CRO -#> 1303 /en/players/81442ecb/Marcos-Acuna 19 ARG -#> 1304 /en/players/e73c9bb2/Alex-Telles 3 BRA -#> 1305 /en/players/0a69de7b/Kike-Salas 29 ESP -#> 1306 /en/players/3376a776/Karim-Rekik 4 NED -#> 1307 /en/players/0076ab7f/Nemanja-Gudelj 6 SRB -#> 1308 /en/players/2dce876a/Carmona 30 ESP -#> 1309 /en/players/3f10bd22/Jesus-Navas 16 ESP -#> 1310 /en/players/f6798fc3/Yassine-Bounou 13 MAR -#> 1311 /en/players/a300ac7e/Lucas-Perez 15 ESP -#> 1312 /en/players/922da988/Awer-Mabil 17 AUS -#> 1313 /en/players/2e3995cd/Brian-Ocampo 14 URU -#> 1314 /en/players/3d7e48ce/Ivan-Alejo 11 ESP -#> 1315 /en/players/0da6a13e/Theo-Bongonda 10 COD -#> 1316 /en/players/19b776e9/Ruben-Sobrino 7 ESP -#> 1317 /en/players/63b0ca6b/Alvaro-Negredo 18 ESP -#> 1318 /en/players/efecd633/Fede-San-Emeterio 24 ESP -#> 1319 /en/players/036bba5f/Ruben-Alcaraz 4 ESP -#> 1320 /en/players/aa677a35/Alex-Fernandez 8 ESP -#> 1321 /en/players/99ea2ddd/Tomas-Alarcon 12 CHI -#> 1322 /en/players/db001fa9/Alfonso-Espino 22 URU -#> 1323 /en/players/8aae94b9/Mamadou-Mbaye 5 SEN -#> 1324 /en/players/02d2c436/Luis-Hernandez 23 ESP -#> 1325 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP -#> 1326 /en/players/6c4776b1/Jeremias-Ledesma 1 ARG -#> 1327 /en/players/8f696594/Memphis 14 NED -#> 1328 /en/players/8d78e732/Robert-Lewandowski 9 POL -#> 1329 /en/players/9e1035f8/Ferran-Torres 11 ESP -#> 1330 /en/players/b19db005/Ousmane-Dembele 7 FRA -#> 1331 /en/players/3423f250/Raphinha 22 BRA -#> 1332 /en/players/0ba976e4/Ansu-Fati 10 ESP -#> 1333 /en/players/19cae58d/Gavi 30 ESP -#> 1334 /en/players/0d9b2d31/Pedri 8 ESP -#> 1335 /en/players/5ab0ea87/Sergio-Busquets 5 ESP -#> 1336 /en/players/1bacc518/Frenkie-de-Jong 21 NED -#> 1337 /en/players/5ccc9672/Alejandro-Balde 28 ESP -#> 1338 /en/players/f4290206/Marcos-Alonso 17 ESP -#> 1339 /en/players/adfc9123/Gerard-Pique 3 ESP -#> 1340 /en/players/2bef2bca/Ronald-Araujo 4 URU -#> 1341 /en/players/f874dd44/Hector-Bellerin 2 ESP -#> 1342 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER -#> 1343 /en/players/129af0db/Alvaro-Morata 19 ESP -#> 1344 /en/players/df69b544/Antoine-Griezmann 8 FRA -#> 1345 /en/players/01eb744d/Angel-Correa 10 ARG -#> 1346 /en/players/8aafd64f/Joao-Felix 7 POR -#> 1347 /en/players/4dbd0916/Thomas-Lemar 11 FRA -#> 1348 /en/players/55126f3b/Koke 6 ESP -#> 1349 /en/players/cce181df/Geoffrey-Kondogbia 4 CTA -#> 1350 /en/players/162efffd/Rodrigo-De-Paul 5 ARG -#> 1351 /en/players/dc62b55d/Matheus-Cunha 9 BRA -#> 1352 /en/players/de39485a/Yannick-Carrasco 21 BEL -#> 1353 /en/players/c14bc029/Saul-Niguez 17 ESP -#> 1354 /en/players/c20bdcd7/Reinildo-Mandava 23 MOZ -#> 1355 /en/players/555f3a0b/Mario-Hermoso 22 ESP -#> 1356 /en/players/5dfc6ad5/Axel-Witsel 20 BEL -#> 1357 /en/players/23610943/Nahuel-Molina 16 ARG -#> 1358 /en/players/3f034750/Ivo-Grbic 1 CRO -#> 1359 /en/players/f553b2b3/Jorgen-Strand-Larsen 18 NOR -#> 1360 /en/players/7dcf86f6/Iago-Aspas 10 ESP -#> 1361 /en/players/5e1028e5/Franco-Cervi 11 ARG -#> 1362 /en/players/ed5c5fa3/Fran-Beltran 8 ESP -#> 1363 /en/players/a8f21b9f/Carles-Perez 7 ESP -#> 1364 /en/players/35a6e5c7/Gabriel-Veiga 28 ESP -#> 1365 /en/players/34269bdf/Renato-Tapia 14 PER -#> 1366 /en/players/3ca6106c/Augusto-Solari 21 ARG -#> 1367 /en/players/a4b00319/Javi-Galan 17 ESP -#> 1368 /en/players/be170419/Unai-Nunez 4 ESP -#> 1369 /en/players/18abe173/Joseph-Aidoo 15 GHA -#> 1370 /en/players/cb574619/Hugo-Mallo 2 ESP -#> 1371 /en/players/853b7c48/Agustin-Marchesin 1 ARG -#> 1372 /en/players/a39bb753/Eden-Hazard 7 BEL -#> 1373 /en/players/6025fab1/Luka-Modric 10 CRO -#> 1374 /en/players/7111d552/Vinicius-Junior 20 BRA -#> 1375 /en/players/8f5e92a6/Rodrygo 21 BRA -#> 1376 /en/players/c0617e2b/Dani-Ceballos 19 ESP -#> 1377 /en/players/7b9c2d84/Eduardo-Camavinga 12 FRA -#> 1378 /en/players/6ce1f46f/Toni-Kroos 8 GER -#> 1379 /en/players/0959c2a2/Federico-Valverde 15 URU -#> 1380 /en/players/3cefcaef/Ferland-Mendy 23 FRA -#> 1381 /en/players/2946f9a1/Nacho 6 ESP -#> 1382 /en/players/05439de2/David-Alaba 4 AUT -#> 1383 /en/players/18b896d6/Antonio-Rudiger 22 GER -#> 1384 /en/players/fd51b456/Lucas-Vazquez 17 ESP -#> 1385 /en/players/4958bfb2/Dani-Carvajal 2 ESP -#> 1386 /en/players/1840e36d/Thibaut-Courtois 1 BEL -#> 1387 /en/players/8455ad90/Lee-Kang-in 19 KOR -#> 1388 /en/players/360d70f8/Lago-Junior 11 CIV -#> 1389 /en/players/0cadc46d/Vedat-Muriqi 7 KVX -#> 1390 /en/players/d1b060e2/Abdon-Prats 9 ESP -#> 1391 /en/players/91f7631f/Inigo-Ruiz-de-Galarreta 4 ESP -#> 1392 /en/players/a254bbe0/Antonio-Sanchez 10 ESP -#> 1393 /en/players/d637fc22/Rodrigo-Battaglia 16 ARG -#> 1394 /en/players/bfd381b3/Iddrisu-Baba 12 GHA -#> 1395 /en/players/70f8e0bd/Dani-Rodriguez 14 ESP -#> 1396 /en/players/8b298f56/Clement-Grenier 8 FRA -#> 1397 /en/players/808d48f3/Jaume-Costa 18 ESP -#> 1398 /en/players/f35430a4/Matija-Nastasic 2 SRB -#> 1399 /en/players/b857bd29/Antonio-Raillo 21 ESP -#> 1400 /en/players/f2c6ac01/Martin-Valjent 24 SVK -#> 1401 /en/players/5db04597/Pablo-Maffeo 15 ESP -#> 1402 /en/players/58ad9383/Predrag-Rajkovic 1 SRB -#> 1403 /en/players/d49f3e6b/Lucas-Boye 9 ARG -#> 1404 /en/players/335039a2/Pere-Milla 10 ESP -#> 1405 /en/players/85dace26/Alex-Collado 15 ESP -#> 1406 /en/players/eb82b6f1/Fidel 16 ESP -#> 1407 /en/players/41fb0f4e/Domingos-Quina 12 POR -#> 1408 /en/players/ac454a4f/Gerard-Gumbau 20 ESP -#> 1409 /en/players/0b2c8585/Raul-Guti 8 ESP -#> 1410 /en/players/11fd2b75/Omar-Mascarell 21 ESP -#> 1411 /en/players/ccbbe661/Ezequiel-Ponce 19 ARG -#> 1412 /en/players/3409de86/Nicolas-Ezequiel-Fernandez 22 ARG -#> 1413 /en/players/697295b1/Pedro-Bigas 6 ESP -#> 1414 /en/players/37f827ec/Enzo-Roco 3 CHI -#> 1415 /en/players/5e95c000/John-Donald 26 ESP -#> 1416 /en/players/ff800ed8/Pol-Lirola 24 ESP -#> 1417 /en/players/5b28b2f6/Josan 17 ESP -#> 1418 /en/players/e4346678/Edgar-Badia 13 ESP -#> 1419 /en/players/6a99e0b1/Inaki-Williams 9 GHA -#> 1420 /en/players/b7d7f3bf/Jon-Morcillo 2 ESP -#> 1421 /en/players/dc1c2fce/Alex-Berenguer 7 ESP -#> 1422 /en/players/afdc14d7/Nico-Williams 11 ESP -#> 1423 /en/players/968a1c2f/Oier-Zarraga 19 ESP -#> 1424 /en/players/c05dfb74/Iker-Muniain 10 ESP -#> 1425 /en/players/6b5ea2f4/Gorka-Guruzeta 12 ESP -#> 1426 /en/players/240d3a0b/Dani-Garcia 14 ESP -#> 1427 /en/players/b0fce72c/Mikel-Vesga 6 ESP -#> 1428 /en/players/bdb624a3/Oihan-Sancet 8 ESP -#> 1429 /en/players/b418dbd4/Raul-Garcia 22 ESP -#> 1430 /en/players/59b7d823/Inigo-Lekue 15 ESP -#> 1431 /en/players/3fc45c73/Inigo-Martinez 4 ESP -#> 1432 /en/players/ab7bf91d/Daniel-Vivian 3 ESP -#> 1433 /en/players/9f323c71/Oscar-de-Marcos 18 ESP -#> 1434 /en/players/5dcf3e90/Unai-Simon 1 ESP -#> 1435 /en/players/64e8ed6d/Borja-Mayoral 19 ESP -#> 1436 /en/players/8696bc90/Munir-El-Haddadi 17 MAR -#> 1437 /en/players/f8eca1b6/Enes-Unal 10 TUR -#> 1438 /en/players/00b28772/Nemanja-Maksimovic 20 SRB -#> 1439 /en/players/acc1aefa/Angel-Algobia 16 ESP -#> 1440 /en/players/a62b4888/Jaime-Seoane 8 ESP -#> 1441 /en/players/6c811eb7/Carles-Alena 11 ESP -#> 1442 /en/players/1bda5842/Portu 9 ESP -#> 1443 /en/players/fdd26d71/Fabrizio-Angileri 3 ARG -#> 1444 /en/players/974322dc/Iglesias 21 ESP -#> 1445 /en/players/852ddfb8/Gaston-Alvarez 4 URU -#> 1446 /en/players/e6777e6b/Stefan-Mitrovic 23 SRB -#> 1447 /en/players/93090f69/Domingos-Duarte 6 POR -#> 1448 /en/players/ba5004e1/Damian-Suarez 22 URU -#> 1449 /en/players/8f8c6934/David-Soria 13 ESP -#> 1450 /en/players/e92cd3f7/Alexander-Sorloth 19 NOR -#> 1451 /en/players/211589b8/Jon-Karrikaburu 33 ESP -#> 1452 /en/players/686cbe7d/Umar-Sadiq 25 NGA -#> 1453 /en/players/f8405304/Mohamed-Ali-Cho 11 FRA -#> 1454 /en/players/16aa3654/Takefusa-Kubo 14 JPN -#> 1455 /en/players/c9e39d91/Brais-Mendez 23 ESP -#> 1456 /en/players/068f4dec/Benat-Turrientes 22 ESP -#> 1457 /en/players/e2716bd0/David-Silva 21 ESP -#> 1458 /en/players/d080ed5e/Mikel-Merino 8 ESP -#> 1459 /en/players/3ee0dd59/Martin-Zubimendi 3 ESP -#> 1460 /en/players/228b0d9d/Aihen-Munoz 12 ESP -#> 1461 /en/players/44150beb/Jon-Pacheco 20 ESP -#> 1462 /en/players/5c7845f6/Igor-Zubeldia 5 ESP -#> 1463 /en/players/5fa714d5/Alex-Sola 2 ESP -#> 1464 /en/players/6f5f82c0/Andoni-Gorosabel 18 ESP -#> 1465 /en/players/374ee424/Alex-Remiro 1 ESP -#> 1466 /en/players/75645f0e/Borja-Iglesias 9 ESP -#> 1467 /en/players/d87e2cae/Willian-Jose 12 BRA -#> 1468 /en/players/85bed4ee/Rodri 28 ESP -#> 1469 /en/players/a55d8df5/Aitor-Ruibal 24 ESP -#> 1470 /en/players/8059806f/Luiz-Henrique 11 BRA -#> 1471 /en/players/ef322658/Andres-Guardado 18 MEX -#> 1472 /en/players/a6de370d/Sergio-Canales 10 ESP -#> 1473 /en/players/dee86451/William-Carvalho 14 POR -#> 1474 /en/players/34e393f2/Guido-Rodriguez 5 ARG -#> 1475 /en/players/16e9d0ea/Alex-Moreno 15 ESP -#> 1476 /en/players/15d0c248/Luiz-Felipe 19 ITA -#> 1477 /en/players/8c725b43/German-Pezzella 16 ARG -#> 1478 /en/players/fbbb9269/Youssouf-Sabaly 23 SEN -#> 1479 /en/players/ea83bfa6/Rui-Silva 13 POR -#> 1480 /en/players/9c36ed83/Nicolas-Jackson 15 SEN -#> 1481 /en/players/4a478107/Jose-Luis-Morales 22 ESP -#> 1482 /en/players/81f0781e/Gerard-Moreno 7 ESP -#> 1483 /en/players/518f2234/Alex-Baena 16 ESP -#> 1484 /en/players/d7553721/Giovani-Lo-Celso 17 ARG -#> 1485 /en/players/7460ca0d/Daniel-Parejo 10 ESP -#> 1486 /en/players/5acc4a10/Etienne-Capoue 6 FRA -#> 1487 /en/players/a6951bf8/Francis-Coquelin 19 FRA -#> 1488 /en/players/540ec57b/Yeremi-Pino 21 ESP -#> 1489 /en/players/b8a642fc/Samuel-Chukwueze 11 NGA -#> 1490 /en/players/63f04c6c/Alfonso-Pedraza 24 ESP -#> 1491 /en/players/608f2092/Johan-Mojica 12 COL -#> 1492 /en/players/532e1e4f/Pau-Torres 4 ESP -#> 1493 /en/players/4bd414c1/Raul-Albiol 3 ESP -#> 1494 /en/players/e5d01ecf/Kiko-Femenia 2 ESP -#> 1495 /en/players/625c144a/Geronimo-Rulli 13 ARG -#> 1496 /en/players/e4738e91/Dyego-Sousa 11 POR -#> 1497 /en/players/47c609d5/El-Bilal-Toure 9 MLI -#> 1498 /en/players/db8f0eba/Adri-Embarba 10 ESP -#> 1499 /en/players/39352da2/Arnau-Puigmal 18 ESP -#> 1500 /en/players/cc9256ef/Largie-Ramazani 7 BEL -#> 1501 /en/players/1fda2b14/Marko-Milovanovic 16 SRB -#> 1502 /en/players/76c2a023/Samu-Costa 23 POR -#> 1503 /en/players/3e93f8cf/Inigo-Eguaras 4 ESP -#> 1504 /en/players/8e010ff4/Francisco-Portillo 8 ESP -#> 1505 /en/players/a8981944/Lucas-Robertone 5 ARG -#> 1506 /en/players/86ff856b/Lazaro 14 BRA -#> 1507 /en/players/06efa9dc/Sergio-Akieme 15 ESP -#> 1508 /en/players/075fe5a3/Srdjan-Babic 22 SRB -#> 1509 /en/players/fd47b4f2/Rodrigo-Ely 19 BRA -#> 1510 /en/players/3c16d927/Alejandro-Pozo-Pozo 17 ESP -#> 1511 /en/players/dabb2827/Fernando 13 ESP -#> 1512 /en/players/8f3565b3/Ante-Budimir 17 CRO -#> 1513 /en/players/bed68338/Abdessamad-Ezzalzouli 12 MAR -#> 1514 /en/players/5a626448/Moi-Gomez 16 ESP -#> 1515 /en/players/aad53e64/Kike-Barja 11 ESP -#> 1516 /en/players/253a06b9/Ezequiel-Avila 9 ARG -#> 1517 /en/players/e897d8ba/Kike 18 ESP -#> 1518 /en/players/5c96b017/Ruben-Garcia 14 ESP -#> 1519 /en/players/9939e168/Jon-Moncayola 7 ESP -#> 1520 /en/players/4accb7e0/Darko-Brasanac 8 SRB -#> 1521 /en/players/3701906c/Pablo-Ibanez 19 ESP -#> 1522 /en/players/0e4fef6e/Lucas-Torro 6 ESP -#> 1523 /en/players/a56da3ba/Juan-Cruz-Armada 3 ESP -#> 1524 /en/players/3e42f707/David-Garcia 5 ESP -#> 1525 /en/players/4a633cfe/Unai-Garcia 4 ESP -#> 1526 /en/players/3a9c4b7b/Nacho-Vidal 2 ESP -#> 1527 /en/players/a4995f48/Sergio-Herrera 1 ESP -#> 1528 /en/players/379dc075/Shon-Weissman 9 ISR -#> 1529 /en/players/32974271/Sergi-Guardiola 16 ESP -#> 1530 /en/players/7c388b20/Oscar-Plano 10 ESP -#> 1531 /en/players/485e4939/Juanjo-Narvaez 20 COL -#> 1532 /en/players/54bcdeb0/Gonzalo-Plata 11 ECU -#> 1533 /en/players/0a0cc13c/Sergio-Leon 7 ESP -#> 1534 /en/players/237a3851/Kike-Perez 4 ESP -#> 1535 /en/players/7c4243d4/Roque-Mesa 17 ESP -#> 1536 /en/players/bbc19252/Mickael-Malsa 14 MTQ -#> 1537 /en/players/8ac501f5/Monchu 8 ESP -#> 1538 /en/players/70107d4d/Ivan-Sanchez 21 ESP -#> 1539 /en/players/4cee5954/Lucas-Olaza 12 URU -#> 1540 /en/players/60359288/Javi-Sanchez 5 ESP -#> 1541 /en/players/b86a64b2/Joaquin-Fernandez 24 ESP -#> 1542 /en/players/29d0f2ac/Ivan-Fresneda 27 ESP -#> 1543 /en/players/9f0ea33f/Sergio-Asenjo 25 ESP -#> 1544 /en/players/a300ac7e/Lucas-Perez 15 ESP -#> 1545 /en/players/2e3995cd/Brian-Ocampo 14 URU -#> 1546 /en/players/036bba5f/Ruben-Alcaraz 4 ESP -#> 1547 /en/players/3d7e48ce/Ivan-Alejo 11 ESP -#> 1548 /en/players/63b0ca6b/Alvaro-Negredo 18 ESP -#> 1549 /en/players/19b776e9/Ruben-Sobrino 7 ESP -#> 1550 /en/players/aa677a35/Alex-Fernandez 8 ESP -#> 1551 /en/players/0da6a13e/Theo-Bongonda 10 COD -#> 1552 /en/players/efecd633/Fede-San-Emeterio 24 ESP -#> 1553 /en/players/6f4c734d/Jose-Mari 6 ESP -#> 1554 /en/players/db001fa9/Alfonso-Espino 22 URU -#> 1555 /en/players/ec1a731e/Victor-Chust 32 ESP -#> 1556 /en/players/02d2c436/Luis-Hernandez 23 ESP -#> 1557 /en/players/c4b888df/Isaac-Carcelen 20 ESP -#> 1558 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP -#> 1559 /en/players/6c4776b1/Jeremias-Ledesma 1 ARG -#> 1560 /en/players/0cadc46d/Vedat-Muriqi 7 KVX -#> 1561 /en/players/8cfc2f69/Angel-Rodriguez 22 ESP -#> 1562 /en/players/8455ad90/Lee-Kang-in 19 KOR -#> 1563 /en/players/8b298f56/Clement-Grenier 8 FRA -#> 1564 /en/players/bfd381b3/Iddrisu-Baba 12 GHA -#> 1565 /en/players/91f7631f/Inigo-Ruiz-de-Galarreta 4 ESP -#> 1566 /en/players/d1b060e2/Abdon-Prats 9 ESP -#> 1567 /en/players/a254bbe0/Antonio-Sanchez 10 ESP -#> 1568 /en/players/70f8e0bd/Dani-Rodriguez 14 ESP -#> 1569 /en/players/808d48f3/Jaume-Costa 18 ESP -#> 1570 /en/players/0f26ffd7/Copete 6 ESP -#> 1571 /en/players/b857bd29/Antonio-Raillo 21 ESP -#> 1572 /en/players/f2c6ac01/Martin-Valjent 24 SVK -#> 1573 /en/players/5db04597/Pablo-Maffeo 15 ESP -#> 1574 /en/players/58ad9383/Predrag-Rajkovic 1 SRB -#> 1575 /en/players/cc9256ef/Largie-Ramazani 7 BEL -#> 1576 /en/players/47c609d5/El-Bilal-Toure 9 MLI -#> 1577 /en/players/e4738e91/Dyego-Sousa 11 POR -#> 1578 /en/players/86ff856b/Lazaro 14 BRA -#> 1579 /en/players/3902e91b/Gonzalo-Melero 3 ESP -#> 1580 /en/players/76c2a023/Samu-Costa 23 POR -#> 1581 /en/players/a8981944/Lucas-Robertone 5 ARG -#> 1582 /en/players/8e010ff4/Francisco-Portillo 8 ESP -#> 1583 /en/players/06efa9dc/Sergio-Akieme 15 ESP -#> 1584 /en/players/075fe5a3/Srdjan-Babic 22 SRB -#> 1585 /en/players/fd47b4f2/Rodrigo-Ely 19 BRA -#> 1586 /en/players/2475cf9b/Juan-Brandariz 21 ESP -#> 1587 /en/players/db8f0eba/Adri-Embarba 10 ESP -#> 1588 /en/players/3c16d927/Alejandro-Pozo-Pozo 17 ESP -#> 1589 /en/players/39352da2/Arnau-Puigmal 18 ESP -#> 1590 /en/players/dabb2827/Fernando 13 ESP -#> 1591 /en/players/8d78e732/Robert-Lewandowski 9 POL -#> 1592 /en/players/9e1035f8/Ferran-Torres 11 ESP -#> 1593 /en/players/8f696594/Memphis 14 NED -#> 1594 /en/players/0ba976e4/Ansu-Fati 10 ESP -#> 1595 /en/players/b19db005/Ousmane-Dembele 7 FRA -#> 1596 /en/players/3423f250/Raphinha 22 BRA -#> 1597 /en/players/0d9b2d31/Pedri 8 ESP -#> 1598 /en/players/1bacc518/Frenkie-de-Jong 21 NED -#> 1599 /en/players/05e19d6a/Franck-Kessie 19 CIV -#> 1600 /en/players/19cae58d/Gavi 30 ESP -#> 1601 /en/players/5ccc9672/Alejandro-Balde 28 ESP -#> 1602 /en/players/2bed3eab/Eric-Garcia 24 ESP -#> 1603 /en/players/f874dd44/Hector-Bellerin 2 ESP -#> 1604 /en/players/2bef2bca/Ronald-Araujo 4 URU -#> 1605 /en/players/4d1666ff/Jules-Kounde 23 FRA -#> 1606 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER -#> 1607 /en/players/d49f3e6b/Lucas-Boye 9 ARG -#> 1608 /en/players/5b28b2f6/Josan 17 ESP -#> 1609 /en/players/eb82b6f1/Fidel 16 ESP -#> 1610 /en/players/41fb0f4e/Domingos-Quina 12 POR -#> 1611 /en/players/ac454a4f/Gerard-Gumbau 20 ESP -#> 1612 /en/players/0b2c8585/Raul-Guti 8 ESP -#> 1613 /en/players/3409de86/Nicolas-Ezequiel-Fernandez 22 ARG -#> 1614 /en/players/004d185e/Tete-Morente 11 ESP -#> 1615 /en/players/ccbbe661/Ezequiel-Ponce 19 ARG -#> 1616 /en/players/33a61a52/Carlos-Clerc 23 ESP -#> 1617 /en/players/697295b1/Pedro-Bigas 6 ESP -#> 1618 /en/players/4ac7608e/Diego-Gonzalez 4 ESP -#> 1619 /en/players/1c2c55fc/Gonzalo-Verdu 5 ESP -#> 1620 /en/players/5e95c000/John-Donald 26 ESP -#> 1621 /en/players/ac8b2421/Helibelton-Palacios 14 COL -#> 1622 /en/players/e4346678/Edgar-Badia 13 ESP -#> 1623 /en/players/527f063d/Edinson-Cavani 7 URU -#> 1624 /en/players/4c3a6744/Justin-Kluivert 9 NED -#> 1625 /en/players/2a295d33/Samuel 16 BRA -#> 1626 /en/players/130a7a3f/Samu-Castillejo 11 ESP -#> 1627 /en/players/ae86d473/Marcos-Andre 22 BRA -#> 1628 /en/players/f4c69aa6/Ilaix-Moriba 8 GUI -#> 1629 /en/players/2c56a792/Nicolas-Gonzalez 17 ESP -#> 1630 /en/players/45d96179/Hugo-Guillamon 6 -#> 1631 /en/players/e6697917/Domingos-Andre-Ribeiro-Almeida 18 POR -#> 1632 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP -#> 1633 /en/players/8e088e04/Toni-Lato 3 ESP -#> 1634 /en/players/d2110326/Mouctar-Diakhaby 12 GUI -#> 1635 /en/players/15937e17/Eray-Comert 24 SUI -#> 1636 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA -#> 1637 /en/players/c78b352d/Thierry-Correia 2 POR -#> 1638 /en/players/d4b73232/Giorgi-Mamardashvili 25 GEO -#> 1639 /en/players/f553b2b3/Jorgen-Strand-Larsen 18 NOR -#> 1640 /en/players/e9241b40/Luca-de-la-Torre 23 USA -#> 1641 /en/players/7dcf86f6/Iago-Aspas 10 ESP -#> 1642 /en/players/5e1028e5/Franco-Cervi 11 ARG -#> 1643 /en/players/ed5c5fa3/Fran-Beltran 8 ESP -#> 1644 /en/players/a8f21b9f/Carles-Perez 7 ESP -#> 1645 /en/players/19709006/Oscar-Rodriguez-Arnaiz 5 ESP -#> 1646 /en/players/35a6e5c7/Gabriel-Veiga 28 ESP -#> 1647 /en/players/34269bdf/Renato-Tapia 14 PER -#> 1648 /en/players/a4b00319/Javi-Galan 17 ESP -#> 1649 /en/players/be170419/Unai-Nunez 4 ESP -#> 1650 /en/players/18abe173/Joseph-Aidoo 15 GHA -#> 1651 /en/players/cb574619/Hugo-Mallo 2 ESP -#> 1652 /en/players/853b7c48/Agustin-Marchesin 1 ARG -#> 1653 /en/players/6a99e0b1/Inaki-Williams 9 GHA -#> 1654 /en/players/b418dbd4/Raul-Garcia 22 ESP -#> 1655 /en/players/dc1c2fce/Alex-Berenguer 7 ESP -#> 1656 /en/players/b906757a/Aitor-Paredes 31 ESP -#> 1657 /en/players/afdc14d7/Nico-Williams 11 ESP -#> 1658 /en/players/968a1c2f/Oier-Zarraga 19 ESP -#> 1659 /en/players/c05dfb74/Iker-Muniain 10 ESP -#> 1660 /en/players/b7d7f3bf/Jon-Morcillo 2 ESP -#> 1661 /en/players/240d3a0b/Dani-Garcia 14 ESP -#> 1662 /en/players/bdb624a3/Oihan-Sancet 8 ESP -#> 1663 /en/players/436a9dd0/Ander-Herrera 23 ESP -#> 1664 /en/players/59b7d823/Inigo-Lekue 15 ESP -#> 1665 /en/players/3fc45c73/Inigo-Martinez 4 ESP -#> 1666 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP -#> 1667 /en/players/9f323c71/Oscar-de-Marcos 18 ESP -#> 1668 /en/players/5dcf3e90/Unai-Simon 1 ESP -#> 1669 /en/players/873619c6/Sergio-Camello 34 ESP -#> 1670 /en/players/66116290/Radamel-Falcao 9 COL -#> 1671 /en/players/90bbd822/Alvaro-Garcia 18 ESP -#> 1672 /en/players/49dbab27/Isaac-Palazon-Camacho 7 ESP -#> 1673 /en/players/fc647b34/Oscar-Trejo 8 ARG -#> 1674 /en/players/d8712bf9/Bebe 10 CPV -#> 1675 /en/players/5ae499d0/Santi-Comesana 6 ESP -#> 1676 /en/players/88050721/Unai-Lopez 17 ESP -#> 1677 /en/players/592f3158/Oscar-Valentin 23 ESP -#> 1678 /en/players/9a0408b6/Pathe-Ciss 21 SEN -#> 1679 /en/players/7226539b/Fran-Garcia 3 ESP -#> 1680 /en/players/274ab13c/Catena 5 ESP -#> 1681 /en/players/6eaed4eb/Florian-Lejeune 19 FRA -#> 1682 /en/players/5487adcd/Abdul-Mumin 16 GHA -#> 1683 /en/players/cee88597/Ivan-Balliu 20 ALB -#> 1684 /en/players/fc70e345/Stole-Dimitrievski 1 MKD -#> 1685 /en/players/8f3565b3/Ante-Budimir 17 CRO -#> 1686 /en/players/e897d8ba/Kike 18 ESP -#> 1687 /en/players/5a626448/Moi-Gomez 16 ESP -#> 1688 /en/players/253a06b9/Ezequiel-Avila 9 ARG -#> 1689 /en/players/5c96b017/Ruben-Garcia 14 ESP -#> 1690 /en/players/bed68338/Abdessamad-Ezzalzouli 12 MAR -#> 1691 /en/players/4accb7e0/Darko-Brasanac 8 SRB -#> 1692 /en/players/9939e168/Jon-Moncayola 7 ESP -#> 1693 /en/players/0e4fef6e/Lucas-Torro 6 ESP -#> 1694 /en/players/a56da3ba/Juan-Cruz-Armada 3 ESP -#> 1695 /en/players/3e42f707/David-Garcia 5 ESP -#> 1696 /en/players/ffacd3d5/Manu-Sanchez 20 ESP -#> 1697 /en/players/4a633cfe/Unai-Garcia 4 ESP -#> 1698 /en/players/3a9c4b7b/Nacho-Vidal 2 ESP -#> 1699 /en/players/1f079188/Ruben-Pena 15 ESP -#> 1700 /en/players/a4995f48/Sergio-Herrera 1 ESP -#> 1701 /en/players/f8eca1b6/Enes-Unal 10 TUR -#> 1702 /en/players/02319ad7/Jaime-Mata 7 ESP -#> 1703 /en/players/64e8ed6d/Borja-Mayoral 19 ESP -#> 1704 /en/players/8696bc90/Munir-El-Haddadi 17 MAR -#> 1705 /en/players/00b28772/Nemanja-Maksimovic 20 SRB -#> 1706 /en/players/19c36442/Luis-Milla 5 ESP -#> 1707 /en/players/58afe001/Mauro-Arambarri 18 URU -#> 1708 /en/players/6c811eb7/Carles-Alena 11 ESP -#> 1709 /en/players/a62b4888/Jaime-Seoane 8 ESP -#> 1710 /en/players/974322dc/Iglesias 21 ESP -#> 1711 /en/players/852ddfb8/Gaston-Alvarez 4 URU -#> 1712 /en/players/14d5b7ac/Alejandro-Revuelta-Montero 31 ESP -#> 1713 /en/players/e6777e6b/Stefan-Mitrovic 23 SRB -#> 1714 /en/players/93090f69/Domingos-Duarte 6 POR -#> 1715 /en/players/ba5004e1/Damian-Suarez 22 URU -#> 1716 /en/players/8f8c6934/David-Soria 13 ESP -#> 1717 /en/players/9c36ed83/Nicolas-Jackson 15 SEN -#> 1718 /en/players/4a478107/Jose-Luis-Morales 22 ESP -#> 1719 /en/players/d7553721/Giovani-Lo-Celso 17 ARG -#> 1720 /en/players/518f2234/Alex-Baena 16 ESP -#> 1721 /en/players/a6951bf8/Francis-Coquelin 19 FRA -#> 1722 /en/players/f08490a6/Arnaut-Danjuma 9 NED -#> 1723 /en/players/7460ca0d/Daniel-Parejo 10 ESP -#> 1724 /en/players/5acc4a10/Etienne-Capoue 6 FRA -#> 1725 /en/players/b8a642fc/Samuel-Chukwueze 11 NGA -#> 1726 /en/players/540ec57b/Yeremi-Pino 21 ESP -#> 1727 /en/players/63f04c6c/Alfonso-Pedraza 24 ESP -#> 1728 /en/players/608f2092/Johan-Mojica 12 COL -#> 1729 /en/players/532e1e4f/Pau-Torres 4 ESP -#> 1730 /en/players/4bd414c1/Raul-Albiol 3 ESP -#> 1731 /en/players/e5d01ecf/Kiko-Femenia 2 ESP -#> 1732 /en/players/625c144a/Geronimo-Rulli 13 ARG -#> 1733 /en/players/bbf5c11b/Rafa-Mir 12 ESP -#> 1734 /en/players/58a9a4d9/Oliver-Torres 21 ESP -#> 1735 /en/players/6e4df551/Papu-Gomez 24 ARG -#> 1736 /en/players/3f10bd22/Jesus-Navas 16 ESP -#> 1737 /en/players/a0b4bb3e/Isco 22 ESP -#> 1738 /en/players/41f32541/Fernando 20 BRA -#> 1739 /en/players/5853ac44/Tanguy-Nianzou 14 FRA -#> 1740 /en/players/2a0c8ba4/Joan-Jordan 8 ESP -#> 1741 /en/players/81442ecb/Marcos-Acuna 19 ARG -#> 1742 /en/players/e73c9bb2/Alex-Telles 3 BRA -#> 1743 /en/players/0a69de7b/Kike-Salas 29 ESP -#> 1744 /en/players/0076ab7f/Nemanja-Gudelj 6 SRB -#> 1745 /en/players/2dce876a/Carmona 30 ESP -#> 1746 /en/players/4e219ad2/Suso 7 ESP -#> 1747 /en/players/f6798fc3/Yassine-Bounou 13 MAR -#> 1748 /en/players/ac295d9e/Marko-Dmitrovic 1 SRB -#> 1749 /en/players/75645f0e/Borja-Iglesias 9 ESP -#> 1750 /en/players/85bed4ee/Rodri 28 ESP -#> 1751 /en/players/8059806f/Luiz-Henrique 11 BRA -#> 1752 /en/players/d87e2cae/Willian-Jose 12 BRA -#> 1753 /en/players/a6de370d/Sergio-Canales 10 ESP -#> 1754 /en/players/31f5b89b/Paul-Akouokou 4 CIV -#> 1755 /en/players/dee86451/William-Carvalho 14 POR -#> 1756 /en/players/34e393f2/Guido-Rodriguez 5 ARG -#> 1757 /en/players/16e9d0ea/Alex-Moreno 15 ESP -#> 1758 /en/players/15d0c248/Luiz-Felipe 19 ITA -#> 1759 /en/players/8c725b43/German-Pezzella 16 ARG -#> 1760 /en/players/49d028db/Edgar-Gonzalez 3 ESP -#> 1761 /en/players/5cec2487/Martin-Montoya 2 ESP -#> 1762 /en/players/a55d8df5/Aitor-Ruibal 24 ESP -#> 1763 /en/players/ea83bfa6/Rui-Silva 13 POR -#> 1764 /en/players/da76bab4/Valentin-Castellanos 9 ARG -#> 1765 /en/players/0bc4e720/Manu-Vallejo 25 ESP -#> 1766 /en/players/65154df0/Rodrigo-Riquelme 17 ESP -#> 1767 /en/players/13e0eb29/Samuel-Saiz 10 ESP -#> 1768 /en/players/6b21b7b5/Reinier 19 BRA -#> 1769 /en/players/a10361d2/Aleix-Garcia 14 ESP -#> 1770 /en/players/5f21b94c/Joel-Roca 33 ESP -#> 1771 /en/players/4b511457/Oriol-Romeu 18 ESP -#> 1772 /en/players/7e98cff1/Miguel-Gutierrez 3 ESP -#> 1773 /en/players/c3e66ffe/Arnau-Martinez 4 ESP -#> 1774 /en/players/1944818c/Yan-Couto 20 BRA -#> 1775 /en/players/1633fc8a/Juanpe 15 ESP -#> 1776 /en/players/4242011c/Bernardo-Espinosa 2 COL -#> 1777 /en/players/636eae97/Toni-Villa 12 ESP -#> 1778 /en/players/edc98fac/Santiago-Bueno 22 URU -#> 1779 /en/players/688b96e3/Juan-Carlos 1 ESP -#> 1780 /en/players/16aa3654/Takefusa-Kubo 14 JPN -#> 1781 /en/players/068f4dec/Benat-Turrientes 22 ESP -#> 1782 /en/players/e92cd3f7/Alexander-Sorloth 19 NOR -#> 1783 /en/players/d080ed5e/Mikel-Merino 8 ESP -#> 1784 /en/players/e2716bd0/David-Silva 21 ESP -#> 1785 /en/players/f8405304/Mohamed-Ali-Cho 11 FRA -#> 1786 /en/players/c9e39d91/Brais-Mendez 23 ESP -#> 1787 /en/players/5c7845f6/Igor-Zubeldia 5 ESP -#> 1788 /en/players/3ee0dd59/Martin-Zubimendi 3 ESP -#> 1789 /en/players/228b0d9d/Aihen-Munoz 12 ESP -#> 1790 /en/players/44150beb/Jon-Pacheco 20 ESP -#> 1791 /en/players/f7dc2ae5/Aritz-Elustondo 6 ESP -#> 1792 /en/players/6f5f82c0/Andoni-Gorosabel 18 ESP -#> 1793 /en/players/374ee424/Alex-Remiro 1 ESP -#> 1794 /en/players/fd771f95/Martin-Braithwaite 17 DEN -#> 1795 /en/players/6265208f/Joselu 9 ESP -#> 1796 /en/players/283c7121/Edu-Exposito 20 ESP -#> 1797 /en/players/0e5ddc7c/Dani-Gomez 19 ESP -#> 1798 /en/players/6a8a7af8/Vinicius-Souza 12 BRA -#> 1799 /en/players/ea610f00/Pol-Lozano 6 ESP -#> 1800 /en/players/070a3904/Sergi-Darder 10 ESP -#> 1801 /en/players/a3e4bf46/Brian-Olivan 14 ESP -#> 1802 /en/players/69cbc8b6/Leandro-Cabrera 4 URU -#> 1803 /en/players/bc6f5f06/Sergi-Gomez 24 ESP -#> 1804 /en/players/41b3069f/Fernando-Calero 5 ESP -#> 1805 /en/players/04965583/Aleix-Vidal 22 ESP -#> 1806 /en/players/139560df/Omar-El-Hilali 26 MAR -#> 1807 /en/players/2683eda7/Javi-Puado 7 ESP -#> 1808 /en/players/f127d782/Alvaro-Fernandez 25 ESP -#> 1809 /en/players/8aafd64f/Joao-Felix 7 POR -#> 1810 /en/players/dc62b55d/Matheus-Cunha 9 BRA -#> 1811 /en/players/df69b544/Antoine-Griezmann 8 FRA -#> 1812 /en/players/55126f3b/Koke 6 ESP -#> 1813 /en/players/01eb744d/Angel-Correa 10 ARG -#> 1814 /en/players/cce181df/Geoffrey-Kondogbia 4 CTA -#> 1815 /en/players/c14bc029/Saul-Niguez 17 ESP -#> 1816 /en/players/162efffd/Rodrigo-De-Paul 5 ARG -#> 1817 /en/players/129af0db/Alvaro-Morata 19 ESP -#> 1818 /en/players/de39485a/Yannick-Carrasco 21 BEL -#> 1819 /en/players/555f3a0b/Mario-Hermoso 22 ESP -#> 1820 /en/players/02c15616/Marcos-Llorente 14 ESP -#> 1821 /en/players/c20bdcd7/Reinildo-Mandava 23 MOZ -#> 1822 /en/players/5dfc6ad5/Axel-Witsel 20 BEL -#> 1823 /en/players/51a3c4c8/Felipe 18 BRA -#> 1824 /en/players/ee8508c0/Jan-Oblak 13 SVN -#> 1825 /en/players/8f5e92a6/Rodrygo 21 BRA -#> 1826 /en/players/c0617e2b/Dani-Ceballos 19 ESP -#> 1827 /en/players/7111d552/Vinicius-Junior 20 BRA -#> 1828 /en/players/0959c2a2/Federico-Valverde 15 URU -#> 1829 /en/players/6ce1f46f/Toni-Kroos 8 GER -#> 1830 /en/players/45af8a54/Marco-Asensio 11 ESP -#> 1831 /en/players/4f255115/Aurelien-Tchouameni 18 FRA -#> 1832 /en/players/6025fab1/Luka-Modric 10 CRO -#> 1833 /en/players/7b9c2d84/Eduardo-Camavinga 12 FRA -#> 1834 /en/players/3cefcaef/Ferland-Mendy 23 FRA -#> 1835 /en/players/18b896d6/Antonio-Rudiger 22 GER -#> 1836 /en/players/05439de2/David-Alaba 4 AUT -#> 1837 /en/players/2784f898/Eder-Militao 3 BRA -#> 1838 /en/players/4958bfb2/Dani-Carvajal 2 ESP -#> 1839 /en/players/1840e36d/Thibaut-Courtois 1 BEL -#> 1840 /en/players/6a99e0b1/Inaki-Williams 9 GHA -#> 1841 /en/players/dc1c2fce/Alex-Berenguer 7 ESP -#> 1842 /en/players/b0fce72c/Mikel-Vesga 6 ESP -#> 1843 /en/players/afdc14d7/Nico-Williams 11 ESP -#> 1844 /en/players/c05dfb74/Iker-Muniain 10 ESP -#> 1845 /en/players/57be54ec/Asier-Villalibre 20 ESP -#> 1846 /en/players/240d3a0b/Dani-Garcia 14 ESP -#> 1847 /en/players/968a1c2f/Oier-Zarraga 19 ESP -#> 1848 /en/players/bdb624a3/Oihan-Sancet 8 ESP -#> 1849 /en/players/436a9dd0/Ander-Herrera 23 ESP -#> 1850 /en/players/59b7d823/Inigo-Lekue 15 ESP -#> 1851 /en/players/3fc45c73/Inigo-Martinez 4 ESP -#> 1852 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP -#> 1853 /en/players/b906757a/Aitor-Paredes 31 ESP -#> 1854 /en/players/9f323c71/Oscar-de-Marcos 18 ESP -#> 1855 /en/players/5dcf3e90/Unai-Simon 1 ESP -#> 1856 /en/players/86ff856b/Lazaro 14 BRA -#> 1857 /en/players/db8f0eba/Adri-Embarba 10 ESP -#> 1858 /en/players/cc9256ef/Largie-Ramazani 7 BEL -#> 1859 /en/players/e4738e91/Dyego-Sousa 11 POR -#> 1860 /en/players/76c2a023/Samu-Costa 23 POR -#> 1861 /en/players/3e93f8cf/Inigo-Eguaras 4 ESP -#> 1862 /en/players/a8981944/Lucas-Robertone 5 ARG -#> 1863 /en/players/39352da2/Arnau-Puigmal 18 ESP -#> 1864 /en/players/8e010ff4/Francisco-Portillo 8 ESP -#> 1865 /en/players/35f6db55/Leo-Baptistao 12 BRA -#> 1866 /en/players/06efa9dc/Sergio-Akieme 15 ESP -#> 1867 /en/players/075fe5a3/Srdjan-Babic 22 SRB -#> 1868 /en/players/fd47b4f2/Rodrigo-Ely 19 BRA -#> 1869 /en/players/55634fb8/Kaiky 2 BRA -#> 1870 /en/players/1545cf15/Houboulang-Mendes 24 GNB -#> 1871 /en/players/dabb2827/Fernando 13 ESP -#> 1872 /en/players/63b0ca6b/Alvaro-Negredo 18 ESP -#> 1873 /en/players/aa677a35/Alex-Fernandez 8 ESP -#> 1874 /en/players/19b776e9/Ruben-Sobrino 7 ESP -#> 1875 /en/players/0da6a13e/Theo-Bongonda 10 COD -#> 1876 /en/players/38699c72/Anthony-Lozano 9 HON -#> 1877 /en/players/036bba5f/Ruben-Alcaraz 4 ESP -#> 1878 /en/players/6f4c734d/Jose-Mari 6 ESP -#> 1879 /en/players/efecd633/Fede-San-Emeterio 24 ESP -#> 1880 /en/players/a300ac7e/Lucas-Perez 15 ESP -#> 1881 /en/players/3d7e48ce/Ivan-Alejo 11 ESP -#> 1882 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP -#> 1883 /en/players/db001fa9/Alfonso-Espino 22 URU -#> 1884 /en/players/ec1a731e/Victor-Chust 32 ESP -#> 1885 /en/players/02d2c436/Luis-Hernandez 23 ESP -#> 1886 /en/players/c4b888df/Isaac-Carcelen 20 ESP -#> 1887 /en/players/6c4776b1/Jeremias-Ledesma 1 ARG -#> 1888 /en/players/9c36ed83/Nicolas-Jackson 15 SEN -#> 1889 /en/players/b8a642fc/Samuel-Chukwueze 11 NGA -#> 1890 /en/players/518f2234/Alex-Baena 16 ESP -#> 1891 /en/players/a6951bf8/Francis-Coquelin 19 FRA -#> 1892 /en/players/f08490a6/Arnaut-Danjuma 9 NED -#> 1893 /en/players/7460ca0d/Daniel-Parejo 10 ESP -#> 1894 /en/players/5acc4a10/Etienne-Capoue 6 FRA -#> 1895 /en/players/d7553721/Giovani-Lo-Celso 17 ARG -#> 1896 /en/players/4a478107/Jose-Luis-Morales 22 ESP -#> 1897 /en/players/63f04c6c/Alfonso-Pedraza 24 ESP -#> 1898 /en/players/532e1e4f/Pau-Torres 4 ESP -#> 1899 /en/players/4bd414c1/Raul-Albiol 3 ESP -#> 1900 /en/players/e5d01ecf/Kiko-Femenia 2 ESP -#> 1901 /en/players/625c144a/Geronimo-Rulli 13 ARG -#> 1902 /en/players/64e8ed6d/Borja-Mayoral 19 ESP -#> 1903 /en/players/f8eca1b6/Enes-Unal 10 TUR -#> 1904 /en/players/acc1aefa/Angel-Algobia 16 ESP -#> 1905 /en/players/a62b4888/Jaime-Seoane 8 ESP -#> 1906 /en/players/e6777e6b/Stefan-Mitrovic 23 SRB -#> 1907 /en/players/58afe001/Mauro-Arambarri 18 URU -#> 1908 /en/players/8696bc90/Munir-El-Haddadi 17 MAR -#> 1909 /en/players/6c811eb7/Carles-Alena 11 ESP -#> 1910 /en/players/974322dc/Iglesias 21 ESP -#> 1911 /en/players/2bea832e/Juanmi-Latasa 14 ESP -#> 1912 /en/players/852ddfb8/Gaston-Alvarez 4 URU -#> 1913 /en/players/93090f69/Domingos-Duarte 6 POR -#> 1914 /en/players/a4971d84/Djene 2 TOG -#> 1915 /en/players/ba5004e1/Damian-Suarez 22 URU -#> 1916 /en/players/8f8c6934/David-Soria 13 ESP -#> 1917 /en/players/0a0cc13c/Sergio-Leon 7 ESP -#> 1918 /en/players/379dc075/Shon-Weissman 9 ISR -#> 1919 /en/players/7c388b20/Oscar-Plano 10 ESP -#> 1920 /en/players/70107d4d/Ivan-Sanchez 21 ESP -#> 1921 /en/players/54bcdeb0/Gonzalo-Plata 11 ECU -#> 1922 /en/players/014aa7bd/Alvaro-Aguado 6 ESP -#> 1923 /en/players/7c4243d4/Roque-Mesa 17 ESP -#> 1924 /en/players/bbc19252/Mickael-Malsa 14 MTQ -#> 1925 /en/players/237a3851/Kike-Perez 4 ESP -#> 1926 /en/players/b0616e3d/Sergio-Escudero 18 ESP -#> 1927 /en/players/60359288/Javi-Sanchez 5 ESP -#> 1928 /en/players/b86a64b2/Joaquin-Fernandez 24 ESP -#> 1929 /en/players/f6f6b6e8/Jawad-El-Yamiq 15 MAR -#> 1930 /en/players/89151b16/Zouhair-Feddal 3 MAR -#> 1931 /en/players/29d0f2ac/Ivan-Fresneda 27 ESP -#> 1932 /en/players/8fae77ea/Jordi-Masip 1 ESP -#> 1933 /en/players/cc83b74d/Kasper-Dolberg 5 DEN -#> 1934 /en/players/a0b4bb3e/Isco 22 ESP -#> 1935 /en/players/abe66106/Erik-Lamela 17 ARG -#> 1936 /en/players/58a9a4d9/Oliver-Torres 21 ESP -#> 1937 /en/players/6e4df551/Papu-Gomez 24 ARG -#> 1938 /en/players/fe641c1a/Thomas-Delaney 18 DEN -#> 1939 /en/players/89f951b5/Ivan-Rakitic 10 CRO -#> 1940 /en/players/0076ab7f/Nemanja-Gudelj 6 SRB -#> 1941 /en/players/3376a776/Karim-Rekik 4 NED -#> 1942 /en/players/e73c9bb2/Alex-Telles 3 BRA -#> 1943 /en/players/0a69de7b/Kike-Salas 29 ESP -#> 1944 /en/players/3f10bd22/Jesus-Navas 16 ESP -#> 1945 /en/players/5853ac44/Tanguy-Nianzou 14 FRA -#> 1946 /en/players/04e17fd5/Youssef-En-Nesyri 15 MAR -#> 1947 /en/players/2dce876a/Carmona 30 ESP -#> 1948 /en/players/f6798fc3/Yassine-Bounou 13 MAR -#> 1949 /en/players/129af0db/Alvaro-Morata 19 ESP -#> 1950 /en/players/df69b544/Antoine-Griezmann 8 FRA -#> 1951 /en/players/dc62b55d/Matheus-Cunha 9 BRA -#> 1952 /en/players/01eb744d/Angel-Correa 10 ARG -#> 1953 /en/players/c14bc029/Saul-Niguez 17 ESP -#> 1954 /en/players/de39485a/Yannick-Carrasco 21 BEL -#> 1955 /en/players/55126f3b/Koke 6 ESP -#> 1956 /en/players/cce181df/Geoffrey-Kondogbia 4 CTA -#> 1957 /en/players/02c15616/Marcos-Llorente 14 ESP -#> 1958 /en/players/5dfc6ad5/Axel-Witsel 20 BEL -#> 1959 /en/players/c20bdcd7/Reinildo-Mandava 23 MOZ -#> 1960 /en/players/f0da930c/Jose-Maria-Gimenez 2 URU -#> 1961 /en/players/f6ac68c1/Stefan-Savic 15 MNE -#> 1962 /en/players/23610943/Nahuel-Molina 16 ARG -#> 1963 /en/players/8aafd64f/Joao-Felix 7 POR -#> 1964 /en/players/ee8508c0/Jan-Oblak 13 SVN -#> 1965 /en/players/0cadc46d/Vedat-Muriqi 7 KVX -#> 1966 /en/players/8455ad90/Lee-Kang-in 19 KOR -#> 1967 /en/players/bfd381b3/Iddrisu-Baba 12 GHA -#> 1968 /en/players/91f7631f/Inigo-Ruiz-de-Galarreta 4 ESP -#> 1969 /en/players/360d70f8/Lago-Junior 11 CIV -#> 1970 /en/players/a254bbe0/Antonio-Sanchez 10 ESP -#> 1971 /en/players/70f8e0bd/Dani-Rodriguez 14 ESP -#> 1972 /en/players/808d48f3/Jaume-Costa 18 ESP -#> 1973 /en/players/192c89a6/Braian-Cufre 3 ARG -#> 1974 /en/players/0f26ffd7/Copete 6 ESP -#> 1975 /en/players/b857bd29/Antonio-Raillo 21 ESP -#> 1976 /en/players/f2c6ac01/Martin-Valjent 24 SVK -#> 1977 /en/players/5db04597/Pablo-Maffeo 15 ESP -#> 1978 /en/players/58ad9383/Predrag-Rajkovic 1 SRB -#> 1979 /en/players/8d78e732/Robert-Lewandowski 9 POL -#> 1980 /en/players/0ba976e4/Ansu-Fati 10 ESP -#> 1981 /en/players/3423f250/Raphinha 22 BRA -#> 1982 /en/players/b19db005/Ousmane-Dembele 7 FRA -#> 1983 /en/players/9e1035f8/Ferran-Torres 11 ESP -#> 1984 /en/players/19cae58d/Gavi 30 ESP -#> 1985 /en/players/5ab0ea87/Sergio-Busquets 5 ESP -#> 1986 /en/players/05e19d6a/Franck-Kessie 19 CIV -#> 1987 /en/players/0d9b2d31/Pedri 8 ESP -#> 1988 /en/players/4601e194/Jordi-Alba 18 ESP -#> 1989 /en/players/335fa267/Sergi-Roberto 20 ESP -#> 1990 /en/players/1cb49278/Andreas-Christensen 15 DEN -#> 1991 /en/players/adfc9123/Gerard-Pique 3 ESP -#> 1992 /en/players/5ccc9672/Alejandro-Balde 28 ESP -#> 1993 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER -#> 1994 /en/players/6265208f/Joselu 9 ESP -#> 1995 /en/players/fd771f95/Martin-Braithwaite 17 DEN -#> 1996 /en/players/2683eda7/Javi-Puado 7 ESP -#> 1997 /en/players/04965583/Aleix-Vidal 22 ESP -#> 1998 /en/players/283c7121/Edu-Exposito 20 ESP -#> 1999 /en/players/03049c8c/Keidi-Bare 8 ALB -#> 2000 /en/players/6a8a7af8/Vinicius-Souza 12 BRA -#> 2001 /en/players/ea610f00/Pol-Lozano 6 ESP -#> 2002 /en/players/070a3904/Sergi-Darder 10 ESP -#> 2003 /en/players/7f271d74/Simo 28 ESP -#> 2004 /en/players/a3e4bf46/Brian-Olivan 14 ESP -#> 2005 /en/players/69cbc8b6/Leandro-Cabrera 4 URU -#> 2006 /en/players/bc6f5f06/Sergi-Gomez 24 ESP -#> 2007 /en/players/41b3069f/Fernando-Calero 5 ESP -#> 2008 /en/players/ce8039aa/Nico-Ribaudo 21 ESP -#> 2009 /en/players/f127d782/Alvaro-Fernandez 25 ESP -#> 2010 /en/players/527f063d/Edinson-Cavani 7 URU -#> 2011 /en/players/ae86d473/Marcos-Andre 22 BRA -#> 2012 /en/players/2a295d33/Samuel 16 BRA -#> 2013 /en/players/130a7a3f/Samu-Castillejo 11 ESP -#> 2014 /en/players/4c3a6744/Justin-Kluivert 9 NED -#> 2015 /en/players/f4c69aa6/Ilaix-Moriba 8 GUI -#> 2016 /en/players/37e103f8/Hugo-Duro 19 ESP -#> 2017 /en/players/45d96179/Hugo-Guillamon 6 -#> 2018 /en/players/e6697917/Domingos-Andre-Ribeiro-Almeida 18 POR -#> 2019 /en/players/2c56a792/Nicolas-Gonzalez 17 ESP -#> 2020 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP -#> 2021 /en/players/d2110326/Mouctar-Diakhaby 12 GUI -#> 2022 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA -#> 2023 /en/players/15937e17/Eray-Comert 24 SUI -#> 2024 /en/players/c78b352d/Thierry-Correia 2 POR -#> 2025 /en/players/d4b73232/Giorgi-Mamardashvili 25 GEO -#> 2026 /en/players/f553b2b3/Jorgen-Strand-Larsen 18 NOR -#> 2027 /en/players/962e54cb/Goncalo-Paciencia 9 POR -#> 2028 /en/players/a8f21b9f/Carles-Perez 7 ESP -#> 2029 /en/players/7dcf86f6/Iago-Aspas 10 ESP -#> 2030 /en/players/19709006/Oscar-Rodriguez-Arnaiz 5 ESP -#> 2031 /en/players/35a6e5c7/Gabriel-Veiga 28 ESP -#> 2032 /en/players/e9241b40/Luca-de-la-Torre 23 USA -#> 2033 /en/players/3ca6106c/Augusto-Solari 21 ARG -#> 2034 /en/players/34269bdf/Renato-Tapia 14 PER -#> 2035 /en/players/ed5c5fa3/Fran-Beltran 8 ESP -#> 2036 /en/players/a4b00319/Javi-Galan 17 ESP -#> 2037 /en/players/be170419/Unai-Nunez 4 ESP -#> 2038 /en/players/18abe173/Joseph-Aidoo 15 GHA -#> 2039 /en/players/cb574619/Hugo-Mallo 2 ESP -#> 2040 /en/players/056269d7/Oscar-Mingueza 3 ESP -#> Pos Age Min Tkl_Tackles TklW_Tackles Def 3rd_Tackles -#> 1 FW 20-258 80 1 0 0 -#> 2 CM 23-326 10 0 0 0 -#> 3 FW 28-187 80 0 0 0 -#> 4 FW 32-260 10 0 0 0 -#> 5 LM,RM 28-050 90 0 0 0 -#> 6 CM,DM 28-024 90 2 2 0 -#> 7 CM 24-091 90 2 2 1 -#> 8 RM 25-133 55 1 0 0 -#> 9 RB 27-200 35 1 1 1 -#> 10 LB,CB 30-015 90 1 0 0 -#> 11 CB 28-179 90 2 1 1 -#> 12 CB 30-190 78 0 0 0 -#> 13 LB,CB 21-353 12 1 1 1 -#> 14 RB,RM 31-025 61 0 0 0 -#> 15 LM 30-181 29 0 0 0 -#> 16 GK 29-068 90 0 0 0 -#> 17 FW 25-055 62 0 0 0 -#> 18 FW 25-072 28 1 0 0 -#> 19 LW 28-032 79 2 1 0 -#> 20 LW 29-240 11 0 0 0 -#> 21 RW 29-218 62 1 0 1 -#> 22 RW 30-161 28 0 0 0 -#> 23 AM 34-178 79 1 1 1 -#> 24 AM 21-124 11 0 0 0 -#> 25 DM 30-343 79 2 1 0 -#> 26 DM 34-155 11 0 0 0 -#> 27 DM 35-018 90 1 1 0 -#> 28 LB 30-288 90 3 3 0 -#> 29 CB 27-253 90 0 0 0 -#> 30 CB 30-269 90 1 1 1 -#> 31 RB 36-264 90 0 0 0 -#> 32 GK 31-129 90 0 0 0 -#> 33 FW 28-012 69 2 1 0 -#> 34 FW 24-178 21 1 1 0 -#> 35 FW 35-012 90 0 0 0 -#> 36 LM 28-079 89 3 0 0 -#> 37 LM 23-092 1 0 0 0 -#> 38 CM 24-046 84 2 0 1 -#> 39 CM 20-078 6 0 0 0 -#> 40 RM 30-222 45 0 0 0 -#> 41 RM 27-016 45 1 1 0 -#> 42 DM 23-191 90 2 1 1 -#> 43 LB 27-267 90 3 2 2 -#> 44 CB 25-195 90 1 1 0 -#> 45 CB 26-318 90 0 0 0 -#> 46 RB 31-052 90 4 1 0 -#> 47 GK 34-150 90 0 0 0 -#> 48 FW 32-139 90 0 0 0 -#> 49 LW 21-124 55 0 0 0 -#> 50 LW 30-098 35 1 0 0 -#> 51 RW 21-190 79 3 3 0 -#> 52 RW 17-332 11 0 0 0 -#> 53 LM 28-234 90 0 0 0 -#> 54 CM 26-333 55 2 1 1 -#> 55 CM 26-012 35 1 0 1 -#> 56 RM 23-057 87 3 1 0 -#> 57 RM 21-193 3 0 0 0 -#> 58 LB 28-134 90 4 2 0 -#> 59 CB 31-057 90 1 1 0 -#> 60 CB 30-138 90 1 1 0 -#> 61 RB 25-109 90 2 1 1 -#> 62 GK 31-109 90 0 0 0 -#> 63 FW 33-219 54 0 0 0 -#> 64 FW 27-099 36 0 0 0 -#> 65 LM 27-218 61 2 1 0 -#> 66 LM 31-183 29 1 1 1 -#> 67 CM 26-104 90 0 0 0 -#> 68 CM 33-067 55 1 0 0 -#> 69 CM 25-180 35 0 0 0 -#> 70 RM 21-285 55 1 0 1 -#> 71 RM 29-324 35 0 0 0 -#> 72 DM 22-334 90 4 1 1 -#> 73 LB 32-345 79 2 2 1 -#> 74 LB 28-023 11 1 0 1 -#> 75 CB 30-165 90 1 0 1 -#> 76 CB 26-074 90 1 1 1 -#> 77 RB 27-190 90 2 2 2 -#> 78 GK 33-046 90 0 0 0 -#> 79 FW 21-054 90 0 0 0 -#> 80 FW 30-128 71 0 0 0 -#> 81 FW 35-021 19 0 0 0 -#> 82 LM 31-092 62 3 1 0 -#> 83 RM 23-083 28 0 0 0 -#> 84 CM 33-119 90 5 3 1 -#> 85 CM 34-033 90 2 1 0 -#> 86 RM 19-297 62 3 1 1 -#> 87 LM 21-024 28 0 0 0 -#> 88 LB 26-126 90 1 1 1 -#> 89 CB 25-209 90 1 0 0 -#> 90 CB 36-343 90 0 0 0 -#> 91 RB 24-213 87 3 3 2 -#> 92 RB 30-295 3 0 0 0 -#> 93 GK 30-085 90 0 0 0 -#> 94 FW 33-357 90 2 2 0 -#> 95 LW,RW 25-090 90 0 0 0 -#> 96 RW 25-242 59 2 2 0 -#> 97 RW,FW 19-286 31 0 0 0 -#> 98 LM 19-261 71 0 0 0 -#> 99 CM,LM 25-237 19 0 0 0 -#> 100 CM,DM 34-028 89 1 1 0 -#> 101 RM 18-008 59 1 0 0 -#> 102 RM,CM 25-093 31 1 0 0 -#> 103 LB 33-145 81 1 1 0 -#> 104 LW 33-056 9 0 0 0 -#> 105 CB 21-216 90 3 2 1 -#> 106 CB 26-125 59 3 1 1 -#> 107 RB,CB 30-187 31 0 0 0 -#> 108 RB,CB 23-159 90 2 1 1 -#> 109 GK 30-105 90 0 0 0 -#> 110 FW 21-184 61 1 1 0 -#> 111 FW 36-184 29 0 0 0 -#> 112 LW 29-290 90 0 0 0 -#> 113 RW 27-229 78 4 3 2 -#> 114 RW 31-136 12 0 0 0 -#> 115 AM 34-109 83 1 1 0 -#> 116 AM 26-151 7 1 1 0 -#> 117 DM 28-150 90 6 5 1 -#> 118 DM 26-287 61 0 0 0 -#> 119 DM 27-358 29 2 1 1 -#> 120 LB 22-364 90 2 2 2 -#> 121 CB 27-289 90 0 0 0 -#> 122 CB 31-085 90 1 1 1 -#> 123 RB 30-224 90 0 0 0 -#> 124 GK 28-231 90 0 0 0 -#> 125 FW 29-111 90 0 0 0 -#> 126 FW 33-338 72 0 0 0 -#> 127 FW 36-359 18 0 0 0 -#> 128 LM 24-101 64 0 0 0 -#> 129 RM 27-185 26 2 0 0 -#> 130 CM 34-251 64 1 1 1 -#> 131 CM 23-207 26 1 0 0 -#> 132 CM 29-002 90 4 4 2 -#> 133 RM 31-238 45 2 0 2 -#> 134 LM,RM 26-333 45 1 0 0 -#> 135 LB 30-221 90 3 3 2 -#> 136 CB 22-162 90 3 3 2 -#> 137 CB 33-122 90 1 0 0 -#> 138 RB 30-051 85 1 1 1 -#> 139 RB 22-049 5 1 1 1 -#> 140 GK 29-182 90 0 0 0 -#> 141 FW 21-071 77 1 0 0 -#> 142 RW 18-207 13 2 2 2 -#> 143 FW 22-327 84 1 1 0 -#> 144 FW 19-329 6 0 0 0 -#> 145 AM 36-218 77 3 2 0 -#> 146 LW 20-230 13 3 2 3 -#> 147 LM 26-053 77 1 1 0 -#> 148 DM 32-159 13 0 0 0 -#> 149 RM,AM 25-219 90 4 3 0 -#> 150 DM 23-193 90 1 1 0 -#> 151 LB 29-172 81 3 3 1 -#> 152 LB 24-363 9 0 0 0 -#> 153 CB 25-276 90 1 0 1 -#> 154 CB 25-137 90 3 0 1 -#> 155 RB 28-139 90 2 0 1 -#> 156 GK 27-143 90 0 0 0 -#> 157 FW 22-277 52 2 2 1 -#> 158 CB 18-048 38 1 1 1 -#> 159 LW,CM,LM 22-234 73 3 2 1 -#> 160 FW 26-000 17 0 0 0 -#> 161 RW,FW 27-208 72 1 1 0 -#> 162 CM 20-223 18 0 0 0 -#> 163 LM,CM 25-224 62 0 0 0 -#> 164 CB 29-144 28 0 0 0 -#> 165 CM 22-195 90 NA 1 NA -#> 166 RM,CM 19-258 90 2 2 1 -#> 167 LB 19-224 72 0 0 0 -#> 168 LB 24-266 18 1 0 1 -#> 169 CB 25-238 90 0 0 0 -#> 170 CB 24-191 51 2 2 1 -#> 171 RB 23-158 90 1 1 1 -#> 172 GK 21-319 90 0 0 0 -#> 173 FW 23-315 90 1 0 0 -#> 174 AM 31-204 60 0 0 0 -#> 175 RM 19-225 30 0 0 0 -#> 176 AM,LM 22-134 90 1 0 1 -#> 177 CM 25-047 90 2 2 0 -#> 178 CM 21-300 73 0 0 0 -#> 179 RM 24-212 17 1 0 0 -#> 180 WB 22-264 61 1 0 1 -#> 181 LB 21-018 29 0 0 0 -#> 182 WB,RB 20-072 81 1 1 1 -#> 183 RB 19-111 9 0 0 0 -#> 184 CB 31-106 90 2 0 0 -#> 185 CB 32-309 61 0 0 0 -#> 186 FW 35-306 29 0 0 0 -#> 187 CB 23-278 90 4 1 3 -#> 188 GK 34-206 90 0 0 0 -#> 189 FW 25-193 70 0 0 0 -#> 190 FW 32-334 20 0 0 0 -#> 191 FW 21-168 70 0 0 0 -#> 192 LM,FW 26-179 20 0 0 0 -#> 193 CM 21-260 90 1 1 0 -#> 194 CM 30-160 80 1 1 0 -#> 195 AM 32-062 10 0 0 0 -#> 196 CM 25-149 56 1 1 1 -#> 197 CM,RM 26-223 34 2 0 1 -#> 198 LB 24-241 90 0 0 0 -#> 199 CB 26-114 90 0 0 0 -#> 200 CB 28-284 90 1 1 0 -#> 201 CB 18-214 80 2 2 2 -#> 202 AM 21-216 10 0 0 0 -#> 203 RB 23-165 90 3 1 2 -#> 204 GK 32-065 90 0 0 0 -#> 205 FW 34-238 90 0 0 0 -#> 206 LW 22-033 82 1 1 0 -#> 207 LM 26-007 8 0 0 0 -#> 208 RW,RM 24-023 90 0 0 0 -#> 209 LM,CM 32-222 82 1 0 0 -#> 210 CM 30-172 8 0 0 0 -#> 211 CM 22-199 57 2 0 2 -#> 212 RW,LW 31-219 33 0 0 0 -#> 213 RM 19-277 45 2 1 0 -#> 214 RM,LM 36-339 45 0 0 0 -#> 215 LB 27-067 73 2 1 1 -#> 216 LB 30-051 17 0 0 0 -#> 217 CB 32-208 90 0 0 0 -#> 218 CB 29-164 90 0 0 0 -#> 219 RB 31-044 90 1 1 1 -#> 220 GK 30-095 90 0 0 0 -#> 221 FW 24-319 56 0 0 0 -#> 222 FW 36-035 34 0 0 0 -#> 223 LW 27-042 69 0 0 0 -#> 224 LW 20-034 21 0 0 0 -#> 225 RW 28-061 85 1 0 0 -#> 226 RW 20-307 5 0 0 0 -#> 227 LM 29-239 69 1 0 0 -#> 228 LM 25-337 21 0 0 0 -#> 229 CM 29-086 90 4 1 2 -#> 230 RM 22-112 56 1 1 0 -#> 231 RM 23-223 34 0 0 0 -#> 232 LB 32-186 90 0 0 0 -#> 233 CB 27-203 90 2 2 1 -#> 234 CB 23-031 90 1 1 1 -#> 235 RB 33-123 90 0 0 0 -#> 236 GK 25-065 90 0 0 0 -#> 237 FW 28-113 86 1 0 1 -#> 238 FW 29-251 4 0 0 0 -#> 239 LM 34-070 64 3 1 3 -#> 240 RM 25-226 26 1 1 1 -#> 241 CM 31-034 90 2 0 1 -#> 242 CM 31-220 82 1 0 0 -#> 243 CM 26-205 8 0 0 0 -#> 244 RM,LM 21-177 85 3 1 1 -#> 245 LM 31-227 5 0 0 0 -#> 246 LB 34-150 90 1 1 1 -#> 247 CB 22-309 90 2 2 1 -#> 248 CB 30-311 90 1 0 1 -#> 249 CB 26-247 90 4 3 4 -#> 250 RB 25-034 90 0 0 0 -#> 251 GK 26-288 90 0 0 0 -#> 252 FW 25-097 80 0 0 0 -#> 253 FW 33-295 10 0 0 0 -#> 254 FW 25-132 80 0 0 0 -#> 255 FW 20-052 10 1 0 0 -#> 256 CM 27-201 62 2 0 2 -#> 257 CM 25-205 28 0 0 0 -#> 258 CM 26-319 90 2 2 1 -#> 259 CM 24-222 57 1 1 0 -#> 260 CM 30-086 33 1 1 0 -#> 261 LB 28-153 90 1 0 0 -#> 262 CB 27-158 90 1 0 0 -#> 263 CB 32-085 90 0 0 0 -#> 264 CB 30-227 90 0 0 0 -#> 265 RB 24-043 90 2 2 2 -#> 266 GK 29-133 90 0 0 0 -#> 267 FW 22-278 82 0 0 0 -#> 268 FW 27-159 8 0 0 0 -#> 269 FW 29-296 82 0 0 0 -#> 270 FW 23-080 8 0 0 0 -#> 271 CM 26-276 61 2 1 0 -#> 272 CM 31-147 29 1 1 1 -#> 273 CM 30-219 90 3 3 1 -#> 274 CM 27-197 61 1 1 1 -#> 275 CM 28-083 29 0 0 0 -#> 276 LB 27-267 61 5 4 3 -#> 277 LB 28-345 29 1 1 1 -#> 278 CB 28-206 90 3 1 2 -#> 279 CB 33-215 90 0 0 0 -#> 280 CB 31-219 90 3 3 2 -#> 281 RB 24-131 90 1 0 1 -#> 282 GK 29-220 90 0 0 0 -#> 283 FW 29-210 78 1 0 1 -#> 284 FW 28-228 12 2 2 0 -#> 285 LW 29-087 90 1 0 0 -#> 286 RW 22-091 86 1 1 0 -#> 287 RW 22-208 4 0 0 0 -#> 288 AM 29-028 63 0 0 0 -#> 289 AM 21-221 27 0 0 0 -#> 290 DM 30-130 90 3 2 2 -#> 291 DM 28-125 86 1 1 1 -#> 292 DM 24-238 4 1 1 1 -#> 293 LB 29-068 90 0 0 0 -#> 294 CB 25-136 90 1 1 0 -#> 295 CB 31-049 90 3 2 2 -#> 296 RB 26-146 78 2 1 2 -#> 297 RB 21-035 12 0 0 0 -#> 298 GK 28-189 90 0 0 0 -#> 299 FW 31-224 64 0 0 0 -#> 300 FW 25-139 26 1 1 0 -#> 301 LW 32-292 45 0 0 0 -#> 302 RM 25-254 45 0 0 0 -#> 303 RW,LM 29-326 64 2 1 1 -#> 304 LM 32-255 26 0 0 0 -#> 305 LB,LM 29-359 90 2 2 1 -#> 306 CM 27-240 75 0 0 0 -#> 307 CM 20-061 15 0 0 0 -#> 308 CM 29-194 90 2 2 1 -#> 309 RB,RM 29-065 90 2 1 2 -#> 310 CB 31-334 90 1 0 1 -#> 311 CB 29-364 45 2 1 2 -#> 312 CB 27-199 45 0 0 0 -#> 313 CB 21-350 15 0 0 0 -#> 314 GK 30-184 90 0 0 0 -#> 315 FW 32-145 90 0 0 0 -#> 316 LW 21-130 34 0 0 0 -#> 317 CB 26-339 56 1 0 0 -#> 318 RW,RM 21-196 63 3 2 2 -#> 319 LM 24-086 27 0 0 0 -#> 320 CM,LM 28-240 90 1 0 0 -#> 321 CM,CB 23-063 90 3 2 1 -#> 322 RM,LM 26-018 76 1 1 0 -#> 323 RM 24-356 14 0 0 0 -#> 324 LB 28-140 76 1 1 1 -#> 325 LB 17-338 14 0 0 0 -#> 326 CB 31-063 90 1 0 1 -#> 327 CB 30-144 29 0 0 0 -#> 328 RB 25-115 90 0 0 0 -#> 329 GK 31-115 90 0 0 0 -#> 330 FW 21-190 73 0 0 0 -#> 331 FW 36-190 17 0 0 0 -#> 332 LW 29-296 84 0 0 0 -#> 333 CM,LW 24-256 6 1 1 1 -#> 334 RW 27-235 56 0 0 0 -#> 335 RW,CM 31-142 34 0 0 0 -#> 336 DM,AM 34-115 56 1 1 1 -#> 337 DM,CM 27-364 34 1 1 0 -#> 338 CB,DM 28-156 90 1 1 1 -#> 339 DM 26-293 84 0 0 0 -#> 340 CB,DM 35-176 6 0 0 0 -#> 341 LB 23-005 90 1 1 0 -#> 342 CB 27-295 90 1 1 1 -#> 343 CB 31-091 15 0 0 0 -#> 344 RB 30-230 90 1 1 1 -#> 345 GK 28-237 90 0 0 0 -#> 346 FW 25-062 62 0 0 0 -#> 347 FW 25-079 28 0 0 0 -#> 348 LW 34-185 67 0 0 0 -#> 349 LW,LM 30-120 23 2 2 1 -#> 350 RW,LW 30-168 90 4 3 0 -#> 351 LM 27-282 78 3 1 0 -#> 352 RM,LM 34-162 12 0 0 0 -#> 353 CM 35-025 90 3 2 1 -#> 354 RM 28-044 63 2 1 0 -#> 355 RM,RW 28-039 27 1 0 0 -#> 356 LB 30-295 77 2 1 2 -#> 357 LB 29-247 13 0 0 0 -#> 358 CB 27-260 90 0 0 0 -#> 359 CB 20-073 90 1 1 1 -#> 360 RB 25-230 90 0 0 0 -#> 361 GK 31-136 90 0 0 0 -#> 362 FW 31-082 66 2 1 1 -#> 363 FW 22-340 24 0 0 0 -#> 364 LW 27-216 90 3 3 0 -#> 365 RW 29-330 66 1 1 1 -#> 366 RW 33-225 24 0 0 0 -#> 367 LM 25-186 90 2 1 2 -#> 368 CM 33-073 66 1 0 1 -#> 369 CM 31-189 24 1 1 0 -#> 370 RM 26-110 90 0 0 0 -#> 371 LB 32-351 45 3 3 1 -#> 372 LB 28-029 45 1 1 1 -#> 373 CB 30-171 22 2 1 2 -#> 374 CB 26-080 68 1 1 1 -#> 375 CB 25-158 90 0 0 0 -#> 376 RB 27-196 90 3 3 2 -#> 377 GK 33-052 90 0 0 0 -#> 378 FW 20-266 83 1 1 0 -#> 379 FW 33-166 7 0 0 0 -#> 380 FW 31-029 64 0 0 0 -#> 381 FW 32-268 26 0 0 0 -#> 382 LM 28-058 90 0 0 0 -#> 383 CM 28-032 90 3 1 0 -#> 384 CM 24-099 75 0 0 0 -#> 385 CM 30-189 15 2 1 0 -#> 386 RM 28-195 65 0 0 0 -#> 387 RM 29-037 25 0 0 0 -#> 388 LB 30-023 90 1 0 1 -#> 389 CB 28-187 90 2 1 2 -#> 390 CB 30-198 90 3 2 0 -#> 391 RB 31-033 74 1 1 0 -#> 392 RB 27-208 16 0 0 0 -#> 393 GK 29-076 90 0 0 0 -#> 394 FW,LM 29-117 90 0 0 0 -#> 395 FW 33-344 79 0 0 0 -#> 396 CM 25-157 11 1 0 1 -#> 397 LM 26-339 61 0 0 0 -#> 398 LM,CM 34-257 29 1 0 0 -#> 399 CM 23-213 75 0 0 0 -#> 400 CM 29-008 61 1 0 1 -#> 401 CM,LB 24-107 29 3 2 2 -#> 402 RM 22-055 61 1 0 1 -#> 403 RM 27-191 29 0 0 0 -#> 404 LB 30-227 74 5 3 3 -#> 405 FW,LB 37-000 16 0 0 0 -#> 406 CB 22-168 90 0 0 0 -#> 407 CB 33-128 90 1 0 0 -#> 408 RB 30-057 90 2 2 2 -#> 409 GK 29-188 90 0 0 0 -#> 410 FW 28-118 90 2 2 0 -#> 411 FW 21-182 90 1 1 0 -#> 412 CM 34-075 78 1 0 0 -#> 413 CM 29-256 12 0 0 0 -#> 414 CM 31-039 79 1 0 1 -#> 415 FW 26-210 11 2 1 0 -#> 416 CM 31-225 63 3 2 0 -#> 417 CM 25-231 27 0 0 0 -#> 418 LB 34-155 90 2 2 1 -#> 419 CB 22-314 86 2 1 0 -#> 420 CB 31-232 4 0 0 0 -#> 421 CB 30-316 90 1 0 1 -#> 422 CB 26-252 90 2 2 1 -#> 423 RB 25-039 90 0 0 0 -#> 424 GK 26-293 90 0 0 0 -#> 425 FW 29-215 78 0 0 0 -#> 426 DM 24-243 12 1 0 0 -#> 427 LW 29-092 90 0 0 0 -#> 428 RW 22-096 63 0 0 0 -#> 429 RW 21-226 27 0 0 0 -#> 430 AM,FW 29-033 90 0 0 0 -#> 431 DM,AM 30-135 87 0 0 0 -#> 432 FW 28-233 3 0 0 0 -#> 433 DM 28-130 90 4 3 0 -#> 434 LB 29-073 90 4 3 4 -#> 435 CB 25-141 90 0 0 0 -#> 436 CB 31-054 90 0 0 0 -#> 437 RB 26-151 90 1 1 1 -#> 438 GK 28-194 90 0 0 0 -#> 439 FW 28-019 68 0 0 0 -#> 440 FW 24-185 22 0 0 0 -#> 441 FW 35-019 90 0 0 0 -#> 442 LM 24-053 78 1 1 0 -#> 443 LM 20-085 12 0 0 0 -#> 444 CM 23-198 90 1 1 1 -#> 445 RM 28-086 90 3 3 1 -#> 446 DM 27-023 86 0 0 0 -#> 447 DM 24-089 4 0 0 0 -#> 448 LB 27-274 90 2 1 2 -#> 449 CB 25-202 90 1 1 0 -#> 450 CB 26-325 90 3 1 2 -#> 451 RB 31-059 90 2 1 1 -#> 452 GK 34-157 90 0 0 0 -#> 453 FW 34-244 90 1 0 1 -#> 454 LW 22-039 82 3 1 1 -#> 455 LW 31-225 8 0 0 0 -#> 456 RW 24-029 90 2 1 0 -#> 457 LM 19-283 82 1 1 1 -#> 458 LM 26-211 8 1 1 1 -#> 459 CM 22-205 90 2 1 0 -#> 460 RM 36-345 76 1 1 1 -#> 461 RM 26-013 14 0 0 0 -#> 462 LB 27-073 90 1 1 1 -#> 463 CB 30-057 76 0 0 0 -#> 464 RB 31-050 14 0 0 0 -#> 465 CB 24-214 90 1 0 1 -#> 466 RB 30-221 68 1 1 0 -#> 467 CB,RB 29-170 22 0 0 0 -#> 468 GK 30-101 90 0 0 0 -#> 469 FW,RW 28-067 89 2 2 0 -#> 470 RW 23-340 1 0 0 0 -#> 471 LW 27-048 63 1 0 1 -#> 472 AM,DM 23-229 27 0 0 0 -#> 473 RW,LW 20-040 89 0 0 0 -#> 474 LW 30-194 1 0 0 0 -#> 475 AM,LW 29-245 72 0 0 0 -#> 476 FW 36-041 18 0 0 0 -#> 477 DM 29-092 90 4 4 1 -#> 478 DM,AM 22-118 72 0 0 0 -#> 479 DM 21-279 18 0 0 0 -#> 480 LB 32-192 90 3 3 3 -#> 481 CB 27-209 90 1 1 1 -#> 482 CB 23-037 90 3 1 3 -#> 483 RB 33-129 90 3 1 2 -#> 484 GK 25-071 90 0 0 0 -#> 485 FW 22-284 16 0 0 0 -#> 486 FW,RW 26-007 74 0 0 0 -#> 487 LW 22-241 90 1 1 0 -#> 488 RW,RM 27-215 90 0 0 0 -#> 489 LM,CM 25-231 90 2 0 0 -#> 490 CM 22-202 74 NA 0 NA -#> 491 FW 25-305 16 0 0 0 -#> 492 RM 19-265 61 2 2 2 -#> 493 LM,RM 20-230 29 0 0 0 -#> 494 LB 19-231 61 2 2 1 -#> 495 LB 24-273 29 1 0 0 -#> 496 CB 25-245 90 3 1 2 -#> 497 CB 31-268 90 1 1 1 -#> 498 RB 23-165 74 2 2 2 -#> 499 RB 29-151 16 1 1 1 -#> 500 GK 21-326 90 0 0 0 -#> 501 FW 22-284 69 2 2 0 -#> 502 FW 27-165 21 0 0 0 -#> 503 FW 29-302 69 1 1 0 -#> 504 FW 23-086 21 0 0 0 -#> 505 LW 28-351 90 3 3 0 -#> 506 RW 24-137 89 1 1 0 -#> 507 CM 26-282 61 1 0 0 -#> 508 CM 28-089 29 0 0 0 -#> 509 CM 27-203 61 2 1 1 -#> 510 CM 31-153 29 0 0 0 -#> 511 DM 30-225 90 3 3 2 -#> 512 CB 28-212 90 2 2 2 -#> 513 CB 33-221 90 2 1 1 -#> 514 CB 31-225 75 1 1 1 -#> 515 CB 27-213 15 0 0 0 -#> 516 GK 29-226 90 0 0 0 -#> 517 FW 21-062 83 0 0 0 -#> 518 FW 35-029 7 0 0 0 -#> 519 FW 30-136 90 0 0 0 -#> 520 LM 26-134 69 0 0 0 -#> 521 LM 21-032 21 1 0 0 -#> 522 CM 33-127 90 0 0 0 -#> 523 CM 34-041 68 0 0 0 -#> 524 CM 31-100 22 0 0 0 -#> 525 RM 19-305 75 1 0 1 -#> 526 RM 23-091 15 0 0 0 -#> 527 LB 26-134 90 0 0 0 -#> 528 CB 25-217 90 0 0 0 -#> 529 CB 36-351 90 1 1 1 -#> 530 RB 24-221 90 3 1 1 -#> 531 GK 30-093 90 0 0 0 -#> 532 FW 21-078 68 4 3 2 -#> 533 FW 18-214 22 0 0 0 -#> 534 FW 22-334 68 0 0 0 -#> 535 LM,FW 20-131 22 0 0 0 -#> 536 AM 36-225 68 2 1 1 -#> 537 AM 20-202 22 2 2 2 -#> 538 LM 26-060 77 5 1 3 -#> 539 FW 19-336 13 0 0 0 -#> 540 RM 25-226 90 0 0 0 -#> 541 DM 23-200 90 5 4 4 -#> 542 LB 25-005 90 3 0 1 -#> 543 CB 25-283 90 1 0 0 -#> 544 CB 25-144 90 1 1 1 -#> 545 RB 28-146 77 1 1 0 -#> 546 RB 26-017 13 1 0 0 -#> 547 GK 27-150 90 0 0 0 -#> 548 FW 34-000 90 1 0 0 -#> 549 LW 18-307 63 0 0 0 -#> 550 RW 25-250 27 1 1 0 -#> 551 RW,LW 25-098 71 2 0 0 -#> 552 LB,LW 33-153 19 1 1 1 -#> 553 CM 22-173 63 0 0 0 -#> 554 LW,CM 19-294 27 0 0 0 -#> 555 DM,LM,CM 19-269 90 3 2 1 -#> 556 CM,DM,RM 18-016 84 1 0 1 -#> 557 RM 25-245 6 0 0 0 -#> 558 DM,CM 25-101 84 4 1 1 -#> 559 CM 30-195 6 1 1 1 -#> 560 LB,CB 21-224 90 3 2 3 -#> 561 CB 26-133 90 0 0 0 -#> 562 RB 23-167 90 3 3 1 -#> 563 GK 30-113 90 0 0 0 -#> 564 FW 23-323 85 0 0 0 -#> 565 CM 21-308 5 0 0 0 -#> 566 FW 35-314 68 1 0 0 -#> 567 FW 20-215 22 1 1 1 -#> 568 LW 21-026 68 1 1 1 -#> 569 LW,LB 24-112 22 0 0 0 -#> 570 RW,RB 20-080 90 1 0 0 -#> 571 CM 22-142 54 0 0 0 -#> 572 CM,LM 31-212 36 1 1 0 -#> 573 CM,RM 24-220 90 1 0 0 -#> 574 DM,CM 25-055 90 1 0 1 -#> 575 CB 31-114 90 1 1 0 -#> 576 CB 32-317 90 1 0 1 -#> 577 CB 23-286 90 4 4 2 -#> 578 GK 34-214 90 0 0 0 -#> 579 FW 25-139 90 0 0 0 -#> 580 FW 25-104 90 2 2 0 -#> 581 CM 27-208 45 1 1 0 -#> 582 CM 25-212 45 3 1 0 -#> 583 CM 26-326 90 1 1 0 -#> 584 CM,LM 24-229 90 0 0 0 -#> 585 LB 28-160 89 4 3 3 -#> 586 CB 27-165 90 0 0 0 -#> 587 CB 32-092 64 0 0 0 -#> 588 RM 30-093 26 0 0 0 -#> 589 CB 30-234 90 0 0 0 -#> 590 RB 24-050 90 5 0 3 -#> 591 GK 29-140 90 0 0 0 -#> 592 FW 35-318 90 0 0 0 -#> 593 FW 23-327 80 0 0 0 -#> 594 FW 17-080 10 0 0 0 -#> 595 LM 19-237 58 3 2 2 -#> 596 LM 20-219 32 1 1 1 -#> 597 CM 32-321 90 4 4 0 -#> 598 CM 25-059 90 0 0 0 -#> 599 RM 24-224 9 0 0 0 -#> 600 RM 21-312 49 1 0 0 -#> 601 RM 31-216 32 1 1 0 -#> 602 LB 21-030 80 3 1 2 -#> 603 LB 24-116 10 2 2 2 -#> 604 CB 31-118 90 0 0 0 -#> 605 CB 23-290 90 2 0 2 -#> 606 RB 20-084 90 3 1 2 -#> 607 GK 34-218 90 0 0 0 -#> 608 FW 24-191 69 0 0 0 -#> 609 FW 30-235 21 0 0 0 -#> 610 FW 35-025 90 0 0 0 -#> 611 LM 28-092 89 4 0 1 -#> 612 LM 21-196 1 0 0 0 -#> 613 CM 23-204 90 1 1 0 -#> 614 RM 24-059 76 0 0 0 -#> 615 RM 28-025 14 0 0 0 -#> 616 DM 27-029 69 2 1 2 -#> 617 DM 20-091 21 1 1 0 -#> 618 LB 27-280 90 5 4 2 -#> 619 CB 25-208 90 1 1 0 -#> 620 CB 26-331 90 1 1 0 -#> 621 RB 31-065 90 0 0 0 -#> 622 GK 34-163 90 0 0 0 -#> 623 FW 29-221 74 1 1 1 -#> 624 CB 25-157 16 0 0 0 -#> 625 LW 29-098 63 0 0 0 -#> 626 RW 21-236 27 1 0 1 -#> 627 RW 22-102 45 0 0 0 -#> 628 LW,RW 31-191 45 0 0 0 -#> 629 AM 29-039 89 2 1 1 -#> 630 DM 35-332 1 0 0 0 -#> 631 DM,AM 30-141 90 2 0 0 -#> 632 DM 28-136 90 5 1 0 -#> 633 LB 29-079 90 0 0 0 -#> 634 CB 25-147 90 1 1 1 -#> 635 CB 31-060 72 0 0 0 -#> 636 RB 26-157 90 2 1 1 -#> 637 GK 28-200 90 0 0 0 -#> 638 FW 28-201 61 1 1 0 -#> 639 FW 31-035 29 0 0 0 -#> 640 FW 20-272 61 0 0 0 -#> 641 FW 32-274 29 0 0 0 -#> 642 LM,CM 28-064 90 1 0 0 -#> 643 CM 28-038 77 0 0 0 -#> 644 RM 29-043 13 1 0 1 -#> 645 CM 24-105 90 4 1 1 -#> 646 RM 31-039 76 2 0 0 -#> 647 LM 25-147 14 0 0 0 -#> 648 LB,CB 30-029 90 0 0 0 -#> 649 CB 28-193 90 4 2 1 -#> 650 CB 30-204 70 1 1 1 -#> 651 LB 22-002 20 0 0 0 -#> 652 RB 27-214 90 3 2 2 -#> 653 GK 29-082 90 0 0 0 -#> 654 FW 25-151 60 0 0 0 -#> 655 FW 26-180 30 0 0 0 -#> 656 FW 31-236 60 1 0 0 -#> 657 FW 29-338 30 0 0 0 -#> 658 LM 25-266 90 0 0 0 -#> 659 CM 27-252 45 0 0 0 -#> 660 CM 25-240 45 1 1 1 -#> 661 CM 29-206 77 1 0 0 -#> 662 CM 22-282 13 1 1 0 -#> 663 RM 23-127 90 5 4 3 -#> 664 LB 30-006 90 2 1 2 -#> 665 CB 31-346 90 3 2 3 -#> 666 CB 30-011 90 2 1 2 -#> 667 RB 25-014 45 1 0 0 -#> 668 RB 29-077 45 0 0 0 -#> 669 GK 30-196 90 0 0 0 -#> 670 FW 18-220 59 0 0 0 -#> 671 FW 19-342 31 1 0 0 -#> 672 FW 21-084 77 0 0 0 -#> 673 FW 20-243 13 1 1 1 -#> 674 AM 36-231 77 0 0 0 -#> 675 LM 32-172 13 1 0 1 -#> 676 LM,RM 26-066 90 2 2 2 -#> 677 RM,AM 25-232 90 4 2 0 -#> 678 DM 23-206 90 5 3 4 -#> 679 LB 25-011 90 5 4 3 -#> 680 CB 25-289 90 2 1 2 -#> 681 CB 25-150 60 1 1 1 -#> 682 CB,RB 28-152 30 0 0 0 -#> 683 RB 26-023 87 4 1 2 -#> 684 CB 21-231 3 0 0 0 -#> 685 GK 27-156 90 0 0 0 -#> 686 FW 36-198 77 0 0 0 -#> 687 FW 24-264 13 0 0 0 -#> 688 LW 29-304 90 1 0 0 -#> 689 RW 31-150 56 2 0 0 -#> 690 RW 32-046 34 0 0 0 -#> 691 AM 34-123 56 1 1 0 -#> 692 DM,AM 25-326 34 1 0 0 -#> 693 DM 26-301 56 1 0 1 -#> 694 AM,DM 21-198 34 0 0 0 -#> 695 DM 28-007 85 5 2 0 -#> 696 DM 26-165 5 0 0 0 -#> 697 LB 23-013 90 0 0 0 -#> 698 CB 27-303 90 0 0 0 -#> 699 CB 28-164 90 2 2 0 -#> 700 RB 30-238 90 1 1 0 -#> 701 GK 28-245 90 0 0 0 -#> 702 FW 28-125 86 0 0 0 -#> 703 FW 29-263 4 1 0 1 -#> 704 FW 21-189 73 0 0 0 -#> 705 FW 19-350 17 0 0 0 -#> 706 CM 34-082 86 0 0 0 -#> 707 CM 29-021 4 0 0 0 -#> 708 CM 31-046 90 2 1 1 -#> 709 CM 31-232 66 1 1 0 -#> 710 CM 25-238 24 0 0 0 -#> 711 LB 34-162 90 2 1 0 -#> 712 CB 22-321 90 0 0 0 -#> 713 CB 30-323 90 0 0 0 -#> 714 CB 26-259 90 0 0 0 -#> 715 RB 25-046 90 2 1 1 -#> 716 GK 26-300 90 0 0 0 -#> 717 FW 25-206 90 0 0 0 -#> 718 FW 21-181 79 1 1 0 -#> 719 FW 30-001 11 0 0 0 -#> 720 AM 25-162 81 1 1 0 -#> 721 AM 26-236 9 0 0 0 -#> 722 CM 21-273 90 3 0 3 -#> 723 CM 30-173 45 0 0 0 -#> 724 CM 30-150 45 0 0 0 -#> 725 WB 24-254 90 2 0 2 -#> 726 WB 23-186 73 1 0 0 -#> 727 WB 24-115 17 0 0 0 -#> 728 CB 26-127 90 0 0 0 -#> 729 CB 28-297 90 1 1 1 -#> 730 CB 18-227 73 0 0 0 -#> 731 CB 23-178 17 0 0 0 -#> 732 GK 32-078 90 0 0 0 -#> 733 FW 30-176 64 0 0 0 -#> 734 FW 25-087 26 0 0 0 -#> 735 FW 25-070 90 0 0 0 -#> 736 AM 27-290 57 0 0 0 -#> 737 DM 30-358 33 0 0 0 -#> 738 AM,DM 34-193 90 0 0 0 -#> 739 DM,CB 35-033 90 2 1 1 -#> 740 DM 28-052 57 1 1 0 -#> 741 AM 30-128 33 0 0 0 -#> 742 LB 29-255 90 0 0 0 -#> 743 CB 27-268 57 1 0 1 -#> 744 RB,CB 20-210 33 0 0 0 -#> 745 CB 20-081 90 3 3 1 -#> 746 RB 36-279 64 0 0 0 -#> 747 AM 28-047 26 0 0 0 -#> 748 GK 31-144 90 0 0 0 -#> 749 FW 25-145 89 0 0 0 -#> 750 FW 21-158 1 0 0 0 -#> 751 FW 25-110 89 2 2 0 -#> 752 FW 33-308 1 0 0 0 -#> 753 LM 30-099 90 1 1 1 -#> 754 CM 26-332 90 2 1 2 -#> 755 CM 25-218 72 2 2 0 -#> 756 CM 27-214 18 0 0 0 -#> 757 RM 24-235 90 1 0 1 -#> 758 LB 22-157 90 3 2 3 -#> 759 CB 30-240 90 1 1 1 -#> 760 CB 27-171 90 2 1 2 -#> 761 RB 24-056 90 1 1 0 -#> 762 GK 29-146 90 0 0 0 -#> 763 FW 35-036 57 1 0 0 -#> 764 FW 21-069 33 1 1 0 -#> 765 FW 30-143 90 1 1 0 -#> 766 LM 26-141 68 2 2 0 -#> 767 LM 21-039 22 0 0 0 -#> 768 CM 33-134 68 0 0 0 -#> 769 CM 31-107 22 0 0 0 -#> 770 CM 34-048 90 1 1 0 -#> 771 RM 19-312 57 1 1 1 -#> 772 RM 23-098 33 0 0 0 -#> 773 LB 26-141 90 0 0 0 -#> 774 CB 25-224 90 0 0 0 -#> 775 CB 36-358 90 0 0 0 -#> 776 RB 24-228 57 0 0 0 -#> 777 RB 31-207 33 0 0 0 -#> 778 GK 30-100 90 0 0 0 -#> 779 FW 34-007 90 0 0 0 -#> 780 LW,RW 25-105 81 2 2 0 -#> 781 RW 22-180 9 0 0 0 -#> 782 RW 25-257 60 1 0 0 -#> 783 LW 19-301 30 1 1 1 -#> 784 LM 19-276 90 2 1 1 -#> 785 CM 34-043 75 1 0 0 -#> 786 CM 25-252 15 1 1 0 -#> 787 RM 18-023 60 1 1 0 -#> 788 RM 25-108 30 1 0 0 -#> 789 LB 18-314 90 2 2 1 -#> 790 CB 21-231 90 1 0 1 -#> 791 CB 23-174 60 1 1 1 -#> 792 RB 30-202 30 1 1 0 -#> 793 RB,CB 23-289 90 0 0 0 -#> 794 GK 30-120 90 0 0 0 -#> 795 FW 31-091 60 0 0 0 -#> 796 FW 33-234 30 0 0 0 -#> 797 LM 27-225 75 1 1 0 -#> 798 LM 19-003 15 1 1 0 -#> 799 CM 26-119 45 0 0 0 -#> 800 CM 33-082 45 1 0 1 -#> 801 CM 25-195 90 2 1 2 -#> 802 RM 29-339 60 2 1 2 -#> 803 RM 27-233 30 4 2 2 -#> 804 DM 22-349 45 1 1 1 -#> 805 FW 31-198 45 0 0 0 -#> 806 LB 32-360 90 4 2 4 -#> 807 CB 25-167 90 2 1 1 -#> 808 CB 26-089 90 2 1 2 -#> 809 RB 27-205 90 2 0 1 -#> 810 GK 33-237 90 0 0 0 -#> 811 FW 32-154 90 1 0 1 -#> 812 LM 24-095 77 1 0 1 -#> 813 LM 21-139 13 0 0 0 -#> 814 CM 28-249 90 2 1 1 -#> 815 CM 26-027 88 5 3 2 -#> 816 FW,CM 24-029 2 0 0 0 -#> 817 RM 21-205 90 3 1 2 -#> 818 DM 23-072 67 1 1 1 -#> 819 DM,CM 25-000 23 1 0 1 -#> 820 LB 28-149 90 1 0 1 -#> 821 CB 31-072 90 3 1 3 -#> 822 CB 26-348 90 2 2 2 -#> 823 RB 25-124 90 2 1 2 -#> 824 GK 31-124 89 0 0 0 -#> 825 FW 34-252 90 0 0 0 -#> 826 LW 22-047 90 0 0 0 -#> 827 RW 24-037 57 1 1 1 -#> 828 RW 21-231 33 0 0 0 -#> 829 LM 32-236 79 1 1 0 -#> 830 LM 26-021 11 1 1 1 -#> 831 CM 22-213 90 0 0 0 -#> 832 RM 36-353 57 0 0 0 -#> 833 RM 19-291 33 1 1 1 -#> 834 LB 30-065 90 1 1 1 -#> 835 CB 29-178 90 1 1 1 -#> 836 CB 24-222 90 1 1 1 -#> 837 RB 31-058 84 1 1 0 -#> 838 RB 30-229 6 0 0 0 -#> 839 GK 30-109 90 0 0 0 -#> 840 FW 37-009 90 1 1 0 -#> 841 FW 29-126 66 0 0 0 -#> 842 FW 33-353 24 0 0 0 -#> 843 LM,LB 24-116 90 0 0 0 -#> 844 CM 34-266 45 1 1 1 -#> 845 CM 25-166 45 0 0 0 -#> 846 CM 22-037 60 NA 1 NA -#> 847 CM 29-318 30 0 0 0 -#> 848 RM 27-200 90 1 1 1 -#> 849 LB 30-236 60 3 2 1 -#> 850 LM 26-348 30 0 0 0 -#> 851 CB 29-017 45 0 0 0 -#> 852 CB 22-177 45 1 1 1 -#> 853 CB 33-137 90 0 0 0 -#> 854 RB 30-066 90 3 1 1 -#> 855 GK 29-197 90 0 0 0 -#> 856 FW 28-075 53 0 0 0 -#> 857 FW 25-351 37 1 1 1 -#> 858 LW 27-056 87 1 1 0 -#> 859 RM,LW 23-348 3 0 0 0 -#> 860 RW 20-048 81 0 0 0 -#> 861 RW,FW 36-049 9 0 0 0 -#> 862 AM,LM 29-253 90 0 0 0 -#> 863 DM,CM 29-100 90 2 1 0 -#> 864 DM 22-126 87 0 0 0 -#> 865 CM,DM 32-097 3 0 0 0 -#> 866 LB 29-117 87 2 2 1 -#> 867 LB 22-122 3 2 1 2 -#> 868 CB 27-217 90 1 1 1 -#> 869 CB 23-045 90 4 3 3 -#> 870 RB 33-137 90 2 1 1 -#> 871 GK 25-079 90 0 0 0 -#> 872 FW 25-313 73 1 1 0 -#> 873 FW 26-015 17 0 0 0 -#> 874 LW,WB 22-249 90 0 0 0 -#> 875 RW 27-223 73 0 0 0 -#> 876 WB,RW 19-354 17 0 0 0 -#> 877 AM 25-239 90 0 0 0 -#> 878 DM 22-210 68 NA 0 NA -#> 879 DM,CM 20-238 22 0 0 0 -#> 880 DM,CM 19-273 90 3 2 1 -#> 881 LB 24-281 80 0 0 0 -#> 882 FW,LB 20-108 10 0 0 0 -#> 883 CB 25-253 90 0 0 0 -#> 884 CB 24-206 90 1 1 1 -#> 885 RB 23-173 68 0 0 0 -#> 886 RB,CB 29-159 22 0 0 0 -#> 887 GK 21-334 90 0 0 0 -#> 888 FW 22-292 82 0 0 0 -#> 889 FW 23-094 8 0 0 0 -#> 890 FW 29-310 82 1 0 0 -#> 891 FW 27-173 8 0 0 0 -#> 892 CM 30-233 90 1 0 0 -#> 893 CM 29-195 63 2 1 2 -#> 894 CM 31-161 27 0 0 0 -#> 895 CM 28-097 63 0 0 0 -#> 896 CM 26-290 27 1 1 1 -#> 897 LB 27-281 45 2 1 1 -#> 898 LB 28-359 45 2 2 2 -#> 899 CB 28-220 90 2 2 2 -#> 900 CB 33-229 90 1 1 1 -#> 901 CB 27-221 90 2 1 2 -#> 902 RB 27-211 90 4 1 3 -#> 903 GK 29-234 90 0 0 0 -#> 904 FW 35-032 90 0 0 0 -#> 905 FW 24-198 45 2 1 0 -#> 906 FW 22-208 45 0 0 0 -#> 907 LM 24-066 66 0 0 0 -#> 908 LM,RM 30-242 24 3 3 2 -#> 909 CM,DM 23-211 82 0 0 0 -#> 910 CM 24-102 8 1 1 1 -#> 911 RM,LM 28-099 90 4 2 2 -#> 912 DM 27-036 45 0 0 0 -#> 913 CM,DM 20-098 45 1 0 0 -#> 914 LB 27-287 90 4 4 4 -#> 915 CB 25-215 90 2 0 1 -#> 916 CB 26-338 90 1 1 1 -#> 917 RB 31-072 82 2 2 2 -#> 918 RB 23-112 8 2 1 2 -#> 919 GK 34-170 90 0 0 0 -#> 920 FW 29-130 62 0 0 0 -#> 921 FW 33-357 28 0 0 0 -#> 922 AM 22-041 73 NA 2 NA -#> 923 FW 31-106 17 0 0 0 -#> 924 LM 23-069 73 1 1 1 -#> 925 CM 29-322 17 0 0 0 -#> 926 CM 23-226 90 2 2 0 -#> 927 RM 27-204 62 5 4 3 -#> 928 RM 30-093 28 0 0 0 -#> 929 DM 25-170 62 1 0 1 -#> 930 LM,DM 26-286 28 0 0 0 -#> 931 LB 30-240 90 4 3 2 -#> 932 CB 22-181 90 0 0 0 -#> 933 CB 33-141 90 2 1 2 -#> 934 RB 30-070 90 1 0 0 -#> 935 GK 29-201 90 0 0 0 -#> 936 FW 28-132 90 0 0 0 -#> 937 FW 21-196 90 2 2 0 -#> 938 CM 34-089 72 0 0 0 -#> 939 CM 29-270 18 0 0 0 -#> 940 CM 31-053 89 2 1 0 -#> 941 CM 29-028 1 0 0 0 -#> 942 CM 25-245 59 1 0 1 -#> 943 CM 31-239 31 1 0 0 -#> 944 LB 34-169 90 2 2 0 -#> 945 CB 22-328 90 3 3 1 -#> 946 CB 30-330 90 2 1 2 -#> 947 CB 26-266 90 3 2 2 -#> 948 RB 25-053 90 1 1 1 -#> 949 GK 26-307 90 0 0 0 -#> 950 FW 23-335 77 0 0 0 -#> 951 FW 25-201 13 1 0 0 -#> 952 LW,RW 22-154 78 1 0 1 -#> 953 RW 31-224 12 0 0 0 -#> 954 RW 20-227 64 1 0 0 -#> 955 LW 27-239 26 0 0 0 -#> 956 LM 21-038 89 0 0 0 -#> 957 LM 33-054 1 0 0 0 -#> 958 CM 25-067 90 3 1 0 -#> 959 CM 30-344 90 0 0 0 -#> 960 RM 19-131 90 2 2 2 -#> 961 CB 31-126 90 2 2 2 -#> 962 CB 32-329 89 0 0 0 -#> 963 CB 24-124 1 0 0 0 -#> 964 CB 23-298 90 1 1 0 -#> 965 GK 34-226 90 0 0 0 -#> 966 FW 34-258 90 0 0 0 -#> 967 LW 22-053 90 3 2 2 -#> 968 RW 21-237 79 2 1 0 -#> 969 RM 26-027 11 1 1 0 -#> 970 LM 19-297 62 1 1 0 -#> 971 RM,RW 24-043 28 0 0 0 -#> 972 CM 22-219 90 7 4 1 -#> 973 RM,LM 36-359 79 2 0 2 -#> 974 LM 32-242 11 0 0 0 -#> 975 LB 27-087 90 3 1 2 -#> 976 CB 30-071 90 0 0 0 -#> 977 CB 24-228 90 2 1 1 -#> 978 RB 30-235 89 3 0 2 -#> 979 RB 29-184 1 0 0 0 -#> 980 GK 30-115 90 0 0 0 -#> 981 FW 29-229 90 2 1 1 -#> 982 LW 29-106 70 0 0 0 -#> 983 LM,LW 41-044 20 0 0 0 -#> 984 AM,CM,RW 31-199 90 4 2 2 -#> 985 AM 29-047 10 0 0 0 -#> 986 RW,RM,AM 21-244 80 5 4 2 -#> 987 DM 35-340 69 2 1 2 -#> 988 FW,DM 30-284 21 0 0 0 -#> 989 DM,CM 28-144 90 5 3 3 -#> 990 LB 29-087 90 0 0 0 -#> 991 CB 25-155 90 2 2 2 -#> 992 CB 25-165 90 5 3 3 -#> 993 RB 29-182 70 2 0 2 -#> 994 RB 26-165 20 1 0 1 -#> 995 GK 28-208 90 0 0 0 -#> 996 FW 26-272 45 0 0 0 -#> 997 FW 25-213 45 1 1 0 -#> 998 FW 18-227 70 0 0 0 -#> 999 FW 20-250 20 0 0 0 -#> 1000 AM 36-238 70 0 0 0 -#> 1001 AM 21-091 20 1 0 1 -#> 1002 LM 26-073 90 5 3 1 -#> 1003 RM 25-239 90 2 1 0 -#> 1004 DM 23-213 90 2 2 1 -#> 1005 LB 25-018 90 5 3 4 -#> 1006 CB 25-296 90 0 0 0 -#> 1007 CB 25-157 70 2 1 1 -#> 1008 CB 28-159 20 0 0 0 -#> 1009 RB 26-030 82 2 1 2 -#> 1010 RB 23-086 8 1 0 1 -#> 1011 GK 27-163 90 0 0 0 -#> 1012 FW 22-297 90 0 0 0 -#> 1013 FW 29-315 78 3 2 2 -#> 1014 FW 27-178 12 0 0 0 -#> 1015 LW 28-364 78 2 1 2 -#> 1016 CB,LW 27-077 12 0 0 0 -#> 1017 RW 27-216 90 1 1 1 -#> 1018 CM 27-286 45 1 1 0 -#> 1019 DM 29-200 45 1 1 0 -#> 1020 CM 28-102 62 1 0 0 -#> 1021 CM 31-166 28 0 0 0 -#> 1022 CM,DM 30-238 90 2 1 1 -#> 1023 CB,LW 28-225 90 3 0 3 -#> 1024 CB 33-234 90 0 0 0 -#> 1025 CB 27-226 90 2 2 1 -#> 1026 GK 29-239 84 0 0 0 -#> 1027 GK 26-228 6 0 0 0 -#> 1028 FW 25-094 56 1 1 0 -#> 1029 FW 24-332 34 1 0 0 -#> 1030 LW 30-135 69 1 1 0 -#> 1031 LW 34-200 21 1 1 0 -#> 1032 RW 30-183 90 1 1 1 -#> 1033 LM 34-177 90 2 2 0 -#> 1034 CM 30-291 45 0 0 0 -#> 1035 RB 20-217 45 2 1 0 -#> 1036 RM 28-059 45 1 1 0 -#> 1037 CM 31-000 45 0 0 0 -#> 1038 LB 30-310 90 5 2 3 -#> 1039 CB 20-088 90 3 2 1 -#> 1040 CB 35-040 90 3 3 2 -#> 1041 RB,RM 25-245 63 0 0 0 -#> 1042 RM 28-288 27 0 0 0 -#> 1043 GK 31-151 90 0 0 0 -#> 1044 FW 34-013 73 0 0 0 -#> 1045 FW 19-307 17 0 0 0 -#> 1046 LW 25-111 62 0 0 0 -#> 1047 LW 22-186 28 1 1 0 -#> 1048 RW 25-263 90 0 0 0 -#> 1049 LM 19-282 62 0 0 0 -#> 1050 LM 25-114 28 1 0 0 -#> 1051 CM 34-049 90 6 4 3 -#> 1052 RM 18-029 90 1 1 0 -#> 1053 LB 18-320 63 0 0 0 -#> 1054 LB 33-166 27 1 1 1 -#> 1055 CB 21-237 54 0 0 0 -#> 1056 RB 30-208 36 0 0 0 -#> 1057 CB 23-180 90 1 1 1 -#> 1058 RB,CB 23-295 90 0 0 0 -#> 1059 GK 30-126 90 0 0 0 -#> 1060 FW 31-044 80 0 0 0 -#> 1061 FW 32-283 10 0 0 0 -#> 1062 FW 20-281 90 3 2 1 -#> 1063 LM 28-073 80 1 1 0 -#> 1064 CM,LM 23-349 10 1 0 1 -#> 1065 CM 28-047 51 2 2 1 -#> 1066 CM 30-204 39 1 1 1 -#> 1067 CM 24-114 80 0 0 0 -#> 1068 LM,CM 20-261 10 1 1 1 -#> 1069 RM 28-210 71 2 1 2 -#> 1070 RM 29-052 19 1 0 0 -#> 1071 LB 30-038 90 2 0 1 -#> 1072 CB 28-202 90 1 1 1 -#> 1073 CB 30-213 90 0 0 0 -#> 1074 RB 27-223 90 1 1 1 -#> 1075 GK 29-091 90 0 0 0 -#> 1076 FW 21-206 80 0 0 0 -#> 1077 FW 36-206 10 0 0 0 -#> 1078 LW 29-312 90 1 1 1 -#> 1079 RW 31-158 45 0 0 0 -#> 1080 RW 27-251 45 0 0 0 -#> 1081 AM 34-131 90 3 3 1 -#> 1082 DM 28-015 71 3 2 2 -#> 1083 DM 25-334 19 0 0 0 -#> 1084 DM 28-172 90 1 1 1 -#> 1085 LB 23-021 89 4 2 3 -#> 1086 LB 24-147 1 0 0 0 -#> 1087 CB 27-311 90 1 1 0 -#> 1088 CB 31-107 90 0 0 0 -#> 1089 RB 30-246 90 1 1 1 -#> 1090 GK 28-253 90 0 0 0 -#> 1091 FW,RW 28-081 70 1 0 0 -#> 1092 AM 36-055 20 0 0 0 -#> 1093 LW,RW 27-062 90 1 0 1 -#> 1094 RW 20-054 55 2 1 1 -#> 1095 FW 25-357 35 1 1 1 -#> 1096 AM,LW 29-259 90 0 0 0 -#> 1097 DM 29-106 90 5 3 3 -#> 1098 DM 22-132 70 0 0 0 -#> 1099 DM 21-293 20 1 0 0 -#> 1100 LB 29-123 83 1 0 1 -#> 1101 LB 23-354 7 0 0 0 -#> 1102 CB 27-223 90 1 0 0 -#> 1103 CB 23-051 90 1 1 1 -#> 1104 RB 33-143 90 0 0 0 -#> 1105 GK 25-085 90 0 0 0 -#> 1106 FW 32-161 90 0 0 0 -#> 1107 LW,LM 31-091 85 0 0 0 -#> 1108 LM 24-036 5 0 0 0 -#> 1109 RW 24-102 70 0 0 0 -#> 1110 RM,RW 26-200 20 0 0 0 -#> 1111 LM,CM 28-256 90 1 1 0 -#> 1112 CM 26-034 45 2 1 2 -#> 1113 CM 25-007 15 0 0 0 -#> 1114 CB,CM 17-213 30 0 0 0 -#> 1115 RM,CM 23-079 90 4 2 3 -#> 1116 LB,CB 28-156 90 3 3 3 -#> 1117 CB 31-079 90 1 0 1 -#> 1118 CB 26-355 70 3 3 3 -#> 1119 LB,CB 18-357 20 1 1 1 -#> 1120 RB 25-131 90 1 0 1 -#> 1121 GK 24-144 90 0 0 0 -#> 1122 FW 21-076 45 1 1 0 -#> 1123 FW 35-043 45 0 0 0 -#> 1124 FW 30-150 64 2 1 0 -#> 1125 FW,LM 21-046 26 0 0 0 -#> 1126 LM,FW 26-148 78 6 4 2 -#> 1127 LM 31-114 12 1 1 0 -#> 1128 CM 33-141 90 1 0 0 -#> 1129 CM 34-055 90 1 1 0 -#> 1130 RM 19-319 64 3 3 1 -#> 1131 RM 23-105 26 0 0 0 -#> 1132 LB 26-148 90 3 2 1 -#> 1133 CB 25-231 90 1 0 0 -#> 1134 CB 37-000 90 2 2 1 -#> 1135 RB 31-214 78 0 0 0 -#> 1136 RB 30-317 12 0 0 0 -#> 1137 GK 30-107 90 0 0 0 -#> 1138 FW 25-159 56 0 0 0 -#> 1139 FW 31-244 34 0 0 0 -#> 1140 FW 26-188 56 2 1 0 -#> 1141 FW,LM 29-346 34 1 1 0 -#> 1142 LM 23-135 69 3 1 2 -#> 1143 FW,LM 22-290 21 0 0 0 -#> 1144 CM 25-248 45 0 0 0 -#> 1145 CM 27-260 45 1 0 0 -#> 1146 CM 29-214 90 0 0 0 -#> 1147 RM 25-274 70 2 0 1 -#> 1148 RM 32-275 20 0 0 0 -#> 1149 LB 30-195 90 5 1 5 -#> 1150 CB 31-354 90 1 1 0 -#> 1151 CB 30-019 90 1 0 0 -#> 1152 RB 29-085 90 3 2 1 -#> 1153 GK 30-204 90 0 0 0 -#> 1154 FW 25-319 23 0 0 0 -#> 1155 FW 22-298 67 0 0 0 -#> 1156 LW 22-255 90 0 0 0 -#> 1157 RW 27-229 69 2 1 0 -#> 1158 LM,RW 19-228 18 0 0 0 -#> 1159 LM 20-244 69 1 1 1 -#> 1160 RM,LM 22-097 21 0 0 0 -#> 1161 CM 22-216 90 NA 0 NA -#> 1162 RM,RW 19-279 90 0 0 0 -#> 1163 LB 24-287 69 1 1 0 -#> 1164 LB 29-165 21 1 1 0 -#> 1165 CB 25-259 73 2 2 1 -#> 1166 CB 18-069 17 0 0 0 -#> 1167 CB 24-212 90 2 1 2 -#> 1168 RB 23-179 90 1 1 1 -#> 1169 GK 21-340 90 0 0 0 -#> 1170 FW 25-152 90 0 0 0 -#> 1171 FW 25-117 76 0 0 0 -#> 1172 FW 33-315 14 0 0 0 -#> 1173 LM 30-106 45 1 0 0 -#> 1174 CM 27-221 45 0 0 0 -#> 1175 CM 25-225 45 0 0 0 -#> 1176 CB 22-164 45 1 1 1 -#> 1177 CM 26-339 89 1 0 0 -#> 1178 RM 24-242 45 0 0 0 -#> 1179 CM 27-003 45 0 0 0 -#> 1180 LB 28-173 90 0 0 0 -#> 1181 CB 27-178 90 0 0 0 -#> 1182 CB 30-247 28 0 0 0 -#> 1183 CB 32-105 62 0 0 0 -#> 1184 RB 24-063 90 3 1 3 -#> 1185 GK 29-153 90 0 0 0 -#> 1186 FW 31-099 65 1 1 0 -#> 1187 FW 26-203 25 0 0 0 -#> 1188 LW 31-206 58 0 0 0 -#> 1189 RW 21-308 32 1 0 1 -#> 1190 RW,LW 29-347 77 1 0 0 -#> 1191 LW 33-242 13 0 0 0 -#> 1192 LM,RM 25-203 90 3 2 0 -#> 1193 CM 33-090 77 2 1 2 -#> 1194 LM 27-205 13 0 0 0 -#> 1195 RM 26-127 65 1 0 0 -#> 1196 CM,RM 22-357 25 3 0 1 -#> 1197 LB 33-003 90 1 1 0 -#> 1198 CB 25-175 90 0 0 0 -#> 1199 CB 26-097 90 2 2 0 -#> 1200 RB 27-213 90 5 1 2 -#> 1201 GK 33-069 90 0 0 0 -#> 1202 FW 32-356 58 2 1 0 -#> 1203 LW,AM 30-121 32 0 0 0 -#> 1204 LW,RW 21-190 83 0 0 0 -#> 1205 AM,RW 32-084 7 2 2 1 -#> 1206 RW,FW,LW 30-010 76 1 0 0 -#> 1207 FW 19-032 14 0 0 0 -#> 1208 AM,CM 25-171 90 3 0 1 -#> 1209 DM,CM 21-282 90 3 1 2 -#> 1210 DM 30-159 75 0 0 0 -#> 1211 CB,DM 18-236 15 0 0 0 -#> 1212 LB,WB 24-263 90 0 0 0 -#> 1213 CB 26-136 90 0 0 0 -#> 1214 CB 28-306 90 0 0 0 -#> 1215 RB,WB 23-195 90 1 1 1 -#> 1216 GK 32-087 90 0 0 0 -#> 1217 FW 23-341 89 1 0 1 -#> 1218 CB,FW 24-130 1 0 0 0 -#> 1219 AM,LW 20-233 73 1 1 1 -#> 1220 LW,LM 27-245 17 2 2 0 -#> 1221 AM 22-160 58 2 0 0 -#> 1222 AM,FW 31-230 32 0 0 0 -#> 1223 CM,DM 25-073 90 4 0 2 -#> 1224 CM,DM 30-350 90 2 2 0 -#> 1225 WB,LB 21-044 90 3 2 2 -#> 1226 WB,RB 19-137 73 2 1 2 -#> 1227 RB 20-098 17 3 3 3 -#> 1228 CB 31-132 90 0 0 0 -#> 1229 CB 33-060 58 0 0 0 -#> 1230 RW,RM 25-207 32 2 1 1 -#> 1231 CB 23-304 90 1 0 0 -#> 1232 GK 34-232 90 0 0 0 -#> 1233 FW 31-103 5 0 0 0 -#> 1234 FW 26-207 85 0 0 0 -#> 1235 LM 27-237 45 0 0 0 -#> 1236 LM 31-210 45 1 1 0 -#> 1237 CM 22-361 90 5 4 1 -#> 1238 CM 25-207 75 1 0 0 -#> 1239 CM 26-131 15 1 1 1 -#> 1240 RM 21-312 75 0 0 0 -#> 1241 RM 26-213 15 0 0 0 -#> 1242 DM 33-094 90 1 0 1 -#> 1243 LB 28-050 90 0 0 0 -#> 1244 CB 25-179 90 1 1 1 -#> 1245 CB 26-101 90 0 0 0 -#> 1246 RB 27-217 27 3 2 1 -#> 1247 RB 17-346 63 3 2 2 -#> 1248 GK 33-073 90 0 0 0 -#> 1249 FW 21-212 68 1 1 0 -#> 1250 FW 28-178 22 0 0 0 -#> 1251 LW 29-318 90 1 1 1 -#> 1252 RW 27-257 75 1 0 0 -#> 1253 RW 24-278 15 1 1 1 -#> 1254 AM 34-137 75 1 1 0 -#> 1255 AM 26-315 15 0 0 0 -#> 1256 DM 28-021 86 7 2 1 -#> 1257 DM 26-179 4 0 0 0 -#> 1258 DM 25-340 68 1 1 1 -#> 1259 DM 36-212 22 0 0 0 -#> 1260 LB 23-027 90 0 0 0 -#> 1261 CB 27-317 90 1 0 1 -#> 1262 CB 31-113 90 0 0 0 -#> 1263 RB 30-252 90 2 1 1 -#> 1264 GK 28-259 90 0 0 0 -#> 1265 FW 22-304 63 2 0 0 -#> 1266 FW 23-128 27 0 0 0 -#> 1267 LW 22-261 90 0 0 0 -#> 1268 RW 27-235 90 0 0 0 -#> 1269 AM,DM 19-285 90 3 3 2 -#> 1270 DM 20-250 55 0 0 0 -#> 1271 AM 25-325 35 0 0 0 -#> 1272 DM 22-222 76 NA 1 NA -#> 1273 DM 22-103 14 2 0 2 -#> 1274 LB 27-108 63 2 1 2 -#> 1275 LB 24-293 27 0 0 0 -#> 1276 CB 25-265 90 2 1 2 -#> 1277 CB 31-288 90 2 1 2 -#> 1278 RB 23-185 90 2 1 2 -#> 1279 GK 21-346 90 0 0 0 -#> 1280 FW 32-167 90 0 0 0 -#> 1281 LW,FW 31-097 90 0 0 0 -#> 1282 RW,LM 24-108 87 0 0 0 -#> 1283 RB 21-152 3 1 1 0 -#> 1284 AM,CM 28-262 90 3 2 0 -#> 1285 DM,CM,RM 23-085 90 2 2 0 -#> 1286 DM 26-040 58 1 0 0 -#> 1287 RM,RW 24-042 32 2 1 1 -#> 1288 LB 28-162 90 1 1 0 -#> 1289 CB 31-085 90 0 0 0 -#> 1290 CB 30-166 90 0 0 0 -#> 1291 RB 25-137 75 1 1 1 -#> 1292 RB 21-218 12 0 0 0 -#> 1293 LM 18-363 3 0 0 0 -#> 1294 GK 24-150 90 0 0 0 -#> 1295 FW 30-190 83 3 1 1 -#> 1296 LW 27-304 66 2 2 1 -#> 1297 CB 20-095 24 0 0 0 -#> 1298 RW,FW 25-101 90 0 0 0 -#> 1299 AM 30-142 90 6 3 3 -#> 1300 DM,CM 35-047 90 2 2 2 -#> 1301 DM,CM 28-066 72 2 2 1 -#> 1302 CM 34-184 18 0 0 0 -#> 1303 LB 30-317 45 0 0 0 -#> 1304 WB,LB 29-269 45 0 0 0 -#> 1305 CB 20-140 66 0 0 0 -#> 1306 CB 27-282 24 0 0 0 -#> 1307 CB 30-298 90 0 0 0 -#> 1308 RB,WB 20-224 72 3 2 2 -#> 1309 WB 36-293 18 0 0 0 -#> 1310 GK 31-158 90 0 0 0 -#> 1311 FW 34-000 71 1 1 0 -#> 1312 LW,FW 26-360 19 1 0 0 -#> 1313 LW,RW 23-077 90 1 1 1 -#> 1314 RW 27-212 59 4 3 3 -#> 1315 AM,RW 26-294 31 0 0 0 -#> 1316 AM,RW 30-101 71 0 0 0 -#> 1317 FW,RW 37-021 19 0 0 0 -#> 1318 DM 25-178 71 1 1 1 -#> 1319 DM 31-132 19 0 0 0 -#> 1320 DM 29-330 58 1 1 1 -#> 1321 DM 23-234 32 0 0 0 -#> 1322 LB 30-248 90 4 3 3 -#> 1323 CB 24-074 90 0 0 0 -#> 1324 CB 33-149 90 0 0 0 -#> 1325 RB 30-078 90 4 2 3 -#> 1326 GK 29-209 90 0 0 0 -#> 1327 FW 28-209 56 0 0 0 -#> 1328 FW 34-020 34 0 0 0 -#> 1329 LW 22-193 56 0 0 0 -#> 1330 LW 25-118 34 0 0 0 -#> 1331 RW 25-270 71 2 1 1 -#> 1332 RW 19-314 19 0 0 0 -#> 1333 LM 18-036 56 0 0 0 -#> 1334 LM 19-289 34 0 0 0 -#> 1335 CM 34-056 90 5 1 2 -#> 1336 RM 25-121 90 0 0 0 -#> 1337 LB 18-327 77 2 1 1 -#> 1338 LB 31-256 13 0 0 0 -#> 1339 CB 35-220 90 0 0 0 -#> 1340 CB 23-187 90 0 0 0 -#> 1341 RB 27-175 90 0 0 0 -#> 1342 GK 30-133 90 0 0 0 -#> 1343 FW 29-322 62 1 1 1 -#> 1344 FW,CM,RM 31-173 28 1 1 1 -#> 1345 FW 27-185 62 1 0 0 -#> 1346 FW,LM 22-304 28 0 0 0 -#> 1347 CM 26-302 45 0 0 0 -#> 1348 CM 30-245 45 1 1 0 -#> 1349 CM 29-207 90 5 2 1 -#> 1350 CM 28-109 75 2 1 1 -#> 1351 FW,CM 23-106 15 0 0 0 -#> 1352 LB 29-006 84 1 1 0 -#> 1353 LB,LM 27-293 6 0 0 0 -#> 1354 CB 28-232 90 2 2 1 -#> 1355 CB 27-084 90 0 0 0 -#> 1356 CB 33-241 90 0 0 0 -#> 1357 RB 24-157 90 1 1 0 -#> 1358 GK 26-235 90 0 0 0 -#> 1359 FW 22-216 90 1 0 0 -#> 1360 FW 35-040 90 0 0 0 -#> 1361 LM 28-107 90 1 1 0 -#> 1362 CM 23-219 90 1 1 0 -#> 1363 RM 24-206 51 1 0 0 -#> 1364 RM 20-106 39 1 1 0 -#> 1365 DM 27-044 63 3 2 0 -#> 1366 DM 30-250 27 1 1 0 -#> 1367 LB 27-295 90 1 0 1 -#> 1368 CB 25-223 90 0 0 0 -#> 1369 CB 26-346 90 3 2 2 -#> 1370 RB 31-080 90 0 0 0 -#> 1371 GK 34-178 90 0 0 0 -#> 1372 FW 31-247 58 0 0 0 -#> 1373 RM 37-002 32 1 0 0 -#> 1374 LW 22-061 90 1 1 0 -#> 1375 RW,FW 21-245 90 0 0 0 -#> 1376 LM 26-035 68 3 2 0 -#> 1377 LM 19-305 22 0 0 0 -#> 1378 CM 32-250 90 2 2 0 -#> 1379 RM,RW 24-051 90 1 1 0 -#> 1380 LB 27-095 58 0 0 0 -#> 1381 CB 32-236 32 0 0 0 -#> 1382 CB,LB 30-079 90 0 0 0 -#> 1383 CB 29-192 90 0 0 0 -#> 1384 RB 31-072 70 4 1 2 -#> 1385 RB 30-243 20 0 0 0 -#> 1386 GK 30-123 90 0 0 0 -#> 1387 FW 21-204 77 2 0 2 -#> 1388 FW 31-254 13 0 0 0 -#> 1389 FW 28-140 77 0 0 0 -#> 1390 FW 29-278 13 0 0 0 -#> 1391 CM 29-036 58 5 3 3 -#> 1392 CM 25-253 32 0 0 0 -#> 1393 CM 31-061 52 2 1 2 -#> 1394 CM 26-232 38 1 0 1 -#> 1395 CM 34-097 58 2 0 1 -#> 1396 CM 31-247 32 1 1 0 -#> 1397 LB 34-177 90 0 0 0 -#> 1398 CB 29-167 90 1 1 0 -#> 1399 CB 30-338 90 2 1 2 -#> 1400 CB 26-274 90 0 0 0 -#> 1401 RB 25-061 90 4 3 4 -#> 1402 GK 26-315 90 0 0 0 -#> 1403 FW 26-195 90 3 1 0 -#> 1404 LW,RM 29-353 90 0 0 0 -#> 1405 RW 23-142 45 1 0 0 -#> 1406 RW,LM 32-319 45 0 0 0 -#> 1407 AM,CM 22-297 90 0 0 0 -#> 1408 DM 27-267 71 1 1 0 -#> 1409 CM 25-255 19 0 0 0 -#> 1410 DM 29-221 37 2 0 1 -#> 1411 DM,FW 25-166 53 2 2 0 -#> 1412 LB 22-243 90 5 4 1 -#> 1413 CB 31-361 90 2 1 1 -#> 1414 CB 30-026 45 0 0 0 -#> 1415 CB 22-012 45 1 0 1 -#> 1416 RB 25-029 65 1 0 1 -#> 1417 RB 32-282 25 0 0 0 -#> 1418 GK 30-211 90 0 0 0 -#> 1419 FW 28-088 77 0 0 0 -#> 1420 LW 23-361 13 0 0 0 -#> 1421 LW,RW 27-069 90 5 3 1 -#> 1422 RW 20-061 63 0 0 0 -#> 1423 DM,RW 23-250 27 0 0 0 -#> 1424 AM 29-266 77 1 1 0 -#> 1425 FW 25-364 13 0 0 0 -#> 1426 DM 32-110 71 0 0 0 -#> 1427 DM 29-113 19 1 1 0 -#> 1428 DM 22-139 63 1 0 1 -#> 1429 AM,DM 36-062 27 0 0 0 -#> 1430 LB 29-130 90 3 1 3 -#> 1431 CB 31-117 90 1 0 1 -#> 1432 CB 23-058 90 2 0 1 -#> 1433 RB 33-150 90 1 0 1 -#> 1434 GK 25-092 90 0 0 0 -#> 1435 FW 25-159 69 0 0 0 -#> 1436 FW 27-010 21 0 0 0 -#> 1437 FW 25-124 90 0 0 0 -#> 1438 CM 27-228 90 2 0 1 -#> 1439 CM 23-080 59 4 3 3 -#> 1440 CM 25-232 31 1 0 0 -#> 1441 CM 24-249 69 1 1 0 -#> 1442 CM 30-113 21 0 0 0 -#> 1443 LB 28-180 51 1 1 0 -#> 1444 LB 24-070 39 0 0 0 -#> 1445 CB 22-171 90 2 1 1 -#> 1446 CB 32-112 90 0 0 0 -#> 1447 CB 27-185 90 3 3 2 -#> 1448 RB 34-137 90 4 3 0 -#> 1449 GK 29-160 90 0 0 0 -#> 1450 FW 26-280 81 0 0 0 -#> 1451 FW 19-357 9 0 0 0 -#> 1452 FW 25-221 37 0 0 0 -#> 1453 FW 18-235 53 2 0 2 -#> 1454 AM 21-099 45 3 2 1 -#> 1455 RM 25-247 45 2 0 1 -#> 1456 LM 20-223 45 1 1 1 -#> 1457 AM 36-246 45 0 0 0 -#> 1458 LM,RM 26-081 90 0 0 0 -#> 1459 DM 23-221 90 4 1 0 -#> 1460 LB 25-026 90 1 0 1 -#> 1461 CB 21-246 90 2 1 2 -#> 1462 CB 25-165 90 2 2 1 -#> 1463 RB 23-094 69 1 1 0 -#> 1464 RB 26-038 21 0 0 0 -#> 1465 GK 27-171 90 0 0 0 -#> 1466 FW 29-237 88 0 0 0 -#> 1467 FW 30-292 2 0 0 0 -#> 1468 LW 22-118 68 0 0 0 -#> 1469 LW,RM 26-173 22 0 0 0 -#> 1470 RW 21-252 83 2 2 0 -#> 1471 LM 35-348 7 0 0 0 -#> 1472 AM,FW 31-207 90 0 0 0 -#> 1473 DM,CM 30-157 90 3 3 2 -#> 1474 DM,CM 28-152 90 0 0 0 -#> 1475 LB 29-095 90 3 3 2 -#> 1476 CB 25-173 90 2 1 1 -#> 1477 CB 31-076 90 3 1 2 -#> 1478 RB 29-190 90 3 2 2 -#> 1479 GK 28-216 90 0 0 0 -#> 1480 FW 21-083 77 1 1 1 -#> 1481 FW 35-050 13 0 0 0 -#> 1482 FW 30-157 53 1 1 0 -#> 1483 FW 21-053 37 0 0 0 -#> 1484 LM 26-155 90 3 2 0 -#> 1485 CM 33-148 90 2 1 2 -#> 1486 CM 34-062 70 1 1 1 -#> 1487 CM 31-121 20 0 0 0 -#> 1488 RM 19-326 53 2 2 2 -#> 1489 RM 23-112 37 0 0 0 -#> 1490 LB 26-155 70 4 4 2 -#> 1491 LB 30-021 20 0 0 0 -#> 1492 CB 25-238 90 0 0 0 -#> 1493 CB 37-007 90 3 1 1 -#> 1494 RB 31-221 90 0 0 0 -#> 1495 GK 30-114 90 0 0 0 -#> 1496 FW 32-363 59 1 1 1 -#> 1497 FW 20-344 31 0 0 0 -#> 1498 LW 30-128 45 1 0 1 -#> 1499 RM 21-245 45 0 0 0 -#> 1500 LW,RW 21-197 89 0 0 0 -#> 1501 LW 19-039 1 0 0 0 -#> 1502 CM,LM 21-289 90 5 4 3 -#> 1503 CM 30-189 45 1 1 1 -#> 1504 RW 32-091 45 0 0 0 -#> 1505 RM,LM 25-178 70 2 2 0 -#> 1506 LM 20-184 20 0 0 0 -#> 1507 LB 24-270 90 1 1 1 -#> 1508 CB 26-143 90 0 0 0 -#> 1509 CB 28-313 90 2 1 2 -#> 1510 RB 23-202 90 0 0 0 -#> 1511 GK 32-094 90 0 0 0 -#> 1512 FW 31-052 72 0 0 0 -#> 1513 LW 20-269 18 0 0 0 -#> 1514 LW,RW 28-081 88 2 2 2 -#> 1515 RW 25-164 2 0 0 0 -#> 1516 RW 28-218 73 0 0 0 -#> 1517 FW 32-291 17 0 0 0 -#> 1518 AM 29-060 72 0 0 0 -#> 1519 DM 24-122 18 0 0 0 -#> 1520 DM,AM 30-212 84 2 2 1 -#> 1521 AM 23-357 6 0 0 0 -#> 1522 DM 28-055 90 3 1 2 -#> 1523 LB 30-046 90 1 1 1 -#> 1524 CB 28-210 90 0 0 0 -#> 1525 CB 30-221 90 0 0 0 -#> 1526 RB 27-231 90 7 5 4 -#> 1527 GK 29-099 90 0 0 0 -#> 1528 FW 26-214 89 0 0 0 -#> 1529 FW,RW 31-110 1 0 0 0 -#> 1530 LW 31-217 67 5 3 0 -#> 1531 LW 27-216 23 0 0 0 -#> 1532 RW 21-319 81 4 3 1 -#> 1533 RW,FW 33-253 9 0 0 0 -#> 1534 LM 25-214 90 2 0 1 -#> 1535 CM 33-101 81 2 2 1 -#> 1536 CM 26-339 9 1 1 1 -#> 1537 RM 23-003 66 2 0 1 -#> 1538 RM 29-358 24 0 0 0 -#> 1539 LB 28-057 90 1 1 0 -#> 1540 CB 25-186 90 2 0 2 -#> 1541 CB 26-108 90 0 0 0 -#> 1542 RB 17-353 90 2 2 1 -#> 1543 GK 33-080 90 0 0 0 -#> 1544 FW 34-006 90 1 0 1 -#> 1545 LW 23-083 45 0 0 0 -#> 1546 DM 31-138 45 2 1 1 -#> 1547 RW 27-218 70 0 0 0 -#> 1548 RW 37-027 20 0 0 0 -#> 1549 LW,AM 30-107 90 2 1 0 -#> 1550 DM,AM 29-336 60 0 0 0 -#> 1551 AM 26-300 30 2 2 0 -#> 1552 DM 25-184 56 0 0 0 -#> 1553 DM 34-284 34 1 0 1 -#> 1554 LB 30-254 90 4 3 3 -#> 1555 CB 22-195 90 0 0 0 -#> 1556 CB 33-155 90 0 0 0 -#> 1557 RB 29-146 70 5 3 4 -#> 1558 RB 30-084 20 1 1 1 -#> 1559 GK 29-215 90 0 0 0 -#> 1560 FW 28-146 82 0 0 0 -#> 1561 FW 35-144 8 0 0 0 -#> 1562 FW 21-210 90 0 0 0 -#> 1563 CM 31-253 66 1 0 1 -#> 1564 CM 26-238 24 1 1 0 -#> 1565 CM 29-042 82 3 3 2 -#> 1566 CM 29-284 8 0 0 0 -#> 1567 CM 25-259 58 0 0 0 -#> 1568 CM 34-103 32 1 0 0 -#> 1569 LB 34-183 90 2 1 0 -#> 1570 CB 22-342 90 2 2 1 -#> 1571 CB 30-344 90 0 0 0 -#> 1572 CB 26-280 90 0 0 0 -#> 1573 RB 25-067 90 0 0 0 -#> 1574 GK 26-321 90 0 0 0 -#> 1575 FW 21-202 90 3 2 1 -#> 1576 FW 20-349 71 0 0 0 -#> 1577 FW 33-003 19 0 0 0 -#> 1578 CM 20-189 61 0 0 0 -#> 1579 CM 28-258 29 1 0 0 -#> 1580 CM 21-294 90 4 2 3 -#> 1581 CM 25-183 71 1 0 1 -#> 1582 CM 32-096 19 0 0 0 -#> 1583 LB 24-275 90 3 1 1 -#> 1584 CB 26-148 90 3 3 1 -#> 1585 CB 28-318 90 2 2 1 -#> 1586 CB 23-199 84 0 0 0 -#> 1587 CB 30-133 6 0 0 0 -#> 1588 RB 23-207 45 1 1 0 -#> 1589 RB 21-250 45 0 0 0 -#> 1590 GK 32-099 90 0 0 0 -#> 1591 FW 34-027 71 0 0 0 -#> 1592 FW 22-200 19 0 0 0 -#> 1593 LW 28-216 58 1 1 1 -#> 1594 LW 19-321 32 0 0 0 -#> 1595 RW 25-125 59 0 0 0 -#> 1596 RW 25-277 31 1 1 0 -#> 1597 LM 19-296 90 0 0 0 -#> 1598 CM 25-128 90 5 3 1 -#> 1599 RM 25-272 45 0 0 0 -#> 1600 RM 18-043 45 1 1 0 -#> 1601 LB 18-334 90 0 0 0 -#> 1602 CB 21-251 58 2 0 1 -#> 1603 RB 27-182 32 1 0 0 -#> 1604 CB 23-194 90 1 1 0 -#> 1605 RB,CB 23-309 90 2 1 0 -#> 1606 GK 30-140 90 0 0 0 -#> 1607 FW 26-201 67 0 0 0 -#> 1608 RB 32-288 23 0 0 0 -#> 1609 LM 32-325 52 1 1 1 -#> 1610 CM 22-303 38 0 0 0 -#> 1611 CM 27-273 90 1 1 0 -#> 1612 CM 25-261 52 3 1 1 -#> 1613 CM 22-249 38 2 2 2 -#> 1614 RM,RB 25-287 67 2 2 2 -#> 1615 FW 25-172 23 0 0 0 -#> 1616 LB 30-208 90 1 1 1 -#> 1617 CB 32-002 76 1 0 1 -#> 1618 CB 27-232 14 0 0 0 -#> 1619 CB 33-331 13 0 0 0 -#> 1620 CB 22-018 90 0 0 0 -#> 1621 RB,CB 29-098 90 2 1 1 -#> 1622 GK 30-217 90 1 0 1 -#> 1623 FW 35-215 71 0 0 0 -#> 1624 RW 23-135 19 0 0 0 -#> 1625 LW 22-268 90 1 0 0 -#> 1626 RW 27-242 70 2 0 2 -#> 1627 FW 25-332 20 0 0 0 -#> 1628 LM 19-241 66 1 1 0 -#> 1629 LM 20-257 24 0 0 0 -#> 1630 CM 22-229 90 NA 0 NA -#> 1631 RM 22-110 90 2 1 0 -#> 1632 LB 27-115 83 3 0 2 -#> 1633 LB 24-300 7 0 0 0 -#> 1634 CB 25-272 90 1 1 1 -#> 1635 CB 24-225 83 1 0 0 -#> 1636 CB 31-295 7 0 0 0 -#> 1637 RB 23-192 90 5 4 3 -#> 1638 GK 21-353 90 0 0 0 -#> 1639 FW 22-223 82 0 0 0 -#> 1640 CM 24-117 8 2 1 1 -#> 1641 FW 35-047 90 0 0 0 -#> 1642 LM 28-114 58 4 2 2 -#> 1643 CM 23-226 56 1 0 0 -#> 1644 RM 24-213 34 2 1 1 -#> 1645 RM 24-081 56 0 0 0 -#> 1646 LM,CM 20-113 34 0 0 0 -#> 1647 DM 27-051 90 3 1 2 -#> 1648 LB 27-302 90 4 2 3 -#> 1649 CB 25-230 90 2 2 2 -#> 1650 CB 26-353 90 0 0 0 -#> 1651 RB 31-087 90 2 0 2 -#> 1652 GK 34-185 90 0 0 0 -#> 1653 FW 28-094 89 1 0 0 -#> 1654 FW 36-068 1 0 0 0 -#> 1655 LW 27-075 89 0 0 0 -#> 1656 LB,LW 22-141 1 0 0 0 -#> 1657 RW 20-067 79 3 0 2 -#> 1658 AM 23-256 11 0 0 0 -#> 1659 AM 29-272 78 1 1 0 -#> 1660 RW 24-002 12 0 0 0 -#> 1661 DM 32-116 90 0 0 0 -#> 1662 DM 22-145 64 1 1 0 -#> 1663 DM 33-034 26 2 1 2 -#> 1664 LB,LW 29-136 90 1 1 0 -#> 1665 CB 31-123 90 0 0 0 -#> 1666 CB 27-236 90 0 0 0 -#> 1667 RB 33-156 90 3 2 0 -#> 1668 GK 25-098 90 0 0 0 -#> 1669 FW 21-219 78 1 1 1 -#> 1670 FW 36-219 12 1 1 0 -#> 1671 LW 29-325 90 2 1 0 -#> 1672 RW 27-264 90 1 0 1 -#> 1673 AM 34-144 89 0 0 0 -#> 1674 AM 32-067 1 0 0 0 -#> 1675 DM 25-347 68 1 1 0 -#> 1676 DM 26-322 22 2 1 1 -#> 1677 DM 28-028 45 5 1 1 -#> 1678 DM 28-185 45 1 1 1 -#> 1679 LB 23-034 90 0 0 0 -#> 1680 CB 27-324 90 0 0 0 -#> 1681 CB 31-120 78 1 1 0 -#> 1682 CB 24-103 12 0 0 0 -#> 1683 RB 30-259 90 1 1 0 -#> 1684 GK 28-266 90 0 0 0 -#> 1685 FW 31-058 76 0 0 0 -#> 1686 FW 32-297 14 0 0 0 -#> 1687 LW,RW 28-087 90 0 0 0 -#> 1688 RW 28-224 42 0 0 0 -#> 1689 AM,RW 29-066 56 1 1 0 -#> 1690 LW 20-275 34 1 1 1 -#> 1691 DM 30-218 67 3 2 2 -#> 1692 DM 24-128 23 0 0 0 -#> 1693 DM 28-061 90 1 1 0 -#> 1694 LB,CB 30-052 90 1 1 1 -#> 1695 CB 28-216 76 0 0 0 -#> 1696 LB 22-025 14 0 0 0 -#> 1697 CB 30-227 90 2 1 1 -#> 1698 RB 27-237 56 1 1 0 -#> 1699 RB 31-062 34 1 1 0 -#> 1700 GK 29-105 90 0 0 0 -#> 1701 FW 25-131 81 0 0 0 -#> 1702 FW 33-329 9 0 0 0 -#> 1703 FW 25-166 62 0 0 0 -#> 1704 FW 27-017 28 0 0 0 -#> 1705 CM 27-235 62 1 0 0 -#> 1706 CM 27-346 27 1 0 1 -#> 1707 CM 26-353 90 0 0 0 -#> 1708 CM 24-256 89 2 1 1 -#> 1709 CM 25-239 1 0 0 0 -#> 1710 LB 24-077 90 1 1 0 -#> 1711 CB 22-178 89 1 1 1 -#> 1712 CB 22-155 1 0 0 0 -#> 1713 CB 32-119 90 1 1 1 -#> 1714 CB 27-192 90 1 1 1 -#> 1715 RB 34-144 90 1 1 1 -#> 1716 GK 29-167 90 0 0 0 -#> 1717 FW 21-090 81 0 0 0 -#> 1718 FW,LM 35-057 9 1 1 1 -#> 1719 FW 26-162 30 5 5 1 -#> 1720 LM,FW 21-060 60 1 0 1 -#> 1721 LM 31-128 59 1 1 0 -#> 1722 FW 25-230 31 1 1 1 -#> 1723 CM 33-155 90 3 1 1 -#> 1724 CM 34-069 90 0 0 0 -#> 1725 RM 23-119 58 3 2 1 -#> 1726 RM 19-333 32 0 0 0 -#> 1727 LB 26-162 81 3 3 1 -#> 1728 LB 30-028 9 0 0 0 -#> 1729 CB 25-245 90 1 1 0 -#> 1730 CB 37-014 90 1 1 0 -#> 1731 RB 31-228 90 0 0 0 -#> 1732 GK 30-121 90 0 0 0 -#> 1733 FW 25-092 90 1 0 0 -#> 1734 LW 27-312 82 2 2 0 -#> 1735 LW 34-215 8 0 0 0 -#> 1736 RW,RB 36-301 90 0 0 0 -#> 1737 AM 30-150 90 1 0 0 -#> 1738 DM 35-055 45 2 0 1 -#> 1739 CB,DM 20-103 45 0 0 0 -#> 1740 DM 28-074 90 2 0 1 -#> 1741 LB 30-325 68 1 0 1 -#> 1742 LB 29-277 22 0 0 0 -#> 1743 CB 20-148 90 0 0 0 -#> 1744 CB,DM 30-306 90 2 2 1 -#> 1745 RB 20-232 68 1 1 1 -#> 1746 RW 28-303 22 1 1 0 -#> 1747 GK 31-166 45 0 0 0 -#> 1748 GK 30-237 45 0 0 0 -#> 1749 FW 29-244 90 1 0 0 -#> 1750 LW,RW 22-125 90 0 0 0 -#> 1751 RW 21-259 64 1 0 0 -#> 1752 LW 30-299 26 0 0 0 -#> 1753 AM 31-214 79 0 0 0 -#> 1754 DM 24-272 11 1 0 1 -#> 1755 DM,AM 30-164 90 2 1 0 -#> 1756 DM 28-159 90 4 2 1 -#> 1757 LB 29-102 90 0 0 0 -#> 1758 CB 25-180 90 2 2 0 -#> 1759 CB 31-083 79 1 1 0 -#> 1760 CB 25-170 11 0 0 0 -#> 1761 RB 31-157 54 2 0 1 -#> 1762 RB 26-180 36 4 2 4 -#> 1763 GK 28-223 90 1 0 1 -#> 1764 FW 23-350 69 1 1 0 -#> 1765 LW,FW 25-216 21 0 0 0 -#> 1766 AM 22-169 69 1 0 0 -#> 1767 AM 31-239 21 0 0 0 -#> 1768 AM,FW 20-242 90 1 0 0 -#> 1769 CM,DM 25-082 88 0 0 0 -#> 1770 DM 17-103 2 0 0 0 -#> 1771 CM,DM 30-359 90 10 6 6 -#> 1772 WB,LB 21-053 90 3 0 1 -#> 1773 WB,RB 19-146 88 2 0 1 -#> 1774 RB 20-107 2 0 0 0 -#> 1775 CB 31-141 90 2 1 0 -#> 1776 CB 33-069 79 1 0 1 -#> 1777 RW 27-254 11 0 0 0 -#> 1778 CB 23-313 90 1 1 1 -#> 1779 GK 34-241 90 0 0 0 -#> 1780 FW 21-106 80 3 2 0 -#> 1781 FW 20-230 10 0 0 0 -#> 1782 FW 26-287 90 0 0 0 -#> 1783 LM 26-088 90 0 0 0 -#> 1784 CM 36-253 81 0 0 0 -#> 1785 CM 18-242 9 0 0 0 -#> 1786 RM 25-254 88 3 1 0 -#> 1787 RM 25-172 2 0 0 0 -#> 1788 DM 23-228 90 1 0 0 -#> 1789 LB 25-033 90 1 1 0 -#> 1790 CB 21-253 90 2 2 2 -#> 1791 CB 28-174 90 2 2 1 -#> 1792 RB 26-045 90 1 1 0 -#> 1793 GK 27-178 90 0 0 0 -#> 1794 FW 31-105 90 0 0 0 -#> 1795 FW 32-175 90 0 0 0 -#> 1796 CM 26-048 74 1 1 0 -#> 1797 RM 24-050 16 0 0 0 -#> 1798 CM,DM 23-093 84 3 1 1 -#> 1799 CM 22-347 6 0 0 0 -#> 1800 CM 28-270 90 4 1 0 -#> 1801 LB,LW 28-170 90 2 2 1 -#> 1802 CB 31-093 90 1 1 1 -#> 1803 CB 30-174 90 0 0 0 -#> 1804 CB 27-004 74 2 2 2 -#> 1805 RB 33-028 16 1 1 1 -#> 1806 RB 19-006 53 1 1 1 -#> 1807 RW,LM 24-116 37 3 0 1 -#> 1808 GK 24-158 90 0 0 0 -#> 1809 FW 22-312 61 0 0 0 -#> 1810 FW 23-114 29 0 0 0 -#> 1811 FW,LM,RM 31-181 90 0 0 0 -#> 1812 CM 30-253 72 2 2 1 -#> 1813 RM 27-193 18 0 0 0 -#> 1814 CM 29-215 80 1 1 1 -#> 1815 CM 27-301 10 0 0 0 -#> 1816 CM 28-117 61 1 0 0 -#> 1817 FW 29-330 29 1 0 0 -#> 1818 WB,LM 29-014 71 2 1 1 -#> 1819 CB 27-092 18 0 0 0 -#> 1820 WB,RB 27-231 90 1 0 1 -#> 1821 CB,LB 28-240 90 1 1 0 -#> 1822 CB,CM 33-249 90 0 0 0 -#> 1823 CB 33-125 90 2 1 0 -#> 1824 GK 29-254 90 0 0 0 -#> 1825 FW 21-252 85 1 0 0 -#> 1826 LM 26-042 5 1 0 0 -#> 1827 LW 22-068 90 0 0 0 -#> 1828 RW 24-058 90 1 1 0 -#> 1829 LM 32-257 85 1 0 0 -#> 1830 FW 26-240 5 1 1 0 -#> 1831 CM 22-234 90 2 2 0 -#> 1832 RM 37-009 81 0 0 0 -#> 1833 RM 19-312 9 0 0 0 -#> 1834 LB 27-102 74 1 1 1 -#> 1835 LB 29-199 16 0 0 0 -#> 1836 CB 30-086 90 0 0 0 -#> 1837 CB 24-243 90 2 2 2 -#> 1838 RB 30-250 90 2 2 1 -#> 1839 GK 30-130 90 0 0 0 -#> 1840 FW,RW 28-107 90 0 0 0 -#> 1841 LW 27-088 78 1 1 0 -#> 1842 CM,LM 29-132 12 0 0 0 -#> 1843 RW,LW 20-080 90 0 0 0 -#> 1844 AM 29-285 78 1 1 0 -#> 1845 FW 25-000 12 0 0 0 -#> 1846 DM,CM 32-129 83 4 1 1 -#> 1847 LM 23-269 7 0 0 0 -#> 1848 DM 22-158 71 1 0 0 -#> 1849 RM,DM 33-047 19 0 0 0 -#> 1850 LB 29-149 90 1 1 0 -#> 1851 CB 31-136 90 2 0 2 -#> 1852 CB 27-249 71 2 2 2 -#> 1853 CB 22-154 19 0 0 0 -#> 1854 RB 33-169 90 2 2 1 -#> 1855 GK 25-111 90 0 0 0 -#> 1856 FW 20-202 57 0 0 0 -#> 1857 LM,FW 30-146 33 1 1 1 -#> 1858 FW 21-215 45 0 0 0 -#> 1859 FW 33-016 45 0 0 0 -#> 1860 CM 21-307 78 0 0 0 -#> 1861 LM 30-207 12 1 1 0 -#> 1862 CM 25-196 65 0 0 0 -#> 1863 CM 21-263 25 0 0 0 -#> 1864 CM 32-109 58 0 0 0 -#> 1865 RM,CM 30-035 32 0 0 0 -#> 1866 LB 24-288 90 4 4 3 -#> 1867 CB 26-161 90 2 0 2 -#> 1868 CB 28-331 90 1 1 1 -#> 1869 CB 18-261 90 2 2 2 -#> 1870 RB 24-149 90 2 2 2 -#> 1871 GK 32-112 90 0 0 0 -#> 1872 FW 37-042 58 3 3 1 -#> 1873 CM,FW 29-351 32 0 0 0 -#> 1874 FW,LM 30-122 90 1 1 0 -#> 1875 LM 26-315 58 0 0 0 -#> 1876 FW,LM 29-159 32 0 0 0 -#> 1877 CM 31-153 68 3 2 0 -#> 1878 CM 34-299 22 1 0 1 -#> 1879 CM 25-199 58 2 1 0 -#> 1880 FW,CM 34-021 32 0 0 0 -#> 1881 RM 27-233 89 4 2 1 -#> 1882 RM 30-099 1 0 0 0 -#> 1883 LB 30-269 90 3 0 2 -#> 1884 CB 22-210 90 0 0 0 -#> 1885 CB 33-170 90 0 0 0 -#> 1886 RB 29-161 89 3 1 2 -#> 1887 GK 29-230 90 0 0 0 -#> 1888 FW 21-103 82 0 0 0 -#> 1889 FW 23-132 8 0 0 0 -#> 1890 FW 21-073 90 2 0 1 -#> 1891 LM 31-141 66 0 0 0 -#> 1892 LM 25-243 24 0 0 0 -#> 1893 CM 33-168 90 2 2 1 -#> 1894 CM 34-082 90 3 2 2 -#> 1895 RM 26-175 82 2 2 0 -#> 1896 RM 35-070 8 0 0 0 -#> 1897 LB 26-175 90 2 2 0 -#> 1898 CB 25-258 90 2 2 2 -#> 1899 CB 37-027 90 2 1 2 -#> 1900 RB 31-241 90 1 1 1 -#> 1901 GK 30-134 90 0 0 0 -#> 1902 FW 25-179 90 0 0 0 -#> 1903 FW 25-144 90 1 1 0 -#> 1904 CM 23-100 45 0 0 0 -#> 1905 CM 25-252 36 2 0 2 -#> 1906 CM 32-132 9 0 0 0 -#> 1907 CM 27-001 62 1 0 0 -#> 1908 CM 27-030 28 1 1 1 -#> 1909 CM 24-269 90 0 0 0 -#> 1910 LB 24-090 74 4 2 3 -#> 1911 LB 21-192 16 0 0 0 -#> 1912 CB 22-191 90 3 2 2 -#> 1913 CB 27-205 90 2 0 2 -#> 1914 CB 30-274 90 2 1 1 -#> 1915 RB 34-157 90 1 1 0 -#> 1916 GK 29-180 90 0 0 0 -#> 1917 FW 33-268 77 1 1 0 -#> 1918 FW 26-229 13 0 0 0 -#> 1919 LW 31-232 77 0 0 0 -#> 1920 LW 30-008 13 0 0 0 -#> 1921 RW 21-334 90 0 0 0 -#> 1922 LM 26-153 90 0 0 0 -#> 1923 CM 33-116 85 2 0 2 -#> 1924 CM 26-354 5 0 0 0 -#> 1925 RM 25-229 90 3 0 1 -#> 1926 LB 33-029 90 2 1 1 -#> 1927 CB 25-201 90 1 1 1 -#> 1928 CB 26-123 32 0 0 0 -#> 1929 CB 30-214 13 1 0 1 -#> 1930 CB 33-273 45 0 0 0 -#> 1931 RB 18-003 90 4 2 3 -#> 1932 GK 33-271 90 0 0 0 -#> 1933 FW 24-360 90 0 0 0 -#> 1934 LW,CM 30-163 90 0 0 0 -#> 1935 RW,RM 30-211 90 3 1 0 -#> 1936 AM 27-325 66 0 0 0 -#> 1937 LM 34-228 24 0 0 0 -#> 1938 DM 31-028 45 0 0 0 -#> 1939 DM,CM 34-205 45 3 3 0 -#> 1940 DM,CB 30-319 90 0 0 0 -#> 1941 LB 27-303 27 0 0 0 -#> 1942 LB 29-290 63 0 0 0 -#> 1943 CB 20-161 45 0 0 0 -#> 1944 RB 36-314 45 2 1 1 -#> 1945 CB 20-116 66 0 0 0 -#> 1946 FW 25-122 24 0 0 0 -#> 1947 CB,RB 20-245 90 4 4 0 -#> 1948 GK 31-179 90 1 1 1 -#> 1949 FW 29-343 60 1 1 0 -#> 1950 FW,RM,LM 31-194 30 0 0 0 -#> 1951 LM,FW 23-127 71 1 1 1 -#> 1952 RM 27-206 19 0 0 0 -#> 1953 CM 27-314 60 1 1 1 -#> 1954 LM,LB 29-027 30 0 0 0 -#> 1955 CM,RM 30-266 72 0 0 0 -#> 1956 CM 29-228 18 0 0 0 -#> 1957 RB,RM 27-244 90 0 0 0 -#> 1958 CM,DM 33-262 90 0 0 0 -#> 1959 LB,CB 28-253 90 5 4 3 -#> 1960 CB 27-254 90 3 3 3 -#> 1961 CB 31-266 90 1 1 1 -#> 1962 RB,CB 24-178 86 3 2 1 -#> 1963 FW 22-325 4 0 0 0 -#> 1964 GK 29-267 90 0 0 0 -#> 1965 FW 28-160 90 0 0 0 -#> 1966 LM 21-224 90 2 2 0 -#> 1967 CM 26-252 90 3 0 1 -#> 1968 CM 29-056 84 1 1 0 -#> 1969 RM,CM 31-274 6 1 0 0 -#> 1970 RM 25-273 66 0 0 0 -#> 1971 RM,CM 34-117 24 0 0 0 -#> 1972 LB 34-197 76 2 1 2 -#> 1973 LB 25-290 14 1 1 0 -#> 1974 CB 22-356 90 1 1 1 -#> 1975 CB 30-358 90 0 0 0 -#> 1976 CB 26-294 90 1 0 0 -#> 1977 RB 25-081 90 2 2 1 -#> 1978 GK 26-335 90 0 0 0 -#> 1979 FW 34-041 90 2 0 0 -#> 1980 LW 19-335 66 3 3 1 -#> 1981 LW 25-291 24 0 0 0 -#> 1982 RW 25-139 79 0 0 0 -#> 1983 RW 22-214 11 0 0 0 -#> 1984 LM 18-057 90 1 1 0 -#> 1985 CM 34-077 90 1 1 0 -#> 1986 RM 25-286 66 1 0 1 -#> 1987 RM 19-310 24 0 0 0 -#> 1988 LB 33-194 79 1 0 1 -#> 1989 RB 30-236 11 0 0 0 -#> 1990 CB 26-174 90 1 1 1 -#> 1991 CB 35-241 90 0 0 0 -#> 1992 RB,LB 18-348 90 1 1 1 -#> 1993 GK 30-154 90 0 0 0 -#> 1994 FW 32-189 90 0 0 0 -#> 1995 LW 31-119 89 1 0 0 -#> 1996 RW 24-130 45 0 0 0 -#> 1997 RW,RB 33-042 45 0 0 0 -#> 1998 AM 26-062 61 2 2 0 -#> 1999 DM,AM,CM 25-035 29 1 1 0 -#> 2000 DM 23-107 86 3 2 1 -#> 2001 CM,DM 22-361 4 0 0 0 -#> 2002 DM,AM 28-284 86 2 1 1 -#> 2003 CB,DM 17-241 4 0 0 0 -#> 2004 LB 28-184 90 1 1 1 -#> 2005 CB 31-107 90 0 0 0 -#> 2006 CB 30-188 90 0 0 0 -#> 2007 RB 27-018 73 3 2 2 -#> 2008 RW,RM 21-174 17 0 0 0 -#> 2009 GK 24-172 90 0 0 0 -#> 2010 FW 35-230 72 0 0 0 -#> 2011 FW 25-347 12 0 0 0 -#> 2012 LW 22-283 90 1 1 1 -#> 2013 RW 27-257 45 0 0 0 -#> 2014 RW 23-150 45 1 1 0 -#> 2015 LM 19-256 83 0 0 0 -#> 2016 FW,LM 22-326 7 0 0 0 -#> 2017 CM 22-244 90 NA 0 NA -#> 2018 RM 22-125 72 0 0 0 -#> 2019 RM,DM 20-272 18 1 1 1 -#> 2020 LB 27-130 90 1 1 0 -#> 2021 CB 25-287 90 4 2 2 -#> 2022 CB 31-310 73 1 0 1 -#> 2023 CB 24-240 17 0 0 0 -#> 2024 RB 23-207 90 2 2 1 -#> 2025 GK 22-003 90 0 0 0 -#> 2026 FW 22-238 54 1 1 0 -#> 2027 FW 28-062 36 2 1 0 -#> 2028 FW 24-228 74 0 0 0 -#> 2029 FW 35-062 16 0 0 0 -#> 2030 LM 24-096 90 1 1 1 -#> 2031 CM,RM 20-128 69 3 1 2 -#> 2032 RM 24-132 21 0 0 0 -#> 2033 RM 30-272 54 1 1 0 -#> 2034 CM 27-066 36 3 2 3 -#> 2035 DM 23-241 90 0 0 0 -#> 2036 LB 27-317 90 2 1 1 -#> 2037 CB 25-245 90 0 0 0 -#> 2038 CB 27-003 90 2 1 2 -#> 2039 RB 31-102 69 2 0 0 -#> 2040 RB 23-142 21 3 2 3 -#> Mid 3rd_Tackles Att 3rd_Tackles Tkl_Challenges Att_Challenges -#> 1 0 1 0 1 -#> 2 0 0 0 0 -#> 3 0 0 0 1 -#> 4 0 0 0 0 -#> 5 0 0 0 0 -#> 6 1 1 1 1 -#> 7 0 1 1 3 -#> 8 1 0 0 1 -#> 9 0 0 0 1 -#> 10 1 0 0 0 -#> 11 1 0 2 2 -#> 12 0 0 0 0 -#> 13 0 0 1 1 -#> 14 0 0 0 0 -#> 15 0 0 0 0 -#> 16 0 0 0 0 -#> 17 0 0 0 0 -#> 18 1 0 1 1 -#> 19 2 0 1 1 -#> 20 0 0 0 0 -#> 21 0 0 0 0 -#> 22 0 0 0 0 -#> 23 0 0 0 0 -#> 24 0 0 0 0 -#> 25 2 0 1 1 -#> 26 0 0 0 0 -#> 27 0 1 1 1 -#> 28 3 0 2 2 -#> 29 0 0 0 0 -#> 30 0 0 1 2 -#> 31 0 0 0 2 -#> 32 0 0 0 0 -#> 33 2 0 1 1 -#> 34 1 0 0 1 -#> 35 0 0 0 0 -#> 36 3 0 2 5 -#> 37 0 0 0 0 -#> 38 1 0 1 2 -#> 39 0 0 0 0 -#> 40 0 0 0 2 -#> 41 1 0 0 1 -#> 42 1 0 1 4 -#> 43 1 0 1 2 -#> 44 1 0 0 0 -#> 45 0 0 0 0 -#> 46 4 0 3 3 -#> 47 0 0 0 0 -#> 48 0 0 0 0 -#> 49 0 0 0 1 -#> 50 1 0 1 1 -#> 51 1 2 2 2 -#> 52 0 0 0 1 -#> 53 0 0 0 0 -#> 54 0 1 0 0 -#> 55 0 0 1 1 -#> 56 2 1 0 1 -#> 57 0 0 0 0 -#> 58 4 0 0 0 -#> 59 1 0 0 0 -#> 60 1 0 0 0 -#> 61 0 1 1 2 -#> 62 0 0 0 0 -#> 63 0 0 0 0 -#> 64 0 0 0 0 -#> 65 2 0 1 5 -#> 66 0 0 1 1 -#> 67 0 0 0 0 -#> 68 1 0 1 4 -#> 69 0 0 0 0 -#> 70 0 0 0 1 -#> 71 0 0 0 1 -#> 72 2 1 2 4 -#> 73 1 0 1 5 -#> 74 0 0 1 1 -#> 75 0 0 0 0 -#> 76 0 0 0 0 -#> 77 0 0 1 1 -#> 78 0 0 0 0 -#> 79 0 0 0 2 -#> 80 0 0 0 0 -#> 81 0 0 0 1 -#> 82 3 0 2 2 -#> 83 0 0 0 0 -#> 84 2 2 1 3 -#> 85 2 0 0 0 -#> 86 1 1 2 6 -#> 87 0 0 0 1 -#> 88 0 0 0 1 -#> 89 0 1 1 1 -#> 90 0 0 0 0 -#> 91 1 0 3 4 -#> 92 0 0 0 0 -#> 93 0 0 0 0 -#> 94 1 1 1 2 -#> 95 0 0 0 2 -#> 96 0 2 1 1 -#> 97 0 0 0 0 -#> 98 0 0 0 0 -#> 99 0 0 0 0 -#> 100 0 1 0 0 -#> 101 0 1 1 2 -#> 102 0 1 0 0 -#> 103 1 0 1 2 -#> 104 0 0 0 0 -#> 105 1 1 0 1 -#> 106 2 0 0 0 -#> 107 0 0 0 0 -#> 108 1 0 1 2 -#> 109 0 0 0 0 -#> 110 0 1 0 0 -#> 111 0 0 0 0 -#> 112 0 0 0 0 -#> 113 2 0 3 3 -#> 114 0 0 0 2 -#> 115 1 0 0 1 -#> 116 1 0 0 0 -#> 117 5 0 2 5 -#> 118 0 0 0 1 -#> 119 1 0 0 0 -#> 120 0 0 1 1 -#> 121 0 0 0 0 -#> 122 0 0 0 0 -#> 123 0 0 0 0 -#> 124 0 0 0 0 -#> 125 0 0 0 0 -#> 126 0 0 0 0 -#> 127 0 0 0 0 -#> 128 0 0 0 0 -#> 129 0 2 1 1 -#> 130 0 0 1 1 -#> 131 1 0 0 0 -#> 132 2 0 3 4 -#> 133 0 0 0 0 -#> 134 0 1 0 1 -#> 135 1 0 2 5 -#> 136 1 0 1 2 -#> 137 0 1 1 1 -#> 138 0 0 0 1 -#> 139 0 0 1 2 -#> 140 0 0 0 0 -#> 141 1 0 0 2 -#> 142 0 0 0 1 -#> 143 0 1 0 0 -#> 144 0 0 0 0 -#> 145 2 1 1 1 -#> 146 0 0 2 2 -#> 147 0 1 1 4 -#> 148 0 0 0 0 -#> 149 3 1 3 3 -#> 150 1 0 0 0 -#> 151 1 1 1 3 -#> 152 0 0 0 0 -#> 153 0 0 0 0 -#> 154 2 0 1 2 -#> 155 0 1 1 2 -#> 156 0 0 0 0 -#> 157 0 1 1 1 -#> 158 0 0 1 1 -#> 159 2 0 1 3 -#> 160 0 0 0 0 -#> 161 0 1 0 1 -#> 162 0 0 0 1 -#> 163 0 0 0 0 -#> 164 0 0 0 0 -#> 165 NA NA NA NA -#> 166 1 0 1 1 -#> 167 0 0 0 0 -#> 168 0 0 0 0 -#> 169 0 0 0 1 -#> 170 1 0 1 1 -#> 171 0 0 1 3 -#> 172 0 0 0 0 -#> 173 0 1 0 0 -#> 174 0 0 0 0 -#> 175 0 0 0 0 -#> 176 0 0 1 3 -#> 177 0 2 1 2 -#> 178 0 0 0 0 -#> 179 0 1 1 1 -#> 180 0 0 1 2 -#> 181 0 0 0 0 -#> 182 0 0 1 2 -#> 183 0 0 0 0 -#> 184 2 0 2 3 -#> 185 0 0 0 1 -#> 186 0 0 0 0 -#> 187 1 0 3 4 -#> 188 0 0 0 0 -#> 189 0 0 0 0 -#> 190 0 0 0 0 -#> 191 0 0 0 1 -#> 192 0 0 0 0 -#> 193 1 0 1 5 -#> 194 1 0 1 1 -#> 195 0 0 0 0 -#> 196 0 0 1 2 -#> 197 1 0 1 2 -#> 198 0 0 0 0 -#> 199 0 0 0 0 -#> 200 1 0 1 1 -#> 201 0 0 1 2 -#> 202 0 0 0 0 -#> 203 1 0 1 2 -#> 204 0 0 0 0 -#> 205 0 0 0 0 -#> 206 0 1 0 1 -#> 207 0 0 0 0 -#> 208 0 0 0 0 -#> 209 1 0 0 2 -#> 210 0 0 0 0 -#> 211 0 0 1 1 -#> 212 0 0 0 0 -#> 213 1 1 0 0 -#> 214 0 0 0 2 -#> 215 1 0 1 2 -#> 216 0 0 0 0 -#> 217 0 0 0 0 -#> 218 0 0 0 0 -#> 219 0 0 1 1 -#> 220 0 0 0 0 -#> 221 0 0 0 0 -#> 222 0 0 0 0 -#> 223 0 0 0 1 -#> 224 0 0 0 0 -#> 225 1 0 1 1 -#> 226 0 0 0 0 -#> 227 1 0 0 0 -#> 228 0 0 0 0 -#> 229 2 0 2 2 -#> 230 1 0 0 1 -#> 231 0 0 0 1 -#> 232 0 0 0 1 -#> 233 0 1 2 2 -#> 234 0 0 1 1 -#> 235 0 0 0 2 -#> 236 0 0 0 0 -#> 237 0 0 0 0 -#> 238 0 0 0 0 -#> 239 0 0 2 2 -#> 240 0 0 1 3 -#> 241 1 0 0 1 -#> 242 1 0 0 0 -#> 243 0 0 0 0 -#> 244 2 0 1 3 -#> 245 0 0 0 0 -#> 246 0 0 0 2 -#> 247 1 0 2 2 -#> 248 0 0 0 1 -#> 249 0 0 2 2 -#> 250 0 0 0 0 -#> 251 0 0 0 0 -#> 252 0 0 0 0 -#> 253 0 0 0 0 -#> 254 0 0 0 0 -#> 255 1 0 0 0 -#> 256 0 0 2 4 -#> 257 0 0 0 0 -#> 258 0 1 0 1 -#> 259 1 0 0 3 -#> 260 1 0 1 2 -#> 261 0 1 0 0 -#> 262 1 0 1 1 -#> 263 0 0 0 0 -#> 264 0 0 0 0 -#> 265 0 0 1 2 -#> 266 0 0 0 0 -#> 267 0 0 0 0 -#> 268 0 0 0 0 -#> 269 0 0 0 0 -#> 270 0 0 0 0 -#> 271 2 0 0 2 -#> 272 0 0 0 0 -#> 273 2 0 1 2 -#> 274 0 0 0 0 -#> 275 0 0 0 0 -#> 276 2 0 4 5 -#> 277 0 0 1 1 -#> 278 1 0 1 2 -#> 279 0 0 0 0 -#> 280 1 0 3 3 -#> 281 0 0 1 1 -#> 282 0 0 0 0 -#> 283 0 0 1 1 -#> 284 1 1 0 0 -#> 285 0 1 1 1 -#> 286 1 0 1 1 -#> 287 0 0 0 0 -#> 288 0 0 0 1 -#> 289 0 0 0 0 -#> 290 1 0 0 2 -#> 291 0 0 1 2 -#> 292 0 0 1 1 -#> 293 0 0 0 1 -#> 294 1 0 1 1 -#> 295 1 0 0 0 -#> 296 0 0 1 1 -#> 297 0 0 0 0 -#> 298 0 0 0 0 -#> 299 0 0 0 1 -#> 300 0 1 0 0 -#> 301 0 0 0 2 -#> 302 0 0 0 1 -#> 303 0 1 1 6 -#> 304 0 0 0 0 -#> 305 1 0 1 2 -#> 306 0 0 0 0 -#> 307 0 0 0 0 -#> 308 1 0 2 6 -#> 309 0 0 1 1 -#> 310 0 0 1 2 -#> 311 0 0 2 3 -#> 312 0 0 0 1 -#> 313 0 0 0 0 -#> 314 0 0 0 0 -#> 315 0 0 0 0 -#> 316 0 0 0 0 -#> 317 1 0 1 1 -#> 318 1 0 3 3 -#> 319 0 0 0 0 -#> 320 0 1 0 2 -#> 321 2 0 0 0 -#> 322 1 0 0 0 -#> 323 0 0 0 0 -#> 324 0 0 1 1 -#> 325 0 0 0 0 -#> 326 0 0 0 0 -#> 327 0 0 0 0 -#> 328 0 0 0 0 -#> 329 0 0 0 0 -#> 330 0 0 0 1 -#> 331 0 0 0 0 -#> 332 0 0 0 0 -#> 333 0 0 1 1 -#> 334 0 0 0 0 -#> 335 0 0 0 0 -#> 336 0 0 1 1 -#> 337 1 0 1 3 -#> 338 0 0 1 1 -#> 339 0 0 0 1 -#> 340 0 0 0 0 -#> 341 0 1 1 3 -#> 342 0 0 1 1 -#> 343 0 0 0 0 -#> 344 0 0 1 2 -#> 345 0 0 0 0 -#> 346 0 0 0 0 -#> 347 0 0 0 0 -#> 348 0 0 0 0 -#> 349 1 0 1 1 -#> 350 3 1 2 3 -#> 351 3 0 2 3 -#> 352 0 0 0 0 -#> 353 2 0 0 0 -#> 354 2 0 1 1 -#> 355 0 1 0 1 -#> 356 0 0 1 2 -#> 357 0 0 0 0 -#> 358 0 0 0 0 -#> 359 0 0 1 1 -#> 360 0 0 0 1 -#> 361 0 0 0 0 -#> 362 1 0 0 1 -#> 363 0 0 0 0 -#> 364 1 2 0 0 -#> 365 0 0 0 1 -#> 366 0 0 0 0 -#> 367 0 0 0 2 -#> 368 0 0 0 1 -#> 369 0 1 0 1 -#> 370 0 0 0 0 -#> 371 2 0 2 3 -#> 372 0 0 1 1 -#> 373 0 0 0 0 -#> 374 0 0 1 1 -#> 375 0 0 0 0 -#> 376 1 0 1 1 -#> 377 0 0 0 0 -#> 378 0 1 0 0 -#> 379 0 0 0 0 -#> 380 0 0 0 2 -#> 381 0 0 0 0 -#> 382 0 0 0 0 -#> 383 2 1 2 3 -#> 384 0 0 0 1 -#> 385 2 0 0 0 -#> 386 0 0 0 0 -#> 387 0 0 0 1 -#> 388 0 0 1 1 -#> 389 0 0 1 1 -#> 390 2 1 1 1 -#> 391 1 0 1 2 -#> 392 0 0 0 0 -#> 393 0 0 0 0 -#> 394 0 0 0 1 -#> 395 0 0 0 0 -#> 396 0 0 0 0 -#> 397 0 0 0 1 -#> 398 1 0 1 1 -#> 399 0 0 0 0 -#> 400 0 0 1 1 -#> 401 1 0 3 3 -#> 402 0 0 0 0 -#> 403 0 0 0 0 -#> 404 2 0 4 6 -#> 405 0 0 0 0 -#> 406 0 0 0 1 -#> 407 1 0 0 0 -#> 408 0 0 1 1 -#> 409 0 0 0 0 -#> 410 2 0 1 1 -#> 411 1 0 0 2 -#> 412 1 0 0 1 -#> 413 0 0 0 0 -#> 414 0 0 0 0 -#> 415 2 0 1 1 -#> 416 3 0 3 4 -#> 417 0 0 0 0 -#> 418 1 0 2 2 -#> 419 1 1 1 2 -#> 420 0 0 0 0 -#> 421 0 0 1 1 -#> 422 1 0 1 2 -#> 423 0 0 0 2 -#> 424 0 0 0 0 -#> 425 0 0 0 0 -#> 426 1 0 1 1 -#> 427 0 0 0 2 -#> 428 0 0 0 0 -#> 429 0 0 0 1 -#> 430 0 0 0 1 -#> 431 0 0 0 1 -#> 432 0 0 0 0 -#> 433 4 0 2 3 -#> 434 0 0 3 6 -#> 435 0 0 0 1 -#> 436 0 0 0 0 -#> 437 0 0 1 2 -#> 438 0 0 0 0 -#> 439 0 0 0 2 -#> 440 0 0 0 0 -#> 441 0 0 0 1 -#> 442 1 0 0 1 -#> 443 0 0 0 0 -#> 444 0 0 1 2 -#> 445 0 2 3 7 -#> 446 0 0 0 1 -#> 447 0 0 0 0 -#> 448 0 0 1 1 -#> 449 1 0 1 1 -#> 450 1 0 2 3 -#> 451 1 0 2 2 -#> 452 0 0 0 1 -#> 453 0 0 0 1 -#> 454 1 1 1 2 -#> 455 0 0 0 1 -#> 456 2 0 2 4 -#> 457 0 0 0 2 -#> 458 0 0 0 0 -#> 459 2 0 0 0 -#> 460 0 0 0 2 -#> 461 0 0 0 0 -#> 462 0 0 1 2 -#> 463 0 0 0 0 -#> 464 0 0 0 0 -#> 465 0 0 1 1 -#> 466 1 0 0 0 -#> 467 0 0 0 0 -#> 468 0 0 0 0 -#> 469 2 0 1 1 -#> 470 0 0 0 0 -#> 471 0 0 1 1 -#> 472 0 0 0 0 -#> 473 0 0 0 1 -#> 474 0 0 0 0 -#> 475 0 0 0 0 -#> 476 0 0 0 0 -#> 477 2 1 4 10 -#> 478 0 0 0 2 -#> 479 0 0 0 1 -#> 480 0 0 3 3 -#> 481 0 0 1 1 -#> 482 0 0 2 3 -#> 483 1 0 3 4 -#> 484 0 0 0 0 -#> 485 0 0 0 0 -#> 486 0 0 0 0 -#> 487 1 0 0 1 -#> 488 0 0 0 1 -#> 489 1 1 2 2 -#> 490 NA NA NA NA -#> 491 0 0 0 0 -#> 492 0 0 1 2 -#> 493 0 0 0 1 -#> 494 0 1 0 1 -#> 495 1 0 0 2 -#> 496 1 0 1 2 -#> 497 0 0 0 0 -#> 498 0 0 1 1 -#> 499 0 0 1 1 -#> 500 0 0 0 0 -#> 501 1 1 1 1 -#> 502 0 0 0 1 -#> 503 1 0 0 1 -#> 504 0 0 0 0 -#> 505 3 0 3 4 -#> 506 1 0 1 2 -#> 507 0 1 1 4 -#> 508 0 0 0 0 -#> 509 1 0 2 3 -#> 510 0 0 0 1 -#> 511 1 0 1 2 -#> 512 0 0 2 2 -#> 513 1 0 2 2 -#> 514 0 0 1 1 -#> 515 0 0 0 0 -#> 516 0 0 0 0 -#> 517 0 0 0 0 -#> 518 0 0 0 1 -#> 519 0 0 0 0 -#> 520 0 0 0 1 -#> 521 0 1 1 1 -#> 522 0 0 0 1 -#> 523 0 0 0 0 -#> 524 0 0 0 0 -#> 525 0 0 1 2 -#> 526 0 0 0 0 -#> 527 0 0 0 0 -#> 528 0 0 0 0 -#> 529 0 0 0 0 -#> 530 2 0 2 2 -#> 531 0 0 0 0 -#> 532 1 1 2 3 -#> 533 0 0 0 0 -#> 534 0 0 0 0 -#> 535 0 0 0 0 -#> 536 1 0 1 3 -#> 537 0 0 1 2 -#> 538 2 0 3 3 -#> 539 0 0 0 0 -#> 540 0 0 0 2 -#> 541 1 0 4 7 -#> 542 2 0 2 3 -#> 543 1 0 0 0 -#> 544 0 0 1 1 -#> 545 1 0 1 1 -#> 546 1 0 1 1 -#> 547 0 0 0 0 -#> 548 0 1 0 0 -#> 549 0 0 0 1 -#> 550 0 1 1 1 -#> 551 0 2 0 0 -#> 552 0 0 1 1 -#> 553 0 0 0 0 -#> 554 0 0 0 1 -#> 555 2 0 1 4 -#> 556 0 0 1 1 -#> 557 0 0 0 0 -#> 558 3 0 2 2 -#> 559 0 0 0 0 -#> 560 0 0 1 1 -#> 561 0 0 0 0 -#> 562 2 0 1 1 -#> 563 0 0 0 0 -#> 564 0 0 0 0 -#> 565 0 0 0 0 -#> 566 0 1 1 2 -#> 567 0 0 1 1 -#> 568 0 0 0 1 -#> 569 0 0 0 0 -#> 570 0 1 0 0 -#> 571 0 0 0 0 -#> 572 1 0 0 1 -#> 573 1 0 0 0 -#> 574 0 0 0 2 -#> 575 1 0 1 2 -#> 576 0 0 1 1 -#> 577 2 0 2 2 -#> 578 0 0 0 0 -#> 579 0 0 0 0 -#> 580 2 0 1 1 -#> 581 1 0 0 0 -#> 582 1 2 1 2 -#> 583 1 0 0 1 -#> 584 0 0 0 2 -#> 585 1 0 4 5 -#> 586 0 0 0 0 -#> 587 0 0 0 0 -#> 588 0 0 0 0 -#> 589 0 0 0 0 -#> 590 1 1 3 3 -#> 591 0 0 0 0 -#> 592 0 0 0 0 -#> 593 0 0 0 0 -#> 594 0 0 0 2 -#> 595 1 0 1 2 -#> 596 0 0 0 0 -#> 597 4 0 1 1 -#> 598 0 0 0 0 -#> 599 0 0 0 0 -#> 600 1 0 0 3 -#> 601 1 0 1 1 -#> 602 1 0 1 1 -#> 603 0 0 0 0 -#> 604 0 0 0 0 -#> 605 0 0 0 0 -#> 606 1 0 1 2 -#> 607 0 0 0 0 -#> 608 0 0 0 0 -#> 609 0 0 0 0 -#> 610 0 0 0 0 -#> 611 3 0 3 7 -#> 612 0 0 0 0 -#> 613 0 1 0 1 -#> 614 0 0 0 0 -#> 615 0 0 0 0 -#> 616 0 0 0 0 -#> 617 1 0 1 2 -#> 618 3 0 2 7 -#> 619 1 0 0 0 -#> 620 1 0 0 0 -#> 621 0 0 0 1 -#> 622 0 0 0 0 -#> 623 0 0 0 0 -#> 624 0 0 0 0 -#> 625 0 0 0 2 -#> 626 0 0 0 2 -#> 627 0 0 0 0 -#> 628 0 0 0 0 -#> 629 0 1 1 1 -#> 630 0 0 0 0 -#> 631 2 0 0 1 -#> 632 3 2 1 3 -#> 633 0 0 0 3 -#> 634 0 0 1 1 -#> 635 0 0 0 0 -#> 636 1 0 0 2 -#> 637 0 0 0 0 -#> 638 1 0 1 2 -#> 639 0 0 0 1 -#> 640 0 0 0 1 -#> 641 0 0 0 0 -#> 642 1 0 1 1 -#> 643 0 0 0 0 -#> 644 0 0 0 0 -#> 645 3 0 2 2 -#> 646 2 0 1 4 -#> 647 0 0 0 0 -#> 648 0 0 0 1 -#> 649 3 0 2 2 -#> 650 0 0 0 1 -#> 651 0 0 0 0 -#> 652 1 0 2 5 -#> 653 0 0 0 0 -#> 654 0 0 0 0 -#> 655 0 0 0 0 -#> 656 1 0 0 0 -#> 657 0 0 0 0 -#> 658 0 0 0 0 -#> 659 0 0 0 0 -#> 660 0 0 1 1 -#> 661 1 0 0 1 -#> 662 1 0 0 0 -#> 663 1 1 0 0 -#> 664 0 0 1 1 -#> 665 0 0 2 2 -#> 666 0 0 0 2 -#> 667 1 0 1 1 -#> 668 0 0 0 0 -#> 669 0 0 0 0 -#> 670 0 0 0 0 -#> 671 1 0 0 0 -#> 672 0 0 0 1 -#> 673 0 0 0 2 -#> 674 0 0 0 0 -#> 675 0 0 1 4 -#> 676 0 0 2 2 -#> 677 3 1 3 5 -#> 678 1 0 1 1 -#> 679 1 1 5 8 -#> 680 0 0 1 1 -#> 681 0 0 1 1 -#> 682 0 0 0 0 -#> 683 1 1 4 4 -#> 684 0 0 0 0 -#> 685 0 0 0 0 -#> 686 0 0 0 0 -#> 687 0 0 0 0 -#> 688 0 1 0 0 -#> 689 2 0 0 0 -#> 690 0 0 0 1 -#> 691 1 0 0 0 -#> 692 1 0 1 2 -#> 693 0 0 0 0 -#> 694 0 0 0 0 -#> 695 3 2 2 3 -#> 696 0 0 0 0 -#> 697 0 0 0 1 -#> 698 0 0 0 0 -#> 699 2 0 0 0 -#> 700 1 0 0 0 -#> 701 0 0 0 0 -#> 702 0 0 0 0 -#> 703 0 0 0 0 -#> 704 0 0 0 0 -#> 705 0 0 0 0 -#> 706 0 0 0 0 -#> 707 0 0 0 0 -#> 708 1 0 1 3 -#> 709 1 0 0 0 -#> 710 0 0 0 2 -#> 711 2 0 1 3 -#> 712 0 0 0 0 -#> 713 0 0 0 1 -#> 714 0 0 0 1 -#> 715 1 0 1 1 -#> 716 0 0 0 0 -#> 717 0 0 0 0 -#> 718 0 1 1 2 -#> 719 0 0 0 0 -#> 720 0 1 1 2 -#> 721 0 0 0 0 -#> 722 0 0 1 3 -#> 723 0 0 0 0 -#> 724 0 0 0 0 -#> 725 0 0 2 2 -#> 726 0 1 1 1 -#> 727 0 0 0 1 -#> 728 0 0 0 0 -#> 729 0 0 1 1 -#> 730 0 0 0 0 -#> 731 0 0 0 0 -#> 732 0 0 0 0 -#> 733 0 0 0 0 -#> 734 0 0 0 0 -#> 735 0 0 0 0 -#> 736 0 0 0 1 -#> 737 0 0 0 1 -#> 738 0 0 0 0 -#> 739 1 0 2 2 -#> 740 0 1 1 1 -#> 741 0 0 0 0 -#> 742 0 0 0 0 -#> 743 0 0 1 2 -#> 744 0 0 0 1 -#> 745 2 0 2 2 -#> 746 0 0 0 3 -#> 747 0 0 0 1 -#> 748 0 0 0 0 -#> 749 0 0 0 0 -#> 750 0 0 0 0 -#> 751 1 1 0 0 -#> 752 0 0 0 0 -#> 753 0 0 1 2 -#> 754 0 0 1 5 -#> 755 1 1 0 2 -#> 756 0 0 0 0 -#> 757 0 0 0 3 -#> 758 0 0 2 3 -#> 759 0 0 0 0 -#> 760 0 0 2 2 -#> 761 1 0 0 1 -#> 762 0 0 0 0 -#> 763 0 1 1 1 -#> 764 1 0 0 0 -#> 765 1 0 0 0 -#> 766 2 0 1 2 -#> 767 0 0 0 0 -#> 768 0 0 0 1 -#> 769 0 0 0 0 -#> 770 1 0 1 1 -#> 771 0 0 0 2 -#> 772 0 0 0 0 -#> 773 0 0 0 1 -#> 774 0 0 0 0 -#> 775 0 0 0 0 -#> 776 0 0 0 1 -#> 777 0 0 0 0 -#> 778 0 0 0 0 -#> 779 0 0 0 2 -#> 780 2 0 0 1 -#> 781 0 0 0 0 -#> 782 1 0 0 0 -#> 783 0 0 0 0 -#> 784 1 0 1 6 -#> 785 1 0 1 1 -#> 786 1 0 0 0 -#> 787 0 1 0 0 -#> 788 0 1 1 1 -#> 789 1 0 2 2 -#> 790 0 0 0 0 -#> 791 0 0 0 0 -#> 792 1 0 1 1 -#> 793 0 0 0 0 -#> 794 0 0 0 0 -#> 795 0 0 0 0 -#> 796 0 0 0 0 -#> 797 0 1 0 0 -#> 798 1 0 1 1 -#> 799 0 0 0 0 -#> 800 0 0 0 5 -#> 801 0 0 0 3 -#> 802 0 0 2 3 -#> 803 1 1 3 4 -#> 804 0 0 0 0 -#> 805 0 0 0 0 -#> 806 0 0 1 5 -#> 807 1 0 1 2 -#> 808 0 0 2 3 -#> 809 1 0 1 1 -#> 810 0 0 0 0 -#> 811 0 0 0 0 -#> 812 0 0 1 1 -#> 813 0 0 0 0 -#> 814 1 0 1 1 -#> 815 3 0 3 4 -#> 816 0 0 0 0 -#> 817 1 0 3 3 -#> 818 0 0 0 3 -#> 819 0 0 1 1 -#> 820 0 0 0 0 -#> 821 0 0 3 3 -#> 822 0 0 1 1 -#> 823 0 0 0 1 -#> 824 0 0 0 0 -#> 825 0 0 0 0 -#> 826 0 0 0 1 -#> 827 0 0 1 1 -#> 828 0 0 0 0 -#> 829 1 0 1 1 -#> 830 0 0 1 1 -#> 831 0 0 0 1 -#> 832 0 0 0 0 -#> 833 0 0 0 0 -#> 834 0 0 1 2 -#> 835 0 0 0 0 -#> 836 0 0 0 0 -#> 837 1 0 0 0 -#> 838 0 0 0 0 -#> 839 0 0 0 0 -#> 840 1 0 0 0 -#> 841 0 0 0 0 -#> 842 0 0 0 0 -#> 843 0 0 0 4 -#> 844 0 0 0 2 -#> 845 0 0 0 0 -#> 846 NA NA NA NA -#> 847 0 0 0 1 -#> 848 0 0 1 4 -#> 849 1 1 2 3 -#> 850 0 0 0 0 -#> 851 0 0 0 0 -#> 852 0 0 1 1 -#> 853 0 0 0 0 -#> 854 2 0 0 0 -#> 855 0 0 0 1 -#> 856 0 0 0 0 -#> 857 0 0 1 1 -#> 858 0 1 1 1 -#> 859 0 0 0 0 -#> 860 0 0 0 0 -#> 861 0 0 0 0 -#> 862 0 0 0 0 -#> 863 1 1 2 4 -#> 864 0 0 0 0 -#> 865 0 0 0 0 -#> 866 1 0 1 1 -#> 867 0 0 2 3 -#> 868 0 0 1 1 -#> 869 1 0 2 2 -#> 870 1 0 1 1 -#> 871 0 0 0 0 -#> 872 0 1 0 0 -#> 873 0 0 0 0 -#> 874 0 0 0 0 -#> 875 0 0 0 0 -#> 876 0 0 0 0 -#> 877 0 0 0 1 -#> 878 NA NA NA NA -#> 879 0 0 0 0 -#> 880 2 0 1 1 -#> 881 0 0 0 0 -#> 882 0 0 0 0 -#> 883 0 0 0 0 -#> 884 0 0 1 2 -#> 885 0 0 0 0 -#> 886 0 0 0 0 -#> 887 0 0 0 0 -#> 888 0 0 0 1 -#> 889 0 0 0 1 -#> 890 1 0 0 0 -#> 891 0 0 0 1 -#> 892 1 0 1 3 -#> 893 0 0 0 1 -#> 894 0 0 0 1 -#> 895 0 0 0 0 -#> 896 0 0 0 0 -#> 897 1 0 1 1 -#> 898 0 0 2 5 -#> 899 0 0 0 0 -#> 900 0 0 1 1 -#> 901 0 0 1 1 -#> 902 1 0 1 2 -#> 903 0 0 0 0 -#> 904 0 0 0 1 -#> 905 2 0 1 1 -#> 906 0 0 0 1 -#> 907 0 0 0 0 -#> 908 1 0 1 2 -#> 909 0 0 0 0 -#> 910 0 0 0 0 -#> 911 2 0 1 2 -#> 912 0 0 0 0 -#> 913 1 0 1 1 -#> 914 0 0 2 2 -#> 915 1 0 0 0 -#> 916 0 0 0 0 -#> 917 0 0 1 1 -#> 918 0 0 2 2 -#> 919 0 0 0 0 -#> 920 0 0 0 0 -#> 921 0 0 0 0 -#> 922 NA NA NA NA -#> 923 0 0 0 1 -#> 924 0 0 1 1 -#> 925 0 0 0 0 -#> 926 1 1 1 2 -#> 927 2 0 2 6 -#> 928 0 0 0 0 -#> 929 0 0 0 1 -#> 930 0 0 0 0 -#> 931 0 2 3 3 -#> 932 0 0 0 0 -#> 933 0 0 1 2 -#> 934 1 0 0 0 -#> 935 0 0 0 0 -#> 936 0 0 0 0 -#> 937 1 1 0 3 -#> 938 0 0 0 0 -#> 939 0 0 0 0 -#> 940 2 0 2 2 -#> 941 0 0 0 0 -#> 942 0 0 1 3 -#> 943 1 0 1 1 -#> 944 1 1 1 1 -#> 945 2 0 3 3 -#> 946 0 0 1 1 -#> 947 1 0 2 2 -#> 948 0 0 1 3 -#> 949 0 0 0 0 -#> 950 0 0 0 0 -#> 951 1 0 0 2 -#> 952 0 0 1 1 -#> 953 0 0 0 0 -#> 954 0 1 0 1 -#> 955 0 0 0 0 -#> 956 0 0 0 0 -#> 957 0 0 0 0 -#> 958 3 0 1 1 -#> 959 0 0 0 2 -#> 960 0 0 1 1 -#> 961 0 0 1 1 -#> 962 0 0 0 0 -#> 963 0 0 0 0 -#> 964 1 0 0 0 -#> 965 0 0 0 0 -#> 966 0 0 0 0 -#> 967 1 0 3 4 -#> 968 0 2 1 1 -#> 969 0 1 1 1 -#> 970 1 0 0 1 -#> 971 0 0 0 0 -#> 972 6 0 5 6 -#> 973 0 0 2 3 -#> 974 0 0 0 1 -#> 975 1 0 2 3 -#> 976 0 0 0 0 -#> 977 1 0 2 2 -#> 978 0 1 2 2 -#> 979 0 0 0 0 -#> 980 0 0 0 0 -#> 981 0 1 0 0 -#> 982 0 0 0 1 -#> 983 0 0 0 0 -#> 984 1 1 2 2 -#> 985 0 0 0 0 -#> 986 3 0 2 4 -#> 987 0 0 1 2 -#> 988 0 0 0 0 -#> 989 1 1 2 3 -#> 990 0 0 0 2 -#> 991 0 0 2 2 -#> 992 2 0 3 3 -#> 993 0 0 1 1 -#> 994 0 0 0 0 -#> 995 0 0 0 0 -#> 996 0 0 0 0 -#> 997 0 1 0 0 -#> 998 0 0 0 0 -#> 999 0 0 0 1 -#> 1000 0 0 0 0 -#> 1001 0 0 0 1 -#> 1002 4 0 2 3 -#> 1003 2 0 1 2 -#> 1004 1 0 0 0 -#> 1005 0 1 1 1 -#> 1006 0 0 0 0 -#> 1007 1 0 1 1 -#> 1008 0 0 0 0 -#> 1009 0 0 2 4 -#> 1010 0 0 0 0 -#> 1011 0 0 0 0 -#> 1012 0 0 0 1 -#> 1013 0 1 0 0 -#> 1014 0 0 0 0 -#> 1015 0 0 2 3 -#> 1016 0 0 0 0 -#> 1017 0 0 1 1 -#> 1018 1 0 0 1 -#> 1019 1 0 0 3 -#> 1020 1 0 0 1 -#> 1021 0 0 0 1 -#> 1022 1 0 1 1 -#> 1023 0 0 1 1 -#> 1024 0 0 0 0 -#> 1025 1 0 2 3 -#> 1026 0 0 0 0 -#> 1027 0 0 0 0 -#> 1028 1 0 0 2 -#> 1029 1 0 1 1 -#> 1030 0 1 1 1 -#> 1031 1 0 0 0 -#> 1032 0 0 0 0 -#> 1033 1 1 1 2 -#> 1034 0 0 0 0 -#> 1035 0 2 0 0 -#> 1036 1 0 1 1 -#> 1037 0 0 0 0 -#> 1038 2 0 1 2 -#> 1039 2 0 3 3 -#> 1040 1 0 2 5 -#> 1041 0 0 0 0 -#> 1042 0 0 0 0 -#> 1043 0 0 0 0 -#> 1044 0 0 0 0 -#> 1045 0 0 0 0 -#> 1046 0 0 0 0 -#> 1047 1 0 1 1 -#> 1048 0 0 0 0 -#> 1049 0 0 0 0 -#> 1050 0 1 1 1 -#> 1051 2 1 2 2 -#> 1052 1 0 0 1 -#> 1053 0 0 0 0 -#> 1054 0 0 0 0 -#> 1055 0 0 0 0 -#> 1056 0 0 0 0 -#> 1057 0 0 0 0 -#> 1058 0 0 0 0 -#> 1059 0 0 0 0 -#> 1060 0 0 0 0 -#> 1061 0 0 0 0 -#> 1062 1 1 0 1 -#> 1063 1 0 0 0 -#> 1064 0 0 0 0 -#> 1065 1 0 1 3 -#> 1066 0 0 1 1 -#> 1067 0 0 0 2 -#> 1068 0 0 0 0 -#> 1069 0 0 2 3 -#> 1070 0 1 0 0 -#> 1071 1 0 2 3 -#> 1072 0 0 0 1 -#> 1073 0 0 0 1 -#> 1074 0 0 1 1 -#> 1075 0 0 0 0 -#> 1076 0 0 0 2 -#> 1077 0 0 0 0 -#> 1078 0 0 0 0 -#> 1079 0 0 0 0 -#> 1080 0 0 0 1 -#> 1081 0 2 0 0 -#> 1082 1 0 3 5 -#> 1083 0 0 0 0 -#> 1084 0 0 0 0 -#> 1085 1 0 3 4 -#> 1086 0 0 0 0 -#> 1087 1 0 1 1 -#> 1088 0 0 0 0 -#> 1089 0 0 0 0 -#> 1090 0 0 0 0 -#> 1091 1 0 0 0 -#> 1092 0 0 0 0 -#> 1093 0 0 0 0 -#> 1094 0 1 0 0 -#> 1095 0 0 0 0 -#> 1096 0 0 0 1 -#> 1097 2 0 0 6 -#> 1098 0 0 0 0 -#> 1099 1 0 0 1 -#> 1100 0 0 0 1 -#> 1101 0 0 0 0 -#> 1102 1 0 1 1 -#> 1103 0 0 1 1 -#> 1104 0 0 0 1 -#> 1105 0 0 0 0 -#> 1106 0 0 0 0 -#> 1107 0 0 0 0 -#> 1108 0 0 0 0 -#> 1109 0 0 0 1 -#> 1110 0 0 0 0 -#> 1111 1 0 0 1 -#> 1112 0 0 0 0 -#> 1113 0 0 0 0 -#> 1114 0 0 0 0 -#> 1115 1 0 2 3 -#> 1116 0 0 1 1 -#> 1117 0 0 1 1 -#> 1118 0 0 1 1 -#> 1119 0 0 0 0 -#> 1120 0 0 0 0 -#> 1121 0 0 0 0 -#> 1122 1 0 0 0 -#> 1123 0 0 0 0 -#> 1124 2 0 0 0 -#> 1125 0 0 0 0 -#> 1126 4 0 1 2 -#> 1127 1 0 0 0 -#> 1128 0 1 1 1 -#> 1129 1 0 0 0 -#> 1130 2 0 0 0 -#> 1131 0 0 0 0 -#> 1132 1 1 2 2 -#> 1133 1 0 0 0 -#> 1134 1 0 1 1 -#> 1135 0 0 0 0 -#> 1136 0 0 0 0 -#> 1137 0 0 0 0 -#> 1138 0 0 0 0 -#> 1139 0 0 0 1 -#> 1140 1 1 1 1 -#> 1141 1 0 1 1 -#> 1142 1 0 0 1 -#> 1143 0 0 0 1 -#> 1144 0 0 0 2 -#> 1145 1 0 0 0 -#> 1146 0 0 0 1 -#> 1147 0 1 0 0 -#> 1148 0 0 0 0 -#> 1149 0 0 0 0 -#> 1150 1 0 0 1 -#> 1151 1 0 0 0 -#> 1152 2 0 1 1 -#> 1153 0 0 0 0 -#> 1154 0 0 0 1 -#> 1155 0 0 0 0 -#> 1156 0 0 0 1 -#> 1157 1 1 2 3 -#> 1158 0 0 0 0 -#> 1159 0 0 1 1 -#> 1160 0 0 0 0 -#> 1161 NA NA NA NA -#> 1162 0 0 0 0 -#> 1163 1 0 0 0 -#> 1164 1 0 0 0 -#> 1165 1 0 1 1 -#> 1166 0 0 0 0 -#> 1167 0 0 1 2 -#> 1168 0 0 0 1 -#> 1169 0 0 0 0 -#> 1170 0 0 0 0 -#> 1171 0 0 0 0 -#> 1172 0 0 0 0 -#> 1173 1 0 0 0 -#> 1174 0 0 0 1 -#> 1175 0 0 0 1 -#> 1176 0 0 1 4 -#> 1177 1 0 0 1 -#> 1178 0 0 0 1 -#> 1179 0 0 0 0 -#> 1180 0 0 0 2 -#> 1181 0 0 0 0 -#> 1182 0 0 0 0 -#> 1183 0 0 0 0 -#> 1184 0 0 1 1 -#> 1185 0 0 0 0 -#> 1186 0 1 1 2 -#> 1187 0 0 0 0 -#> 1188 0 0 0 0 -#> 1189 0 0 1 2 -#> 1190 0 1 1 2 -#> 1191 0 0 0 0 -#> 1192 2 1 3 4 -#> 1193 0 0 1 2 -#> 1194 0 0 0 0 -#> 1195 1 0 1 2 -#> 1196 2 0 1 2 -#> 1197 1 0 1 1 -#> 1198 0 0 0 0 -#> 1199 2 0 0 0 -#> 1200 1 2 3 5 -#> 1201 0 0 0 0 -#> 1202 1 1 1 1 -#> 1203 0 0 0 0 -#> 1204 0 0 0 0 -#> 1205 0 1 0 1 -#> 1206 1 0 1 1 -#> 1207 0 0 0 0 -#> 1208 2 0 1 4 -#> 1209 1 0 1 3 -#> 1210 0 0 0 0 -#> 1211 0 0 0 1 -#> 1212 0 0 0 0 -#> 1213 0 0 0 0 -#> 1214 0 0 0 0 -#> 1215 0 0 1 1 -#> 1216 0 0 0 0 -#> 1217 0 0 0 1 -#> 1218 0 0 0 0 -#> 1219 0 0 0 2 -#> 1220 2 0 0 1 -#> 1221 0 2 0 1 -#> 1222 0 0 0 0 -#> 1223 1 1 1 1 -#> 1224 1 1 0 0 -#> 1225 1 0 2 2 -#> 1226 0 0 1 1 -#> 1227 0 0 1 1 -#> 1228 0 0 0 0 -#> 1229 0 0 0 0 -#> 1230 1 0 1 1 -#> 1231 1 0 0 0 -#> 1232 0 0 0 0 -#> 1233 0 0 0 0 -#> 1234 0 0 0 0 -#> 1235 0 0 0 0 -#> 1236 0 1 0 1 -#> 1237 2 2 2 3 -#> 1238 1 0 1 4 -#> 1239 0 0 1 1 -#> 1240 0 0 0 1 -#> 1241 0 0 0 0 -#> 1242 0 0 0 1 -#> 1243 0 0 0 0 -#> 1244 0 0 1 1 -#> 1245 0 0 0 0 -#> 1246 1 1 2 3 -#> 1247 1 0 2 2 -#> 1248 0 0 0 0 -#> 1249 1 0 0 1 -#> 1250 0 0 0 0 -#> 1251 0 0 0 0 -#> 1252 0 1 0 1 -#> 1253 0 0 0 0 -#> 1254 1 0 0 0 -#> 1255 0 0 0 0 -#> 1256 5 1 5 10 -#> 1257 0 0 0 0 -#> 1258 0 0 1 2 -#> 1259 0 0 0 0 -#> 1260 0 0 0 4 -#> 1261 0 0 0 0 -#> 1262 0 0 0 2 -#> 1263 1 0 0 1 -#> 1264 0 0 0 0 -#> 1265 1 1 2 2 -#> 1266 0 0 0 0 -#> 1267 0 0 0 0 -#> 1268 0 0 0 2 -#> 1269 1 0 2 3 -#> 1270 0 0 0 0 -#> 1271 0 0 0 0 -#> 1272 NA NA NA NA -#> 1273 0 0 2 2 -#> 1274 0 0 1 1 -#> 1275 0 0 0 0 -#> 1276 0 0 2 2 -#> 1277 0 0 2 4 -#> 1278 0 0 1 3 -#> 1279 0 0 0 0 -#> 1280 0 0 0 0 -#> 1281 0 0 0 1 -#> 1282 0 0 0 1 -#> 1283 0 1 1 1 -#> 1284 1 2 1 2 -#> 1285 0 2 1 2 -#> 1286 1 0 0 0 -#> 1287 1 0 1 1 -#> 1288 0 1 1 1 -#> 1289 0 0 0 2 -#> 1290 0 0 0 0 -#> 1291 0 0 1 1 -#> 1292 0 0 0 0 -#> 1293 0 0 0 0 -#> 1294 0 0 0 0 -#> 1295 1 1 2 3 -#> 1296 0 1 0 2 -#> 1297 0 0 0 0 -#> 1298 0 0 0 0 -#> 1299 1 2 3 4 -#> 1300 0 0 1 1 -#> 1301 0 1 2 3 -#> 1302 0 0 0 0 -#> 1303 0 0 0 0 -#> 1304 0 0 0 0 -#> 1305 0 0 0 0 -#> 1306 0 0 0 0 -#> 1307 0 0 0 0 -#> 1308 1 0 3 5 -#> 1309 0 0 0 0 -#> 1310 0 0 0 0 -#> 1311 1 0 1 1 -#> 1312 1 0 1 1 -#> 1313 0 0 1 3 -#> 1314 1 0 4 6 -#> 1315 0 0 0 1 -#> 1316 0 0 0 0 -#> 1317 0 0 0 0 -#> 1318 0 0 1 2 -#> 1319 0 0 0 0 -#> 1320 0 0 0 1 -#> 1321 0 0 0 0 -#> 1322 1 0 3 8 -#> 1323 0 0 0 0 -#> 1324 0 0 0 1 -#> 1325 0 1 3 4 -#> 1326 0 0 0 0 -#> 1327 0 0 0 0 -#> 1328 0 0 0 0 -#> 1329 0 0 0 0 -#> 1330 0 0 0 0 -#> 1331 0 1 1 1 -#> 1332 0 0 0 0 -#> 1333 0 0 0 1 -#> 1334 0 0 0 2 -#> 1335 3 0 2 3 -#> 1336 0 0 0 0 -#> 1337 1 0 1 1 -#> 1338 0 0 0 0 -#> 1339 0 0 0 0 -#> 1340 0 0 0 0 -#> 1341 0 0 0 0 -#> 1342 0 0 0 0 -#> 1343 0 0 1 2 -#> 1344 0 0 0 0 -#> 1345 1 0 1 1 -#> 1346 0 0 0 1 -#> 1347 0 0 0 0 -#> 1348 1 0 1 2 -#> 1349 4 0 3 3 -#> 1350 1 0 1 1 -#> 1351 0 0 0 0 -#> 1352 1 0 1 2 -#> 1353 0 0 0 0 -#> 1354 1 0 1 2 -#> 1355 0 0 0 0 -#> 1356 0 0 0 1 -#> 1357 1 0 1 3 -#> 1358 0 0 0 0 -#> 1359 1 0 0 1 -#> 1360 0 0 0 2 -#> 1361 1 0 1 2 -#> 1362 1 0 1 1 -#> 1363 1 0 0 3 -#> 1364 1 0 1 1 -#> 1365 2 1 3 4 -#> 1366 1 0 0 1 -#> 1367 0 0 1 2 -#> 1368 0 0 0 2 -#> 1369 1 0 0 1 -#> 1370 0 0 0 1 -#> 1371 0 0 0 0 -#> 1372 0 0 0 0 -#> 1373 1 0 1 1 -#> 1374 0 1 0 0 -#> 1375 0 0 0 0 -#> 1376 1 2 1 4 -#> 1377 0 0 0 0 -#> 1378 2 0 0 2 -#> 1379 0 1 0 1 -#> 1380 0 0 0 0 -#> 1381 0 0 0 0 -#> 1382 0 0 0 1 -#> 1383 0 0 0 1 -#> 1384 2 0 2 2 -#> 1385 0 0 0 0 -#> 1386 0 0 0 0 -#> 1387 0 0 1 6 -#> 1388 0 0 0 0 -#> 1389 0 0 0 1 -#> 1390 0 0 0 0 -#> 1391 2 0 3 5 -#> 1392 0 0 0 1 -#> 1393 0 0 2 3 -#> 1394 0 0 1 1 -#> 1395 1 0 0 4 -#> 1396 1 0 0 0 -#> 1397 0 0 0 0 -#> 1398 1 0 0 2 -#> 1399 0 0 0 1 -#> 1400 0 0 0 1 -#> 1401 0 0 2 5 -#> 1402 0 0 0 0 -#> 1403 2 1 3 3 -#> 1404 0 0 0 0 -#> 1405 1 0 1 2 -#> 1406 0 0 0 0 -#> 1407 0 0 0 0 -#> 1408 1 0 1 2 -#> 1409 0 0 0 0 -#> 1410 1 0 0 0 -#> 1411 1 1 0 0 -#> 1412 2 2 2 3 -#> 1413 1 0 1 2 -#> 1414 0 0 0 0 -#> 1415 0 0 0 0 -#> 1416 0 0 0 1 -#> 1417 0 0 0 0 -#> 1418 0 0 0 0 -#> 1419 0 0 0 0 -#> 1420 0 0 0 0 -#> 1421 2 2 3 4 -#> 1422 0 0 0 1 -#> 1423 0 0 0 0 -#> 1424 1 0 0 1 -#> 1425 0 0 0 1 -#> 1426 0 0 0 2 -#> 1427 1 0 0 0 -#> 1428 0 0 1 2 -#> 1429 0 0 0 0 -#> 1430 0 0 1 1 -#> 1431 0 0 0 0 -#> 1432 1 0 0 0 -#> 1433 0 0 1 1 -#> 1434 0 0 0 0 -#> 1435 0 0 0 0 -#> 1436 0 0 0 0 -#> 1437 0 0 0 1 -#> 1438 1 0 1 1 -#> 1439 1 0 2 2 -#> 1440 1 0 0 0 -#> 1441 0 1 0 0 -#> 1442 0 0 0 0 -#> 1443 1 0 0 2 -#> 1444 0 0 0 0 -#> 1445 1 0 0 0 -#> 1446 0 0 0 0 -#> 1447 1 0 2 2 -#> 1448 2 2 1 3 -#> 1449 0 0 0 0 -#> 1450 0 0 0 0 -#> 1451 0 0 0 0 -#> 1452 0 0 0 1 -#> 1453 0 0 0 0 -#> 1454 2 0 1 1 -#> 1455 1 0 0 0 -#> 1456 0 0 0 2 -#> 1457 0 0 0 0 -#> 1458 0 0 0 1 -#> 1459 4 0 1 1 -#> 1460 0 0 0 1 -#> 1461 0 0 0 0 -#> 1462 1 0 0 0 -#> 1463 1 0 1 1 -#> 1464 0 0 0 0 -#> 1465 0 0 0 0 -#> 1466 0 0 0 1 -#> 1467 0 0 0 0 -#> 1468 0 0 0 0 -#> 1469 0 0 0 0 -#> 1470 1 1 1 4 -#> 1471 0 0 0 2 -#> 1472 0 0 0 0 -#> 1473 1 0 2 3 -#> 1474 0 0 0 1 -#> 1475 1 0 3 4 -#> 1476 1 0 1 2 -#> 1477 1 0 1 1 -#> 1478 1 0 1 1 -#> 1479 0 0 0 0 -#> 1480 0 0 0 0 -#> 1481 0 0 0 0 -#> 1482 0 1 1 2 -#> 1483 0 0 0 0 -#> 1484 2 1 1 2 -#> 1485 0 0 0 4 -#> 1486 0 0 0 0 -#> 1487 0 0 0 0 -#> 1488 0 0 1 1 -#> 1489 0 0 0 1 -#> 1490 2 0 1 1 -#> 1491 0 0 0 0 -#> 1492 0 0 0 0 -#> 1493 1 1 3 3 -#> 1494 0 0 0 1 -#> 1495 0 0 0 0 -#> 1496 0 0 1 1 -#> 1497 0 0 0 0 -#> 1498 0 0 0 1 -#> 1499 0 0 0 0 -#> 1500 0 0 0 0 -#> 1501 0 0 0 0 -#> 1502 2 0 3 4 -#> 1503 0 0 0 0 -#> 1504 0 0 0 0 -#> 1505 2 0 1 1 -#> 1506 0 0 0 2 -#> 1507 0 0 1 1 -#> 1508 0 0 0 0 -#> 1509 0 0 2 2 -#> 1510 0 0 0 3 -#> 1511 0 0 0 0 -#> 1512 0 0 0 0 -#> 1513 0 0 0 0 -#> 1514 0 0 0 1 -#> 1515 0 0 0 0 -#> 1516 0 0 0 1 -#> 1517 0 0 0 0 -#> 1518 0 0 0 1 -#> 1519 0 0 0 0 -#> 1520 0 1 0 0 -#> 1521 0 0 0 0 -#> 1522 1 0 2 3 -#> 1523 0 0 1 1 -#> 1524 0 0 0 0 -#> 1525 0 0 0 0 -#> 1526 1 2 3 4 -#> 1527 0 0 0 0 -#> 1528 0 0 0 1 -#> 1529 0 0 0 0 -#> 1530 3 2 1 2 -#> 1531 0 0 0 0 -#> 1532 2 1 1 2 -#> 1533 0 0 0 0 -#> 1534 1 0 0 1 -#> 1535 1 0 1 1 -#> 1536 0 0 0 0 -#> 1537 0 1 1 1 -#> 1538 0 0 0 1 -#> 1539 1 0 0 0 -#> 1540 0 0 1 1 -#> 1541 0 0 0 0 -#> 1542 0 1 0 0 -#> 1543 0 0 0 0 -#> 1544 0 0 0 1 -#> 1545 0 0 0 1 -#> 1546 1 0 1 1 -#> 1547 0 0 0 0 -#> 1548 0 0 0 0 -#> 1549 1 1 0 0 -#> 1550 0 0 0 0 -#> 1551 2 0 1 1 -#> 1552 0 0 0 2 -#> 1553 0 0 0 0 -#> 1554 1 0 4 7 -#> 1555 0 0 0 0 -#> 1556 0 0 0 0 -#> 1557 1 0 2 2 -#> 1558 0 0 1 1 -#> 1559 0 0 0 0 -#> 1560 0 0 0 0 -#> 1561 0 0 0 0 -#> 1562 0 0 0 0 -#> 1563 0 0 0 0 -#> 1564 1 0 1 2 -#> 1565 1 0 2 2 -#> 1566 0 0 0 0 -#> 1567 0 0 0 1 -#> 1568 1 0 1 1 -#> 1569 2 0 1 2 -#> 1570 1 0 0 0 -#> 1571 0 0 0 0 -#> 1572 0 0 0 0 -#> 1573 0 0 0 2 -#> 1574 0 0 0 1 -#> 1575 0 2 2 3 -#> 1576 0 0 0 0 -#> 1577 0 0 0 0 -#> 1578 0 0 0 1 -#> 1579 0 1 0 0 -#> 1580 0 1 2 4 -#> 1581 0 0 1 1 -#> 1582 0 0 0 0 -#> 1583 2 0 0 1 -#> 1584 2 0 1 1 -#> 1585 1 0 1 1 -#> 1586 0 0 0 0 -#> 1587 0 0 0 0 -#> 1588 1 0 0 0 -#> 1589 0 0 0 0 -#> 1590 0 0 0 0 -#> 1591 0 0 0 1 -#> 1592 0 0 0 0 -#> 1593 0 0 0 1 -#> 1594 0 0 0 0 -#> 1595 0 0 0 0 -#> 1596 0 1 0 1 -#> 1597 0 0 0 2 -#> 1598 3 1 3 3 -#> 1599 0 0 0 1 -#> 1600 1 0 0 0 -#> 1601 0 0 0 0 -#> 1602 0 1 1 1 -#> 1603 1 0 1 1 -#> 1604 1 0 0 0 -#> 1605 1 1 1 1 -#> 1606 0 0 0 0 -#> 1607 0 0 0 0 -#> 1608 0 0 0 0 -#> 1609 0 0 0 1 -#> 1610 0 0 0 1 -#> 1611 1 0 0 0 -#> 1612 2 0 3 3 -#> 1613 0 0 2 4 -#> 1614 0 0 2 4 -#> 1615 0 0 0 0 -#> 1616 0 0 1 2 -#> 1617 0 0 0 0 -#> 1618 0 0 0 0 -#> 1619 0 0 0 0 -#> 1620 0 0 0 0 -#> 1621 1 0 1 1 -#> 1622 0 0 1 1 -#> 1623 0 0 0 1 -#> 1624 0 0 0 0 -#> 1625 1 0 0 0 -#> 1626 0 0 0 1 -#> 1627 0 0 0 0 -#> 1628 0 1 1 1 -#> 1629 0 0 0 1 -#> 1630 NA NA NA NA -#> 1631 2 0 0 0 -#> 1632 0 1 1 2 -#> 1633 0 0 0 0 -#> 1634 0 0 0 0 -#> 1635 1 0 1 1 -#> 1636 0 0 0 0 -#> 1637 2 0 3 3 -#> 1638 0 0 0 0 -#> 1639 0 0 0 1 -#> 1640 0 1 0 0 -#> 1641 0 0 0 0 -#> 1642 2 0 1 2 -#> 1643 0 1 0 3 -#> 1644 0 1 0 1 -#> 1645 0 0 0 0 -#> 1646 0 0 0 0 -#> 1647 1 0 1 1 -#> 1648 1 0 1 1 -#> 1649 0 0 1 1 -#> 1650 0 0 0 1 -#> 1651 0 0 1 2 -#> 1652 0 0 0 0 -#> 1653 1 0 0 0 -#> 1654 0 0 0 0 -#> 1655 0 0 0 1 -#> 1656 0 0 0 0 -#> 1657 0 1 3 4 -#> 1658 0 0 0 0 -#> 1659 1 0 1 1 -#> 1660 0 0 0 1 -#> 1661 0 0 0 0 -#> 1662 1 0 1 3 -#> 1663 0 0 1 2 -#> 1664 1 0 0 0 -#> 1665 0 0 0 1 -#> 1666 0 0 0 1 -#> 1667 3 0 1 3 -#> 1668 0 0 0 0 -#> 1669 0 0 0 0 -#> 1670 1 0 0 0 -#> 1671 1 1 0 2 -#> 1672 0 0 0 1 -#> 1673 0 0 0 0 -#> 1674 0 0 0 0 -#> 1675 1 0 1 5 -#> 1676 0 1 1 1 -#> 1677 4 0 1 1 -#> 1678 0 0 0 0 -#> 1679 0 0 0 1 -#> 1680 0 0 0 1 -#> 1681 0 1 0 0 -#> 1682 0 0 0 0 -#> 1683 1 0 0 1 -#> 1684 0 0 0 0 -#> 1685 0 0 0 0 -#> 1686 0 0 0 0 -#> 1687 0 0 0 3 -#> 1688 0 0 0 0 -#> 1689 1 0 0 0 -#> 1690 0 0 1 1 -#> 1691 1 0 0 0 -#> 1692 0 0 0 1 -#> 1693 1 0 0 0 -#> 1694 0 0 1 1 -#> 1695 0 0 0 0 -#> 1696 0 0 0 0 -#> 1697 0 1 2 2 -#> 1698 0 1 0 0 -#> 1699 1 0 1 1 -#> 1700 0 0 0 0 -#> 1701 0 0 0 0 -#> 1702 0 0 0 0 -#> 1703 0 0 0 1 -#> 1704 0 0 0 0 -#> 1705 1 0 0 0 -#> 1706 0 0 1 1 -#> 1707 0 0 0 2 -#> 1708 0 1 1 3 -#> 1709 0 0 0 0 -#> 1710 1 0 0 1 -#> 1711 0 0 1 2 -#> 1712 0 0 0 0 -#> 1713 0 0 0 0 -#> 1714 0 0 1 1 -#> 1715 0 0 0 0 -#> 1716 0 0 0 0 -#> 1717 0 0 0 1 -#> 1718 0 0 1 1 -#> 1719 3 1 1 1 -#> 1720 0 0 0 1 -#> 1721 0 1 0 0 -#> 1722 0 0 0 1 -#> 1723 1 1 0 1 -#> 1724 0 0 0 1 -#> 1725 0 2 2 2 -#> 1726 0 0 0 2 -#> 1727 1 1 3 3 -#> 1728 0 0 0 0 -#> 1729 1 0 1 1 -#> 1730 1 0 1 1 -#> 1731 0 0 0 0 -#> 1732 0 0 0 0 -#> 1733 1 0 0 1 -#> 1734 0 2 2 3 -#> 1735 0 0 0 1 -#> 1736 0 0 0 1 -#> 1737 0 1 1 3 -#> 1738 1 0 1 1 -#> 1739 0 0 0 0 -#> 1740 1 0 0 2 -#> 1741 0 0 1 4 -#> 1742 0 0 0 0 -#> 1743 0 0 0 0 -#> 1744 0 1 0 1 -#> 1745 0 0 1 3 -#> 1746 1 0 0 0 -#> 1747 0 0 0 1 -#> 1748 0 0 0 0 -#> 1749 1 0 0 0 -#> 1750 0 0 0 1 -#> 1751 1 0 0 1 -#> 1752 0 0 0 1 -#> 1753 0 0 0 0 -#> 1754 0 0 0 0 -#> 1755 2 0 0 1 -#> 1756 2 1 2 2 -#> 1757 0 0 0 1 -#> 1758 2 0 0 1 -#> 1759 1 0 1 1 -#> 1760 0 0 0 0 -#> 1761 1 0 1 1 -#> 1762 0 0 4 5 -#> 1763 0 0 1 1 -#> 1764 1 0 0 1 -#> 1765 0 0 0 0 -#> 1766 1 0 0 3 -#> 1767 0 0 0 0 -#> 1768 0 1 0 0 -#> 1769 0 0 0 0 -#> 1770 0 0 0 0 -#> 1771 4 0 2 4 -#> 1772 2 0 0 0 -#> 1773 0 1 0 0 -#> 1774 0 0 0 0 -#> 1775 2 0 0 1 -#> 1776 0 0 1 1 -#> 1777 0 0 0 0 -#> 1778 0 0 0 0 -#> 1779 0 0 0 0 -#> 1780 1 2 1 1 -#> 1781 0 0 0 1 -#> 1782 0 0 0 0 -#> 1783 0 0 0 1 -#> 1784 0 0 0 0 -#> 1785 0 0 0 0 -#> 1786 2 1 1 2 -#> 1787 0 0 0 0 -#> 1788 1 0 0 0 -#> 1789 1 0 0 0 -#> 1790 0 0 0 0 -#> 1791 1 0 0 0 -#> 1792 0 1 0 1 -#> 1793 0 0 0 0 -#> 1794 0 0 0 0 -#> 1795 0 0 0 0 -#> 1796 1 0 1 1 -#> 1797 0 0 0 0 -#> 1798 2 0 0 3 -#> 1799 0 0 0 0 -#> 1800 1 3 0 0 -#> 1801 1 0 1 2 -#> 1802 0 0 1 1 -#> 1803 0 0 0 1 -#> 1804 0 0 1 1 -#> 1805 0 0 0 1 -#> 1806 0 0 0 0 -#> 1807 2 0 0 0 -#> 1808 0 0 0 0 -#> 1809 0 0 0 1 -#> 1810 0 0 0 0 -#> 1811 0 0 0 2 -#> 1812 1 0 0 2 -#> 1813 0 0 0 0 -#> 1814 0 0 1 3 -#> 1815 0 0 0 0 -#> 1816 1 0 1 2 -#> 1817 1 0 1 1 -#> 1818 1 0 0 0 -#> 1819 0 0 0 0 -#> 1820 0 0 1 2 -#> 1821 1 0 0 0 -#> 1822 0 0 0 0 -#> 1823 2 0 2 3 -#> 1824 0 0 0 0 -#> 1825 1 0 0 0 -#> 1826 0 1 0 1 -#> 1827 0 0 0 4 -#> 1828 1 0 0 0 -#> 1829 1 0 1 2 -#> 1830 1 0 1 1 -#> 1831 2 0 1 3 -#> 1832 0 0 0 0 -#> 1833 0 0 0 0 -#> 1834 0 0 1 3 -#> 1835 0 0 0 0 -#> 1836 0 0 0 1 -#> 1837 0 0 2 2 -#> 1838 1 0 0 0 -#> 1839 0 0 0 0 -#> 1840 0 0 0 0 -#> 1841 1 0 1 3 -#> 1842 0 0 0 0 -#> 1843 0 0 0 0 -#> 1844 0 1 0 0 -#> 1845 0 0 0 0 -#> 1846 2 1 3 4 -#> 1847 0 0 0 0 -#> 1848 0 1 0 2 -#> 1849 0 0 0 0 -#> 1850 1 0 0 0 -#> 1851 0 0 0 0 -#> 1852 0 0 2 2 -#> 1853 0 0 0 0 -#> 1854 1 0 2 2 -#> 1855 0 0 0 0 -#> 1856 0 0 0 0 -#> 1857 0 0 0 0 -#> 1858 0 0 0 0 -#> 1859 0 0 0 0 -#> 1860 0 0 0 2 -#> 1861 1 0 0 0 -#> 1862 0 0 0 0 -#> 1863 0 0 0 0 -#> 1864 0 0 0 0 -#> 1865 0 0 0 0 -#> 1866 1 0 3 4 -#> 1867 0 0 2 3 -#> 1868 0 0 1 3 -#> 1869 0 0 1 1 -#> 1870 0 0 1 1 -#> 1871 0 0 0 0 -#> 1872 0 2 1 1 -#> 1873 0 0 0 1 -#> 1874 1 0 0 0 -#> 1875 0 0 0 1 -#> 1876 0 0 0 0 -#> 1877 3 0 1 5 -#> 1878 0 0 0 1 -#> 1879 1 1 0 1 -#> 1880 0 0 0 0 -#> 1881 3 0 1 3 -#> 1882 0 0 0 0 -#> 1883 0 1 1 1 -#> 1884 0 0 0 0 -#> 1885 0 0 0 0 -#> 1886 0 1 2 2 -#> 1887 0 0 0 0 -#> 1888 0 0 0 0 -#> 1889 0 0 0 0 -#> 1890 0 1 2 3 -#> 1891 0 0 0 0 -#> 1892 0 0 0 0 -#> 1893 1 0 0 1 -#> 1894 1 0 3 3 -#> 1895 1 1 2 2 -#> 1896 0 0 0 0 -#> 1897 2 0 1 1 -#> 1898 0 0 1 2 -#> 1899 0 0 1 1 -#> 1900 0 0 0 0 -#> 1901 0 0 0 0 -#> 1902 0 0 0 0 -#> 1903 1 0 0 0 -#> 1904 0 0 0 2 -#> 1905 0 0 0 0 -#> 1906 0 0 0 0 -#> 1907 1 0 0 1 -#> 1908 0 0 0 0 -#> 1909 0 0 0 3 -#> 1910 1 0 2 5 -#> 1911 0 0 0 0 -#> 1912 1 0 2 3 -#> 1913 0 0 1 1 -#> 1914 1 0 1 1 -#> 1915 1 0 0 0 -#> 1916 0 0 0 0 -#> 1917 1 0 1 1 -#> 1918 0 0 0 0 -#> 1919 0 0 0 0 -#> 1920 0 0 0 0 -#> 1921 0 0 0 0 -#> 1922 0 0 0 0 -#> 1923 0 0 1 2 -#> 1924 0 0 0 1 -#> 1925 1 1 1 1 -#> 1926 1 0 0 2 -#> 1927 0 0 0 0 -#> 1928 0 0 0 0 -#> 1929 0 0 0 0 -#> 1930 0 0 0 0 -#> 1931 1 0 4 5 -#> 1932 0 0 0 0 -#> 1933 0 0 0 1 -#> 1934 0 0 0 0 -#> 1935 0 3 1 5 -#> 1936 0 0 0 1 -#> 1937 0 0 0 0 -#> 1938 0 0 0 1 -#> 1939 2 1 1 3 -#> 1940 0 0 0 2 -#> 1941 0 0 0 0 -#> 1942 0 0 0 0 -#> 1943 0 0 0 0 -#> 1944 1 0 0 0 -#> 1945 0 0 0 0 -#> 1946 0 0 0 0 -#> 1947 1 3 2 2 -#> 1948 0 0 1 1 -#> 1949 0 1 0 0 -#> 1950 0 0 0 0 -#> 1951 0 0 0 1 -#> 1952 0 0 0 0 -#> 1953 0 0 0 0 -#> 1954 0 0 0 0 -#> 1955 0 0 0 0 -#> 1956 0 0 0 0 -#> 1957 0 0 0 0 -#> 1958 0 0 0 0 -#> 1959 2 0 0 1 -#> 1960 0 0 1 2 -#> 1961 0 0 1 1 -#> 1962 2 0 0 0 -#> 1963 0 0 0 0 -#> 1964 0 0 0 0 -#> 1965 0 0 0 0 -#> 1966 2 0 1 3 -#> 1967 2 0 0 2 -#> 1968 0 1 0 0 -#> 1969 1 0 1 1 -#> 1970 0 0 0 0 -#> 1971 0 0 0 0 -#> 1972 0 0 2 2 -#> 1973 1 0 1 1 -#> 1974 0 0 0 0 -#> 1975 0 0 0 0 -#> 1976 1 0 0 0 -#> 1977 1 0 1 2 -#> 1978 0 0 0 0 -#> 1979 0 2 2 2 -#> 1980 1 1 2 2 -#> 1981 0 0 0 2 -#> 1982 0 0 0 0 -#> 1983 0 0 0 0 -#> 1984 1 0 0 1 -#> 1985 1 0 0 0 -#> 1986 0 0 0 1 -#> 1987 0 0 0 1 -#> 1988 0 0 0 0 -#> 1989 0 0 0 0 -#> 1990 0 0 1 1 -#> 1991 0 0 0 0 -#> 1992 0 0 1 3 -#> 1993 0 0 0 0 -#> 1994 0 0 0 0 -#> 1995 1 0 0 0 -#> 1996 0 0 0 1 -#> 1997 0 0 0 1 -#> 1998 2 0 0 0 -#> 1999 0 1 0 0 -#> 2000 0 2 1 2 -#> 2001 0 0 0 0 -#> 2002 0 1 0 0 -#> 2003 0 0 0 0 -#> 2004 0 0 1 1 -#> 2005 0 0 0 1 -#> 2006 0 0 0 0 -#> 2007 1 0 3 4 -#> 2008 0 0 0 0 -#> 2009 0 0 0 0 -#> 2010 0 0 0 0 -#> 2011 0 0 0 0 -#> 2012 0 0 0 0 -#> 2013 0 0 0 0 -#> 2014 0 1 0 0 -#> 2015 0 0 0 0 -#> 2016 0 0 0 0 -#> 2017 NA NA NA NA -#> 2018 0 0 0 1 -#> 2019 0 0 1 1 -#> 2020 1 0 1 2 -#> 2021 2 0 1 1 -#> 2022 0 0 1 1 -#> 2023 0 0 0 1 -#> 2024 1 0 1 1 -#> 2025 0 0 0 0 -#> 2026 0 1 1 1 -#> 2027 1 1 0 0 -#> 2028 0 0 0 1 -#> 2029 0 0 0 0 -#> 2030 0 0 1 2 -#> 2031 1 0 1 1 -#> 2032 0 0 0 1 -#> 2033 0 1 0 1 -#> 2034 0 0 0 3 -#> 2035 0 0 0 1 -#> 2036 1 0 0 3 -#> 2037 0 0 0 1 -#> 2038 0 0 0 0 -#> 2039 0 2 1 1 -#> 2040 0 0 1 1 -#> Tkl_percent_Challenges Lost_Challenges Blocks_Blocks Sh_Blocks Pass_Blocks -#> 1 0.0 1 1 0 1 -#> 2 NA 0 1 0 1 -#> 3 0.0 1 0 0 0 -#> 4 NA 0 0 0 0 -#> 5 NA 0 0 0 0 -#> 6 100.0 0 0 0 0 -#> 7 33.3 2 0 0 0 -#> 8 0.0 1 0 0 0 -#> 9 0.0 1 0 0 0 -#> 10 NA 0 1 1 0 -#> 11 100.0 0 1 1 0 -#> 12 NA 0 1 1 0 -#> 13 100.0 0 0 0 0 -#> 14 NA 0 1 0 1 -#> 15 NA 0 0 0 0 -#> 16 NA 0 0 0 0 -#> 17 NA 0 0 0 0 -#> 18 100.0 0 0 0 0 -#> 19 100.0 0 0 0 0 -#> 20 NA 0 0 0 0 -#> 21 NA 0 0 0 0 -#> 22 NA 0 1 0 1 -#> 23 NA 0 1 1 0 -#> 24 NA 0 0 0 0 -#> 25 100.0 0 1 1 0 -#> 26 NA 0 0 0 0 -#> 27 100.0 0 2 0 2 -#> 28 100.0 0 0 0 0 -#> 29 NA 0 0 0 0 -#> 30 50.0 1 1 1 0 -#> 31 0.0 2 0 0 0 -#> 32 NA 0 0 0 0 -#> 33 100.0 0 1 0 1 -#> 34 0.0 1 0 0 0 -#> 35 NA 0 1 0 1 -#> 36 40.0 3 1 0 1 -#> 37 NA 0 0 0 0 -#> 38 50.0 1 1 0 1 -#> 39 NA 0 0 0 0 -#> 40 0.0 2 0 0 0 -#> 41 0.0 1 1 1 0 -#> 42 25.0 3 0 0 0 -#> 43 50.0 1 1 0 1 -#> 44 NA 0 2 2 0 -#> 45 NA 0 0 0 0 -#> 46 100.0 0 0 0 0 -#> 47 NA 0 0 0 0 -#> 48 NA 0 0 0 0 -#> 49 0.0 1 1 0 1 -#> 50 100.0 0 1 0 1 -#> 51 100.0 0 0 0 0 -#> 52 0.0 1 1 0 1 -#> 53 NA 0 1 0 1 -#> 54 NA 0 1 1 0 -#> 55 100.0 0 0 0 0 -#> 56 0.0 1 0 0 0 -#> 57 NA 0 0 0 0 -#> 58 NA 0 0 0 0 -#> 59 NA 0 0 0 0 -#> 60 NA 0 1 1 0 -#> 61 50.0 1 1 0 1 -#> 62 NA 0 0 0 0 -#> 63 NA 0 0 0 0 -#> 64 NA 0 0 0 0 -#> 65 20.0 4 0 0 0 -#> 66 100.0 0 0 0 0 -#> 67 NA 0 2 0 2 -#> 68 25.0 3 0 0 0 -#> 69 NA 0 0 0 0 -#> 70 0.0 1 3 0 3 -#> 71 0.0 1 1 0 1 -#> 72 50.0 2 1 1 0 -#> 73 20.0 4 0 0 0 -#> 74 100.0 0 0 0 0 -#> 75 NA 0 0 0 0 -#> 76 NA 0 2 1 1 -#> 77 100.0 0 1 0 1 -#> 78 NA 0 0 0 0 -#> 79 0.0 2 2 0 2 -#> 80 NA 0 0 0 0 -#> 81 0.0 1 0 0 0 -#> 82 100.0 0 1 0 1 -#> 83 NA 0 0 0 0 -#> 84 33.3 2 2 1 1 -#> 85 NA 0 0 0 0 -#> 86 33.3 4 2 0 2 -#> 87 0.0 1 0 0 0 -#> 88 0.0 1 0 0 0 -#> 89 100.0 0 0 0 0 -#> 90 NA 0 0 0 0 -#> 91 75.0 1 0 0 0 -#> 92 NA 0 0 0 0 -#> 93 NA 0 0 0 0 -#> 94 50.0 1 2 0 2 -#> 95 0.0 2 0 0 0 -#> 96 100.0 0 0 0 0 -#> 97 NA 0 1 0 1 -#> 98 NA 0 0 0 0 -#> 99 NA 0 0 0 0 -#> 100 NA 0 0 0 0 -#> 101 50.0 1 1 0 1 -#> 102 NA 0 0 0 0 -#> 103 50.0 1 0 0 0 -#> 104 NA 0 0 0 0 -#> 105 0.0 1 2 0 2 -#> 106 NA 0 1 0 1 -#> 107 NA 0 0 0 0 -#> 108 50.0 1 0 0 0 -#> 109 NA 0 0 0 0 -#> 110 NA 0 0 0 0 -#> 111 NA 0 0 0 0 -#> 112 NA 0 1 0 1 -#> 113 100.0 0 0 0 0 -#> 114 0.0 2 0 0 0 -#> 115 0.0 1 0 0 0 -#> 116 NA 0 0 0 0 -#> 117 40.0 3 4 3 1 -#> 118 0.0 1 1 0 1 -#> 119 NA 0 1 0 1 -#> 120 100.0 0 3 1 2 -#> 121 NA 0 1 1 0 -#> 122 NA 0 2 2 0 -#> 123 NA 0 0 0 0 -#> 124 NA 0 0 0 0 -#> 125 NA 0 0 0 0 -#> 126 NA 0 1 0 1 -#> 127 NA 0 0 0 0 -#> 128 NA 0 2 0 2 -#> 129 100.0 0 2 0 2 -#> 130 100.0 0 1 0 1 -#> 131 NA 0 1 0 1 -#> 132 75.0 1 1 0 1 -#> 133 NA 0 2 0 2 -#> 134 0.0 1 0 0 0 -#> 135 40.0 3 1 0 1 -#> 136 50.0 1 2 1 1 -#> 137 100.0 0 4 3 1 -#> 138 0.0 1 2 1 1 -#> 139 50.0 1 0 0 0 -#> 140 NA 0 0 0 0 -#> 141 0.0 2 0 0 0 -#> 142 0.0 1 1 0 1 -#> 143 NA 0 0 0 0 -#> 144 NA 0 1 0 1 -#> 145 100.0 0 1 0 1 -#> 146 100.0 0 0 0 0 -#> 147 25.0 3 2 2 0 -#> 148 NA 0 1 0 1 -#> 149 100.0 0 1 0 1 -#> 150 NA 0 0 0 0 -#> 151 33.3 2 0 0 0 -#> 152 NA 0 0 0 0 -#> 153 NA 0 0 0 0 -#> 154 50.0 1 3 1 2 -#> 155 50.0 1 0 0 0 -#> 156 NA 0 0 0 0 -#> 157 100.0 0 0 0 0 -#> 158 100.0 0 0 0 0 -#> 159 33.3 2 0 0 0 -#> 160 NA 0 0 0 0 -#> 161 0.0 1 2 0 2 -#> 162 0.0 1 0 0 0 -#> 163 NA 0 0 0 0 -#> 164 NA 0 0 0 0 -#> 165 NA NA NA NA NA -#> 166 100.0 0 1 0 1 -#> 167 NA 0 1 0 1 -#> 168 NA 0 0 0 0 -#> 169 0.0 1 1 1 0 -#> 170 100.0 0 3 1 2 -#> 171 33.3 2 0 0 0 -#> 172 NA 0 0 0 0 -#> 173 NA 0 2 1 1 -#> 174 NA 0 1 0 1 -#> 175 NA 0 1 0 1 -#> 176 33.3 2 0 0 0 -#> 177 50.0 1 3 1 2 -#> 178 NA 0 1 1 0 -#> 179 100.0 0 0 0 0 -#> 180 50.0 1 1 0 1 -#> 181 NA 0 0 0 0 -#> 182 50.0 1 2 1 1 -#> 183 NA 0 0 0 0 -#> 184 66.7 1 0 0 0 -#> 185 0.0 1 1 1 0 -#> 186 NA 0 1 0 1 -#> 187 75.0 1 3 2 1 -#> 188 NA 0 0 0 0 -#> 189 NA 0 1 0 1 -#> 190 NA 0 0 0 0 -#> 191 0.0 1 1 0 1 -#> 192 NA 0 0 0 0 -#> 193 20.0 4 1 1 0 -#> 194 100.0 0 1 0 1 -#> 195 NA 0 0 0 0 -#> 196 50.0 1 1 1 0 -#> 197 50.0 1 0 0 0 -#> 198 NA 0 0 0 0 -#> 199 NA 0 2 2 0 -#> 200 100.0 0 3 3 0 -#> 201 50.0 1 6 3 3 -#> 202 NA 0 0 0 0 -#> 203 50.0 1 3 0 3 -#> 204 NA 0 0 0 0 -#> 205 NA 0 0 0 0 -#> 206 0.0 1 0 0 0 -#> 207 NA 0 0 0 0 -#> 208 NA 0 0 0 0 -#> 209 0.0 2 2 0 2 -#> 210 NA 0 0 0 0 -#> 211 100.0 0 0 0 0 -#> 212 NA 0 0 0 0 -#> 213 NA 0 0 0 0 -#> 214 0.0 2 1 0 1 -#> 215 50.0 1 0 0 0 -#> 216 NA 0 1 0 1 -#> 217 NA 0 1 1 0 -#> 218 NA 0 1 0 1 -#> 219 100.0 0 0 0 0 -#> 220 NA 0 0 0 0 -#> 221 NA 0 0 0 0 -#> 222 NA 0 0 0 0 -#> 223 0.0 1 0 0 0 -#> 224 NA 0 0 0 0 -#> 225 100.0 0 0 0 0 -#> 226 NA 0 0 0 0 -#> 227 NA 0 0 0 0 -#> 228 NA 0 0 0 0 -#> 229 100.0 0 1 0 1 -#> 230 0.0 1 0 0 0 -#> 231 0.0 1 0 0 0 -#> 232 0.0 1 2 1 1 -#> 233 100.0 0 0 0 0 -#> 234 100.0 0 0 0 0 -#> 235 0.0 2 1 1 0 -#> 236 NA 0 0 0 0 -#> 237 NA 0 1 0 1 -#> 238 NA 0 0 0 0 -#> 239 100.0 0 0 0 0 -#> 240 33.3 2 0 0 0 -#> 241 0.0 1 2 1 1 -#> 242 NA 0 0 0 0 -#> 243 NA 0 0 0 0 -#> 244 33.3 2 1 1 0 -#> 245 NA 0 0 0 0 -#> 246 0.0 2 0 0 0 -#> 247 100.0 0 2 1 1 -#> 248 0.0 1 1 1 0 -#> 249 100.0 0 3 2 1 -#> 250 NA 0 2 1 1 -#> 251 NA 0 0 0 0 -#> 252 NA 0 0 0 0 -#> 253 NA 0 0 0 0 -#> 254 NA 0 0 0 0 -#> 255 NA 0 0 0 0 -#> 256 50.0 2 0 0 0 -#> 257 NA 0 1 1 0 -#> 258 0.0 1 1 0 1 -#> 259 0.0 3 1 0 1 -#> 260 50.0 1 0 0 0 -#> 261 NA 0 1 0 1 -#> 262 100.0 0 1 1 0 -#> 263 NA 0 0 0 0 -#> 264 NA 0 2 2 0 -#> 265 50.0 1 2 1 1 -#> 266 NA 0 0 0 0 -#> 267 NA 0 0 0 0 -#> 268 NA 0 0 0 0 -#> 269 NA 0 0 0 0 -#> 270 NA 0 0 0 0 -#> 271 0.0 2 1 1 0 -#> 272 NA 0 0 0 0 -#> 273 50.0 1 0 0 0 -#> 274 NA 0 0 0 0 -#> 275 NA 0 0 0 0 -#> 276 80.0 1 0 0 0 -#> 277 100.0 0 0 0 0 -#> 278 50.0 1 1 0 1 -#> 279 NA 0 0 0 0 -#> 280 100.0 0 0 0 0 -#> 281 100.0 0 1 0 1 -#> 282 NA 0 0 0 0 -#> 283 100.0 0 1 1 0 -#> 284 NA 0 0 0 0 -#> 285 100.0 0 1 0 1 -#> 286 100.0 0 1 0 1 -#> 287 NA 0 0 0 0 -#> 288 0.0 1 0 0 0 -#> 289 NA 0 0 0 0 -#> 290 0.0 2 1 0 1 -#> 291 50.0 1 4 0 4 -#> 292 100.0 0 0 0 0 -#> 293 0.0 1 0 0 0 -#> 294 100.0 0 0 0 0 -#> 295 NA 0 1 1 0 -#> 296 100.0 0 0 0 0 -#> 297 NA 0 0 0 0 -#> 298 NA 0 0 0 0 -#> 299 0.0 1 1 0 1 -#> 300 NA 0 1 1 0 -#> 301 0.0 2 0 0 0 -#> 302 0.0 1 0 0 0 -#> 303 16.7 5 0 0 0 -#> 304 NA 0 0 0 0 -#> 305 50.0 1 1 0 1 -#> 306 NA 0 4 2 2 -#> 307 NA 0 0 0 0 -#> 308 33.3 4 0 0 0 -#> 309 100.0 0 2 1 1 -#> 310 50.0 1 0 0 0 -#> 311 66.7 1 0 0 0 -#> 312 0.0 1 0 0 0 -#> 313 NA 0 0 0 0 -#> 314 NA 0 0 0 0 -#> 315 NA 0 3 1 2 -#> 316 NA 0 1 0 1 -#> 317 100.0 0 0 0 0 -#> 318 100.0 0 0 0 0 -#> 319 NA 0 0 0 0 -#> 320 0.0 2 0 0 0 -#> 321 NA 0 0 0 0 -#> 322 NA 0 0 0 0 -#> 323 NA 0 0 0 0 -#> 324 100.0 0 0 0 0 -#> 325 NA 0 0 0 0 -#> 326 NA 0 0 0 0 -#> 327 NA 0 0 0 0 -#> 328 NA 0 0 0 0 -#> 329 NA 0 0 0 0 -#> 330 0.0 1 2 0 2 -#> 331 NA 0 0 0 0 -#> 332 NA 0 0 0 0 -#> 333 100.0 0 0 0 0 -#> 334 NA 0 0 0 0 -#> 335 NA 0 0 0 0 -#> 336 100.0 0 1 1 0 -#> 337 33.3 2 0 0 0 -#> 338 100.0 0 0 0 0 -#> 339 0.0 1 1 1 0 -#> 340 NA 0 1 0 1 -#> 341 33.3 2 3 0 3 -#> 342 100.0 0 1 1 0 -#> 343 NA 0 1 1 0 -#> 344 50.0 1 0 0 0 -#> 345 NA 0 0 0 0 -#> 346 NA 0 0 0 0 -#> 347 NA 0 0 0 0 -#> 348 NA 0 2 0 2 -#> 349 100.0 0 0 0 0 -#> 350 66.7 1 3 0 3 -#> 351 66.7 1 0 0 0 -#> 352 NA 0 1 0 1 -#> 353 NA 0 0 0 0 -#> 354 100.0 0 0 0 0 -#> 355 0.0 1 0 0 0 -#> 356 50.0 1 0 0 0 -#> 357 NA 0 0 0 0 -#> 358 NA 0 1 0 1 -#> 359 100.0 0 0 0 0 -#> 360 0.0 1 1 0 1 -#> 361 NA 0 0 0 0 -#> 362 0.0 1 0 0 0 -#> 363 NA 0 0 0 0 -#> 364 NA 0 1 0 1 -#> 365 0.0 1 0 0 0 -#> 366 NA 0 0 0 0 -#> 367 0.0 2 2 1 1 -#> 368 0.0 1 0 0 0 -#> 369 0.0 1 0 0 0 -#> 370 NA 0 0 0 0 -#> 371 66.7 1 1 0 1 -#> 372 100.0 0 3 0 3 -#> 373 NA 0 1 1 0 -#> 374 100.0 0 2 2 0 -#> 375 NA 0 0 0 0 -#> 376 100.0 0 1 1 0 -#> 377 NA 0 0 0 0 -#> 378 NA 0 1 0 1 -#> 379 NA 0 0 0 0 -#> 380 0.0 2 2 0 2 -#> 381 NA 0 0 0 0 -#> 382 NA 0 1 1 0 -#> 383 66.7 1 1 0 1 -#> 384 0.0 1 0 0 0 -#> 385 NA 0 0 0 0 -#> 386 NA 0 1 0 1 -#> 387 0.0 1 0 0 0 -#> 388 100.0 0 1 1 0 -#> 389 100.0 0 0 0 0 -#> 390 100.0 0 1 1 0 -#> 391 50.0 1 1 1 0 -#> 392 NA 0 1 0 1 -#> 393 NA 0 0 0 0 -#> 394 0.0 1 0 0 0 -#> 395 NA 0 1 0 1 -#> 396 NA 0 0 0 0 -#> 397 0.0 1 1 1 0 -#> 398 100.0 0 1 1 0 -#> 399 NA 0 0 0 0 -#> 400 100.0 0 1 1 0 -#> 401 100.0 0 1 0 1 -#> 402 NA 0 2 0 2 -#> 403 NA 0 0 0 0 -#> 404 66.7 2 2 0 2 -#> 405 NA 0 0 0 0 -#> 406 0.0 1 0 0 0 -#> 407 NA 0 1 1 0 -#> 408 100.0 0 1 0 1 -#> 409 NA 0 0 0 0 -#> 410 100.0 0 1 0 1 -#> 411 0.0 2 1 0 1 -#> 412 0.0 1 0 0 0 -#> 413 NA 0 0 0 0 -#> 414 NA 0 1 0 1 -#> 415 100.0 0 0 0 0 -#> 416 75.0 1 1 0 1 -#> 417 NA 0 1 0 1 -#> 418 100.0 0 0 0 0 -#> 419 50.0 1 0 0 0 -#> 420 NA 0 0 0 0 -#> 421 100.0 0 0 0 0 -#> 422 50.0 1 1 0 1 -#> 423 0.0 2 2 1 1 -#> 424 NA 0 0 0 0 -#> 425 NA 0 1 0 1 -#> 426 100.0 0 0 0 0 -#> 427 0.0 2 0 0 0 -#> 428 NA 0 0 0 0 -#> 429 0.0 1 0 0 0 -#> 430 0.0 1 1 0 1 -#> 431 0.0 1 1 0 1 -#> 432 NA 0 0 0 0 -#> 433 66.7 1 1 0 1 -#> 434 50.0 3 4 1 3 -#> 435 0.0 1 2 2 0 -#> 436 NA 0 1 0 1 -#> 437 50.0 1 1 0 1 -#> 438 NA 0 0 0 0 -#> 439 0.0 2 0 0 0 -#> 440 NA 0 0 0 0 -#> 441 0.0 1 1 0 1 -#> 442 0.0 1 0 0 0 -#> 443 NA 0 0 0 0 -#> 444 50.0 1 1 0 1 -#> 445 42.9 4 1 1 0 -#> 446 0.0 1 4 1 3 -#> 447 NA 0 0 0 0 -#> 448 100.0 0 0 0 0 -#> 449 100.0 0 1 1 0 -#> 450 66.7 1 2 0 2 -#> 451 100.0 0 0 0 0 -#> 452 0.0 1 0 0 0 -#> 453 0.0 1 0 0 0 -#> 454 50.0 1 1 0 1 -#> 455 0.0 1 0 0 0 -#> 456 50.0 2 3 0 3 -#> 457 0.0 2 3 0 3 -#> 458 NA 0 0 0 0 -#> 459 NA 0 3 1 2 -#> 460 0.0 2 2 1 1 -#> 461 NA 0 0 0 0 -#> 462 50.0 1 0 0 0 -#> 463 NA 0 1 1 0 -#> 464 NA 0 0 0 0 -#> 465 100.0 0 2 1 1 -#> 466 NA 0 0 0 0 -#> 467 NA 0 0 0 0 -#> 468 NA 0 0 0 0 -#> 469 100.0 0 0 0 0 -#> 470 NA 0 0 0 0 -#> 471 100.0 0 0 0 0 -#> 472 NA 0 0 0 0 -#> 473 0.0 1 2 0 2 -#> 474 NA 0 0 0 0 -#> 475 NA 0 0 0 0 -#> 476 NA 0 0 0 0 -#> 477 40.0 6 1 1 0 -#> 478 0.0 2 0 0 0 -#> 479 0.0 1 0 0 0 -#> 480 100.0 0 3 1 2 -#> 481 100.0 0 3 2 1 -#> 482 66.7 1 0 0 0 -#> 483 75.0 1 2 0 2 -#> 484 NA 0 0 0 0 -#> 485 NA 0 0 0 0 -#> 486 NA 0 0 0 0 -#> 487 0.0 1 1 0 1 -#> 488 0.0 1 3 1 2 -#> 489 100.0 0 0 0 0 -#> 490 NA NA NA NA NA -#> 491 NA 0 0 0 0 -#> 492 50.0 1 0 0 0 -#> 493 0.0 1 0 0 0 -#> 494 0.0 1 1 0 1 -#> 495 0.0 2 0 0 0 -#> 496 50.0 1 0 0 0 -#> 497 NA 0 1 1 0 -#> 498 100.0 0 0 0 0 -#> 499 100.0 0 0 0 0 -#> 500 NA 0 0 0 0 -#> 501 100.0 0 0 0 0 -#> 502 0.0 1 0 0 0 -#> 503 0.0 1 1 0 1 -#> 504 NA 0 2 1 1 -#> 505 75.0 1 1 0 1 -#> 506 50.0 1 0 0 0 -#> 507 25.0 3 2 1 1 -#> 508 NA 0 1 1 0 -#> 509 66.7 1 0 0 0 -#> 510 0.0 1 0 0 0 -#> 511 50.0 1 5 3 2 -#> 512 100.0 0 2 1 1 -#> 513 100.0 0 1 1 0 -#> 514 100.0 0 1 1 0 -#> 515 NA 0 0 0 0 -#> 516 NA 0 0 0 0 -#> 517 NA 0 2 0 2 -#> 518 0.0 1 0 0 0 -#> 519 NA 0 0 0 0 -#> 520 0.0 1 2 0 2 -#> 521 100.0 0 0 0 0 -#> 522 0.0 1 4 0 4 -#> 523 NA 0 0 0 0 -#> 524 NA 0 0 0 0 -#> 525 50.0 1 0 0 0 -#> 526 NA 0 0 0 0 -#> 527 NA 0 0 0 0 -#> 528 NA 0 2 1 1 -#> 529 NA 0 0 0 0 -#> 530 100.0 0 1 0 1 -#> 531 NA 0 0 0 0 -#> 532 66.7 1 0 0 0 -#> 533 NA 0 0 0 0 -#> 534 NA 0 0 0 0 -#> 535 NA 0 1 0 1 -#> 536 33.3 2 0 0 0 -#> 537 50.0 1 0 0 0 -#> 538 100.0 0 1 1 0 -#> 539 NA 0 0 0 0 -#> 540 0.0 2 4 0 4 -#> 541 57.1 3 1 0 1 -#> 542 66.7 1 2 0 2 -#> 543 NA 0 3 2 1 -#> 544 100.0 0 2 2 0 -#> 545 100.0 0 0 0 0 -#> 546 100.0 0 1 0 1 -#> 547 NA 0 0 0 0 -#> 548 NA 0 0 0 0 -#> 549 0.0 1 0 0 0 -#> 550 100.0 0 1 0 1 -#> 551 NA 0 3 0 3 -#> 552 100.0 0 0 0 0 -#> 553 NA 0 1 1 0 -#> 554 0.0 1 0 0 0 -#> 555 25.0 3 2 0 2 -#> 556 100.0 0 1 0 1 -#> 557 NA 0 1 0 1 -#> 558 100.0 0 1 0 1 -#> 559 NA 0 0 0 0 -#> 560 100.0 0 1 0 1 -#> 561 NA 0 0 0 0 -#> 562 100.0 0 0 0 0 -#> 563 NA 0 0 0 0 -#> 564 NA 0 0 0 0 -#> 565 NA 0 1 0 1 -#> 566 50.0 1 0 0 0 -#> 567 100.0 0 0 0 0 -#> 568 0.0 1 2 0 2 -#> 569 NA 0 0 0 0 -#> 570 NA 0 0 0 0 -#> 571 NA 0 0 0 0 -#> 572 0.0 1 1 0 1 -#> 573 NA 0 1 0 1 -#> 574 0.0 2 1 0 1 -#> 575 50.0 1 0 0 0 -#> 576 100.0 0 0 0 0 -#> 577 100.0 0 0 0 0 -#> 578 NA 0 0 0 0 -#> 579 NA 0 0 0 0 -#> 580 100.0 0 0 0 0 -#> 581 NA 0 0 0 0 -#> 582 50.0 1 0 0 0 -#> 583 0.0 1 2 1 1 -#> 584 0.0 2 0 0 0 -#> 585 80.0 1 0 0 0 -#> 586 NA 0 0 0 0 -#> 587 NA 0 0 0 0 -#> 588 NA 0 0 0 0 -#> 589 NA 0 0 0 0 -#> 590 100.0 0 2 0 2 -#> 591 NA 0 0 0 0 -#> 592 NA 0 0 0 0 -#> 593 NA 0 1 0 1 -#> 594 0.0 2 0 0 0 -#> 595 50.0 1 1 0 1 -#> 596 NA 0 0 0 0 -#> 597 100.0 0 1 1 0 -#> 598 NA 0 1 0 1 -#> 599 NA 0 0 0 0 -#> 600 0.0 3 0 0 0 -#> 601 100.0 0 0 0 0 -#> 602 100.0 0 1 0 1 -#> 603 NA 0 0 0 0 -#> 604 NA 0 0 0 0 -#> 605 NA 0 1 0 1 -#> 606 50.0 1 0 0 0 -#> 607 NA 0 0 0 0 -#> 608 NA 0 2 0 2 -#> 609 NA 0 1 0 1 -#> 610 NA 0 0 0 0 -#> 611 42.9 4 4 0 4 -#> 612 NA 0 0 0 0 -#> 613 0.0 1 1 0 1 -#> 614 NA 0 0 0 0 -#> 615 NA 0 1 0 1 -#> 616 NA 0 3 2 1 -#> 617 50.0 1 0 0 0 -#> 618 28.6 5 1 0 1 -#> 619 NA 0 3 2 1 -#> 620 NA 0 1 0 1 -#> 621 0.0 1 0 0 0 -#> 622 NA 0 0 0 0 -#> 623 NA 0 1 0 1 -#> 624 NA 0 0 0 0 -#> 625 0.0 2 0 0 0 -#> 626 0.0 2 1 0 1 -#> 627 NA 0 0 0 0 -#> 628 NA 0 0 0 0 -#> 629 100.0 0 0 0 0 -#> 630 NA 0 0 0 0 -#> 631 0.0 1 2 1 1 -#> 632 33.3 2 0 0 0 -#> 633 0.0 3 1 1 0 -#> 634 100.0 0 0 0 0 -#> 635 NA 0 0 0 0 -#> 636 0.0 2 0 0 0 -#> 637 NA 0 0 0 0 -#> 638 50.0 1 1 0 1 -#> 639 0.0 1 0 0 0 -#> 640 0.0 1 1 0 1 -#> 641 NA 0 0 0 0 -#> 642 100.0 0 2 0 2 -#> 643 NA 0 0 0 0 -#> 644 NA 0 0 0 0 -#> 645 100.0 0 2 0 2 -#> 646 25.0 3 0 0 0 -#> 647 NA 0 0 0 0 -#> 648 0.0 1 0 0 0 -#> 649 100.0 0 0 0 0 -#> 650 0.0 1 1 0 1 -#> 651 NA 0 1 1 0 -#> 652 40.0 3 4 1 3 -#> 653 NA 0 0 0 0 -#> 654 NA 0 1 0 1 -#> 655 NA 0 0 0 0 -#> 656 NA 0 0 0 0 -#> 657 NA 0 1 0 1 -#> 658 NA 0 2 0 2 -#> 659 NA 0 1 0 1 -#> 660 100.0 0 0 0 0 -#> 661 0.0 1 2 0 2 -#> 662 NA 0 0 0 0 -#> 663 NA 0 2 1 1 -#> 664 100.0 0 1 1 0 -#> 665 100.0 0 2 1 1 -#> 666 0.0 2 0 0 0 -#> 667 100.0 0 0 0 0 -#> 668 NA 0 0 0 0 -#> 669 NA 0 0 0 0 -#> 670 NA 0 0 0 0 -#> 671 NA 0 1 0 1 -#> 672 0.0 1 1 0 1 -#> 673 0.0 2 1 0 1 -#> 674 NA 0 0 0 0 -#> 675 25.0 3 0 0 0 -#> 676 100.0 0 1 0 1 -#> 677 60.0 2 1 0 1 -#> 678 100.0 0 1 1 0 -#> 679 62.5 3 3 1 2 -#> 680 100.0 0 1 1 0 -#> 681 100.0 0 0 0 0 -#> 682 NA 0 1 1 0 -#> 683 100.0 0 2 0 2 -#> 684 NA 0 0 0 0 -#> 685 NA 0 0 0 0 -#> 686 NA 0 2 1 1 -#> 687 NA 0 0 0 0 -#> 688 NA 0 0 0 0 -#> 689 NA 0 0 0 0 -#> 690 0.0 1 0 0 0 -#> 691 NA 0 1 1 0 -#> 692 50.0 1 0 0 0 -#> 693 NA 0 1 0 1 -#> 694 NA 0 0 0 0 -#> 695 66.7 1 1 0 1 -#> 696 NA 0 0 0 0 -#> 697 0.0 1 1 0 1 -#> 698 NA 0 0 0 0 -#> 699 NA 0 1 1 0 -#> 700 NA 0 0 0 0 -#> 701 NA 0 0 0 0 -#> 702 NA 0 0 0 0 -#> 703 NA 0 0 0 0 -#> 704 NA 0 0 0 0 -#> 705 NA 0 0 0 0 -#> 706 NA 0 0 0 0 -#> 707 NA 0 0 0 0 -#> 708 33.3 2 2 1 1 -#> 709 NA 0 1 0 1 -#> 710 0.0 2 0 0 0 -#> 711 33.3 2 1 1 0 -#> 712 NA 0 5 2 3 -#> 713 0.0 1 5 4 1 -#> 714 0.0 1 4 2 2 -#> 715 100.0 0 2 1 1 -#> 716 NA 0 0 0 0 -#> 717 NA 0 0 0 0 -#> 718 50.0 1 1 0 1 -#> 719 NA 0 0 0 0 -#> 720 50.0 1 0 0 0 -#> 721 NA 0 0 0 0 -#> 722 33.3 2 1 0 1 -#> 723 NA 0 1 0 1 -#> 724 NA 0 0 0 0 -#> 725 100.0 0 0 0 0 -#> 726 100.0 0 0 0 0 -#> 727 0.0 1 0 0 0 -#> 728 NA 0 0 0 0 -#> 729 100.0 0 2 2 0 -#> 730 NA 0 2 0 2 -#> 731 NA 0 0 0 0 -#> 732 NA 0 0 0 0 -#> 733 NA 0 1 1 0 -#> 734 NA 0 0 0 0 -#> 735 NA 0 0 0 0 -#> 736 0.0 1 1 0 1 -#> 737 0.0 1 0 0 0 -#> 738 NA 0 0 0 0 -#> 739 100.0 0 1 0 1 -#> 740 100.0 0 0 0 0 -#> 741 NA 0 0 0 0 -#> 742 NA 0 1 0 1 -#> 743 50.0 1 0 0 0 -#> 744 0.0 1 0 0 0 -#> 745 100.0 0 0 0 0 -#> 746 0.0 3 0 0 0 -#> 747 0.0 1 1 0 1 -#> 748 NA 0 0 0 0 -#> 749 NA 0 1 0 1 -#> 750 NA 0 0 0 0 -#> 751 NA 0 0 0 0 -#> 752 NA 0 0 0 0 -#> 753 50.0 1 2 0 2 -#> 754 20.0 4 2 1 1 -#> 755 0.0 2 1 0 1 -#> 756 NA 0 1 0 1 -#> 757 0.0 3 0 0 0 -#> 758 66.7 1 1 0 1 -#> 759 NA 0 0 0 0 -#> 760 100.0 0 2 1 1 -#> 761 0.0 1 2 0 2 -#> 762 NA 0 0 0 0 -#> 763 100.0 0 1 0 1 -#> 764 NA 0 0 0 0 -#> 765 NA 0 1 0 1 -#> 766 50.0 1 1 0 1 -#> 767 NA 0 0 0 0 -#> 768 0.0 1 0 0 0 -#> 769 NA 0 0 0 0 -#> 770 100.0 0 1 0 1 -#> 771 0.0 2 0 0 0 -#> 772 NA 0 0 0 0 -#> 773 0.0 1 1 0 1 -#> 774 NA 0 1 1 0 -#> 775 NA 0 0 0 0 -#> 776 0.0 1 2 0 2 -#> 777 NA 0 0 0 0 -#> 778 NA 0 0 0 0 -#> 779 0.0 2 1 0 1 -#> 780 0.0 1 2 0 2 -#> 781 NA 0 0 0 0 -#> 782 NA 0 5 0 5 -#> 783 NA 0 0 0 0 -#> 784 16.7 5 1 0 1 -#> 785 100.0 0 1 0 1 -#> 786 NA 0 0 0 0 -#> 787 NA 0 2 0 2 -#> 788 100.0 0 0 0 0 -#> 789 100.0 0 0 0 0 -#> 790 NA 0 2 1 1 -#> 791 NA 0 0 0 0 -#> 792 100.0 0 0 0 0 -#> 793 NA 0 2 1 1 -#> 794 NA 0 0 0 0 -#> 795 NA 0 0 0 0 -#> 796 NA 0 0 0 0 -#> 797 NA 0 3 2 1 -#> 798 100.0 0 0 0 0 -#> 799 NA 0 1 0 1 -#> 800 0.0 5 0 0 0 -#> 801 0.0 3 1 1 0 -#> 802 66.7 1 0 0 0 -#> 803 75.0 1 0 0 0 -#> 804 NA 0 0 0 0 -#> 805 NA 0 1 1 0 -#> 806 20.0 4 2 0 2 -#> 807 50.0 1 2 2 0 -#> 808 66.7 1 1 1 0 -#> 809 100.0 0 0 0 0 -#> 810 NA 0 0 0 0 -#> 811 NA 0 0 0 0 -#> 812 100.0 0 1 0 1 -#> 813 NA 0 0 0 0 -#> 814 100.0 0 0 0 0 -#> 815 75.0 1 0 0 0 -#> 816 NA 0 0 0 0 -#> 817 100.0 0 3 1 2 -#> 818 0.0 3 0 0 0 -#> 819 100.0 0 1 0 1 -#> 820 NA 0 1 0 1 -#> 821 100.0 0 3 3 0 -#> 822 100.0 0 7 4 3 -#> 823 0.0 1 2 1 1 -#> 824 NA 0 0 0 0 -#> 825 NA 0 2 0 2 -#> 826 0.0 1 0 0 0 -#> 827 100.0 0 0 0 0 -#> 828 NA 0 0 0 0 -#> 829 100.0 0 0 0 0 -#> 830 100.0 0 0 0 0 -#> 831 0.0 1 0 0 0 -#> 832 NA 0 0 0 0 -#> 833 NA 0 0 0 0 -#> 834 50.0 1 1 1 0 -#> 835 NA 0 1 1 0 -#> 836 NA 0 3 3 0 -#> 837 NA 0 1 0 1 -#> 838 NA 0 0 0 0 -#> 839 NA 0 0 0 0 -#> 840 NA 0 0 0 0 -#> 841 NA 0 0 0 0 -#> 842 NA 0 0 0 0 -#> 843 0.0 4 3 0 3 -#> 844 0.0 2 0 0 0 -#> 845 NA 0 0 0 0 -#> 846 NA NA NA NA NA -#> 847 0.0 1 1 0 1 -#> 848 25.0 3 1 0 1 -#> 849 66.7 1 2 0 2 -#> 850 NA 0 0 0 0 -#> 851 NA 0 1 0 1 -#> 852 100.0 0 1 1 0 -#> 853 NA 0 1 1 0 -#> 854 NA 0 0 0 0 -#> 855 0.0 1 0 0 0 -#> 856 NA 0 0 0 0 -#> 857 100.0 0 0 0 0 -#> 858 100.0 0 1 0 1 -#> 859 NA 0 0 0 0 -#> 860 NA 0 2 0 2 -#> 861 NA 0 0 0 0 -#> 862 NA 0 0 0 0 -#> 863 50.0 2 2 1 1 -#> 864 NA 0 2 0 2 -#> 865 NA 0 0 0 0 -#> 866 100.0 0 1 0 1 -#> 867 66.7 1 0 0 0 -#> 868 100.0 0 2 2 0 -#> 869 100.0 0 0 0 0 -#> 870 100.0 0 2 1 1 -#> 871 NA 0 0 0 0 -#> 872 NA 0 0 0 0 -#> 873 NA 0 0 0 0 -#> 874 NA 0 0 0 0 -#> 875 NA 0 3 0 3 -#> 876 NA 0 0 0 0 -#> 877 0.0 1 1 0 1 -#> 878 NA NA NA NA NA -#> 879 NA 0 0 0 0 -#> 880 100.0 0 1 0 1 -#> 881 NA 0 1 0 1 -#> 882 NA 0 0 0 0 -#> 883 NA 0 2 1 1 -#> 884 50.0 1 1 0 1 -#> 885 NA 0 1 0 1 -#> 886 NA 0 0 0 0 -#> 887 NA 0 0 0 0 -#> 888 0.0 1 0 0 0 -#> 889 0.0 1 0 0 0 -#> 890 NA 0 2 2 0 -#> 891 0.0 1 0 0 0 -#> 892 33.3 2 0 0 0 -#> 893 0.0 1 0 0 0 -#> 894 0.0 1 0 0 0 -#> 895 NA 0 0 0 0 -#> 896 NA 0 0 0 0 -#> 897 100.0 0 1 1 0 -#> 898 40.0 3 0 0 0 -#> 899 NA 0 3 1 2 -#> 900 100.0 0 1 1 0 -#> 901 100.0 0 3 1 2 -#> 902 50.0 1 1 0 1 -#> 903 NA 0 0 0 0 -#> 904 0.0 1 0 0 0 -#> 905 100.0 0 0 0 0 -#> 906 0.0 1 1 0 1 -#> 907 NA 0 1 0 1 -#> 908 50.0 1 0 0 0 -#> 909 NA 0 0 0 0 -#> 910 NA 0 0 0 0 -#> 911 50.0 1 2 0 2 -#> 912 NA 0 1 1 0 -#> 913 100.0 0 0 0 0 -#> 914 100.0 0 1 0 1 -#> 915 NA 0 0 0 0 -#> 916 NA 0 3 3 0 -#> 917 100.0 0 1 0 1 -#> 918 100.0 0 0 0 0 -#> 919 NA 0 0 0 0 -#> 920 NA 0 1 0 1 -#> 921 NA 0 0 0 0 -#> 922 NA NA NA NA NA -#> 923 0.0 1 0 0 0 -#> 924 100.0 0 1 0 1 -#> 925 NA 0 0 0 0 -#> 926 50.0 1 0 0 0 -#> 927 33.3 4 0 0 0 -#> 928 NA 0 0 0 0 -#> 929 0.0 1 0 0 0 -#> 930 NA 0 0 0 0 -#> 931 100.0 0 0 0 0 -#> 932 NA 0 0 0 0 -#> 933 50.0 1 1 1 0 -#> 934 NA 0 0 0 0 -#> 935 NA 0 0 0 0 -#> 936 NA 0 0 0 0 -#> 937 0.0 3 1 0 1 -#> 938 NA 0 1 0 1 -#> 939 NA 0 0 0 0 -#> 940 100.0 0 0 0 0 -#> 941 NA 0 0 0 0 -#> 942 33.3 2 0 0 0 -#> 943 100.0 0 1 0 1 -#> 944 100.0 0 0 0 0 -#> 945 100.0 0 0 0 0 -#> 946 100.0 0 1 0 1 -#> 947 100.0 0 0 0 0 -#> 948 33.3 2 0 0 0 -#> 949 NA 0 0 0 0 -#> 950 NA 0 1 0 1 -#> 951 0.0 2 0 0 0 -#> 952 100.0 0 0 0 0 -#> 953 NA 0 0 0 0 -#> 954 0.0 1 2 0 2 -#> 955 NA 0 0 0 0 -#> 956 NA 0 1 0 1 -#> 957 NA 0 0 0 0 -#> 958 100.0 0 0 0 0 -#> 959 0.0 2 2 1 1 -#> 960 100.0 0 1 0 1 -#> 961 100.0 0 0 0 0 -#> 962 NA 0 2 0 2 -#> 963 NA 0 0 0 0 -#> 964 NA 0 0 0 0 -#> 965 NA 0 0 0 0 -#> 966 NA 0 0 0 0 -#> 967 75.0 1 0 0 0 -#> 968 100.0 0 0 0 0 -#> 969 100.0 0 0 0 0 -#> 970 0.0 1 3 1 2 -#> 971 NA 0 0 0 0 -#> 972 83.3 1 3 0 3 -#> 973 66.7 1 0 0 0 -#> 974 0.0 1 0 0 0 -#> 975 66.7 1 0 0 0 -#> 976 NA 0 0 0 0 -#> 977 100.0 0 3 1 2 -#> 978 100.0 0 0 0 0 -#> 979 NA 0 0 0 0 -#> 980 NA 0 0 0 0 -#> 981 NA 0 0 0 0 -#> 982 0.0 1 1 0 1 -#> 983 NA 0 0 0 0 -#> 984 100.0 0 0 0 0 -#> 985 NA 0 1 0 1 -#> 986 50.0 2 0 0 0 -#> 987 50.0 1 0 0 0 -#> 988 NA 0 0 0 0 -#> 989 66.7 1 1 0 1 -#> 990 0.0 2 0 0 0 -#> 991 100.0 0 3 3 0 -#> 992 100.0 0 2 2 0 -#> 993 100.0 0 1 1 0 -#> 994 NA 0 0 0 0 -#> 995 NA 0 0 0 0 -#> 996 NA 0 0 0 0 -#> 997 NA 0 0 0 0 -#> 998 NA 0 2 0 2 -#> 999 0.0 1 1 0 1 -#> 1000 NA 0 0 0 0 -#> 1001 0.0 1 0 0 0 -#> 1002 66.7 1 1 0 1 -#> 1003 50.0 1 1 1 0 -#> 1004 NA 0 4 3 1 -#> 1005 100.0 0 0 0 0 -#> 1006 NA 0 0 0 0 -#> 1007 100.0 0 1 1 0 -#> 1008 NA 0 0 0 0 -#> 1009 50.0 2 1 0 1 -#> 1010 NA 0 1 0 1 -#> 1011 NA 0 0 0 0 -#> 1012 0.0 1 0 0 0 -#> 1013 NA 0 1 1 0 -#> 1014 NA 0 0 0 0 -#> 1015 66.7 1 0 0 0 -#> 1016 NA 0 0 0 0 -#> 1017 100.0 0 2 0 2 -#> 1018 0.0 1 2 0 2 -#> 1019 0.0 3 0 0 0 -#> 1020 0.0 1 1 1 0 -#> 1021 0.0 1 0 0 0 -#> 1022 100.0 0 2 1 1 -#> 1023 100.0 0 4 2 2 -#> 1024 NA 0 1 0 1 -#> 1025 66.7 1 1 1 0 -#> 1026 NA 0 0 0 0 -#> 1027 NA 0 0 0 0 -#> 1028 0.0 2 0 0 0 -#> 1029 100.0 0 0 0 0 -#> 1030 100.0 0 0 0 0 -#> 1031 NA 0 1 0 1 -#> 1032 NA 0 0 0 0 -#> 1033 50.0 1 2 0 2 -#> 1034 NA 0 0 0 0 -#> 1035 NA 0 2 1 1 -#> 1036 100.0 0 1 0 1 -#> 1037 NA 0 0 0 0 -#> 1038 50.0 1 1 0 1 -#> 1039 100.0 0 2 1 1 -#> 1040 40.0 3 1 1 0 -#> 1041 NA 0 1 0 1 -#> 1042 NA 0 0 0 0 -#> 1043 NA 0 0 0 0 -#> 1044 NA 0 0 0 0 -#> 1045 NA 0 0 0 0 -#> 1046 NA 0 0 0 0 -#> 1047 100.0 0 1 0 1 -#> 1048 NA 0 0 0 0 -#> 1049 NA 0 1 0 1 -#> 1050 100.0 0 0 0 0 -#> 1051 100.0 0 0 0 0 -#> 1052 0.0 1 2 0 2 -#> 1053 NA 0 1 1 0 -#> 1054 NA 0 0 0 0 -#> 1055 NA 0 3 2 1 -#> 1056 NA 0 0 0 0 -#> 1057 NA 0 1 0 1 -#> 1058 NA 0 0 0 0 -#> 1059 NA 0 0 0 0 -#> 1060 NA 0 0 0 0 -#> 1061 NA 0 0 0 0 -#> 1062 0.0 1 0 0 0 -#> 1063 NA 0 0 0 0 -#> 1064 NA 0 0 0 0 -#> 1065 33.3 2 0 0 0 -#> 1066 100.0 0 1 0 1 -#> 1067 0.0 2 2 0 2 -#> 1068 NA 0 0 0 0 -#> 1069 66.7 1 1 0 1 -#> 1070 NA 0 0 0 0 -#> 1071 66.7 1 0 0 0 -#> 1072 0.0 1 0 0 0 -#> 1073 0.0 1 1 1 0 -#> 1074 100.0 0 1 0 1 -#> 1075 NA 0 0 0 0 -#> 1076 0.0 2 0 0 0 -#> 1077 NA 0 0 0 0 -#> 1078 NA 0 1 0 1 -#> 1079 NA 0 0 0 0 -#> 1080 0.0 1 1 0 1 -#> 1081 NA 0 2 0 2 -#> 1082 60.0 2 3 1 2 -#> 1083 NA 0 0 0 0 -#> 1084 NA 0 2 2 0 -#> 1085 75.0 1 0 0 0 -#> 1086 NA 0 0 0 0 -#> 1087 100.0 0 1 1 0 -#> 1088 NA 0 0 0 0 -#> 1089 NA 0 1 0 1 -#> 1090 NA 0 0 0 0 -#> 1091 NA 0 0 0 0 -#> 1092 NA 0 0 0 0 -#> 1093 NA 0 3 0 3 -#> 1094 NA 0 2 1 1 -#> 1095 NA 0 0 0 0 -#> 1096 0.0 1 0 0 0 -#> 1097 0.0 6 2 0 2 -#> 1098 NA 0 0 0 0 -#> 1099 0.0 1 0 0 0 -#> 1100 0.0 1 1 0 1 -#> 1101 NA 0 0 0 0 -#> 1102 100.0 0 0 0 0 -#> 1103 100.0 0 2 2 0 -#> 1104 0.0 1 0 0 0 -#> 1105 NA 0 0 0 0 -#> 1106 NA 0 0 0 0 -#> 1107 NA 0 0 0 0 -#> 1108 NA 0 0 0 0 -#> 1109 0.0 1 1 0 1 -#> 1110 NA 0 0 0 0 -#> 1111 0.0 1 1 0 1 -#> 1112 NA 0 0 0 0 -#> 1113 NA 0 1 0 1 -#> 1114 NA 0 0 0 0 -#> 1115 66.7 1 2 2 0 -#> 1116 100.0 0 1 0 1 -#> 1117 100.0 0 2 2 0 -#> 1118 100.0 0 0 0 0 -#> 1119 NA 0 0 0 0 -#> 1120 NA 0 1 0 1 -#> 1121 NA 0 0 0 0 -#> 1122 NA 0 1 0 1 -#> 1123 NA 0 0 0 0 -#> 1124 NA 0 1 0 1 -#> 1125 NA 0 0 0 0 -#> 1126 50.0 1 0 0 0 -#> 1127 NA 0 1 1 0 -#> 1128 100.0 0 0 0 0 -#> 1129 NA 0 1 0 1 -#> 1130 NA 0 1 0 1 -#> 1131 NA 0 0 0 0 -#> 1132 100.0 0 0 0 0 -#> 1133 NA 0 0 0 0 -#> 1134 100.0 0 1 1 0 -#> 1135 NA 0 1 1 0 -#> 1136 NA 0 0 0 0 -#> 1137 NA 0 0 0 0 -#> 1138 NA 0 0 0 0 -#> 1139 0.0 1 0 0 0 -#> 1140 100.0 0 0 0 0 -#> 1141 100.0 0 2 0 2 -#> 1142 0.0 1 0 0 0 -#> 1143 0.0 1 0 0 0 -#> 1144 0.0 2 0 0 0 -#> 1145 NA 0 1 1 0 -#> 1146 0.0 1 0 0 0 -#> 1147 NA 0 0 0 0 -#> 1148 NA 0 0 0 0 -#> 1149 NA 0 3 1 2 -#> 1150 0.0 1 0 0 0 -#> 1151 NA 0 1 0 1 -#> 1152 100.0 0 0 0 0 -#> 1153 NA 0 0 0 0 -#> 1154 0.0 1 0 0 0 -#> 1155 NA 0 0 0 0 -#> 1156 0.0 1 0 0 0 -#> 1157 66.7 1 1 0 1 -#> 1158 NA 0 0 0 0 -#> 1159 100.0 0 0 0 0 -#> 1160 NA 0 0 0 0 -#> 1161 NA NA NA NA NA -#> 1162 NA 0 0 0 0 -#> 1163 NA 0 1 0 1 -#> 1164 NA 0 0 0 0 -#> 1165 100.0 0 1 1 0 -#> 1166 NA 0 0 0 0 -#> 1167 50.0 1 0 0 0 -#> 1168 0.0 1 0 0 0 -#> 1169 NA 0 0 0 0 -#> 1170 NA 0 0 0 0 -#> 1171 NA 0 1 1 0 -#> 1172 NA 0 0 0 0 -#> 1173 NA 0 1 0 1 -#> 1174 0.0 1 3 1 2 -#> 1175 0.0 1 1 1 0 -#> 1176 25.0 3 1 1 0 -#> 1177 0.0 1 1 1 0 -#> 1178 0.0 1 0 0 0 -#> 1179 NA 0 1 0 1 -#> 1180 0.0 2 1 0 1 -#> 1181 NA 0 2 2 0 -#> 1182 NA 0 0 0 0 -#> 1183 NA 0 1 1 0 -#> 1184 100.0 0 2 2 0 -#> 1185 NA 0 0 0 0 -#> 1186 50.0 1 0 0 0 -#> 1187 NA 0 1 0 1 -#> 1188 NA 0 0 0 0 -#> 1189 50.0 1 1 0 1 -#> 1190 50.0 1 1 0 1 -#> 1191 NA 0 0 0 0 -#> 1192 75.0 1 1 0 1 -#> 1193 50.0 1 0 0 0 -#> 1194 NA 0 0 0 0 -#> 1195 50.0 1 1 0 1 -#> 1196 50.0 1 3 2 1 -#> 1197 100.0 0 0 0 0 -#> 1198 NA 0 2 2 0 -#> 1199 NA 0 5 3 2 -#> 1200 60.0 2 2 2 0 -#> 1201 NA 0 0 0 0 -#> 1202 100.0 0 0 0 0 -#> 1203 NA 0 1 0 1 -#> 1204 NA 0 1 0 1 -#> 1205 0.0 1 0 0 0 -#> 1206 100.0 0 1 0 1 -#> 1207 NA 0 0 0 0 -#> 1208 25.0 3 1 0 1 -#> 1209 33.3 2 1 0 1 -#> 1210 NA 0 0 0 0 -#> 1211 0.0 1 0 0 0 -#> 1212 NA 0 3 0 3 -#> 1213 NA 0 0 0 0 -#> 1214 NA 0 0 0 0 -#> 1215 100.0 0 1 1 0 -#> 1216 NA 0 0 0 0 -#> 1217 0.0 1 4 1 3 -#> 1218 NA 0 0 0 0 -#> 1219 0.0 2 1 0 1 -#> 1220 0.0 1 0 0 0 -#> 1221 0.0 1 0 0 0 -#> 1222 NA 0 0 0 0 -#> 1223 100.0 0 1 1 0 -#> 1224 NA 0 1 1 0 -#> 1225 100.0 0 0 0 0 -#> 1226 100.0 0 2 0 2 -#> 1227 100.0 0 1 0 1 -#> 1228 NA 0 1 1 0 -#> 1229 NA 0 2 1 1 -#> 1230 100.0 0 0 0 0 -#> 1231 NA 0 2 2 0 -#> 1232 NA 0 0 0 0 -#> 1233 NA 0 0 0 0 -#> 1234 NA 0 1 0 1 -#> 1235 NA 0 1 0 1 -#> 1236 0.0 1 2 0 2 -#> 1237 66.7 1 0 0 0 -#> 1238 25.0 3 0 0 0 -#> 1239 100.0 0 0 0 0 -#> 1240 0.0 1 0 0 0 -#> 1241 NA 0 0 0 0 -#> 1242 0.0 1 2 0 2 -#> 1243 NA 0 0 0 0 -#> 1244 100.0 0 0 0 0 -#> 1245 NA 0 2 1 1 -#> 1246 66.7 1 1 0 1 -#> 1247 100.0 0 0 0 0 -#> 1248 NA 0 0 0 0 -#> 1249 0.0 1 0 0 0 -#> 1250 NA 0 0 0 0 -#> 1251 NA 0 4 1 3 -#> 1252 0.0 1 0 0 0 -#> 1253 NA 0 0 0 0 -#> 1254 NA 0 3 0 3 -#> 1255 NA 0 0 0 0 -#> 1256 50.0 5 3 2 1 -#> 1257 NA 0 0 0 0 -#> 1258 50.0 1 0 0 0 -#> 1259 NA 0 0 0 0 -#> 1260 0.0 4 0 0 0 -#> 1261 NA 0 1 1 0 -#> 1262 0.0 2 2 2 0 -#> 1263 0.0 1 0 0 0 -#> 1264 NA 0 0 0 0 -#> 1265 100.0 0 0 0 0 -#> 1266 NA 0 0 0 0 -#> 1267 NA 0 0 0 0 -#> 1268 0.0 2 0 0 0 -#> 1269 66.7 1 0 0 0 -#> 1270 NA 0 0 0 0 -#> 1271 NA 0 0 0 0 -#> 1272 NA NA NA NA NA -#> 1273 100.0 0 0 0 0 -#> 1274 100.0 0 0 0 0 -#> 1275 NA 0 0 0 0 -#> 1276 100.0 0 2 2 0 -#> 1277 50.0 2 1 0 1 -#> 1278 33.3 2 1 0 1 -#> 1279 NA 0 0 0 0 -#> 1280 NA 0 0 0 0 -#> 1281 0.0 1 1 0 1 -#> 1282 0.0 1 0 0 0 -#> 1283 100.0 0 0 0 0 -#> 1284 50.0 1 0 0 0 -#> 1285 50.0 1 1 0 1 -#> 1286 NA 0 0 0 0 -#> 1287 100.0 0 0 0 0 -#> 1288 100.0 0 1 0 1 -#> 1289 0.0 2 0 0 0 -#> 1290 NA 0 3 2 1 -#> 1291 100.0 0 1 1 0 -#> 1292 NA 0 0 0 0 -#> 1293 NA 0 0 0 0 -#> 1294 NA 0 0 0 0 -#> 1295 66.7 1 0 0 0 -#> 1296 0.0 2 1 0 1 -#> 1297 NA 0 0 0 0 -#> 1298 NA 0 0 0 0 -#> 1299 75.0 1 0 0 0 -#> 1300 100.0 0 0 0 0 -#> 1301 66.7 1 0 0 0 -#> 1302 NA 0 0 0 0 -#> 1303 NA 0 0 0 0 -#> 1304 NA 0 0 0 0 -#> 1305 NA 0 2 2 0 -#> 1306 NA 0 0 0 0 -#> 1307 NA 0 2 2 0 -#> 1308 60.0 2 1 0 1 -#> 1309 NA 0 0 0 0 -#> 1310 NA 0 0 0 0 -#> 1311 100.0 0 0 0 0 -#> 1312 100.0 0 0 0 0 -#> 1313 33.3 2 2 0 2 -#> 1314 66.7 2 4 0 4 -#> 1315 0.0 1 0 0 0 -#> 1316 NA 0 1 0 1 -#> 1317 NA 0 0 0 0 -#> 1318 50.0 1 1 0 1 -#> 1319 NA 0 1 0 1 -#> 1320 0.0 1 1 0 1 -#> 1321 NA 0 0 0 0 -#> 1322 37.5 5 2 0 2 -#> 1323 NA 0 2 1 1 -#> 1324 0.0 1 0 0 0 -#> 1325 75.0 1 1 1 0 -#> 1326 NA 0 1 0 1 -#> 1327 NA 0 0 0 0 -#> 1328 NA 0 0 0 0 -#> 1329 NA 0 1 0 1 -#> 1330 NA 0 0 0 0 -#> 1331 100.0 0 1 0 1 -#> 1332 NA 0 0 0 0 -#> 1333 0.0 1 0 0 0 -#> 1334 0.0 2 0 0 0 -#> 1335 66.7 1 0 0 0 -#> 1336 NA 0 0 0 0 -#> 1337 100.0 0 1 0 1 -#> 1338 NA 0 0 0 0 -#> 1339 NA 0 0 0 0 -#> 1340 NA 0 0 0 0 -#> 1341 NA 0 1 0 1 -#> 1342 NA 0 0 0 0 -#> 1343 50.0 1 0 0 0 -#> 1344 NA 0 0 0 0 -#> 1345 100.0 0 0 0 0 -#> 1346 0.0 1 0 0 0 -#> 1347 NA 0 0 0 0 -#> 1348 50.0 1 0 0 0 -#> 1349 100.0 0 1 0 1 -#> 1350 100.0 0 0 0 0 -#> 1351 NA 0 0 0 0 -#> 1352 50.0 1 1 1 0 -#> 1353 NA 0 0 0 0 -#> 1354 50.0 1 3 1 2 -#> 1355 NA 0 2 2 0 -#> 1356 0.0 1 1 1 0 -#> 1357 33.3 2 1 0 1 -#> 1358 NA 0 0 0 0 -#> 1359 0.0 1 2 2 0 -#> 1360 0.0 2 1 0 1 -#> 1361 50.0 1 0 0 0 -#> 1362 100.0 0 0 0 0 -#> 1363 0.0 3 4 1 3 -#> 1364 100.0 0 0 0 0 -#> 1365 75.0 1 0 0 0 -#> 1366 0.0 1 0 0 0 -#> 1367 50.0 1 0 0 0 -#> 1368 0.0 2 0 0 0 -#> 1369 0.0 1 0 0 0 -#> 1370 0.0 1 4 1 3 -#> 1371 NA 0 0 0 0 -#> 1372 NA 0 0 0 0 -#> 1373 100.0 0 0 0 0 -#> 1374 NA 0 1 0 1 -#> 1375 NA 0 2 0 2 -#> 1376 25.0 3 1 0 1 -#> 1377 NA 0 0 0 0 -#> 1378 0.0 2 0 0 0 -#> 1379 0.0 1 0 0 0 -#> 1380 NA 0 0 0 0 -#> 1381 NA 0 1 1 0 -#> 1382 0.0 1 1 0 1 -#> 1383 0.0 1 0 0 0 -#> 1384 100.0 0 1 0 1 -#> 1385 NA 0 0 0 0 -#> 1386 NA 0 0 0 0 -#> 1387 16.7 5 1 0 1 -#> 1388 NA 0 0 0 0 -#> 1389 0.0 1 3 2 1 -#> 1390 NA 0 0 0 0 -#> 1391 60.0 2 3 2 1 -#> 1392 0.0 1 0 0 0 -#> 1393 66.7 1 1 1 0 -#> 1394 100.0 0 0 0 0 -#> 1395 0.0 4 0 0 0 -#> 1396 NA 0 0 0 0 -#> 1397 NA 0 0 0 0 -#> 1398 0.0 2 1 0 1 -#> 1399 0.0 1 1 1 0 -#> 1400 0.0 1 1 0 1 -#> 1401 40.0 3 2 1 1 -#> 1402 NA 0 0 0 0 -#> 1403 100.0 0 3 2 1 -#> 1404 NA 0 1 0 1 -#> 1405 50.0 1 0 0 0 -#> 1406 NA 0 1 0 1 -#> 1407 NA 0 3 0 3 -#> 1408 50.0 1 0 0 0 -#> 1409 NA 0 1 0 1 -#> 1410 NA 0 0 0 0 -#> 1411 NA 0 1 0 1 -#> 1412 66.7 1 0 0 0 -#> 1413 50.0 1 2 1 1 -#> 1414 NA 0 0 0 0 -#> 1415 NA 0 0 0 0 -#> 1416 0.0 1 1 0 1 -#> 1417 NA 0 0 0 0 -#> 1418 NA 0 0 0 0 -#> 1419 NA 0 0 0 0 -#> 1420 NA 0 0 0 0 -#> 1421 75.0 1 1 0 1 -#> 1422 0.0 1 0 0 0 -#> 1423 NA 0 0 0 0 -#> 1424 0.0 1 0 0 0 -#> 1425 0.0 1 0 0 0 -#> 1426 0.0 2 0 0 0 -#> 1427 NA 0 0 0 0 -#> 1428 50.0 1 0 0 0 -#> 1429 NA 0 0 0 0 -#> 1430 100.0 0 3 0 3 -#> 1431 NA 0 1 0 1 -#> 1432 NA 0 1 1 0 -#> 1433 100.0 0 0 0 0 -#> 1434 NA 0 0 0 0 -#> 1435 NA 0 1 0 1 -#> 1436 NA 0 1 0 1 -#> 1437 0.0 1 1 0 1 -#> 1438 100.0 0 2 1 1 -#> 1439 100.0 0 1 0 1 -#> 1440 NA 0 0 0 0 -#> 1441 NA 0 1 0 1 -#> 1442 NA 0 1 0 1 -#> 1443 0.0 2 0 0 0 -#> 1444 NA 0 0 0 0 -#> 1445 NA 0 1 1 0 -#> 1446 NA 0 0 0 0 -#> 1447 100.0 0 0 0 0 -#> 1448 33.3 2 0 0 0 -#> 1449 NA 0 0 0 0 -#> 1450 NA 0 0 0 0 -#> 1451 NA 0 0 0 0 -#> 1452 0.0 1 2 0 2 -#> 1453 NA 0 0 0 0 -#> 1454 100.0 0 2 0 2 -#> 1455 NA 0 0 0 0 -#> 1456 0.0 2 0 0 0 -#> 1457 NA 0 0 0 0 -#> 1458 0.0 1 2 1 1 -#> 1459 100.0 0 0 0 0 -#> 1460 0.0 1 2 0 2 -#> 1461 NA 0 0 0 0 -#> 1462 NA 0 1 1 0 -#> 1463 100.0 0 2 0 2 -#> 1464 NA 0 0 0 0 -#> 1465 NA 0 0 0 0 -#> 1466 0.0 1 0 0 0 -#> 1467 NA 0 0 0 0 -#> 1468 NA 0 0 0 0 -#> 1469 NA 0 1 0 1 -#> 1470 25.0 3 1 0 1 -#> 1471 0.0 2 0 0 0 -#> 1472 NA 0 0 0 0 -#> 1473 66.7 1 1 1 0 -#> 1474 0.0 1 2 1 1 -#> 1475 75.0 1 1 0 1 -#> 1476 50.0 1 3 3 0 -#> 1477 100.0 0 4 2 2 -#> 1478 100.0 0 2 1 1 -#> 1479 NA 0 0 0 0 -#> 1480 NA 0 0 0 0 -#> 1481 NA 0 0 0 0 -#> 1482 50.0 1 1 1 0 -#> 1483 NA 0 0 0 0 -#> 1484 50.0 1 0 0 0 -#> 1485 0.0 4 3 0 3 -#> 1486 NA 0 2 1 1 -#> 1487 NA 0 0 0 0 -#> 1488 100.0 0 1 1 0 -#> 1489 0.0 1 1 0 1 -#> 1490 100.0 0 0 0 0 -#> 1491 NA 0 0 0 0 -#> 1492 NA 0 2 2 0 -#> 1493 100.0 0 0 0 0 -#> 1494 0.0 1 2 0 2 -#> 1495 NA 0 0 0 0 -#> 1496 100.0 0 1 1 0 -#> 1497 NA 0 0 0 0 -#> 1498 0.0 1 1 0 1 -#> 1499 NA 0 0 0 0 -#> 1500 NA 0 0 0 0 -#> 1501 NA 0 0 0 0 -#> 1502 75.0 1 1 0 1 -#> 1503 NA 0 1 1 0 -#> 1504 NA 0 0 0 0 -#> 1505 100.0 0 2 0 2 -#> 1506 0.0 2 0 0 0 -#> 1507 100.0 0 0 0 0 -#> 1508 NA 0 1 1 0 -#> 1509 100.0 0 1 0 1 -#> 1510 0.0 3 4 2 2 -#> 1511 NA 0 0 0 0 -#> 1512 NA 0 1 0 1 -#> 1513 NA 0 0 0 0 -#> 1514 0.0 1 2 1 1 -#> 1515 NA 0 0 0 0 -#> 1516 0.0 1 0 0 0 -#> 1517 NA 0 0 0 0 -#> 1518 0.0 1 0 0 0 -#> 1519 NA 0 0 0 0 -#> 1520 NA 0 1 0 1 -#> 1521 NA 0 1 0 1 -#> 1522 66.7 1 1 0 1 -#> 1523 100.0 0 0 0 0 -#> 1524 NA 0 0 0 0 -#> 1525 NA 0 1 1 0 -#> 1526 75.0 1 0 0 0 -#> 1527 NA 0 0 0 0 -#> 1528 0.0 1 2 0 2 -#> 1529 NA 0 0 0 0 -#> 1530 50.0 1 0 0 0 -#> 1531 NA 0 1 0 1 -#> 1532 50.0 1 0 0 0 -#> 1533 NA 0 0 0 0 -#> 1534 0.0 1 0 0 0 -#> 1535 100.0 0 1 0 1 -#> 1536 NA 0 0 0 0 -#> 1537 100.0 0 0 0 0 -#> 1538 0.0 1 1 0 1 -#> 1539 NA 0 0 0 0 -#> 1540 100.0 0 3 2 1 -#> 1541 NA 0 1 1 0 -#> 1542 NA 0 1 0 1 -#> 1543 NA 0 0 0 0 -#> 1544 0.0 1 0 0 0 -#> 1545 0.0 1 0 0 0 -#> 1546 100.0 0 0 0 0 -#> 1547 NA 0 0 0 0 -#> 1548 NA 0 0 0 0 -#> 1549 NA 0 1 0 1 -#> 1550 NA 0 0 0 0 -#> 1551 100.0 0 0 0 0 -#> 1552 0.0 2 2 1 1 -#> 1553 NA 0 0 0 0 -#> 1554 57.1 3 3 1 2 -#> 1555 NA 0 2 0 2 -#> 1556 NA 0 2 2 0 -#> 1557 100.0 0 1 1 0 -#> 1558 100.0 0 0 0 0 -#> 1559 NA 0 0 0 0 -#> 1560 NA 0 0 0 0 -#> 1561 NA 0 0 0 0 -#> 1562 NA 0 0 0 0 -#> 1563 NA 0 0 0 0 -#> 1564 50.0 1 0 0 0 -#> 1565 100.0 0 0 0 0 -#> 1566 NA 0 1 0 1 -#> 1567 0.0 1 1 0 1 -#> 1568 100.0 0 2 1 1 -#> 1569 50.0 1 1 0 1 -#> 1570 NA 0 1 0 1 -#> 1571 NA 0 0 0 0 -#> 1572 NA 0 1 1 0 -#> 1573 0.0 2 1 1 0 -#> 1574 0.0 1 0 0 0 -#> 1575 66.7 1 0 0 0 -#> 1576 NA 0 0 0 0 -#> 1577 NA 0 0 0 0 -#> 1578 0.0 1 3 0 3 -#> 1579 NA 0 0 0 0 -#> 1580 50.0 2 2 0 2 -#> 1581 100.0 0 1 0 1 -#> 1582 NA 0 0 0 0 -#> 1583 0.0 1 0 0 0 -#> 1584 100.0 0 0 0 0 -#> 1585 100.0 0 0 0 0 -#> 1586 NA 0 0 0 0 -#> 1587 NA 0 0 0 0 -#> 1588 NA 0 0 0 0 -#> 1589 NA 0 1 0 1 -#> 1590 NA 0 0 0 0 -#> 1591 0.0 1 0 0 0 -#> 1592 NA 0 0 0 0 -#> 1593 0.0 1 0 0 0 -#> 1594 NA 0 0 0 0 -#> 1595 NA 0 0 0 0 -#> 1596 0.0 1 0 0 0 -#> 1597 0.0 2 1 0 1 -#> 1598 100.0 0 2 0 2 -#> 1599 0.0 1 1 0 1 -#> 1600 NA 0 0 0 0 -#> 1601 NA 0 1 0 1 -#> 1602 100.0 0 0 0 0 -#> 1603 100.0 0 0 0 0 -#> 1604 NA 0 0 0 0 -#> 1605 100.0 0 0 0 0 -#> 1606 NA 0 0 0 0 -#> 1607 NA 0 0 0 0 -#> 1608 NA 0 0 0 0 -#> 1609 0.0 1 0 0 0 -#> 1610 0.0 1 0 0 0 -#> 1611 NA 0 1 1 0 -#> 1612 100.0 0 0 0 0 -#> 1613 50.0 2 2 0 2 -#> 1614 50.0 2 1 0 1 -#> 1615 NA 0 0 0 0 -#> 1616 50.0 1 2 0 2 -#> 1617 NA 0 1 1 0 -#> 1618 NA 0 0 0 0 -#> 1619 NA 0 1 1 0 -#> 1620 NA 0 2 2 0 -#> 1621 100.0 0 1 1 0 -#> 1622 100.0 0 0 0 0 -#> 1623 0.0 1 1 0 1 -#> 1624 NA 0 0 0 0 -#> 1625 NA 0 2 0 2 -#> 1626 0.0 1 1 1 0 -#> 1627 NA 0 0 0 0 -#> 1628 100.0 0 0 0 0 -#> 1629 0.0 1 0 0 0 -#> 1630 NA NA NA NA NA -#> 1631 NA 0 0 0 0 -#> 1632 50.0 1 0 0 0 -#> 1633 NA 0 0 0 0 -#> 1634 NA 0 1 1 0 -#> 1635 100.0 0 0 0 0 -#> 1636 NA 0 0 0 0 -#> 1637 100.0 0 2 0 2 -#> 1638 NA 0 0 0 0 -#> 1639 0.0 1 0 0 0 -#> 1640 NA 0 0 0 0 -#> 1641 NA 0 0 0 0 -#> 1642 50.0 1 2 0 2 -#> 1643 0.0 3 0 0 0 -#> 1644 0.0 1 0 0 0 -#> 1645 NA 0 0 0 0 -#> 1646 NA 0 0 0 0 -#> 1647 100.0 0 2 2 0 -#> 1648 100.0 0 1 0 1 -#> 1649 100.0 0 0 0 0 -#> 1650 0.0 1 1 1 0 -#> 1651 50.0 1 0 0 0 -#> 1652 NA 0 0 0 0 -#> 1653 NA 0 0 0 0 -#> 1654 NA 0 0 0 0 -#> 1655 0.0 1 1 0 1 -#> 1656 NA 0 0 0 0 -#> 1657 75.0 1 1 0 1 -#> 1658 NA 0 0 0 0 -#> 1659 100.0 0 2 0 2 -#> 1660 0.0 1 0 0 0 -#> 1661 NA 0 0 0 0 -#> 1662 33.3 2 1 0 1 -#> 1663 50.0 1 0 0 0 -#> 1664 NA 0 0 0 0 -#> 1665 0.0 1 1 1 0 -#> 1666 0.0 1 1 0 1 -#> 1667 33.3 2 0 0 0 -#> 1668 NA 0 0 0 0 -#> 1669 NA 0 0 0 0 -#> 1670 NA 0 0 0 0 -#> 1671 0.0 2 1 0 1 -#> 1672 0.0 1 0 0 0 -#> 1673 NA 0 1 0 1 -#> 1674 NA 0 0 0 0 -#> 1675 20.0 4 3 1 2 -#> 1676 100.0 0 0 0 0 -#> 1677 100.0 0 2 1 1 -#> 1678 NA 0 1 0 1 -#> 1679 0.0 1 0 0 0 -#> 1680 0.0 1 0 0 0 -#> 1681 NA 0 2 0 2 -#> 1682 NA 0 0 0 0 -#> 1683 0.0 1 0 0 0 -#> 1684 NA 0 0 0 0 -#> 1685 NA 0 0 0 0 -#> 1686 NA 0 0 0 0 -#> 1687 0.0 3 0 0 0 -#> 1688 NA 0 0 0 0 -#> 1689 NA 0 1 0 1 -#> 1690 100.0 0 0 0 0 -#> 1691 NA 0 0 0 0 -#> 1692 0.0 1 0 0 0 -#> 1693 NA 0 2 0 2 -#> 1694 100.0 0 1 0 1 -#> 1695 NA 0 0 0 0 -#> 1696 NA 0 1 0 1 -#> 1697 100.0 0 2 2 0 -#> 1698 NA 0 2 0 2 -#> 1699 100.0 0 0 0 0 -#> 1700 NA 0 0 0 0 -#> 1701 NA 0 0 0 0 -#> 1702 NA 0 0 0 0 -#> 1703 0.0 1 0 0 0 -#> 1704 NA 0 0 0 0 -#> 1705 NA 0 2 1 1 -#> 1706 100.0 0 0 0 0 -#> 1707 0.0 2 3 0 3 -#> 1708 33.3 2 0 0 0 -#> 1709 NA 0 0 0 0 -#> 1710 0.0 1 2 1 1 -#> 1711 50.0 1 0 0 0 -#> 1712 NA 0 0 0 0 -#> 1713 NA 0 0 0 0 -#> 1714 100.0 0 3 3 0 -#> 1715 NA 0 0 0 0 -#> 1716 NA 0 0 0 0 -#> 1717 0.0 1 0 0 0 -#> 1718 100.0 0 0 0 0 -#> 1719 100.0 0 0 0 0 -#> 1720 0.0 1 0 0 0 -#> 1721 NA 0 0 0 0 -#> 1722 0.0 1 0 0 0 -#> 1723 0.0 1 0 0 0 -#> 1724 0.0 1 1 0 1 -#> 1725 100.0 0 0 0 0 -#> 1726 0.0 2 0 0 0 -#> 1727 100.0 0 1 0 1 -#> 1728 NA 0 0 0 0 -#> 1729 100.0 0 1 1 0 -#> 1730 100.0 0 1 1 0 -#> 1731 NA 0 1 1 0 -#> 1732 NA 0 0 0 0 -#> 1733 0.0 1 0 0 0 -#> 1734 66.7 1 1 0 1 -#> 1735 0.0 1 0 0 0 -#> 1736 0.0 1 1 1 0 -#> 1737 33.3 2 0 0 0 -#> 1738 100.0 0 2 0 2 -#> 1739 NA 0 0 0 0 -#> 1740 0.0 2 0 0 0 -#> 1741 25.0 3 1 1 0 -#> 1742 NA 0 0 0 0 -#> 1743 NA 0 1 0 1 -#> 1744 0.0 1 1 0 1 -#> 1745 33.3 2 1 0 1 -#> 1746 NA 0 0 0 0 -#> 1747 0.0 1 0 0 0 -#> 1748 NA 0 0 0 0 -#> 1749 NA 0 0 0 0 -#> 1750 0.0 1 0 0 0 -#> 1751 0.0 1 0 0 0 -#> 1752 0.0 1 0 0 0 -#> 1753 NA 0 0 0 0 -#> 1754 NA 0 0 0 0 -#> 1755 0.0 1 2 0 2 -#> 1756 100.0 0 2 0 2 -#> 1757 0.0 1 2 0 2 -#> 1758 0.0 1 5 0 5 -#> 1759 100.0 0 2 0 2 -#> 1760 NA 0 0 0 0 -#> 1761 100.0 0 2 0 2 -#> 1762 80.0 1 0 0 0 -#> 1763 100.0 0 0 0 0 -#> 1764 0.0 1 1 0 1 -#> 1765 NA 0 0 0 0 -#> 1766 0.0 3 2 0 2 -#> 1767 NA 0 0 0 0 -#> 1768 NA 0 0 0 0 -#> 1769 NA 0 2 1 1 -#> 1770 NA 0 0 0 0 -#> 1771 50.0 2 1 0 1 -#> 1772 NA 0 1 0 1 -#> 1773 NA 0 1 0 1 -#> 1774 NA 0 0 0 0 -#> 1775 0.0 1 0 0 0 -#> 1776 100.0 0 1 1 0 -#> 1777 NA 0 0 0 0 -#> 1778 NA 0 2 1 1 -#> 1779 NA 0 0 0 0 -#> 1780 100.0 0 0 0 0 -#> 1781 0.0 1 1 0 1 -#> 1782 NA 0 2 0 2 -#> 1783 0.0 1 0 0 0 -#> 1784 NA 0 1 0 1 -#> 1785 NA 0 0 0 0 -#> 1786 50.0 1 1 0 1 -#> 1787 NA 0 0 0 0 -#> 1788 NA 0 0 0 0 -#> 1789 NA 0 3 2 1 -#> 1790 NA 0 0 0 0 -#> 1791 NA 0 1 1 0 -#> 1792 0.0 1 0 0 0 -#> 1793 NA 0 0 0 0 -#> 1794 NA 0 0 0 0 -#> 1795 NA 0 0 0 0 -#> 1796 100.0 0 2 0 2 -#> 1797 NA 0 0 0 0 -#> 1798 0.0 3 1 1 0 -#> 1799 NA 0 0 0 0 -#> 1800 NA 0 0 0 0 -#> 1801 50.0 1 0 0 0 -#> 1802 100.0 0 2 1 1 -#> 1803 0.0 1 1 1 0 -#> 1804 100.0 0 3 0 3 -#> 1805 0.0 1 0 0 0 -#> 1806 NA 0 1 0 1 -#> 1807 NA 0 0 0 0 -#> 1808 NA 0 0 0 0 -#> 1809 0.0 1 0 0 0 -#> 1810 NA 0 0 0 0 -#> 1811 0.0 2 2 0 2 -#> 1812 0.0 2 1 0 1 -#> 1813 NA 0 0 0 0 -#> 1814 33.3 2 0 0 0 -#> 1815 NA 0 0 0 0 -#> 1816 50.0 1 1 0 1 -#> 1817 100.0 0 1 0 1 -#> 1818 NA 0 1 0 1 -#> 1819 NA 0 0 0 0 -#> 1820 50.0 1 0 0 0 -#> 1821 NA 0 1 1 0 -#> 1822 NA 0 0 0 0 -#> 1823 66.7 1 0 0 0 -#> 1824 NA 0 0 0 0 -#> 1825 NA 0 2 0 2 -#> 1826 0.0 1 1 0 1 -#> 1827 0.0 4 0 0 0 -#> 1828 NA 0 0 0 0 -#> 1829 50.0 1 2 1 1 -#> 1830 100.0 0 0 0 0 -#> 1831 33.3 2 1 0 1 -#> 1832 NA 0 0 0 0 -#> 1833 NA 0 1 1 0 -#> 1834 33.3 2 2 0 2 -#> 1835 NA 0 0 0 0 -#> 1836 0.0 1 0 0 0 -#> 1837 100.0 0 1 1 0 -#> 1838 NA 0 1 1 0 -#> 1839 NA 0 0 0 0 -#> 1840 NA 0 0 0 0 -#> 1841 33.3 2 1 0 1 -#> 1842 NA 0 0 0 0 -#> 1843 NA 0 2 0 2 -#> 1844 NA 0 0 0 0 -#> 1845 NA 0 0 0 0 -#> 1846 75.0 1 0 0 0 -#> 1847 NA 0 0 0 0 -#> 1848 0.0 2 0 0 0 -#> 1849 NA 0 0 0 0 -#> 1850 NA 0 2 1 1 -#> 1851 NA 0 2 1 1 -#> 1852 100.0 0 1 1 0 -#> 1853 NA 0 0 0 0 -#> 1854 100.0 0 0 0 0 -#> 1855 NA 0 0 0 0 -#> 1856 NA 0 1 0 1 -#> 1857 NA 0 0 0 0 -#> 1858 NA 0 1 0 1 -#> 1859 NA 0 0 0 0 -#> 1860 0.0 2 2 2 0 -#> 1861 NA 0 0 0 0 -#> 1862 NA 0 0 0 0 -#> 1863 NA 0 0 0 0 -#> 1864 NA 0 1 1 0 -#> 1865 NA 0 0 0 0 -#> 1866 75.0 1 1 0 1 -#> 1867 66.7 1 1 0 1 -#> 1868 33.3 2 2 1 1 -#> 1869 100.0 0 1 1 0 -#> 1870 100.0 0 1 0 1 -#> 1871 NA 0 0 0 0 -#> 1872 100.0 0 1 0 1 -#> 1873 0.0 1 0 0 0 -#> 1874 NA 0 2 0 2 -#> 1875 0.0 1 0 0 0 -#> 1876 NA 0 1 0 1 -#> 1877 20.0 4 2 0 2 -#> 1878 0.0 1 0 0 0 -#> 1879 0.0 1 4 1 3 -#> 1880 NA 0 0 0 0 -#> 1881 33.3 2 2 0 2 -#> 1882 NA 0 0 0 0 -#> 1883 100.0 0 3 0 3 -#> 1884 NA 0 0 0 0 -#> 1885 NA 0 2 2 0 -#> 1886 100.0 0 1 0 1 -#> 1887 NA 0 0 0 0 -#> 1888 NA 0 1 1 0 -#> 1889 NA 0 0 0 0 -#> 1890 66.7 1 2 1 1 -#> 1891 NA 0 2 0 2 -#> 1892 NA 0 0 0 0 -#> 1893 0.0 1 2 1 1 -#> 1894 100.0 0 0 0 0 -#> 1895 100.0 0 3 0 3 -#> 1896 NA 0 0 0 0 -#> 1897 100.0 0 1 0 1 -#> 1898 50.0 1 1 1 0 -#> 1899 100.0 0 0 0 0 -#> 1900 NA 0 1 1 0 -#> 1901 NA 0 0 0 0 -#> 1902 NA 0 1 0 1 -#> 1903 NA 0 1 0 1 -#> 1904 0.0 2 2 2 0 -#> 1905 NA 0 0 0 0 -#> 1906 NA 0 0 0 0 -#> 1907 0.0 1 1 0 1 -#> 1908 NA 0 1 0 1 -#> 1909 0.0 3 1 0 1 -#> 1910 40.0 3 1 0 1 -#> 1911 NA 0 1 1 0 -#> 1912 66.7 1 2 1 1 -#> 1913 100.0 0 0 0 0 -#> 1914 100.0 0 0 0 0 -#> 1915 NA 0 2 0 2 -#> 1916 NA 0 0 0 0 -#> 1917 100.0 0 0 0 0 -#> 1918 NA 0 2 0 2 -#> 1919 NA 0 0 0 0 -#> 1920 NA 0 0 0 0 -#> 1921 NA 0 0 0 0 -#> 1922 NA 0 1 1 0 -#> 1923 50.0 1 1 0 1 -#> 1924 0.0 1 0 0 0 -#> 1925 100.0 0 0 0 0 -#> 1926 0.0 2 2 1 1 -#> 1927 NA 0 0 0 0 -#> 1928 NA 0 0 0 0 -#> 1929 NA 0 1 1 0 -#> 1930 NA 0 1 1 0 -#> 1931 80.0 1 0 0 0 -#> 1932 NA 0 0 0 0 -#> 1933 0.0 1 0 0 0 -#> 1934 NA 0 1 0 1 -#> 1935 20.0 4 0 0 0 -#> 1936 0.0 1 0 0 0 -#> 1937 NA 0 0 0 0 -#> 1938 0.0 1 0 0 0 -#> 1939 33.3 2 0 0 0 -#> 1940 0.0 2 3 3 0 -#> 1941 NA 0 2 0 2 -#> 1942 NA 0 1 0 1 -#> 1943 NA 0 0 0 0 -#> 1944 NA 0 1 1 0 -#> 1945 NA 0 1 1 0 -#> 1946 NA 0 0 0 0 -#> 1947 100.0 0 1 0 1 -#> 1948 100.0 0 0 0 0 -#> 1949 NA 0 0 0 0 -#> 1950 NA 0 1 1 0 -#> 1951 0.0 1 1 0 1 -#> 1952 NA 0 0 0 0 -#> 1953 NA 0 1 0 1 -#> 1954 NA 0 0 0 0 -#> 1955 NA 0 0 0 0 -#> 1956 NA 0 0 0 0 -#> 1957 NA 0 2 0 2 -#> 1958 NA 0 0 0 0 -#> 1959 0.0 1 0 0 0 -#> 1960 50.0 1 2 2 0 -#> 1961 100.0 0 0 0 0 -#> 1962 NA 0 1 0 1 -#> 1963 NA 0 0 0 0 -#> 1964 NA 0 0 0 0 -#> 1965 NA 0 0 0 0 -#> 1966 33.3 2 0 0 0 -#> 1967 0.0 2 0 0 0 -#> 1968 NA 0 0 0 0 -#> 1969 100.0 0 0 0 0 -#> 1970 NA 0 0 0 0 -#> 1971 NA 0 0 0 0 -#> 1972 100.0 0 0 0 0 -#> 1973 100.0 0 1 1 0 -#> 1974 NA 0 1 0 1 -#> 1975 NA 0 0 0 0 -#> 1976 NA 0 1 0 1 -#> 1977 50.0 1 2 1 1 -#> 1978 NA 0 0 0 0 -#> 1979 100.0 0 0 0 0 -#> 1980 100.0 0 1 0 1 -#> 1981 0.0 2 0 0 0 -#> 1982 NA 0 0 0 0 -#> 1983 NA 0 0 0 0 -#> 1984 0.0 1 1 1 0 -#> 1985 NA 0 1 0 1 -#> 1986 0.0 1 2 1 1 -#> 1987 0.0 1 0 0 0 -#> 1988 NA 0 0 0 0 -#> 1989 NA 0 1 1 0 -#> 1990 100.0 0 0 0 0 -#> 1991 NA 0 0 0 0 -#> 1992 33.3 2 2 0 2 -#> 1993 NA 0 0 0 0 -#> 1994 NA 0 0 0 0 -#> 1995 NA 0 1 0 1 -#> 1996 0.0 1 0 0 0 -#> 1997 0.0 1 0 0 0 -#> 1998 NA 0 0 0 0 -#> 1999 NA 0 0 0 0 -#> 2000 50.0 1 1 0 1 -#> 2001 NA 0 1 0 1 -#> 2002 NA 0 1 0 1 -#> 2003 NA 0 0 0 0 -#> 2004 100.0 0 0 0 0 -#> 2005 0.0 1 0 0 0 -#> 2006 NA 0 1 0 1 -#> 2007 75.0 1 2 1 1 -#> 2008 NA 0 0 0 0 -#> 2009 NA 0 0 0 0 -#> 2010 NA 0 1 1 0 -#> 2011 NA 0 0 0 0 -#> 2012 NA 0 0 0 0 -#> 2013 NA 0 1 0 1 -#> 2014 NA 0 0 0 0 -#> 2015 NA 0 1 0 1 -#> 2016 NA 0 0 0 0 -#> 2017 NA NA NA NA NA -#> 2018 0.0 1 1 0 1 -#> 2019 100.0 0 0 0 0 -#> 2020 50.0 1 1 0 1 -#> 2021 100.0 0 2 0 2 -#> 2022 100.0 0 0 0 0 -#> 2023 0.0 1 0 0 0 -#> 2024 100.0 0 3 1 2 -#> 2025 NA 0 0 0 0 -#> 2026 100.0 0 0 0 0 -#> 2027 NA 0 1 0 1 -#> 2028 0.0 1 2 1 1 -#> 2029 NA 0 1 0 1 -#> 2030 50.0 1 0 0 0 -#> 2031 100.0 0 0 0 0 -#> 2032 0.0 1 1 1 0 -#> 2033 0.0 1 3 0 3 -#> 2034 0.0 3 1 0 1 -#> 2035 0.0 1 2 0 2 -#> 2036 0.0 3 1 0 1 -#> 2037 0.0 1 0 0 0 -#> 2038 NA 0 1 0 1 -#> 2039 100.0 0 2 0 2 -#> 2040 100.0 0 0 0 0 -#> Int Tkl+Int Clr Err Competition_Name Gender Country Tier Season_End_Year -#> 1 1 2 0 0 La Liga M ESP 1st 2023 -#> 2 0 0 0 0 La Liga M ESP 1st 2023 -#> 3 0 0 0 0 La Liga M ESP 1st 2023 -#> 4 0 0 1 0 La Liga M ESP 1st 2023 -#> 5 2 2 0 0 La Liga M ESP 1st 2023 -#> 6 0 2 1 0 La Liga M ESP 1st 2023 -#> 7 0 2 1 0 La Liga M ESP 1st 2023 -#> 8 0 1 0 0 La Liga M ESP 1st 2023 -#> 9 0 1 0 0 La Liga M ESP 1st 2023 -#> 10 0 1 3 0 La Liga M ESP 1st 2023 -#> 11 2 4 2 0 La Liga M ESP 1st 2023 -#> 12 0 0 4 0 La Liga M ESP 1st 2023 -#> 13 0 1 2 0 La Liga M ESP 1st 2023 -#> 14 0 0 2 0 La Liga M ESP 1st 2023 -#> 15 0 0 2 0 La Liga M ESP 1st 2023 -#> 16 0 0 1 0 La Liga M ESP 1st 2023 -#> 17 0 0 2 0 La Liga M ESP 1st 2023 -#> 18 0 1 1 0 La Liga M ESP 1st 2023 -#> 19 1 3 1 0 La Liga M ESP 1st 2023 -#> 20 0 0 0 0 La Liga M ESP 1st 2023 -#> 21 0 1 0 0 La Liga M ESP 1st 2023 -#> 22 1 1 0 0 La Liga M ESP 1st 2023 -#> 23 1 2 0 0 La Liga M ESP 1st 2023 -#> 24 0 0 0 0 La Liga M ESP 1st 2023 -#> 25 1 3 2 0 La Liga M ESP 1st 2023 -#> 26 0 0 0 0 La Liga M ESP 1st 2023 -#> 27 2 3 2 0 La Liga M ESP 1st 2023 -#> 28 0 3 0 0 La Liga M ESP 1st 2023 -#> 29 0 0 1 0 La Liga M ESP 1st 2023 -#> 30 0 1 11 0 La Liga M ESP 1st 2023 -#> 31 0 0 2 0 La Liga M ESP 1st 2023 -#> 32 0 0 1 0 La Liga M ESP 1st 2023 -#> 33 0 2 2 0 La Liga M ESP 1st 2023 -#> 34 0 1 0 0 La Liga M ESP 1st 2023 -#> 35 0 0 0 0 La Liga M ESP 1st 2023 -#> 36 2 5 2 0 La Liga M ESP 1st 2023 -#> 37 0 0 0 0 La Liga M ESP 1st 2023 -#> 38 1 3 2 0 La Liga M ESP 1st 2023 -#> 39 0 0 0 0 La Liga M ESP 1st 2023 -#> 40 0 0 0 0 La Liga M ESP 1st 2023 -#> 41 2 3 1 0 La Liga M ESP 1st 2023 -#> 42 1 3 0 0 La Liga M ESP 1st 2023 -#> 43 0 3 2 0 La Liga M ESP 1st 2023 -#> 44 2 3 6 0 La Liga M ESP 1st 2023 -#> 45 0 0 5 0 La Liga M ESP 1st 2023 -#> 46 1 5 3 0 La Liga M ESP 1st 2023 -#> 47 0 0 0 0 La Liga M ESP 1st 2023 -#> 48 1 1 0 0 La Liga M ESP 1st 2023 -#> 49 0 0 0 0 La Liga M ESP 1st 2023 -#> 50 0 1 0 0 La Liga M ESP 1st 2023 -#> 51 2 5 2 0 La Liga M ESP 1st 2023 -#> 52 0 0 0 0 La Liga M ESP 1st 2023 -#> 53 3 3 0 0 La Liga M ESP 1st 2023 -#> 54 1 3 0 0 La Liga M ESP 1st 2023 -#> 55 2 3 1 0 La Liga M ESP 1st 2023 -#> 56 3 6 1 0 La Liga M ESP 1st 2023 -#> 57 0 0 0 0 La Liga M ESP 1st 2023 -#> 58 3 7 3 0 La Liga M ESP 1st 2023 -#> 59 5 6 7 0 La Liga M ESP 1st 2023 -#> 60 2 3 3 0 La Liga M ESP 1st 2023 -#> 61 0 2 0 0 La Liga M ESP 1st 2023 -#> 62 0 0 1 0 La Liga M ESP 1st 2023 -#> 63 0 0 0 0 La Liga M ESP 1st 2023 -#> 64 0 0 0 0 La Liga M ESP 1st 2023 -#> 65 0 2 0 0 La Liga M ESP 1st 2023 -#> 66 0 1 1 0 La Liga M ESP 1st 2023 -#> 67 2 2 1 0 La Liga M ESP 1st 2023 -#> 68 0 1 0 0 La Liga M ESP 1st 2023 -#> 69 2 2 0 0 La Liga M ESP 1st 2023 -#> 70 2 3 0 0 La Liga M ESP 1st 2023 -#> 71 0 0 0 0 La Liga M ESP 1st 2023 -#> 72 4 8 2 0 La Liga M ESP 1st 2023 -#> 73 0 2 2 0 La Liga M ESP 1st 2023 -#> 74 0 1 0 0 La Liga M ESP 1st 2023 -#> 75 6 7 5 0 La Liga M ESP 1st 2023 -#> 76 0 1 3 0 La Liga M ESP 1st 2023 -#> 77 3 5 2 0 La Liga M ESP 1st 2023 -#> 78 0 0 2 0 La Liga M ESP 1st 2023 -#> 79 0 0 0 0 La Liga M ESP 1st 2023 -#> 80 0 0 0 0 La Liga M ESP 1st 2023 -#> 81 0 0 0 0 La Liga M ESP 1st 2023 -#> 82 0 3 1 0 La Liga M ESP 1st 2023 -#> 83 1 1 1 0 La Liga M ESP 1st 2023 -#> 84 1 6 0 0 La Liga M ESP 1st 2023 -#> 85 1 3 1 0 La Liga M ESP 1st 2023 -#> 86 1 4 0 0 La Liga M ESP 1st 2023 -#> 87 1 1 1 0 La Liga M ESP 1st 2023 -#> 88 2 3 0 0 La Liga M ESP 1st 2023 -#> 89 0 1 3 0 La Liga M ESP 1st 2023 -#> 90 0 0 5 0 La Liga M ESP 1st 2023 -#> 91 0 3 4 0 La Liga M ESP 1st 2023 -#> 92 0 0 0 0 La Liga M ESP 1st 2023 -#> 93 0 0 0 0 La Liga M ESP 1st 2023 -#> 94 0 2 1 0 La Liga M ESP 1st 2023 -#> 95 0 0 0 0 La Liga M ESP 1st 2023 -#> 96 0 2 0 0 La Liga M ESP 1st 2023 -#> 97 0 0 0 0 La Liga M ESP 1st 2023 -#> 98 1 1 0 0 La Liga M ESP 1st 2023 -#> 99 0 0 1 0 La Liga M ESP 1st 2023 -#> 100 1 2 1 0 La Liga M ESP 1st 2023 -#> 101 0 1 0 0 La Liga M ESP 1st 2023 -#> 102 0 1 0 0 La Liga M ESP 1st 2023 -#> 103 0 1 1 0 La Liga M ESP 1st 2023 -#> 104 0 0 0 0 La Liga M ESP 1st 2023 -#> 105 2 5 1 0 La Liga M ESP 1st 2023 -#> 106 0 3 0 0 La Liga M ESP 1st 2023 -#> 107 0 0 2 0 La Liga M ESP 1st 2023 -#> 108 0 2 0 0 La Liga M ESP 1st 2023 -#> 109 0 0 0 0 La Liga M ESP 1st 2023 -#> 110 0 1 1 0 La Liga M ESP 1st 2023 -#> 111 0 0 0 0 La Liga M ESP 1st 2023 -#> 112 2 2 1 0 La Liga M ESP 1st 2023 -#> 113 0 4 1 0 La Liga M ESP 1st 2023 -#> 114 0 0 0 0 La Liga M ESP 1st 2023 -#> 115 1 2 0 0 La Liga M ESP 1st 2023 -#> 116 0 1 0 0 La Liga M ESP 1st 2023 -#> 117 1 7 3 0 La Liga M ESP 1st 2023 -#> 118 1 1 1 0 La Liga M ESP 1st 2023 -#> 119 1 3 1 0 La Liga M ESP 1st 2023 -#> 120 3 5 0 0 La Liga M ESP 1st 2023 -#> 121 0 0 3 0 La Liga M ESP 1st 2023 -#> 122 1 2 4 0 La Liga M ESP 1st 2023 -#> 123 0 0 2 0 La Liga M ESP 1st 2023 -#> 124 0 0 1 0 La Liga M ESP 1st 2023 -#> 125 0 0 1 0 La Liga M ESP 1st 2023 -#> 126 0 0 0 0 La Liga M ESP 1st 2023 -#> 127 0 0 0 0 La Liga M ESP 1st 2023 -#> 128 0 0 1 0 La Liga M ESP 1st 2023 -#> 129 0 2 1 0 La Liga M ESP 1st 2023 -#> 130 2 3 0 0 La Liga M ESP 1st 2023 -#> 131 1 2 0 0 La Liga M ESP 1st 2023 -#> 132 0 4 3 0 La Liga M ESP 1st 2023 -#> 133 0 2 0 0 La Liga M ESP 1st 2023 -#> 134 0 1 0 0 La Liga M ESP 1st 2023 -#> 135 0 3 1 0 La Liga M ESP 1st 2023 -#> 136 2 5 5 0 La Liga M ESP 1st 2023 -#> 137 1 2 2 0 La Liga M ESP 1st 2023 -#> 138 2 3 4 0 La Liga M ESP 1st 2023 -#> 139 0 1 0 0 La Liga M ESP 1st 2023 -#> 140 0 0 2 0 La Liga M ESP 1st 2023 -#> 141 0 1 1 0 La Liga M ESP 1st 2023 -#> 142 0 2 1 0 La Liga M ESP 1st 2023 -#> 143 0 1 1 0 La Liga M ESP 1st 2023 -#> 144 0 0 0 0 La Liga M ESP 1st 2023 -#> 145 2 5 2 0 La Liga M ESP 1st 2023 -#> 146 0 3 0 0 La Liga M ESP 1st 2023 -#> 147 1 2 6 0 La Liga M ESP 1st 2023 -#> 148 0 0 0 0 La Liga M ESP 1st 2023 -#> 149 0 4 1 0 La Liga M ESP 1st 2023 -#> 150 1 2 2 0 La Liga M ESP 1st 2023 -#> 151 1 4 3 0 La Liga M ESP 1st 2023 -#> 152 0 0 1 0 La Liga M ESP 1st 2023 -#> 153 1 2 6 0 La Liga M ESP 1st 2023 -#> 154 0 3 1 0 La Liga M ESP 1st 2023 -#> 155 2 4 2 0 La Liga M ESP 1st 2023 -#> 156 0 0 0 0 La Liga M ESP 1st 2023 -#> 157 0 2 0 0 La Liga M ESP 1st 2023 -#> 158 1 2 3 0 La Liga M ESP 1st 2023 -#> 159 0 3 0 0 La Liga M ESP 1st 2023 -#> 160 0 0 0 0 La Liga M ESP 1st 2023 -#> 161 0 1 0 0 La Liga M ESP 1st 2023 -#> 162 0 0 1 0 La Liga M ESP 1st 2023 -#> 163 0 0 0 0 La Liga M ESP 1st 2023 -#> 164 0 0 0 0 La Liga M ESP 1st 2023 -#> 165 1 NA NA NA La Liga M ESP 1st 2023 -#> 166 1 3 0 0 La Liga M ESP 1st 2023 -#> 167 0 0 2 0 La Liga M ESP 1st 2023 -#> 168 0 1 3 0 La Liga M ESP 1st 2023 -#> 169 2 2 3 0 La Liga M ESP 1st 2023 -#> 170 0 2 2 0 La Liga M ESP 1st 2023 -#> 171 2 3 2 0 La Liga M ESP 1st 2023 -#> 172 0 0 0 0 La Liga M ESP 1st 2023 -#> 173 1 2 0 0 La Liga M ESP 1st 2023 -#> 174 0 0 0 0 La Liga M ESP 1st 2023 -#> 175 0 0 0 0 La Liga M ESP 1st 2023 -#> 176 1 2 0 0 La Liga M ESP 1st 2023 -#> 177 0 2 0 0 La Liga M ESP 1st 2023 -#> 178 1 1 0 0 La Liga M ESP 1st 2023 -#> 179 0 1 0 0 La Liga M ESP 1st 2023 -#> 180 1 2 0 0 La Liga M ESP 1st 2023 -#> 181 0 0 1 0 La Liga M ESP 1st 2023 -#> 182 0 1 0 0 La Liga M ESP 1st 2023 -#> 183 0 0 0 0 La Liga M ESP 1st 2023 -#> 184 0 2 3 0 La Liga M ESP 1st 2023 -#> 185 0 0 2 0 La Liga M ESP 1st 2023 -#> 186 0 0 0 0 La Liga M ESP 1st 2023 -#> 187 1 5 3 0 La Liga M ESP 1st 2023 -#> 188 0 0 1 0 La Liga M ESP 1st 2023 -#> 189 0 0 3 0 La Liga M ESP 1st 2023 -#> 190 0 0 0 0 La Liga M ESP 1st 2023 -#> 191 1 1 0 0 La Liga M ESP 1st 2023 -#> 192 0 0 0 0 La Liga M ESP 1st 2023 -#> 193 1 2 2 0 La Liga M ESP 1st 2023 -#> 194 0 1 3 0 La Liga M ESP 1st 2023 -#> 195 0 0 0 0 La Liga M ESP 1st 2023 -#> 196 1 2 2 0 La Liga M ESP 1st 2023 -#> 197 0 2 0 0 La Liga M ESP 1st 2023 -#> 198 0 0 2 0 La Liga M ESP 1st 2023 -#> 199 0 0 1 0 La Liga M ESP 1st 2023 -#> 200 3 4 9 0 La Liga M ESP 1st 2023 -#> 201 0 2 5 0 La Liga M ESP 1st 2023 -#> 202 0 0 0 0 La Liga M ESP 1st 2023 -#> 203 3 6 4 0 La Liga M ESP 1st 2023 -#> 204 0 0 1 0 La Liga M ESP 1st 2023 -#> 205 0 0 0 0 La Liga M ESP 1st 2023 -#> 206 0 1 0 0 La Liga M ESP 1st 2023 -#> 207 1 1 0 0 La Liga M ESP 1st 2023 -#> 208 0 0 0 0 La Liga M ESP 1st 2023 -#> 209 1 2 0 0 La Liga M ESP 1st 2023 -#> 210 0 0 1 0 La Liga M ESP 1st 2023 -#> 211 1 3 0 0 La Liga M ESP 1st 2023 -#> 212 0 0 0 0 La Liga M ESP 1st 2023 -#> 213 0 2 0 0 La Liga M ESP 1st 2023 -#> 214 1 1 0 0 La Liga M ESP 1st 2023 -#> 215 0 2 0 0 La Liga M ESP 1st 2023 -#> 216 0 0 0 0 La Liga M ESP 1st 2023 -#> 217 2 2 0 0 La Liga M ESP 1st 2023 -#> 218 1 1 2 0 La Liga M ESP 1st 2023 -#> 219 1 2 0 0 La Liga M ESP 1st 2023 -#> 220 0 0 0 0 La Liga M ESP 1st 2023 -#> 221 0 0 1 0 La Liga M ESP 1st 2023 -#> 222 0 0 0 0 La Liga M ESP 1st 2023 -#> 223 0 0 0 0 La Liga M ESP 1st 2023 -#> 224 0 0 0 0 La Liga M ESP 1st 2023 -#> 225 0 1 2 0 La Liga M ESP 1st 2023 -#> 226 0 0 0 0 La Liga M ESP 1st 2023 -#> 227 0 1 0 0 La Liga M ESP 1st 2023 -#> 228 0 0 0 0 La Liga M ESP 1st 2023 -#> 229 1 5 1 1 La Liga M ESP 1st 2023 -#> 230 0 1 0 0 La Liga M ESP 1st 2023 -#> 231 0 0 0 0 La Liga M ESP 1st 2023 -#> 232 0 0 3 0 La Liga M ESP 1st 2023 -#> 233 1 3 5 0 La Liga M ESP 1st 2023 -#> 234 1 2 3 0 La Liga M ESP 1st 2023 -#> 235 1 1 0 0 La Liga M ESP 1st 2023 -#> 236 0 0 0 0 La Liga M ESP 1st 2023 -#> 237 0 1 4 0 La Liga M ESP 1st 2023 -#> 238 0 0 0 0 La Liga M ESP 1st 2023 -#> 239 2 5 0 0 La Liga M ESP 1st 2023 -#> 240 0 1 0 0 La Liga M ESP 1st 2023 -#> 241 0 2 1 0 La Liga M ESP 1st 2023 -#> 242 2 3 0 0 La Liga M ESP 1st 2023 -#> 243 0 0 1 0 La Liga M ESP 1st 2023 -#> 244 1 4 0 0 La Liga M ESP 1st 2023 -#> 245 0 0 0 0 La Liga M ESP 1st 2023 -#> 246 0 1 2 0 La Liga M ESP 1st 2023 -#> 247 3 5 7 0 La Liga M ESP 1st 2023 -#> 248 1 2 7 0 La Liga M ESP 1st 2023 -#> 249 2 6 0 0 La Liga M ESP 1st 2023 -#> 250 0 0 5 0 La Liga M ESP 1st 2023 -#> 251 0 0 1 0 La Liga M ESP 1st 2023 -#> 252 0 0 1 0 La Liga M ESP 1st 2023 -#> 253 0 0 0 0 La Liga M ESP 1st 2023 -#> 254 0 0 0 0 La Liga M ESP 1st 2023 -#> 255 0 1 0 0 La Liga M ESP 1st 2023 -#> 256 1 3 0 0 La Liga M ESP 1st 2023 -#> 257 0 0 1 0 La Liga M ESP 1st 2023 -#> 258 2 4 1 0 La Liga M ESP 1st 2023 -#> 259 0 1 0 0 La Liga M ESP 1st 2023 -#> 260 0 1 0 0 La Liga M ESP 1st 2023 -#> 261 1 2 1 0 La Liga M ESP 1st 2023 -#> 262 2 3 10 0 La Liga M ESP 1st 2023 -#> 263 1 1 2 1 La Liga M ESP 1st 2023 -#> 264 2 2 2 1 La Liga M ESP 1st 2023 -#> 265 0 2 3 0 La Liga M ESP 1st 2023 -#> 266 0 0 0 0 La Liga M ESP 1st 2023 -#> 267 1 1 1 0 La Liga M ESP 1st 2023 -#> 268 0 0 0 0 La Liga M ESP 1st 2023 -#> 269 0 0 1 0 La Liga M ESP 1st 2023 -#> 270 0 0 0 0 La Liga M ESP 1st 2023 -#> 271 0 2 1 0 La Liga M ESP 1st 2023 -#> 272 0 1 0 0 La Liga M ESP 1st 2023 -#> 273 0 3 1 0 La Liga M ESP 1st 2023 -#> 274 1 2 0 0 La Liga M ESP 1st 2023 -#> 275 0 0 0 0 La Liga M ESP 1st 2023 -#> 276 1 6 3 0 La Liga M ESP 1st 2023 -#> 277 1 2 0 0 La Liga M ESP 1st 2023 -#> 278 2 5 3 0 La Liga M ESP 1st 2023 -#> 279 0 0 2 0 La Liga M ESP 1st 2023 -#> 280 3 6 4 0 La Liga M ESP 1st 2023 -#> 281 1 2 1 0 La Liga M ESP 1st 2023 -#> 282 0 0 0 0 La Liga M ESP 1st 2023 -#> 283 0 1 0 0 La Liga M ESP 1st 2023 -#> 284 0 2 0 0 La Liga M ESP 1st 2023 -#> 285 0 1 0 0 La Liga M ESP 1st 2023 -#> 286 0 1 0 0 La Liga M ESP 1st 2023 -#> 287 0 0 0 0 La Liga M ESP 1st 2023 -#> 288 0 0 0 0 La Liga M ESP 1st 2023 -#> 289 1 1 0 0 La Liga M ESP 1st 2023 -#> 290 1 4 0 0 La Liga M ESP 1st 2023 -#> 291 1 2 2 0 La Liga M ESP 1st 2023 -#> 292 0 1 1 0 La Liga M ESP 1st 2023 -#> 293 0 0 3 0 La Liga M ESP 1st 2023 -#> 294 2 3 1 0 La Liga M ESP 1st 2023 -#> 295 7 10 0 0 La Liga M ESP 1st 2023 -#> 296 2 4 0 0 La Liga M ESP 1st 2023 -#> 297 0 0 0 0 La Liga M ESP 1st 2023 -#> 298 0 0 1 0 La Liga M ESP 1st 2023 -#> 299 0 0 0 0 La Liga M ESP 1st 2023 -#> 300 0 1 3 0 La Liga M ESP 1st 2023 -#> 301 0 0 0 0 La Liga M ESP 1st 2023 -#> 302 1 1 0 0 La Liga M ESP 1st 2023 -#> 303 3 5 0 0 La Liga M ESP 1st 2023 -#> 304 0 0 1 0 La Liga M ESP 1st 2023 -#> 305 2 4 2 0 La Liga M ESP 1st 2023 -#> 306 0 0 2 0 La Liga M ESP 1st 2023 -#> 307 0 0 0 0 La Liga M ESP 1st 2023 -#> 308 3 5 1 0 La Liga M ESP 1st 2023 -#> 309 2 4 2 0 La Liga M ESP 1st 2023 -#> 310 1 2 4 0 La Liga M ESP 1st 2023 -#> 311 0 2 2 1 La Liga M ESP 1st 2023 -#> 312 1 1 3 0 La Liga M ESP 1st 2023 -#> 313 1 1 0 0 La Liga M ESP 1st 2023 -#> 314 0 0 2 0 La Liga M ESP 1st 2023 -#> 315 0 0 0 0 La Liga M ESP 1st 2023 -#> 316 0 0 0 0 La Liga M ESP 1st 2023 -#> 317 0 1 2 0 La Liga M ESP 1st 2023 -#> 318 3 6 0 0 La Liga M ESP 1st 2023 -#> 319 0 0 0 0 La Liga M ESP 1st 2023 -#> 320 0 1 0 0 La Liga M ESP 1st 2023 -#> 321 4 7 1 0 La Liga M ESP 1st 2023 -#> 322 0 1 1 0 La Liga M ESP 1st 2023 -#> 323 0 0 0 0 La Liga M ESP 1st 2023 -#> 324 0 1 1 0 La Liga M ESP 1st 2023 -#> 325 0 0 0 0 La Liga M ESP 1st 2023 -#> 326 0 1 1 0 La Liga M ESP 1st 2023 -#> 327 0 0 0 0 La Liga M ESP 1st 2023 -#> 328 0 0 2 0 La Liga M ESP 1st 2023 -#> 329 0 0 0 0 La Liga M ESP 1st 2023 -#> 330 0 0 1 0 La Liga M ESP 1st 2023 -#> 331 0 0 0 0 La Liga M ESP 1st 2023 -#> 332 1 1 5 0 La Liga M ESP 1st 2023 -#> 333 0 1 0 0 La Liga M ESP 1st 2023 -#> 334 0 0 3 0 La Liga M ESP 1st 2023 -#> 335 1 1 0 0 La Liga M ESP 1st 2023 -#> 336 0 1 0 0 La Liga M ESP 1st 2023 -#> 337 0 1 1 0 La Liga M ESP 1st 2023 -#> 338 0 1 7 0 La Liga M ESP 1st 2023 -#> 339 0 0 0 0 La Liga M ESP 1st 2023 -#> 340 0 0 0 0 La Liga M ESP 1st 2023 -#> 341 1 2 1 0 La Liga M ESP 1st 2023 -#> 342 0 1 9 0 La Liga M ESP 1st 2023 -#> 343 0 0 0 0 La Liga M ESP 1st 2023 -#> 344 1 2 8 0 La Liga M ESP 1st 2023 -#> 345 0 0 1 0 La Liga M ESP 1st 2023 -#> 346 0 0 0 0 La Liga M ESP 1st 2023 -#> 347 0 0 0 0 La Liga M ESP 1st 2023 -#> 348 1 1 2 0 La Liga M ESP 1st 2023 -#> 349 0 2 0 0 La Liga M ESP 1st 2023 -#> 350 1 5 0 0 La Liga M ESP 1st 2023 -#> 351 1 4 0 0 La Liga M ESP 1st 2023 -#> 352 0 0 0 0 La Liga M ESP 1st 2023 -#> 353 0 3 0 0 La Liga M ESP 1st 2023 -#> 354 0 2 0 0 La Liga M ESP 1st 2023 -#> 355 0 1 0 0 La Liga M ESP 1st 2023 -#> 356 1 3 2 0 La Liga M ESP 1st 2023 -#> 357 0 0 0 0 La Liga M ESP 1st 2023 -#> 358 3 3 1 0 La Liga M ESP 1st 2023 -#> 359 1 2 0 0 La Liga M ESP 1st 2023 -#> 360 1 1 1 0 La Liga M ESP 1st 2023 -#> 361 0 0 0 0 La Liga M ESP 1st 2023 -#> 362 0 2 0 0 La Liga M ESP 1st 2023 -#> 363 0 0 0 0 La Liga M ESP 1st 2023 -#> 364 2 5 2 0 La Liga M ESP 1st 2023 -#> 365 0 1 0 0 La Liga M ESP 1st 2023 -#> 366 0 0 0 0 La Liga M ESP 1st 2023 -#> 367 0 2 0 0 La Liga M ESP 1st 2023 -#> 368 2 3 3 0 La Liga M ESP 1st 2023 -#> 369 0 1 2 0 La Liga M ESP 1st 2023 -#> 370 1 1 2 0 La Liga M ESP 1st 2023 -#> 371 0 3 1 0 La Liga M ESP 1st 2023 -#> 372 0 1 4 0 La Liga M ESP 1st 2023 -#> 373 0 2 3 0 La Liga M ESP 1st 2023 -#> 374 0 1 1 0 La Liga M ESP 1st 2023 -#> 375 3 3 8 0 La Liga M ESP 1st 2023 -#> 376 0 3 1 0 La Liga M ESP 1st 2023 -#> 377 0 0 1 1 La Liga M ESP 1st 2023 -#> 378 1 2 0 0 La Liga M ESP 1st 2023 -#> 379 0 0 0 0 La Liga M ESP 1st 2023 -#> 380 0 0 0 0 La Liga M ESP 1st 2023 -#> 381 0 0 0 0 La Liga M ESP 1st 2023 -#> 382 0 0 1 0 La Liga M ESP 1st 2023 -#> 383 1 4 1 0 La Liga M ESP 1st 2023 -#> 384 0 0 0 0 La Liga M ESP 1st 2023 -#> 385 4 6 0 0 La Liga M ESP 1st 2023 -#> 386 0 0 0 0 La Liga M ESP 1st 2023 -#> 387 0 0 0 0 La Liga M ESP 1st 2023 -#> 388 1 2 2 0 La Liga M ESP 1st 2023 -#> 389 3 5 5 0 La Liga M ESP 1st 2023 -#> 390 2 5 3 0 La Liga M ESP 1st 2023 -#> 391 1 2 2 0 La Liga M ESP 1st 2023 -#> 392 1 1 0 0 La Liga M ESP 1st 2023 -#> 393 0 0 0 0 La Liga M ESP 1st 2023 -#> 394 0 0 3 0 La Liga M ESP 1st 2023 -#> 395 1 1 0 0 La Liga M ESP 1st 2023 -#> 396 0 1 0 0 La Liga M ESP 1st 2023 -#> 397 0 0 1 0 La Liga M ESP 1st 2023 -#> 398 1 2 0 0 La Liga M ESP 1st 2023 -#> 399 0 0 0 0 La Liga M ESP 1st 2023 -#> 400 1 2 5 0 La Liga M ESP 1st 2023 -#> 401 0 3 2 0 La Liga M ESP 1st 2023 -#> 402 0 1 0 0 La Liga M ESP 1st 2023 -#> 403 0 0 1 0 La Liga M ESP 1st 2023 -#> 404 0 5 2 0 La Liga M ESP 1st 2023 -#> 405 0 0 0 0 La Liga M ESP 1st 2023 -#> 406 1 1 8 0 La Liga M ESP 1st 2023 -#> 407 2 3 6 0 La Liga M ESP 1st 2023 -#> 408 1 3 2 0 La Liga M ESP 1st 2023 -#> 409 0 0 0 0 La Liga M ESP 1st 2023 -#> 410 0 2 2 0 La Liga M ESP 1st 2023 -#> 411 0 1 0 0 La Liga M ESP 1st 2023 -#> 412 0 1 0 0 La Liga M ESP 1st 2023 -#> 413 0 0 0 0 La Liga M ESP 1st 2023 -#> 414 2 3 2 0 La Liga M ESP 1st 2023 -#> 415 0 2 1 0 La Liga M ESP 1st 2023 -#> 416 0 3 0 0 La Liga M ESP 1st 2023 -#> 417 2 2 0 0 La Liga M ESP 1st 2023 -#> 418 1 3 1 0 La Liga M ESP 1st 2023 -#> 419 3 5 1 0 La Liga M ESP 1st 2023 -#> 420 0 0 0 0 La Liga M ESP 1st 2023 -#> 421 1 2 1 0 La Liga M ESP 1st 2023 -#> 422 3 5 3 0 La Liga M ESP 1st 2023 -#> 423 2 2 1 0 La Liga M ESP 1st 2023 -#> 424 0 0 0 0 La Liga M ESP 1st 2023 -#> 425 0 0 0 0 La Liga M ESP 1st 2023 -#> 426 1 2 0 0 La Liga M ESP 1st 2023 -#> 427 0 0 1 0 La Liga M ESP 1st 2023 -#> 428 0 0 0 0 La Liga M ESP 1st 2023 -#> 429 0 0 0 0 La Liga M ESP 1st 2023 -#> 430 0 0 0 0 La Liga M ESP 1st 2023 -#> 431 1 1 0 0 La Liga M ESP 1st 2023 -#> 432 0 0 1 0 La Liga M ESP 1st 2023 -#> 433 1 5 2 0 La Liga M ESP 1st 2023 -#> 434 1 5 1 0 La Liga M ESP 1st 2023 -#> 435 0 0 5 0 La Liga M ESP 1st 2023 -#> 436 3 3 6 0 La Liga M ESP 1st 2023 -#> 437 1 2 4 0 La Liga M ESP 1st 2023 -#> 438 0 0 0 0 La Liga M ESP 1st 2023 -#> 439 0 0 0 0 La Liga M ESP 1st 2023 -#> 440 0 0 0 0 La Liga M ESP 1st 2023 -#> 441 1 1 1 0 La Liga M ESP 1st 2023 -#> 442 0 1 1 0 La Liga M ESP 1st 2023 -#> 443 0 0 0 0 La Liga M ESP 1st 2023 -#> 444 2 3 1 0 La Liga M ESP 1st 2023 -#> 445 1 4 0 0 La Liga M ESP 1st 2023 -#> 446 1 1 2 0 La Liga M ESP 1st 2023 -#> 447 0 0 0 0 La Liga M ESP 1st 2023 -#> 448 1 3 0 0 La Liga M ESP 1st 2023 -#> 449 1 2 3 0 La Liga M ESP 1st 2023 -#> 450 0 3 2 0 La Liga M ESP 1st 2023 -#> 451 0 2 1 0 La Liga M ESP 1st 2023 -#> 452 0 0 0 0 La Liga M ESP 1st 2023 -#> 453 0 1 0 0 La Liga M ESP 1st 2023 -#> 454 2 5 0 0 La Liga M ESP 1st 2023 -#> 455 0 0 0 0 La Liga M ESP 1st 2023 -#> 456 0 2 0 0 La Liga M ESP 1st 2023 -#> 457 2 3 1 0 La Liga M ESP 1st 2023 -#> 458 0 1 0 0 La Liga M ESP 1st 2023 -#> 459 3 5 4 0 La Liga M ESP 1st 2023 -#> 460 0 1 0 0 La Liga M ESP 1st 2023 -#> 461 2 2 0 0 La Liga M ESP 1st 2023 -#> 462 3 4 2 0 La Liga M ESP 1st 2023 -#> 463 0 0 4 0 La Liga M ESP 1st 2023 -#> 464 0 0 1 0 La Liga M ESP 1st 2023 -#> 465 2 3 2 0 La Liga M ESP 1st 2023 -#> 466 1 2 2 0 La Liga M ESP 1st 2023 -#> 467 0 0 3 0 La Liga M ESP 1st 2023 -#> 468 0 0 1 0 La Liga M ESP 1st 2023 -#> 469 0 2 1 0 La Liga M ESP 1st 2023 -#> 470 0 0 0 0 La Liga M ESP 1st 2023 -#> 471 0 1 1 0 La Liga M ESP 1st 2023 -#> 472 0 0 0 0 La Liga M ESP 1st 2023 -#> 473 1 1 0 0 La Liga M ESP 1st 2023 -#> 474 0 0 0 0 La Liga M ESP 1st 2023 -#> 475 0 0 0 0 La Liga M ESP 1st 2023 -#> 476 0 0 1 0 La Liga M ESP 1st 2023 -#> 477 2 6 0 0 La Liga M ESP 1st 2023 -#> 478 0 0 1 0 La Liga M ESP 1st 2023 -#> 479 0 0 0 0 La Liga M ESP 1st 2023 -#> 480 1 4 4 0 La Liga M ESP 1st 2023 -#> 481 3 4 10 0 La Liga M ESP 1st 2023 -#> 482 1 4 5 0 La Liga M ESP 1st 2023 -#> 483 2 5 0 0 La Liga M ESP 1st 2023 -#> 484 0 0 0 0 La Liga M ESP 1st 2023 -#> 485 0 0 0 0 La Liga M ESP 1st 2023 -#> 486 0 0 2 0 La Liga M ESP 1st 2023 -#> 487 0 1 0 0 La Liga M ESP 1st 2023 -#> 488 0 0 0 0 La Liga M ESP 1st 2023 -#> 489 0 2 1 0 La Liga M ESP 1st 2023 -#> 490 1 NA NA NA La Liga M ESP 1st 2023 -#> 491 0 0 0 0 La Liga M ESP 1st 2023 -#> 492 1 3 3 0 La Liga M ESP 1st 2023 -#> 493 0 0 0 0 La Liga M ESP 1st 2023 -#> 494 0 2 1 0 La Liga M ESP 1st 2023 -#> 495 1 2 0 0 La Liga M ESP 1st 2023 -#> 496 0 3 2 0 La Liga M ESP 1st 2023 -#> 497 2 3 2 0 La Liga M ESP 1st 2023 -#> 498 2 4 3 0 La Liga M ESP 1st 2023 -#> 499 0 1 0 0 La Liga M ESP 1st 2023 -#> 500 0 0 1 0 La Liga M ESP 1st 2023 -#> 501 0 2 0 0 La Liga M ESP 1st 2023 -#> 502 0 0 0 0 La Liga M ESP 1st 2023 -#> 503 0 1 0 0 La Liga M ESP 1st 2023 -#> 504 0 0 0 0 La Liga M ESP 1st 2023 -#> 505 0 3 1 0 La Liga M ESP 1st 2023 -#> 506 0 1 3 1 La Liga M ESP 1st 2023 -#> 507 0 1 0 0 La Liga M ESP 1st 2023 -#> 508 0 0 0 0 La Liga M ESP 1st 2023 -#> 509 0 2 1 0 La Liga M ESP 1st 2023 -#> 510 1 1 0 0 La Liga M ESP 1st 2023 -#> 511 0 3 2 0 La Liga M ESP 1st 2023 -#> 512 0 2 0 0 La Liga M ESP 1st 2023 -#> 513 0 2 1 0 La Liga M ESP 1st 2023 -#> 514 0 1 2 0 La Liga M ESP 1st 2023 -#> 515 1 1 0 0 La Liga M ESP 1st 2023 -#> 516 0 0 1 0 La Liga M ESP 1st 2023 -#> 517 0 0 0 0 La Liga M ESP 1st 2023 -#> 518 0 0 0 0 La Liga M ESP 1st 2023 -#> 519 1 1 2 0 La Liga M ESP 1st 2023 -#> 520 0 0 0 0 La Liga M ESP 1st 2023 -#> 521 1 2 0 0 La Liga M ESP 1st 2023 -#> 522 4 4 2 0 La Liga M ESP 1st 2023 -#> 523 0 0 0 0 La Liga M ESP 1st 2023 -#> 524 0 0 1 0 La Liga M ESP 1st 2023 -#> 525 1 2 0 0 La Liga M ESP 1st 2023 -#> 526 0 0 3 0 La Liga M ESP 1st 2023 -#> 527 1 1 3 0 La Liga M ESP 1st 2023 -#> 528 0 0 6 0 La Liga M ESP 1st 2023 -#> 529 2 3 9 0 La Liga M ESP 1st 2023 -#> 530 2 5 6 0 La Liga M ESP 1st 2023 -#> 531 0 0 0 0 La Liga M ESP 1st 2023 -#> 532 0 4 0 0 La Liga M ESP 1st 2023 -#> 533 0 0 0 0 La Liga M ESP 1st 2023 -#> 534 0 0 1 0 La Liga M ESP 1st 2023 -#> 535 0 0 0 0 La Liga M ESP 1st 2023 -#> 536 0 2 1 0 La Liga M ESP 1st 2023 -#> 537 0 2 0 0 La Liga M ESP 1st 2023 -#> 538 1 6 0 0 La Liga M ESP 1st 2023 -#> 539 0 0 0 0 La Liga M ESP 1st 2023 -#> 540 0 0 0 0 La Liga M ESP 1st 2023 -#> 541 1 6 1 1 La Liga M ESP 1st 2023 -#> 542 0 3 0 0 La Liga M ESP 1st 2023 -#> 543 1 2 4 0 La Liga M ESP 1st 2023 -#> 544 1 2 3 0 La Liga M ESP 1st 2023 -#> 545 1 2 1 1 La Liga M ESP 1st 2023 -#> 546 0 1 0 0 La Liga M ESP 1st 2023 -#> 547 0 0 1 0 La Liga M ESP 1st 2023 -#> 548 0 1 0 0 La Liga M ESP 1st 2023 -#> 549 1 1 0 0 La Liga M ESP 1st 2023 -#> 550 1 2 0 0 La Liga M ESP 1st 2023 -#> 551 0 2 0 0 La Liga M ESP 1st 2023 -#> 552 0 1 2 0 La Liga M ESP 1st 2023 -#> 553 0 0 0 0 La Liga M ESP 1st 2023 -#> 554 1 1 0 0 La Liga M ESP 1st 2023 -#> 555 3 6 2 0 La Liga M ESP 1st 2023 -#> 556 2 3 1 0 La Liga M ESP 1st 2023 -#> 557 0 0 0 0 La Liga M ESP 1st 2023 -#> 558 1 5 1 0 La Liga M ESP 1st 2023 -#> 559 1 2 0 0 La Liga M ESP 1st 2023 -#> 560 0 3 2 0 La Liga M ESP 1st 2023 -#> 561 2 2 4 0 La Liga M ESP 1st 2023 -#> 562 0 3 2 0 La Liga M ESP 1st 2023 -#> 563 0 0 0 0 La Liga M ESP 1st 2023 -#> 564 1 1 0 0 La Liga M ESP 1st 2023 -#> 565 0 0 0 1 La Liga M ESP 1st 2023 -#> 566 0 1 0 0 La Liga M ESP 1st 2023 -#> 567 0 1 2 0 La Liga M ESP 1st 2023 -#> 568 0 1 0 0 La Liga M ESP 1st 2023 -#> 569 0 0 1 0 La Liga M ESP 1st 2023 -#> 570 0 1 1 0 La Liga M ESP 1st 2023 -#> 571 1 1 0 0 La Liga M ESP 1st 2023 -#> 572 0 1 1 0 La Liga M ESP 1st 2023 -#> 573 1 2 3 0 La Liga M ESP 1st 2023 -#> 574 1 2 1 0 La Liga M ESP 1st 2023 -#> 575 0 1 4 0 La Liga M ESP 1st 2023 -#> 576 0 1 3 1 La Liga M ESP 1st 2023 -#> 577 1 5 5 0 La Liga M ESP 1st 2023 -#> 578 0 0 0 0 La Liga M ESP 1st 2023 -#> 579 0 0 0 0 La Liga M ESP 1st 2023 -#> 580 0 2 2 0 La Liga M ESP 1st 2023 -#> 581 0 1 0 0 La Liga M ESP 1st 2023 -#> 582 1 4 0 0 La Liga M ESP 1st 2023 -#> 583 0 1 0 0 La Liga M ESP 1st 2023 -#> 584 0 0 1 0 La Liga M ESP 1st 2023 -#> 585 1 5 2 0 La Liga M ESP 1st 2023 -#> 586 2 2 4 0 La Liga M ESP 1st 2023 -#> 587 0 0 8 0 La Liga M ESP 1st 2023 -#> 588 0 0 0 0 La Liga M ESP 1st 2023 -#> 589 1 1 0 0 La Liga M ESP 1st 2023 -#> 590 0 5 3 0 La Liga M ESP 1st 2023 -#> 591 0 0 0 1 La Liga M ESP 1st 2023 -#> 592 0 0 0 0 La Liga M ESP 1st 2023 -#> 593 0 0 2 0 La Liga M ESP 1st 2023 -#> 594 0 0 0 0 La Liga M ESP 1st 2023 -#> 595 1 4 0 0 La Liga M ESP 1st 2023 -#> 596 0 1 0 0 La Liga M ESP 1st 2023 -#> 597 1 5 1 0 La Liga M ESP 1st 2023 -#> 598 0 0 0 0 La Liga M ESP 1st 2023 -#> 599 0 0 0 0 La Liga M ESP 1st 2023 -#> 600 0 1 1 0 La Liga M ESP 1st 2023 -#> 601 0 1 0 0 La Liga M ESP 1st 2023 -#> 602 0 3 3 0 La Liga M ESP 1st 2023 -#> 603 0 2 0 0 La Liga M ESP 1st 2023 -#> 604 0 0 2 0 La Liga M ESP 1st 2023 -#> 605 2 4 1 0 La Liga M ESP 1st 2023 -#> 606 1 4 0 0 La Liga M ESP 1st 2023 -#> 607 0 0 2 0 La Liga M ESP 1st 2023 -#> 608 0 0 1 0 La Liga M ESP 1st 2023 -#> 609 0 0 0 0 La Liga M ESP 1st 2023 -#> 610 0 0 0 0 La Liga M ESP 1st 2023 -#> 611 2 6 0 0 La Liga M ESP 1st 2023 -#> 612 0 0 0 0 La Liga M ESP 1st 2023 -#> 613 2 3 0 0 La Liga M ESP 1st 2023 -#> 614 0 0 0 0 La Liga M ESP 1st 2023 -#> 615 0 0 0 0 La Liga M ESP 1st 2023 -#> 616 0 2 0 0 La Liga M ESP 1st 2023 -#> 617 0 1 0 0 La Liga M ESP 1st 2023 -#> 618 0 5 1 0 La Liga M ESP 1st 2023 -#> 619 2 3 2 0 La Liga M ESP 1st 2023 -#> 620 0 1 4 0 La Liga M ESP 1st 2023 -#> 621 1 1 4 0 La Liga M ESP 1st 2023 -#> 622 0 0 0 0 La Liga M ESP 1st 2023 -#> 623 0 1 0 0 La Liga M ESP 1st 2023 -#> 624 0 0 1 0 La Liga M ESP 1st 2023 -#> 625 1 1 1 0 La Liga M ESP 1st 2023 -#> 626 0 1 2 0 La Liga M ESP 1st 2023 -#> 627 0 0 0 0 La Liga M ESP 1st 2023 -#> 628 0 0 1 0 La Liga M ESP 1st 2023 -#> 629 0 2 0 0 La Liga M ESP 1st 2023 -#> 630 0 0 0 0 La Liga M ESP 1st 2023 -#> 631 1 3 0 0 La Liga M ESP 1st 2023 -#> 632 2 7 4 0 La Liga M ESP 1st 2023 -#> 633 1 1 2 0 La Liga M ESP 1st 2023 -#> 634 0 1 14 0 La Liga M ESP 1st 2023 -#> 635 0 0 1 0 La Liga M ESP 1st 2023 -#> 636 6 8 4 0 La Liga M ESP 1st 2023 -#> 637 0 0 1 0 La Liga M ESP 1st 2023 -#> 638 0 1 0 0 La Liga M ESP 1st 2023 -#> 639 0 0 0 0 La Liga M ESP 1st 2023 -#> 640 3 3 0 0 La Liga M ESP 1st 2023 -#> 641 0 0 0 0 La Liga M ESP 1st 2023 -#> 642 0 1 0 0 La Liga M ESP 1st 2023 -#> 643 1 1 1 0 La Liga M ESP 1st 2023 -#> 644 0 1 0 0 La Liga M ESP 1st 2023 -#> 645 0 4 3 0 La Liga M ESP 1st 2023 -#> 646 1 3 1 0 La Liga M ESP 1st 2023 -#> 647 0 0 0 0 La Liga M ESP 1st 2023 -#> 648 0 0 3 0 La Liga M ESP 1st 2023 -#> 649 0 4 4 0 La Liga M ESP 1st 2023 -#> 650 4 5 1 0 La Liga M ESP 1st 2023 -#> 651 0 0 0 0 La Liga M ESP 1st 2023 -#> 652 0 3 1 0 La Liga M ESP 1st 2023 -#> 653 1 1 0 0 La Liga M ESP 1st 2023 -#> 654 0 0 0 0 La Liga M ESP 1st 2023 -#> 655 0 0 0 0 La Liga M ESP 1st 2023 -#> 656 1 2 0 0 La Liga M ESP 1st 2023 -#> 657 0 0 0 0 La Liga M ESP 1st 2023 -#> 658 1 1 0 0 La Liga M ESP 1st 2023 -#> 659 1 1 1 0 La Liga M ESP 1st 2023 -#> 660 0 1 0 0 La Liga M ESP 1st 2023 -#> 661 2 3 1 0 La Liga M ESP 1st 2023 -#> 662 0 1 0 0 La Liga M ESP 1st 2023 -#> 663 1 6 1 0 La Liga M ESP 1st 2023 -#> 664 1 3 3 0 La Liga M ESP 1st 2023 -#> 665 0 3 4 0 La Liga M ESP 1st 2023 -#> 666 0 2 2 0 La Liga M ESP 1st 2023 -#> 667 0 1 1 0 La Liga M ESP 1st 2023 -#> 668 0 0 1 0 La Liga M ESP 1st 2023 -#> 669 0 0 0 0 La Liga M ESP 1st 2023 -#> 670 0 0 0 0 La Liga M ESP 1st 2023 -#> 671 0 1 0 0 La Liga M ESP 1st 2023 -#> 672 0 0 0 0 La Liga M ESP 1st 2023 -#> 673 1 2 0 0 La Liga M ESP 1st 2023 -#> 674 0 0 0 0 La Liga M ESP 1st 2023 -#> 675 0 1 0 0 La Liga M ESP 1st 2023 -#> 676 2 4 2 0 La Liga M ESP 1st 2023 -#> 677 0 4 0 0 La Liga M ESP 1st 2023 -#> 678 4 9 3 1 La Liga M ESP 1st 2023 -#> 679 1 6 2 0 La Liga M ESP 1st 2023 -#> 680 0 2 0 0 La Liga M ESP 1st 2023 -#> 681 1 2 3 0 La Liga M ESP 1st 2023 -#> 682 2 2 3 0 La Liga M ESP 1st 2023 -#> 683 0 4 0 0 La Liga M ESP 1st 2023 -#> 684 0 0 0 0 La Liga M ESP 1st 2023 -#> 685 0 0 0 0 La Liga M ESP 1st 2023 -#> 686 0 0 0 0 La Liga M ESP 1st 2023 -#> 687 1 1 0 0 La Liga M ESP 1st 2023 -#> 688 0 1 1 0 La Liga M ESP 1st 2023 -#> 689 0 2 0 0 La Liga M ESP 1st 2023 -#> 690 0 0 0 0 La Liga M ESP 1st 2023 -#> 691 0 1 0 0 La Liga M ESP 1st 2023 -#> 692 0 1 0 0 La Liga M ESP 1st 2023 -#> 693 2 3 0 1 La Liga M ESP 1st 2023 -#> 694 0 0 0 0 La Liga M ESP 1st 2023 -#> 695 2 7 1 0 La Liga M ESP 1st 2023 -#> 696 0 0 0 0 La Liga M ESP 1st 2023 -#> 697 0 0 3 0 La Liga M ESP 1st 2023 -#> 698 0 0 4 0 La Liga M ESP 1st 2023 -#> 699 3 5 2 0 La Liga M ESP 1st 2023 -#> 700 2 3 0 0 La Liga M ESP 1st 2023 -#> 701 0 0 0 0 La Liga M ESP 1st 2023 -#> 702 1 1 1 0 La Liga M ESP 1st 2023 -#> 703 0 1 0 0 La Liga M ESP 1st 2023 -#> 704 0 0 0 0 La Liga M ESP 1st 2023 -#> 705 0 0 1 0 La Liga M ESP 1st 2023 -#> 706 1 1 1 0 La Liga M ESP 1st 2023 -#> 707 0 0 1 0 La Liga M ESP 1st 2023 -#> 708 0 2 4 0 La Liga M ESP 1st 2023 -#> 709 1 2 4 0 La Liga M ESP 1st 2023 -#> 710 2 2 0 0 La Liga M ESP 1st 2023 -#> 711 1 3 2 0 La Liga M ESP 1st 2023 -#> 712 3 3 8 0 La Liga M ESP 1st 2023 -#> 713 2 2 7 0 La Liga M ESP 1st 2023 -#> 714 5 5 6 0 La Liga M ESP 1st 2023 -#> 715 2 4 5 0 La Liga M ESP 1st 2023 -#> 716 0 0 1 0 La Liga M ESP 1st 2023 -#> 717 0 0 0 0 La Liga M ESP 1st 2023 -#> 718 0 1 0 0 La Liga M ESP 1st 2023 -#> 719 0 0 0 0 La Liga M ESP 1st 2023 -#> 720 0 1 0 0 La Liga M ESP 1st 2023 -#> 721 0 0 0 0 La Liga M ESP 1st 2023 -#> 722 0 3 2 0 La Liga M ESP 1st 2023 -#> 723 0 0 1 0 La Liga M ESP 1st 2023 -#> 724 2 2 0 0 La Liga M ESP 1st 2023 -#> 725 1 3 1 0 La Liga M ESP 1st 2023 -#> 726 1 2 3 0 La Liga M ESP 1st 2023 -#> 727 0 0 0 0 La Liga M ESP 1st 2023 -#> 728 0 0 1 0 La Liga M ESP 1st 2023 -#> 729 2 3 6 0 La Liga M ESP 1st 2023 -#> 730 0 0 1 0 La Liga M ESP 1st 2023 -#> 731 0 0 1 0 La Liga M ESP 1st 2023 -#> 732 0 0 0 0 La Liga M ESP 1st 2023 -#> 733 0 0 0 0 La Liga M ESP 1st 2023 -#> 734 0 0 0 0 La Liga M ESP 1st 2023 -#> 735 0 0 0 0 La Liga M ESP 1st 2023 -#> 736 0 0 0 0 La Liga M ESP 1st 2023 -#> 737 0 0 1 0 La Liga M ESP 1st 2023 -#> 738 0 0 0 0 La Liga M ESP 1st 2023 -#> 739 0 2 2 0 La Liga M ESP 1st 2023 -#> 740 0 1 0 0 La Liga M ESP 1st 2023 -#> 741 0 0 0 0 La Liga M ESP 1st 2023 -#> 742 1 1 1 0 La Liga M ESP 1st 2023 -#> 743 2 3 0 0 La Liga M ESP 1st 2023 -#> 744 0 0 1 0 La Liga M ESP 1st 2023 -#> 745 1 4 3 0 La Liga M ESP 1st 2023 -#> 746 0 0 0 0 La Liga M ESP 1st 2023 -#> 747 0 0 0 0 La Liga M ESP 1st 2023 -#> 748 0 0 0 0 La Liga M ESP 1st 2023 -#> 749 0 0 0 0 La Liga M ESP 1st 2023 -#> 750 0 0 0 0 La Liga M ESP 1st 2023 -#> 751 0 2 0 0 La Liga M ESP 1st 2023 -#> 752 0 0 0 0 La Liga M ESP 1st 2023 -#> 753 0 1 0 0 La Liga M ESP 1st 2023 -#> 754 0 2 1 0 La Liga M ESP 1st 2023 -#> 755 0 2 0 0 La Liga M ESP 1st 2023 -#> 756 0 0 0 0 La Liga M ESP 1st 2023 -#> 757 0 1 2 0 La Liga M ESP 1st 2023 -#> 758 1 4 2 0 La Liga M ESP 1st 2023 -#> 759 0 1 2 0 La Liga M ESP 1st 2023 -#> 760 0 2 7 0 La Liga M ESP 1st 2023 -#> 761 1 2 0 0 La Liga M ESP 1st 2023 -#> 762 0 0 0 0 La Liga M ESP 1st 2023 -#> 763 0 1 0 0 La Liga M ESP 1st 2023 -#> 764 0 1 2 0 La Liga M ESP 1st 2023 -#> 765 0 1 0 0 La Liga M ESP 1st 2023 -#> 766 1 3 1 0 La Liga M ESP 1st 2023 -#> 767 0 0 0 0 La Liga M ESP 1st 2023 -#> 768 0 0 0 0 La Liga M ESP 1st 2023 -#> 769 0 0 0 0 La Liga M ESP 1st 2023 -#> 770 3 4 1 0 La Liga M ESP 1st 2023 -#> 771 1 2 0 0 La Liga M ESP 1st 2023 -#> 772 1 1 0 0 La Liga M ESP 1st 2023 -#> 773 0 0 0 0 La Liga M ESP 1st 2023 -#> 774 0 0 2 0 La Liga M ESP 1st 2023 -#> 775 0 0 3 0 La Liga M ESP 1st 2023 -#> 776 1 1 0 0 La Liga M ESP 1st 2023 -#> 777 0 0 0 0 La Liga M ESP 1st 2023 -#> 778 0 0 1 0 La Liga M ESP 1st 2023 -#> 779 0 0 0 0 La Liga M ESP 1st 2023 -#> 780 0 2 1 0 La Liga M ESP 1st 2023 -#> 781 0 0 0 0 La Liga M ESP 1st 2023 -#> 782 1 2 0 0 La Liga M ESP 1st 2023 -#> 783 0 1 0 0 La Liga M ESP 1st 2023 -#> 784 0 2 1 0 La Liga M ESP 1st 2023 -#> 785 2 3 0 0 La Liga M ESP 1st 2023 -#> 786 0 1 0 0 La Liga M ESP 1st 2023 -#> 787 0 1 0 0 La Liga M ESP 1st 2023 -#> 788 0 1 0 0 La Liga M ESP 1st 2023 -#> 789 2 4 0 0 La Liga M ESP 1st 2023 -#> 790 1 2 2 0 La Liga M ESP 1st 2023 -#> 791 0 1 0 0 La Liga M ESP 1st 2023 -#> 792 0 1 1 0 La Liga M ESP 1st 2023 -#> 793 1 1 0 0 La Liga M ESP 1st 2023 -#> 794 0 0 0 0 La Liga M ESP 1st 2023 -#> 795 1 1 2 0 La Liga M ESP 1st 2023 -#> 796 0 0 0 0 La Liga M ESP 1st 2023 -#> 797 0 1 0 0 La Liga M ESP 1st 2023 -#> 798 0 1 0 0 La Liga M ESP 1st 2023 -#> 799 0 0 1 0 La Liga M ESP 1st 2023 -#> 800 1 2 1 0 La Liga M ESP 1st 2023 -#> 801 1 3 3 0 La Liga M ESP 1st 2023 -#> 802 0 2 0 0 La Liga M ESP 1st 2023 -#> 803 0 4 0 0 La Liga M ESP 1st 2023 -#> 804 0 1 1 1 La Liga M ESP 1st 2023 -#> 805 1 1 1 0 La Liga M ESP 1st 2023 -#> 806 0 4 4 0 La Liga M ESP 1st 2023 -#> 807 2 4 6 0 La Liga M ESP 1st 2023 -#> 808 2 4 8 0 La Liga M ESP 1st 2023 -#> 809 1 3 1 0 La Liga M ESP 1st 2023 -#> 810 0 0 0 0 La Liga M ESP 1st 2023 -#> 811 1 2 3 0 La Liga M ESP 1st 2023 -#> 812 0 1 2 0 La Liga M ESP 1st 2023 -#> 813 0 0 1 0 La Liga M ESP 1st 2023 -#> 814 0 2 1 0 La Liga M ESP 1st 2023 -#> 815 0 5 1 0 La Liga M ESP 1st 2023 -#> 816 0 0 0 0 La Liga M ESP 1st 2023 -#> 817 1 4 1 0 La Liga M ESP 1st 2023 -#> 818 1 2 3 0 La Liga M ESP 1st 2023 -#> 819 0 1 0 0 La Liga M ESP 1st 2023 -#> 820 0 1 3 0 La Liga M ESP 1st 2023 -#> 821 2 5 3 0 La Liga M ESP 1st 2023 -#> 822 0 2 0 0 La Liga M ESP 1st 2023 -#> 823 1 3 1 0 La Liga M ESP 1st 2023 -#> 824 0 0 0 0 La Liga M ESP 1st 2023 -#> 825 1 1 0 0 La Liga M ESP 1st 2023 -#> 826 0 0 0 0 La Liga M ESP 1st 2023 -#> 827 0 1 0 0 La Liga M ESP 1st 2023 -#> 828 0 0 0 0 La Liga M ESP 1st 2023 -#> 829 0 1 1 0 La Liga M ESP 1st 2023 -#> 830 0 1 0 0 La Liga M ESP 1st 2023 -#> 831 1 1 1 0 La Liga M ESP 1st 2023 -#> 832 0 0 0 0 La Liga M ESP 1st 2023 -#> 833 0 1 0 0 La Liga M ESP 1st 2023 -#> 834 1 2 2 1 La Liga M ESP 1st 2023 -#> 835 0 1 3 0 La Liga M ESP 1st 2023 -#> 836 1 2 4 0 La Liga M ESP 1st 2023 -#> 837 1 2 1 0 La Liga M ESP 1st 2023 -#> 838 0 0 0 0 La Liga M ESP 1st 2023 -#> 839 0 0 0 0 La Liga M ESP 1st 2023 -#> 840 0 1 2 0 La Liga M ESP 1st 2023 -#> 841 1 1 1 0 La Liga M ESP 1st 2023 -#> 842 0 0 1 0 La Liga M ESP 1st 2023 -#> 843 0 0 0 1 La Liga M ESP 1st 2023 -#> 844 1 2 1 0 La Liga M ESP 1st 2023 -#> 845 1 1 0 0 La Liga M ESP 1st 2023 -#> 846 0 NA NA NA La Liga M ESP 1st 2023 -#> 847 1 1 0 0 La Liga M ESP 1st 2023 -#> 848 0 1 1 0 La Liga M ESP 1st 2023 -#> 849 2 5 1 0 La Liga M ESP 1st 2023 -#> 850 0 0 0 0 La Liga M ESP 1st 2023 -#> 851 0 0 1 0 La Liga M ESP 1st 2023 -#> 852 0 1 2 0 La Liga M ESP 1st 2023 -#> 853 2 2 2 0 La Liga M ESP 1st 2023 -#> 854 1 4 1 0 La Liga M ESP 1st 2023 -#> 855 0 0 0 1 La Liga M ESP 1st 2023 -#> 856 0 0 0 0 La Liga M ESP 1st 2023 -#> 857 1 2 0 0 La Liga M ESP 1st 2023 -#> 858 0 1 0 0 La Liga M ESP 1st 2023 -#> 859 0 0 0 0 La Liga M ESP 1st 2023 -#> 860 0 0 0 0 La Liga M ESP 1st 2023 -#> 861 0 0 0 0 La Liga M ESP 1st 2023 -#> 862 1 1 0 0 La Liga M ESP 1st 2023 -#> 863 1 3 4 0 La Liga M ESP 1st 2023 -#> 864 0 0 0 0 La Liga M ESP 1st 2023 -#> 865 0 0 0 0 La Liga M ESP 1st 2023 -#> 866 1 3 4 0 La Liga M ESP 1st 2023 -#> 867 0 2 0 0 La Liga M ESP 1st 2023 -#> 868 1 2 7 0 La Liga M ESP 1st 2023 -#> 869 1 5 2 0 La Liga M ESP 1st 2023 -#> 870 0 2 1 0 La Liga M ESP 1st 2023 -#> 871 0 0 0 0 La Liga M ESP 1st 2023 -#> 872 0 1 0 0 La Liga M ESP 1st 2023 -#> 873 0 0 0 0 La Liga M ESP 1st 2023 -#> 874 0 0 0 0 La Liga M ESP 1st 2023 -#> 875 0 0 0 0 La Liga M ESP 1st 2023 -#> 876 0 0 0 0 La Liga M ESP 1st 2023 -#> 877 0 0 1 0 La Liga M ESP 1st 2023 -#> 878 2 NA NA NA La Liga M ESP 1st 2023 -#> 879 0 0 0 0 La Liga M ESP 1st 2023 -#> 880 1 4 0 0 La Liga M ESP 1st 2023 -#> 881 0 0 1 0 La Liga M ESP 1st 2023 -#> 882 0 0 0 0 La Liga M ESP 1st 2023 -#> 883 1 1 0 0 La Liga M ESP 1st 2023 -#> 884 2 3 0 1 La Liga M ESP 1st 2023 -#> 885 1 1 1 1 La Liga M ESP 1st 2023 -#> 886 0 0 0 0 La Liga M ESP 1st 2023 -#> 887 0 0 0 0 La Liga M ESP 1st 2023 -#> 888 0 0 0 0 La Liga M ESP 1st 2023 -#> 889 0 0 0 0 La Liga M ESP 1st 2023 -#> 890 0 1 0 0 La Liga M ESP 1st 2023 -#> 891 0 0 0 0 La Liga M ESP 1st 2023 -#> 892 0 1 1 0 La Liga M ESP 1st 2023 -#> 893 0 2 1 0 La Liga M ESP 1st 2023 -#> 894 0 0 1 0 La Liga M ESP 1st 2023 -#> 895 0 0 0 0 La Liga M ESP 1st 2023 -#> 896 1 2 1 0 La Liga M ESP 1st 2023 -#> 897 1 3 3 0 La Liga M ESP 1st 2023 -#> 898 0 2 2 0 La Liga M ESP 1st 2023 -#> 899 1 3 7 0 La Liga M ESP 1st 2023 -#> 900 1 2 7 0 La Liga M ESP 1st 2023 -#> 901 3 5 5 0 La Liga M ESP 1st 2023 -#> 902 1 5 4 0 La Liga M ESP 1st 2023 -#> 903 0 0 1 0 La Liga M ESP 1st 2023 -#> 904 0 0 0 0 La Liga M ESP 1st 2023 -#> 905 0 2 0 0 La Liga M ESP 1st 2023 -#> 906 0 0 2 0 La Liga M ESP 1st 2023 -#> 907 1 1 0 0 La Liga M ESP 1st 2023 -#> 908 0 3 0 0 La Liga M ESP 1st 2023 -#> 909 0 0 1 0 La Liga M ESP 1st 2023 -#> 910 0 1 0 0 La Liga M ESP 1st 2023 -#> 911 1 5 0 0 La Liga M ESP 1st 2023 -#> 912 1 1 1 0 La Liga M ESP 1st 2023 -#> 913 0 1 1 0 La Liga M ESP 1st 2023 -#> 914 0 4 2 0 La Liga M ESP 1st 2023 -#> 915 3 5 0 0 La Liga M ESP 1st 2023 -#> 916 1 2 2 0 La Liga M ESP 1st 2023 -#> 917 0 2 2 0 La Liga M ESP 1st 2023 -#> 918 0 2 0 0 La Liga M ESP 1st 2023 -#> 919 0 0 0 0 La Liga M ESP 1st 2023 -#> 920 0 0 0 0 La Liga M ESP 1st 2023 -#> 921 0 0 0 0 La Liga M ESP 1st 2023 -#> 922 1 NA NA NA La Liga M ESP 1st 2023 -#> 923 0 0 0 0 La Liga M ESP 1st 2023 -#> 924 0 1 1 0 La Liga M ESP 1st 2023 -#> 925 1 1 0 0 La Liga M ESP 1st 2023 -#> 926 1 3 1 0 La Liga M ESP 1st 2023 -#> 927 0 5 0 0 La Liga M ESP 1st 2023 -#> 928 1 1 0 0 La Liga M ESP 1st 2023 -#> 929 0 1 0 0 La Liga M ESP 1st 2023 -#> 930 0 0 0 0 La Liga M ESP 1st 2023 -#> 931 2 6 1 0 La Liga M ESP 1st 2023 -#> 932 1 1 0 0 La Liga M ESP 1st 2023 -#> 933 0 2 2 0 La Liga M ESP 1st 2023 -#> 934 2 3 3 0 La Liga M ESP 1st 2023 -#> 935 0 0 1 0 La Liga M ESP 1st 2023 -#> 936 0 0 2 0 La Liga M ESP 1st 2023 -#> 937 0 2 0 0 La Liga M ESP 1st 2023 -#> 938 0 0 1 0 La Liga M ESP 1st 2023 -#> 939 0 0 0 0 La Liga M ESP 1st 2023 -#> 940 1 3 2 0 La Liga M ESP 1st 2023 -#> 941 0 0 0 0 La Liga M ESP 1st 2023 -#> 942 2 3 0 0 La Liga M ESP 1st 2023 -#> 943 0 1 0 0 La Liga M ESP 1st 2023 -#> 944 0 2 0 0 La Liga M ESP 1st 2023 -#> 945 3 6 2 0 La Liga M ESP 1st 2023 -#> 946 0 2 6 0 La Liga M ESP 1st 2023 -#> 947 0 3 2 0 La Liga M ESP 1st 2023 -#> 948 1 2 0 0 La Liga M ESP 1st 2023 -#> 949 0 0 0 0 La Liga M ESP 1st 2023 -#> 950 0 0 0 0 La Liga M ESP 1st 2023 -#> 951 0 1 1 0 La Liga M ESP 1st 2023 -#> 952 0 1 0 0 La Liga M ESP 1st 2023 -#> 953 0 0 0 0 La Liga M ESP 1st 2023 -#> 954 0 1 0 0 La Liga M ESP 1st 2023 -#> 955 0 0 0 0 La Liga M ESP 1st 2023 -#> 956 0 0 1 0 La Liga M ESP 1st 2023 -#> 957 0 0 0 0 La Liga M ESP 1st 2023 -#> 958 3 6 0 0 La Liga M ESP 1st 2023 -#> 959 1 1 2 0 La Liga M ESP 1st 2023 -#> 960 0 2 2 0 La Liga M ESP 1st 2023 -#> 961 0 2 3 0 La Liga M ESP 1st 2023 -#> 962 3 3 1 0 La Liga M ESP 1st 2023 -#> 963 0 0 0 0 La Liga M ESP 1st 2023 -#> 964 1 2 1 0 La Liga M ESP 1st 2023 -#> 965 1 1 2 0 La Liga M ESP 1st 2023 -#> 966 0 0 0 0 La Liga M ESP 1st 2023 -#> 967 0 3 0 0 La Liga M ESP 1st 2023 -#> 968 0 2 0 0 La Liga M ESP 1st 2023 -#> 969 1 2 0 0 La Liga M ESP 1st 2023 -#> 970 0 1 0 0 La Liga M ESP 1st 2023 -#> 971 1 1 0 0 La Liga M ESP 1st 2023 -#> 972 3 10 1 0 La Liga M ESP 1st 2023 -#> 973 1 3 1 0 La Liga M ESP 1st 2023 -#> 974 0 0 0 0 La Liga M ESP 1st 2023 -#> 975 3 6 0 0 La Liga M ESP 1st 2023 -#> 976 0 0 0 0 La Liga M ESP 1st 2023 -#> 977 2 4 0 0 La Liga M ESP 1st 2023 -#> 978 1 4 1 0 La Liga M ESP 1st 2023 -#> 979 0 0 0 0 La Liga M ESP 1st 2023 -#> 980 0 0 0 0 La Liga M ESP 1st 2023 -#> 981 0 2 1 0 La Liga M ESP 1st 2023 -#> 982 1 1 0 0 La Liga M ESP 1st 2023 -#> 983 0 0 0 0 La Liga M ESP 1st 2023 -#> 984 0 4 0 0 La Liga M ESP 1st 2023 -#> 985 0 0 0 0 La Liga M ESP 1st 2023 -#> 986 0 5 0 0 La Liga M ESP 1st 2023 -#> 987 1 3 1 0 La Liga M ESP 1st 2023 -#> 988 0 0 0 0 La Liga M ESP 1st 2023 -#> 989 0 5 3 0 La Liga M ESP 1st 2023 -#> 990 1 1 1 0 La Liga M ESP 1st 2023 -#> 991 0 2 4 0 La Liga M ESP 1st 2023 -#> 992 2 7 4 0 La Liga M ESP 1st 2023 -#> 993 2 4 2 0 La Liga M ESP 1st 2023 -#> 994 1 2 0 0 La Liga M ESP 1st 2023 -#> 995 0 0 1 0 La Liga M ESP 1st 2023 -#> 996 0 0 1 0 La Liga M ESP 1st 2023 -#> 997 0 1 0 0 La Liga M ESP 1st 2023 -#> 998 0 0 0 0 La Liga M ESP 1st 2023 -#> 999 0 0 1 0 La Liga M ESP 1st 2023 -#> 1000 1 1 0 0 La Liga M ESP 1st 2023 -#> 1001 0 1 0 0 La Liga M ESP 1st 2023 -#> 1002 1 6 1 0 La Liga M ESP 1st 2023 -#> 1003 2 4 0 0 La Liga M ESP 1st 2023 -#> 1004 1 3 0 0 La Liga M ESP 1st 2023 -#> 1005 0 5 2 0 La Liga M ESP 1st 2023 -#> 1006 2 2 1 0 La Liga M ESP 1st 2023 -#> 1007 0 2 0 0 La Liga M ESP 1st 2023 -#> 1008 0 0 1 0 La Liga M ESP 1st 2023 -#> 1009 1 3 1 0 La Liga M ESP 1st 2023 -#> 1010 0 1 0 0 La Liga M ESP 1st 2023 -#> 1011 0 0 1 0 La Liga M ESP 1st 2023 -#> 1012 0 0 0 0 La Liga M ESP 1st 2023 -#> 1013 0 3 3 0 La Liga M ESP 1st 2023 -#> 1014 0 0 0 0 La Liga M ESP 1st 2023 -#> 1015 0 2 0 0 La Liga M ESP 1st 2023 -#> 1016 0 0 0 0 La Liga M ESP 1st 2023 -#> 1017 2 3 2 0 La Liga M ESP 1st 2023 -#> 1018 2 3 1 0 La Liga M ESP 1st 2023 -#> 1019 1 2 0 0 La Liga M ESP 1st 2023 -#> 1020 0 1 0 0 La Liga M ESP 1st 2023 -#> 1021 0 0 0 0 La Liga M ESP 1st 2023 -#> 1022 0 2 1 0 La Liga M ESP 1st 2023 -#> 1023 2 5 3 0 La Liga M ESP 1st 2023 -#> 1024 0 0 4 0 La Liga M ESP 1st 2023 -#> 1025 1 3 5 0 La Liga M ESP 1st 2023 -#> 1026 0 0 0 0 La Liga M ESP 1st 2023 -#> 1027 0 0 0 0 La Liga M ESP 1st 2023 -#> 1028 0 1 0 0 La Liga M ESP 1st 2023 -#> 1029 0 1 1 0 La Liga M ESP 1st 2023 -#> 1030 0 1 0 0 La Liga M ESP 1st 2023 -#> 1031 1 2 0 0 La Liga M ESP 1st 2023 -#> 1032 0 1 0 0 La Liga M ESP 1st 2023 -#> 1033 2 4 0 0 La Liga M ESP 1st 2023 -#> 1034 1 1 0 0 La Liga M ESP 1st 2023 -#> 1035 2 4 0 0 La Liga M ESP 1st 2023 -#> 1036 0 1 0 0 La Liga M ESP 1st 2023 -#> 1037 2 2 0 0 La Liga M ESP 1st 2023 -#> 1038 5 10 1 0 La Liga M ESP 1st 2023 -#> 1039 0 3 1 0 La Liga M ESP 1st 2023 -#> 1040 4 7 2 0 La Liga M ESP 1st 2023 -#> 1041 0 0 1 0 La Liga M ESP 1st 2023 -#> 1042 0 0 0 0 La Liga M ESP 1st 2023 -#> 1043 0 0 2 0 La Liga M ESP 1st 2023 -#> 1044 0 0 0 0 La Liga M ESP 1st 2023 -#> 1045 0 0 0 0 La Liga M ESP 1st 2023 -#> 1046 0 0 0 0 La Liga M ESP 1st 2023 -#> 1047 0 1 1 0 La Liga M ESP 1st 2023 -#> 1048 1 1 0 0 La Liga M ESP 1st 2023 -#> 1049 0 0 1 0 La Liga M ESP 1st 2023 -#> 1050 1 2 0 0 La Liga M ESP 1st 2023 -#> 1051 1 7 0 0 La Liga M ESP 1st 2023 -#> 1052 2 3 1 0 La Liga M ESP 1st 2023 -#> 1053 0 0 0 0 La Liga M ESP 1st 2023 -#> 1054 0 1 2 0 La Liga M ESP 1st 2023 -#> 1055 1 1 0 1 La Liga M ESP 1st 2023 -#> 1056 1 1 2 0 La Liga M ESP 1st 2023 -#> 1057 5 6 2 0 La Liga M ESP 1st 2023 -#> 1058 0 0 1 0 La Liga M ESP 1st 2023 -#> 1059 1 1 0 0 La Liga M ESP 1st 2023 -#> 1060 0 0 0 0 La Liga M ESP 1st 2023 -#> 1061 0 0 0 0 La Liga M ESP 1st 2023 -#> 1062 0 3 2 0 La Liga M ESP 1st 2023 -#> 1063 1 2 0 0 La Liga M ESP 1st 2023 -#> 1064 0 1 2 0 La Liga M ESP 1st 2023 -#> 1065 0 2 0 0 La Liga M ESP 1st 2023 -#> 1066 0 1 0 0 La Liga M ESP 1st 2023 -#> 1067 0 0 0 0 La Liga M ESP 1st 2023 -#> 1068 0 1 0 0 La Liga M ESP 1st 2023 -#> 1069 0 2 0 0 La Liga M ESP 1st 2023 -#> 1070 0 1 1 0 La Liga M ESP 1st 2023 -#> 1071 0 2 0 0 La Liga M ESP 1st 2023 -#> 1072 4 5 7 0 La Liga M ESP 1st 2023 -#> 1073 1 1 1 0 La Liga M ESP 1st 2023 -#> 1074 4 5 1 0 La Liga M ESP 1st 2023 -#> 1075 0 0 0 0 La Liga M ESP 1st 2023 -#> 1076 0 0 1 0 La Liga M ESP 1st 2023 -#> 1077 0 0 0 0 La Liga M ESP 1st 2023 -#> 1078 0 1 0 0 La Liga M ESP 1st 2023 -#> 1079 1 1 0 0 La Liga M ESP 1st 2023 -#> 1080 0 0 0 0 La Liga M ESP 1st 2023 -#> 1081 0 3 1 0 La Liga M ESP 1st 2023 -#> 1082 1 4 1 0 La Liga M ESP 1st 2023 -#> 1083 1 1 0 0 La Liga M ESP 1st 2023 -#> 1084 1 2 1 0 La Liga M ESP 1st 2023 -#> 1085 1 5 1 0 La Liga M ESP 1st 2023 -#> 1086 0 0 0 0 La Liga M ESP 1st 2023 -#> 1087 1 2 9 0 La Liga M ESP 1st 2023 -#> 1088 3 3 6 0 La Liga M ESP 1st 2023 -#> 1089 2 3 1 1 La Liga M ESP 1st 2023 -#> 1090 0 0 0 0 La Liga M ESP 1st 2023 -#> 1091 0 1 0 0 La Liga M ESP 1st 2023 -#> 1092 0 0 0 0 La Liga M ESP 1st 2023 -#> 1093 0 1 0 0 La Liga M ESP 1st 2023 -#> 1094 0 2 0 0 La Liga M ESP 1st 2023 -#> 1095 0 1 0 0 La Liga M ESP 1st 2023 -#> 1096 1 1 0 0 La Liga M ESP 1st 2023 -#> 1097 2 7 2 0 La Liga M ESP 1st 2023 -#> 1098 0 0 0 0 La Liga M ESP 1st 2023 -#> 1099 0 1 0 0 La Liga M ESP 1st 2023 -#> 1100 1 2 1 0 La Liga M ESP 1st 2023 -#> 1101 0 0 0 0 La Liga M ESP 1st 2023 -#> 1102 1 2 3 0 La Liga M ESP 1st 2023 -#> 1103 0 1 2 0 La Liga M ESP 1st 2023 -#> 1104 1 1 5 0 La Liga M ESP 1st 2023 -#> 1105 0 0 0 0 La Liga M ESP 1st 2023 -#> 1106 0 0 4 0 La Liga M ESP 1st 2023 -#> 1107 0 0 1 0 La Liga M ESP 1st 2023 -#> 1108 0 0 0 0 La Liga M ESP 1st 2023 -#> 1109 1 1 0 0 La Liga M ESP 1st 2023 -#> 1110 1 1 0 0 La Liga M ESP 1st 2023 -#> 1111 1 2 0 0 La Liga M ESP 1st 2023 -#> 1112 2 4 2 0 La Liga M ESP 1st 2023 -#> 1113 2 2 0 0 La Liga M ESP 1st 2023 -#> 1114 0 0 0 0 La Liga M ESP 1st 2023 -#> 1115 3 7 4 0 La Liga M ESP 1st 2023 -#> 1116 2 5 3 0 La Liga M ESP 1st 2023 -#> 1117 2 3 11 0 La Liga M ESP 1st 2023 -#> 1118 2 5 5 0 La Liga M ESP 1st 2023 -#> 1119 1 2 3 0 La Liga M ESP 1st 2023 -#> 1120 4 5 6 0 La Liga M ESP 1st 2023 -#> 1121 0 0 0 0 La Liga M ESP 1st 2023 -#> 1122 0 1 0 0 La Liga M ESP 1st 2023 -#> 1123 0 0 0 0 La Liga M ESP 1st 2023 -#> 1124 0 2 0 0 La Liga M ESP 1st 2023 -#> 1125 0 0 2 0 La Liga M ESP 1st 2023 -#> 1126 1 7 0 0 La Liga M ESP 1st 2023 -#> 1127 0 1 1 0 La Liga M ESP 1st 2023 -#> 1128 0 1 2 0 La Liga M ESP 1st 2023 -#> 1129 0 1 1 0 La Liga M ESP 1st 2023 -#> 1130 0 3 1 0 La Liga M ESP 1st 2023 -#> 1131 0 0 1 0 La Liga M ESP 1st 2023 -#> 1132 0 3 3 0 La Liga M ESP 1st 2023 -#> 1133 0 1 7 0 La Liga M ESP 1st 2023 -#> 1134 0 2 2 0 La Liga M ESP 1st 2023 -#> 1135 0 0 0 0 La Liga M ESP 1st 2023 -#> 1136 2 2 0 0 La Liga M ESP 1st 2023 -#> 1137 0 0 0 0 La Liga M ESP 1st 2023 -#> 1138 0 0 2 0 La Liga M ESP 1st 2023 -#> 1139 0 0 0 0 La Liga M ESP 1st 2023 -#> 1140 0 2 1 0 La Liga M ESP 1st 2023 -#> 1141 0 1 0 1 La Liga M ESP 1st 2023 -#> 1142 0 3 0 0 La Liga M ESP 1st 2023 -#> 1143 0 0 0 0 La Liga M ESP 1st 2023 -#> 1144 1 1 0 0 La Liga M ESP 1st 2023 -#> 1145 0 1 0 0 La Liga M ESP 1st 2023 -#> 1146 1 1 1 0 La Liga M ESP 1st 2023 -#> 1147 0 2 2 0 La Liga M ESP 1st 2023 -#> 1148 0 0 0 0 La Liga M ESP 1st 2023 -#> 1149 2 7 7 0 La Liga M ESP 1st 2023 -#> 1150 5 6 6 0 La Liga M ESP 1st 2023 -#> 1151 0 1 3 0 La Liga M ESP 1st 2023 -#> 1152 2 5 0 0 La Liga M ESP 1st 2023 -#> 1153 0 0 0 0 La Liga M ESP 1st 2023 -#> 1154 0 0 0 0 La Liga M ESP 1st 2023 -#> 1155 0 0 0 0 La Liga M ESP 1st 2023 -#> 1156 0 0 0 0 La Liga M ESP 1st 2023 -#> 1157 0 2 0 0 La Liga M ESP 1st 2023 -#> 1158 0 0 1 0 La Liga M ESP 1st 2023 -#> 1159 0 1 0 0 La Liga M ESP 1st 2023 -#> 1160 0 0 0 0 La Liga M ESP 1st 2023 -#> 1161 0 NA NA NA La Liga M ESP 1st 2023 -#> 1162 2 2 0 1 La Liga M ESP 1st 2023 -#> 1163 1 2 1 0 La Liga M ESP 1st 2023 -#> 1164 0 1 0 0 La Liga M ESP 1st 2023 -#> 1165 1 3 0 0 La Liga M ESP 1st 2023 -#> 1166 0 0 0 0 La Liga M ESP 1st 2023 -#> 1167 3 5 3 0 La Liga M ESP 1st 2023 -#> 1168 1 2 2 0 La Liga M ESP 1st 2023 -#> 1169 0 0 0 0 La Liga M ESP 1st 2023 -#> 1170 0 0 1 0 La Liga M ESP 1st 2023 -#> 1171 0 0 0 0 La Liga M ESP 1st 2023 -#> 1172 0 0 0 0 La Liga M ESP 1st 2023 -#> 1173 0 1 0 0 La Liga M ESP 1st 2023 -#> 1174 0 0 0 0 La Liga M ESP 1st 2023 -#> 1175 0 0 0 0 La Liga M ESP 1st 2023 -#> 1176 0 1 1 0 La Liga M ESP 1st 2023 -#> 1177 3 4 3 0 La Liga M ESP 1st 2023 -#> 1178 0 0 0 0 La Liga M ESP 1st 2023 -#> 1179 0 0 0 0 La Liga M ESP 1st 2023 -#> 1180 0 0 0 0 La Liga M ESP 1st 2023 -#> 1181 1 1 4 0 La Liga M ESP 1st 2023 -#> 1182 0 0 0 0 La Liga M ESP 1st 2023 -#> 1183 0 0 4 0 La Liga M ESP 1st 2023 -#> 1184 0 3 2 0 La Liga M ESP 1st 2023 -#> 1185 0 0 1 2 La Liga M ESP 1st 2023 -#> 1186 0 1 0 0 La Liga M ESP 1st 2023 -#> 1187 0 0 2 0 La Liga M ESP 1st 2023 -#> 1188 1 1 0 0 La Liga M ESP 1st 2023 -#> 1189 1 2 0 0 La Liga M ESP 1st 2023 -#> 1190 0 1 0 0 La Liga M ESP 1st 2023 -#> 1191 0 0 0 0 La Liga M ESP 1st 2023 -#> 1192 1 4 2 0 La Liga M ESP 1st 2023 -#> 1193 0 2 2 0 La Liga M ESP 1st 2023 -#> 1194 0 0 0 0 La Liga M ESP 1st 2023 -#> 1195 0 1 0 0 La Liga M ESP 1st 2023 -#> 1196 0 3 0 0 La Liga M ESP 1st 2023 -#> 1197 3 4 2 0 La Liga M ESP 1st 2023 -#> 1198 3 3 1 0 La Liga M ESP 1st 2023 -#> 1199 3 5 7 0 La Liga M ESP 1st 2023 -#> 1200 0 5 1 0 La Liga M ESP 1st 2023 -#> 1201 0 0 1 0 La Liga M ESP 1st 2023 -#> 1202 0 2 0 0 La Liga M ESP 1st 2023 -#> 1203 0 0 1 0 La Liga M ESP 1st 2023 -#> 1204 0 0 0 0 La Liga M ESP 1st 2023 -#> 1205 0 2 1 0 La Liga M ESP 1st 2023 -#> 1206 1 2 0 0 La Liga M ESP 1st 2023 -#> 1207 0 0 0 0 La Liga M ESP 1st 2023 -#> 1208 0 3 0 0 La Liga M ESP 1st 2023 -#> 1209 1 4 0 0 La Liga M ESP 1st 2023 -#> 1210 0 0 1 0 La Liga M ESP 1st 2023 -#> 1211 2 2 2 0 La Liga M ESP 1st 2023 -#> 1212 1 1 0 0 La Liga M ESP 1st 2023 -#> 1213 0 0 3 0 La Liga M ESP 1st 2023 -#> 1214 2 2 8 0 La Liga M ESP 1st 2023 -#> 1215 2 3 1 1 La Liga M ESP 1st 2023 -#> 1216 0 0 0 0 La Liga M ESP 1st 2023 -#> 1217 0 1 3 0 La Liga M ESP 1st 2023 -#> 1218 0 0 1 0 La Liga M ESP 1st 2023 -#> 1219 0 1 0 0 La Liga M ESP 1st 2023 -#> 1220 1 3 0 0 La Liga M ESP 1st 2023 -#> 1221 0 2 0 0 La Liga M ESP 1st 2023 -#> 1222 0 0 0 0 La Liga M ESP 1st 2023 -#> 1223 4 8 6 0 La Liga M ESP 1st 2023 -#> 1224 1 3 1 0 La Liga M ESP 1st 2023 -#> 1225 0 3 3 0 La Liga M ESP 1st 2023 -#> 1226 1 3 2 0 La Liga M ESP 1st 2023 -#> 1227 0 3 0 0 La Liga M ESP 1st 2023 -#> 1228 0 0 5 0 La Liga M ESP 1st 2023 -#> 1229 1 1 3 0 La Liga M ESP 1st 2023 -#> 1230 0 2 0 0 La Liga M ESP 1st 2023 -#> 1231 1 2 2 0 La Liga M ESP 1st 2023 -#> 1232 0 0 0 0 La Liga M ESP 1st 2023 -#> 1233 0 0 0 0 La Liga M ESP 1st 2023 -#> 1234 0 0 0 0 La Liga M ESP 1st 2023 -#> 1235 1 1 1 0 La Liga M ESP 1st 2023 -#> 1236 2 3 0 0 La Liga M ESP 1st 2023 -#> 1237 1 6 0 0 La Liga M ESP 1st 2023 -#> 1238 0 1 0 0 La Liga M ESP 1st 2023 -#> 1239 1 2 0 0 La Liga M ESP 1st 2023 -#> 1240 0 0 1 0 La Liga M ESP 1st 2023 -#> 1241 0 0 0 0 La Liga M ESP 1st 2023 -#> 1242 0 1 0 0 La Liga M ESP 1st 2023 -#> 1243 4 4 1 0 La Liga M ESP 1st 2023 -#> 1244 1 2 7 0 La Liga M ESP 1st 2023 -#> 1245 1 1 3 0 La Liga M ESP 1st 2023 -#> 1246 1 4 2 0 La Liga M ESP 1st 2023 -#> 1247 4 7 0 0 La Liga M ESP 1st 2023 -#> 1248 0 0 2 0 La Liga M ESP 1st 2023 -#> 1249 0 1 0 0 La Liga M ESP 1st 2023 -#> 1250 0 0 1 0 La Liga M ESP 1st 2023 -#> 1251 0 1 0 0 La Liga M ESP 1st 2023 -#> 1252 1 2 0 0 La Liga M ESP 1st 2023 -#> 1253 0 1 2 0 La Liga M ESP 1st 2023 -#> 1254 0 1 0 0 La Liga M ESP 1st 2023 -#> 1255 0 0 0 0 La Liga M ESP 1st 2023 -#> 1256 2 9 0 0 La Liga M ESP 1st 2023 -#> 1257 0 0 0 0 La Liga M ESP 1st 2023 -#> 1258 2 3 0 0 La Liga M ESP 1st 2023 -#> 1259 0 0 2 0 La Liga M ESP 1st 2023 -#> 1260 2 2 1 0 La Liga M ESP 1st 2023 -#> 1261 3 4 1 0 La Liga M ESP 1st 2023 -#> 1262 1 1 4 0 La Liga M ESP 1st 2023 -#> 1263 0 2 5 0 La Liga M ESP 1st 2023 -#> 1264 0 0 2 1 La Liga M ESP 1st 2023 -#> 1265 0 2 0 1 La Liga M ESP 1st 2023 -#> 1266 0 0 0 0 La Liga M ESP 1st 2023 -#> 1267 1 1 0 0 La Liga M ESP 1st 2023 -#> 1268 0 0 0 0 La Liga M ESP 1st 2023 -#> 1269 0 3 2 1 La Liga M ESP 1st 2023 -#> 1270 1 1 1 0 La Liga M ESP 1st 2023 -#> 1271 0 0 0 0 La Liga M ESP 1st 2023 -#> 1272 0 NA NA NA La Liga M ESP 1st 2023 -#> 1273 0 2 0 0 La Liga M ESP 1st 2023 -#> 1274 0 2 1 0 La Liga M ESP 1st 2023 -#> 1275 0 0 3 0 La Liga M ESP 1st 2023 -#> 1276 0 2 9 0 La Liga M ESP 1st 2023 -#> 1277 1 3 2 0 La Liga M ESP 1st 2023 -#> 1278 3 5 4 0 La Liga M ESP 1st 2023 -#> 1279 0 0 3 0 La Liga M ESP 1st 2023 -#> 1280 0 0 0 0 La Liga M ESP 1st 2023 -#> 1281 0 0 0 0 La Liga M ESP 1st 2023 -#> 1282 0 0 0 0 La Liga M ESP 1st 2023 -#> 1283 0 1 0 0 La Liga M ESP 1st 2023 -#> 1284 0 3 0 0 La Liga M ESP 1st 2023 -#> 1285 1 3 1 0 La Liga M ESP 1st 2023 -#> 1286 1 2 2 0 La Liga M ESP 1st 2023 -#> 1287 0 2 0 0 La Liga M ESP 1st 2023 -#> 1288 2 3 0 0 La Liga M ESP 1st 2023 -#> 1289 1 1 2 1 La Liga M ESP 1st 2023 -#> 1290 2 2 5 0 La Liga M ESP 1st 2023 -#> 1291 1 2 0 0 La Liga M ESP 1st 2023 -#> 1292 1 1 0 0 La Liga M ESP 1st 2023 -#> 1293 0 0 0 0 La Liga M ESP 1st 2023 -#> 1294 0 0 2 0 La Liga M ESP 1st 2023 -#> 1295 0 3 0 0 La Liga M ESP 1st 2023 -#> 1296 0 2 1 0 La Liga M ESP 1st 2023 -#> 1297 0 0 4 0 La Liga M ESP 1st 2023 -#> 1298 1 1 2 0 La Liga M ESP 1st 2023 -#> 1299 1 7 1 0 La Liga M ESP 1st 2023 -#> 1300 1 3 4 0 La Liga M ESP 1st 2023 -#> 1301 1 3 1 0 La Liga M ESP 1st 2023 -#> 1302 2 2 3 0 La Liga M ESP 1st 2023 -#> 1303 0 0 1 0 La Liga M ESP 1st 2023 -#> 1304 0 0 2 0 La Liga M ESP 1st 2023 -#> 1305 0 0 4 0 La Liga M ESP 1st 2023 -#> 1306 0 0 2 0 La Liga M ESP 1st 2023 -#> 1307 1 1 8 0 La Liga M ESP 1st 2023 -#> 1308 1 4 3 0 La Liga M ESP 1st 2023 -#> 1309 0 0 2 0 La Liga M ESP 1st 2023 -#> 1310 0 0 0 0 La Liga M ESP 1st 2023 -#> 1311 0 1 0 0 La Liga M ESP 1st 2023 -#> 1312 0 1 0 0 La Liga M ESP 1st 2023 -#> 1313 1 2 0 0 La Liga M ESP 1st 2023 -#> 1314 0 4 0 0 La Liga M ESP 1st 2023 -#> 1315 1 1 0 0 La Liga M ESP 1st 2023 -#> 1316 1 1 1 0 La Liga M ESP 1st 2023 -#> 1317 0 0 0 0 La Liga M ESP 1st 2023 -#> 1318 0 1 0 0 La Liga M ESP 1st 2023 -#> 1319 0 0 0 0 La Liga M ESP 1st 2023 -#> 1320 0 1 0 0 La Liga M ESP 1st 2023 -#> 1321 0 0 1 0 La Liga M ESP 1st 2023 -#> 1322 2 6 2 0 La Liga M ESP 1st 2023 -#> 1323 0 0 5 0 La Liga M ESP 1st 2023 -#> 1324 1 1 4 0 La Liga M ESP 1st 2023 -#> 1325 4 8 1 0 La Liga M ESP 1st 2023 -#> 1326 2 2 2 0 La Liga M ESP 1st 2023 -#> 1327 0 0 0 0 La Liga M ESP 1st 2023 -#> 1328 0 0 0 0 La Liga M ESP 1st 2023 -#> 1329 0 0 0 0 La Liga M ESP 1st 2023 -#> 1330 0 0 0 0 La Liga M ESP 1st 2023 -#> 1331 1 3 0 0 La Liga M ESP 1st 2023 -#> 1332 0 0 1 0 La Liga M ESP 1st 2023 -#> 1333 1 1 0 0 La Liga M ESP 1st 2023 -#> 1334 1 1 0 0 La Liga M ESP 1st 2023 -#> 1335 1 6 4 0 La Liga M ESP 1st 2023 -#> 1336 0 0 0 0 La Liga M ESP 1st 2023 -#> 1337 0 2 2 0 La Liga M ESP 1st 2023 -#> 1338 0 0 0 0 La Liga M ESP 1st 2023 -#> 1339 2 2 4 0 La Liga M ESP 1st 2023 -#> 1340 0 0 7 0 La Liga M ESP 1st 2023 -#> 1341 1 1 2 0 La Liga M ESP 1st 2023 -#> 1342 0 0 0 0 La Liga M ESP 1st 2023 -#> 1343 0 1 0 0 La Liga M ESP 1st 2023 -#> 1344 1 2 0 0 La Liga M ESP 1st 2023 -#> 1345 0 1 0 0 La Liga M ESP 1st 2023 -#> 1346 0 0 0 0 La Liga M ESP 1st 2023 -#> 1347 0 0 0 0 La Liga M ESP 1st 2023 -#> 1348 0 1 0 0 La Liga M ESP 1st 2023 -#> 1349 2 7 1 1 La Liga M ESP 1st 2023 -#> 1350 0 2 0 0 La Liga M ESP 1st 2023 -#> 1351 0 0 0 0 La Liga M ESP 1st 2023 -#> 1352 0 1 1 0 La Liga M ESP 1st 2023 -#> 1353 1 1 0 0 La Liga M ESP 1st 2023 -#> 1354 1 3 7 0 La Liga M ESP 1st 2023 -#> 1355 3 3 6 0 La Liga M ESP 1st 2023 -#> 1356 4 4 5 0 La Liga M ESP 1st 2023 -#> 1357 0 1 4 0 La Liga M ESP 1st 2023 -#> 1358 0 0 2 0 La Liga M ESP 1st 2023 -#> 1359 0 1 1 0 La Liga M ESP 1st 2023 -#> 1360 0 0 3 0 La Liga M ESP 1st 2023 -#> 1361 3 4 1 0 La Liga M ESP 1st 2023 -#> 1362 0 1 0 0 La Liga M ESP 1st 2023 -#> 1363 0 1 0 0 La Liga M ESP 1st 2023 -#> 1364 0 1 0 0 La Liga M ESP 1st 2023 -#> 1365 1 4 1 0 La Liga M ESP 1st 2023 -#> 1366 1 2 0 0 La Liga M ESP 1st 2023 -#> 1367 0 1 0 0 La Liga M ESP 1st 2023 -#> 1368 1 1 1 0 La Liga M ESP 1st 2023 -#> 1369 1 4 0 0 La Liga M ESP 1st 2023 -#> 1370 2 2 2 0 La Liga M ESP 1st 2023 -#> 1371 0 0 2 0 La Liga M ESP 1st 2023 -#> 1372 0 0 0 0 La Liga M ESP 1st 2023 -#> 1373 0 1 0 0 La Liga M ESP 1st 2023 -#> 1374 0 1 0 0 La Liga M ESP 1st 2023 -#> 1375 0 0 0 0 La Liga M ESP 1st 2023 -#> 1376 0 3 0 0 La Liga M ESP 1st 2023 -#> 1377 0 0 0 0 La Liga M ESP 1st 2023 -#> 1378 0 2 0 0 La Liga M ESP 1st 2023 -#> 1379 0 1 0 0 La Liga M ESP 1st 2023 -#> 1380 0 0 0 0 La Liga M ESP 1st 2023 -#> 1381 1 1 0 0 La Liga M ESP 1st 2023 -#> 1382 1 1 1 0 La Liga M ESP 1st 2023 -#> 1383 0 0 2 0 La Liga M ESP 1st 2023 -#> 1384 2 6 1 0 La Liga M ESP 1st 2023 -#> 1385 0 0 2 0 La Liga M ESP 1st 2023 -#> 1386 0 0 0 0 La Liga M ESP 1st 2023 -#> 1387 0 2 2 0 La Liga M ESP 1st 2023 -#> 1388 0 0 0 0 La Liga M ESP 1st 2023 -#> 1389 2 2 0 0 La Liga M ESP 1st 2023 -#> 1390 0 0 0 0 La Liga M ESP 1st 2023 -#> 1391 0 5 2 0 La Liga M ESP 1st 2023 -#> 1392 0 0 0 0 La Liga M ESP 1st 2023 -#> 1393 0 2 0 0 La Liga M ESP 1st 2023 -#> 1394 1 2 2 0 La Liga M ESP 1st 2023 -#> 1395 0 2 0 0 La Liga M ESP 1st 2023 -#> 1396 1 2 0 0 La Liga M ESP 1st 2023 -#> 1397 0 0 0 0 La Liga M ESP 1st 2023 -#> 1398 3 4 5 0 La Liga M ESP 1st 2023 -#> 1399 2 4 4 0 La Liga M ESP 1st 2023 -#> 1400 3 3 2 0 La Liga M ESP 1st 2023 -#> 1401 0 4 2 0 La Liga M ESP 1st 2023 -#> 1402 0 0 0 0 La Liga M ESP 1st 2023 -#> 1403 1 4 2 0 La Liga M ESP 1st 2023 -#> 1404 0 0 1 0 La Liga M ESP 1st 2023 -#> 1405 0 1 0 0 La Liga M ESP 1st 2023 -#> 1406 0 0 0 0 La Liga M ESP 1st 2023 -#> 1407 1 1 0 0 La Liga M ESP 1st 2023 -#> 1408 2 3 1 0 La Liga M ESP 1st 2023 -#> 1409 0 0 0 0 La Liga M ESP 1st 2023 -#> 1410 2 4 0 0 La Liga M ESP 1st 2023 -#> 1411 0 2 0 0 La Liga M ESP 1st 2023 -#> 1412 3 8 1 0 La Liga M ESP 1st 2023 -#> 1413 3 5 2 0 La Liga M ESP 1st 2023 -#> 1414 1 1 1 0 La Liga M ESP 1st 2023 -#> 1415 2 3 1 0 La Liga M ESP 1st 2023 -#> 1416 1 2 1 0 La Liga M ESP 1st 2023 -#> 1417 0 0 1 0 La Liga M ESP 1st 2023 -#> 1418 0 0 0 0 La Liga M ESP 1st 2023 -#> 1419 0 0 1 0 La Liga M ESP 1st 2023 -#> 1420 0 0 0 0 La Liga M ESP 1st 2023 -#> 1421 0 5 0 0 La Liga M ESP 1st 2023 -#> 1422 0 0 0 0 La Liga M ESP 1st 2023 -#> 1423 0 0 0 0 La Liga M ESP 1st 2023 -#> 1424 0 1 1 0 La Liga M ESP 1st 2023 -#> 1425 0 0 0 0 La Liga M ESP 1st 2023 -#> 1426 0 0 1 0 La Liga M ESP 1st 2023 -#> 1427 1 2 1 0 La Liga M ESP 1st 2023 -#> 1428 1 2 0 0 La Liga M ESP 1st 2023 -#> 1429 0 0 1 0 La Liga M ESP 1st 2023 -#> 1430 0 3 3 0 La Liga M ESP 1st 2023 -#> 1431 4 5 3 0 La Liga M ESP 1st 2023 -#> 1432 2 4 1 1 La Liga M ESP 1st 2023 -#> 1433 0 1 1 0 La Liga M ESP 1st 2023 -#> 1434 0 0 1 0 La Liga M ESP 1st 2023 -#> 1435 0 0 0 0 La Liga M ESP 1st 2023 -#> 1436 0 0 0 0 La Liga M ESP 1st 2023 -#> 1437 0 0 1 0 La Liga M ESP 1st 2023 -#> 1438 2 4 2 0 La Liga M ESP 1st 2023 -#> 1439 0 4 1 0 La Liga M ESP 1st 2023 -#> 1440 0 1 0 0 La Liga M ESP 1st 2023 -#> 1441 0 1 1 0 La Liga M ESP 1st 2023 -#> 1442 0 0 1 0 La Liga M ESP 1st 2023 -#> 1443 0 1 0 0 La Liga M ESP 1st 2023 -#> 1444 1 1 1 0 La Liga M ESP 1st 2023 -#> 1445 4 6 3 0 La Liga M ESP 1st 2023 -#> 1446 1 1 3 0 La Liga M ESP 1st 2023 -#> 1447 3 6 5 0 La Liga M ESP 1st 2023 -#> 1448 0 4 2 0 La Liga M ESP 1st 2023 -#> 1449 0 0 0 0 La Liga M ESP 1st 2023 -#> 1450 0 0 1 0 La Liga M ESP 1st 2023 -#> 1451 0 0 0 0 La Liga M ESP 1st 2023 -#> 1452 0 0 0 0 La Liga M ESP 1st 2023 -#> 1453 1 3 0 0 La Liga M ESP 1st 2023 -#> 1454 0 3 0 0 La Liga M ESP 1st 2023 -#> 1455 0 2 0 0 La Liga M ESP 1st 2023 -#> 1456 0 1 1 0 La Liga M ESP 1st 2023 -#> 1457 0 0 1 0 La Liga M ESP 1st 2023 -#> 1458 1 1 2 0 La Liga M ESP 1st 2023 -#> 1459 0 4 1 0 La Liga M ESP 1st 2023 -#> 1460 0 1 0 0 La Liga M ESP 1st 2023 -#> 1461 1 3 2 0 La Liga M ESP 1st 2023 -#> 1462 0 2 2 0 La Liga M ESP 1st 2023 -#> 1463 0 1 5 0 La Liga M ESP 1st 2023 -#> 1464 0 0 0 0 La Liga M ESP 1st 2023 -#> 1465 0 0 2 0 La Liga M ESP 1st 2023 -#> 1466 0 0 0 0 La Liga M ESP 1st 2023 -#> 1467 0 0 1 0 La Liga M ESP 1st 2023 -#> 1468 2 2 0 0 La Liga M ESP 1st 2023 -#> 1469 0 0 1 0 La Liga M ESP 1st 2023 -#> 1470 1 3 2 0 La Liga M ESP 1st 2023 -#> 1471 1 1 0 0 La Liga M ESP 1st 2023 -#> 1472 0 0 0 0 La Liga M ESP 1st 2023 -#> 1473 2 5 2 0 La Liga M ESP 1st 2023 -#> 1474 1 1 3 0 La Liga M ESP 1st 2023 -#> 1475 2 5 4 0 La Liga M ESP 1st 2023 -#> 1476 0 2 6 0 La Liga M ESP 1st 2023 -#> 1477 2 5 6 1 La Liga M ESP 1st 2023 -#> 1478 0 3 6 0 La Liga M ESP 1st 2023 -#> 1479 0 0 0 0 La Liga M ESP 1st 2023 -#> 1480 1 2 1 0 La Liga M ESP 1st 2023 -#> 1481 0 0 0 0 La Liga M ESP 1st 2023 -#> 1482 0 1 0 0 La Liga M ESP 1st 2023 -#> 1483 0 0 0 0 La Liga M ESP 1st 2023 -#> 1484 2 5 2 0 La Liga M ESP 1st 2023 -#> 1485 0 2 1 1 La Liga M ESP 1st 2023 -#> 1486 0 1 1 0 La Liga M ESP 1st 2023 -#> 1487 0 0 0 0 La Liga M ESP 1st 2023 -#> 1488 0 2 3 0 La Liga M ESP 1st 2023 -#> 1489 0 0 0 0 La Liga M ESP 1st 2023 -#> 1490 1 5 0 0 La Liga M ESP 1st 2023 -#> 1491 0 0 0 0 La Liga M ESP 1st 2023 -#> 1492 1 1 2 0 La Liga M ESP 1st 2023 -#> 1493 0 3 9 0 La Liga M ESP 1st 2023 -#> 1494 4 4 5 0 La Liga M ESP 1st 2023 -#> 1495 0 0 0 0 La Liga M ESP 1st 2023 -#> 1496 0 1 4 0 La Liga M ESP 1st 2023 -#> 1497 0 0 1 0 La Liga M ESP 1st 2023 -#> 1498 1 2 1 0 La Liga M ESP 1st 2023 -#> 1499 0 0 0 0 La Liga M ESP 1st 2023 -#> 1500 0 0 0 0 La Liga M ESP 1st 2023 -#> 1501 0 0 0 0 La Liga M ESP 1st 2023 -#> 1502 2 7 2 0 La Liga M ESP 1st 2023 -#> 1503 0 1 0 0 La Liga M ESP 1st 2023 -#> 1504 1 1 0 0 La Liga M ESP 1st 2023 -#> 1505 1 3 1 0 La Liga M ESP 1st 2023 -#> 1506 0 0 0 0 La Liga M ESP 1st 2023 -#> 1507 1 2 3 0 La Liga M ESP 1st 2023 -#> 1508 1 1 4 0 La Liga M ESP 1st 2023 -#> 1509 2 4 4 0 La Liga M ESP 1st 2023 -#> 1510 1 1 2 0 La Liga M ESP 1st 2023 -#> 1511 0 0 2 0 La Liga M ESP 1st 2023 -#> 1512 1 1 0 0 La Liga M ESP 1st 2023 -#> 1513 0 0 0 0 La Liga M ESP 1st 2023 -#> 1514 1 3 0 0 La Liga M ESP 1st 2023 -#> 1515 1 1 0 0 La Liga M ESP 1st 2023 -#> 1516 2 2 1 0 La Liga M ESP 1st 2023 -#> 1517 0 0 1 0 La Liga M ESP 1st 2023 -#> 1518 1 1 1 0 La Liga M ESP 1st 2023 -#> 1519 0 0 0 0 La Liga M ESP 1st 2023 -#> 1520 0 2 1 0 La Liga M ESP 1st 2023 -#> 1521 0 0 0 0 La Liga M ESP 1st 2023 -#> 1522 2 5 1 0 La Liga M ESP 1st 2023 -#> 1523 0 1 2 0 La Liga M ESP 1st 2023 -#> 1524 1 1 8 0 La Liga M ESP 1st 2023 -#> 1525 0 0 3 0 La Liga M ESP 1st 2023 -#> 1526 1 8 2 0 La Liga M ESP 1st 2023 -#> 1527 0 0 0 0 La Liga M ESP 1st 2023 -#> 1528 0 0 0 0 La Liga M ESP 1st 2023 -#> 1529 0 0 0 0 La Liga M ESP 1st 2023 -#> 1530 1 6 0 0 La Liga M ESP 1st 2023 -#> 1531 0 0 0 0 La Liga M ESP 1st 2023 -#> 1532 0 4 0 0 La Liga M ESP 1st 2023 -#> 1533 0 0 0 0 La Liga M ESP 1st 2023 -#> 1534 0 2 0 0 La Liga M ESP 1st 2023 -#> 1535 0 2 1 0 La Liga M ESP 1st 2023 -#> 1536 0 1 0 0 La Liga M ESP 1st 2023 -#> 1537 0 2 0 0 La Liga M ESP 1st 2023 -#> 1538 0 0 0 0 La Liga M ESP 1st 2023 -#> 1539 0 1 2 0 La Liga M ESP 1st 2023 -#> 1540 1 3 6 0 La Liga M ESP 1st 2023 -#> 1541 0 0 3 0 La Liga M ESP 1st 2023 -#> 1542 0 2 3 0 La Liga M ESP 1st 2023 -#> 1543 0 0 0 1 La Liga M ESP 1st 2023 -#> 1544 0 1 1 0 La Liga M ESP 1st 2023 -#> 1545 0 0 0 0 La Liga M ESP 1st 2023 -#> 1546 0 2 0 0 La Liga M ESP 1st 2023 -#> 1547 0 0 1 0 La Liga M ESP 1st 2023 -#> 1548 0 0 0 0 La Liga M ESP 1st 2023 -#> 1549 0 2 2 0 La Liga M ESP 1st 2023 -#> 1550 0 0 1 0 La Liga M ESP 1st 2023 -#> 1551 0 2 0 0 La Liga M ESP 1st 2023 -#> 1552 1 1 1 0 La Liga M ESP 1st 2023 -#> 1553 0 1 0 0 La Liga M ESP 1st 2023 -#> 1554 1 5 2 0 La Liga M ESP 1st 2023 -#> 1555 0 0 5 0 La Liga M ESP 1st 2023 -#> 1556 0 0 5 0 La Liga M ESP 1st 2023 -#> 1557 0 5 3 0 La Liga M ESP 1st 2023 -#> 1558 0 1 0 0 La Liga M ESP 1st 2023 -#> 1559 0 0 2 0 La Liga M ESP 1st 2023 -#> 1560 0 0 2 0 La Liga M ESP 1st 2023 -#> 1561 0 0 0 0 La Liga M ESP 1st 2023 -#> 1562 0 0 0 0 La Liga M ESP 1st 2023 -#> 1563 1 2 0 0 La Liga M ESP 1st 2023 -#> 1564 0 1 1 0 La Liga M ESP 1st 2023 -#> 1565 2 5 1 0 La Liga M ESP 1st 2023 -#> 1566 0 0 0 0 La Liga M ESP 1st 2023 -#> 1567 0 0 1 0 La Liga M ESP 1st 2023 -#> 1568 0 1 1 0 La Liga M ESP 1st 2023 -#> 1569 0 2 0 0 La Liga M ESP 1st 2023 -#> 1570 1 3 2 0 La Liga M ESP 1st 2023 -#> 1571 0 0 1 0 La Liga M ESP 1st 2023 -#> 1572 2 2 2 0 La Liga M ESP 1st 2023 -#> 1573 1 1 3 0 La Liga M ESP 1st 2023 -#> 1574 0 0 0 0 La Liga M ESP 1st 2023 -#> 1575 0 3 0 0 La Liga M ESP 1st 2023 -#> 1576 0 0 1 0 La Liga M ESP 1st 2023 -#> 1577 0 0 0 0 La Liga M ESP 1st 2023 -#> 1578 0 0 0 0 La Liga M ESP 1st 2023 -#> 1579 0 1 1 0 La Liga M ESP 1st 2023 -#> 1580 2 6 1 0 La Liga M ESP 1st 2023 -#> 1581 0 1 2 0 La Liga M ESP 1st 2023 -#> 1582 0 0 0 0 La Liga M ESP 1st 2023 -#> 1583 0 3 0 0 La Liga M ESP 1st 2023 -#> 1584 1 4 1 0 La Liga M ESP 1st 2023 -#> 1585 0 2 1 0 La Liga M ESP 1st 2023 -#> 1586 0 0 1 0 La Liga M ESP 1st 2023 -#> 1587 0 0 0 0 La Liga M ESP 1st 2023 -#> 1588 1 2 1 0 La Liga M ESP 1st 2023 -#> 1589 1 1 0 0 La Liga M ESP 1st 2023 -#> 1590 0 0 0 0 La Liga M ESP 1st 2023 -#> 1591 0 0 0 0 La Liga M ESP 1st 2023 -#> 1592 0 0 0 0 La Liga M ESP 1st 2023 -#> 1593 0 1 0 0 La Liga M ESP 1st 2023 -#> 1594 1 1 0 0 La Liga M ESP 1st 2023 -#> 1595 0 0 0 0 La Liga M ESP 1st 2023 -#> 1596 0 1 0 0 La Liga M ESP 1st 2023 -#> 1597 2 2 0 0 La Liga M ESP 1st 2023 -#> 1598 5 10 0 0 La Liga M ESP 1st 2023 -#> 1599 0 0 0 0 La Liga M ESP 1st 2023 -#> 1600 0 1 0 0 La Liga M ESP 1st 2023 -#> 1601 0 0 1 0 La Liga M ESP 1st 2023 -#> 1602 1 3 0 0 La Liga M ESP 1st 2023 -#> 1603 1 2 0 0 La Liga M ESP 1st 2023 -#> 1604 2 3 0 0 La Liga M ESP 1st 2023 -#> 1605 0 2 0 0 La Liga M ESP 1st 2023 -#> 1606 0 0 0 0 La Liga M ESP 1st 2023 -#> 1607 2 2 1 0 La Liga M ESP 1st 2023 -#> 1608 0 0 0 0 La Liga M ESP 1st 2023 -#> 1609 1 2 0 0 La Liga M ESP 1st 2023 -#> 1610 0 0 0 0 La Liga M ESP 1st 2023 -#> 1611 1 2 1 0 La Liga M ESP 1st 2023 -#> 1612 0 3 0 0 La Liga M ESP 1st 2023 -#> 1613 1 3 1 0 La Liga M ESP 1st 2023 -#> 1614 0 2 3 0 La Liga M ESP 1st 2023 -#> 1615 0 0 0 0 La Liga M ESP 1st 2023 -#> 1616 2 3 2 0 La Liga M ESP 1st 2023 -#> 1617 2 3 6 0 La Liga M ESP 1st 2023 -#> 1618 0 0 1 0 La Liga M ESP 1st 2023 -#> 1619 0 0 0 0 La Liga M ESP 1st 2023 -#> 1620 2 2 2 1 La Liga M ESP 1st 2023 -#> 1621 1 3 2 0 La Liga M ESP 1st 2023 -#> 1622 0 1 0 0 La Liga M ESP 1st 2023 -#> 1623 0 0 0 0 La Liga M ESP 1st 2023 -#> 1624 0 0 0 0 La Liga M ESP 1st 2023 -#> 1625 0 1 0 0 La Liga M ESP 1st 2023 -#> 1626 2 4 0 0 La Liga M ESP 1st 2023 -#> 1627 0 0 0 0 La Liga M ESP 1st 2023 -#> 1628 0 1 1 0 La Liga M ESP 1st 2023 -#> 1629 0 0 1 0 La Liga M ESP 1st 2023 -#> 1630 0 NA NA NA La Liga M ESP 1st 2023 -#> 1631 1 3 1 0 La Liga M ESP 1st 2023 -#> 1632 0 3 0 0 La Liga M ESP 1st 2023 -#> 1633 0 0 0 0 La Liga M ESP 1st 2023 -#> 1634 0 1 2 0 La Liga M ESP 1st 2023 -#> 1635 1 2 2 0 La Liga M ESP 1st 2023 -#> 1636 0 0 2 0 La Liga M ESP 1st 2023 -#> 1637 0 5 2 0 La Liga M ESP 1st 2023 -#> 1638 0 0 0 0 La Liga M ESP 1st 2023 -#> 1639 0 0 3 0 La Liga M ESP 1st 2023 -#> 1640 0 2 0 0 La Liga M ESP 1st 2023 -#> 1641 0 0 1 0 La Liga M ESP 1st 2023 -#> 1642 1 5 0 0 La Liga M ESP 1st 2023 -#> 1643 1 2 0 0 La Liga M ESP 1st 2023 -#> 1644 1 3 1 0 La Liga M ESP 1st 2023 -#> 1645 2 2 0 0 La Liga M ESP 1st 2023 -#> 1646 0 0 1 0 La Liga M ESP 1st 2023 -#> 1647 0 3 0 0 La Liga M ESP 1st 2023 -#> 1648 1 5 2 0 La Liga M ESP 1st 2023 -#> 1649 2 4 6 0 La Liga M ESP 1st 2023 -#> 1650 1 1 5 0 La Liga M ESP 1st 2023 -#> 1651 0 2 1 0 La Liga M ESP 1st 2023 -#> 1652 0 0 0 0 La Liga M ESP 1st 2023 -#> 1653 1 2 2 0 La Liga M ESP 1st 2023 -#> 1654 0 0 0 0 La Liga M ESP 1st 2023 -#> 1655 1 1 1 0 La Liga M ESP 1st 2023 -#> 1656 0 0 0 0 La Liga M ESP 1st 2023 -#> 1657 1 4 1 0 La Liga M ESP 1st 2023 -#> 1658 0 0 0 0 La Liga M ESP 1st 2023 -#> 1659 0 1 0 0 La Liga M ESP 1st 2023 -#> 1660 1 1 0 0 La Liga M ESP 1st 2023 -#> 1661 1 1 0 0 La Liga M ESP 1st 2023 -#> 1662 0 1 0 0 La Liga M ESP 1st 2023 -#> 1663 2 4 1 0 La Liga M ESP 1st 2023 -#> 1664 2 3 5 0 La Liga M ESP 1st 2023 -#> 1665 1 1 5 0 La Liga M ESP 1st 2023 -#> 1666 2 2 3 0 La Liga M ESP 1st 2023 -#> 1667 0 3 4 0 La Liga M ESP 1st 2023 -#> 1668 0 0 2 0 La Liga M ESP 1st 2023 -#> 1669 0 1 0 0 La Liga M ESP 1st 2023 -#> 1670 0 1 0 0 La Liga M ESP 1st 2023 -#> 1671 0 2 0 0 La Liga M ESP 1st 2023 -#> 1672 2 3 0 0 La Liga M ESP 1st 2023 -#> 1673 0 0 0 0 La Liga M ESP 1st 2023 -#> 1674 0 0 0 0 La Liga M ESP 1st 2023 -#> 1675 1 2 1 0 La Liga M ESP 1st 2023 -#> 1676 1 3 0 0 La Liga M ESP 1st 2023 -#> 1677 1 6 0 0 La Liga M ESP 1st 2023 -#> 1678 1 2 0 0 La Liga M ESP 1st 2023 -#> 1679 1 1 2 0 La Liga M ESP 1st 2023 -#> 1680 0 0 3 0 La Liga M ESP 1st 2023 -#> 1681 0 1 2 0 La Liga M ESP 1st 2023 -#> 1682 0 0 0 0 La Liga M ESP 1st 2023 -#> 1683 2 3 1 0 La Liga M ESP 1st 2023 -#> 1684 0 0 1 0 La Liga M ESP 1st 2023 -#> 1685 0 0 1 0 La Liga M ESP 1st 2023 -#> 1686 0 0 0 0 La Liga M ESP 1st 2023 -#> 1687 0 0 1 0 La Liga M ESP 1st 2023 -#> 1688 0 0 0 0 La Liga M ESP 1st 2023 -#> 1689 0 1 1 0 La Liga M ESP 1st 2023 -#> 1690 0 1 0 0 La Liga M ESP 1st 2023 -#> 1691 0 3 0 0 La Liga M ESP 1st 2023 -#> 1692 0 0 0 0 La Liga M ESP 1st 2023 -#> 1693 0 1 2 0 La Liga M ESP 1st 2023 -#> 1694 1 2 1 0 La Liga M ESP 1st 2023 -#> 1695 1 1 4 0 La Liga M ESP 1st 2023 -#> 1696 0 0 0 0 La Liga M ESP 1st 2023 -#> 1697 0 2 4 0 La Liga M ESP 1st 2023 -#> 1698 1 2 1 1 La Liga M ESP 1st 2023 -#> 1699 0 1 0 0 La Liga M ESP 1st 2023 -#> 1700 0 0 0 0 La Liga M ESP 1st 2023 -#> 1701 0 0 4 0 La Liga M ESP 1st 2023 -#> 1702 0 0 0 0 La Liga M ESP 1st 2023 -#> 1703 0 0 1 0 La Liga M ESP 1st 2023 -#> 1704 0 0 0 0 La Liga M ESP 1st 2023 -#> 1705 2 3 1 0 La Liga M ESP 1st 2023 -#> 1706 1 2 0 0 La Liga M ESP 1st 2023 -#> 1707 0 0 2 0 La Liga M ESP 1st 2023 -#> 1708 0 2 2 0 La Liga M ESP 1st 2023 -#> 1709 0 0 1 0 La Liga M ESP 1st 2023 -#> 1710 0 1 4 0 La Liga M ESP 1st 2023 -#> 1711 4 5 5 0 La Liga M ESP 1st 2023 -#> 1712 0 0 1 0 La Liga M ESP 1st 2023 -#> 1713 1 2 11 0 La Liga M ESP 1st 2023 -#> 1714 2 3 8 0 La Liga M ESP 1st 2023 -#> 1715 0 1 2 0 La Liga M ESP 1st 2023 -#> 1716 0 0 1 0 La Liga M ESP 1st 2023 -#> 1717 0 0 0 0 La Liga M ESP 1st 2023 -#> 1718 0 1 0 0 La Liga M ESP 1st 2023 -#> 1719 0 5 0 0 La Liga M ESP 1st 2023 -#> 1720 0 1 0 0 La Liga M ESP 1st 2023 -#> 1721 1 2 0 0 La Liga M ESP 1st 2023 -#> 1722 0 1 0 0 La Liga M ESP 1st 2023 -#> 1723 0 3 1 0 La Liga M ESP 1st 2023 -#> 1724 2 2 3 0 La Liga M ESP 1st 2023 -#> 1725 0 3 1 0 La Liga M ESP 1st 2023 -#> 1726 0 0 0 0 La Liga M ESP 1st 2023 -#> 1727 0 3 1 0 La Liga M ESP 1st 2023 -#> 1728 1 1 0 0 La Liga M ESP 1st 2023 -#> 1729 1 2 4 1 La Liga M ESP 1st 2023 -#> 1730 0 1 4 0 La Liga M ESP 1st 2023 -#> 1731 2 2 0 0 La Liga M ESP 1st 2023 -#> 1732 0 0 1 0 La Liga M ESP 1st 2023 -#> 1733 1 2 4 0 La Liga M ESP 1st 2023 -#> 1734 2 4 0 0 La Liga M ESP 1st 2023 -#> 1735 0 0 0 0 La Liga M ESP 1st 2023 -#> 1736 0 0 2 0 La Liga M ESP 1st 2023 -#> 1737 0 1 0 0 La Liga M ESP 1st 2023 -#> 1738 2 4 1 0 La Liga M ESP 1st 2023 -#> 1739 1 1 1 0 La Liga M ESP 1st 2023 -#> 1740 0 2 0 0 La Liga M ESP 1st 2023 -#> 1741 2 3 0 0 La Liga M ESP 1st 2023 -#> 1742 0 0 1 0 La Liga M ESP 1st 2023 -#> 1743 1 1 9 0 La Liga M ESP 1st 2023 -#> 1744 2 4 4 0 La Liga M ESP 1st 2023 -#> 1745 0 1 3 0 La Liga M ESP 1st 2023 -#> 1746 0 1 0 0 La Liga M ESP 1st 2023 -#> 1747 0 0 0 0 La Liga M ESP 1st 2023 -#> 1748 0 0 0 0 La Liga M ESP 1st 2023 -#> 1749 0 1 1 0 La Liga M ESP 1st 2023 -#> 1750 0 0 0 0 La Liga M ESP 1st 2023 -#> 1751 1 2 0 0 La Liga M ESP 1st 2023 -#> 1752 0 0 0 0 La Liga M ESP 1st 2023 -#> 1753 0 0 0 0 La Liga M ESP 1st 2023 -#> 1754 0 1 0 0 La Liga M ESP 1st 2023 -#> 1755 0 2 0 0 La Liga M ESP 1st 2023 -#> 1756 2 6 2 0 La Liga M ESP 1st 2023 -#> 1757 2 2 4 0 La Liga M ESP 1st 2023 -#> 1758 1 3 5 0 La Liga M ESP 1st 2023 -#> 1759 5 6 2 0 La Liga M ESP 1st 2023 -#> 1760 0 0 2 0 La Liga M ESP 1st 2023 -#> 1761 1 3 2 0 La Liga M ESP 1st 2023 -#> 1762 0 4 0 0 La Liga M ESP 1st 2023 -#> 1763 0 1 0 0 La Liga M ESP 1st 2023 -#> 1764 0 1 1 0 La Liga M ESP 1st 2023 -#> 1765 0 0 0 0 La Liga M ESP 1st 2023 -#> 1766 0 1 1 0 La Liga M ESP 1st 2023 -#> 1767 0 0 0 1 La Liga M ESP 1st 2023 -#> 1768 1 2 0 0 La Liga M ESP 1st 2023 -#> 1769 2 2 0 0 La Liga M ESP 1st 2023 -#> 1770 0 0 0 0 La Liga M ESP 1st 2023 -#> 1771 0 10 1 0 La Liga M ESP 1st 2023 -#> 1772 0 3 0 0 La Liga M ESP 1st 2023 -#> 1773 1 3 1 0 La Liga M ESP 1st 2023 -#> 1774 0 0 0 0 La Liga M ESP 1st 2023 -#> 1775 3 5 4 0 La Liga M ESP 1st 2023 -#> 1776 1 2 3 0 La Liga M ESP 1st 2023 -#> 1777 0 0 0 0 La Liga M ESP 1st 2023 -#> 1778 1 2 0 0 La Liga M ESP 1st 2023 -#> 1779 0 0 1 0 La Liga M ESP 1st 2023 -#> 1780 1 4 0 0 La Liga M ESP 1st 2023 -#> 1781 0 0 1 0 La Liga M ESP 1st 2023 -#> 1782 0 0 1 0 La Liga M ESP 1st 2023 -#> 1783 1 1 2 0 La Liga M ESP 1st 2023 -#> 1784 0 0 0 0 La Liga M ESP 1st 2023 -#> 1785 0 0 1 0 La Liga M ESP 1st 2023 -#> 1786 0 3 1 0 La Liga M ESP 1st 2023 -#> 1787 0 0 2 0 La Liga M ESP 1st 2023 -#> 1788 1 2 3 0 La Liga M ESP 1st 2023 -#> 1789 1 2 3 0 La Liga M ESP 1st 2023 -#> 1790 0 2 6 0 La Liga M ESP 1st 2023 -#> 1791 1 3 2 0 La Liga M ESP 1st 2023 -#> 1792 1 2 0 0 La Liga M ESP 1st 2023 -#> 1793 0 0 1 1 La Liga M ESP 1st 2023 -#> 1794 1 1 0 0 La Liga M ESP 1st 2023 -#> 1795 0 0 0 0 La Liga M ESP 1st 2023 -#> 1796 2 3 3 0 La Liga M ESP 1st 2023 -#> 1797 1 1 0 0 La Liga M ESP 1st 2023 -#> 1798 2 5 1 0 La Liga M ESP 1st 2023 -#> 1799 0 0 0 0 La Liga M ESP 1st 2023 -#> 1800 1 5 0 0 La Liga M ESP 1st 2023 -#> 1801 0 2 0 0 La Liga M ESP 1st 2023 -#> 1802 5 6 1 0 La Liga M ESP 1st 2023 -#> 1803 2 2 4 0 La Liga M ESP 1st 2023 -#> 1804 0 2 0 0 La Liga M ESP 1st 2023 -#> 1805 1 2 0 0 La Liga M ESP 1st 2023 -#> 1806 0 1 1 0 La Liga M ESP 1st 2023 -#> 1807 1 4 0 0 La Liga M ESP 1st 2023 -#> 1808 0 0 1 1 La Liga M ESP 1st 2023 -#> 1809 0 0 0 0 La Liga M ESP 1st 2023 -#> 1810 1 1 0 0 La Liga M ESP 1st 2023 -#> 1811 2 2 0 0 La Liga M ESP 1st 2023 -#> 1812 0 2 2 0 La Liga M ESP 1st 2023 -#> 1813 0 0 0 0 La Liga M ESP 1st 2023 -#> 1814 1 2 0 0 La Liga M ESP 1st 2023 -#> 1815 0 0 0 0 La Liga M ESP 1st 2023 -#> 1816 0 1 1 0 La Liga M ESP 1st 2023 -#> 1817 0 1 0 0 La Liga M ESP 1st 2023 -#> 1818 0 2 0 0 La Liga M ESP 1st 2023 -#> 1819 0 0 0 0 La Liga M ESP 1st 2023 -#> 1820 3 4 1 0 La Liga M ESP 1st 2023 -#> 1821 1 2 0 0 La Liga M ESP 1st 2023 -#> 1822 1 1 0 0 La Liga M ESP 1st 2023 -#> 1823 0 2 3 0 La Liga M ESP 1st 2023 -#> 1824 0 0 1 0 La Liga M ESP 1st 2023 -#> 1825 1 2 0 0 La Liga M ESP 1st 2023 -#> 1826 1 2 0 0 La Liga M ESP 1st 2023 -#> 1827 1 1 0 0 La Liga M ESP 1st 2023 -#> 1828 0 1 2 0 La Liga M ESP 1st 2023 -#> 1829 2 3 0 0 La Liga M ESP 1st 2023 -#> 1830 0 1 0 0 La Liga M ESP 1st 2023 -#> 1831 2 4 6 0 La Liga M ESP 1st 2023 -#> 1832 1 1 1 0 La Liga M ESP 1st 2023 -#> 1833 0 0 0 0 La Liga M ESP 1st 2023 -#> 1834 1 2 1 0 La Liga M ESP 1st 2023 -#> 1835 1 1 1 0 La Liga M ESP 1st 2023 -#> 1836 3 3 0 0 La Liga M ESP 1st 2023 -#> 1837 1 3 2 0 La Liga M ESP 1st 2023 -#> 1838 3 5 1 0 La Liga M ESP 1st 2023 -#> 1839 0 0 0 0 La Liga M ESP 1st 2023 -#> 1840 0 0 1 0 La Liga M ESP 1st 2023 -#> 1841 0 1 0 0 La Liga M ESP 1st 2023 -#> 1842 1 1 0 0 La Liga M ESP 1st 2023 -#> 1843 0 0 1 0 La Liga M ESP 1st 2023 -#> 1844 1 2 0 0 La Liga M ESP 1st 2023 -#> 1845 0 0 0 0 La Liga M ESP 1st 2023 -#> 1846 0 4 1 0 La Liga M ESP 1st 2023 -#> 1847 0 0 0 0 La Liga M ESP 1st 2023 -#> 1848 0 1 0 0 La Liga M ESP 1st 2023 -#> 1849 1 1 0 0 La Liga M ESP 1st 2023 -#> 1850 1 2 2 0 La Liga M ESP 1st 2023 -#> 1851 2 4 1 0 La Liga M ESP 1st 2023 -#> 1852 0 2 2 0 La Liga M ESP 1st 2023 -#> 1853 2 2 0 0 La Liga M ESP 1st 2023 -#> 1854 0 2 1 0 La Liga M ESP 1st 2023 -#> 1855 0 0 1 0 La Liga M ESP 1st 2023 -#> 1856 0 0 1 0 La Liga M ESP 1st 2023 -#> 1857 0 1 0 0 La Liga M ESP 1st 2023 -#> 1858 1 1 1 0 La Liga M ESP 1st 2023 -#> 1859 0 0 2 0 La Liga M ESP 1st 2023 -#> 1860 5 5 1 0 La Liga M ESP 1st 2023 -#> 1861 1 2 0 0 La Liga M ESP 1st 2023 -#> 1862 2 2 1 0 La Liga M ESP 1st 2023 -#> 1863 0 0 0 0 La Liga M ESP 1st 2023 -#> 1864 0 0 1 0 La Liga M ESP 1st 2023 -#> 1865 0 0 0 0 La Liga M ESP 1st 2023 -#> 1866 0 4 3 0 La Liga M ESP 1st 2023 -#> 1867 0 2 2 0 La Liga M ESP 1st 2023 -#> 1868 1 2 6 0 La Liga M ESP 1st 2023 -#> 1869 2 4 5 0 La Liga M ESP 1st 2023 -#> 1870 0 2 0 0 La Liga M ESP 1st 2023 -#> 1871 0 0 0 0 La Liga M ESP 1st 2023 -#> 1872 0 3 0 0 La Liga M ESP 1st 2023 -#> 1873 0 0 0 0 La Liga M ESP 1st 2023 -#> 1874 0 1 3 0 La Liga M ESP 1st 2023 -#> 1875 0 0 1 0 La Liga M ESP 1st 2023 -#> 1876 1 1 0 0 La Liga M ESP 1st 2023 -#> 1877 1 4 0 0 La Liga M ESP 1st 2023 -#> 1878 0 1 1 0 La Liga M ESP 1st 2023 -#> 1879 0 2 0 0 La Liga M ESP 1st 2023 -#> 1880 0 0 0 0 La Liga M ESP 1st 2023 -#> 1881 1 5 0 1 La Liga M ESP 1st 2023 -#> 1882 0 0 0 0 La Liga M ESP 1st 2023 -#> 1883 0 3 2 0 La Liga M ESP 1st 2023 -#> 1884 4 4 6 0 La Liga M ESP 1st 2023 -#> 1885 0 0 4 0 La Liga M ESP 1st 2023 -#> 1886 4 7 2 0 La Liga M ESP 1st 2023 -#> 1887 0 0 0 0 La Liga M ESP 1st 2023 -#> 1888 0 0 0 0 La Liga M ESP 1st 2023 -#> 1889 0 0 2 0 La Liga M ESP 1st 2023 -#> 1890 0 2 1 0 La Liga M ESP 1st 2023 -#> 1891 0 0 0 0 La Liga M ESP 1st 2023 -#> 1892 0 0 0 0 La Liga M ESP 1st 2023 -#> 1893 0 2 0 0 La Liga M ESP 1st 2023 -#> 1894 1 4 3 0 La Liga M ESP 1st 2023 -#> 1895 1 3 0 0 La Liga M ESP 1st 2023 -#> 1896 0 0 0 0 La Liga M ESP 1st 2023 -#> 1897 0 2 1 0 La Liga M ESP 1st 2023 -#> 1898 0 2 6 0 La Liga M ESP 1st 2023 -#> 1899 0 2 3 0 La Liga M ESP 1st 2023 -#> 1900 0 1 2 0 La Liga M ESP 1st 2023 -#> 1901 0 0 0 0 La Liga M ESP 1st 2023 -#> 1902 0 0 0 0 La Liga M ESP 1st 2023 -#> 1903 0 1 2 0 La Liga M ESP 1st 2023 -#> 1904 0 0 0 0 La Liga M ESP 1st 2023 -#> 1905 0 2 0 0 La Liga M ESP 1st 2023 -#> 1906 0 0 0 0 La Liga M ESP 1st 2023 -#> 1907 0 1 0 0 La Liga M ESP 1st 2023 -#> 1908 0 1 0 0 La Liga M ESP 1st 2023 -#> 1909 1 1 0 0 La Liga M ESP 1st 2023 -#> 1910 0 4 1 0 La Liga M ESP 1st 2023 -#> 1911 1 1 0 0 La Liga M ESP 1st 2023 -#> 1912 0 3 3 0 La Liga M ESP 1st 2023 -#> 1913 0 2 2 0 La Liga M ESP 1st 2023 -#> 1914 0 2 3 0 La Liga M ESP 1st 2023 -#> 1915 0 1 2 0 La Liga M ESP 1st 2023 -#> 1916 0 0 1 0 La Liga M ESP 1st 2023 -#> 1917 0 1 1 0 La Liga M ESP 1st 2023 -#> 1918 0 0 0 0 La Liga M ESP 1st 2023 -#> 1919 0 0 1 0 La Liga M ESP 1st 2023 -#> 1920 0 0 0 0 La Liga M ESP 1st 2023 -#> 1921 0 0 0 0 La Liga M ESP 1st 2023 -#> 1922 0 0 0 0 La Liga M ESP 1st 2023 -#> 1923 1 3 3 0 La Liga M ESP 1st 2023 -#> 1924 0 0 0 0 La Liga M ESP 1st 2023 -#> 1925 0 3 2 0 La Liga M ESP 1st 2023 -#> 1926 4 6 5 0 La Liga M ESP 1st 2023 -#> 1927 1 2 8 0 La Liga M ESP 1st 2023 -#> 1928 0 0 3 0 La Liga M ESP 1st 2023 -#> 1929 0 1 1 0 La Liga M ESP 1st 2023 -#> 1930 0 0 5 0 La Liga M ESP 1st 2023 -#> 1931 1 5 7 0 La Liga M ESP 1st 2023 -#> 1932 0 0 0 0 La Liga M ESP 1st 2023 -#> 1933 0 0 2 0 La Liga M ESP 1st 2023 -#> 1934 2 2 2 0 La Liga M ESP 1st 2023 -#> 1935 0 3 0 0 La Liga M ESP 1st 2023 -#> 1936 0 0 0 0 La Liga M ESP 1st 2023 -#> 1937 0 0 0 0 La Liga M ESP 1st 2023 -#> 1938 1 1 0 0 La Liga M ESP 1st 2023 -#> 1939 3 6 0 0 La Liga M ESP 1st 2023 -#> 1940 0 0 5 0 La Liga M ESP 1st 2023 -#> 1941 0 0 0 0 La Liga M ESP 1st 2023 -#> 1942 1 1 1 0 La Liga M ESP 1st 2023 -#> 1943 0 0 1 0 La Liga M ESP 1st 2023 -#> 1944 0 2 1 0 La Liga M ESP 1st 2023 -#> 1945 2 2 0 0 La Liga M ESP 1st 2023 -#> 1946 0 0 0 0 La Liga M ESP 1st 2023 -#> 1947 1 5 6 0 La Liga M ESP 1st 2023 -#> 1948 0 1 4 0 La Liga M ESP 1st 2023 -#> 1949 0 1 0 0 La Liga M ESP 1st 2023 -#> 1950 0 0 0 0 La Liga M ESP 1st 2023 -#> 1951 0 1 0 0 La Liga M ESP 1st 2023 -#> 1952 0 0 1 0 La Liga M ESP 1st 2023 -#> 1953 1 2 2 0 La Liga M ESP 1st 2023 -#> 1954 0 0 1 0 La Liga M ESP 1st 2023 -#> 1955 0 0 1 0 La Liga M ESP 1st 2023 -#> 1956 0 0 1 0 La Liga M ESP 1st 2023 -#> 1957 0 0 1 0 La Liga M ESP 1st 2023 -#> 1958 0 0 2 0 La Liga M ESP 1st 2023 -#> 1959 2 7 4 0 La Liga M ESP 1st 2023 -#> 1960 2 5 9 0 La Liga M ESP 1st 2023 -#> 1961 2 3 4 0 La Liga M ESP 1st 2023 -#> 1962 0 3 2 0 La Liga M ESP 1st 2023 -#> 1963 0 0 0 0 La Liga M ESP 1st 2023 -#> 1964 0 0 0 0 La Liga M ESP 1st 2023 -#> 1965 0 0 0 0 La Liga M ESP 1st 2023 -#> 1966 0 2 0 0 La Liga M ESP 1st 2023 -#> 1967 0 3 2 0 La Liga M ESP 1st 2023 -#> 1968 1 2 0 0 La Liga M ESP 1st 2023 -#> 1969 0 1 0 0 La Liga M ESP 1st 2023 -#> 1970 0 0 0 0 La Liga M ESP 1st 2023 -#> 1971 0 0 1 0 La Liga M ESP 1st 2023 -#> 1972 1 3 2 0 La Liga M ESP 1st 2023 -#> 1973 0 1 0 0 La Liga M ESP 1st 2023 -#> 1974 1 2 2 0 La Liga M ESP 1st 2023 -#> 1975 1 1 3 0 La Liga M ESP 1st 2023 -#> 1976 0 1 3 0 La Liga M ESP 1st 2023 -#> 1977 1 3 2 0 La Liga M ESP 1st 2023 -#> 1978 0 0 0 0 La Liga M ESP 1st 2023 -#> 1979 0 2 0 0 La Liga M ESP 1st 2023 -#> 1980 1 4 0 0 La Liga M ESP 1st 2023 -#> 1981 0 0 0 0 La Liga M ESP 1st 2023 -#> 1982 0 0 0 0 La Liga M ESP 1st 2023 -#> 1983 0 0 0 0 La Liga M ESP 1st 2023 -#> 1984 1 2 0 0 La Liga M ESP 1st 2023 -#> 1985 2 3 1 0 La Liga M ESP 1st 2023 -#> 1986 0 1 0 0 La Liga M ESP 1st 2023 -#> 1987 0 0 0 0 La Liga M ESP 1st 2023 -#> 1988 0 1 1 0 La Liga M ESP 1st 2023 -#> 1989 1 1 0 0 La Liga M ESP 1st 2023 -#> 1990 1 2 3 0 La Liga M ESP 1st 2023 -#> 1991 0 0 5 0 La Liga M ESP 1st 2023 -#> 1992 0 1 0 0 La Liga M ESP 1st 2023 -#> 1993 0 0 0 0 La Liga M ESP 1st 2023 -#> 1994 0 0 1 0 La Liga M ESP 1st 2023 -#> 1995 0 1 1 0 La Liga M ESP 1st 2023 -#> 1996 0 0 1 0 La Liga M ESP 1st 2023 -#> 1997 0 0 0 0 La Liga M ESP 1st 2023 -#> 1998 1 3 0 0 La Liga M ESP 1st 2023 -#> 1999 1 2 0 0 La Liga M ESP 1st 2023 -#> 2000 3 6 1 0 La Liga M ESP 1st 2023 -#> 2001 0 0 0 0 La Liga M ESP 1st 2023 -#> 2002 0 2 0 0 La Liga M ESP 1st 2023 -#> 2003 0 0 0 0 La Liga M ESP 1st 2023 -#> 2004 3 4 5 0 La Liga M ESP 1st 2023 -#> 2005 0 0 3 0 La Liga M ESP 1st 2023 -#> 2006 2 2 5 0 La Liga M ESP 1st 2023 -#> 2007 0 3 3 0 La Liga M ESP 1st 2023 -#> 2008 1 1 0 0 La Liga M ESP 1st 2023 -#> 2009 0 0 1 1 La Liga M ESP 1st 2023 -#> 2010 0 0 1 0 La Liga M ESP 1st 2023 -#> 2011 0 0 0 0 La Liga M ESP 1st 2023 -#> 2012 0 1 0 0 La Liga M ESP 1st 2023 -#> 2013 1 1 0 0 La Liga M ESP 1st 2023 -#> 2014 0 1 1 0 La Liga M ESP 1st 2023 -#> 2015 0 0 1 0 La Liga M ESP 1st 2023 -#> 2016 0 0 0 0 La Liga M ESP 1st 2023 -#> 2017 0 NA NA NA La Liga M ESP 1st 2023 -#> 2018 0 0 1 0 La Liga M ESP 1st 2023 -#> 2019 1 2 0 0 La Liga M ESP 1st 2023 -#> 2020 3 4 2 0 La Liga M ESP 1st 2023 -#> 2021 2 6 5 0 La Liga M ESP 1st 2023 -#> 2022 1 2 8 0 La Liga M ESP 1st 2023 -#> 2023 2 2 1 0 La Liga M ESP 1st 2023 -#> 2024 2 4 3 0 La Liga M ESP 1st 2023 -#> 2025 0 0 0 0 La Liga M ESP 1st 2023 -#> 2026 0 1 1 0 La Liga M ESP 1st 2023 -#> 2027 0 2 0 0 La Liga M ESP 1st 2023 -#> 2028 0 0 0 0 La Liga M ESP 1st 2023 -#> 2029 0 0 0 0 La Liga M ESP 1st 2023 -#> 2030 1 2 1 0 La Liga M ESP 1st 2023 -#> 2031 1 4 0 0 La Liga M ESP 1st 2023 -#> 2032 0 0 0 0 La Liga M ESP 1st 2023 -#> 2033 2 3 0 0 La Liga M ESP 1st 2023 -#> 2034 0 3 1 0 La Liga M ESP 1st 2023 -#> 2035 2 2 1 1 La Liga M ESP 1st 2023 -#> 2036 0 2 0 0 La Liga M ESP 1st 2023 -#> 2037 2 2 6 0 La Liga M ESP 1st 2023 -#> 2038 1 3 4 0 La Liga M ESP 1st 2023 -#> 2039 1 3 2 0 La Liga M ESP 1st 2023 -#> 2040 1 4 1 0 La Liga M ESP 1st 2023 -#> [ reached 'max' / getOption("max.print") -- omitted 9453 rows ] +#> → Data last updated 2024-05-21 18:38:55.3171780109406 UTC +#> → Data last updated 2024-06-10 00:36:28.3094749450684 UTC +#> # A tibble: 23,409 × 49 +#> MatchURL League Match_Date Matchweek Home_Team Home_Formation Home_Score +#> <chr> <chr> <chr> <chr> <chr> <chr> <dbl> +#> 1 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 +#> 2 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 +#> 3 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 +#> 4 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 +#> 5 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 +#> 6 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 +#> 7 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 +#> 8 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 +#> 9 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 +#> 10 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 +#> # ℹ 23,399 more rows +#> # ℹ 42 more variables: Home_xG <dbl>, Home_Goals <chr>, +#> # Home_Yellow_Cards <chr>, Home_Red_Cards <chr>, Away_Team <chr>, +#> # Away_Formation <chr>, Away_Score <dbl>, Away_xG <dbl>, Away_Goals <chr>, +#> # Away_Yellow_Cards <chr>, Away_Red_Cards <chr>, Game_URL <chr>, Team <chr>, +#> # Home_Away <chr>, Player <chr>, Player_Href <chr>, Player_Num <dbl>, +#> # Nation <chr>, Pos <chr>, Age <chr>, Min <dbl>, Tkl_Tackles <dbl>, … # }

    diff --git a/reference/load_fb_big5_advanced_season_stats.html b/reference/load_fb_big5_advanced_season_stats.html index f33fce34..da9ed604 100644 --- a/reference/load_fb_big5_advanced_season_stats.html +++ b/reference/load_fb_big5_advanced_season_stats.html @@ -125,8 +125,8 @@

    Examplesseason_end_year = 2022, stat_type = "defense", team_or_player = "player" ) }) -#> → Data last updated 2024-05-07 17:35:17.589231967926 UTC -#> → Data last updated 2024-05-07 17:35:17.589231967926 UTC +#> → Data last updated 2024-05-30 17:36:11.5014300346375 UTC +#> → Data last updated 2024-05-30 17:36:11.5014300346375 UTC # }

    diff --git a/reference/load_fb_match_shooting.html b/reference/load_fb_match_shooting.html index 31fed00f..a21d5a31 100644 --- a/reference/load_fb_match_shooting.html +++ b/reference/load_fb_match_shooting.html @@ -117,8 +117,8 @@

    Examples season_end_year = 2019 ) }) -#> → Data last updated 2024-05-07 17:52:59.6828289031982 UTC -#> → Data last updated 2024-05-07 17:54:35.3966929912567 UTC +#> → Data last updated 2024-05-21 17:52:12.9745829105377 UTC +#> → Data last updated 2024-05-28 17:54:24.5049500465393 UTC #> # A tibble: 19,810 × 23 #> MatchURL Date Squad Home_Away Match_Half Minute Player Player_Href xG #> <chr> <chr> <chr> <chr> <dbl> <chr> <chr> <chr> <chr> diff --git a/reference/load_fb_match_summary.html b/reference/load_fb_match_summary.html index 759e4aeb..13abf883 100644 --- a/reference/load_fb_match_summary.html +++ b/reference/load_fb_match_summary.html @@ -117,8 +117,8 @@

    Examples season_end_year = 2019 ) }) -#> → Data last updated 2024-05-07 18:14:21.5084159374237 UTC -#> → Data last updated 2024-05-07 18:15:59.4407019615173 UTC +#> → Data last updated 2024-05-21 18:14:02.36326289176941 UTC +#> → Data last updated 2024-05-28 18:14:36.1328821182251 UTC #> # A tibble: 10,311 × 33 #> MatchURL League Match_Date Matchweek Home_Team Home_Formation Home_Score #> <chr> <chr> <chr> <chr> <chr> <chr> <dbl> diff --git a/reference/load_match_comp_results.html b/reference/load_match_comp_results.html index 56fc9fe9..e7a953a2 100644 --- a/reference/load_match_comp_results.html +++ b/reference/load_match_comp_results.html @@ -108,7 +108,7 @@

    Examplescomp_name = cups ) }) -#> → Data last updated 2024-05-07 17:17:26.8136069774628 UTC +#> → Data last updated 2024-05-23 17:19:03.49203395843506 UTC #> → Data last updated 2023-08-28 02:48:12.7885611057281 UTC # }

    diff --git a/reference/load_match_results.html b/reference/load_match_results.html index 6cc42ce7..053fbdb1 100644 --- a/reference/load_match_results.html +++ b/reference/load_match_results.html @@ -115,8 +115,8 @@

    Examplescountry = "ENG", gender = c("M", "F"), season_end_year = 2021, tier = "1st" ) }) -#> → Data last updated 2024-05-07 17:31:59.4666569232941 UTC -#> → Data last updated 2024-05-07 17:29:16.3871209621429 UTC +#> → Data last updated 2024-06-27 17:33:55.6623721122742 UTC +#> → Data last updated 2024-05-30 17:30:36.2828381061554 UTC # }

    diff --git a/search.json b/search.json index b5159c44..d0323f03 100644 --- a/search.json +++ b/search.json @@ -1 +1 @@ -[{"path":"https://jaseziv.github.io/worldfootballR/CONTRIBUTING.html","id":null,"dir":"","previous_headings":"","what":"Contributing to worldfootballR","title":"Contributing to worldfootballR","text":"outlines propose change worldfootballR. detailed info contributing , tidyverse packages, please see development contributing guide.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/CONTRIBUTING.html","id":"fixing-typos","dir":"","previous_headings":"","what":"Fixing typos","title":"Contributing to worldfootballR","text":"can fix typos, spelling mistakes, grammatical errors documentation directly using GitHub web interface, long changes made source file. generally means ’ll need edit roxygen2 comments .R, .Rd file. can find .R file generates .Rd reading comment first line.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/CONTRIBUTING.html","id":"bigger-changes","dir":"","previous_headings":"","what":"Bigger changes","title":"Contributing to worldfootballR","text":"want make bigger change, ’s good idea first file issue make sure someone team agrees ’s needed. ’ve found bug, please file issue illustrates bug minimal reprex (also help write unit test, needed).","code":""},{"path":"https://jaseziv.github.io/worldfootballR/CONTRIBUTING.html","id":"pull-request-process","dir":"","previous_headings":"Bigger changes","what":"Pull request process","title":"Contributing to worldfootballR","text":"Fork package clone onto computer. haven’t done , recommend using usethis::create_from_github(\"JaseZiv/worldfootballR\", fork = TRUE). Install development dependencies devtools::install_dev_deps(), make sure package passes R CMD check running devtools::check(). R CMD check doesn’t pass cleanly, ’s good idea ask help continuing. Create Git branch pull request (PR). recommend using usethis::pr_init(\"brief-description--change\"). Make changes, commit git, create PR running usethis::pr_push(), following prompts browser. title PR briefly describe change. body PR contain Fixes #issue-number. user-facing changes, add bullet top NEWS.md (.e. just first header). Follow style described https://style.tidyverse.org/news.html.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/CONTRIBUTING.html","id":"code-style","dir":"","previous_headings":"Bigger changes","what":"Code style","title":"Contributing to worldfootballR","text":"New code follow tidyverse style guide. can use styler package apply styles, please don’t restyle code nothing PR. use roxygen2, Markdown syntax, documentation. use testthat unit tests. Contributions test cases included easier accept.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/CONTRIBUTING.html","id":"code-of-conduct","dir":"","previous_headings":"","what":"Code of Conduct","title":"Contributing to worldfootballR","text":"Please note worldfootballR project released Contributor Code Conduct. contributing project agree abide terms.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"overview","dir":"Articles","previous_headings":"","what":"Overview","title":"Extracting data from FBref","text":"package designed allow users extract various world football results player statistics following popular football (soccer) data sites: FBref Transfermarkt Understat","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"installation","dir":"Articles","previous_headings":"","what":"Installation","title":"Extracting data from FBref","text":"can install CRAN version worldfootballR : can install released version worldfootballR GitHub :","code":"install.packages(\"worldfootballR\") # install.packages(\"devtools\") devtools::install_github(\"JaseZiv/worldfootballR\") library(worldfootballR)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"usage","dir":"Articles","previous_headings":"","what":"Usage","title":"Extracting data from FBref","text":"Package vignettes built help get started package. functions extract data Transfermarkt, see functions extract data Understat, see functions extract data international matches FBref, see functions load pre-scraped data, see vignette cover functions extract data FBref.com. NOTE: version 0.5.2, FBref functions now come user-defined pause page loads address new rate limiting. See document information.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"join-fbref-and-transfermarkt-data","dir":"Articles","previous_headings":"","what":"Join FBref and Transfermarkt data","title":"Extracting data from FBref","text":"able join data player FBref Transfermarkt, player_dictionary_mapping() created. 6,100 players listed teams Big 5 Euro leagues FBref since start 2017-18 seasons, mapped together. expected updated grow time. raw data stored ","code":"mapped_players <- player_dictionary_mapping() dplyr::glimpse(mapped_players) #> Rows: 14,872 #> Columns: 4 #> $ PlayerFBref \"A.J. DeLaGarza\", \"AJ Marcucci\", \"Aapo Halme\", \"Aaron Bast… #> $ UrlFBref \"https://fbref.com/en/players/171b3c37/AJ-DeLaGarza\", \"htt… #> $ UrlTmarkt \"https://www.transfermarkt.com/a-j-delagarza/profil/spiele… #> $ TmPos \"Right-Back\", \"Goalkeeper\", \"Centre-Back\", \"Left Winger\", …"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"fbref-helper-functions","dir":"Articles","previous_headings":"","what":"FBref Helper Functions","title":"Extracting data from FBref","text":"following section outline various functions available find different URLs able pass FBref suite functions outlined vignette.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"league-urls","dir":"Articles","previous_headings":"FBref Helper Functions","what":"League URLs","title":"Extracting data from FBref","text":"extract URL country’s league(s) (provided fbref data league), use fb_league_urls() function. function also accepts tier argument. first-tier leagues, select ‘1st’, second-tier select ‘2nd’ . fill list countries available can found worldfootballR_data repository can found .","code":"fb_league_urls(country = \"ENG\", gender = \"M\", season_end_year = 2021, tier = '2nd')"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"team-urls","dir":"Articles","previous_headings":"FBref Helper Functions","what":"Team URLs","title":"Extracting data from FBref","text":"get list URLs team particular season, fb_teams_urls() function can used:","code":"fb_teams_urls(\"https://fbref.com/en/comps/9/Premier-League-Stats\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"player-urls","dir":"Articles","previous_headings":"FBref Helper Functions","what":"Player URLs","title":"Extracting data from FBref","text":"get list player URLs particular team, fb_player_urls() function can used. results output can passed player season stat functions fb_player_season_stats() fb_player_scouting_report().","code":"fb_player_urls(\"https://fbref.com/en/squads/fd962109/Fulham-Stats\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-match-urls","dir":"Articles","previous_headings":"FBref Helper Functions","what":"Get match urls","title":"Extracting data from FBref","text":"get match URLs needed pass match-level functions , fb_match_urls() can used:","code":"epl_2021_urls <- fb_match_urls(country = \"ENG\", gender = \"M\", season_end_year = 2021, tier=\"1st\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"league-season-level-data","dir":"Articles","previous_headings":"","what":"League Season-Level Data","title":"Extracting data from FBref","text":"section cover functions aid extraction season team statistics.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-season-team-stats","dir":"Articles","previous_headings":"League Season-Level Data","what":"Get Season Team Stats","title":"Extracting data from FBref","text":"fb_season_team_stats function allows user return data frame different stat types teams Domestic leagues . Note, stats may available leagues. big five European leagues stats, leagues, ’s efficient use fb_big5_advanced_season_stats(). following stat types can selected: league_table league_table_home_away standard keeper keeper_adv shooting passing passing_types goal_shot_creation defense possession playing_time misc","code":"#----- function to extract season teams stats -----# prem_2020_shooting <- fb_season_team_stats(country = \"ENG\", gender = \"M\", season_end_year = \"2020\", tier = \"1st\", stat_type = \"shooting\") dplyr::glimpse(prem_2020_shooting) #----- to get shooting stats for the English Championship: -----# # championship_2020_shooting <- get_season_team_stats(country = \"ENG\", gender = \"M\", season_end_year = \"2020\", tier = \"2nd\", stat_type = \"shooting\") #----- Can also run this for multiple leagues at a time: -----# # multiple_2020_shooting <- get_season_team_stats(country = c(\"USA\", \"NED\"), # gender = \"M\", season_end_year = 2020, # tier = \"1st\", stat_type = \"shooting\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"the-big-5-euro-leagues","dir":"Articles","previous_headings":"League Season-Level Data > Get Season Team Stats","what":"The Big 5 Euro Leagues","title":"Extracting data from FBref","text":"fb_big5_advanced_season_stats() function allows users extract data listed stat types teams big five European leagues (EPL, La Liga, Ligue 1, Serie , Bundesliga). stat types available function : standard shooting passing passing_types gca defense possession playing_time misc keepers keepers_adv function also accepts season seasons whether want data player, team. Note selecting team_or_player=\"team\", results returned team’s stats. filter , use Team_or_Opponent column resulting data frame, selecting ‘team’ want team’s stats, ‘opponent’ want team’s stats.","code":"#----- Get data for big five leagues for TEAMS -----# big5_team_shooting <- fb_big5_advanced_season_stats(season_end_year= c(2019:2021), stat_type= \"shooting\", team_or_player= \"team\") dplyr::glimpse(big5_team_shooting) #----- Get data for big five leagues for PLAYERS -----# big5_player_shooting <- fb_big5_advanced_season_stats(season_end_year= c(2019:2021), stat_type= \"shooting\", team_or_player= \"player\") dplyr::glimpse(big5_player_shooting)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-season-player-stats","dir":"Articles","previous_headings":"League Season-Level Data","what":"Get Season Player Stats","title":"Extracting data from FBref","text":"fb_league_stats function allows user return data frame different stat types players leagues . Note, stats may available leagues. following stat types can selected: standard shooting passing passing_types gca defense possession playing_time misc keepers keepers_adv fb_league_stats retrieves data one page load, e.g. . much efficient iterating vector player URLs get data players league (.e. fb_player_season_stats()). Note function can used retrieve team data season manner similar fb_season_team_stats(). Multiple values country, gender, season_end_year, tier can provided time, although one value specified stat_type team_or_player.","code":"prem_2020_player_shooting <- fb_league_stats( country = \"ENG\", gender = \"M\", season_end_year = 2020, tier = \"1st\", non_dom_league_url = NA, stat_type = \"shooting\", team_or_player = \"player\" ) dplyr::glimpse(prem_2020_player_shooting) prem_2020_team_shooting <- fb_league_stats( country = \"ENG\", gender = \"M\", season_end_year = 2020, tier = \"1st\", non_dom_league_url = NA, stat_type = \"shooting\", team_or_player = \"team\" ) dplyr::glimpse(prem_2020_team_shooting) # fb_league_stats( # country = c(\"ENG\", \"ESP\") # gender = c(\"M\", \"F\") # season_end_year = 2020:2021, # tier = c(\"1st\", \"2nd\"), # non_dom_league_url = NA, # stat_type = \"shooting\", # team_or_player = \"player\" # )"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"match-level-data","dir":"Articles","previous_headings":"","what":"Match-Level Data","title":"Extracting data from FBref","text":"following sections outlines functions available extract data per-match level","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-match-results","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match results","title":"Extracting data from FBref","text":"get match results (additional metadata) leagues comps listed , following function can used: function can also used return match URLs non-domestic league season. use functionality, simply leave country = '' pass non-domestic league URL, can found https://fbref.com/en/comps/","code":"# function to extract Serie A match results data serieA_2020 <- fb_match_results(country = \"ITA\", gender = \"M\", season_end_year = 2020, tier = \"1st\") dplyr::glimpse(serieA_2020) # for international friendlies: fb_match_results(country = \"\", gender = \"M\", season_end_year = 2018, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/218/history/Friendlies-M-Seasons\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"more-than-one-league-season","dir":"Articles","previous_headings":"Match-Level Data > Get match results","what":"More than one league season","title":"Extracting data from FBref","text":"fb_match_results() function can used get data multiple seasons/leagues/genders/etc also:","code":"big_5_2020_results <- fb_match_results(country = c(\"ENG\", \"ESP\", \"ITA\", \"GER\", \"FRA\"), gender = \"M\", season_end_year = 2020, tier = \"1st\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-match-report","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match report","title":"Extracting data from FBref","text":"function return similar results fb_match_results(), however fb_match_report() provide additional information. also provide single match, whole season:","code":"# function to extract match report data liv_mci_2020 <- fb_match_report(match_url = \"https://fbref.com/en/matches/47880eb7/Liverpool-Manchester-City-November-10-2019-Premier-League\") dplyr::glimpse(liv_mci_2020)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-match-team-stats","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match team stats","title":"Extracting data from FBref","text":"function return teams stats single match (Possessions, Passing Accuracy etc.)","code":"# function to extract match team stats liv_mci_2020_team_stats <- fb_team_match_stats(match_url = \"https://fbref.com/en/matches/47880eb7/Liverpool-Manchester-City-November-10-2019-Premier-League\") dplyr::glimpse(liv_mci_2020_team_stats)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-match-summaries","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match summaries","title":"Extracting data from FBref","text":"function return main events occur match, including goals, substitutions red/yellow cards:","code":"# function to extract match summary data liv_mci_2020_summary <- fb_match_summary(match_url = \"https://fbref.com/en/matches/47880eb7/Liverpool-Manchester-City-November-10-2019-Premier-League\") dplyr::glimpse(liv_mci_2020_summary)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-match-lineups","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match lineups","title":"Extracting data from FBref","text":"function return dataframe players listed match, including whether started pitch, bench. version 0.2.7, function now also returns summary performance data player played, including position, minutes played, goals, cards, etc.","code":"# function to extract match lineups liv_mci_2020_lineups <- fb_match_lineups(match_url = \"https://fbref.com/en/matches/47880eb7/Liverpool-Manchester-City-November-10-2019-Premier-League\") dplyr::glimpse(liv_mci_2020_lineups)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-shooting-and-shot-creation-events","dir":"Articles","previous_headings":"Match-Level Data","what":"Get shooting and shot creation events","title":"Extracting data from FBref","text":"function allows users extract shooting shot creation event data match selected matches. data returned includes took shot, , body part far away. Additionally, player creating chance also creation included data.","code":"#----- Get shots data for a single match played: -----# shot_one_match <- fb_match_shooting(match_url = \"https://fbref.com/en/matches/a3eb7a37/Sheffield-United-Wolverhampton-Wanderers-September-14-2020-Premier-League\") #----- Can also extract for multiple matches at a time: -----# # test_urls_multiple <- c(\"https://fbref.com/en/matches/c0996cac/Bordeaux-Nantes-August-21-2020-Ligue-1\", # \"https://fbref.com/en/matches/9cbccb37/Dijon-Angers-August-22-2020-Ligue-1\", # \"https://fbref.com/en/matches/f96cd5a0/Lorient-Strasbourg-August-23-2020-Ligue-1\") # shot_multiple_matches <- fb_match_shooting(test_urls_multiple)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-advanced-match-statistics","dir":"Articles","previous_headings":"Match-Level Data","what":"Get advanced match statistics","title":"Extracting data from FBref","text":"fb_advanced_match_stats() function allows user return data frame different stat types matches played. Note, stats may available leagues. big five European leagues stats. following stat types can selected: summary passing passing_types defense possession misc keeper function can used either players individually: used team totals match:","code":"test_urls_multiple <- c(\"https://fbref.com/en/matches/c0996cac/Bordeaux-Nantes-August-21-2020-Ligue-1\", \"https://fbref.com/en/matches/9cbccb37/Dijon-Angers-August-22-2020-Ligue-1\") advanced_match_stats <- fb_advanced_match_stats(match_url = test_urls_multiple, stat_type = \"possession\", team_or_player = \"player\") dplyr::glimpse(advanced_match_stats) test_urls_multiple <- c(\"https://fbref.com/en/matches/c0996cac/Bordeaux-Nantes-August-21-2020-Ligue-1\", \"https://fbref.com/en/matches/9cbccb37/Dijon-Angers-August-22-2020-Ligue-1\") advanced_match_stats_team <- fb_advanced_match_stats(match_url = test_urls_multiple, stat_type = \"passing_types\", team_or_player = \"team\") dplyr::glimpse(advanced_match_stats_team)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"team-level-data","dir":"Articles","previous_headings":"","what":"Team-Level Data","title":"Extracting data from FBref","text":"section cover functions get team-level data FBref.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"match-results-by-team","dir":"Articles","previous_headings":"Team-Level Data","what":"Match Results by team","title":"Extracting data from FBref","text":"get results team(s) competed season, following function can used. resulting data frame output include game results, including cup games played, accept either one, many team URLs.","code":"#----- for single teams: -----# man_city_2021_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" man_city_2021_results <- fb_team_match_results(man_city_2021_url) dplyr::glimpse(man_city_2021_results) #----- get all team URLs for a league: -----# # epl_2021_team_urls <- fb_teams_urls(\"https://fbref.com/en/comps/9/Premier-League-Stats\") # epl_2021_team_results <- fb_team_match_results(team_url = team_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"stat-logs-for-season","dir":"Articles","previous_headings":"Team-Level Data","what":"Stat Logs for Season","title":"Extracting data from FBref","text":"able get full match logs available stat types team(s) season, fb_team_match_log_stats() function can used. Available stat types . Note, listed stat types available teams, teams , still may gaps resulting data frame competitions participated stat available: shooting keeper passing passing_types gca defense misc","code":"# can do it for one team: man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" man_city_logs <- fb_team_match_log_stats(team_urls = man_city_url, stat_type = \"passing\") dplyr::glimpse(man_city_logs) # or multiple teams: urls <- c(\"https://fbref.com/en/squads/822bd0ba/Liverpool-Stats\", \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\") shooting_logs <- fb_team_match_log_stats(team_urls = urls, stat_type = \"shooting\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"season-goal-logs","dir":"Articles","previous_headings":"Team-Level Data","what":"Season goal logs","title":"Extracting data from FBref","text":"Use fb_team_goal_logs() function get goal logs “” (default), “”, “”, team.","code":"man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" goal_log <- function(team_urls = man_city_url, for_or_against=\"both\") dplyr::glimpse(goal_log)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"player-level-data","dir":"Articles","previous_headings":"","what":"Player-Level Data","title":"Extracting data from FBref","text":"section cover functions available aid extraction player season data. examples provided lot cases actual url (player team) passed , however suite fbref helper functions outlined helpers vignette also used.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-player-scouting-report","dir":"Articles","previous_headings":"Player-Level Data","what":"Get Player Scouting Report","title":"Extracting data from FBref","text":"fb_player_scouting_report() function takes three inputs; player_url - URL player’s main page pos_versus - can return player’s comparison players “primary”, “secondary” position league_comp_name - name competition/league season want player comparisons . value supplied, just return scouting periods. information needs copied exactly tabs appear player scouting page FBref. results full scouting report player selected.","code":"#----- Get scouting report for the players primary position (first position listed in fbref): -----# messi_primary <- fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"primary\") dplyr::glimpse(messi_primary) # TO GET THE LAST 365 DAYS REPORT: messi_last_365 <- fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"primary\", league_comp_name = \"Last 365 Days Men's Big 5 Leagues, UCL, UEL\") # TO GET SCOUTING REPORT FOR MULTIPLE COMPS/LEAGUES: messi_multiple <- fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"primary\", league_comp_name = c(\"Last 365 Days Men's Big 5 Leagues, UCL, UEL\", \"2022 World Cup\")) #----- Get scouting report for the players secondary position (second position listed in fbref): -----# messi_secondary <- fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"secondary\") dplyr::glimpse(messi_secondary)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-player-season-stats","dir":"Articles","previous_headings":"Player-Level Data","what":"Get Player Season Stats","title":"Extracting data from FBref","text":"fb_player_season_stats() function allows extraction historical season totals selected player URLs stat_type. stat_types available use function : standard shooting passing passing_types gca defense possession playing_time misc keeper keeper_adv","code":"#----- can use for a single player: -----# mo_shooting <- fb_player_season_stats(\"https://fbref.com/en/players/e342ad68/Mohamed-Salah\", stat_type = 'shooting') dplyr::glimpse(mo_shooting) #----- Or for multiple players at a time: -----# # multiple_playing_time <- fb_player_season_stats(player_url = c(\"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", # \"https://fbref.com/en/players/dea698d9/Cristiano-Ronaldo\"), # stat_type = \"playing_time\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"the-big-5-euro-league-players","dir":"Articles","previous_headings":"Player-Level Data","what":"The Big 5 Euro League Players","title":"Extracting data from FBref","text":"fb_big5_advanced_season_stats() function allows users extract data listed stat types players big five European leagues (EPL, La Liga, Ligue 1, Serie , Bundesliga). stat types available function : standard shooting passing passing_types gca defense possession playing_time misc keepers keepers_adv function also accepts season seasons whether want data player, team.","code":"big5_player_possession <- fb_big5_advanced_season_stats(season_end_year= 2021, stat_type= \"possession\", team_or_player= \"player\") dplyr::glimpse(big5_player_possession)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"player-season-statistics-for-a-teams-season","dir":"Articles","previous_headings":"Player-Level Data","what":"Player Season Statistics for a teams season","title":"Extracting data from FBref","text":"fb_team_player_stats() function allows users extract data listed stat types players selected team(s) seasons, stat types available function : standard shooting passing passing_types gca defense possession playing_time misc keepers keepers_adv","code":"#----- to get stats for just a single team: -----# fleetwood_standard_stats <- fb_team_player_stats(team_urls= \"https://fbref.com/en/squads/d6a369a2/Fleetwood-Town-Stats\", stat_type= 'standard') dplyr::glimpse(fleetwood_standard_stats) #----- Can even get stats for a series of teams: -----# # league_url <- fb_league_urls(country = \"ENG\", gender = \"M\", # teams <- fb_teams_urls(league_url) # # multiple_playing_time <- fb_team_player_stats(team_urls= teams, stat_type= \"playing_time\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"goal-and-assist-logs","dir":"Articles","previous_headings":"Player-Level Data","what":"Goal and assist logs","title":"Extracting data from FBref","text":"Use fb_player_goal_logs() function get logs “goals” (default), “assists”, “”.","code":"jwp_url <- \"https://fbref.com/en/players/3515d404/James-Ward-Prowse\" goal_log <- fb_player_goal_logs(team_urls = jwp_url, goals_or_assists=\"both\") dplyr::glimpse(goal_log)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"player-match-logs","dir":"Articles","previous_headings":"Player-Level Data","what":"Player Match Logs","title":"Extracting data from FBref","text":"fb_player_match_logs() function allows user return data frame match logs different stat types player’s matches played season. following stat types can selected, depending player’s position (ie striker probably won’t “keepers” stats): summary keepers passing passing_types gca defense possession misc","code":"ederson_summary <- fb_player_match_logs(\"https://fbref.com/en/players/3bb7b8b4/Ederson\", season_end_year = 2021, stat_type = 'summary') dplyr::glimpse(ederson_summary)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"player-wages","dir":"Articles","previous_headings":"Player-Level Data","what":"Player Wages","title":"Extracting data from FBref","text":"able extract player wages players team FBref (via Capology), use fb_squad_wages() function . Notw, can used multiple team_urls.","code":"man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" man_city_wages <- fb_squad_wages(team_urls = man_city_url)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"overview","dir":"Articles","previous_headings":"","what":"Overview","title":"Extracting data from Transfermarkt","text":"package designed allow users extract various world football results player statistics following popular football (soccer) data sites: FBref Transfermarkt Understat","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"installation","dir":"Articles","previous_headings":"","what":"Installation","title":"Extracting data from Transfermarkt","text":"can install CRAN version worldfootballR : can install released version worldfootballR GitHub :","code":"install.packages(\"worldfootballR\") # install.packages(\"devtools\") devtools::install_github(\"JaseZiv/worldfootballR\") library(worldfootballR)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"usage","dir":"Articles","previous_headings":"","what":"Usage","title":"Extracting data from Transfermarkt","text":"Package vignettes built help get started package. functions extract data FBref, see functions extract data Understat, see functions extract data international matches FBref, see functions load pre-scraped data, see vignette cover functions extract data transfermarkt.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"join-fbref-and-transfermarkt-data","dir":"Articles","previous_headings":"","what":"Join FBref and Transfermarkt data","title":"Extracting data from Transfermarkt","text":"able join data player FBref Transfermarkt, player_dictionary_mapping() created. 6,100 players listed teams Big 5 Euro leagues FBref since start 2017-18 seasons, mapped together. expected updated grow time. raw data stored ","code":"mapped_players <- player_dictionary_mapping() dplyr::glimpse(mapped_players)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"transfermarkt-helper-functions","dir":"Articles","previous_headings":"","what":"Transfermarkt Helper Functions","title":"Extracting data from Transfermarkt","text":"following section outline various functions available find different URLs able pass Transfermarkt suite functions outlined vignette.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"team-urls","dir":"Articles","previous_headings":"Transfermarkt Helper Functions","what":"Team URLs","title":"Extracting data from Transfermarkt","text":"get list URLs team particular season transfermarkt.com, tm_league_team_urls() function can used. country/countries aren’t available main data set, function can also accept League URL transfermarkt.com. get league URL, use filtering options towards top transfermarkt.com, select country league want collect data , head page, copy URL.","code":"team_urls <- tm_league_team_urls(country_name = \"England\", start_year = 2020) # if it's not a league in the stored leagues data in worldfootballR_data repo: league_one_teams <- tm_league_team_urls(start_year = 2020, league_url = \"https://www.transfermarkt.com/league-one/startseite/wettbewerb/GB3\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"player-urls","dir":"Articles","previous_headings":"Transfermarkt Helper Functions","what":"Player URLs","title":"Extracting data from Transfermarkt","text":"get list player URLs particular team transfermarkt.com, tm_team_player_urls() function can used.","code":"tm_team_player_urls(team_url = \"https://www.transfermarkt.com/fc-burnley/startseite/verein/1132/saison_id/2020\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"staff-urls","dir":"Articles","previous_headings":"Transfermarkt Helper Functions","what":"Staff URLs","title":"Extracting data from Transfermarkt","text":"get list staff URLs particular team(s) staff role transfermarkt.com, tm_league_staff_urls() function can used. staff roles can passed function via staff_role argument : “Manager” (also return caretaker managers) “Assistant Manager” “Goalkeeping Coach” “Fitness Coach” “Conditioning Coach”","code":"# get a list of team URLs for the EPL 2021/22 season epl_teams <- tm_league_team_urls(country_name = \"England\", start_year = 2021) # get all EPL managers for the 2021/22 season epl_managers <- tm_team_staff_urls(team_urls = epl_teams, staff_role = \"Manager\") # get all EPL goal keeping coaches for the 2021/22 season epl_gk_coaches <- tm_team_staff_urls(team_urls = epl_teams, staff_role = \"Goalkeeping Coach\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"league-season-level-data","dir":"Articles","previous_headings":"","what":"League Season-Level Data","title":"Extracting data from Transfermarkt","text":"section cover functions aid extraction season team statistics information whole leagues.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"league-table-by-matchdays","dir":"Articles","previous_headings":"League Season-Level Data","what":"League Table by Matchdays","title":"Extracting data from Transfermarkt","text":"able extract league tables select matchday(s), function can used. function can accept either country name, season start year matchday number(s), leagues contained worldfootballR_data repository, can accept league URL, season start year matchday number(s).","code":"#----- to get the EPL table after matchday 1 of the 20/21 season: -----# epl_matchday_1_table <- tm_matchday_table(country_name=\"England\", start_year=\"2020\", matchday=1) dplyr::glimpse(epl_matchday_1_table) # #----- to get the EPL table after each matchdays from matchday 1 to matchday 35 of the 20/21 season: -----# # epl_matchday_1to35_table <- tm_matchday_table(country_name=\"England\", start_year=\"2020\", matchday=c(1:35)) #----- to get the League One table after each matchdays from matchday 1 to matchday 5 of the 20/21 season: -----# league_one_matchday_1_table <- tm_matchday_table(start_year=\"2020\", matchday=1:5, league_url=\"https://www.transfermarkt.com/league-one/startseite/wettbewerb/GB3\") dplyr::glimpse(league_one_matchday_1_table)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"league-debutants","dir":"Articles","previous_headings":"League Season-Level Data","what":"League Debutants","title":"Extracting data from Transfermarkt","text":"able extract debutants making either league professional debut, tm_league_debutants() function can used. see league debutants (regardless professional status), set debut_type = \"league\", setting debut_type = \"pro\" return debutants selected league making professional debuts. variables debut_start_year debut_end_year set time periods debutant data required . transfermarkt functions, season value starting year season, ie 2021-22 LaLiga season, value set 2021.","code":"# Laliga players making their LaLiga debut in 2021/2022 laliga_debutants <- tm_league_debutants(country_name = \"Spain\", debut_type = \"league\", debut_start_year = 2021, debut_end_year = 2021) dplyr::glimpse(laliga_debutants) # English League One players making their PRO debuts in 2021/2022 league_one_PRO_debutants <- tm_league_debutants(country_name = \"\", league_url = \"https://www.transfermarkt.com/league-one/startseite/wettbewerb/GB3\", debut_type = \"pro\", debut_start_year = 2021, debut_end_year = 2021) dplyr::glimpse(league_one_PRO_debutants)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"expiring-contracts","dir":"Articles","previous_headings":"League Season-Level Data","what":"Expiring Contracts","title":"Extracting data from Transfermarkt","text":"able extract list players whose contracts expire selected year, tm_expiring_contracts() can used. Set contract_end_year equal calendar year contracts due expire.","code":"#----- LaLiga players with expiring contracts in 2022: -----# laliga_expiring <- tm_expiring_contracts(country_name = \"Spain\", contract_end_year = 2023) dplyr::glimpse(laliga_expiring) #----- Can even do it for non-standard leagues - English League One players with expiring contracts in 2022: -----# # league_one_expiring <- tm_expiring_contracts(country_name = \"\", # contract_end_year = 2023, # league_url = \"https://www.transfermarkt.com/league-one/startseite/wettbewerb/GB3\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"league-injuries","dir":"Articles","previous_headings":"League Season-Level Data","what":"League Injuries","title":"Extracting data from Transfermarkt","text":"get list reported current injuries selected league, use tm_league_injuries() function:","code":"# to get all current injuries for LaLiga laliga_injuries <- tm_league_injuries(country_name = \"Spain\") dplyr::glimpse(laliga_injuries) #----- Can even do it for non-standard leagues - get all current injuries for League One in England # league_one_injuries <- tm_league_injuries(country_name = \"\", # league_url = \"https://www.transfermarkt.com/league-one/startseite/wettbewerb/GB3\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"team-data","dir":"Articles","previous_headings":"","what":"Team Data","title":"Extracting data from Transfermarkt","text":"section cover functions get team-level data Transfermarkt.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"transfer-activity-by-team","dir":"Articles","previous_headings":"Team Data","what":"Transfer activity by team","title":"Extracting data from Transfermarkt","text":"get arrivals departures team (teams) season data regarding transfer (transfer value, contract length, came /went , etc), tm_team_transfers() function can used. function can return either summer, winter transfer_windows:","code":"#----- for one team: -----# bayern <- tm_team_transfers(team_url = \"https://www.transfermarkt.com/fc-bayern-munchen/startseite/verein/27/saison_id/2020\", transfer_window = \"all\") dplyr::glimpse(bayern) #----- or for multiple teams: -----# # team_urls <- tm_league_team_urls(country_name = \"England\", start_year = 2020) # epl_xfers_2020 <- tm_team_transfers(team_url = team_urls, transfer_window = \"all\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"squad-player-stats","dir":"Articles","previous_headings":"Team Data","what":"Squad Player Stats","title":"Extracting data from Transfermarkt","text":"get basic statistics (goals, appearances, minutes played, etc) games played players squad season, tm_squad_stats() function can used:","code":"#----- for one team: -----# bayern <- tm_squad_stats(team_url = \"https://www.transfermarkt.com/fc-bayern-munchen/startseite/verein/27/saison_id/2020\") dplyr::glimpse(bayern) #----- or for multiple teams: -----# # team_urls <- tm_league_team_urls(country_name = \"England\", start_year = 2020) # epl_team_players_2020 <- tm_squad_stats(team_url = team_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"player-valuations","dir":"Articles","previous_headings":"Team Data","what":"Player Valuations","title":"Extracting data from Transfermarkt","text":"get player valuations teams league season, use tm_player_market_values() function:","code":"#----- Can do it for a single league: -----# a_league_valuations <- tm_player_market_values(country_name = \"Australia\", start_year = 2021) dplyr::glimpse(a_league_valuations) #----- Can also do it for multiple leagues: -----# # big_5_valuations <- tm_player_market_values(country_name = c(\"England\", \"Spain\", \"France\", \"Italy\", \"Germany\"), # start_year = 2021) #----- Can also do it for non standard leagues: -----# # league_one_valuations <- tm_player_market_values(country_name = \"\", # start_year = 2021, # league_url = \"https://www.transfermarkt.com/league-one/startseite/wettbewerb/GB3\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"player-data","dir":"Articles","previous_headings":"","what":"Player Data","title":"Extracting data from Transfermarkt","text":"section cover functions available aid extraction player data.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"player-bios","dir":"Articles","previous_headings":"Player Data","what":"Player Bios","title":"Extracting data from Transfermarkt","text":"get information player, like age, foot, born, play , contract details, social media accounts whole lot , use tm_player_bio() function.:","code":"#----- for a single player: -----# hazard_bio <- tm_player_bio(player_url = \"https://www.transfermarkt.com/eden-hazard/profil/spieler/50202\") dplyr::glimpse(hazard_bio) #----- for multiple players: -----# # # can make use of a tm helper function: # burnley_player_urls <- tm_team_player_urls(team_url = \"https://www.transfermarkt.com/fc-burnley/startseite/verein/1132/saison_id/2020\") # # then pass all those URLs to the tm_player_bio # burnley_bios <- tm_player_bio(player_urls = burnley_player_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"player-injury-history","dir":"Articles","previous_headings":"Player Data","what":"Player Injury History","title":"Extracting data from Transfermarkt","text":"able get individual player(s) injury history transfermarkt, use tm_player_injury_history() function.","code":"#----- for a single player: -----# hazard_injuries <- tm_player_injury_history(player_urls = \"https://www.transfermarkt.com/eden-hazard/profil/spieler/50202\") dplyr::glimpse(hazard_injuries) #----- for multiple players: -----# # # can make use of a tm helper function: # burnley_player_urls <- tm_team_player_urls(team_url = \"https://www.transfermarkt.com/fc-burnley/startseite/verein/1132/saison_id/2021\") # # then pass all those URLs to the tm_player_injury_history # burnley_player_injuries <- tm_player_injury_history(player_urls = burnley_player_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"player-transfer-history","dir":"Articles","previous_headings":"Player Data","what":"Player Transfer History","title":"Extracting data from Transfermarkt","text":"able get individual player(s) transfer history transfermarkt, use tm_player_transfer_history() function. parameter get_extra_info allows users decide want scrape extra info regarding transfer. give additional information regarding contract length nations involved, require time. default value TRUE.","code":"#----- for a single player, get_extra_info defaulting TRUE: -----# jack_rodwell_transfer_history <- tm_player_transfer_history(player_urls = \"https://www.transfermarkt.com/jack-rodwell/profil/spieler/57079\") dplyr::glimpse(jack_rodwell_transfer_history) #----- for a single player, get_extra_info FALSE: -----# jack_rodwell_transfer_history <- tm_player_transfer_history(player_urls = \"https://www.transfermarkt.com/jack-rodwell/profil/spieler/57079\", get_extra_info = FALSE) dplyr::glimpse(jack_rodwell_transfer_history) #----- for multiple players, get_extra_info FALSE: -----# all_leeds_united_links <- tm_team_player_urls(team_url = \"https://www.transfermarkt.com/leeds-united/startseite/verein/399\") all_leeds_united_players_transfer_history <- tm_player_transfer_history(all_leeds_united_links, get_extra_info = FALSE) dplyr::glimpse(all_leeds_united_players_transfer_history)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"player-absence","dir":"Articles","previous_headings":"Player Data","what":"Player Absence","title":"Extracting data from Transfermarkt","text":"able get player’s (players’) absence history result suspensions transfermarkt, use tm_get_player_absence() function.","code":"#----- for a single player: -----# romero_absence <- tm_get_player_absence(player_urls = \"https://www.transfermarkt.com/cristian-romero/profil/spieler/355915\") dplyr::glimpse(romero_absence) #----- for multiple players: -----# # # can make use of a tm helper function: spurs_player_urls <- tm_team_player_urls(team_url = \"https://www.transfermarkt.com/tottenham-hotspur/startseite/verein/148\") # # then pass all those URLs to the tm_get_player_absence spurs_player_absence <- tm_get_player_absence(player_urls = spurs_player_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"club-staff-data","dir":"Articles","previous_headings":"","what":"Club Staff Data","title":"Extracting data from Transfermarkt","text":"version 0.4.7, users now ability get historical data club staff transfermarkt. following two functions can used, depending need (addition helper function tm_team_staff_urls() detailed ).","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"club-staff-history","dir":"Articles","previous_headings":"Club Staff Data","what":"Club Staff History","title":"Extracting data from Transfermarkt","text":"can extract employees role club’s history using tm_team_staff_history(). list roles can passed staff_roles argument can found , ’re also listed :","code":"# get a list of team URLs for the EPL 2021/22 season epl_teams <- tm_league_team_urls(country_name = \"England\", start_year = 2021) #----- then use the URLs to pass to the function, and select the role you wish to see results for: -----# club_manager_history <- tm_team_staff_history(team_urls = epl_teams, staff_role = \"Manager\") dplyr::glimpse(club_manager_history) #----- can also get other roles: -----# # club_caretaker_manager_history <- tm_team_staff_history(team_urls = epl_teams, staff_role = \"Caretaker Manager\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"staff-members-history","dir":"Articles","previous_headings":"Club Staff Data","what":"Staff Member’s History","title":"Extracting data from Transfermarkt","text":"able get roles held selected staff member(s), tm_staff_job_history() function can used. function accepts one argument, staff_urls, can extracted using tm_team_staff_urls() explained helpers section .","code":"# get a list of team URLs for the EPL 2021/22 season # epl_teams <- tm_league_team_urls(country_name = \"England\", start_year = 2021) # get all EPL goal keeping coaches for the 2021/22 season epl_gk_coaches <- tm_team_staff_urls(team_urls = epl_teams[1:3], staff_role = \"Goalkeeping Coach\") # then you can pass these URLs to the function and get job histories for the selected staff members epl_gk_coach_job_histories <- tm_staff_job_history(staff_urls = epl_gk_coaches) dplyr::glimpse(epl_gk_coach_job_histories)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"overview","dir":"Articles","previous_headings":"","what":"Overview","title":"Extracting data from Understat","text":"package designed allow users extract various world football results player statistics following popular football (soccer) data sites: FBref Transfermarkt Understat","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"installation","dir":"Articles","previous_headings":"","what":"Installation","title":"Extracting data from Understat","text":"can install CRAN version worldfootballR : can install released version worldfootballR GitHub :","code":"install.packages(\"worldfootballR\") # install.packages(\"devtools\") devtools::install_github(\"JaseZiv/worldfootballR\") library(worldfootballR)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"usage","dir":"Articles","previous_headings":"","what":"Usage","title":"Extracting data from Understat","text":"Package vignettes built help get started package. functions extract data FBref, see functions extract data Transfermarkt, see functions extract data international matches FBref, see functions load pre-scraped data, see vignette cover functions extract data understat.com","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"team-names","dir":"Articles","previous_headings":"Understat Helper Functions","what":"Team Names","title":"Extracting data from Understat","text":"get list available teams names team selected league, use understat_avalaible_teams() function. can pass results understat_avalaible_teams() function execution understat_team_meta() function.","code":"team_names <- understat_team_meta(team_name = understat_avalaible_teams(league = 'EPL'))"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"team-urls","dir":"Articles","previous_headings":"Understat Helper Functions","what":"Team URLs","title":"Extracting data from Understat","text":"get list season team URLs selected teams, use understat_team_meta() function (note, get team names, might advisable look Understat.com’s spelling team names pass function):","code":"team_urls <- understat_team_meta(team_name = c(\"Liverpool\", \"Manchester City\"))"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"league-season-level-data","dir":"Articles","previous_headings":"","what":"League Season-Level Data","title":"Extracting data from Understat","text":"section cover functions aid extraction season league statistics Understat. following leagues currently supported Understat (values can passed league arguments understat_ functions): “EPL” “La liga” “Bundesliga” “Serie ” “Ligue 1” “RFPL”","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"match-results","dir":"Articles","previous_headings":"League Season-Level Data","what":"Match Results","title":"Extracting data from Understat","text":"able extract match results Understat, results expected goals, also provide probability team winning. extract data, use understat_league_match_results() function:","code":"# to get the EPL results: epl_results <- understat_league_match_results(league = \"EPL\", season_start_year = 2020) dplyr::glimpse(epl_results) #> Rows: 380 #> Columns: 18 #> $ league \"EPL\", \"EPL\", \"EPL\", \"EPL\", \"EPL\", \"EPL\", \"EPL\", \"EPL\", … #> $ season \"2020/2021\", \"2020/2021\", \"2020/2021\", \"2020/2021\", \"202… #> $ match_id \"14086\", \"14087\", \"14090\", \"14091\", \"14092\", \"14093\", \"1… #> $ isResult TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TR… #> $ home_id \"228\", \"78\", \"87\", \"81\", \"76\", \"82\", \"238\", \"220\", \"72\",… #> $ home_team \"Fulham\", \"Crystal Palace\", \"Liverpool\", \"West Ham\", \"We… #> $ home_abbr \"FLH\", \"CRY\", \"LIV\", \"WHU\", \"WBA\", \"TOT\", \"SHE\", \"BRI\", … #> $ away_id \"83\", \"74\", \"245\", \"86\", \"75\", \"72\", \"229\", \"80\", \"76\", … #> $ away_team \"Arsenal\", \"Southampton\", \"Leeds\", \"Newcastle United\", \"… #> $ away_abbr \"ARS\", \"SOU\", \"LED\", \"NEW\", \"LEI\", \"EVE\", \"WOL\", \"CHE\", … #> $ home_goals 0, 1, 4, 0, 0, 0, 0, 1, 5, 4, 1, 2, 2, 0, 0, 4, 1, 1, 2,… #> $ away_goals 3, 0, 3, 2, 3, 1, 2, 3, 2, 3, 3, 1, 5, 3, 2, 2, 0, 3, 3,… #> $ home_xG 0.126327, 1.395690, 3.154120, 0.861445, 0.352997, 0.8229… #> $ away_xG 2.162870, 1.262670, 0.269813, 1.659110, 2.955810, 1.2679… #> $ datetime \"2020-09-12 11:30:00\", \"2020-09-12 14:00:00\", \"2020-09-1… #> $ forecast_win 0.0037, 0.3916, 0.9658, 0.1506, 0.0070, 0.2200, 0.1683, … #> $ forecast_draw 0.0476, 0.3022, 0.0296, 0.2480, 0.0358, 0.2977, 0.2906, … #> $ forecast_loss 0.9487, 0.3062, 0.0046, 0.6014, 0.9572, 0.4823, 0.5411, …"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"season-shooting-locations","dir":"Articles","previous_headings":"League Season-Level Data","what":"Season Shooting locations","title":"Extracting data from Understat","text":"get shooting locations whole season supported leagues, use understat_league_season_shots() function:","code":"ligue1_shot_location <- understat_league_season_shots(league = \"Ligue 1\", season_start_year = 2020)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"match-level-data","dir":"Articles","previous_headings":"","what":"Match-Level Data","title":"Extracting data from Understat","text":"following sections outlines functions available extract data per-match level","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"match-shooting-locations","dir":"Articles","previous_headings":"Match-Level Data","what":"Match Shooting Locations","title":"Extracting data from Understat","text":"get shooting locations individual match, use understat_match_shots() function:","code":"wba_liv_shots <- understat_match_shots(match_url = \"https://understat.com/match/14789\") dplyr::glimpse(wba_liv_shots) #> Rows: 36 #> Columns: 20 #> $ id \"422440\", \"422441\", \"422442\", \"422450\", \"422456\", \"422… #> $ minute 9, 11, 14, 35, 46, 47, 50, 61, 70, 77, 2, 3, 5, 23, 26… #> $ result \"MissedShots\", \"MissedShots\", \"Goal\", \"BlockedShot\", \"… #> $ X 0.869, 0.965, 0.881, 0.883, 0.957, 0.712, 0.767, 0.942… #> $ Y 0.441, 0.460, 0.356, 0.336, 0.590, 0.403, 0.590, 0.626… #> $ xG 0.0313527, 0.1447450, 0.2382660, 0.2825390, 0.0260821,… #> $ player \"Semi Ajayi\", \"Okay Yokuslu\", \"Hal Robson-Kanu\", \"Hal … #> $ home_away \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"a\",… #> $ player_id \"4490\", \"6932\", \"1738\", \"1738\", \"964\", \"7153\", \"7153\",… #> $ situation \"SetPiece\", \"SetPiece\", \"OpenPlay\", \"OpenPlay\", \"FromC… #> $ season \"2020\", \"2020\", \"2020\", \"2020\", \"2020\", \"2020\", \"2020\"… #> $ shotType \"Head\", \"Head\", \"LeftFoot\", \"LeftFoot\", \"Head\", \"LeftF… #> $ match_id \"14789\", \"14789\", \"14789\", \"14789\", \"14789\", \"14789\", … #> $ home_team \"West Bromwich Albion\", \"West Bromwich Albion\", \"West … #> $ away_team \"Liverpool\", \"Liverpool\", \"Liverpool\", \"Liverpool\", \"L… #> $ home_goals 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, … #> $ away_goals 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, … #> $ date \"2021-05-16 15:30:00\", \"2021-05-16 15:30:00\", \"2021-05… #> $ player_assisted \"Matheus Pereira\", \"Darnell Furlong\", \"Matheus Pereira… #> $ lastAction \"Cross\", \"Chipped\", \"Pass\", \"HeadPass\", \"Aerial\", \"Sta…"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"team-data","dir":"Articles","previous_headings":"","what":"Team Data","title":"Extracting data from Understat","text":"section cover functions get team-level data Transfermarkt.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"team-shooting-locations","dir":"Articles","previous_headings":"Team Data","what":"Team Shooting Locations","title":"Extracting data from Understat","text":"get shots taken conceded team season, use understat_team_season_shots() function:","code":"# for one team: man_city_shots <- understat_team_season_shots(team_url = \"https://understat.com/team/Manchester_City/2020\") dplyr::glimpse(man_city_shots) #> Rows: 886 #> Columns: 20 #> $ id \"378528\", \"378533\", \"378537\", \"378538\", \"378539\", \"378… #> $ minute 15, 40, 53, 55, 58, 59, 64, 73, 77, 86, 7, 10, 19, 29,… #> $ result \"BlockedShot\", \"MissedShots\", \"MissedShots\", \"BlockedS… #> $ X 0.789, 0.892, 0.860, 0.811, 0.822, 0.886, 0.869, 0.803… #> $ Y 0.564, 0.409, 0.501, 0.496, 0.398, 0.473, 0.259, 0.467… #> $ xG 0.03422860, 0.03680430, 0.10313500, 0.05339760, 0.0860… #> $ player \"Pedro Neto\", \"Raúl Jiménez\", \"Daniel Podence\", \"Rúben… #> $ home_away \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"a\",… #> $ player_id \"6382\", \"4105\", \"8291\", \"6853\", \"8291\", \"4105\", \"6853\"… #> $ situation \"OpenPlay\", \"FromCorner\", \"OpenPlay\", \"OpenPlay\", \"Ope… #> $ season \"2020\", \"2020\", \"2020\", \"2020\", \"2020\", \"2020\", \"2020\"… #> $ shotType \"LeftFoot\", \"Head\", \"LeftFoot\", \"LeftFoot\", \"RightFoot… #> $ match_id \"14105\", \"14105\", \"14105\", \"14105\", \"14105\", \"14105\", … #> $ home_team \"Wolverhampton Wanderers\", \"Wolverhampton Wanderers\", … #> $ away_team \"Manchester City\", \"Manchester City\", \"Manchester City… #> $ home_goals 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, … #> $ away_goals 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, … #> $ date \"2020-09-21 19:15:00\", \"2020-09-21 19:15:00\", \"2020-09… #> $ player_assisted \"Daniel Podence\", \"Adama Traoré\", \"Adama Traoré\", \"Ped… #> $ lastAction \"Pass\", \"Cross\", \"Pass\", \"Pass\", \"Chipped\", \"Cross\", \"…"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"team-stat-breakdowns","dir":"Articles","previous_headings":"Team Data","what":"Team Stat Breakdowns","title":"Extracting data from Understat","text":"get granular breakdown team shooting data whole seasons, understat_team_stats_breakdown() function can used. functions returns breakdown team shooting data based following groupings: Situation Formation Game state Timing Shot zones Attack speed Result","code":"#----- Can get data for single teams at a time: -----# team_breakdown <- understat_team_stats_breakdown(team_urls = \"https://understat.com/team/Liverpool/2020\") dplyr::glimpse(team_breakdown) #> Rows: 34 #> Columns: 11 #> $ team_name \"Liverpool\", \"Liverpool\", \"Liverpool\", \"Liverpool\", … #> $ season_start_year 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020… #> $ stat_group_name \"situation\", \"situation\", \"situation\", \"situation\", … #> $ stat_name \"OpenPlay\", \"FromCorner\", \"SetPiece\", \"DirectFreekic… #> $ shots 466, 94, 23, 22, 6, 532, 33, 31, 13, 2, 302, 135, 10… #> $ goals 49, 11, 2, 0, 6, 59, 6, 1, 2, 0, 32, 15, 8, 11, 2, 6… #> $ xG 59.4529171, 9.1182853, 1.8527929, 1.3437825, 4.56701… #> $ against.shots 252, 40, 21, 12, 8, 296, 20, 9, 7, 1, 161, 80, 45, 3… #> $ against.goals 28, 6, 3, 1, 4, 38, 2, 1, 0, 1, 17, 12, 5, 3, 5, 8, … #> $ against.xG 33.1091621, 4.2281575, 3.9210222, 0.6303305, 6.08935… #> $ time NA, NA, NA, NA, NA, 3147, 216, 134, 81, 12, 1914, 73… #----- Or for multiple teams: -----# # team_urls <- c(\"https://understat.com/team/Liverpool/2020\", # \"https://understat.com/team/Manchester_City/2020\") # team_breakdown <- understat_team_stats_breakdown(team_urls = team_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"player-data","dir":"Articles","previous_headings":"","what":"Player Data","title":"Extracting data from Understat","text":"section cover functions available aid extraction player data.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"player-shooting-locations","dir":"Articles","previous_headings":"Player Data","what":"Player Shooting Locations","title":"Extracting data from Understat","text":"get shooting locations games player participated (long Understat data ), use understat_player_shots() function:","code":"raheem_sterling_shots <- understat_player_shots(player_url = \"https://understat.com/player/618\") dplyr::glimpse(raheem_sterling_shots) #> Rows: 680 #> Columns: 20 #> $ id \"14490\", \"14491\", \"14496\", \"14497\", \"14779\", \"15104\", … #> $ minute 20, 22, 47, 53, 8, 7, 69, 74, 65, 81, 19, 25, 47, 50, … #> $ result \"SavedShot\", \"Goal\", \"SavedShot\", \"MissedShots\", \"Miss… #> $ X 0.853, 0.856, 0.816, 0.745, 0.857, 0.959, 0.940, 0.968… #> $ Y 0.695, 0.496, 0.377, 0.443, 0.470, 0.615, 0.524, 0.646… #> $ xG 0.0407033, 0.3114090, 0.0576012, 0.0254811, 0.0726696,… #> $ player \"Raheem Sterling\", \"Raheem Sterling\", \"Raheem Sterling… #> $ home_away \"h\", \"h\", \"h\", \"h\", \"a\", \"a\", \"a\", \"a\", \"h\", \"h\", \"a\",… #> $ player_id \"618\", \"618\", \"618\", \"618\", \"618\", \"618\", \"618\", \"618\"… #> $ situation \"OpenPlay\", \"OpenPlay\", \"OpenPlay\", \"OpenPlay\", \"OpenP… #> $ season \"2014\", \"2014\", \"2014\", \"2014\", \"2014\", \"2014\", \"2014\"… #> $ shotType \"LeftFoot\", \"RightFoot\", \"RightFoot\", \"RightFoot\", \"Ri… #> $ match_id \"4756\", \"4756\", \"4756\", \"4756\", \"4768\", \"4777\", \"4777\"… #> $ home_team \"Liverpool\", \"Liverpool\", \"Liverpool\", \"Liverpool\", \"M… #> $ away_team \"Southampton\", \"Southampton\", \"Southampton\", \"Southamp… #> $ home_goals 2, 2, 2, 2, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 1, 1, 1, 1, … #> $ away_goals 1, 1, 1, 1, 1, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, … #> $ date \"2014-08-17 13:30:00\", \"2014-08-17 13:30:00\", \"2014-08… #> $ player_assisted \"Philippe Coutinho\", \"Jordan Henderson\", \"Jordan Hende… #> $ lastAction \"Pass\", \"Throughball\", \"Pass\", \"Pass\", \"Chipped\", \"Pas…"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"team-player-season-stats","dir":"Articles","previous_headings":"Player Data","what":"Team Player Season Stats","title":"Extracting data from Understat","text":"get stats players selected teams, run understat_team_players_stats() function. Note: Team URLs cal extracted using understat_team_meta().","code":"team_players <- understat_team_players_stats(team_url = c(\"https://understat.com/team/Liverpool/2020\", \"https://understat.com/team/Manchester_City/2020\")) dplyr::glimpse(team_players) #> Rows: 52 #> Columns: 19 #> $ season \"2020/2021\", \"2020/2021\", \"2020/2021\", \"2020/2021\", \"2020… #> $ player_id 1250, 838, 482, 6854, 771, 1791, 229, 332, 605, 833, 966,… #> $ player_name \"Mohamed Salah\", \"Sadio Mané\", \"Roberto Firmino\", \"Diogo … #> $ games 37, 35, 36, 19, 38, 36, 24, 10, 21, 5, 13, 33, 38, 24, 17… #> $ time 3085, 2805, 2882, 1114, 2961, 3040, 1865, 701, 1710, 370,… #> $ goals 22, 11, 9, 9, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0… #> $ xG 20.2508505, 14.8285516, 12.8602165, 7.0577230, 2.8174270,… #> $ assists 5, 7, 7, 0, 0, 7, 0, 2, 1, 0, 1, 0, 7, 2, 1, 0, 0, 1, 0, … #> $ xA 6.5285276, 7.7877541, 6.1168645, 1.7625196, 1.6629221, 8.… #> $ shots 126, 94, 83, 46, 31, 55, 22, 5, 14, 4, 8, 1, 19, 19, 15, … #> $ key_passes 55, 61, 44, 12, 21, 77, 30, 3, 14, 0, 2, 0, 65, 12, 7, 0,… #> $ yellow_cards 0, 3, 2, 2, 1, 2, 4, 2, 0, 1, 0, 1, 2, 2, 2, 0, 0, 3, 0, … #> $ red_cards 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, … #> $ position \"F M S\", \"F M S\", \"F M S\", \"F M S\", \"M S\", \"D S\", \"M S\", … #> $ team_name \"Liverpool\", \"Liverpool\", \"Liverpool\", \"Liverpool\", \"Live… #> $ npg 16, 11, 9, 9, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0… #> $ npxG 15.6838341, 14.8285516, 12.8602165, 7.0577230, 2.8174270,… #> $ xGChain 28.9682294, 24.9989162, 25.2714681, 10.9729662, 13.922178… #> $ xGBuildup 9.8002365, 6.0576597, 10.1985496, 4.0760983, 10.4762759, …"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"overview","dir":"Articles","previous_headings":"","what":"Overview","title":"Extracting data from FBref for International Matches","text":"package designed allow users extract various world football results player statistics following popular football (soccer) data sites: FBref Transfermarkt Understat","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"installation","dir":"Articles","previous_headings":"","what":"Installation","title":"Extracting data from FBref for International Matches","text":"can install CRAN version worldfootballR : can install released version worldfootballR GitHub :","code":"install.packages(\"worldfootballR\") # install.packages(\"devtools\") devtools::install_github(\"JaseZiv/worldfootballR\") library(worldfootballR)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"usage","dir":"Articles","previous_headings":"","what":"Usage","title":"Extracting data from FBref for International Matches","text":"Package vignettes built help get started package. functions extract data FBref, see functions extract data Transfermarkt, see functions extract data Understat, see functions load pre-scraped data, see vignette cover functions extract data international matches FBref.com. functions document documented FBref data vignette, however method using functions international matches differs played domestic leagues. NOTE: version 0.5.2, FBref functions now come user-defined pause page loads address new rate limiting. See document information.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"important","dir":"Articles","previous_headings":"","what":"Important","title":"Extracting data from FBref for International Matches","text":"get competition URLs needed lot functions document, refer column comp_url relevant league / competition ’re interested , stored data file.","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"get-match-urls","dir":"Articles","previous_headings":"Helper Function","what":"Get match urls","title":"Extracting data from FBref for International Matches","text":"get match URLs needed pass match-level functions , fb_match_urls() can used.","code":"wc_2018_urls <- fb_match_urls(country = \"\", gender = \"M\", season_end_year = 2018, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/1/history/World-Cup-Seasons\") friendly_int_2021_urls <- fb_match_urls(country = \"\", gender = \"M\", season_end_year = 2021, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/218/history/Friendlies-M-Seasons\") euro_2021_urls <- fb_match_urls(country = \"\", gender = \"M\", season_end_year = 2021, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/676/history/European-Championship-Seasons\") copa_2019_urls <- fb_match_urls(country = \"\", gender = \"M\", season_end_year = 2019, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/685/history/Copa-America-Seasons\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"match-level-data","dir":"Articles","previous_headings":"","what":"Match-Level Data","title":"Extracting data from FBref for International Matches","text":"following sections outlines functions available extract data per-match level","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"get-match-results","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match results","title":"Extracting data from FBref for International Matches","text":"get match results (additional metadata), following function can used. use functionality, simply leave country = '' pass non-domestic league URL","code":"# euro 2016 results euro_2016_results <- fb_match_results(country = \"\", gender = \"M\", season_end_year = 2016, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/676/history/European-Championship-Seasons\") # 2019 Copa America results: copa_2019_results <- fb_match_results(country = \"\", gender = \"M\", season_end_year = 2019, non_dom_league_url = \"https://fbref.com/en/comps/685/history/Copa-America-Seasons\") # for international friendlies: international_results <- fb_match_results(country = \"\", gender = \"M\", season_end_year = 2021, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/218/history/Friendlies-M-Seasons\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"get-match-report","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match report","title":"Extracting data from FBref for International Matches","text":"function return similar results fb_match_results(), however fb_match_report() provide additional information. also provide single match, whole season:","code":"# function to extract match report data for 2018 world cup wc_2018_report <- fb_match_report(match_url = wc_2018_urls) # function to extract match report data for 2021 international friendlies friendlies_report <- fb_match_report(match_url = friendly_int_2021_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"get-match-summaries","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match summaries","title":"Extracting data from FBref for International Matches","text":"function return main events occur match, including goals, substitutions red/yellow cards:","code":"# first get the URLs for the 2016 Euros euro_2016_match_urls <- fb_match_urls(country = \"\", gender = \"M\", season_end_year = 2016, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/676/history/European-Championship-Seasons\") # then pass these to the function to get match summaries: euro_2016_events <- fb_match_summary(euro_2016_match_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"get-match-lineups","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match lineups","title":"Extracting data from FBref for International Matches","text":"function return dataframe players listed match, including whether started pitch, bench. version 0.2.7, function now also returns summary performance data player played, including position, minutes played, goals, cards, etc.","code":"# function to extract match lineups copa_2019_lineups <- fb_match_lineups(match_url = copa_2019_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"get-shooting-and-shot-creation-events","dir":"Articles","previous_headings":"Match-Level Data","what":"Get shooting and shot creation events","title":"Extracting data from FBref for International Matches","text":"function allows users extract shooting shot creation event data match selected matches. data returned includes took shot, , body part far away. Additionally, player creating chance also creation included data.","code":"shots_wc_2018 <- fb_match_shooting(wc_2018_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"get-advanced-match-statistics","dir":"Articles","previous_headings":"Match-Level Data","what":"Get advanced match statistics","title":"Extracting data from FBref for International Matches","text":"fb_advanced_match_stats() function allows user return data frame different stat types matches played. Note, stats may available comps. following stat types can selected: summary passing passing_types defense possession misc keeper function can used either players individually: used team totals match:","code":"advanced_match_stats_player <- fb_advanced_match_stats(match_url = wc_2018_urls, stat_type = \"possession\", team_or_player = \"player\") advanced_match_stats_team <- fb_advanced_match_stats(match_url = wc_2018_urls, stat_type = \"passing_types\", team_or_player = \"team\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"overview","dir":"Articles","previous_headings":"","what":"Overview","title":"Load Scraped Data Functions","text":"package designed allow users extract various world football results player statistics following popular football (soccer) data sites: FBref Transfermarkt Understat","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"installation","dir":"Articles","previous_headings":"","what":"Installation","title":"Load Scraped Data Functions","text":"can install CRAN version worldfootballR : can install released version worldfootballR GitHub :","code":"install.packages(\"worldfootballR\") # install.packages(\"devtools\") devtools::install_github(\"JaseZiv/worldfootballR\") library(worldfootballR) library(dplyr)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"usage","dir":"Articles","previous_headings":"","what":"Usage","title":"Load Scraped Data Functions","text":"Package vignettes built help get started package. functions extract data FBref, see functions extract data Transfermarkt, see functions extract data Understat, see functions extract data international matches FBref, see vignette cover functions load scraped data worldfootballR_data data repository. NOTE: version 0.5.2, FBref functions now come user-defined pause page loads address new rate limiting. See document information.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-fbref","dir":"Articles","previous_headings":"","what":"Load FBref","title":"Load Scraped Data Functions","text":"following section demonstrates different loading functions FBref data.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-fbref-match-results","dir":"Articles","previous_headings":"Load FBref","what":"Load FBref match results","title":"Load Scraped Data Functions","text":"load pre-scraped match results years data available, load_match_results() function can used. data scheduled updated days print statement inform user data last updated. domestic leagues included data repository. load function equivalent fb_match_results().","code":"eng_match_results <- load_match_results(country = \"ENG\", gender = c(\"M\", \"F\"), season_end_year = c(2020:2022), tier = \"1st\") dplyr::glimpse(eng_match_results) #> Rows: 1,536 #> Columns: 20 #> $ Competition_Name \"FA Women's Super League\", \"FA Women's Super League\",… #> $ Gender \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\"… #> $ Country \"ENG\", \"ENG\", \"ENG\", \"ENG\", \"ENG\", \"ENG\", \"ENG\", \"ENG… #> $ Season_End_Year 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020,… #> $ Round NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N… #> $ Wk NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N… #> $ Day \"Sat\", \"Sat\", \"Sun\", \"Sun\", \"Sun\", \"Sun\", \"Sun\", \"Sun… #> $ Date 2019-09-07, 2019-09-07, 2019-09-08, 2019-09-08, 2019… #> $ Time \"15:00\", \"15:00\", \"12:30\", \"14:00\", \"14:00\", \"14:30\",… #> $ Home \"Manchester City\", \"Bristol City\", \"Chelsea\", \"Birmin… #> $ HomeGoals 1, 0, 1, 0, 0, 2, 0, 2, 1, 1, 1, 0, 2, 4, 0, 0, 0, 3,… #> $ Home_xG 0.5, 0.4, 1.3, 0.7, 0.5, 2.6, 0.2, 1.4, 1.6, 0.4, 1.4… #> $ Away \"Manchester Utd\", \"Brighton\", \"Tottenham\", \"Everton\",… #> $ AwayGoals 0, 0, 0, 1, 1, 1, 2, 0, 0, 1, 0, 1, 0, 0, 1, 2, 4, 0,… #> $ Away_xG 1.1, 2.1, 0.3, 0.8, 1.0, 0.8, 2.3, 1.0, 0.3, 1.7, 0.9… #> $ Attendance 31213, 3041, 24564, 873, 1445, 1795, 897, 441, 996, 1… #> $ Venue \"Etihad Stadium\", \"Stoke Gifford Stadium\", \"Stamford … #> $ Referee \"Rebecca Welch\", \"Abigail Bryne\", \"Jack Packman\", \"El… #> $ Notes \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"… #> $ MatchURL \"https://fbref.com/en/matches/f116cea0/Manchester-Der…"},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-fbref-match-results-for-cups-and-international-comps","dir":"Articles","previous_headings":"Load FBref","what":"Load FBref match results for Cups and International Comps","title":"Load Scraped Data Functions","text":"Similarly, load pre-scraped match results cups international matches years data available, load_match_comp_results() function can used. data scheduled updated days print statement inform user data last updated. following list competitions (comp_name) available:","code":"#> [1] \"AFC Asian Cup\" #> [2] \"AFC Asian Cup qualification\" #> [3] \"AFC Women's Asian Cup\" #> [4] \"AFC Women's Asian Cup Qualification\" #> [5] \"Africa Cup of Nations\" #> [6] \"Africa Cup of Nations qualification\" #> [7] \"Africa Women Cup of Nations\" #> [8] \"Algarve Cup\" #> [9] \"CONCACAF Gold Cup\" #> [10] \"CONCACAF W Championship\" #> [11] \"CONMEBOL Copa América\" #> [12] \"Copa América Femenina\" #> [13] \"Copa Libertadores de América\" #> [14] \"Copa Sudamericana\" #> [15] \"Copa de la Liga Profesional\" #> [16] \"Copa del Rey\" #> [17] \"Coppa Italia\" #> [18] \"Coupe de France\" #> [19] \"Coupe de la Ligue\" #> [20] \"DFB-Pokal\" #> [21] \"DFB-Pokal Frauen\" #> [22] \"EFL Cup\" #> [23] \"FA Cup\" #> [24] \"FIFA Confederations Cup\" #> [25] \"FIFA Women's World Cup\" #> [26] \"FIFA Women's World Cup Qualification (UEFA)\" #> [27] \"FIFA World Cup\" #> [28] \"FIFA World Cup Qualification — AFC\" #> [29] \"FIFA World Cup Qualification — CAF\" #> [30] \"FIFA World Cup Qualification — CONCACAF\" #> [31] \"FIFA World Cup Qualification — CONMEBOL\" #> [32] \"FIFA World Cup Qualification — Inter-confederation play-offs\" #> [33] \"FIFA World Cup Qualification — OFC\" #> [34] \"FIFA World Cup Qualification — UEFA\" #> [35] \"International Friendlies (M)\" #> [36] \"International Friendlies (W)\" #> [37] \"NWSL Challenge Cup\" #> [38] \"NWSL Fall Series\" #> [39] \"OFC Nations Cup\" #> [40] \"OFC Women's Nations Cup\" #> [41] \"Olympics — Women's Tournament\" #> [42] \"SheBelieves Cup\" #> [43] \"UEFA Champions League\" #> [44] \"UEFA Europa Conference League\" #> [45] \"UEFA Europa League\" #> [46] \"UEFA European Football Championship\" #> [47] \"UEFA European Football Championship Qualifying\" #> [48] \"UEFA Nations League\" #> [49] \"UEFA Women's Champions League\" #> [50] \"UEFA Women's Championship\" #> [51] \"UEFA Women's Euro Qualification\" cups <- c(\"FIFA Women's World Cup\",\"FIFA World Cup\") world_cups <- load_match_comp_results(comp_name = cups) dplyr::glimpse(world_cups) #> Rows: 1,312 #> Columns: 20 #> $ Competition_Name \"FIFA Women's World Cup\", \"FIFA Women's World Cup\", \"… #> $ Gender \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\"… #> $ Country NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N… #> $ Season_End_Year 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991,… #> $ Round \"Group stage\", \"Group stage\", \"Group stage\", \"Group s… #> $ Wk NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N… #> $ Day \"Sat\", \"Sun\", \"Sun\", \"Sun\", \"Sun\", \"Sun\", \"Tue\", \"Tue… #> $ Date 1991-11-16, 1991-11-17, 1991-11-17, 1991-11-17, 1991… #> $ Time \"20:45\", \"15:30\", \"19:45\", \"19:45\", \"19:45\", \"19:45\",… #> $ Home \"China PR cn\", \"Germany de\", \"Japan jp\", \"Chinese Tai… #> $ HomeGoals 4, 4, 0, 0, 2, 3, 4, 1, 0, 0, 0, 2, 0, 0, 4, 2, 2, 0,… #> $ Home_xG NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N… #> $ Away \"no Norway\", \"ng Nigeria\", \"br Brazil\", \"it Italy\", \"… #> $ AwayGoals 0, 0, 1, 5, 3, 0, 0, 0, 3, 5, 8, 2, 3, 2, 1, 0, 1, 2,… #> $ Away_xG NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N… #> $ Attendance 65000, 14000, 14000, 11000, 14000, 14000, 12000, 1200… #> $ Venue \"Tianhe Stadium (Neutral Site)\", \"Jiangmen Stadium (N… #> $ Referee \"Salvador Imperatore Marcone\", \"Rafael Rodriguez\", \"L… #> $ Notes \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"… #> $ MatchURL \"https://fbref.com/en/matches/0d9e0f26/China-PR-Norwa…"},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-fbref-big-5-league-advanced-season-stats","dir":"Articles","previous_headings":"Load FBref","what":"Load FBref big 5 league advanced season stats","title":"Load Scraped Data Functions","text":"load pre-scraped advanced stats big five European leagues either teams players, load_fb_big5_advanced_season_stats() can used. data scheduled updated days print statement inform user data last updated. load function equivalent fb_big5_advanced_season_stats().","code":"all_season_player <- load_fb_big5_advanced_season_stats(stat_type = \"defense\", team_or_player = \"player\") current_season_player <- load_fb_big5_advanced_season_stats(season_end_year = 2022, stat_type = \"defense\", team_or_player = \"player\") all_season_team <- load_fb_big5_advanced_season_stats(stat_type = \"defense\", team_or_player = \"team\") current_season_team <- load_fb_big5_advanced_season_stats(season_end_year = 2022, stat_type = \"defense\", team_or_player = \"team\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-fbref-match-shooting","dir":"Articles","previous_headings":"Load FBref","what":"Load FBref match shooting","title":"Load Scraped Data Functions","text":"load_fb_match_shooting() can used load pre-scraped match shooting logs FBref. load function equivalent fb_match_shooting(). handful leagues supported.","code":"## 2018 - current season for EPL load_fb_match_shooting( country = \"ENG\", gender = \"M\", tier = \"1st\" ) #> # A tibble: 66,873 × 23 #> MatchURL Date Squad Home_Away Match_Half Minute Player Player_Href xG #> #> 1 https://fbr… 2017… Arse… Home 1 2 Alexa… /en/player… 0.06 #> 2 https://fbr… 2017… Arse… Home 1 8 Alex … /en/player… 0.04 #> 3 https://fbr… 2017… Arse… Home 1 14 Alex … /en/player… 0.03 #> 4 https://fbr… 2017… Arse… Home 1 22 Danny… /en/player… 0.34 #> 5 https://fbr… 2017… Arse… Home 1 22 Grani… /en/player… 0.02 #> 6 https://fbr… 2017… Arse… Home 1 26 Danny… /en/player… 0.07 #> 7 https://fbr… 2017… Arse… Home 1 27 Sead … /en/player… 0.05 #> 8 https://fbr… 2017… Arse… Home 1 27 Moham… /en/player… 0.01 #> 9 https://fbr… 2017… Arse… Home 1 38 Grani… /en/player… 0.02 #> 10 https://fbr… 2017… Arse… Home 1 45+2 Alexa… /en/player… 0.07 #> # ℹ 66,863 more rows #> # ℹ 14 more variables: PSxG , Outcome , Distance , #> # `Body Part` , Notes , Player_SCA_1 , Event_SCA_1 , #> # Player_SCA_2 , Event_SCA_2 , Competition_Name , #> # Gender , Country , Tier , Season_End_Year ## just 2019, for multiple leagues at the same time load_fb_match_shooting( country = c(\"ITA\", \"ESP\"), gender = \"M\", tier = \"1st\", season_end_year = 2019 ) #> # A tibble: 19,810 × 23 #> MatchURL Date Squad Home_Away Match_Half Minute Player Player_Href xG #> #> 1 https://fbr… 2018… Chie… Home 1 15 Ivan … /en/player… 0.02 #> 2 https://fbr… 2018… Chie… Home 1 22 Ivan … /en/player… 0.02 #> 3 https://fbr… 2018… Chie… Home 1 38 Mariu… /en/player… 0.23 #> 4 https://fbr… 2018… Chie… Home 2 56 Emanu… /en/player… 0.79 #> 5 https://fbr… 2018… Chie… Home 2 67 Ivan … /en/player… 0.03 #> 6 https://fbr… 2018… Chie… Home 2 84 Fabri… /en/player… 0.02 #> 7 https://fbr… 2018… Juve… Away 1 3 Sami … /en/player… 0.20 #> 8 https://fbr… 2018… Juve… Away 1 5 Paulo… /en/player… 0.04 #> 9 https://fbr… 2018… Juve… Away 1 6 Sami … /en/player… 0.07 #> 10 https://fbr… 2018… Juve… Away 1 9 João … /en/player… 0.66 #> # ℹ 19,800 more rows #> # ℹ 14 more variables: PSxG , Outcome , Distance , #> # `Body Part` , Notes , Player_SCA_1 , Event_SCA_1 , #> # Player_SCA_2 , Event_SCA_2 , Competition_Name , #> # Gender , Country , Tier , Season_End_Year "},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-fbref-match-summary","dir":"Articles","previous_headings":"Load FBref","what":"Load FBref match summary","title":"Load Scraped Data Functions","text":"load_fb_match_summary() can used load pre-scraped match summaries FBref. load function equivalent fb_match_summary(). handful leagues supported.","code":"## 2018 - current season for EPL load_fb_match_summary( country = \"ENG\", gender = \"M\", tier = \"1st\" ) #> # A tibble: 33,537 × 33 #> MatchURL League Match_Date Matchweek Home_Team Home_Formation Home_Score #> #> 1 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 2 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 3 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 4 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 5 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 6 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 7 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 8 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 9 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 10 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> # ℹ 33,527 more rows #> # ℹ 26 more variables: Home_xG , Home_Goals , #> # Home_Yellow_Cards , Home_Red_Cards , Away_Team , #> # Away_Formation , Away_Score , Away_xG , Away_Goals , #> # Away_Yellow_Cards , Away_Red_Cards , Game_URL , Team , #> # Home_Away , Event_Time , Is_Pens , Event_Half , #> # Event_Type , Event_Players , Score_Progression , … ## just 2019, for multiple leagues at the same time load_fb_match_summary( country = c(\"ITA\", \"ESP\"), gender = \"M\", tier = \"1st\", season_end_year = 2019 ) #> # A tibble: 10,311 × 33 #> MatchURL League Match_Date Matchweek Home_Team Home_Formation Home_Score #> #> 1 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 2 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 3 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 4 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 5 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 6 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 7 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 8 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 9 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 10 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> # ℹ 10,301 more rows #> # ℹ 26 more variables: Home_xG , Home_Goals , #> # Home_Yellow_Cards , Home_Red_Cards , Away_Team , #> # Away_Formation , Away_Score , Away_xG , Away_Goals , #> # Away_Yellow_Cards , Away_Red_Cards , Game_URL , Team , #> # Home_Away , Event_Time , Is_Pens , Event_Half , #> # Event_Type , Event_Players , Score_Progression , …"},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-fbref-advanced-match-stats","dir":"Articles","previous_headings":"Load FBref","what":"Load FBref advanced match stats","title":"Load Scraped Data Functions","text":"load_fb_advanced_match_stats() can used load pre-scraped match summaries FBref. load function equivalent fb_advanced_match_stats(). leagues stat types supported.","code":"## 2018 - current season for EPL load_fb_advanced_match_stats( country = \"ENG\", gender = \"M\", tier = \"1st\", stat_type = \"summary\", team_or_player = \"player\" ) #> # A tibble: 74,280 × 58 #> MatchURL League Match_Date Matchweek Home_Team Home_Formation Home_Score #> #> 1 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 2 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 3 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 4 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 5 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 6 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 7 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 8 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 9 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 10 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> # ℹ 74,270 more rows #> # ℹ 51 more variables: Home_xG , Home_Goals , #> # Home_Yellow_Cards , Home_Red_Cards , Away_Team , #> # Away_Formation , Away_Score , Away_xG , Away_Goals , #> # Away_Yellow_Cards , Away_Red_Cards , Game_URL , Team , #> # Home_Away , Player , Player_Href , Player_Num , #> # Nation , Pos , Age , Min , Gls , Ast , … ## just 2019, for multiple leagues at the same time load_fb_advanced_match_stats( country = c(\"ITA\", \"ESP\"), gender = \"M\", tier = \"1st\", season_end_year = 2019, stat_type = \"defense\", team_or_player = \"player\" ) #> MatchURL #> 1 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 2 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 3 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 4 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 5 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 6 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 7 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 8 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 9 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 10 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 11 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 12 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 13 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 14 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 15 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 16 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 17 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 18 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 19 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 20 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 21 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 22 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 23 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 24 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 25 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 26 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 27 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 28 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 29 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 30 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 31 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 32 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 33 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 34 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 35 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 36 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 37 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 38 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 39 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 40 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 41 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 42 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 43 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 44 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 45 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 46 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 47 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 48 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 49 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 50 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 51 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 52 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 53 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 54 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 55 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 56 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 57 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 58 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 59 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 60 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 61 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 62 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 63 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 64 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 65 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 66 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 67 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 68 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 69 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 70 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 71 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 72 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 73 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 74 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 75 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 76 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 77 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 78 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 79 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 80 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 81 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 82 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 83 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 84 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 85 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 86 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 87 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 88 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 89 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 90 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 91 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 92 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 93 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 94 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 95 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 96 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 97 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 98 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 99 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 100 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 101 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 102 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 103 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 104 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 105 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 106 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 107 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 108 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 109 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 110 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 111 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 112 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 113 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 114 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 115 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 116 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 117 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 118 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 119 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 120 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 121 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 122 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 123 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 124 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 125 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 126 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 127 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 128 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 129 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 130 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 131 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 132 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 133 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 134 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 135 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 136 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 137 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 138 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 139 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 140 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 141 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 142 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 143 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 144 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 145 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 146 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 147 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 148 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 149 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 150 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 151 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 152 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 153 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 154 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 155 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 156 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 157 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 158 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 159 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 160 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 161 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 162 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 163 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 164 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 165 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 166 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 167 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 168 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 169 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 170 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 171 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 172 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 173 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 174 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 175 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 176 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 177 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 178 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 179 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 180 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 181 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 182 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 183 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 184 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 185 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 186 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 187 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 188 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 189 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 190 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 191 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 192 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 193 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 194 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 195 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 196 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 197 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 198 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 199 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 200 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 201 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 202 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 203 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 204 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 205 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 206 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 207 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 208 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 209 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 210 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 211 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 212 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 213 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 214 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 215 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 216 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 217 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 218 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 219 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 220 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 221 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 222 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 223 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 224 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 225 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 226 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 227 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 228 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 229 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 230 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 231 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 232 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 233 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 234 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 235 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 236 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 237 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 238 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 239 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 240 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 241 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 242 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 243 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 244 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 245 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 246 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 247 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 248 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 249 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 250 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 251 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 252 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 253 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 254 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 255 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 256 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 257 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 258 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 259 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 260 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 261 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 262 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 263 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 264 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 265 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 266 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 267 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 268 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 269 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 270 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 271 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 272 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 273 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 274 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 275 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 276 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 277 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 278 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 279 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 280 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 281 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 282 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 283 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 284 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 285 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 286 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 287 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 288 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 289 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 290 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 291 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 292 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 293 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 294 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 295 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 296 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 297 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 298 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 299 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 300 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 301 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 302 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 303 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 304 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 305 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 306 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 307 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 308 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 309 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 310 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 311 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 312 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 313 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 314 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 315 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 316 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 317 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 318 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 319 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 320 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 321 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 322 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 323 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 324 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 325 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 326 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 327 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 328 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 329 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 330 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 331 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 332 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 333 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 334 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 335 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 336 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 337 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 338 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 339 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 340 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 341 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 342 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 343 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 344 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 345 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 346 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 347 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 348 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 349 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 350 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 351 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 352 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 353 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 354 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 355 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 356 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 357 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 358 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 359 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 360 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 361 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 362 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 363 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 364 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 365 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 366 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 367 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 368 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 369 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 370 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 371 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 372 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 373 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 374 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 375 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 376 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 377 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 378 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 379 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 380 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 381 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 382 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 383 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 384 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 385 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 386 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 387 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 388 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 389 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 390 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 391 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 392 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 393 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 394 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 395 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 396 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 397 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 398 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 399 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 400 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 401 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 402 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 403 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 404 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 405 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 406 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 407 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 408 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 409 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 410 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 411 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 412 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 413 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 414 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 415 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 416 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 417 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 418 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 419 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 420 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 421 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 422 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 423 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 424 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 425 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 426 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 427 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 428 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 429 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 430 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 431 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 432 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 433 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 434 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 435 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 436 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 437 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 438 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 439 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 440 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 441 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 442 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 443 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 444 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 445 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 446 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 447 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 448 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 449 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 450 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 451 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 452 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 453 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 454 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 455 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 456 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 457 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 458 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 459 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 460 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 461 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 462 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 463 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 464 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 465 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 466 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 467 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 468 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 469 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 470 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 471 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 472 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 473 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 474 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 475 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 476 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 477 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 478 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 479 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 480 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 481 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 482 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 483 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 484 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 485 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 486 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 487 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 488 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 489 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 490 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 491 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 492 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 493 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 494 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 495 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 496 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 497 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 498 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 499 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 500 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 501 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 502 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 503 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 504 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 505 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 506 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 507 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 508 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 509 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 510 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 511 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 512 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 513 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 514 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 515 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 516 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 517 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 518 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 519 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 520 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 521 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 522 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 523 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 524 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 525 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 526 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 527 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 528 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 529 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 530 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 531 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 532 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 533 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 534 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 535 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 536 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 537 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 538 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 539 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 540 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 541 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 542 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 543 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 544 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 545 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 546 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 547 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 548 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 549 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 550 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 551 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 552 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 553 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 554 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 555 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 556 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 557 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 558 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 559 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 560 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 561 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 562 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 563 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 564 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 565 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 566 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 567 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 568 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 569 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 570 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 571 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 572 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 573 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 574 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 575 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 576 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 577 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 578 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 579 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 580 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 581 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 582 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 583 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 584 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 585 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 586 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 587 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 588 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 589 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 590 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 591 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 592 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 593 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 594 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 595 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 596 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 597 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 598 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 599 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 600 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 601 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 602 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 603 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 604 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 605 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 606 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 607 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 608 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 609 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 610 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 611 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 612 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 613 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 614 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 615 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 616 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 617 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 618 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 619 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 620 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 621 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 622 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 623 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 624 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 625 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 626 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 627 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 628 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 629 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 630 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 631 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 632 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 633 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 634 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 635 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 636 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 637 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 638 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 639 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 640 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 641 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 642 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 643 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 644 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 645 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 646 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 647 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 648 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 649 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 650 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 651 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 652 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 653 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 654 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 655 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 656 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 657 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 658 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 659 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 660 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 661 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 662 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 663 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 664 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 665 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 666 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 667 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 668 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 669 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 670 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 671 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 672 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 673 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 674 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 675 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 676 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 677 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 678 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 679 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 680 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 681 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 682 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 683 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 684 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 685 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 686 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 687 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 688 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 689 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 690 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 691 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 692 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 693 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 694 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 695 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 696 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 697 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 698 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 699 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 700 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 701 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 702 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 703 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 704 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 705 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 706 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 707 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 708 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 709 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 710 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 711 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 712 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 713 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 714 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 715 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 716 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 717 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 718 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 719 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 720 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 721 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 722 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 723 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 724 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 725 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 726 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 727 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 728 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 729 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 730 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 731 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 732 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 733 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 734 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 735 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 736 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 737 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 738 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 739 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 740 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 741 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 742 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 743 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 744 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 745 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 746 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 747 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 748 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 749 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 750 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 751 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 752 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 753 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 754 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 755 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 756 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 757 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 758 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 759 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 760 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 761 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 762 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 763 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 764 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 765 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 766 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 767 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 768 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 769 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 770 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 771 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 772 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 773 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 774 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 775 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 776 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 777 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 778 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 779 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 780 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 781 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 782 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 783 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 784 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 785 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 786 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 787 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 788 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 789 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 790 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 791 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 792 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 793 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 794 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 795 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 796 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 797 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 798 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 799 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 800 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 801 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 802 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 803 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 804 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 805 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 806 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 807 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 808 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 809 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 810 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 811 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 812 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 813 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 814 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 815 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 816 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 817 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 818 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 819 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 820 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 821 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 822 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 823 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 824 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 825 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 826 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 827 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 828 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 829 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 830 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 831 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 832 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 833 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 834 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 835 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 836 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 837 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 838 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 839 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 840 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 841 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 842 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 843 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 844 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 845 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 846 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 847 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 848 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 849 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 850 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 851 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 852 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 853 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 854 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 855 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 856 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 857 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 858 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 859 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 860 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 861 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 862 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 863 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 864 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 865 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 866 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 867 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 868 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 869 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 870 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 871 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 872 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 873 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 874 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 875 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 876 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 877 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 878 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 879 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 880 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 881 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 882 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 883 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 884 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 885 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 886 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 887 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 888 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 889 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 890 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 891 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 892 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 893 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 894 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 895 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 896 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 897 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 898 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 899 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 900 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 901 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 902 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 903 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 904 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 905 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 906 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 907 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 908 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 909 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 910 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 911 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 912 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 913 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 914 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 915 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 916 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 917 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 918 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 919 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 920 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 921 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 922 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 923 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 924 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 925 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 926 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 927 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 928 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 929 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 930 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 931 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 932 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 933 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 934 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 935 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 936 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 937 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 938 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 939 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 940 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 941 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 942 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 943 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 944 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 945 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 946 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 947 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 948 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 949 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 950 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 951 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 952 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 953 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 954 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 955 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 956 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 957 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 958 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 959 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 960 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 961 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 962 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 963 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 964 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 965 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 966 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 967 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 968 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 969 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 970 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 971 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 972 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 973 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 974 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 975 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 976 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 977 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 978 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 979 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 980 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 981 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 982 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 983 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 984 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 985 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 986 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 987 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 988 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 989 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 990 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 991 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 992 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 993 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 994 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 995 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 996 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 997 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 998 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 999 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1000 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1001 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1002 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1003 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1004 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1005 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1006 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1007 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1008 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1009 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1010 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1011 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1012 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1013 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1014 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1015 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1016 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1017 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1018 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1019 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1020 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1021 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1022 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1023 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1024 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1025 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1026 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1027 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1028 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1029 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1030 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1031 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1032 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1033 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1034 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1035 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1036 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1037 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1038 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1039 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1040 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1041 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1042 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1043 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1044 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1045 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1046 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1047 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1048 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1049 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1050 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1051 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1052 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1053 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1054 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1055 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1056 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1057 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1058 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1059 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1060 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1061 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1062 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1063 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1064 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1065 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1066 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1067 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1068 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1069 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1070 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1071 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1072 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1073 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1074 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1075 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1076 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1077 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1078 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1079 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1080 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1081 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1082 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1083 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1084 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1085 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1086 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1087 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1088 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1089 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1090 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1091 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1092 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1093 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1094 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1095 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1096 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1097 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1098 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1099 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1100 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1101 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1102 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1103 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1104 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1105 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1106 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1107 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1108 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1109 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1110 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1111 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1112 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1113 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1114 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1115 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1116 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1117 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1118 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1119 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1120 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1121 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1122 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1123 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1124 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1125 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1126 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1127 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1128 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1129 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1130 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1131 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1132 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1133 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1134 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1135 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1136 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1137 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1138 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1139 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1140 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1141 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1142 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1143 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1144 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1145 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1146 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1147 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1148 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1149 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1150 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1151 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1152 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1153 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1154 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1155 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1156 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1157 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1158 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1159 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1160 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1161 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1162 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1163 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1164 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1165 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1166 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1167 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1168 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1169 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1170 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1171 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1172 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1173 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1174 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1175 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1176 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1177 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1178 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1179 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1180 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1181 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1182 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1183 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1184 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1185 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1186 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1187 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1188 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1189 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1190 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1191 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1192 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1193 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1194 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1195 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1196 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1197 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1198 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1199 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1200 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1201 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1202 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1203 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1204 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1205 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1206 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1207 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1208 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1209 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1210 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1211 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1212 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1213 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1214 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1215 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1216 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1217 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1218 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1219 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1220 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1221 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1222 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1223 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1224 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1225 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1226 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1227 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1228 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1229 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1230 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1231 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1232 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1233 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1234 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1235 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1236 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1237 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1238 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1239 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1240 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1241 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1242 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1243 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1244 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1245 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1246 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1247 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1248 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1249 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1250 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1251 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1252 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1253 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1254 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1255 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1256 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1257 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1258 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1259 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1260 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1261 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1262 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1263 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1264 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1265 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1266 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1267 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1268 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1269 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1270 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1271 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1272 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1273 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1274 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1275 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1276 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1277 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1278 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1279 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1280 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1281 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1282 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1283 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1284 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1285 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1286 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1287 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1288 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1289 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1290 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1291 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1292 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1293 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1294 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1295 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1296 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1297 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1298 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1299 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1300 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1301 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1302 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1303 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1304 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1305 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1306 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1307 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1308 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1309 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1310 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1311 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1312 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1313 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1314 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1315 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1316 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1317 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1318 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1319 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1320 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1321 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1322 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1323 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1324 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1325 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1326 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1327 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1328 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1329 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1330 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1331 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1332 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1333 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1334 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1335 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1336 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1337 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1338 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1339 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1340 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1341 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1342 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1343 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1344 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1345 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1346 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1347 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1348 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1349 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1350 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1351 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1352 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1353 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1354 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1355 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1356 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1357 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1358 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1359 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1360 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1361 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1362 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1363 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1364 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1365 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1366 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1367 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1368 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1369 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1370 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1371 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1372 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1373 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1374 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1375 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1376 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1377 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1378 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1379 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1380 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1381 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1382 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1383 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1384 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1385 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1386 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1387 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1388 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1389 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1390 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1391 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1392 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1393 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1394 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1395 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1396 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1397 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1398 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1399 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1400 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1401 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1402 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1403 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1404 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1405 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1406 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1407 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1408 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1409 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1410 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1411 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1412 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1413 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1414 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1415 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1416 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1417 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1418 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1419 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1420 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1421 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1422 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1423 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1424 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1425 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1426 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1427 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1428 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1429 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1430 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1431 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1432 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1433 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1434 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1435 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1436 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1437 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1438 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1439 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1440 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1441 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1442 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1443 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1444 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1445 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1446 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1447 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1448 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1449 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1450 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1451 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1452 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1453 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1454 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1455 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1456 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1457 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1458 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1459 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1460 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1461 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1462 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1463 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1464 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1465 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1466 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1467 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1468 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1469 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1470 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1471 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1472 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1473 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1474 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1475 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1476 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1477 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1478 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1479 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1480 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1481 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1482 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1483 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1484 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1485 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1486 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1487 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1488 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1489 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1490 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1491 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1492 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1493 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1494 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1495 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1496 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1497 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1498 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1499 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1500 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1501 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1502 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1503 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1504 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1505 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1506 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1507 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1508 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1509 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1510 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1511 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1512 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1513 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1514 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1515 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1516 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1517 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1518 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1519 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1520 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1521 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1522 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1523 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1524 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1525 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1526 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1527 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1528 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1529 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1530 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1531 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1532 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1533 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1534 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1535 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1536 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1537 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1538 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1539 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1540 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1541 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1542 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1543 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1544 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1545 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1546 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1547 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1548 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1549 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1550 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1551 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1552 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1553 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1554 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1555 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1556 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1557 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1558 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1559 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1560 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1561 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1562 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1563 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1564 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1565 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1566 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1567 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1568 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1569 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1570 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1571 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1572 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1573 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1574 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1575 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1576 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1577 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1578 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1579 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1580 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1581 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1582 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1583 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1584 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1585 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1586 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1587 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1588 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1589 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1590 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1591 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1592 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1593 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1594 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1595 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1596 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1597 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1598 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1599 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1600 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1601 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1602 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1603 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1604 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1605 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1606 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1607 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1608 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1609 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1610 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1611 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1612 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1613 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1614 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1615 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1616 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1617 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1618 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1619 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1620 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1621 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1622 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1623 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1624 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1625 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1626 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1627 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1628 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1629 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1630 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1631 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1632 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1633 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1634 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1635 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1636 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1637 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1638 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1639 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1640 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1641 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1642 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1643 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1644 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1645 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1646 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1647 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1648 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1649 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1650 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1651 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1652 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1653 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1654 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1655 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1656 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1657 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1658 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1659 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1660 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1661 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1662 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1663 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1664 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1665 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1666 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1667 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1668 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1669 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1670 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1671 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1672 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1673 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1674 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1675 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1676 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1677 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1678 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1679 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1680 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1681 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1682 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1683 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1684 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1685 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1686 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1687 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1688 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1689 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1690 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1691 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1692 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1693 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1694 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1695 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1696 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1697 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1698 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1699 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1700 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1701 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1702 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1703 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1704 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1705 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1706 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1707 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1708 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1709 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1710 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1711 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1712 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1713 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1714 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1715 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1716 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1717 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1718 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1719 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1720 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1721 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1722 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1723 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1724 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1725 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1726 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1727 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1728 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1729 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1730 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1731 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1732 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1733 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1734 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1735 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1736 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1737 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1738 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1739 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1740 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1741 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1742 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1743 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1744 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1745 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1746 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1747 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1748 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1749 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1750 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1751 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1752 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1753 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1754 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1755 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1756 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1757 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1758 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1759 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1760 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1761 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1762 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1763 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1764 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1765 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1766 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1767 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1768 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1769 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1770 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1771 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1772 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1773 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1774 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1775 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1776 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1777 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1778 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1779 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1780 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1781 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1782 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1783 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1784 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1785 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1786 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1787 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1788 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1789 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1790 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1791 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1792 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1793 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1794 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1795 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1796 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1797 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1798 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1799 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1800 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1801 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1802 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1803 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1804 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1805 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1806 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1807 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1808 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1809 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1810 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1811 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1812 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1813 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1814 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1815 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1816 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1817 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1818 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1819 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1820 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1821 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1822 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1823 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1824 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1825 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1826 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1827 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1828 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1829 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1830 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1831 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1832 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1833 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1834 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1835 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1836 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1837 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1838 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1839 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1840 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1841 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1842 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1843 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1844 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1845 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1846 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1847 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1848 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1849 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1850 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1851 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1852 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1853 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1854 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1855 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1856 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1857 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1858 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1859 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1860 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1861 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1862 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1863 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1864 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1865 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1866 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1867 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1868 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1869 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1870 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1871 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1872 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1873 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1874 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1875 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1876 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1877 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1878 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1879 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1880 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1881 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1882 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1883 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1884 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1885 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1886 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1887 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1888 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1889 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1890 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1891 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1892 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1893 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1894 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1895 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1896 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1897 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1898 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1899 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1900 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1901 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1902 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1903 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1904 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1905 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1906 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1907 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1908 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1909 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1910 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1911 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1912 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1913 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1914 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1915 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1916 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1917 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1918 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1919 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1920 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1921 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1922 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1923 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1924 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1925 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1926 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1927 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1928 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1929 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1930 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1931 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1932 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1933 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1934 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1935 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1936 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1937 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1938 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1939 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1940 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1941 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1942 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1943 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1944 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1945 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1946 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1947 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1948 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1949 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1950 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1951 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1952 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1953 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1954 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1955 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1956 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1957 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1958 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1959 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1960 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1961 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1962 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1963 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1964 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1965 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1966 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1967 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1968 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1969 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1970 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1971 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1972 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1973 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1974 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1975 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1976 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1977 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1978 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1979 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1980 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1981 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1982 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1983 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1984 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1985 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1986 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1987 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1988 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1989 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1990 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1991 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1992 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1993 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1994 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1995 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1996 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1997 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1998 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1999 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2000 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2001 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2002 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2003 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2004 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2005 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2006 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2007 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2008 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2009 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2010 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2011 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2012 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2013 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2014 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2015 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2016 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2017 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2018 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2019 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2020 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2021 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2022 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2023 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2024 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2025 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2026 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2027 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2028 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2029 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2030 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2031 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2032 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2033 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2034 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2035 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2036 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2037 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2038 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2039 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2040 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> League Match_Date Matchweek Home_Team Home_Formation #> 1 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 2 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 3 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 4 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 5 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 6 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 7 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 8 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 9 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 10 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 11 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 12 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 13 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 14 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 15 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 16 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 17 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 18 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 19 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 20 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 21 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 22 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 23 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 24 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 25 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 26 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 27 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 28 La Liga 2018-08-17 La Liga (Matchweek 1) Girona 4-3-3 #> 29 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 30 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 31 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 32 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 33 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 34 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 35 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 36 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 37 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 38 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 39 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 40 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 41 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 42 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 43 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 44 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 45 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 46 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 47 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 48 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 49 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 50 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 51 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 52 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 53 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 54 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 55 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 56 La Liga 2018-08-17 La Liga (Matchweek 1) Real Betis 3-1-4-2 #> 57 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 58 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 59 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 60 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 61 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 62 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 63 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 64 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 65 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 66 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 67 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 68 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 69 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 70 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 71 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 72 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 73 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 74 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 75 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 76 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 77 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 78 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 79 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 80 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 81 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 82 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 83 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 84 La Liga 2018-08-18 La Liga (Matchweek 1) Celta Vigo 4-2-3-1 #> 85 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 86 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 87 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 88 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 89 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 90 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 91 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 92 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 93 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 94 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 95 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 96 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 97 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 98 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 99 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 100 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 101 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 102 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 103 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 104 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 105 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 106 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 107 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 108 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 109 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 110 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 111 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 112 La Liga 2018-08-18 La Liga (Matchweek 1) Villarreal 4-4-2 #> 113 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 114 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 115 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 116 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 117 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 118 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 119 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 120 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 121 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 122 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 123 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 124 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 125 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 126 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 127 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 128 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 129 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 130 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 131 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 132 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 133 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 134 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 135 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 136 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 137 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 138 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 139 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 140 La Liga 2018-08-18 La Liga (Matchweek 1) Barcelona 4-4-2 #> 141 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 142 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 143 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 144 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 145 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 146 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 147 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 148 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 149 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 150 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 151 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 152 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 153 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 154 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 155 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 156 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 157 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 158 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 159 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 160 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 161 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 162 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 163 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 164 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 165 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 166 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 167 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 168 La Liga 2018-08-19 La Liga (Matchweek 1) Eibar 4-4-2 #> 169 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 170 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 171 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 172 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 173 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 174 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 175 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 176 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 177 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 178 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 179 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 180 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 181 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 182 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 183 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 184 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 185 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 186 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 187 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 188 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 189 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 190 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 191 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 192 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 193 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 194 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 195 La Liga 2018-08-19 La Liga (Matchweek 1) Rayo Vallecano 4-1-4-1 #> 196 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 197 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 198 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 199 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 200 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 201 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 202 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 203 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 204 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 205 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 206 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 207 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 208 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 209 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 210 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 211 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 212 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 213 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 214 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 215 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 216 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 217 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 218 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 219 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 220 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 221 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 222 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 223 La Liga 2018-08-19 La Liga (Matchweek 1) Real Madrid 4-3-3 #> 224 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 225 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 226 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 227 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 228 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 229 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 230 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 231 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 232 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 233 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 234 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 235 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 236 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 237 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 238 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 239 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 240 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 241 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 242 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 243 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 244 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 245 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 246 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 247 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 248 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 249 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 250 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 251 La Liga 2018-08-20 La Liga (Matchweek 1) Valencia 4-4-2 #> 252 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 253 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 254 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 255 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 256 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 257 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 258 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 259 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 260 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 261 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 262 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 263 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 264 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 265 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 266 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 267 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 268 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 269 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 270 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 271 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 272 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 273 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 274 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 275 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 276 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 277 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 278 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 279 La Liga 2018-08-20 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 280 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 281 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 282 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 283 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 284 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 285 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 286 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 287 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 288 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 289 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 290 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 291 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 292 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 293 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 294 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 295 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 296 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 297 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 298 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 299 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 300 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 301 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 302 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 303 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 304 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 305 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 306 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 307 La Liga 2018-08-24 La Liga (Matchweek 2) Getafe 4-4-2 #> 308 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 309 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 310 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 311 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 312 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 313 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 314 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 315 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 316 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 317 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 318 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 319 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 320 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 321 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 322 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 323 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 324 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 325 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 326 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 327 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 328 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 329 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 330 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 331 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 332 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 333 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 334 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 335 La Liga 2018-08-24 La Liga (Matchweek 2) Leganés 4-4-1-1 #> 336 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 337 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 338 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 339 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 340 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 341 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 342 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 343 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 344 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 345 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 346 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 347 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 348 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 349 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 350 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 351 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 352 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 353 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 354 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 355 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 356 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 357 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 358 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 359 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 360 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 361 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 362 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 363 La Liga 2018-08-25 La Liga (Matchweek 2) Alavés 4-4-2 #> 364 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 365 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 366 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 367 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 368 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 369 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 370 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 371 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 372 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 373 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 374 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 375 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 376 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 377 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 378 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 379 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 380 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 381 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 382 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 383 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 384 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 385 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 386 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 387 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 388 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 389 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 390 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 391 La Liga 2018-08-25 La Liga (Matchweek 2) Atlético Madrid 4-4-2 #> 392 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 393 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 394 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 395 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 396 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 397 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 398 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 399 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 400 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 401 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 402 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 403 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 404 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 405 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 406 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 407 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 408 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 409 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 410 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 411 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 412 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 413 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 414 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 415 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 416 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 417 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 418 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 419 La Liga 2018-08-25 La Liga (Matchweek 2) Valladolid 4-3-1-2 #> 420 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 421 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 422 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 423 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 424 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 425 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 426 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 427 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 428 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 429 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 430 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 431 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 432 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 433 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 434 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 435 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 436 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 437 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 438 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 439 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 440 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 441 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 442 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 443 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 444 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 445 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 446 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 447 La Liga 2018-08-26 La Liga (Matchweek 2) Espanyol 4-1-4-1 #> 448 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 449 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 450 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 451 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 452 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 453 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 454 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 455 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 456 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 457 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 458 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 459 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 460 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 461 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 462 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 463 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 464 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 465 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 466 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 467 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 468 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 469 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 470 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 471 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 472 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 473 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 474 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 475 La Liga 2018-08-26 La Liga (Matchweek 2) Girona 4-3-3 #> 476 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 477 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 478 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 479 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 480 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 481 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 482 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 483 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 484 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 485 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 486 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 487 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 488 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 489 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 490 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 491 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 492 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 493 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 494 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 495 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 496 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 497 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 498 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 499 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 500 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 501 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 502 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 503 La Liga 2018-08-26 La Liga (Matchweek 2) Sevilla 3-4-3 #> 504 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 505 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 506 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 507 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 508 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 509 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 510 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 511 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 512 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 513 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 514 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 515 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 516 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 517 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 518 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 519 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 520 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 521 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 522 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 523 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 524 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 525 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 526 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 527 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 528 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 529 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 530 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 531 La Liga 2018-08-27 La Liga (Matchweek 2) Levante 4-2-3-1 #> 532 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 533 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 534 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 535 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 536 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 537 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 538 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 539 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 540 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 541 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 542 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 543 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 544 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 545 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 546 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 547 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 548 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 549 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 550 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 551 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 552 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 553 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 554 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 555 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 556 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 557 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 558 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 559 La Liga 2018-08-27 La Liga (Matchweek 2) Athletic Club 4-1-4-1 #> 560 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 561 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 562 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 563 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 564 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 565 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 566 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 567 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 568 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 569 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 570 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 571 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 572 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 573 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 574 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 575 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 576 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 577 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 578 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 579 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 580 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 581 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 582 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 583 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 584 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 585 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 586 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 587 La Liga 2018-08-31 La Liga (Matchweek 3) Getafe 4-4-2 #> 588 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 589 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 590 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 591 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 592 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 593 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 594 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 595 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 596 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 597 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 598 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 599 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 600 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 601 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 602 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 603 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 604 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 605 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 606 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 607 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 608 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 609 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 610 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 611 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 612 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 613 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 614 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 615 La Liga 2018-08-31 La Liga (Matchweek 3) Villarreal 4-1-2-1-2 #> 616 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 617 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 618 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 619 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 620 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 621 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 622 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 623 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 624 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 625 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 626 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 627 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 628 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 629 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 630 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 631 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 632 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 633 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 634 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 635 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 636 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 637 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 638 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 639 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 640 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 641 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 642 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 643 La Liga 2018-08-31 La Liga (Matchweek 3) Eibar 4-4-2 #> 644 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 645 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 646 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 647 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 648 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 649 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 650 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 651 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 652 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 653 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 654 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 655 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 656 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 657 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 658 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 659 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 660 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 661 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 662 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 663 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 664 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 665 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 666 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 667 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 668 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 669 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 670 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 671 La Liga 2018-09-01 La Liga (Matchweek 3) Celta Vigo 3-4-3 #> 672 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 673 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 674 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 675 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 676 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 677 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 678 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 679 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 680 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 681 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 682 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 683 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 684 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 685 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 686 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 687 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 688 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 689 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 690 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 691 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 692 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 693 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 694 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 695 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 696 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 697 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 698 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 699 La Liga 2018-09-01 La Liga (Matchweek 3) Real Madrid 4-3-3 #> 700 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 701 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 702 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 703 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 704 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 705 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 706 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 707 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 708 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 709 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 710 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 711 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 712 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 713 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 714 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 715 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 716 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 717 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 718 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 719 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 720 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 721 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 722 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 723 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 724 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 725 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 726 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 727 La Liga 2018-09-02 La Liga (Matchweek 3) Levante 4-4-2 #> 728 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 729 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 730 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 731 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 732 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 733 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 734 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 735 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 736 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 737 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 738 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 739 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 740 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 741 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 742 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 743 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 744 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 745 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 746 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 747 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 748 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 749 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 750 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 751 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 752 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 753 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 754 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 755 La Liga 2018-09-02 La Liga (Matchweek 3) Alavés 4-4-2 #> 756 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 757 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 758 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 759 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 760 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 761 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 762 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 763 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 764 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 765 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 766 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 767 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 768 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 769 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 770 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 771 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 772 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 773 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 774 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 775 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 776 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 777 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 778 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 779 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 780 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 781 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 782 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 783 La Liga 2018-09-02 La Liga (Matchweek 3) Barcelona 4-3-3 #> 784 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 785 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 786 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 787 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 788 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 789 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 790 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 791 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 792 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 793 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 794 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 795 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 796 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 797 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 798 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 799 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 800 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 801 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 802 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 803 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 804 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 805 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 806 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 807 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 808 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 809 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 810 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 811 La Liga 2018-09-02 La Liga (Matchweek 3) Real Betis 3-4-3 #> 812 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 813 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 814 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 815 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 816 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 817 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 818 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 819 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 820 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 821 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 822 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 823 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 824 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 825 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 826 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 827 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 828 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 829 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 830 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 831 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 832 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 833 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 834 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 835 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 836 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 837 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 838 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 839 La Liga 2018-09-14 La Liga (Matchweek 4) Huesca 4-4-2 #> 840 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 841 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 842 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 843 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 844 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 845 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 846 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 847 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 848 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 849 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 850 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 851 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 852 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 853 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 854 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 855 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 856 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 857 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 858 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 859 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 860 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 861 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 862 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 863 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 864 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 865 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 866 La Liga 2018-09-15 La Liga (Matchweek 4) Atlético Madrid 4-1-4-1 #> 867 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 868 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 869 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 870 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 871 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 872 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 873 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 874 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 875 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 876 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 877 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 878 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 879 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 880 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 881 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 882 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 883 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 884 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 885 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 886 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 887 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 888 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 889 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 890 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 891 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 892 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 893 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 894 La Liga 2018-09-15 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 895 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 896 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 897 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 898 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 899 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 900 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 901 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 902 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 903 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 904 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 905 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 906 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 907 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 908 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 909 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 910 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 911 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 912 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 913 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 914 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 915 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 916 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 917 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 918 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 919 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 920 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 921 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 922 La Liga 2018-09-15 La Liga (Matchweek 4) Valencia 4-4-2 #> 923 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 924 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 925 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 926 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 927 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 928 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 929 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 930 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 931 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 932 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 933 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 934 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 935 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 936 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 937 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 938 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 939 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 940 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 941 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 942 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 943 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 944 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 945 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 946 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 947 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 948 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 949 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 950 La Liga 2018-09-15 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 951 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 952 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 953 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 954 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 955 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 956 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 957 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 958 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 959 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 960 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 961 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 962 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 963 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 964 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 965 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 966 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 967 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 968 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 969 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 970 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 971 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 972 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 973 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 974 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 975 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 976 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 977 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 978 La Liga 2018-09-16 La Liga (Matchweek 4) Leganés 4-2-3-1 #> 979 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 980 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 981 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 982 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 983 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 984 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 985 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 986 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 987 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 988 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 989 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 990 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 991 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 992 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 993 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 994 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 995 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 996 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 997 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 998 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 999 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 1000 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 1001 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 1002 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 1003 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 1004 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 1005 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 1006 La Liga 2018-09-16 La Liga (Matchweek 4) Espanyol 4-3-3 #> 1007 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1008 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1009 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1010 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1011 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1012 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1013 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1014 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1015 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1016 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1017 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1018 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1019 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1020 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1021 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1022 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1023 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1024 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1025 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1026 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1027 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1028 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1029 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1030 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1031 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1032 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1033 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1034 La Liga 2018-09-16 La Liga (Matchweek 4) Valladolid 4-2-3-1 #> 1035 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1036 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1037 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1038 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1039 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1040 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1041 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1042 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1043 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1044 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1045 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1046 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1047 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1048 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1049 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1050 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1051 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1052 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1053 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1054 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1055 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1056 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1057 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1058 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1059 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1060 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1061 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1062 La Liga 2018-09-16 La Liga (Matchweek 4) Sevilla 3-4-3 #> 1063 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1064 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1065 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1066 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1067 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1068 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1069 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1070 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1071 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1072 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1073 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1074 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1075 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1076 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1077 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1078 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1079 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1080 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1081 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1082 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1083 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1084 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1085 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1086 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1087 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1088 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1089 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1090 La Liga 2018-09-17 La Liga (Matchweek 4) Girona 3-4-3 #> 1091 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1092 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1093 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1094 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1095 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1096 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1097 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1098 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1099 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1100 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1101 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1102 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1103 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1104 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1105 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1106 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1107 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1108 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1109 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1110 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1111 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1112 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1113 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1114 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1115 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1116 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1117 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1118 La Liga 2018-09-21 La Liga (Matchweek 5) Huesca 4-2-3-1 #> 1119 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1120 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1121 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1122 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1123 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1124 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1125 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1126 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1127 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1128 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1129 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1130 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1131 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1132 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1133 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1134 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1135 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1136 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1137 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1138 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1139 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1140 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1141 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1142 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1143 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1144 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1145 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1146 La Liga 2018-09-22 La Liga (Matchweek 5) Rayo Vallecano 4-1-4-1 #> 1147 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1148 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1149 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1150 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1151 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1152 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1153 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1154 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1155 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1156 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1157 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1158 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1159 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1160 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1161 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1162 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1163 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1164 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1165 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1166 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1167 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1168 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1169 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1170 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1171 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1172 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1173 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1174 La Liga 2018-09-22 La Liga (Matchweek 5) Eibar 4-4-2 #> 1175 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1176 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1177 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1178 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1179 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1180 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1181 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1182 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1183 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1184 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1185 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1186 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1187 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1188 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1189 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1190 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1191 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1192 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1193 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1194 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1195 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1196 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1197 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1198 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1199 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1200 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1201 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1202 La Liga 2018-09-22 La Liga (Matchweek 5) Celta Vigo 4-4-2 #> 1203 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1204 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1205 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1206 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1207 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1208 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1209 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1210 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1211 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1212 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1213 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1214 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1215 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1216 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1217 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1218 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1219 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1220 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1221 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1222 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1223 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1224 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1225 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1226 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1227 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1228 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1229 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1230 La Liga 2018-09-22 La Liga (Matchweek 5) Getafe 4-4-2 #> 1231 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1232 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1233 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1234 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1235 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1236 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1237 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1238 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1239 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1240 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1241 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1242 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1243 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1244 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1245 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1246 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1247 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1248 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1249 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1250 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1251 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1252 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1253 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1254 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1255 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1256 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1257 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1258 La Liga 2018-09-22 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1259 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1260 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1261 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1262 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1263 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1264 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1265 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1266 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1267 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1268 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1269 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1270 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1271 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1272 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1273 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1274 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1275 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1276 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1277 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1278 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1279 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1280 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1281 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1282 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1283 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1284 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1285 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1286 La Liga 2018-09-23 La Liga (Matchweek 5) Levante 4-4-2 #> 1287 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1288 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1289 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1290 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1291 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1292 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1293 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1294 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1295 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1296 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1297 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1298 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1299 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1300 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1301 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1302 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1303 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1304 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1305 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1306 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1307 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1308 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1309 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1310 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1311 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1312 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1313 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1314 La Liga 2018-09-23 La Liga (Matchweek 5) Villarreal 4-4-2 #> 1315 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1316 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1317 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1318 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1319 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1320 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1321 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1322 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1323 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1324 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1325 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1326 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1327 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1328 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1329 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1330 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1331 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1332 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1333 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1334 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1335 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1336 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1337 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1338 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1339 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1340 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1341 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1342 La Liga 2018-09-23 La Liga (Matchweek 5) Real Betis 3-4-3 #> 1343 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1344 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1345 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1346 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1347 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1348 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1349 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1350 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1351 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1352 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1353 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1354 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1355 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1356 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1357 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1358 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1359 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1360 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1361 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1362 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1363 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1364 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1365 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1366 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1367 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1368 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1369 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1370 La Liga 2018-09-23 La Liga (Matchweek 5) Barcelona 4-3-3 #> 1371 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1372 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1373 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1374 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1375 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1376 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1377 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1378 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1379 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1380 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1381 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1382 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1383 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1384 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1385 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1386 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1387 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1388 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1389 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1390 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1391 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1392 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1393 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1394 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1395 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1396 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1397 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1398 La Liga 2018-09-25 La Liga (Matchweek 6) Espanyol 4-3-3 #> 1399 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1400 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1401 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1402 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1403 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1404 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1405 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1406 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1407 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1408 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1409 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1410 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1411 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1412 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1413 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1414 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1415 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1416 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1417 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1418 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1419 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1420 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1421 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1422 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1423 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1424 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1425 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1426 La Liga 2018-09-25 La Liga (Matchweek 6) Real Sociedad 4-2-3-1 #> 1427 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1428 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1429 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1430 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1431 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1432 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1433 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1434 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1435 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1436 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1437 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1438 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1439 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1440 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1441 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1442 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1443 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1444 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1445 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1446 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1447 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1448 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1449 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1450 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1451 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1452 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1453 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1454 La Liga 2018-09-25 La Liga (Matchweek 6) Atlético Madrid 4-4-2 #> 1455 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1456 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1457 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1458 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1459 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1460 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1461 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1462 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1463 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1464 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1465 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1466 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1467 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1468 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1469 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1470 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1471 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1472 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1473 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1474 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1475 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1476 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1477 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1478 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1479 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1480 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1481 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1482 La Liga 2018-09-26 La Liga (Matchweek 6) Leganés 5-4-1 #> 1483 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1484 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1485 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1486 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1487 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1488 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1489 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1490 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1491 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1492 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1493 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1494 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1495 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1496 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1497 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1498 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1499 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1500 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1501 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1502 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1503 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1504 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1505 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1506 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1507 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1508 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1509 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1510 La Liga 2018-09-26 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1511 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1512 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1513 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1514 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1515 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1516 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1517 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1518 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1519 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1520 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1521 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1522 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1523 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1524 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1525 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1526 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1527 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1528 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1529 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1530 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1531 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1532 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1533 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1534 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1535 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1536 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1537 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1538 La Liga 2018-09-26 La Liga (Matchweek 6) Sevilla 3-5-2 #> 1539 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1540 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1541 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1542 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1543 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1544 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1545 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1546 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1547 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1548 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1549 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1550 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1551 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1552 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1553 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1554 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1555 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1556 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1557 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1558 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1559 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1560 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1561 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1562 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1563 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1564 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1565 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1566 La Liga 2018-09-26 La Liga (Matchweek 6) Valencia 4-4-2 #> 1567 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1568 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1569 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1570 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1571 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1572 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1573 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1574 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1575 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1576 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1577 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1578 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1579 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1580 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1581 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1582 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1583 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1584 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1585 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1586 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1587 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1588 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1589 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1590 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1591 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1592 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1593 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1594 La Liga 2018-09-27 La Liga (Matchweek 6) Alavés 4-4-2 #> 1595 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1596 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1597 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1598 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1599 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1600 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1601 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1602 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1603 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1604 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1605 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1606 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1607 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1608 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1609 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1610 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1611 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1612 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1613 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1614 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1615 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1616 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1617 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1618 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1619 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1620 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1621 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1622 La Liga 2018-09-27 La Liga (Matchweek 6) Valladolid 4-4-2 #> 1623 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1624 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1625 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1626 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1627 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1628 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1629 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1630 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1631 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1632 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1633 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1634 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1635 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1636 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1637 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1638 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1639 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1640 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1641 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1642 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1643 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1644 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1645 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1646 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1647 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1648 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1649 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1650 La Liga 2018-09-27 La Liga (Matchweek 6) Girona 3-4-3 #> 1651 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1652 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1653 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1654 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1655 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1656 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1657 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1658 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1659 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1660 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1661 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1662 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1663 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1664 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1665 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1666 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1667 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1668 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1669 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1670 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1671 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1672 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1673 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1674 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1675 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1676 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1677 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1678 La Liga 2018-09-28 La Liga (Matchweek 7) Rayo Vallecano 4-1-4-1 #> 1679 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1680 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1681 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1682 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1683 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1684 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1685 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1686 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1687 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1688 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1689 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1690 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1691 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1692 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1693 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1694 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1695 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1696 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1697 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1698 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1699 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1700 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1701 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1702 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1703 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1704 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1705 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1706 La Liga 2018-09-29 La Liga (Matchweek 7) Real Sociedad 4-4-2 #> 1707 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1708 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1709 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1710 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1711 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1712 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1713 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1714 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1715 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1716 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1717 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1718 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1719 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1720 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1721 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1722 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1723 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1724 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1725 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1726 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1727 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1728 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1729 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1730 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1731 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1732 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1733 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1734 La Liga 2018-09-29 La Liga (Matchweek 7) Barcelona 4-3-3 #> 1735 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1736 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1737 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1738 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1739 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1740 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1741 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1742 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1743 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1744 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1745 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1746 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1747 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1748 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1749 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1750 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1751 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1752 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1753 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1754 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1755 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1756 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1757 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1758 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1759 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1760 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1761 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1762 La Liga 2018-09-29 La Liga (Matchweek 7) Eibar 4-4-2 #> 1763 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1764 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1765 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1766 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1767 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1768 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1769 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1770 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1771 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1772 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1773 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1774 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1775 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1776 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1777 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1778 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1779 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1780 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1781 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1782 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1783 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1784 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1785 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1786 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1787 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1788 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1789 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1790 La Liga 2018-09-29 La Liga (Matchweek 7) Real Madrid 4-3-3 #> 1791 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1792 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1793 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1794 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1795 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1796 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1797 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1798 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1799 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1800 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1801 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1802 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1803 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1804 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1805 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1806 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1807 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1808 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1809 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1810 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1811 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1812 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1813 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1814 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1815 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1816 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1817 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1818 La Liga 2018-09-30 La Liga (Matchweek 7) Huesca 4-2-3-1 #> 1819 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1820 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1821 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1822 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1823 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1824 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1825 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1826 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1827 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1828 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1829 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1830 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1831 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1832 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1833 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1834 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1835 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1836 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1837 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1838 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1839 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1840 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1841 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1842 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1843 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1844 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1845 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1846 La Liga 2018-09-30 La Liga (Matchweek 7) Villarreal 4-4-2 #> 1847 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1848 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1849 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1850 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1851 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1852 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1853 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1854 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1855 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1856 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1857 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1858 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1859 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1860 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1861 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1862 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1863 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1864 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1865 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1866 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1867 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1868 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1869 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1870 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1871 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1872 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1873 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1874 La Liga 2018-09-30 La Liga (Matchweek 7) Levante 3-5-2 #> 1875 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1876 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1877 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1878 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1879 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1880 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1881 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1882 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1883 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1884 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1885 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1886 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1887 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1888 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1889 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1890 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1891 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1892 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1893 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1894 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1895 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1896 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1897 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1898 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1899 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1900 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1901 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1902 La Liga 2018-09-30 La Liga (Matchweek 7) Real Betis 3-5-2 #> 1903 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1904 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1905 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1906 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1907 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1908 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1909 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1910 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1911 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1912 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1913 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1914 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1915 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1916 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1917 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1918 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1919 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1920 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1921 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1922 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1923 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1924 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1925 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1926 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1927 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1928 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1929 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1930 La Liga 2018-10-01 La Liga (Matchweek 7) Celta Vigo 4-4-2 #> 1931 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1932 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1933 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1934 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1935 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1936 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1937 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1938 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1939 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1940 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1941 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1942 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1943 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1944 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1945 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1946 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1947 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1948 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1949 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1950 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1951 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1952 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1953 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1954 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1955 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1956 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1957 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1958 La Liga 2018-10-05 La Liga (Matchweek 8) Athletic Club 4-3-3 #> 1959 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1960 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1961 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1962 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1963 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1964 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1965 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1966 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1967 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1968 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1969 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1970 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1971 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1972 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1973 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1974 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1975 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1976 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1977 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1978 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1979 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1980 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1981 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1982 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1983 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1984 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1985 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1986 La Liga 2018-10-06 La Liga (Matchweek 8) Girona 3-5-2 #> 1987 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 1988 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 1989 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 1990 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 1991 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 1992 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 1993 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 1994 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 1995 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 1996 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 1997 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 1998 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 1999 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2000 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2001 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2002 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2003 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2004 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2005 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2006 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2007 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2008 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2009 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2010 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2011 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2012 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2013 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2014 La Liga 2018-10-06 La Liga (Matchweek 8) Getafe 4-4-2 #> 2015 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2016 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2017 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2018 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2019 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2020 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2021 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2022 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2023 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2024 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2025 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2026 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2027 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2028 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2029 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2030 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2031 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2032 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2033 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2034 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2035 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2036 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2037 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2038 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2039 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> 2040 La Liga 2018-10-06 La Liga (Matchweek 8) Alavés 4-3-3 #> Home_Score Home_xG #> 1 0 0.7 #> 2 0 0.7 #> 3 0 0.7 #> 4 0 0.7 #> 5 0 0.7 #> 6 0 0.7 #> 7 0 0.7 #> 8 0 0.7 #> 9 0 0.7 #> 10 0 0.7 #> 11 0 0.7 #> 12 0 0.7 #> 13 0 0.7 #> 14 0 0.7 #> 15 0 0.7 #> 16 0 0.7 #> 17 0 0.7 #> 18 0 0.7 #> 19 0 0.7 #> 20 0 0.7 #> 21 0 0.7 #> 22 0 0.7 #> 23 0 0.7 #> 24 0 0.7 #> 25 0 0.7 #> 26 0 0.7 #> 27 0 0.7 #> 28 0 0.7 #> 29 0 0.9 #> 30 0 0.9 #> 31 0 0.9 #> 32 0 0.9 #> 33 0 0.9 #> 34 0 0.9 #> 35 0 0.9 #> 36 0 0.9 #> 37 0 0.9 #> 38 0 0.9 #> 39 0 0.9 #> 40 0 0.9 #> 41 0 0.9 #> 42 0 0.9 #> 43 0 0.9 #> 44 0 0.9 #> 45 0 0.9 #> 46 0 0.9 #> 47 0 0.9 #> 48 0 0.9 #> 49 0 0.9 #> 50 0 0.9 #> 51 0 0.9 #> 52 0 0.9 #> 53 0 0.9 #> 54 0 0.9 #> 55 0 0.9 #> 56 0 0.9 #> 57 1 0.6 #> 58 1 0.6 #> 59 1 0.6 #> 60 1 0.6 #> 61 1 0.6 #> 62 1 0.6 #> 63 1 0.6 #> 64 1 0.6 #> 65 1 0.6 #> 66 1 0.6 #> 67 1 0.6 #> 68 1 0.6 #> 69 1 0.6 #> 70 1 0.6 #> 71 1 0.6 #> 72 1 0.6 #> 73 1 0.6 #> 74 1 0.6 #> 75 1 0.6 #> 76 1 0.6 #> 77 1 0.6 #> 78 1 0.6 #> 79 1 0.6 #> 80 1 0.6 #> 81 1 0.6 #> 82 1 0.6 #> 83 1 0.6 #> 84 1 0.6 #> 85 1 1.6 #> 86 1 1.6 #> 87 1 1.6 #> 88 1 1.6 #> 89 1 1.6 #> 90 1 1.6 #> 91 1 1.6 #> 92 1 1.6 #> 93 1 1.6 #> 94 1 1.6 #> 95 1 1.6 #> 96 1 1.6 #> 97 1 1.6 #> 98 1 1.6 #> 99 1 1.6 #> 100 1 1.6 #> 101 1 1.6 #> 102 1 1.6 #> 103 1 1.6 #> 104 1 1.6 #> 105 1 1.6 #> 106 1 1.6 #> 107 1 1.6 #> 108 1 1.6 #> 109 1 1.6 #> 110 1 1.6 #> 111 1 1.6 #> 112 1 1.6 #> 113 3 3.2 #> 114 3 3.2 #> 115 3 3.2 #> 116 3 3.2 #> 117 3 3.2 #> 118 3 3.2 #> 119 3 3.2 #> 120 3 3.2 #> 121 3 3.2 #> 122 3 3.2 #> 123 3 3.2 #> 124 3 3.2 #> 125 3 3.2 #> 126 3 3.2 #> 127 3 3.2 #> 128 3 3.2 #> 129 3 3.2 #> 130 3 3.2 #> 131 3 3.2 #> 132 3 3.2 #> 133 3 3.2 #> 134 3 3.2 #> 135 3 3.2 #> 136 3 3.2 #> 137 3 3.2 #> 138 3 3.2 #> 139 3 3.2 #> 140 3 3.2 #> 141 1 1.3 #> 142 1 1.3 #> 143 1 1.3 #> 144 1 1.3 #> 145 1 1.3 #> 146 1 1.3 #> 147 1 1.3 #> 148 1 1.3 #> 149 1 1.3 #> 150 1 1.3 #> 151 1 1.3 #> 152 1 1.3 #> 153 1 1.3 #> 154 1 1.3 #> 155 1 1.3 #> 156 1 1.3 #> 157 1 1.3 #> 158 1 1.3 #> 159 1 1.3 #> 160 1 1.3 #> 161 1 1.3 #> 162 1 1.3 #> 163 1 1.3 #> 164 1 1.3 #> 165 1 1.3 #> 166 1 1.3 #> 167 1 1.3 #> 168 1 1.3 #> 169 1 2.1 #> 170 1 2.1 #> 171 1 2.1 #> 172 1 2.1 #> 173 1 2.1 #> 174 1 2.1 #> 175 1 2.1 #> 176 1 2.1 #> 177 1 2.1 #> 178 1 2.1 #> 179 1 2.1 #> 180 1 2.1 #> 181 1 2.1 #> 182 1 2.1 #> 183 1 2.1 #> 184 1 2.1 #> 185 1 2.1 #> 186 1 2.1 #> 187 1 2.1 #> 188 1 2.1 #> 189 1 2.1 #> 190 1 2.1 #> 191 1 2.1 #> 192 1 2.1 #> 193 1 2.1 #> 194 1 2.1 #> 195 1 2.1 #> 196 2 1.0 #> 197 2 1.0 #> 198 2 1.0 #> 199 2 1.0 #> 200 2 1.0 #> 201 2 1.0 #> 202 2 1.0 #> 203 2 1.0 #> 204 2 1.0 #> 205 2 1.0 #> 206 2 1.0 #> 207 2 1.0 #> 208 2 1.0 #> 209 2 1.0 #> 210 2 1.0 #> 211 2 1.0 #> 212 2 1.0 #> 213 2 1.0 #> 214 2 1.0 #> 215 2 1.0 #> 216 2 1.0 #> 217 2 1.0 #> 218 2 1.0 #> 219 2 1.0 #> 220 2 1.0 #> 221 2 1.0 #> 222 2 1.0 #> 223 2 1.0 #> 224 1 1.1 #> 225 1 1.1 #> 226 1 1.1 #> 227 1 1.1 #> 228 1 1.1 #> 229 1 1.1 #> 230 1 1.1 #> 231 1 1.1 #> 232 1 1.1 #> 233 1 1.1 #> 234 1 1.1 #> 235 1 1.1 #> 236 1 1.1 #> 237 1 1.1 #> 238 1 1.1 #> 239 1 1.1 #> 240 1 1.1 #> 241 1 1.1 #> 242 1 1.1 #> 243 1 1.1 #> 244 1 1.1 #> 245 1 1.1 #> 246 1 1.1 #> 247 1 1.1 #> 248 1 1.1 #> 249 1 1.1 #> 250 1 1.1 #> 251 1 1.1 #> 252 2 2.2 #> 253 2 2.2 #> 254 2 2.2 #> 255 2 2.2 #> 256 2 2.2 #> 257 2 2.2 #> 258 2 2.2 #> 259 2 2.2 #> 260 2 2.2 #> 261 2 2.2 #> 262 2 2.2 #> 263 2 2.2 #> 264 2 2.2 #> 265 2 2.2 #> 266 2 2.2 #> 267 2 2.2 #> 268 2 2.2 #> 269 2 2.2 #> 270 2 2.2 #> 271 2 2.2 #> 272 2 2.2 #> 273 2 2.2 #> 274 2 2.2 #> 275 2 2.2 #> 276 2 2.2 #> 277 2 2.2 #> 278 2 2.2 #> 279 2 2.2 #> 280 2 1.4 #> 281 2 1.4 #> 282 2 1.4 #> 283 2 1.4 #> 284 2 1.4 #> 285 2 1.4 #> 286 2 1.4 #> 287 2 1.4 #> 288 2 1.4 #> 289 2 1.4 #> 290 2 1.4 #> 291 2 1.4 #> 292 2 1.4 #> 293 2 1.4 #> 294 2 1.4 #> 295 2 1.4 #> 296 2 1.4 #> 297 2 1.4 #> 298 2 1.4 #> 299 2 1.4 #> 300 2 1.4 #> 301 2 1.4 #> 302 2 1.4 #> 303 2 1.4 #> 304 2 1.4 #> 305 2 1.4 #> 306 2 1.4 #> 307 2 1.4 #> 308 2 1.7 #> 309 2 1.7 #> 310 2 1.7 #> 311 2 1.7 #> 312 2 1.7 #> 313 2 1.7 #> 314 2 1.7 #> 315 2 1.7 #> 316 2 1.7 #> 317 2 1.7 #> 318 2 1.7 #> 319 2 1.7 #> 320 2 1.7 #> 321 2 1.7 #> 322 2 1.7 #> 323 2 1.7 #> 324 2 1.7 #> 325 2 1.7 #> 326 2 1.7 #> 327 2 1.7 #> 328 2 1.7 #> 329 2 1.7 #> 330 2 1.7 #> 331 2 1.7 #> 332 2 1.7 #> 333 2 1.7 #> 334 2 1.7 #> 335 2 1.7 #> 336 0 0.6 #> 337 0 0.6 #> 338 0 0.6 #> 339 0 0.6 #> 340 0 0.6 #> 341 0 0.6 #> 342 0 0.6 #> 343 0 0.6 #> 344 0 0.6 #> 345 0 0.6 #> 346 0 0.6 #> 347 0 0.6 #> 348 0 0.6 #> 349 0 0.6 #> 350 0 0.6 #> 351 0 0.6 #> 352 0 0.6 #> 353 0 0.6 #> 354 0 0.6 #> 355 0 0.6 #> 356 0 0.6 #> 357 0 0.6 #> 358 0 0.6 #> 359 0 0.6 #> 360 0 0.6 #> 361 0 0.6 #> 362 0 0.6 #> 363 0 0.6 #> 364 1 0.9 #> 365 1 0.9 #> 366 1 0.9 #> 367 1 0.9 #> 368 1 0.9 #> 369 1 0.9 #> 370 1 0.9 #> 371 1 0.9 #> 372 1 0.9 #> 373 1 0.9 #> 374 1 0.9 #> 375 1 0.9 #> 376 1 0.9 #> 377 1 0.9 #> 378 1 0.9 #> 379 1 0.9 #> 380 1 0.9 #> 381 1 0.9 #> 382 1 0.9 #> 383 1 0.9 #> 384 1 0.9 #> 385 1 0.9 #> 386 1 0.9 #> 387 1 0.9 #> 388 1 0.9 #> 389 1 0.9 #> 390 1 0.9 #> 391 1 0.9 #> 392 0 0.4 #> 393 0 0.4 #> 394 0 0.4 #> 395 0 0.4 #> 396 0 0.4 #> 397 0 0.4 #> 398 0 0.4 #> 399 0 0.4 #> 400 0 0.4 #> 401 0 0.4 #> 402 0 0.4 #> 403 0 0.4 #> 404 0 0.4 #> 405 0 0.4 #> 406 0 0.4 #> 407 0 0.4 #> 408 0 0.4 #> 409 0 0.4 #> 410 0 0.4 #> 411 0 0.4 #> 412 0 0.4 #> 413 0 0.4 #> 414 0 0.4 #> 415 0 0.4 #> 416 0 0.4 #> 417 0 0.4 #> 418 0 0.4 #> 419 0 0.4 #> 420 2 1.3 #> 421 2 1.3 #> 422 2 1.3 #> 423 2 1.3 #> 424 2 1.3 #> 425 2 1.3 #> 426 2 1.3 #> 427 2 1.3 #> 428 2 1.3 #> 429 2 1.3 #> 430 2 1.3 #> 431 2 1.3 #> 432 2 1.3 #> 433 2 1.3 #> 434 2 1.3 #> 435 2 1.3 #> 436 2 1.3 #> 437 2 1.3 #> 438 2 1.3 #> 439 2 1.3 #> 440 2 1.3 #> 441 2 1.3 #> 442 2 1.3 #> 443 2 1.3 #> 444 2 1.3 #> 445 2 1.3 #> 446 2 1.3 #> 447 2 1.3 #> 448 1 0.4 #> 449 1 0.4 #> 450 1 0.4 #> 451 1 0.4 #> 452 1 0.4 #> 453 1 0.4 #> 454 1 0.4 #> 455 1 0.4 #> 456 1 0.4 #> 457 1 0.4 #> 458 1 0.4 #> 459 1 0.4 #> 460 1 0.4 #> 461 1 0.4 #> 462 1 0.4 #> 463 1 0.4 #> 464 1 0.4 #> 465 1 0.4 #> 466 1 0.4 #> 467 1 0.4 #> 468 1 0.4 #> 469 1 0.4 #> 470 1 0.4 #> 471 1 0.4 #> 472 1 0.4 #> 473 1 0.4 #> 474 1 0.4 #> 475 1 0.4 #> 476 0 1.9 #> 477 0 1.9 #> 478 0 1.9 #> 479 0 1.9 #> 480 0 1.9 #> 481 0 1.9 #> 482 0 1.9 #> 483 0 1.9 #> 484 0 1.9 #> 485 0 1.9 #> 486 0 1.9 #> 487 0 1.9 #> 488 0 1.9 #> 489 0 1.9 #> 490 0 1.9 #> 491 0 1.9 #> 492 0 1.9 #> 493 0 1.9 #> 494 0 1.9 #> 495 0 1.9 #> 496 0 1.9 #> 497 0 1.9 #> 498 0 1.9 #> 499 0 1.9 #> 500 0 1.9 #> 501 0 1.9 #> 502 0 1.9 #> 503 0 1.9 #> 504 1 1.9 #> 505 1 1.9 #> 506 1 1.9 #> 507 1 1.9 #> 508 1 1.9 #> 509 1 1.9 #> 510 1 1.9 #> 511 1 1.9 #> 512 1 1.9 #> 513 1 1.9 #> 514 1 1.9 #> 515 1 1.9 #> 516 1 1.9 #> 517 1 1.9 #> 518 1 1.9 #> 519 1 1.9 #> 520 1 1.9 #> 521 1 1.9 #> 522 1 1.9 #> 523 1 1.9 #> 524 1 1.9 #> 525 1 1.9 #> 526 1 1.9 #> 527 1 1.9 #> 528 1 1.9 #> 529 1 1.9 #> 530 1 1.9 #> 531 1 1.9 #> 532 2 0.6 #> 533 2 0.6 #> 534 2 0.6 #> 535 2 0.6 #> 536 2 0.6 #> 537 2 0.6 #> 538 2 0.6 #> 539 2 0.6 #> 540 2 0.6 #> 541 2 0.6 #> 542 2 0.6 #> 543 2 0.6 #> 544 2 0.6 #> 545 2 0.6 #> 546 2 0.6 #> 547 2 0.6 #> 548 2 0.6 #> 549 2 0.6 #> 550 2 0.6 #> 551 2 0.6 #> 552 2 0.6 #> 553 2 0.6 #> 554 2 0.6 #> 555 2 0.6 #> 556 2 0.6 #> 557 2 0.6 #> 558 2 0.6 #> 559 2 0.6 #> 560 0 1.2 #> 561 0 1.2 #> 562 0 1.2 #> 563 0 1.2 #> 564 0 1.2 #> 565 0 1.2 #> 566 0 1.2 #> 567 0 1.2 #> 568 0 1.2 #> 569 0 1.2 #> 570 0 1.2 #> 571 0 1.2 #> 572 0 1.2 #> 573 0 1.2 #> 574 0 1.2 #> 575 0 1.2 #> 576 0 1.2 #> 577 0 1.2 #> 578 0 1.2 #> 579 0 1.2 #> 580 0 1.2 #> 581 0 1.2 #> 582 0 1.2 #> 583 0 1.2 #> 584 0 1.2 #> 585 0 1.2 #> 586 0 1.2 #> 587 0 1.2 #> 588 0 1.1 #> 589 0 1.1 #> 590 0 1.1 #> 591 0 1.1 #> 592 0 1.1 #> 593 0 1.1 #> 594 0 1.1 #> 595 0 1.1 #> 596 0 1.1 #> 597 0 1.1 #> 598 0 1.1 #> 599 0 1.1 #> 600 0 1.1 #> 601 0 1.1 #> 602 0 1.1 #> 603 0 1.1 #> 604 0 1.1 #> 605 0 1.1 #> 606 0 1.1 #> 607 0 1.1 #> 608 0 1.1 #> 609 0 1.1 #> 610 0 1.1 #> 611 0 1.1 #> 612 0 1.1 #> 613 0 1.1 #> 614 0 1.1 #> 615 0 1.1 #> 616 2 1.0 #> 617 2 1.0 #> 618 2 1.0 #> 619 2 1.0 #> 620 2 1.0 #> 621 2 1.0 #> 622 2 1.0 #> 623 2 1.0 #> 624 2 1.0 #> 625 2 1.0 #> 626 2 1.0 #> 627 2 1.0 #> 628 2 1.0 #> 629 2 1.0 #> 630 2 1.0 #> 631 2 1.0 #> 632 2 1.0 #> 633 2 1.0 #> 634 2 1.0 #> 635 2 1.0 #> 636 2 1.0 #> 637 2 1.0 #> 638 2 1.0 #> 639 2 1.0 #> 640 2 1.0 #> 641 2 1.0 #> 642 2 1.0 #> 643 2 1.0 #> 644 2 0.5 #> 645 2 0.5 #> 646 2 0.5 #> 647 2 0.5 #> 648 2 0.5 #> 649 2 0.5 #> 650 2 0.5 #> 651 2 0.5 #> 652 2 0.5 #> 653 2 0.5 #> 654 2 0.5 #> 655 2 0.5 #> 656 2 0.5 #> 657 2 0.5 #> 658 2 0.5 #> 659 2 0.5 #> 660 2 0.5 #> 661 2 0.5 #> 662 2 0.5 #> 663 2 0.5 #> 664 2 0.5 #> 665 2 0.5 #> 666 2 0.5 #> 667 2 0.5 #> 668 2 0.5 #> 669 2 0.5 #> 670 2 0.5 #> 671 2 0.5 #> 672 4 2.5 #> 673 4 2.5 #> 674 4 2.5 #> 675 4 2.5 #> 676 4 2.5 #> 677 4 2.5 #> 678 4 2.5 #> 679 4 2.5 #> 680 4 2.5 #> 681 4 2.5 #> 682 4 2.5 #> 683 4 2.5 #> 684 4 2.5 #> 685 4 2.5 #> 686 4 2.5 #> 687 4 2.5 #> 688 4 2.5 #> 689 4 2.5 #> 690 4 2.5 #> 691 4 2.5 #> 692 4 2.5 #> 693 4 2.5 #> 694 4 2.5 #> 695 4 2.5 #> 696 4 2.5 #> 697 4 2.5 #> 698 4 2.5 #> 699 4 2.5 #> 700 2 1.6 #> 701 2 1.6 #> 702 2 1.6 #> 703 2 1.6 #> 704 2 1.6 #> 705 2 1.6 #> 706 2 1.6 #> 707 2 1.6 #> 708 2 1.6 #> 709 2 1.6 #> 710 2 1.6 #> 711 2 1.6 #> 712 2 1.6 #> 713 2 1.6 #> 714 2 1.6 #> 715 2 1.6 #> 716 2 1.6 #> 717 2 1.6 #> 718 2 1.6 #> 719 2 1.6 #> 720 2 1.6 #> 721 2 1.6 #> 722 2 1.6 #> 723 2 1.6 #> 724 2 1.6 #> 725 2 1.6 #> 726 2 1.6 #> 727 2 1.6 #> 728 2 1.4 #> 729 2 1.4 #> 730 2 1.4 #> 731 2 1.4 #> 732 2 1.4 #> 733 2 1.4 #> 734 2 1.4 #> 735 2 1.4 #> 736 2 1.4 #> 737 2 1.4 #> 738 2 1.4 #> 739 2 1.4 #> 740 2 1.4 #> 741 2 1.4 #> 742 2 1.4 #> 743 2 1.4 #> 744 2 1.4 #> 745 2 1.4 #> 746 2 1.4 #> 747 2 1.4 #> 748 2 1.4 #> 749 2 1.4 #> 750 2 1.4 #> 751 2 1.4 #> 752 2 1.4 #> 753 2 1.4 #> 754 2 1.4 #> 755 2 1.4 #> 756 8 5.3 #> 757 8 5.3 #> 758 8 5.3 #> 759 8 5.3 #> 760 8 5.3 #> 761 8 5.3 #> 762 8 5.3 #> 763 8 5.3 #> 764 8 5.3 #> 765 8 5.3 #> 766 8 5.3 #> 767 8 5.3 #> 768 8 5.3 #> 769 8 5.3 #> 770 8 5.3 #> 771 8 5.3 #> 772 8 5.3 #> 773 8 5.3 #> 774 8 5.3 #> 775 8 5.3 #> 776 8 5.3 #> 777 8 5.3 #> 778 8 5.3 #> 779 8 5.3 #> 780 8 5.3 #> 781 8 5.3 #> 782 8 5.3 #> 783 8 5.3 #> 784 1 0.9 #> 785 1 0.9 #> 786 1 0.9 #> 787 1 0.9 #> 788 1 0.9 #> 789 1 0.9 #> 790 1 0.9 #> 791 1 0.9 #> 792 1 0.9 #> 793 1 0.9 #> 794 1 0.9 #> 795 1 0.9 #> 796 1 0.9 #> 797 1 0.9 #> 798 1 0.9 #> 799 1 0.9 #> 800 1 0.9 #> 801 1 0.9 #> 802 1 0.9 #> 803 1 0.9 #> 804 1 0.9 #> 805 1 0.9 #> 806 1 0.9 #> 807 1 0.9 #> 808 1 0.9 #> 809 1 0.9 #> 810 1 0.9 #> 811 1 0.9 #> 812 0 1.7 #> 813 0 1.7 #> 814 0 1.7 #> 815 0 1.7 #> 816 0 1.7 #> 817 0 1.7 #> 818 0 1.7 #> 819 0 1.7 #> 820 0 1.7 #> 821 0 1.7 #> 822 0 1.7 #> 823 0 1.7 #> 824 0 1.7 #> 825 0 1.7 #> 826 0 1.7 #> 827 0 1.7 #> 828 0 1.7 #> 829 0 1.7 #> 830 0 1.7 #> 831 0 1.7 #> 832 0 1.7 #> 833 0 1.7 #> 834 0 1.7 #> 835 0 1.7 #> 836 0 1.7 #> 837 0 1.7 #> 838 0 1.7 #> 839 0 1.7 #> 840 1 2.3 #> 841 1 2.3 #> 842 1 2.3 #> 843 1 2.3 #> 844 1 2.3 #> 845 1 2.3 #> 846 1 2.3 #> 847 1 2.3 #> 848 1 2.3 #> 849 1 2.3 #> 850 1 2.3 #> 851 1 2.3 #> 852 1 2.3 #> 853 1 2.3 #> 854 1 2.3 #> 855 1 2.3 #> 856 1 2.3 #> 857 1 2.3 #> 858 1 2.3 #> 859 1 2.3 #> 860 1 2.3 #> 861 1 2.3 #> 862 1 2.3 #> 863 1 2.3 #> 864 1 2.3 #> 865 1 2.3 #> 866 1 2.3 #> 867 1 1.4 #> 868 1 1.4 #> 869 1 1.4 #> 870 1 1.4 #> 871 1 1.4 #> 872 1 1.4 #> 873 1 1.4 #> 874 1 1.4 #> 875 1 1.4 #> 876 1 1.4 #> 877 1 1.4 #> 878 1 1.4 #> 879 1 1.4 #> 880 1 1.4 #> 881 1 1.4 #> 882 1 1.4 #> 883 1 1.4 #> 884 1 1.4 #> 885 1 1.4 #> 886 1 1.4 #> 887 1 1.4 #> 888 1 1.4 #> 889 1 1.4 #> 890 1 1.4 #> 891 1 1.4 #> 892 1 1.4 #> 893 1 1.4 #> 894 1 1.4 #> 895 0 1.0 #> 896 0 1.0 #> 897 0 1.0 #> 898 0 1.0 #> 899 0 1.0 #> 900 0 1.0 #> 901 0 1.0 #> 902 0 1.0 #> 903 0 1.0 #> 904 0 1.0 #> 905 0 1.0 #> 906 0 1.0 #> 907 0 1.0 #> 908 0 1.0 #> 909 0 1.0 #> 910 0 1.0 #> 911 0 1.0 #> 912 0 1.0 #> 913 0 1.0 #> 914 0 1.0 #> 915 0 1.0 #> 916 0 1.0 #> 917 0 1.0 #> 918 0 1.0 #> 919 0 1.0 #> 920 0 1.0 #> 921 0 1.0 #> 922 0 1.0 #> 923 1 1.4 #> 924 1 1.4 #> 925 1 1.4 #> 926 1 1.4 #> 927 1 1.4 #> 928 1 1.4 #> 929 1 1.4 #> 930 1 1.4 #> 931 1 1.4 #> 932 1 1.4 #> 933 1 1.4 #> 934 1 1.4 #> 935 1 1.4 #> 936 1 1.4 #> 937 1 1.4 #> 938 1 1.4 #> 939 1 1.4 #> 940 1 1.4 #> 941 1 1.4 #> 942 1 1.4 #> 943 1 1.4 #> 944 1 1.4 #> 945 1 1.4 #> 946 1 1.4 #> 947 1 1.4 #> 948 1 1.4 #> 949 1 1.4 #> 950 1 1.4 #> 951 0 1.4 #> 952 0 1.4 #> 953 0 1.4 #> 954 0 1.4 #> 955 0 1.4 #> 956 0 1.4 #> 957 0 1.4 #> 958 0 1.4 #> 959 0 1.4 #> 960 0 1.4 #> 961 0 1.4 #> 962 0 1.4 #> 963 0 1.4 #> 964 0 1.4 #> 965 0 1.4 #> 966 0 1.4 #> 967 0 1.4 #> 968 0 1.4 #> 969 0 1.4 #> 970 0 1.4 #> 971 0 1.4 #> 972 0 1.4 #> 973 0 1.4 #> 974 0 1.4 #> 975 0 1.4 #> 976 0 1.4 #> 977 0 1.4 #> 978 0 1.4 #> 979 1 1.6 #> 980 1 1.6 #> 981 1 1.6 #> 982 1 1.6 #> 983 1 1.6 #> 984 1 1.6 #> 985 1 1.6 #> 986 1 1.6 #> 987 1 1.6 #> 988 1 1.6 #> 989 1 1.6 #> 990 1 1.6 #> 991 1 1.6 #> 992 1 1.6 #> 993 1 1.6 #> 994 1 1.6 #> 995 1 1.6 #> 996 1 1.6 #> 997 1 1.6 #> 998 1 1.6 #> 999 1 1.6 #> 1000 1 1.6 #> 1001 1 1.6 #> 1002 1 1.6 #> 1003 1 1.6 #> 1004 1 1.6 #> 1005 1 1.6 #> 1006 1 1.6 #> 1007 0 1.1 #> 1008 0 1.1 #> 1009 0 1.1 #> 1010 0 1.1 #> 1011 0 1.1 #> 1012 0 1.1 #> 1013 0 1.1 #> 1014 0 1.1 #> 1015 0 1.1 #> 1016 0 1.1 #> 1017 0 1.1 #> 1018 0 1.1 #> 1019 0 1.1 #> 1020 0 1.1 #> 1021 0 1.1 #> 1022 0 1.1 #> 1023 0 1.1 #> 1024 0 1.1 #> 1025 0 1.1 #> 1026 0 1.1 #> 1027 0 1.1 #> 1028 0 1.1 #> 1029 0 1.1 #> 1030 0 1.1 #> 1031 0 1.1 #> 1032 0 1.1 #> 1033 0 1.1 #> 1034 0 1.1 #> 1035 0 1.2 #> 1036 0 1.2 #> 1037 0 1.2 #> 1038 0 1.2 #> 1039 0 1.2 #> 1040 0 1.2 #> 1041 0 1.2 #> 1042 0 1.2 #> 1043 0 1.2 #> 1044 0 1.2 #> 1045 0 1.2 #> 1046 0 1.2 #> 1047 0 1.2 #> 1048 0 1.2 #> 1049 0 1.2 #> 1050 0 1.2 #> 1051 0 1.2 #> 1052 0 1.2 #> 1053 0 1.2 #> 1054 0 1.2 #> 1055 0 1.2 #> 1056 0 1.2 #> 1057 0 1.2 #> 1058 0 1.2 #> 1059 0 1.2 #> 1060 0 1.2 #> 1061 0 1.2 #> 1062 0 1.2 #> 1063 3 1.7 #> 1064 3 1.7 #> 1065 3 1.7 #> 1066 3 1.7 #> 1067 3 1.7 #> 1068 3 1.7 #> 1069 3 1.7 #> 1070 3 1.7 #> 1071 3 1.7 #> 1072 3 1.7 #> 1073 3 1.7 #> 1074 3 1.7 #> 1075 3 1.7 #> 1076 3 1.7 #> 1077 3 1.7 #> 1078 3 1.7 #> 1079 3 1.7 #> 1080 3 1.7 #> 1081 3 1.7 #> 1082 3 1.7 #> 1083 3 1.7 #> 1084 3 1.7 #> 1085 3 1.7 #> 1086 3 1.7 #> 1087 3 1.7 #> 1088 3 1.7 #> 1089 3 1.7 #> 1090 3 1.7 #> 1091 0 0.6 #> 1092 0 0.6 #> 1093 0 0.6 #> 1094 0 0.6 #> 1095 0 0.6 #> 1096 0 0.6 #> 1097 0 0.6 #> 1098 0 0.6 #> 1099 0 0.6 #> 1100 0 0.6 #> 1101 0 0.6 #> 1102 0 0.6 #> 1103 0 0.6 #> 1104 0 0.6 #> 1105 0 0.6 #> 1106 0 0.6 #> 1107 0 0.6 #> 1108 0 0.6 #> 1109 0 0.6 #> 1110 0 0.6 #> 1111 0 0.6 #> 1112 0 0.6 #> 1113 0 0.6 #> 1114 0 0.6 #> 1115 0 0.6 #> 1116 0 0.6 #> 1117 0 0.6 #> 1118 0 0.6 #> 1119 1 1.5 #> 1120 1 1.5 #> 1121 1 1.5 #> 1122 1 1.5 #> 1123 1 1.5 #> 1124 1 1.5 #> 1125 1 1.5 #> 1126 1 1.5 #> 1127 1 1.5 #> 1128 1 1.5 #> 1129 1 1.5 #> 1130 1 1.5 #> 1131 1 1.5 #> 1132 1 1.5 #> 1133 1 1.5 #> 1134 1 1.5 #> 1135 1 1.5 #> 1136 1 1.5 #> 1137 1 1.5 #> 1138 1 1.5 #> 1139 1 1.5 #> 1140 1 1.5 #> 1141 1 1.5 #> 1142 1 1.5 #> 1143 1 1.5 #> 1144 1 1.5 #> 1145 1 1.5 #> 1146 1 1.5 #> 1147 1 1.3 #> 1148 1 1.3 #> 1149 1 1.3 #> 1150 1 1.3 #> 1151 1 1.3 #> 1152 1 1.3 #> 1153 1 1.3 #> 1154 1 1.3 #> 1155 1 1.3 #> 1156 1 1.3 #> 1157 1 1.3 #> 1158 1 1.3 #> 1159 1 1.3 #> 1160 1 1.3 #> 1161 1 1.3 #> 1162 1 1.3 #> 1163 1 1.3 #> 1164 1 1.3 #> 1165 1 1.3 #> 1166 1 1.3 #> 1167 1 1.3 #> 1168 1 1.3 #> 1169 1 1.3 #> 1170 1 1.3 #> 1171 1 1.3 #> 1172 1 1.3 #> 1173 1 1.3 #> 1174 1 1.3 #> 1175 3 1.9 #> 1176 3 1.9 #> 1177 3 1.9 #> 1178 3 1.9 #> 1179 3 1.9 #> 1180 3 1.9 #> 1181 3 1.9 #> 1182 3 1.9 #> 1183 3 1.9 #> 1184 3 1.9 #> 1185 3 1.9 #> 1186 3 1.9 #> 1187 3 1.9 #> 1188 3 1.9 #> 1189 3 1.9 #> 1190 3 1.9 #> 1191 3 1.9 #> 1192 3 1.9 #> 1193 3 1.9 #> 1194 3 1.9 #> 1195 3 1.9 #> 1196 3 1.9 #> 1197 3 1.9 #> 1198 3 1.9 #> 1199 3 1.9 #> 1200 3 1.9 #> 1201 3 1.9 #> 1202 3 1.9 #> 1203 0 0.6 #> 1204 0 0.6 #> 1205 0 0.6 #> 1206 0 0.6 #> 1207 0 0.6 #> 1208 0 0.6 #> 1209 0 0.6 #> 1210 0 0.6 #> 1211 0 0.6 #> 1212 0 0.6 #> 1213 0 0.6 #> 1214 0 0.6 #> 1215 0 0.6 #> 1216 0 0.6 #> 1217 0 0.6 #> 1218 0 0.6 #> 1219 0 0.6 #> 1220 0 0.6 #> 1221 0 0.6 #> 1222 0 0.6 #> 1223 0 0.6 #> 1224 0 0.6 #> 1225 0 0.6 #> 1226 0 0.6 #> 1227 0 0.6 #> 1228 0 0.6 #> 1229 0 0.6 #> 1230 0 0.6 #> 1231 1 1.0 #> 1232 1 1.0 #> 1233 1 1.0 #> 1234 1 1.0 #> 1235 1 1.0 #> 1236 1 1.0 #> 1237 1 1.0 #> 1238 1 1.0 #> 1239 1 1.0 #> 1240 1 1.0 #> 1241 1 1.0 #> 1242 1 1.0 #> 1243 1 1.0 #> 1244 1 1.0 #> 1245 1 1.0 #> 1246 1 1.0 #> 1247 1 1.0 #> 1248 1 1.0 #> 1249 1 1.0 #> 1250 1 1.0 #> 1251 1 1.0 #> 1252 1 1.0 #> 1253 1 1.0 #> 1254 1 1.0 #> 1255 1 1.0 #> 1256 1 1.0 #> 1257 1 1.0 #> 1258 1 1.0 #> 1259 2 2.3 #> 1260 2 2.3 #> 1261 2 2.3 #> 1262 2 2.3 #> 1263 2 2.3 #> 1264 2 2.3 #> 1265 2 2.3 #> 1266 2 2.3 #> 1267 2 2.3 #> 1268 2 2.3 #> 1269 2 2.3 #> 1270 2 2.3 #> 1271 2 2.3 #> 1272 2 2.3 #> 1273 2 2.3 #> 1274 2 2.3 #> 1275 2 2.3 #> 1276 2 2.3 #> 1277 2 2.3 #> 1278 2 2.3 #> 1279 2 2.3 #> 1280 2 2.3 #> 1281 2 2.3 #> 1282 2 2.3 #> 1283 2 2.3 #> 1284 2 2.3 #> 1285 2 2.3 #> 1286 2 2.3 #> 1287 0 0.7 #> 1288 0 0.7 #> 1289 0 0.7 #> 1290 0 0.7 #> 1291 0 0.7 #> 1292 0 0.7 #> 1293 0 0.7 #> 1294 0 0.7 #> 1295 0 0.7 #> 1296 0 0.7 #> 1297 0 0.7 #> 1298 0 0.7 #> 1299 0 0.7 #> 1300 0 0.7 #> 1301 0 0.7 #> 1302 0 0.7 #> 1303 0 0.7 #> 1304 0 0.7 #> 1305 0 0.7 #> 1306 0 0.7 #> 1307 0 0.7 #> 1308 0 0.7 #> 1309 0 0.7 #> 1310 0 0.7 #> 1311 0 0.7 #> 1312 0 0.7 #> 1313 0 0.7 #> 1314 0 0.7 #> 1315 2 1.1 #> 1316 2 1.1 #> 1317 2 1.1 #> 1318 2 1.1 #> 1319 2 1.1 #> 1320 2 1.1 #> 1321 2 1.1 #> 1322 2 1.1 #> 1323 2 1.1 #> 1324 2 1.1 #> 1325 2 1.1 #> 1326 2 1.1 #> 1327 2 1.1 #> 1328 2 1.1 #> 1329 2 1.1 #> 1330 2 1.1 #> 1331 2 1.1 #> 1332 2 1.1 #> 1333 2 1.1 #> 1334 2 1.1 #> 1335 2 1.1 #> 1336 2 1.1 #> 1337 2 1.1 #> 1338 2 1.1 #> 1339 2 1.1 #> 1340 2 1.1 #> 1341 2 1.1 #> 1342 2 1.1 #> 1343 2 1.4 #> 1344 2 1.4 #> 1345 2 1.4 #> 1346 2 1.4 #> 1347 2 1.4 #> 1348 2 1.4 #> 1349 2 1.4 #> 1350 2 1.4 #> 1351 2 1.4 #> 1352 2 1.4 #> 1353 2 1.4 #> 1354 2 1.4 #> 1355 2 1.4 #> 1356 2 1.4 #> 1357 2 1.4 #> 1358 2 1.4 #> 1359 2 1.4 #> 1360 2 1.4 #> 1361 2 1.4 #> 1362 2 1.4 #> 1363 2 1.4 #> 1364 2 1.4 #> 1365 2 1.4 #> 1366 2 1.4 #> 1367 2 1.4 #> 1368 2 1.4 #> 1369 2 1.4 #> 1370 2 1.4 #> 1371 1 0.9 #> 1372 1 0.9 #> 1373 1 0.9 #> 1374 1 0.9 #> 1375 1 0.9 #> 1376 1 0.9 #> 1377 1 0.9 #> 1378 1 0.9 #> 1379 1 0.9 #> 1380 1 0.9 #> 1381 1 0.9 #> 1382 1 0.9 #> 1383 1 0.9 #> 1384 1 0.9 #> 1385 1 0.9 #> 1386 1 0.9 #> 1387 1 0.9 #> 1388 1 0.9 #> 1389 1 0.9 #> 1390 1 0.9 #> 1391 1 0.9 #> 1392 1 0.9 #> 1393 1 0.9 #> 1394 1 0.9 #> 1395 1 0.9 #> 1396 1 0.9 #> 1397 1 0.9 #> 1398 1 0.9 #> 1399 2 1.6 #> 1400 2 1.6 #> 1401 2 1.6 #> 1402 2 1.6 #> 1403 2 1.6 #> 1404 2 1.6 #> 1405 2 1.6 #> 1406 2 1.6 #> 1407 2 1.6 #> 1408 2 1.6 #> 1409 2 1.6 #> 1410 2 1.6 #> 1411 2 1.6 #> 1412 2 1.6 #> 1413 2 1.6 #> 1414 2 1.6 #> 1415 2 1.6 #> 1416 2 1.6 #> 1417 2 1.6 #> 1418 2 1.6 #> 1419 2 1.6 #> 1420 2 1.6 #> 1421 2 1.6 #> 1422 2 1.6 #> 1423 2 1.6 #> 1424 2 1.6 #> 1425 2 1.6 #> 1426 2 1.6 #> 1427 3 0.9 #> 1428 3 0.9 #> 1429 3 0.9 #> 1430 3 0.9 #> 1431 3 0.9 #> 1432 3 0.9 #> 1433 3 0.9 #> 1434 3 0.9 #> 1435 3 0.9 #> 1436 3 0.9 #> 1437 3 0.9 #> 1438 3 0.9 #> 1439 3 0.9 #> 1440 3 0.9 #> 1441 3 0.9 #> 1442 3 0.9 #> 1443 3 0.9 #> 1444 3 0.9 #> 1445 3 0.9 #> 1446 3 0.9 #> 1447 3 0.9 #> 1448 3 0.9 #> 1449 3 0.9 #> 1450 3 0.9 #> 1451 3 0.9 #> 1452 3 0.9 #> 1453 3 0.9 #> 1454 3 0.9 #> 1455 2 1.1 #> 1456 2 1.1 #> 1457 2 1.1 #> 1458 2 1.1 #> 1459 2 1.1 #> 1460 2 1.1 #> 1461 2 1.1 #> 1462 2 1.1 #> 1463 2 1.1 #> 1464 2 1.1 #> 1465 2 1.1 #> 1466 2 1.1 #> 1467 2 1.1 #> 1468 2 1.1 #> 1469 2 1.1 #> 1470 2 1.1 #> 1471 2 1.1 #> 1472 2 1.1 #> 1473 2 1.1 #> 1474 2 1.1 #> 1475 2 1.1 #> 1476 2 1.1 #> 1477 2 1.1 #> 1478 2 1.1 #> 1479 2 1.1 #> 1480 2 1.1 #> 1481 2 1.1 #> 1482 2 1.1 #> 1483 0 0.8 #> 1484 0 0.8 #> 1485 0 0.8 #> 1486 0 0.8 #> 1487 0 0.8 #> 1488 0 0.8 #> 1489 0 0.8 #> 1490 0 0.8 #> 1491 0 0.8 #> 1492 0 0.8 #> 1493 0 0.8 #> 1494 0 0.8 #> 1495 0 0.8 #> 1496 0 0.8 #> 1497 0 0.8 #> 1498 0 0.8 #> 1499 0 0.8 #> 1500 0 0.8 #> 1501 0 0.8 #> 1502 0 0.8 #> 1503 0 0.8 #> 1504 0 0.8 #> 1505 0 0.8 #> 1506 0 0.8 #> 1507 0 0.8 #> 1508 0 0.8 #> 1509 0 0.8 #> 1510 0 0.8 #> 1511 3 2.4 #> 1512 3 2.4 #> 1513 3 2.4 #> 1514 3 2.4 #> 1515 3 2.4 #> 1516 3 2.4 #> 1517 3 2.4 #> 1518 3 2.4 #> 1519 3 2.4 #> 1520 3 2.4 #> 1521 3 2.4 #> 1522 3 2.4 #> 1523 3 2.4 #> 1524 3 2.4 #> 1525 3 2.4 #> 1526 3 2.4 #> 1527 3 2.4 #> 1528 3 2.4 #> 1529 3 2.4 #> 1530 3 2.4 #> 1531 3 2.4 #> 1532 3 2.4 #> 1533 3 2.4 #> 1534 3 2.4 #> 1535 3 2.4 #> 1536 3 2.4 #> 1537 3 2.4 #> 1538 3 2.4 #> 1539 1 1.1 #> 1540 1 1.1 #> 1541 1 1.1 #> 1542 1 1.1 #> 1543 1 1.1 #> 1544 1 1.1 #> 1545 1 1.1 #> 1546 1 1.1 #> 1547 1 1.1 #> 1548 1 1.1 #> 1549 1 1.1 #> 1550 1 1.1 #> 1551 1 1.1 #> 1552 1 1.1 #> 1553 1 1.1 #> 1554 1 1.1 #> 1555 1 1.1 #> 1556 1 1.1 #> 1557 1 1.1 #> 1558 1 1.1 #> 1559 1 1.1 #> 1560 1 1.1 #> 1561 1 1.1 #> 1562 1 1.1 #> 1563 1 1.1 #> 1564 1 1.1 #> 1565 1 1.1 #> 1566 1 1.1 #> 1567 1 1.7 #> 1568 1 1.7 #> 1569 1 1.7 #> 1570 1 1.7 #> 1571 1 1.7 #> 1572 1 1.7 #> 1573 1 1.7 #> 1574 1 1.7 #> 1575 1 1.7 #> 1576 1 1.7 #> 1577 1 1.7 #> 1578 1 1.7 #> 1579 1 1.7 #> 1580 1 1.7 #> 1581 1 1.7 #> 1582 1 1.7 #> 1583 1 1.7 #> 1584 1 1.7 #> 1585 1 1.7 #> 1586 1 1.7 #> 1587 1 1.7 #> 1588 1 1.7 #> 1589 1 1.7 #> 1590 1 1.7 #> 1591 1 1.7 #> 1592 1 1.7 #> 1593 1 1.7 #> 1594 1 1.7 #> 1595 2 1.0 #> 1596 2 1.0 #> 1597 2 1.0 #> 1598 2 1.0 #> 1599 2 1.0 #> 1600 2 1.0 #> 1601 2 1.0 #> 1602 2 1.0 #> 1603 2 1.0 #> 1604 2 1.0 #> 1605 2 1.0 #> 1606 2 1.0 #> 1607 2 1.0 #> 1608 2 1.0 #> 1609 2 1.0 #> 1610 2 1.0 #> 1611 2 1.0 #> 1612 2 1.0 #> 1613 2 1.0 #> 1614 2 1.0 #> 1615 2 1.0 #> 1616 2 1.0 #> 1617 2 1.0 #> 1618 2 1.0 #> 1619 2 1.0 #> 1620 2 1.0 #> 1621 2 1.0 #> 1622 2 1.0 #> 1623 0 0.8 #> 1624 0 0.8 #> 1625 0 0.8 #> 1626 0 0.8 #> 1627 0 0.8 #> 1628 0 0.8 #> 1629 0 0.8 #> 1630 0 0.8 #> 1631 0 0.8 #> 1632 0 0.8 #> 1633 0 0.8 #> 1634 0 0.8 #> 1635 0 0.8 #> 1636 0 0.8 #> 1637 0 0.8 #> 1638 0 0.8 #> 1639 0 0.8 #> 1640 0 0.8 #> 1641 0 0.8 #> 1642 0 0.8 #> 1643 0 0.8 #> 1644 0 0.8 #> 1645 0 0.8 #> 1646 0 0.8 #> 1647 0 0.8 #> 1648 0 0.8 #> 1649 0 0.8 #> 1650 0 0.8 #> 1651 2 1.3 #> 1652 2 1.3 #> 1653 2 1.3 #> 1654 2 1.3 #> 1655 2 1.3 #> 1656 2 1.3 #> 1657 2 1.3 #> 1658 2 1.3 #> 1659 2 1.3 #> 1660 2 1.3 #> 1661 2 1.3 #> 1662 2 1.3 #> 1663 2 1.3 #> 1664 2 1.3 #> 1665 2 1.3 #> 1666 2 1.3 #> 1667 2 1.3 #> 1668 2 1.3 #> 1669 2 1.3 #> 1670 2 1.3 #> 1671 2 1.3 #> 1672 2 1.3 #> 1673 2 1.3 #> 1674 2 1.3 #> 1675 2 1.3 #> 1676 2 1.3 #> 1677 2 1.3 #> 1678 2 1.3 #> 1679 0 1.3 #> 1680 0 1.3 #> 1681 0 1.3 #> 1682 0 1.3 #> 1683 0 1.3 #> 1684 0 1.3 #> 1685 0 1.3 #> 1686 0 1.3 #> 1687 0 1.3 #> 1688 0 1.3 #> 1689 0 1.3 #> 1690 0 1.3 #> 1691 0 1.3 #> 1692 0 1.3 #> 1693 0 1.3 #> 1694 0 1.3 #> 1695 0 1.3 #> 1696 0 1.3 #> 1697 0 1.3 #> 1698 0 1.3 #> 1699 0 1.3 #> 1700 0 1.3 #> 1701 0 1.3 #> 1702 0 1.3 #> 1703 0 1.3 #> 1704 0 1.3 #> 1705 0 1.3 #> 1706 0 1.3 #> 1707 1 3.2 #> 1708 1 3.2 #> 1709 1 3.2 #> 1710 1 3.2 #> 1711 1 3.2 #> 1712 1 3.2 #> 1713 1 3.2 #> 1714 1 3.2 #> 1715 1 3.2 #> 1716 1 3.2 #> 1717 1 3.2 #> 1718 1 3.2 #> 1719 1 3.2 #> 1720 1 3.2 #> 1721 1 3.2 #> 1722 1 3.2 #> 1723 1 3.2 #> 1724 1 3.2 #> 1725 1 3.2 #> 1726 1 3.2 #> 1727 1 3.2 #> 1728 1 3.2 #> 1729 1 3.2 #> 1730 1 3.2 #> 1731 1 3.2 #> 1732 1 3.2 #> 1733 1 3.2 #> 1734 1 3.2 #> 1735 1 0.8 #> 1736 1 0.8 #> 1737 1 0.8 #> 1738 1 0.8 #> 1739 1 0.8 #> 1740 1 0.8 #> 1741 1 0.8 #> 1742 1 0.8 #> 1743 1 0.8 #> 1744 1 0.8 #> 1745 1 0.8 #> 1746 1 0.8 #> 1747 1 0.8 #> 1748 1 0.8 #> 1749 1 0.8 #> 1750 1 0.8 #> 1751 1 0.8 #> 1752 1 0.8 #> 1753 1 0.8 #> 1754 1 0.8 #> 1755 1 0.8 #> 1756 1 0.8 #> 1757 1 0.8 #> 1758 1 0.8 #> 1759 1 0.8 #> 1760 1 0.8 #> 1761 1 0.8 #> 1762 1 0.8 #> 1763 0 1.2 #> 1764 0 1.2 #> 1765 0 1.2 #> 1766 0 1.2 #> 1767 0 1.2 #> 1768 0 1.2 #> 1769 0 1.2 #> 1770 0 1.2 #> 1771 0 1.2 #> 1772 0 1.2 #> 1773 0 1.2 #> 1774 0 1.2 #> 1775 0 1.2 #> 1776 0 1.2 #> 1777 0 1.2 #> 1778 0 1.2 #> 1779 0 1.2 #> 1780 0 1.2 #> 1781 0 1.2 #> 1782 0 1.2 #> 1783 0 1.2 #> 1784 0 1.2 #> 1785 0 1.2 #> 1786 0 1.2 #> 1787 0 1.2 #> 1788 0 1.2 #> 1789 0 1.2 #> 1790 0 1.2 #> 1791 1 1.5 #> 1792 1 1.5 #> 1793 1 1.5 #> 1794 1 1.5 #> 1795 1 1.5 #> 1796 1 1.5 #> 1797 1 1.5 #> 1798 1 1.5 #> 1799 1 1.5 #> 1800 1 1.5 #> 1801 1 1.5 #> 1802 1 1.5 #> 1803 1 1.5 #> 1804 1 1.5 #> 1805 1 1.5 #> 1806 1 1.5 #> 1807 1 1.5 #> 1808 1 1.5 #> 1809 1 1.5 #> 1810 1 1.5 #> 1811 1 1.5 #> 1812 1 1.5 #> 1813 1 1.5 #> 1814 1 1.5 #> 1815 1 1.5 #> 1816 1 1.5 #> 1817 1 1.5 #> 1818 1 1.5 #> 1819 0 2.8 #> 1820 0 2.8 #> 1821 0 2.8 #> 1822 0 2.8 #> 1823 0 2.8 #> 1824 0 2.8 #> 1825 0 2.8 #> 1826 0 2.8 #> 1827 0 2.8 #> 1828 0 2.8 #> 1829 0 2.8 #> 1830 0 2.8 #> 1831 0 2.8 #> 1832 0 2.8 #> 1833 0 2.8 #> 1834 0 2.8 #> 1835 0 2.8 #> 1836 0 2.8 #> 1837 0 2.8 #> 1838 0 2.8 #> 1839 0 2.8 #> 1840 0 2.8 #> 1841 0 2.8 #> 1842 0 2.8 #> 1843 0 2.8 #> 1844 0 2.8 #> 1845 0 2.8 #> 1846 0 2.8 #> 1847 2 1.6 #> 1848 2 1.6 #> 1849 2 1.6 #> 1850 2 1.6 #> 1851 2 1.6 #> 1852 2 1.6 #> 1853 2 1.6 #> 1854 2 1.6 #> 1855 2 1.6 #> 1856 2 1.6 #> 1857 2 1.6 #> 1858 2 1.6 #> 1859 2 1.6 #> 1860 2 1.6 #> 1861 2 1.6 #> 1862 2 1.6 #> 1863 2 1.6 #> 1864 2 1.6 #> 1865 2 1.6 #> 1866 2 1.6 #> 1867 2 1.6 #> 1868 2 1.6 #> 1869 2 1.6 #> 1870 2 1.6 #> 1871 2 1.6 #> 1872 2 1.6 #> 1873 2 1.6 #> 1874 2 1.6 #> 1875 1 1.7 #> 1876 1 1.7 #> 1877 1 1.7 #> 1878 1 1.7 #> 1879 1 1.7 #> 1880 1 1.7 #> 1881 1 1.7 #> 1882 1 1.7 #> 1883 1 1.7 #> 1884 1 1.7 #> 1885 1 1.7 #> 1886 1 1.7 #> 1887 1 1.7 #> 1888 1 1.7 #> 1889 1 1.7 #> 1890 1 1.7 #> 1891 1 1.7 #> 1892 1 1.7 #> 1893 1 1.7 #> 1894 1 1.7 #> 1895 1 1.7 #> 1896 1 1.7 #> 1897 1 1.7 #> 1898 1 1.7 #> 1899 1 1.7 #> 1900 1 1.7 #> 1901 1 1.7 #> 1902 1 1.7 #> 1903 1 0.5 #> 1904 1 0.5 #> 1905 1 0.5 #> 1906 1 0.5 #> 1907 1 0.5 #> 1908 1 0.5 #> 1909 1 0.5 #> 1910 1 0.5 #> 1911 1 0.5 #> 1912 1 0.5 #> 1913 1 0.5 #> 1914 1 0.5 #> 1915 1 0.5 #> 1916 1 0.5 #> 1917 1 0.5 #> 1918 1 0.5 #> 1919 1 0.5 #> 1920 1 0.5 #> 1921 1 0.5 #> 1922 1 0.5 #> 1923 1 0.5 #> 1924 1 0.5 #> 1925 1 0.5 #> 1926 1 0.5 #> 1927 1 0.5 #> 1928 1 0.5 #> 1929 1 0.5 #> 1930 1 0.5 #> 1931 1 1.4 #> 1932 1 1.4 #> 1933 1 1.4 #> 1934 1 1.4 #> 1935 1 1.4 #> 1936 1 1.4 #> 1937 1 1.4 #> 1938 1 1.4 #> 1939 1 1.4 #> 1940 1 1.4 #> 1941 1 1.4 #> 1942 1 1.4 #> 1943 1 1.4 #> 1944 1 1.4 #> 1945 1 1.4 #> 1946 1 1.4 #> 1947 1 1.4 #> 1948 1 1.4 #> 1949 1 1.4 #> 1950 1 1.4 #> 1951 1 1.4 #> 1952 1 1.4 #> 1953 1 1.4 #> 1954 1 1.4 #> 1955 1 1.4 #> 1956 1 1.4 #> 1957 1 1.4 #> 1958 1 1.4 #> 1959 2 1.2 #> 1960 2 1.2 #> 1961 2 1.2 #> 1962 2 1.2 #> 1963 2 1.2 #> 1964 2 1.2 #> 1965 2 1.2 #> 1966 2 1.2 #> 1967 2 1.2 #> 1968 2 1.2 #> 1969 2 1.2 #> 1970 2 1.2 #> 1971 2 1.2 #> 1972 2 1.2 #> 1973 2 1.2 #> 1974 2 1.2 #> 1975 2 1.2 #> 1976 2 1.2 #> 1977 2 1.2 #> 1978 2 1.2 #> 1979 2 1.2 #> 1980 2 1.2 #> 1981 2 1.2 #> 1982 2 1.2 #> 1983 2 1.2 #> 1984 2 1.2 #> 1985 2 1.2 #> 1986 2 1.2 #> 1987 0 1.1 #> 1988 0 1.1 #> 1989 0 1.1 #> 1990 0 1.1 #> 1991 0 1.1 #> 1992 0 1.1 #> 1993 0 1.1 #> 1994 0 1.1 #> 1995 0 1.1 #> 1996 0 1.1 #> 1997 0 1.1 #> 1998 0 1.1 #> 1999 0 1.1 #> 2000 0 1.1 #> 2001 0 1.1 #> 2002 0 1.1 #> 2003 0 1.1 #> 2004 0 1.1 #> 2005 0 1.1 #> 2006 0 1.1 #> 2007 0 1.1 #> 2008 0 1.1 #> 2009 0 1.1 #> 2010 0 1.1 #> 2011 0 1.1 #> 2012 0 1.1 #> 2013 0 1.1 #> 2014 0 1.1 #> 2015 1 1.1 #> 2016 1 1.1 #> 2017 1 1.1 #> 2018 1 1.1 #> 2019 1 1.1 #> 2020 1 1.1 #> 2021 1 1.1 #> 2022 1 1.1 #> 2023 1 1.1 #> 2024 1 1.1 #> 2025 1 1.1 #> 2026 1 1.1 #> 2027 1 1.1 #> 2028 1 1.1 #> 2029 1 1.1 #> 2030 1 1.1 #> 2031 1 1.1 #> 2032 1 1.1 #> 2033 1 1.1 #> 2034 1 1.1 #> 2035 1 1.1 #> 2036 1 1.1 #> 2037 1 1.1 #> 2038 1 1.1 #> 2039 1 1.1 #> 2040 1 1.1 #> Home_Goals #> 1 #> 2 #> 3 #> 4 #> 5 #> 6 #> 7 #> 8 #> 9 #> 10 #> 11 #> 12 #> 13 #> 14 #> 15 #> 16 #> 17 #> 18 #> 19 #> 20 #> 21 #> 22 #> 23 #> 24 #> 25 #> 26 #> 27 #> 28 #> 29 #> 30 #> 31 #> 32 #> 33 #> 34 #> 35 #> 36 #> 37 #> 38 #> 39 #> 40 #> 41 #> 42 #> 43 #> 44 #> 45 #> 46 #> 47 #> 48 #> 49 #> 50 #> 51 #> 52 #> 53 #> 54 #> 55 #> 56 #> 57 David López (OG) · 52’ #> 58 David López (OG) · 52’ #> 59 David López (OG) · 52’ #> 60 David López (OG) · 52’ #> 61 David López (OG) · 52’ #> 62 David López (OG) · 52’ #> 63 David López (OG) · 52’ #> 64 David López (OG) · 52’ #> 65 David López (OG) · 52’ #> 66 David López (OG) · 52’ #> 67 David López (OG) · 52’ #> 68 David López (OG) · 52’ #> 69 David López (OG) · 52’ #> 70 David López (OG) · 52’ #> 71 David López (OG) · 52’ #> 72 David López (OG) · 52’ #> 73 David López (OG) · 52’ #> 74 David López (OG) · 52’ #> 75 David López (OG) · 52’ #> 76 David López (OG) · 52’ #> 77 David López (OG) · 52’ #> 78 David López (OG) · 52’ #> 79 David López (OG) · 52’ #> 80 David López (OG) · 52’ #> 81 David López (OG) · 52’ #> 82 David López (OG) · 52’ #> 83 David López (OG) · 52’ #> 84 David López (OG) · 52’ #> 85 Gerard Moreno · 16’ #> 86 Gerard Moreno · 16’ #> 87 Gerard Moreno · 16’ #> 88 Gerard Moreno · 16’ #> 89 Gerard Moreno · 16’ #> 90 Gerard Moreno · 16’ #> 91 Gerard Moreno · 16’ #> 92 Gerard Moreno · 16’ #> 93 Gerard Moreno · 16’ #> 94 Gerard Moreno · 16’ #> 95 Gerard Moreno · 16’ #> 96 Gerard Moreno · 16’ #> 97 Gerard Moreno · 16’ #> 98 Gerard Moreno · 16’ #> 99 Gerard Moreno · 16’ #> 100 Gerard Moreno · 16’ #> 101 Gerard Moreno · 16’ #> 102 Gerard Moreno · 16’ #> 103 Gerard Moreno · 16’ #> 104 Gerard Moreno · 16’ #> 105 Gerard Moreno · 16’ #> 106 Gerard Moreno · 16’ #> 107 Gerard Moreno · 16’ #> 108 Gerard Moreno · 16’ #> 109 Gerard Moreno · 16’ #> 110 Gerard Moreno · 16’ #> 111 Gerard Moreno · 16’ #> 112 Gerard Moreno · 16’ #> 113 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 114 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 115 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 116 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 117 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 118 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 119 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 120 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 121 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 122 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 123 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 124 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 125 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 126 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 127 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 128 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 129 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 130 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 131 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 132 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 133 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 134 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 135 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 136 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 137 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 138 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 139 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 140 Lionel Messi · 64’ Philippe Coutinho · 83’ Lionel Messi · 90+2’ #> 141 Gonzalo Escalante · 69’ #> 142 Gonzalo Escalante · 69’ #> 143 Gonzalo Escalante · 69’ #> 144 Gonzalo Escalante · 69’ #> 145 Gonzalo Escalante · 69’ #> 146 Gonzalo Escalante · 69’ #> 147 Gonzalo Escalante · 69’ #> 148 Gonzalo Escalante · 69’ #> 149 Gonzalo Escalante · 69’ #> 150 Gonzalo Escalante · 69’ #> 151 Gonzalo Escalante · 69’ #> 152 Gonzalo Escalante · 69’ #> 153 Gonzalo Escalante · 69’ #> 154 Gonzalo Escalante · 69’ #> 155 Gonzalo Escalante · 69’ #> 156 Gonzalo Escalante · 69’ #> 157 Gonzalo Escalante · 69’ #> 158 Gonzalo Escalante · 69’ #> 159 Gonzalo Escalante · 69’ #> 160 Gonzalo Escalante · 69’ #> 161 Gonzalo Escalante · 69’ #> 162 Gonzalo Escalante · 69’ #> 163 Gonzalo Escalante · 69’ #> 164 Gonzalo Escalante · 69’ #> 165 Gonzalo Escalante · 69’ #> 166 Gonzalo Escalante · 69’ #> 167 Gonzalo Escalante · 69’ #> 168 Gonzalo Escalante · 69’ #> 169 Adri Embarba (P) · 85’ #> 170 Adri Embarba (P) · 85’ #> 171 Adri Embarba (P) · 85’ #> 172 Adri Embarba (P) · 85’ #> 173 Adri Embarba (P) · 85’ #> 174 Adri Embarba (P) · 85’ #> 175 Adri Embarba (P) · 85’ #> 176 Adri Embarba (P) · 85’ #> 177 Adri Embarba (P) · 85’ #> 178 Adri Embarba (P) · 85’ #> 179 Adri Embarba (P) · 85’ #> 180 Adri Embarba (P) · 85’ #> 181 Adri Embarba (P) · 85’ #> 182 Adri Embarba (P) · 85’ #> 183 Adri Embarba (P) · 85’ #> 184 Adri Embarba (P) · 85’ #> 185 Adri Embarba (P) · 85’ #> 186 Adri Embarba (P) · 85’ #> 187 Adri Embarba (P) · 85’ #> 188 Adri Embarba (P) · 85’ #> 189 Adri Embarba (P) · 85’ #> 190 Adri Embarba (P) · 85’ #> 191 Adri Embarba (P) · 85’ #> 192 Adri Embarba (P) · 85’ #> 193 Adri Embarba (P) · 85’ #> 194 Adri Embarba (P) · 85’ #> 195 Adri Embarba (P) · 85’ #> 196 Dani Carvajal · 20’ Gareth Bale · 51’ #> 197 Dani Carvajal · 20’ Gareth Bale · 51’ #> 198 Dani Carvajal · 20’ Gareth Bale · 51’ #> 199 Dani Carvajal · 20’ Gareth Bale · 51’ #> 200 Dani Carvajal · 20’ Gareth Bale · 51’ #> 201 Dani Carvajal · 20’ Gareth Bale · 51’ #> 202 Dani Carvajal · 20’ Gareth Bale · 51’ #> 203 Dani Carvajal · 20’ Gareth Bale · 51’ #> 204 Dani Carvajal · 20’ Gareth Bale · 51’ #> 205 Dani Carvajal · 20’ Gareth Bale · 51’ #> 206 Dani Carvajal · 20’ Gareth Bale · 51’ #> 207 Dani Carvajal · 20’ Gareth Bale · 51’ #> 208 Dani Carvajal · 20’ Gareth Bale · 51’ #> 209 Dani Carvajal · 20’ Gareth Bale · 51’ #> 210 Dani Carvajal · 20’ Gareth Bale · 51’ #> 211 Dani Carvajal · 20’ Gareth Bale · 51’ #> 212 Dani Carvajal · 20’ Gareth Bale · 51’ #> 213 Dani Carvajal · 20’ Gareth Bale · 51’ #> 214 Dani Carvajal · 20’ Gareth Bale · 51’ #> 215 Dani Carvajal · 20’ Gareth Bale · 51’ #> 216 Dani Carvajal · 20’ Gareth Bale · 51’ #> 217 Dani Carvajal · 20’ Gareth Bale · 51’ #> 218 Dani Carvajal · 20’ Gareth Bale · 51’ #> 219 Dani Carvajal · 20’ Gareth Bale · 51’ #> 220 Dani Carvajal · 20’ Gareth Bale · 51’ #> 221 Dani Carvajal · 20’ Gareth Bale · 51’ #> 222 Dani Carvajal · 20’ Gareth Bale · 51’ #> 223 Dani Carvajal · 20’ Gareth Bale · 51’ #> 224 Rodrigo · 56’ #> 225 Rodrigo · 56’ #> 226 Rodrigo · 56’ #> 227 Rodrigo · 56’ #> 228 Rodrigo · 56’ #> 229 Rodrigo · 56’ #> 230 Rodrigo · 56’ #> 231 Rodrigo · 56’ #> 232 Rodrigo · 56’ #> 233 Rodrigo · 56’ #> 234 Rodrigo · 56’ #> 235 Rodrigo · 56’ #> 236 Rodrigo · 56’ #> 237 Rodrigo · 56’ #> 238 Rodrigo · 56’ #> 239 Rodrigo · 56’ #> 240 Rodrigo · 56’ #> 241 Rodrigo · 56’ #> 242 Rodrigo · 56’ #> 243 Rodrigo · 56’ #> 244 Rodrigo · 56’ #> 245 Rodrigo · 56’ #> 246 Rodrigo · 56’ #> 247 Rodrigo · 56’ #> 248 Rodrigo · 56’ #> 249 Rodrigo · 56’ #> 250 Rodrigo · 56’ #> 251 Rodrigo · 56’ #> 252 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 253 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 254 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 255 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 256 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 257 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 258 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 259 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 260 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 261 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 262 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 263 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 264 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 265 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 266 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 267 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 268 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 269 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 270 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 271 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 272 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 273 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 274 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 275 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 276 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 277 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 278 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 279 Peru Nolaskoain · 27’ Iker Muniain · 90+3’ #> 280 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 281 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 282 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 283 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 284 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 285 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 286 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 287 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 288 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 289 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 290 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 291 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 292 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 293 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 294 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 295 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 296 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 297 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 298 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 299 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 300 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 301 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 302 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 303 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 304 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 305 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 306 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 307 Ángel Rodríguez · 18’ Jorge Molina · 90’ #> 308 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 309 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 310 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 311 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 312 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 313 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 314 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 315 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 316 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 317 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 318 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 319 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 320 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 321 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 322 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 323 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 324 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 325 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 326 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 327 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 328 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 329 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 330 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 331 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 332 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 333 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 334 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 335 Nabil El Zhar · 54’ Nabil El Zhar · 88’ #> 336 #> 337 #> 338 #> 339 #> 340 #> 341 #> 342 #> 343 #> 344 #> 345 #> 346 #> 347 #> 348 #> 349 #> 350 #> 351 #> 352 #> 353 #> 354 #> 355 #> 356 #> 357 #> 358 #> 359 #> 360 #> 361 #> 362 #> 363 #> 364 Antoine Griezmann · 63’ #> 365 Antoine Griezmann · 63’ #> 366 Antoine Griezmann · 63’ #> 367 Antoine Griezmann · 63’ #> 368 Antoine Griezmann · 63’ #> 369 Antoine Griezmann · 63’ #> 370 Antoine Griezmann · 63’ #> 371 Antoine Griezmann · 63’ #> 372 Antoine Griezmann · 63’ #> 373 Antoine Griezmann · 63’ #> 374 Antoine Griezmann · 63’ #> 375 Antoine Griezmann · 63’ #> 376 Antoine Griezmann · 63’ #> 377 Antoine Griezmann · 63’ #> 378 Antoine Griezmann · 63’ #> 379 Antoine Griezmann · 63’ #> 380 Antoine Griezmann · 63’ #> 381 Antoine Griezmann · 63’ #> 382 Antoine Griezmann · 63’ #> 383 Antoine Griezmann · 63’ #> 384 Antoine Griezmann · 63’ #> 385 Antoine Griezmann · 63’ #> 386 Antoine Griezmann · 63’ #> 387 Antoine Griezmann · 63’ #> 388 Antoine Griezmann · 63’ #> 389 Antoine Griezmann · 63’ #> 390 Antoine Griezmann · 63’ #> 391 Antoine Griezmann · 63’ #> 392 #> 393 #> 394 #> 395 #> 396 #> 397 #> 398 #> 399 #> 400 #> 401 #> 402 #> 403 #> 404 #> 405 #> 406 #> 407 #> 408 #> 409 #> 410 #> 411 #> 412 #> 413 #> 414 #> 415 #> 416 #> 417 #> 418 #> 419 #> 420 Esteban Granero · 62’ Borja Iglesias · 68’ #> 421 Esteban Granero · 62’ Borja Iglesias · 68’ #> 422 Esteban Granero · 62’ Borja Iglesias · 68’ #> 423 Esteban Granero · 62’ Borja Iglesias · 68’ #> 424 Esteban Granero · 62’ Borja Iglesias · 68’ #> 425 Esteban Granero · 62’ Borja Iglesias · 68’ #> 426 Esteban Granero · 62’ Borja Iglesias · 68’ #> 427 Esteban Granero · 62’ Borja Iglesias · 68’ #> 428 Esteban Granero · 62’ Borja Iglesias · 68’ #> 429 Esteban Granero · 62’ Borja Iglesias · 68’ #> 430 Esteban Granero · 62’ Borja Iglesias · 68’ #> 431 Esteban Granero · 62’ Borja Iglesias · 68’ #> 432 Esteban Granero · 62’ Borja Iglesias · 68’ #> 433 Esteban Granero · 62’ Borja Iglesias · 68’ #> 434 Esteban Granero · 62’ Borja Iglesias · 68’ #> 435 Esteban Granero · 62’ Borja Iglesias · 68’ #> 436 Esteban Granero · 62’ Borja Iglesias · 68’ #> 437 Esteban Granero · 62’ Borja Iglesias · 68’ #> 438 Esteban Granero · 62’ Borja Iglesias · 68’ #> 439 Esteban Granero · 62’ Borja Iglesias · 68’ #> 440 Esteban Granero · 62’ Borja Iglesias · 68’ #> 441 Esteban Granero · 62’ Borja Iglesias · 68’ #> 442 Esteban Granero · 62’ Borja Iglesias · 68’ #> 443 Esteban Granero · 62’ Borja Iglesias · 68’ #> 444 Esteban Granero · 62’ Borja Iglesias · 68’ #> 445 Esteban Granero · 62’ Borja Iglesias · 68’ #> 446 Esteban Granero · 62’ Borja Iglesias · 68’ #> 447 Esteban Granero · 62’ Borja Iglesias · 68’ #> 448 Borja García · 16’ #> 449 Borja García · 16’ #> 450 Borja García · 16’ #> 451 Borja García · 16’ #> 452 Borja García · 16’ #> 453 Borja García · 16’ #> 454 Borja García · 16’ #> 455 Borja García · 16’ #> 456 Borja García · 16’ #> 457 Borja García · 16’ #> 458 Borja García · 16’ #> 459 Borja García · 16’ #> 460 Borja García · 16’ #> 461 Borja García · 16’ #> 462 Borja García · 16’ #> 463 Borja García · 16’ #> 464 Borja García · 16’ #> 465 Borja García · 16’ #> 466 Borja García · 16’ #> 467 Borja García · 16’ #> 468 Borja García · 16’ #> 469 Borja García · 16’ #> 470 Borja García · 16’ #> 471 Borja García · 16’ #> 472 Borja García · 16’ #> 473 Borja García · 16’ #> 474 Borja García · 16’ #> 475 Borja García · 16’ #> 476 #> 477 #> 478 #> 479 #> 480 #> 481 #> 482 #> 483 #> 484 #> 485 #> 486 #> 487 #> 488 #> 489 #> 490 #> 491 #> 492 #> 493 #> 494 #> 495 #> 496 #> 497 #> 498 #> 499 #> 500 #> 501 #> 502 #> 503 #> 504 José Luis Morales (P) · 78’ #> 505 José Luis Morales (P) · 78’ #> 506 José Luis Morales (P) · 78’ #> 507 José Luis Morales (P) · 78’ #> 508 José Luis Morales (P) · 78’ #> 509 José Luis Morales (P) · 78’ #> 510 José Luis Morales (P) · 78’ #> 511 José Luis Morales (P) · 78’ #> 512 José Luis Morales (P) · 78’ #> 513 José Luis Morales (P) · 78’ #> 514 José Luis Morales (P) · 78’ #> 515 José Luis Morales (P) · 78’ #> 516 José Luis Morales (P) · 78’ #> 517 José Luis Morales (P) · 78’ #> 518 José Luis Morales (P) · 78’ #> 519 José Luis Morales (P) · 78’ #> 520 José Luis Morales (P) · 78’ #> 521 José Luis Morales (P) · 78’ #> 522 José Luis Morales (P) · 78’ #> 523 José Luis Morales (P) · 78’ #> 524 José Luis Morales (P) · 78’ #> 525 José Luis Morales (P) · 78’ #> 526 José Luis Morales (P) · 78’ #> 527 José Luis Morales (P) · 78’ #> 528 José Luis Morales (P) · 78’ #> 529 José Luis Morales (P) · 78’ #> 530 José Luis Morales (P) · 78’ #> 531 José Luis Morales (P) · 78’ #> 532 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 533 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 534 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 535 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 536 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 537 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 538 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 539 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 540 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 541 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 542 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 543 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 544 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 545 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 546 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 547 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 548 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 549 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 550 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 551 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 552 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 553 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 554 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 555 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 556 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 557 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 558 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 559 Markel Susaeta · 47’ Yuri Berchiche · 63’ #> 560 #> 561 #> 562 #> 563 #> 564 #> 565 #> 566 #> 567 #> 568 #> 569 #> 570 #> 571 #> 572 #> 573 #> 574 #> 575 #> 576 #> 577 #> 578 #> 579 #> 580 #> 581 #> 582 #> 583 #> 584 #> 585 #> 586 #> 587 #> 588 #> 589 #> 590 #> 591 #> 592 #> 593 #> 594 #> 595 #> 596 #> 597 #> 598 #> 599 #> 600 #> 601 #> 602 #> 603 #> 604 #> 605 #> 606 #> 607 #> 608 #> 609 #> 610 #> 611 #> 612 #> 613 #> 614 #> 615 #> 616 Marc Cardona · 26’ Charles · 90+1’ #> 617 Marc Cardona · 26’ Charles · 90+1’ #> 618 Marc Cardona · 26’ Charles · 90+1’ #> 619 Marc Cardona · 26’ Charles · 90+1’ #> 620 Marc Cardona · 26’ Charles · 90+1’ #> 621 Marc Cardona · 26’ Charles · 90+1’ #> 622 Marc Cardona · 26’ Charles · 90+1’ #> 623 Marc Cardona · 26’ Charles · 90+1’ #> 624 Marc Cardona · 26’ Charles · 90+1’ #> 625 Marc Cardona · 26’ Charles · 90+1’ #> 626 Marc Cardona · 26’ Charles · 90+1’ #> 627 Marc Cardona · 26’ Charles · 90+1’ #> 628 Marc Cardona · 26’ Charles · 90+1’ #> 629 Marc Cardona · 26’ Charles · 90+1’ #> 630 Marc Cardona · 26’ Charles · 90+1’ #> 631 Marc Cardona · 26’ Charles · 90+1’ #> 632 Marc Cardona · 26’ Charles · 90+1’ #> 633 Marc Cardona · 26’ Charles · 90+1’ #> 634 Marc Cardona · 26’ Charles · 90+1’ #> 635 Marc Cardona · 26’ Charles · 90+1’ #> 636 Marc Cardona · 26’ Charles · 90+1’ #> 637 Marc Cardona · 26’ Charles · 90+1’ #> 638 Marc Cardona · 26’ Charles · 90+1’ #> 639 Marc Cardona · 26’ Charles · 90+1’ #> 640 Marc Cardona · 26’ Charles · 90+1’ #> 641 Marc Cardona · 26’ Charles · 90+1’ #> 642 Marc Cardona · 26’ Charles · 90+1’ #> 643 Marc Cardona · 26’ Charles · 90+1’ #> 644 Maxi Gómez · 46’ Iago Aspas · 52’ #> 645 Maxi Gómez · 46’ Iago Aspas · 52’ #> 646 Maxi Gómez · 46’ Iago Aspas · 52’ #> 647 Maxi Gómez · 46’ Iago Aspas · 52’ #> 648 Maxi Gómez · 46’ Iago Aspas · 52’ #> 649 Maxi Gómez · 46’ Iago Aspas · 52’ #> 650 Maxi Gómez · 46’ Iago Aspas · 52’ #> 651 Maxi Gómez · 46’ Iago Aspas · 52’ #> 652 Maxi Gómez · 46’ Iago Aspas · 52’ #> 653 Maxi Gómez · 46’ Iago Aspas · 52’ #> 654 Maxi Gómez · 46’ Iago Aspas · 52’ #> 655 Maxi Gómez · 46’ Iago Aspas · 52’ #> 656 Maxi Gómez · 46’ Iago Aspas · 52’ #> 657 Maxi Gómez · 46’ Iago Aspas · 52’ #> 658 Maxi Gómez · 46’ Iago Aspas · 52’ #> 659 Maxi Gómez · 46’ Iago Aspas · 52’ #> 660 Maxi Gómez · 46’ Iago Aspas · 52’ #> 661 Maxi Gómez · 46’ Iago Aspas · 52’ #> 662 Maxi Gómez · 46’ Iago Aspas · 52’ #> 663 Maxi Gómez · 46’ Iago Aspas · 52’ #> 664 Maxi Gómez · 46’ Iago Aspas · 52’ #> 665 Maxi Gómez · 46’ Iago Aspas · 52’ #> 666 Maxi Gómez · 46’ Iago Aspas · 52’ #> 667 Maxi Gómez · 46’ Iago Aspas · 52’ #> 668 Maxi Gómez · 46’ Iago Aspas · 52’ #> 669 Maxi Gómez · 46’ Iago Aspas · 52’ #> 670 Maxi Gómez · 46’ Iago Aspas · 52’ #> 671 Maxi Gómez · 46’ Iago Aspas · 52’ #> 672 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 673 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 674 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 675 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 676 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 677 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 678 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 679 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 680 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 681 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 682 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 683 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 684 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 685 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 686 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 687 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 688 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 689 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 690 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 691 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 692 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 693 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 694 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 695 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 696 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 697 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 698 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 699 Gareth Bale · 17’ Karim Benzema · 48’ Karim Benzema · 61’ Sergio Ramos (P) · 66’ #> 700 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 701 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 702 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 703 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 704 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 705 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 706 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 707 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 708 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 709 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 710 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 711 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 712 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 713 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 714 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 715 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 716 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 717 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 718 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 719 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 720 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 721 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 722 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 723 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 724 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 725 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 726 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 727 Roger Martí · 13’ Roger Martí · 33’ Coke · 76’ #> 728 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 729 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 730 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 731 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 732 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 733 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 734 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 735 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 736 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 737 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 738 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 739 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 740 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 741 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 742 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 743 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 744 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 745 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 746 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 747 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 748 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 749 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 750 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 751 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 752 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 753 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 754 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 755 Borja Bastón · 57’ Rubén Sobrino · 59’ #> 756 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 757 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 758 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 759 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 760 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 761 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 762 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 763 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 764 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 765 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 766 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 767 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 768 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 769 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 770 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 771 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 772 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 773 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 774 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 775 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 776 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 777 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 778 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 779 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 780 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 781 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 782 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 783 Lionel Messi · 16’ Jorge Pulido (OG) · 24’ Luis Suárez · 39’ Ousmane Dembélé · 48’ Ivan Rakitić · 52’ Lionel Messi · 61’ Jordi Alba · 81’ Luis Suárez (P) · 90+3’ #> 784 Joaquín · 80’ #> 785 Joaquín · 80’ #> 786 Joaquín · 80’ #> 787 Joaquín · 80’ #> 788 Joaquín · 80’ #> 789 Joaquín · 80’ #> 790 Joaquín · 80’ #> 791 Joaquín · 80’ #> 792 Joaquín · 80’ #> 793 Joaquín · 80’ #> 794 Joaquín · 80’ #> 795 Joaquín · 80’ #> 796 Joaquín · 80’ #> 797 Joaquín · 80’ #> 798 Joaquín · 80’ #> 799 Joaquín · 80’ #> 800 Joaquín · 80’ #> 801 Joaquín · 80’ #> 802 Joaquín · 80’ #> 803 Joaquín · 80’ #> 804 Joaquín · 80’ #> 805 Joaquín · 80’ #> 806 Joaquín · 80’ #> 807 Joaquín · 80’ #> 808 Joaquín · 80’ #> 809 Joaquín · 80’ #> 810 Joaquín · 80’ #> 811 Joaquín · 80’ #> 812 #> 813 #> 814 #> 815 #> 816 #> 817 #> 818 #> 819 #> 820 #> 821 #> 822 #> 823 #> 824 #> 825 #> 826 #> 827 #> 828 #> 829 #> 830 #> 831 #> 832 #> 833 #> 834 #> 835 #> 836 #> 837 #> 838 #> 839 #> 840 Borja Garcés · 90+4’ #> 841 Borja Garcés · 90+4’ #> 842 Borja Garcés · 90+4’ #> 843 Borja Garcés · 90+4’ #> 844 Borja Garcés · 90+4’ #> 845 Borja Garcés · 90+4’ #> 846 Borja Garcés · 90+4’ #> 847 Borja Garcés · 90+4’ #> 848 Borja Garcés · 90+4’ #> 849 Borja Garcés · 90+4’ #> 850 Borja Garcés · 90+4’ #> 851 Borja Garcés · 90+4’ #> 852 Borja Garcés · 90+4’ #> 853 Borja Garcés · 90+4’ #> 854 Borja Garcés · 90+4’ #> 855 Borja Garcés · 90+4’ #> 856 Borja Garcés · 90+4’ #> 857 Borja Garcés · 90+4’ #> 858 Borja Garcés · 90+4’ #> 859 Borja Garcés · 90+4’ #> 860 Borja Garcés · 90+4’ #> 861 Borja Garcés · 90+4’ #> 862 Borja Garcés · 90+4’ #> 863 Borja Garcés · 90+4’ #> 864 Borja Garcés · 90+4’ #> 865 Borja Garcés · 90+4’ #> 866 Borja Garcés · 90+4’ #> 867 Aritz Elustondo · 12’ #> 868 Aritz Elustondo · 12’ #> 869 Aritz Elustondo · 12’ #> 870 Aritz Elustondo · 12’ #> 871 Aritz Elustondo · 12’ #> 872 Aritz Elustondo · 12’ #> 873 Aritz Elustondo · 12’ #> 874 Aritz Elustondo · 12’ #> 875 Aritz Elustondo · 12’ #> 876 Aritz Elustondo · 12’ #> 877 Aritz Elustondo · 12’ #> 878 Aritz Elustondo · 12’ #> 879 Aritz Elustondo · 12’ #> 880 Aritz Elustondo · 12’ #> 881 Aritz Elustondo · 12’ #> 882 Aritz Elustondo · 12’ #> 883 Aritz Elustondo · 12’ #> 884 Aritz Elustondo · 12’ #> 885 Aritz Elustondo · 12’ #> 886 Aritz Elustondo · 12’ #> 887 Aritz Elustondo · 12’ #> 888 Aritz Elustondo · 12’ #> 889 Aritz Elustondo · 12’ #> 890 Aritz Elustondo · 12’ #> 891 Aritz Elustondo · 12’ #> 892 Aritz Elustondo · 12’ #> 893 Aritz Elustondo · 12’ #> 894 Aritz Elustondo · 12’ #> 895 #> 896 #> 897 #> 898 #> 899 #> 900 #> 901 #> 902 #> 903 #> 904 #> 905 #> 906 #> 907 #> 908 #> 909 #> 910 #> 911 #> 912 #> 913 #> 914 #> 915 #> 916 #> 917 #> 918 #> 919 #> 920 #> 921 #> 922 #> 923 Iker Muniain · 32’ #> 924 Iker Muniain · 32’ #> 925 Iker Muniain · 32’ #> 926 Iker Muniain · 32’ #> 927 Iker Muniain · 32’ #> 928 Iker Muniain · 32’ #> 929 Iker Muniain · 32’ #> 930 Iker Muniain · 32’ #> 931 Iker Muniain · 32’ #> 932 Iker Muniain · 32’ #> 933 Iker Muniain · 32’ #> 934 Iker Muniain · 32’ #> 935 Iker Muniain · 32’ #> 936 Iker Muniain · 32’ #> 937 Iker Muniain · 32’ #> 938 Iker Muniain · 32’ #> 939 Iker Muniain · 32’ #> 940 Iker Muniain · 32’ #> 941 Iker Muniain · 32’ #> 942 Iker Muniain · 32’ #> 943 Iker Muniain · 32’ #> 944 Iker Muniain · 32’ #> 945 Iker Muniain · 32’ #> 946 Iker Muniain · 32’ #> 947 Iker Muniain · 32’ #> 948 Iker Muniain · 32’ #> 949 Iker Muniain · 32’ #> 950 Iker Muniain · 32’ #> 951 #> 952 #> 953 #> 954 #> 955 #> 956 #> 957 #> 958 #> 959 #> 960 #> 961 #> 962 #> 963 #> 964 #> 965 #> 966 #> 967 #> 968 #> 969 #> 970 #> 971 #> 972 #> 973 #> 974 #> 975 #> 976 #> 977 #> 978 #> 979 Sergio García · 52’ #> 980 Sergio García · 52’ #> 981 Sergio García · 52’ #> 982 Sergio García · 52’ #> 983 Sergio García · 52’ #> 984 Sergio García · 52’ #> 985 Sergio García · 52’ #> 986 Sergio García · 52’ #> 987 Sergio García · 52’ #> 988 Sergio García · 52’ #> 989 Sergio García · 52’ #> 990 Sergio García · 52’ #> 991 Sergio García · 52’ #> 992 Sergio García · 52’ #> 993 Sergio García · 52’ #> 994 Sergio García · 52’ #> 995 Sergio García · 52’ #> 996 Sergio García · 52’ #> 997 Sergio García · 52’ #> 998 Sergio García · 52’ #> 999 Sergio García · 52’ #> 1000 Sergio García · 52’ #> 1001 Sergio García · 52’ #> 1002 Sergio García · 52’ #> 1003 Sergio García · 52’ #> 1004 Sergio García · 52’ #> 1005 Sergio García · 52’ #> 1006 Sergio García · 52’ #> 1007 #> 1008 #> 1009 #> 1010 #> 1011 #> 1012 #> 1013 #> 1014 #> 1015 #> 1016 #> 1017 #> 1018 #> 1019 #> 1020 #> 1021 #> 1022 #> 1023 #> 1024 #> 1025 #> 1026 #> 1027 #> 1028 #> 1029 #> 1030 #> 1031 #> 1032 #> 1033 #> 1034 #> 1035 #> 1036 #> 1037 #> 1038 #> 1039 #> 1040 #> 1041 #> 1042 #> 1043 #> 1044 #> 1045 #> 1046 #> 1047 #> 1048 #> 1049 #> 1050 #> 1051 #> 1052 #> 1053 #> 1054 #> 1055 #> 1056 #> 1057 #> 1058 #> 1059 #> 1060 #> 1061 #> 1062 #> 1063 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1064 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1065 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1066 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1067 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1068 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1069 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1070 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1071 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1072 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1073 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1074 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1075 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1076 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1077 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1078 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1079 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1080 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1081 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1082 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1083 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1084 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1085 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1086 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1087 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1088 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1089 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1090 Cristhian Stuani · 22’ Pedro Alcalá · 37’ Cristhian Stuani · 56’ #> 1091 #> 1092 #> 1093 #> 1094 #> 1095 #> 1096 #> 1097 #> 1098 #> 1099 #> 1100 #> 1101 #> 1102 #> 1103 #> 1104 #> 1105 #> 1106 #> 1107 #> 1108 #> 1109 #> 1110 #> 1111 #> 1112 #> 1113 #> 1114 #> 1115 #> 1116 #> 1117 #> 1118 #> 1119 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1120 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1121 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1122 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1123 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1124 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1125 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1126 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1127 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1128 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1129 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1130 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1131 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1132 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1133 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1134 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1135 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1136 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1137 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1138 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1139 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1140 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1141 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1142 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1143 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1144 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1145 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1146 Raúl de Tomás · 30’ Abdoulaye Ba · 35’ #> 1147 Kiké · 52’ #> 1148 Kiké · 52’ #> 1149 Kiké · 52’ #> 1150 Kiké · 52’ #> 1151 Kiké · 52’ #> 1152 Kiké · 52’ #> 1153 Kiké · 52’ #> 1154 Kiké · 52’ #> 1155 Kiké · 52’ #> 1156 Kiké · 52’ #> 1157 Kiké · 52’ #> 1158 Kiké · 52’ #> 1159 Kiké · 52’ #> 1160 Kiké · 52’ #> 1161 Kiké · 52’ #> 1162 Kiké · 52’ #> 1163 Kiké · 52’ #> 1164 Kiké · 52’ #> 1165 Kiké · 52’ #> 1166 Kiké · 52’ #> 1167 Kiké · 52’ #> 1168 Kiké · 52’ #> 1169 Kiké · 52’ #> 1170 Kiké · 52’ #> 1171 Kiké · 52’ #> 1172 Kiké · 52’ #> 1173 Kiké · 52’ #> 1174 Kiké · 52’ #> 1175 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1176 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1177 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1178 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1179 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1180 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1181 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1182 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1183 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1184 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1185 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1186 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1187 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1188 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1189 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1190 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1191 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1192 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1193 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1194 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1195 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1196 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1197 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1198 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1199 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1200 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1201 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1202 Iago Aspas · 5’ Maxi Gómez · 9’ Iago Aspas · 54’ #> 1203 Iván Alejo · 67’ #> 1204 Iván Alejo · 67’ #> 1205 Iván Alejo · 67’ #> 1206 Iván Alejo · 67’ #> 1207 Iván Alejo · 67’ #> 1208 Iván Alejo · 67’ #> 1209 Iván Alejo · 67’ #> 1210 Iván Alejo · 67’ #> 1211 Iván Alejo · 67’ #> 1212 Iván Alejo · 67’ #> 1213 Iván Alejo · 67’ #> 1214 Iván Alejo · 67’ #> 1215 Iván Alejo · 67’ #> 1216 Iván Alejo · 67’ #> 1217 Iván Alejo · 67’ #> 1218 Iván Alejo · 67’ #> 1219 Iván Alejo · 67’ #> 1220 Iván Alejo · 67’ #> 1221 Iván Alejo · 67’ #> 1222 Iván Alejo · 67’ #> 1223 Iván Alejo · 67’ #> 1224 Iván Alejo · 67’ #> 1225 Iván Alejo · 67’ #> 1226 Iván Alejo · 67’ #> 1227 Iván Alejo · 67’ #> 1228 Iván Alejo · 67’ #> 1229 Iván Alejo · 67’ #> 1230 Iván Alejo · 67’ #> 1231 Marco Asensio · 41’ #> 1232 Marco Asensio · 41’ #> 1233 Marco Asensio · 41’ #> 1234 Marco Asensio · 41’ #> 1235 Marco Asensio · 41’ #> 1236 Marco Asensio · 41’ #> 1237 Marco Asensio · 41’ #> 1238 Marco Asensio · 41’ #> 1239 Marco Asensio · 41’ #> 1240 Marco Asensio · 41’ #> 1241 Marco Asensio · 41’ #> 1242 Marco Asensio · 41’ #> 1243 Marco Asensio · 41’ #> 1244 Marco Asensio · 41’ #> 1245 Marco Asensio · 41’ #> 1246 Marco Asensio · 41’ #> 1247 Marco Asensio · 41’ #> 1248 Marco Asensio · 41’ #> 1249 Marco Asensio · 41’ #> 1250 Marco Asensio · 41’ #> 1251 Marco Asensio · 41’ #> 1252 Marco Asensio · 41’ #> 1253 Marco Asensio · 41’ #> 1254 Marco Asensio · 41’ #> 1255 Marco Asensio · 41’ #> 1256 Marco Asensio · 41’ #> 1257 Marco Asensio · 41’ #> 1258 Marco Asensio · 41’ #> 1259 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1260 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1261 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1262 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1263 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1264 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1265 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1266 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1267 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1268 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1269 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1270 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1271 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1272 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1273 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1274 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1275 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1276 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1277 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1278 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1279 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1280 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1281 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1282 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1283 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1284 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1285 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1286 Roger Martí · 12’ Simon Kjær (OG) · 90’ #> 1287 #> 1288 #> 1289 #> 1290 #> 1291 #> 1292 #> 1293 #> 1294 #> 1295 #> 1296 #> 1297 #> 1298 #> 1299 #> 1300 #> 1301 #> 1302 #> 1303 #> 1304 #> 1305 #> 1306 #> 1307 #> 1308 #> 1309 #> 1310 #> 1311 #> 1312 #> 1313 #> 1314 #> 1315 Marc Bartra · 51’ Sergio Canales · 68’ #> 1316 Marc Bartra · 51’ Sergio Canales · 68’ #> 1317 Marc Bartra · 51’ Sergio Canales · 68’ #> 1318 Marc Bartra · 51’ Sergio Canales · 68’ #> 1319 Marc Bartra · 51’ Sergio Canales · 68’ #> 1320 Marc Bartra · 51’ Sergio Canales · 68’ #> 1321 Marc Bartra · 51’ Sergio Canales · 68’ #> 1322 Marc Bartra · 51’ Sergio Canales · 68’ #> 1323 Marc Bartra · 51’ Sergio Canales · 68’ #> 1324 Marc Bartra · 51’ Sergio Canales · 68’ #> 1325 Marc Bartra · 51’ Sergio Canales · 68’ #> 1326 Marc Bartra · 51’ Sergio Canales · 68’ #> 1327 Marc Bartra · 51’ Sergio Canales · 68’ #> 1328 Marc Bartra · 51’ Sergio Canales · 68’ #> 1329 Marc Bartra · 51’ Sergio Canales · 68’ #> 1330 Marc Bartra · 51’ Sergio Canales · 68’ #> 1331 Marc Bartra · 51’ Sergio Canales · 68’ #> 1332 Marc Bartra · 51’ Sergio Canales · 68’ #> 1333 Marc Bartra · 51’ Sergio Canales · 68’ #> 1334 Marc Bartra · 51’ Sergio Canales · 68’ #> 1335 Marc Bartra · 51’ Sergio Canales · 68’ #> 1336 Marc Bartra · 51’ Sergio Canales · 68’ #> 1337 Marc Bartra · 51’ Sergio Canales · 68’ #> 1338 Marc Bartra · 51’ Sergio Canales · 68’ #> 1339 Marc Bartra · 51’ Sergio Canales · 68’ #> 1340 Marc Bartra · 51’ Sergio Canales · 68’ #> 1341 Marc Bartra · 51’ Sergio Canales · 68’ #> 1342 Marc Bartra · 51’ Sergio Canales · 68’ #> 1343 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1344 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1345 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1346 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1347 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1348 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1349 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1350 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1351 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1352 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1353 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1354 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1355 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1356 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1357 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1358 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1359 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1360 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1361 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1362 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1363 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1364 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1365 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1366 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1367 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1368 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1369 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1370 Lionel Messi · 19’ Clément Lenglet · 35’ Gerard Piqué · 63’ #> 1371 Mario Hermoso · 68’ #> 1372 Mario Hermoso · 68’ #> 1373 Mario Hermoso · 68’ #> 1374 Mario Hermoso · 68’ #> 1375 Mario Hermoso · 68’ #> 1376 Mario Hermoso · 68’ #> 1377 Mario Hermoso · 68’ #> 1378 Mario Hermoso · 68’ #> 1379 Mario Hermoso · 68’ #> 1380 Mario Hermoso · 68’ #> 1381 Mario Hermoso · 68’ #> 1382 Mario Hermoso · 68’ #> 1383 Mario Hermoso · 68’ #> 1384 Mario Hermoso · 68’ #> 1385 Mario Hermoso · 68’ #> 1386 Mario Hermoso · 68’ #> 1387 Mario Hermoso · 68’ #> 1388 Mario Hermoso · 68’ #> 1389 Mario Hermoso · 68’ #> 1390 Mario Hermoso · 68’ #> 1391 Mario Hermoso · 68’ #> 1392 Mario Hermoso · 68’ #> 1393 Mario Hermoso · 68’ #> 1394 Mario Hermoso · 68’ #> 1395 Mario Hermoso · 68’ #> 1396 Mario Hermoso · 68’ #> 1397 Mario Hermoso · 68’ #> 1398 Mario Hermoso · 68’ #> 1399 Jon Bautista · 5’ Willian José · 78’ #> 1400 Jon Bautista · 5’ Willian José · 78’ #> 1401 Jon Bautista · 5’ Willian José · 78’ #> 1402 Jon Bautista · 5’ Willian José · 78’ #> 1403 Jon Bautista · 5’ Willian José · 78’ #> 1404 Jon Bautista · 5’ Willian José · 78’ #> 1405 Jon Bautista · 5’ Willian José · 78’ #> 1406 Jon Bautista · 5’ Willian José · 78’ #> 1407 Jon Bautista · 5’ Willian José · 78’ #> 1408 Jon Bautista · 5’ Willian José · 78’ #> 1409 Jon Bautista · 5’ Willian José · 78’ #> 1410 Jon Bautista · 5’ Willian José · 78’ #> 1411 Jon Bautista · 5’ Willian José · 78’ #> 1412 Jon Bautista · 5’ Willian José · 78’ #> 1413 Jon Bautista · 5’ Willian José · 78’ #> 1414 Jon Bautista · 5’ Willian José · 78’ #> 1415 Jon Bautista · 5’ Willian José · 78’ #> 1416 Jon Bautista · 5’ Willian José · 78’ #> 1417 Jon Bautista · 5’ Willian José · 78’ #> 1418 Jon Bautista · 5’ Willian José · 78’ #> 1419 Jon Bautista · 5’ Willian José · 78’ #> 1420 Jon Bautista · 5’ Willian José · 78’ #> 1421 Jon Bautista · 5’ Willian José · 78’ #> 1422 Jon Bautista · 5’ Willian José · 78’ #> 1423 Jon Bautista · 5’ Willian José · 78’ #> 1424 Jon Bautista · 5’ Willian José · 78’ #> 1425 Jon Bautista · 5’ Willian José · 78’ #> 1426 Jon Bautista · 5’ Willian José · 78’ #> 1427 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1428 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1429 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1430 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1431 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1432 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1433 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1434 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1435 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1436 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1437 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1438 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1439 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1440 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1441 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1442 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1443 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1444 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1445 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1446 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1447 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1448 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1449 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1450 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1451 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1452 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1453 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1454 Antoine Griezmann · 16’ Thomas Partey · 29’ Koke · 33’ #> 1455 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1456 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1457 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1458 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1459 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1460 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1461 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1462 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1463 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1464 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1465 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1466 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1467 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1468 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1469 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1470 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1471 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1472 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1473 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1474 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1475 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1476 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1477 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1478 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1479 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1480 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1481 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1482 Nabil El Zhar · 52’ Óscar Rodríguez Arnaiz · 53’ #> 1483 #> 1484 #> 1485 #> 1486 #> 1487 #> 1488 #> 1489 #> 1490 #> 1491 #> 1492 #> 1493 #> 1494 #> 1495 #> 1496 #> 1497 #> 1498 #> 1499 #> 1500 #> 1501 #> 1502 #> 1503 #> 1504 #> 1505 #> 1506 #> 1507 #> 1508 #> 1509 #> 1510 #> 1511 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1512 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1513 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1514 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1515 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1516 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1517 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1518 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1519 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1520 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1521 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1522 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1523 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1524 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1525 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1526 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1527 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1528 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1529 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1530 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1531 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1532 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1533 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1534 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1535 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1536 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1537 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1538 André Silva · 17’ André Silva · 21’ Wissam Ben Yedder · 39’ #> 1539 Michy Batshuayi · 25’ #> 1540 Michy Batshuayi · 25’ #> 1541 Michy Batshuayi · 25’ #> 1542 Michy Batshuayi · 25’ #> 1543 Michy Batshuayi · 25’ #> 1544 Michy Batshuayi · 25’ #> 1545 Michy Batshuayi · 25’ #> 1546 Michy Batshuayi · 25’ #> 1547 Michy Batshuayi · 25’ #> 1548 Michy Batshuayi · 25’ #> 1549 Michy Batshuayi · 25’ #> 1550 Michy Batshuayi · 25’ #> 1551 Michy Batshuayi · 25’ #> 1552 Michy Batshuayi · 25’ #> 1553 Michy Batshuayi · 25’ #> 1554 Michy Batshuayi · 25’ #> 1555 Michy Batshuayi · 25’ #> 1556 Michy Batshuayi · 25’ #> 1557 Michy Batshuayi · 25’ #> 1558 Michy Batshuayi · 25’ #> 1559 Michy Batshuayi · 25’ #> 1560 Michy Batshuayi · 25’ #> 1561 Michy Batshuayi · 25’ #> 1562 Michy Batshuayi · 25’ #> 1563 Michy Batshuayi · 25’ #> 1564 Michy Batshuayi · 25’ #> 1565 Michy Batshuayi · 25’ #> 1566 Michy Batshuayi · 25’ #> 1567 Jonathan Calleri · 90+3’ #> 1568 Jonathan Calleri · 90+3’ #> 1569 Jonathan Calleri · 90+3’ #> 1570 Jonathan Calleri · 90+3’ #> 1571 Jonathan Calleri · 90+3’ #> 1572 Jonathan Calleri · 90+3’ #> 1573 Jonathan Calleri · 90+3’ #> 1574 Jonathan Calleri · 90+3’ #> 1575 Jonathan Calleri · 90+3’ #> 1576 Jonathan Calleri · 90+3’ #> 1577 Jonathan Calleri · 90+3’ #> 1578 Jonathan Calleri · 90+3’ #> 1579 Jonathan Calleri · 90+3’ #> 1580 Jonathan Calleri · 90+3’ #> 1581 Jonathan Calleri · 90+3’ #> 1582 Jonathan Calleri · 90+3’ #> 1583 Jonathan Calleri · 90+3’ #> 1584 Jonathan Calleri · 90+3’ #> 1585 Jonathan Calleri · 90+3’ #> 1586 Jonathan Calleri · 90+3’ #> 1587 Jonathan Calleri · 90+3’ #> 1588 Jonathan Calleri · 90+3’ #> 1589 Jonathan Calleri · 90+3’ #> 1590 Jonathan Calleri · 90+3’ #> 1591 Jonathan Calleri · 90+3’ #> 1592 Jonathan Calleri · 90+3’ #> 1593 Jonathan Calleri · 90+3’ #> 1594 Jonathan Calleri · 90+3’ #> 1595 Enes Ünal · 50’ Nacho · 56’ #> 1596 Enes Ünal · 50’ Nacho · 56’ #> 1597 Enes Ünal · 50’ Nacho · 56’ #> 1598 Enes Ünal · 50’ Nacho · 56’ #> 1599 Enes Ünal · 50’ Nacho · 56’ #> 1600 Enes Ünal · 50’ Nacho · 56’ #> 1601 Enes Ünal · 50’ Nacho · 56’ #> 1602 Enes Ünal · 50’ Nacho · 56’ #> 1603 Enes Ünal · 50’ Nacho · 56’ #> 1604 Enes Ünal · 50’ Nacho · 56’ #> 1605 Enes Ünal · 50’ Nacho · 56’ #> 1606 Enes Ünal · 50’ Nacho · 56’ #> 1607 Enes Ünal · 50’ Nacho · 56’ #> 1608 Enes Ünal · 50’ Nacho · 56’ #> 1609 Enes Ünal · 50’ Nacho · 56’ #> 1610 Enes Ünal · 50’ Nacho · 56’ #> 1611 Enes Ünal · 50’ Nacho · 56’ #> 1612 Enes Ünal · 50’ Nacho · 56’ #> 1613 Enes Ünal · 50’ Nacho · 56’ #> 1614 Enes Ünal · 50’ Nacho · 56’ #> 1615 Enes Ünal · 50’ Nacho · 56’ #> 1616 Enes Ünal · 50’ Nacho · 56’ #> 1617 Enes Ünal · 50’ Nacho · 56’ #> 1618 Enes Ünal · 50’ Nacho · 56’ #> 1619 Enes Ünal · 50’ Nacho · 56’ #> 1620 Enes Ünal · 50’ Nacho · 56’ #> 1621 Enes Ünal · 50’ Nacho · 56’ #> 1622 Enes Ünal · 50’ Nacho · 56’ #> 1623 #> 1624 #> 1625 #> 1626 #> 1627 #> 1628 #> 1629 #> 1630 #> 1631 #> 1632 #> 1633 #> 1634 #> 1635 #> 1636 #> 1637 #> 1638 #> 1639 #> 1640 #> 1641 #> 1642 #> 1643 #> 1644 #> 1645 #> 1646 #> 1647 #> 1648 #> 1649 #> 1650 #> 1651 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1652 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1653 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1654 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1655 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1656 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1657 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1658 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1659 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1660 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1661 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1662 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1663 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1664 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1665 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1666 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1667 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1668 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1669 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1670 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1671 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1672 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1673 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1674 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1675 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1676 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1677 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1678 Raúl de Tomás · 6’ Gaël Kakuta (P) · 47’ #> 1679 #> 1680 #> 1681 #> 1682 #> 1683 #> 1684 #> 1685 #> 1686 #> 1687 #> 1688 #> 1689 #> 1690 #> 1691 #> 1692 #> 1693 #> 1694 #> 1695 #> 1696 #> 1697 #> 1698 #> 1699 #> 1700 #> 1701 #> 1702 #> 1703 #> 1704 #> 1705 #> 1706 #> 1707 Munir El Haddadi · 84’ #> 1708 Munir El Haddadi · 84’ #> 1709 Munir El Haddadi · 84’ #> 1710 Munir El Haddadi · 84’ #> 1711 Munir El Haddadi · 84’ #> 1712 Munir El Haddadi · 84’ #> 1713 Munir El Haddadi · 84’ #> 1714 Munir El Haddadi · 84’ #> 1715 Munir El Haddadi · 84’ #> 1716 Munir El Haddadi · 84’ #> 1717 Munir El Haddadi · 84’ #> 1718 Munir El Haddadi · 84’ #> 1719 Munir El Haddadi · 84’ #> 1720 Munir El Haddadi · 84’ #> 1721 Munir El Haddadi · 84’ #> 1722 Munir El Haddadi · 84’ #> 1723 Munir El Haddadi · 84’ #> 1724 Munir El Haddadi · 84’ #> 1725 Munir El Haddadi · 84’ #> 1726 Munir El Haddadi · 84’ #> 1727 Munir El Haddadi · 84’ #> 1728 Munir El Haddadi · 84’ #> 1729 Munir El Haddadi · 84’ #> 1730 Munir El Haddadi · 84’ #> 1731 Munir El Haddadi · 84’ #> 1732 Munir El Haddadi · 84’ #> 1733 Munir El Haddadi · 84’ #> 1734 Munir El Haddadi · 84’ #> 1735 Joan Jordán · 90+9’ #> 1736 Joan Jordán · 90+9’ #> 1737 Joan Jordán · 90+9’ #> 1738 Joan Jordán · 90+9’ #> 1739 Joan Jordán · 90+9’ #> 1740 Joan Jordán · 90+9’ #> 1741 Joan Jordán · 90+9’ #> 1742 Joan Jordán · 90+9’ #> 1743 Joan Jordán · 90+9’ #> 1744 Joan Jordán · 90+9’ #> 1745 Joan Jordán · 90+9’ #> 1746 Joan Jordán · 90+9’ #> 1747 Joan Jordán · 90+9’ #> 1748 Joan Jordán · 90+9’ #> 1749 Joan Jordán · 90+9’ #> 1750 Joan Jordán · 90+9’ #> 1751 Joan Jordán · 90+9’ #> 1752 Joan Jordán · 90+9’ #> 1753 Joan Jordán · 90+9’ #> 1754 Joan Jordán · 90+9’ #> 1755 Joan Jordán · 90+9’ #> 1756 Joan Jordán · 90+9’ #> 1757 Joan Jordán · 90+9’ #> 1758 Joan Jordán · 90+9’ #> 1759 Joan Jordán · 90+9’ #> 1760 Joan Jordán · 90+9’ #> 1761 Joan Jordán · 90+9’ #> 1762 Joan Jordán · 90+9’ #> 1763 #> 1764 #> 1765 #> 1766 #> 1767 #> 1768 #> 1769 #> 1770 #> 1771 #> 1772 #> 1773 #> 1774 #> 1775 #> 1776 #> 1777 #> 1778 #> 1779 #> 1780 #> 1781 #> 1782 #> 1783 #> 1784 #> 1785 #> 1786 #> 1787 #> 1788 #> 1789 #> 1790 #> 1791 Gonzalo Melero (P) · 72’ #> 1792 Gonzalo Melero (P) · 72’ #> 1793 Gonzalo Melero (P) · 72’ #> 1794 Gonzalo Melero (P) · 72’ #> 1795 Gonzalo Melero (P) · 72’ #> 1796 Gonzalo Melero (P) · 72’ #> 1797 Gonzalo Melero (P) · 72’ #> 1798 Gonzalo Melero (P) · 72’ #> 1799 Gonzalo Melero (P) · 72’ #> 1800 Gonzalo Melero (P) · 72’ #> 1801 Gonzalo Melero (P) · 72’ #> 1802 Gonzalo Melero (P) · 72’ #> 1803 Gonzalo Melero (P) · 72’ #> 1804 Gonzalo Melero (P) · 72’ #> 1805 Gonzalo Melero (P) · 72’ #> 1806 Gonzalo Melero (P) · 72’ #> 1807 Gonzalo Melero (P) · 72’ #> 1808 Gonzalo Melero (P) · 72’ #> 1809 Gonzalo Melero (P) · 72’ #> 1810 Gonzalo Melero (P) · 72’ #> 1811 Gonzalo Melero (P) · 72’ #> 1812 Gonzalo Melero (P) · 72’ #> 1813 Gonzalo Melero (P) · 72’ #> 1814 Gonzalo Melero (P) · 72’ #> 1815 Gonzalo Melero (P) · 72’ #> 1816 Gonzalo Melero (P) · 72’ #> 1817 Gonzalo Melero (P) · 72’ #> 1818 Gonzalo Melero (P) · 72’ #> 1819 #> 1820 #> 1821 #> 1822 #> 1823 #> 1824 #> 1825 #> 1826 #> 1827 #> 1828 #> 1829 #> 1830 #> 1831 #> 1832 #> 1833 #> 1834 #> 1835 #> 1836 #> 1837 #> 1838 #> 1839 #> 1840 #> 1841 #> 1842 #> 1843 #> 1844 #> 1845 #> 1846 #> 1847 Jason · 19’ Toño · 36’ #> 1848 Jason · 19’ Toño · 36’ #> 1849 Jason · 19’ Toño · 36’ #> 1850 Jason · 19’ Toño · 36’ #> 1851 Jason · 19’ Toño · 36’ #> 1852 Jason · 19’ Toño · 36’ #> 1853 Jason · 19’ Toño · 36’ #> 1854 Jason · 19’ Toño · 36’ #> 1855 Jason · 19’ Toño · 36’ #> 1856 Jason · 19’ Toño · 36’ #> 1857 Jason · 19’ Toño · 36’ #> 1858 Jason · 19’ Toño · 36’ #> 1859 Jason · 19’ Toño · 36’ #> 1860 Jason · 19’ Toño · 36’ #> 1861 Jason · 19’ Toño · 36’ #> 1862 Jason · 19’ Toño · 36’ #> 1863 Jason · 19’ Toño · 36’ #> 1864 Jason · 19’ Toño · 36’ #> 1865 Jason · 19’ Toño · 36’ #> 1866 Jason · 19’ Toño · 36’ #> 1867 Jason · 19’ Toño · 36’ #> 1868 Jason · 19’ Toño · 36’ #> 1869 Jason · 19’ Toño · 36’ #> 1870 Jason · 19’ Toño · 36’ #> 1871 Jason · 19’ Toño · 36’ #> 1872 Jason · 19’ Toño · 36’ #> 1873 Jason · 19’ Toño · 36’ #> 1874 Jason · 19’ Toño · 36’ #> 1875 Loren Morón · 89’ #> 1876 Loren Morón · 89’ #> 1877 Loren Morón · 89’ #> 1878 Loren Morón · 89’ #> 1879 Loren Morón · 89’ #> 1880 Loren Morón · 89’ #> 1881 Loren Morón · 89’ #> 1882 Loren Morón · 89’ #> 1883 Loren Morón · 89’ #> 1884 Loren Morón · 89’ #> 1885 Loren Morón · 89’ #> 1886 Loren Morón · 89’ #> 1887 Loren Morón · 89’ #> 1888 Loren Morón · 89’ #> 1889 Loren Morón · 89’ #> 1890 Loren Morón · 89’ #> 1891 Loren Morón · 89’ #> 1892 Loren Morón · 89’ #> 1893 Loren Morón · 89’ #> 1894 Loren Morón · 89’ #> 1895 Loren Morón · 89’ #> 1896 Loren Morón · 89’ #> 1897 Loren Morón · 89’ #> 1898 Loren Morón · 89’ #> 1899 Loren Morón · 89’ #> 1900 Loren Morón · 89’ #> 1901 Loren Morón · 89’ #> 1902 Loren Morón · 89’ #> 1903 Maxi Gómez · 33’ #> 1904 Maxi Gómez · 33’ #> 1905 Maxi Gómez · 33’ #> 1906 Maxi Gómez · 33’ #> 1907 Maxi Gómez · 33’ #> 1908 Maxi Gómez · 33’ #> 1909 Maxi Gómez · 33’ #> 1910 Maxi Gómez · 33’ #> 1911 Maxi Gómez · 33’ #> 1912 Maxi Gómez · 33’ #> 1913 Maxi Gómez · 33’ #> 1914 Maxi Gómez · 33’ #> 1915 Maxi Gómez · 33’ #> 1916 Maxi Gómez · 33’ #> 1917 Maxi Gómez · 33’ #> 1918 Maxi Gómez · 33’ #> 1919 Maxi Gómez · 33’ #> 1920 Maxi Gómez · 33’ #> 1921 Maxi Gómez · 33’ #> 1922 Maxi Gómez · 33’ #> 1923 Maxi Gómez · 33’ #> 1924 Maxi Gómez · 33’ #> 1925 Maxi Gómez · 33’ #> 1926 Maxi Gómez · 33’ #> 1927 Maxi Gómez · 33’ #> 1928 Maxi Gómez · 33’ #> 1929 Maxi Gómez · 33’ #> 1930 Maxi Gómez · 33’ #> 1931 Iker Muniain · 32’ #> 1932 Iker Muniain · 32’ #> 1933 Iker Muniain · 32’ #> 1934 Iker Muniain · 32’ #> 1935 Iker Muniain · 32’ #> 1936 Iker Muniain · 32’ #> 1937 Iker Muniain · 32’ #> 1938 Iker Muniain · 32’ #> 1939 Iker Muniain · 32’ #> 1940 Iker Muniain · 32’ #> 1941 Iker Muniain · 32’ #> 1942 Iker Muniain · 32’ #> 1943 Iker Muniain · 32’ #> 1944 Iker Muniain · 32’ #> 1945 Iker Muniain · 32’ #> 1946 Iker Muniain · 32’ #> 1947 Iker Muniain · 32’ #> 1948 Iker Muniain · 32’ #> 1949 Iker Muniain · 32’ #> 1950 Iker Muniain · 32’ #> 1951 Iker Muniain · 32’ #> 1952 Iker Muniain · 32’ #> 1953 Iker Muniain · 32’ #> 1954 Iker Muniain · 32’ #> 1955 Iker Muniain · 32’ #> 1956 Iker Muniain · 32’ #> 1957 Iker Muniain · 32’ #> 1958 Iker Muniain · 32’ #> 1959 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1960 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1961 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1962 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1963 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1964 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1965 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1966 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1967 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1968 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1969 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1970 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1971 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1972 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1973 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1974 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1975 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1976 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1977 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1978 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1979 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1980 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1981 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1982 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1983 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1984 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1985 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1986 Cristhian Stuani · 40’ Cristhian Stuani · 42’ #> 1987 Francisco Portillo · 90+1’ #> 1988 Francisco Portillo · 90+1’ #> 1989 Francisco Portillo · 90+1’ #> 1990 Francisco Portillo · 90+1’ #> 1991 Francisco Portillo · 90+1’ #> 1992 Francisco Portillo · 90+1’ #> 1993 Francisco Portillo · 90+1’ #> 1994 Francisco Portillo · 90+1’ #> 1995 Francisco Portillo · 90+1’ #> 1996 Francisco Portillo · 90+1’ #> 1997 Francisco Portillo · 90+1’ #> 1998 Francisco Portillo · 90+1’ #> 1999 Francisco Portillo · 90+1’ #> 2000 Francisco Portillo · 90+1’ #> 2001 Francisco Portillo · 90+1’ #> 2002 Francisco Portillo · 90+1’ #> 2003 Francisco Portillo · 90+1’ #> 2004 Francisco Portillo · 90+1’ #> 2005 Francisco Portillo · 90+1’ #> 2006 Francisco Portillo · 90+1’ #> 2007 Francisco Portillo · 90+1’ #> 2008 Francisco Portillo · 90+1’ #> 2009 Francisco Portillo · 90+1’ #> 2010 Francisco Portillo · 90+1’ #> 2011 Francisco Portillo · 90+1’ #> 2012 Francisco Portillo · 90+1’ #> 2013 Francisco Portillo · 90+1’ #> 2014 Francisco Portillo · 90+1’ #> 2015 Manu García · 90+5’ #> 2016 Manu García · 90+5’ #> 2017 Manu García · 90+5’ #> 2018 Manu García · 90+5’ #> 2019 Manu García · 90+5’ #> 2020 Manu García · 90+5’ #> 2021 Manu García · 90+5’ #> 2022 Manu García · 90+5’ #> 2023 Manu García · 90+5’ #> 2024 Manu García · 90+5’ #> 2025 Manu García · 90+5’ #> 2026 Manu García · 90+5’ #> 2027 Manu García · 90+5’ #> 2028 Manu García · 90+5’ #> 2029 Manu García · 90+5’ #> 2030 Manu García · 90+5’ #> 2031 Manu García · 90+5’ #> 2032 Manu García · 90+5’ #> 2033 Manu García · 90+5’ #> 2034 Manu García · 90+5’ #> 2035 Manu García · 90+5’ #> 2036 Manu García · 90+5’ #> 2037 Manu García · 90+5’ #> 2038 Manu García · 90+5’ #> 2039 Manu García · 90+5’ #> 2040 Manu García · 90+5’ #> Home_Yellow_Cards Home_Red_Cards Away_Team Away_Formation Away_Score #> 1 1 0 Valladolid 4-2-3-1 0 #> 2 1 0 Valladolid 4-2-3-1 0 #> 3 1 0 Valladolid 4-2-3-1 0 #> 4 1 0 Valladolid 4-2-3-1 0 #> 5 1 0 Valladolid 4-2-3-1 0 #> 6 1 0 Valladolid 4-2-3-1 0 #> 7 1 0 Valladolid 4-2-3-1 0 #> 8 1 0 Valladolid 4-2-3-1 0 #> 9 1 0 Valladolid 4-2-3-1 0 #> 10 1 0 Valladolid 4-2-3-1 0 #> 11 1 0 Valladolid 4-2-3-1 0 #> 12 1 0 Valladolid 4-2-3-1 0 #> 13 1 0 Valladolid 4-2-3-1 0 #> 14 1 0 Valladolid 4-2-3-1 0 #> 15 1 0 Valladolid 4-2-3-1 0 #> 16 1 0 Valladolid 4-2-3-1 0 #> 17 1 0 Valladolid 4-2-3-1 0 #> 18 1 0 Valladolid 4-2-3-1 0 #> 19 1 0 Valladolid 4-2-3-1 0 #> 20 1 0 Valladolid 4-2-3-1 0 #> 21 1 0 Valladolid 4-2-3-1 0 #> 22 1 0 Valladolid 4-2-3-1 0 #> 23 1 0 Valladolid 4-2-3-1 0 #> 24 1 0 Valladolid 4-2-3-1 0 #> 25 1 0 Valladolid 4-2-3-1 0 #> 26 1 0 Valladolid 4-2-3-1 0 #> 27 1 0 Valladolid 4-2-3-1 0 #> 28 1 0 Valladolid 4-2-3-1 0 #> 29 0 0 Levante 4-4-2 3 #> 30 0 0 Levante 4-4-2 3 #> 31 0 0 Levante 4-4-2 3 #> 32 0 0 Levante 4-4-2 3 #> 33 0 0 Levante 4-4-2 3 #> 34 0 0 Levante 4-4-2 3 #> 35 0 0 Levante 4-4-2 3 #> 36 0 0 Levante 4-4-2 3 #> 37 0 0 Levante 4-4-2 3 #> 38 0 0 Levante 4-4-2 3 #> 39 0 0 Levante 4-4-2 3 #> 40 0 0 Levante 4-4-2 3 #> 41 0 0 Levante 4-4-2 3 #> 42 0 0 Levante 4-4-2 3 #> 43 0 0 Levante 4-4-2 3 #> 44 0 0 Levante 4-4-2 3 #> 45 0 0 Levante 4-4-2 3 #> 46 0 0 Levante 4-4-2 3 #> 47 0 0 Levante 4-4-2 3 #> 48 0 0 Levante 4-4-2 3 #> 49 0 0 Levante 4-4-2 3 #> 50 0 0 Levante 4-4-2 3 #> 51 0 0 Levante 4-4-2 3 #> 52 0 0 Levante 4-4-2 3 #> 53 0 0 Levante 4-4-2 3 #> 54 0 0 Levante 4-4-2 3 #> 55 0 0 Levante 4-4-2 3 #> 56 0 0 Levante 4-4-2 3 #> 57 3 0 Espanyol 4-3-3 1 #> 58 3 0 Espanyol 4-3-3 1 #> 59 3 0 Espanyol 4-3-3 1 #> 60 3 0 Espanyol 4-3-3 1 #> 61 3 0 Espanyol 4-3-3 1 #> 62 3 0 Espanyol 4-3-3 1 #> 63 3 0 Espanyol 4-3-3 1 #> 64 3 0 Espanyol 4-3-3 1 #> 65 3 0 Espanyol 4-3-3 1 #> 66 3 0 Espanyol 4-3-3 1 #> 67 3 0 Espanyol 4-3-3 1 #> 68 3 0 Espanyol 4-3-3 1 #> 69 3 0 Espanyol 4-3-3 1 #> 70 3 0 Espanyol 4-3-3 1 #> 71 3 0 Espanyol 4-3-3 1 #> 72 3 0 Espanyol 4-3-3 1 #> 73 3 0 Espanyol 4-3-3 1 #> 74 3 0 Espanyol 4-3-3 1 #> 75 3 0 Espanyol 4-3-3 1 #> 76 3 0 Espanyol 4-3-3 1 #> 77 3 0 Espanyol 4-3-3 1 #> 78 3 0 Espanyol 4-3-3 1 #> 79 3 0 Espanyol 4-3-3 1 #> 80 3 0 Espanyol 4-3-3 1 #> 81 3 0 Espanyol 4-3-3 1 #> 82 3 0 Espanyol 4-3-3 1 #> 83 3 0 Espanyol 4-3-3 1 #> 84 3 0 Espanyol 4-3-3 1 #> 85 2 0 Real Sociedad 4-4-1-1 2 #> 86 2 0 Real Sociedad 4-4-1-1 2 #> 87 2 0 Real Sociedad 4-4-1-1 2 #> 88 2 0 Real Sociedad 4-4-1-1 2 #> 89 2 0 Real Sociedad 4-4-1-1 2 #> 90 2 0 Real Sociedad 4-4-1-1 2 #> 91 2 0 Real Sociedad 4-4-1-1 2 #> 92 2 0 Real Sociedad 4-4-1-1 2 #> 93 2 0 Real Sociedad 4-4-1-1 2 #> 94 2 0 Real Sociedad 4-4-1-1 2 #> 95 2 0 Real Sociedad 4-4-1-1 2 #> 96 2 0 Real Sociedad 4-4-1-1 2 #> 97 2 0 Real Sociedad 4-4-1-1 2 #> 98 2 0 Real Sociedad 4-4-1-1 2 #> 99 2 0 Real Sociedad 4-4-1-1 2 #> 100 2 0 Real Sociedad 4-4-1-1 2 #> 101 2 0 Real Sociedad 4-4-1-1 2 #> 102 2 0 Real Sociedad 4-4-1-1 2 #> 103 2 0 Real Sociedad 4-4-1-1 2 #> 104 2 0 Real Sociedad 4-4-1-1 2 #> 105 2 0 Real Sociedad 4-4-1-1 2 #> 106 2 0 Real Sociedad 4-4-1-1 2 #> 107 2 0 Real Sociedad 4-4-1-1 2 #> 108 2 0 Real Sociedad 4-4-1-1 2 #> 109 2 0 Real Sociedad 4-4-1-1 2 #> 110 2 0 Real Sociedad 4-4-1-1 2 #> 111 2 0 Real Sociedad 4-4-1-1 2 #> 112 2 0 Real Sociedad 4-4-1-1 2 #> 113 0 0 Alavés 4-5-1 0 #> 114 0 0 Alavés 4-5-1 0 #> 115 0 0 Alavés 4-5-1 0 #> 116 0 0 Alavés 4-5-1 0 #> 117 0 0 Alavés 4-5-1 0 #> 118 0 0 Alavés 4-5-1 0 #> 119 0 0 Alavés 4-5-1 0 #> 120 0 0 Alavés 4-5-1 0 #> 121 0 0 Alavés 4-5-1 0 #> 122 0 0 Alavés 4-5-1 0 #> 123 0 0 Alavés 4-5-1 0 #> 124 0 0 Alavés 4-5-1 0 #> 125 0 0 Alavés 4-5-1 0 #> 126 0 0 Alavés 4-5-1 0 #> 127 0 0 Alavés 4-5-1 0 #> 128 0 0 Alavés 4-5-1 0 #> 129 0 0 Alavés 4-5-1 0 #> 130 0 0 Alavés 4-5-1 0 #> 131 0 0 Alavés 4-5-1 0 #> 132 0 0 Alavés 4-5-1 0 #> 133 0 0 Alavés 4-5-1 0 #> 134 0 0 Alavés 4-5-1 0 #> 135 0 0 Alavés 4-5-1 0 #> 136 0 0 Alavés 4-5-1 0 #> 137 0 0 Alavés 4-5-1 0 #> 138 0 0 Alavés 4-5-1 0 #> 139 0 0 Alavés 4-5-1 0 #> 140 0 0 Alavés 4-5-1 0 #> 141 1 0 Huesca 4-4-2 2 #> 142 1 0 Huesca 4-4-2 2 #> 143 1 0 Huesca 4-4-2 2 #> 144 1 0 Huesca 4-4-2 2 #> 145 1 0 Huesca 4-4-2 2 #> 146 1 0 Huesca 4-4-2 2 #> 147 1 0 Huesca 4-4-2 2 #> 148 1 0 Huesca 4-4-2 2 #> 149 1 0 Huesca 4-4-2 2 #> 150 1 0 Huesca 4-4-2 2 #> 151 1 0 Huesca 4-4-2 2 #> 152 1 0 Huesca 4-4-2 2 #> 153 1 0 Huesca 4-4-2 2 #> 154 1 0 Huesca 4-4-2 2 #> 155 1 0 Huesca 4-4-2 2 #> 156 1 0 Huesca 4-4-2 2 #> 157 1 0 Huesca 4-4-2 2 #> 158 1 0 Huesca 4-4-2 2 #> 159 1 0 Huesca 4-4-2 2 #> 160 1 0 Huesca 4-4-2 2 #> 161 1 0 Huesca 4-4-2 2 #> 162 1 0 Huesca 4-4-2 2 #> 163 1 0 Huesca 4-4-2 2 #> 164 1 0 Huesca 4-4-2 2 #> 165 1 0 Huesca 4-4-2 2 #> 166 1 0 Huesca 4-4-2 2 #> 167 1 0 Huesca 4-4-2 2 #> 168 1 0 Huesca 4-4-2 2 #> 169 1 0 Sevilla 3-4-3 4 #> 170 1 0 Sevilla 3-4-3 4 #> 171 1 0 Sevilla 3-4-3 4 #> 172 1 0 Sevilla 3-4-3 4 #> 173 1 0 Sevilla 3-4-3 4 #> 174 1 0 Sevilla 3-4-3 4 #> 175 1 0 Sevilla 3-4-3 4 #> 176 1 0 Sevilla 3-4-3 4 #> 177 1 0 Sevilla 3-4-3 4 #> 178 1 0 Sevilla 3-4-3 4 #> 179 1 0 Sevilla 3-4-3 4 #> 180 1 0 Sevilla 3-4-3 4 #> 181 1 0 Sevilla 3-4-3 4 #> 182 1 0 Sevilla 3-4-3 4 #> 183 1 0 Sevilla 3-4-3 4 #> 184 1 0 Sevilla 3-4-3 4 #> 185 1 0 Sevilla 3-4-3 4 #> 186 1 0 Sevilla 3-4-3 4 #> 187 1 0 Sevilla 3-4-3 4 #> 188 1 0 Sevilla 3-4-3 4 #> 189 1 0 Sevilla 3-4-3 4 #> 190 1 0 Sevilla 3-4-3 4 #> 191 1 0 Sevilla 3-4-3 4 #> 192 1 0 Sevilla 3-4-3 4 #> 193 1 0 Sevilla 3-4-3 4 #> 194 1 0 Sevilla 3-4-3 4 #> 195 1 0 Sevilla 3-4-3 4 #> 196 1 0 Getafe 4-1-4-1 0 #> 197 1 0 Getafe 4-1-4-1 0 #> 198 1 0 Getafe 4-1-4-1 0 #> 199 1 0 Getafe 4-1-4-1 0 #> 200 1 0 Getafe 4-1-4-1 0 #> 201 1 0 Getafe 4-1-4-1 0 #> 202 1 0 Getafe 4-1-4-1 0 #> 203 1 0 Getafe 4-1-4-1 0 #> 204 1 0 Getafe 4-1-4-1 0 #> 205 1 0 Getafe 4-1-4-1 0 #> 206 1 0 Getafe 4-1-4-1 0 #> 207 1 0 Getafe 4-1-4-1 0 #> 208 1 0 Getafe 4-1-4-1 0 #> 209 1 0 Getafe 4-1-4-1 0 #> 210 1 0 Getafe 4-1-4-1 0 #> 211 1 0 Getafe 4-1-4-1 0 #> 212 1 0 Getafe 4-1-4-1 0 #> 213 1 0 Getafe 4-1-4-1 0 #> 214 1 0 Getafe 4-1-4-1 0 #> 215 1 0 Getafe 4-1-4-1 0 #> 216 1 0 Getafe 4-1-4-1 0 #> 217 1 0 Getafe 4-1-4-1 0 #> 218 1 0 Getafe 4-1-4-1 0 #> 219 1 0 Getafe 4-1-4-1 0 #> 220 1 0 Getafe 4-1-4-1 0 #> 221 1 0 Getafe 4-1-4-1 0 #> 222 1 0 Getafe 4-1-4-1 0 #> 223 1 0 Getafe 4-1-4-1 0 #> 224 2 0 Atlético Madrid 4-4-2 1 #> 225 2 0 Atlético Madrid 4-4-2 1 #> 226 2 0 Atlético Madrid 4-4-2 1 #> 227 2 0 Atlético Madrid 4-4-2 1 #> 228 2 0 Atlético Madrid 4-4-2 1 #> 229 2 0 Atlético Madrid 4-4-2 1 #> 230 2 0 Atlético Madrid 4-4-2 1 #> 231 2 0 Atlético Madrid 4-4-2 1 #> 232 2 0 Atlético Madrid 4-4-2 1 #> 233 2 0 Atlético Madrid 4-4-2 1 #> 234 2 0 Atlético Madrid 4-4-2 1 #> 235 2 0 Atlético Madrid 4-4-2 1 #> 236 2 0 Atlético Madrid 4-4-2 1 #> 237 2 0 Atlético Madrid 4-4-2 1 #> 238 2 0 Atlético Madrid 4-4-2 1 #> 239 2 0 Atlético Madrid 4-4-2 1 #> 240 2 0 Atlético Madrid 4-4-2 1 #> 241 2 0 Atlético Madrid 4-4-2 1 #> 242 2 0 Atlético Madrid 4-4-2 1 #> 243 2 0 Atlético Madrid 4-4-2 1 #> 244 2 0 Atlético Madrid 4-4-2 1 #> 245 2 0 Atlético Madrid 4-4-2 1 #> 246 2 0 Atlético Madrid 4-4-2 1 #> 247 2 0 Atlético Madrid 4-4-2 1 #> 248 2 0 Atlético Madrid 4-4-2 1 #> 249 2 0 Atlético Madrid 4-4-2 1 #> 250 2 0 Atlético Madrid 4-4-2 1 #> 251 2 0 Atlético Madrid 4-4-2 1 #> 252 4 0 Leganés 4-4-1-1 1 #> 253 4 0 Leganés 4-4-1-1 1 #> 254 4 0 Leganés 4-4-1-1 1 #> 255 4 0 Leganés 4-4-1-1 1 #> 256 4 0 Leganés 4-4-1-1 1 #> 257 4 0 Leganés 4-4-1-1 1 #> 258 4 0 Leganés 4-4-1-1 1 #> 259 4 0 Leganés 4-4-1-1 1 #> 260 4 0 Leganés 4-4-1-1 1 #> 261 4 0 Leganés 4-4-1-1 1 #> 262 4 0 Leganés 4-4-1-1 1 #> 263 4 0 Leganés 4-4-1-1 1 #> 264 4 0 Leganés 4-4-1-1 1 #> 265 4 0 Leganés 4-4-1-1 1 #> 266 4 0 Leganés 4-4-1-1 1 #> 267 4 0 Leganés 4-4-1-1 1 #> 268 4 0 Leganés 4-4-1-1 1 #> 269 4 0 Leganés 4-4-1-1 1 #> 270 4 0 Leganés 4-4-1-1 1 #> 271 4 0 Leganés 4-4-1-1 1 #> 272 4 0 Leganés 4-4-1-1 1 #> 273 4 0 Leganés 4-4-1-1 1 #> 274 4 0 Leganés 4-4-1-1 1 #> 275 4 0 Leganés 4-4-1-1 1 #> 276 4 0 Leganés 4-4-1-1 1 #> 277 4 0 Leganés 4-4-1-1 1 #> 278 4 0 Leganés 4-4-1-1 1 #> 279 4 0 Leganés 4-4-1-1 1 #> 280 2 0 Eibar 4-4-2 0 #> 281 2 0 Eibar 4-4-2 0 #> 282 2 0 Eibar 4-4-2 0 #> 283 2 0 Eibar 4-4-2 0 #> 284 2 0 Eibar 4-4-2 0 #> 285 2 0 Eibar 4-4-2 0 #> 286 2 0 Eibar 4-4-2 0 #> 287 2 0 Eibar 4-4-2 0 #> 288 2 0 Eibar 4-4-2 0 #> 289 2 0 Eibar 4-4-2 0 #> 290 2 0 Eibar 4-4-2 0 #> 291 2 0 Eibar 4-4-2 0 #> 292 2 0 Eibar 4-4-2 0 #> 293 2 0 Eibar 4-4-2 0 #> 294 2 0 Eibar 4-4-2 0 #> 295 2 0 Eibar 4-4-2 0 #> 296 2 0 Eibar 4-4-2 0 #> 297 2 0 Eibar 4-4-2 0 #> 298 2 0 Eibar 4-4-2 0 #> 299 2 0 Eibar 4-4-2 0 #> 300 2 0 Eibar 4-4-2 0 #> 301 2 0 Eibar 4-4-2 0 #> 302 2 0 Eibar 4-4-2 0 #> 303 2 0 Eibar 4-4-2 0 #> 304 2 0 Eibar 4-4-2 0 #> 305 2 0 Eibar 4-4-2 0 #> 306 2 0 Eibar 4-4-2 0 #> 307 2 0 Eibar 4-4-2 0 #> 308 1 0 Real Sociedad 4-4-2 2 #> 309 1 0 Real Sociedad 4-4-2 2 #> 310 1 0 Real Sociedad 4-4-2 2 #> 311 1 0 Real Sociedad 4-4-2 2 #> 312 1 0 Real Sociedad 4-4-2 2 #> 313 1 0 Real Sociedad 4-4-2 2 #> 314 1 0 Real Sociedad 4-4-2 2 #> 315 1 0 Real Sociedad 4-4-2 2 #> 316 1 0 Real Sociedad 4-4-2 2 #> 317 1 0 Real Sociedad 4-4-2 2 #> 318 1 0 Real Sociedad 4-4-2 2 #> 319 1 0 Real Sociedad 4-4-2 2 #> 320 1 0 Real Sociedad 4-4-2 2 #> 321 1 0 Real Sociedad 4-4-2 2 #> 322 1 0 Real Sociedad 4-4-2 2 #> 323 1 0 Real Sociedad 4-4-2 2 #> 324 1 0 Real Sociedad 4-4-2 2 #> 325 1 0 Real Sociedad 4-4-2 2 #> 326 1 0 Real Sociedad 4-4-2 2 #> 327 1 0 Real Sociedad 4-4-2 2 #> 328 1 0 Real Sociedad 4-4-2 2 #> 329 1 0 Real Sociedad 4-4-2 2 #> 330 1 0 Real Sociedad 4-4-2 2 #> 331 1 0 Real Sociedad 4-4-2 2 #> 332 1 0 Real Sociedad 4-4-2 2 #> 333 1 0 Real Sociedad 4-4-2 2 #> 334 1 0 Real Sociedad 4-4-2 2 #> 335 1 0 Real Sociedad 4-4-2 2 #> 336 3 0 Real Betis 3-4-3 0 #> 337 3 0 Real Betis 3-4-3 0 #> 338 3 0 Real Betis 3-4-3 0 #> 339 3 0 Real Betis 3-4-3 0 #> 340 3 0 Real Betis 3-4-3 0 #> 341 3 0 Real Betis 3-4-3 0 #> 342 3 0 Real Betis 3-4-3 0 #> 343 3 0 Real Betis 3-4-3 0 #> 344 3 0 Real Betis 3-4-3 0 #> 345 3 0 Real Betis 3-4-3 0 #> 346 3 0 Real Betis 3-4-3 0 #> 347 3 0 Real Betis 3-4-3 0 #> 348 3 0 Real Betis 3-4-3 0 #> 349 3 0 Real Betis 3-4-3 0 #> 350 3 0 Real Betis 3-4-3 0 #> 351 3 0 Real Betis 3-4-3 0 #> 352 3 0 Real Betis 3-4-3 0 #> 353 3 0 Real Betis 3-4-3 0 #> 354 3 0 Real Betis 3-4-3 0 #> 355 3 0 Real Betis 3-4-3 0 #> 356 3 0 Real Betis 3-4-3 0 #> 357 3 0 Real Betis 3-4-3 0 #> 358 3 0 Real Betis 3-4-3 0 #> 359 3 0 Real Betis 3-4-3 0 #> 360 3 0 Real Betis 3-4-3 0 #> 361 3 0 Real Betis 3-4-3 0 #> 362 3 0 Real Betis 3-4-3 0 #> 363 3 0 Real Betis 3-4-3 0 #> 364 1 0 Rayo Vallecano 4-1-4-1 0 #> 365 1 0 Rayo Vallecano 4-1-4-1 0 #> 366 1 0 Rayo Vallecano 4-1-4-1 0 #> 367 1 0 Rayo Vallecano 4-1-4-1 0 #> 368 1 0 Rayo Vallecano 4-1-4-1 0 #> 369 1 0 Rayo Vallecano 4-1-4-1 0 #> 370 1 0 Rayo Vallecano 4-1-4-1 0 #> 371 1 0 Rayo Vallecano 4-1-4-1 0 #> 372 1 0 Rayo Vallecano 4-1-4-1 0 #> 373 1 0 Rayo Vallecano 4-1-4-1 0 #> 374 1 0 Rayo Vallecano 4-1-4-1 0 #> 375 1 0 Rayo Vallecano 4-1-4-1 0 #> 376 1 0 Rayo Vallecano 4-1-4-1 0 #> 377 1 0 Rayo Vallecano 4-1-4-1 0 #> 378 1 0 Rayo Vallecano 4-1-4-1 0 #> 379 1 0 Rayo Vallecano 4-1-4-1 0 #> 380 1 0 Rayo Vallecano 4-1-4-1 0 #> 381 1 0 Rayo Vallecano 4-1-4-1 0 #> 382 1 0 Rayo Vallecano 4-1-4-1 0 #> 383 1 0 Rayo Vallecano 4-1-4-1 0 #> 384 1 0 Rayo Vallecano 4-1-4-1 0 #> 385 1 0 Rayo Vallecano 4-1-4-1 0 #> 386 1 0 Rayo Vallecano 4-1-4-1 0 #> 387 1 0 Rayo Vallecano 4-1-4-1 0 #> 388 1 0 Rayo Vallecano 4-1-4-1 0 #> 389 1 0 Rayo Vallecano 4-1-4-1 0 #> 390 1 0 Rayo Vallecano 4-1-4-1 0 #> 391 1 0 Rayo Vallecano 4-1-4-1 0 #> 392 1 0 Barcelona 4-3-3 1 #> 393 1 0 Barcelona 4-3-3 1 #> 394 1 0 Barcelona 4-3-3 1 #> 395 1 0 Barcelona 4-3-3 1 #> 396 1 0 Barcelona 4-3-3 1 #> 397 1 0 Barcelona 4-3-3 1 #> 398 1 0 Barcelona 4-3-3 1 #> 399 1 0 Barcelona 4-3-3 1 #> 400 1 0 Barcelona 4-3-3 1 #> 401 1 0 Barcelona 4-3-3 1 #> 402 1 0 Barcelona 4-3-3 1 #> 403 1 0 Barcelona 4-3-3 1 #> 404 1 0 Barcelona 4-3-3 1 #> 405 1 0 Barcelona 4-3-3 1 #> 406 1 0 Barcelona 4-3-3 1 #> 407 1 0 Barcelona 4-3-3 1 #> 408 1 0 Barcelona 4-3-3 1 #> 409 1 0 Barcelona 4-3-3 1 #> 410 1 0 Barcelona 4-3-3 1 #> 411 1 0 Barcelona 4-3-3 1 #> 412 1 0 Barcelona 4-3-3 1 #> 413 1 0 Barcelona 4-3-3 1 #> 414 1 0 Barcelona 4-3-3 1 #> 415 1 0 Barcelona 4-3-3 1 #> 416 1 0 Barcelona 4-3-3 1 #> 417 1 0 Barcelona 4-3-3 1 #> 418 1 0 Barcelona 4-3-3 1 #> 419 1 0 Barcelona 4-3-3 1 #> 420 1 0 Valencia 4-4-2 0 #> 421 1 0 Valencia 4-4-2 0 #> 422 1 0 Valencia 4-4-2 0 #> 423 1 0 Valencia 4-4-2 0 #> 424 1 0 Valencia 4-4-2 0 #> 425 1 0 Valencia 4-4-2 0 #> 426 1 0 Valencia 4-4-2 0 #> 427 1 0 Valencia 4-4-2 0 #> 428 1 0 Valencia 4-4-2 0 #> 429 1 0 Valencia 4-4-2 0 #> 430 1 0 Valencia 4-4-2 0 #> 431 1 0 Valencia 4-4-2 0 #> 432 1 0 Valencia 4-4-2 0 #> 433 1 0 Valencia 4-4-2 0 #> 434 1 0 Valencia 4-4-2 0 #> 435 1 0 Valencia 4-4-2 0 #> 436 1 0 Valencia 4-4-2 0 #> 437 1 0 Valencia 4-4-2 0 #> 438 1 0 Valencia 4-4-2 0 #> 439 1 0 Valencia 4-4-2 0 #> 440 1 0 Valencia 4-4-2 0 #> 441 1 0 Valencia 4-4-2 0 #> 442 1 0 Valencia 4-4-2 0 #> 443 1 0 Valencia 4-4-2 0 #> 444 1 0 Valencia 4-4-2 0 #> 445 1 0 Valencia 4-4-2 0 #> 446 1 0 Valencia 4-4-2 0 #> 447 1 0 Valencia 4-4-2 0 #> 448 2 0 Real Madrid 4-2-3-1 4 #> 449 2 0 Real Madrid 4-2-3-1 4 #> 450 2 0 Real Madrid 4-2-3-1 4 #> 451 2 0 Real Madrid 4-2-3-1 4 #> 452 2 0 Real Madrid 4-2-3-1 4 #> 453 2 0 Real Madrid 4-2-3-1 4 #> 454 2 0 Real Madrid 4-2-3-1 4 #> 455 2 0 Real Madrid 4-2-3-1 4 #> 456 2 0 Real Madrid 4-2-3-1 4 #> 457 2 0 Real Madrid 4-2-3-1 4 #> 458 2 0 Real Madrid 4-2-3-1 4 #> 459 2 0 Real Madrid 4-2-3-1 4 #> 460 2 0 Real Madrid 4-2-3-1 4 #> 461 2 0 Real Madrid 4-2-3-1 4 #> 462 2 0 Real Madrid 4-2-3-1 4 #> 463 2 0 Real Madrid 4-2-3-1 4 #> 464 2 0 Real Madrid 4-2-3-1 4 #> 465 2 0 Real Madrid 4-2-3-1 4 #> 466 2 0 Real Madrid 4-2-3-1 4 #> 467 2 0 Real Madrid 4-2-3-1 4 #> 468 2 0 Real Madrid 4-2-3-1 4 #> 469 2 0 Real Madrid 4-2-3-1 4 #> 470 2 0 Real Madrid 4-2-3-1 4 #> 471 2 0 Real Madrid 4-2-3-1 4 #> 472 2 0 Real Madrid 4-2-3-1 4 #> 473 2 0 Real Madrid 4-2-3-1 4 #> 474 2 0 Real Madrid 4-2-3-1 4 #> 475 2 0 Real Madrid 4-2-3-1 4 #> 476 3 0 Villarreal 4-1-2-1-2 0 #> 477 3 0 Villarreal 4-1-2-1-2 0 #> 478 3 0 Villarreal 4-1-2-1-2 0 #> 479 3 0 Villarreal 4-1-2-1-2 0 #> 480 3 0 Villarreal 4-1-2-1-2 0 #> 481 3 0 Villarreal 4-1-2-1-2 0 #> 482 3 0 Villarreal 4-1-2-1-2 0 #> 483 3 0 Villarreal 4-1-2-1-2 0 #> 484 3 0 Villarreal 4-1-2-1-2 0 #> 485 3 0 Villarreal 4-1-2-1-2 0 #> 486 3 0 Villarreal 4-1-2-1-2 0 #> 487 3 0 Villarreal 4-1-2-1-2 0 #> 488 3 0 Villarreal 4-1-2-1-2 0 #> 489 3 0 Villarreal 4-1-2-1-2 0 #> 490 3 0 Villarreal 4-1-2-1-2 0 #> 491 3 0 Villarreal 4-1-2-1-2 0 #> 492 3 0 Villarreal 4-1-2-1-2 0 #> 493 3 0 Villarreal 4-1-2-1-2 0 #> 494 3 0 Villarreal 4-1-2-1-2 0 #> 495 3 0 Villarreal 4-1-2-1-2 0 #> 496 3 0 Villarreal 4-1-2-1-2 0 #> 497 3 0 Villarreal 4-1-2-1-2 0 #> 498 3 0 Villarreal 4-1-2-1-2 0 #> 499 3 0 Villarreal 4-1-2-1-2 0 #> 500 3 0 Villarreal 4-1-2-1-2 0 #> 501 3 0 Villarreal 4-1-2-1-2 0 #> 502 3 0 Villarreal 4-1-2-1-2 0 #> 503 3 0 Villarreal 4-1-2-1-2 0 #> 504 2 0 Celta Vigo 3-4-3 2 #> 505 2 0 Celta Vigo 3-4-3 2 #> 506 2 0 Celta Vigo 3-4-3 2 #> 507 2 0 Celta Vigo 3-4-3 2 #> 508 2 0 Celta Vigo 3-4-3 2 #> 509 2 0 Celta Vigo 3-4-3 2 #> 510 2 0 Celta Vigo 3-4-3 2 #> 511 2 0 Celta Vigo 3-4-3 2 #> 512 2 0 Celta Vigo 3-4-3 2 #> 513 2 0 Celta Vigo 3-4-3 2 #> 514 2 0 Celta Vigo 3-4-3 2 #> 515 2 0 Celta Vigo 3-4-3 2 #> 516 2 0 Celta Vigo 3-4-3 2 #> 517 2 0 Celta Vigo 3-4-3 2 #> 518 2 0 Celta Vigo 3-4-3 2 #> 519 2 0 Celta Vigo 3-4-3 2 #> 520 2 0 Celta Vigo 3-4-3 2 #> 521 2 0 Celta Vigo 3-4-3 2 #> 522 2 0 Celta Vigo 3-4-3 2 #> 523 2 0 Celta Vigo 3-4-3 2 #> 524 2 0 Celta Vigo 3-4-3 2 #> 525 2 0 Celta Vigo 3-4-3 2 #> 526 2 0 Celta Vigo 3-4-3 2 #> 527 2 0 Celta Vigo 3-4-3 2 #> 528 2 0 Celta Vigo 3-4-3 2 #> 529 2 0 Celta Vigo 3-4-3 2 #> 530 2 0 Celta Vigo 3-4-3 2 #> 531 2 0 Celta Vigo 3-4-3 2 #> 532 2 0 Huesca 4-4-2 2 #> 533 2 0 Huesca 4-4-2 2 #> 534 2 0 Huesca 4-4-2 2 #> 535 2 0 Huesca 4-4-2 2 #> 536 2 0 Huesca 4-4-2 2 #> 537 2 0 Huesca 4-4-2 2 #> 538 2 0 Huesca 4-4-2 2 #> 539 2 0 Huesca 4-4-2 2 #> 540 2 0 Huesca 4-4-2 2 #> 541 2 0 Huesca 4-4-2 2 #> 542 2 0 Huesca 4-4-2 2 #> 543 2 0 Huesca 4-4-2 2 #> 544 2 0 Huesca 4-4-2 2 #> 545 2 0 Huesca 4-4-2 2 #> 546 2 0 Huesca 4-4-2 2 #> 547 2 0 Huesca 4-4-2 2 #> 548 2 0 Huesca 4-4-2 2 #> 549 2 0 Huesca 4-4-2 2 #> 550 2 0 Huesca 4-4-2 2 #> 551 2 0 Huesca 4-4-2 2 #> 552 2 0 Huesca 4-4-2 2 #> 553 2 0 Huesca 4-4-2 2 #> 554 2 0 Huesca 4-4-2 2 #> 555 2 0 Huesca 4-4-2 2 #> 556 2 0 Huesca 4-4-2 2 #> 557 2 0 Huesca 4-4-2 2 #> 558 2 0 Huesca 4-4-2 2 #> 559 2 0 Huesca 4-4-2 2 #> 560 3 0 Valladolid 4-2-3-1 0 #> 561 3 0 Valladolid 4-2-3-1 0 #> 562 3 0 Valladolid 4-2-3-1 0 #> 563 3 0 Valladolid 4-2-3-1 0 #> 564 3 0 Valladolid 4-2-3-1 0 #> 565 3 0 Valladolid 4-2-3-1 0 #> 566 3 0 Valladolid 4-2-3-1 0 #> 567 3 0 Valladolid 4-2-3-1 0 #> 568 3 0 Valladolid 4-2-3-1 0 #> 569 3 0 Valladolid 4-2-3-1 0 #> 570 3 0 Valladolid 4-2-3-1 0 #> 571 3 0 Valladolid 4-2-3-1 0 #> 572 3 0 Valladolid 4-2-3-1 0 #> 573 3 0 Valladolid 4-2-3-1 0 #> 574 3 0 Valladolid 4-2-3-1 0 #> 575 3 0 Valladolid 4-2-3-1 0 #> 576 3 0 Valladolid 4-2-3-1 0 #> 577 3 0 Valladolid 4-2-3-1 0 #> 578 3 0 Valladolid 4-2-3-1 0 #> 579 3 0 Valladolid 4-2-3-1 0 #> 580 3 0 Valladolid 4-2-3-1 0 #> 581 3 0 Valladolid 4-2-3-1 0 #> 582 3 0 Valladolid 4-2-3-1 0 #> 583 3 0 Valladolid 4-2-3-1 0 #> 584 3 0 Valladolid 4-2-3-1 0 #> 585 3 0 Valladolid 4-2-3-1 0 #> 586 3 0 Valladolid 4-2-3-1 0 #> 587 3 0 Valladolid 4-2-3-1 0 #> 588 3 0 Girona 3-4-3 1 #> 589 3 0 Girona 3-4-3 1 #> 590 3 0 Girona 3-4-3 1 #> 591 3 0 Girona 3-4-3 1 #> 592 3 0 Girona 3-4-3 1 #> 593 3 0 Girona 3-4-3 1 #> 594 3 0 Girona 3-4-3 1 #> 595 3 0 Girona 3-4-3 1 #> 596 3 0 Girona 3-4-3 1 #> 597 3 0 Girona 3-4-3 1 #> 598 3 0 Girona 3-4-3 1 #> 599 3 0 Girona 3-4-3 1 #> 600 3 0 Girona 3-4-3 1 #> 601 3 0 Girona 3-4-3 1 #> 602 3 0 Girona 3-4-3 1 #> 603 3 0 Girona 3-4-3 1 #> 604 3 0 Girona 3-4-3 1 #> 605 3 0 Girona 3-4-3 1 #> 606 3 0 Girona 3-4-3 1 #> 607 3 0 Girona 3-4-3 1 #> 608 3 0 Girona 3-4-3 1 #> 609 3 0 Girona 3-4-3 1 #> 610 3 0 Girona 3-4-3 1 #> 611 3 0 Girona 3-4-3 1 #> 612 3 0 Girona 3-4-3 1 #> 613 3 0 Girona 3-4-3 1 #> 614 3 0 Girona 3-4-3 1 #> 615 3 0 Girona 3-4-3 1 #> 616 3 0 Real Sociedad 4-4-2 1 #> 617 3 0 Real Sociedad 4-4-2 1 #> 618 3 0 Real Sociedad 4-4-2 1 #> 619 3 0 Real Sociedad 4-4-2 1 #> 620 3 0 Real Sociedad 4-4-2 1 #> 621 3 0 Real Sociedad 4-4-2 1 #> 622 3 0 Real Sociedad 4-4-2 1 #> 623 3 0 Real Sociedad 4-4-2 1 #> 624 3 0 Real Sociedad 4-4-2 1 #> 625 3 0 Real Sociedad 4-4-2 1 #> 626 3 0 Real Sociedad 4-4-2 1 #> 627 3 0 Real Sociedad 4-4-2 1 #> 628 3 0 Real Sociedad 4-4-2 1 #> 629 3 0 Real Sociedad 4-4-2 1 #> 630 3 0 Real Sociedad 4-4-2 1 #> 631 3 0 Real Sociedad 4-4-2 1 #> 632 3 0 Real Sociedad 4-4-2 1 #> 633 3 0 Real Sociedad 4-4-2 1 #> 634 3 0 Real Sociedad 4-4-2 1 #> 635 3 0 Real Sociedad 4-4-2 1 #> 636 3 0 Real Sociedad 4-4-2 1 #> 637 3 0 Real Sociedad 4-4-2 1 #> 638 3 0 Real Sociedad 4-4-2 1 #> 639 3 0 Real Sociedad 4-4-2 1 #> 640 3 0 Real Sociedad 4-4-2 1 #> 641 3 0 Real Sociedad 4-4-2 1 #> 642 3 0 Real Sociedad 4-4-2 1 #> 643 3 0 Real Sociedad 4-4-2 1 #> 644 4 0 Atlético Madrid 4-4-2 0 #> 645 4 0 Atlético Madrid 4-4-2 0 #> 646 4 0 Atlético Madrid 4-4-2 0 #> 647 4 0 Atlético Madrid 4-4-2 0 #> 648 4 0 Atlético Madrid 4-4-2 0 #> 649 4 0 Atlético Madrid 4-4-2 0 #> 650 4 0 Atlético Madrid 4-4-2 0 #> 651 4 0 Atlético Madrid 4-4-2 0 #> 652 4 0 Atlético Madrid 4-4-2 0 #> 653 4 0 Atlético Madrid 4-4-2 0 #> 654 4 0 Atlético Madrid 4-4-2 0 #> 655 4 0 Atlético Madrid 4-4-2 0 #> 656 4 0 Atlético Madrid 4-4-2 0 #> 657 4 0 Atlético Madrid 4-4-2 0 #> 658 4 0 Atlético Madrid 4-4-2 0 #> 659 4 0 Atlético Madrid 4-4-2 0 #> 660 4 0 Atlético Madrid 4-4-2 0 #> 661 4 0 Atlético Madrid 4-4-2 0 #> 662 4 0 Atlético Madrid 4-4-2 0 #> 663 4 0 Atlético Madrid 4-4-2 0 #> 664 4 0 Atlético Madrid 4-4-2 0 #> 665 4 0 Atlético Madrid 4-4-2 0 #> 666 4 0 Atlético Madrid 4-4-2 0 #> 667 4 0 Atlético Madrid 4-4-2 0 #> 668 4 0 Atlético Madrid 4-4-2 0 #> 669 4 0 Atlético Madrid 4-4-2 0 #> 670 4 0 Atlético Madrid 4-4-2 0 #> 671 4 0 Atlético Madrid 4-4-2 0 #> 672 1 0 Leganés 4-4-2 1 #> 673 1 0 Leganés 4-4-2 1 #> 674 1 0 Leganés 4-4-2 1 #> 675 1 0 Leganés 4-4-2 1 #> 676 1 0 Leganés 4-4-2 1 #> 677 1 0 Leganés 4-4-2 1 #> 678 1 0 Leganés 4-4-2 1 #> 679 1 0 Leganés 4-4-2 1 #> 680 1 0 Leganés 4-4-2 1 #> 681 1 0 Leganés 4-4-2 1 #> 682 1 0 Leganés 4-4-2 1 #> 683 1 0 Leganés 4-4-2 1 #> 684 1 0 Leganés 4-4-2 1 #> 685 1 0 Leganés 4-4-2 1 #> 686 1 0 Leganés 4-4-2 1 #> 687 1 0 Leganés 4-4-2 1 #> 688 1 0 Leganés 4-4-2 1 #> 689 1 0 Leganés 4-4-2 1 #> 690 1 0 Leganés 4-4-2 1 #> 691 1 0 Leganés 4-4-2 1 #> 692 1 0 Leganés 4-4-2 1 #> 693 1 0 Leganés 4-4-2 1 #> 694 1 0 Leganés 4-4-2 1 #> 695 1 0 Leganés 4-4-2 1 #> 696 1 0 Leganés 4-4-2 1 #> 697 1 0 Leganés 4-4-2 1 #> 698 1 0 Leganés 4-4-2 1 #> 699 1 0 Leganés 4-4-2 1 #> 700 5 1 Valencia 4-4-2 2 #> 701 5 1 Valencia 4-4-2 2 #> 702 5 1 Valencia 4-4-2 2 #> 703 5 1 Valencia 4-4-2 2 #> 704 5 1 Valencia 4-4-2 2 #> 705 5 1 Valencia 4-4-2 2 #> 706 5 1 Valencia 4-4-2 2 #> 707 5 1 Valencia 4-4-2 2 #> 708 5 1 Valencia 4-4-2 2 #> 709 5 1 Valencia 4-4-2 2 #> 710 5 1 Valencia 4-4-2 2 #> 711 5 1 Valencia 4-4-2 2 #> 712 5 1 Valencia 4-4-2 2 #> 713 5 1 Valencia 4-4-2 2 #> 714 5 1 Valencia 4-4-2 2 #> 715 5 1 Valencia 4-4-2 2 #> 716 5 1 Valencia 4-4-2 2 #> 717 5 1 Valencia 4-4-2 2 #> 718 5 1 Valencia 4-4-2 2 #> 719 5 1 Valencia 4-4-2 2 #> 720 5 1 Valencia 4-4-2 2 #> 721 5 1 Valencia 4-4-2 2 #> 722 5 1 Valencia 4-4-2 2 #> 723 5 1 Valencia 4-4-2 2 #> 724 5 1 Valencia 4-4-2 2 #> 725 5 1 Valencia 4-4-2 2 #> 726 5 1 Valencia 4-4-2 2 #> 727 5 1 Valencia 4-4-2 2 #> 728 4 0 Espanyol 4-3-3 1 #> 729 4 0 Espanyol 4-3-3 1 #> 730 4 0 Espanyol 4-3-3 1 #> 731 4 0 Espanyol 4-3-3 1 #> 732 4 0 Espanyol 4-3-3 1 #> 733 4 0 Espanyol 4-3-3 1 #> 734 4 0 Espanyol 4-3-3 1 #> 735 4 0 Espanyol 4-3-3 1 #> 736 4 0 Espanyol 4-3-3 1 #> 737 4 0 Espanyol 4-3-3 1 #> 738 4 0 Espanyol 4-3-3 1 #> 739 4 0 Espanyol 4-3-3 1 #> 740 4 0 Espanyol 4-3-3 1 #> 741 4 0 Espanyol 4-3-3 1 #> 742 4 0 Espanyol 4-3-3 1 #> 743 4 0 Espanyol 4-3-3 1 #> 744 4 0 Espanyol 4-3-3 1 #> 745 4 0 Espanyol 4-3-3 1 #> 746 4 0 Espanyol 4-3-3 1 #> 747 4 0 Espanyol 4-3-3 1 #> 748 4 0 Espanyol 4-3-3 1 #> 749 4 0 Espanyol 4-3-3 1 #> 750 4 0 Espanyol 4-3-3 1 #> 751 4 0 Espanyol 4-3-3 1 #> 752 4 0 Espanyol 4-3-3 1 #> 753 4 0 Espanyol 4-3-3 1 #> 754 4 0 Espanyol 4-3-3 1 #> 755 4 0 Espanyol 4-3-3 1 #> 756 1 0 Huesca 4-4-2 2 #> 757 1 0 Huesca 4-4-2 2 #> 758 1 0 Huesca 4-4-2 2 #> 759 1 0 Huesca 4-4-2 2 #> 760 1 0 Huesca 4-4-2 2 #> 761 1 0 Huesca 4-4-2 2 #> 762 1 0 Huesca 4-4-2 2 #> 763 1 0 Huesca 4-4-2 2 #> 764 1 0 Huesca 4-4-2 2 #> 765 1 0 Huesca 4-4-2 2 #> 766 1 0 Huesca 4-4-2 2 #> 767 1 0 Huesca 4-4-2 2 #> 768 1 0 Huesca 4-4-2 2 #> 769 1 0 Huesca 4-4-2 2 #> 770 1 0 Huesca 4-4-2 2 #> 771 1 0 Huesca 4-4-2 2 #> 772 1 0 Huesca 4-4-2 2 #> 773 1 0 Huesca 4-4-2 2 #> 774 1 0 Huesca 4-4-2 2 #> 775 1 0 Huesca 4-4-2 2 #> 776 1 0 Huesca 4-4-2 2 #> 777 1 0 Huesca 4-4-2 2 #> 778 1 0 Huesca 4-4-2 2 #> 779 1 0 Huesca 4-4-2 2 #> 780 1 0 Huesca 4-4-2 2 #> 781 1 0 Huesca 4-4-2 2 #> 782 1 0 Huesca 4-4-2 2 #> 783 1 0 Huesca 4-4-2 2 #> 784 3 0 Sevilla 3-4-3 0 #> 785 3 0 Sevilla 3-4-3 0 #> 786 3 0 Sevilla 3-4-3 0 #> 787 3 0 Sevilla 3-4-3 0 #> 788 3 0 Sevilla 3-4-3 0 #> 789 3 0 Sevilla 3-4-3 0 #> 790 3 0 Sevilla 3-4-3 0 #> 791 3 0 Sevilla 3-4-3 0 #> 792 3 0 Sevilla 3-4-3 0 #> 793 3 0 Sevilla 3-4-3 0 #> 794 3 0 Sevilla 3-4-3 0 #> 795 3 0 Sevilla 3-4-3 0 #> 796 3 0 Sevilla 3-4-3 0 #> 797 3 0 Sevilla 3-4-3 0 #> 798 3 0 Sevilla 3-4-3 0 #> 799 3 0 Sevilla 3-4-3 0 #> 800 3 0 Sevilla 3-4-3 0 #> 801 3 0 Sevilla 3-4-3 0 #> 802 3 0 Sevilla 3-4-3 0 #> 803 3 0 Sevilla 3-4-3 0 #> 804 3 0 Sevilla 3-4-3 0 #> 805 3 0 Sevilla 3-4-3 0 #> 806 3 0 Sevilla 3-4-3 0 #> 807 3 0 Sevilla 3-4-3 0 #> 808 3 0 Sevilla 3-4-3 0 #> 809 3 0 Sevilla 3-4-3 0 #> 810 3 0 Sevilla 3-4-3 0 #> 811 3 0 Sevilla 3-4-3 0 #> 812 2 0 Rayo Vallecano 4-2-3-1 1 #> 813 2 0 Rayo Vallecano 4-2-3-1 1 #> 814 2 0 Rayo Vallecano 4-2-3-1 1 #> 815 2 0 Rayo Vallecano 4-2-3-1 1 #> 816 2 0 Rayo Vallecano 4-2-3-1 1 #> 817 2 0 Rayo Vallecano 4-2-3-1 1 #> 818 2 0 Rayo Vallecano 4-2-3-1 1 #> 819 2 0 Rayo Vallecano 4-2-3-1 1 #> 820 2 0 Rayo Vallecano 4-2-3-1 1 #> 821 2 0 Rayo Vallecano 4-2-3-1 1 #> 822 2 0 Rayo Vallecano 4-2-3-1 1 #> 823 2 0 Rayo Vallecano 4-2-3-1 1 #> 824 2 0 Rayo Vallecano 4-2-3-1 1 #> 825 2 0 Rayo Vallecano 4-2-3-1 1 #> 826 2 0 Rayo Vallecano 4-2-3-1 1 #> 827 2 0 Rayo Vallecano 4-2-3-1 1 #> 828 2 0 Rayo Vallecano 4-2-3-1 1 #> 829 2 0 Rayo Vallecano 4-2-3-1 1 #> 830 2 0 Rayo Vallecano 4-2-3-1 1 #> 831 2 0 Rayo Vallecano 4-2-3-1 1 #> 832 2 0 Rayo Vallecano 4-2-3-1 1 #> 833 2 0 Rayo Vallecano 4-2-3-1 1 #> 834 2 0 Rayo Vallecano 4-2-3-1 1 #> 835 2 0 Rayo Vallecano 4-2-3-1 1 #> 836 2 0 Rayo Vallecano 4-2-3-1 1 #> 837 2 0 Rayo Vallecano 4-2-3-1 1 #> 838 2 0 Rayo Vallecano 4-2-3-1 1 #> 839 2 0 Rayo Vallecano 4-2-3-1 1 #> 840 2 0 Eibar 4-2-3-1 1 #> 841 2 0 Eibar 4-2-3-1 1 #> 842 2 0 Eibar 4-2-3-1 1 #> 843 2 0 Eibar 4-2-3-1 1 #> 844 2 0 Eibar 4-2-3-1 1 #> 845 2 0 Eibar 4-2-3-1 1 #> 846 2 0 Eibar 4-2-3-1 1 #> 847 2 0 Eibar 4-2-3-1 1 #> 848 2 0 Eibar 4-2-3-1 1 #> 849 2 0 Eibar 4-2-3-1 1 #> 850 2 0 Eibar 4-2-3-1 1 #> 851 2 0 Eibar 4-2-3-1 1 #> 852 2 0 Eibar 4-2-3-1 1 #> 853 2 0 Eibar 4-2-3-1 1 #> 854 2 0 Eibar 4-2-3-1 1 #> 855 2 0 Eibar 4-2-3-1 1 #> 856 2 0 Eibar 4-2-3-1 1 #> 857 2 0 Eibar 4-2-3-1 1 #> 858 2 0 Eibar 4-2-3-1 1 #> 859 2 0 Eibar 4-2-3-1 1 #> 860 2 0 Eibar 4-2-3-1 1 #> 861 2 0 Eibar 4-2-3-1 1 #> 862 2 0 Eibar 4-2-3-1 1 #> 863 2 0 Eibar 4-2-3-1 1 #> 864 2 0 Eibar 4-2-3-1 1 #> 865 2 0 Eibar 4-2-3-1 1 #> 866 2 0 Eibar 4-2-3-1 1 #> 867 1 0 Barcelona 4-3-3 2 #> 868 1 0 Barcelona 4-3-3 2 #> 869 1 0 Barcelona 4-3-3 2 #> 870 1 0 Barcelona 4-3-3 2 #> 871 1 0 Barcelona 4-3-3 2 #> 872 1 0 Barcelona 4-3-3 2 #> 873 1 0 Barcelona 4-3-3 2 #> 874 1 0 Barcelona 4-3-3 2 #> 875 1 0 Barcelona 4-3-3 2 #> 876 1 0 Barcelona 4-3-3 2 #> 877 1 0 Barcelona 4-3-3 2 #> 878 1 0 Barcelona 4-3-3 2 #> 879 1 0 Barcelona 4-3-3 2 #> 880 1 0 Barcelona 4-3-3 2 #> 881 1 0 Barcelona 4-3-3 2 #> 882 1 0 Barcelona 4-3-3 2 #> 883 1 0 Barcelona 4-3-3 2 #> 884 1 0 Barcelona 4-3-3 2 #> 885 1 0 Barcelona 4-3-3 2 #> 886 1 0 Barcelona 4-3-3 2 #> 887 1 0 Barcelona 4-3-3 2 #> 888 1 0 Barcelona 4-3-3 2 #> 889 1 0 Barcelona 4-3-3 2 #> 890 1 0 Barcelona 4-3-3 2 #> 891 1 0 Barcelona 4-3-3 2 #> 892 1 0 Barcelona 4-3-3 2 #> 893 1 0 Barcelona 4-3-3 2 #> 894 1 0 Barcelona 4-3-3 2 #> 895 6 0 Real Betis 3-4-3 0 #> 896 6 0 Real Betis 3-4-3 0 #> 897 6 0 Real Betis 3-4-3 0 #> 898 6 0 Real Betis 3-4-3 0 #> 899 6 0 Real Betis 3-4-3 0 #> 900 6 0 Real Betis 3-4-3 0 #> 901 6 0 Real Betis 3-4-3 0 #> 902 6 0 Real Betis 3-4-3 0 #> 903 6 0 Real Betis 3-4-3 0 #> 904 6 0 Real Betis 3-4-3 0 #> 905 6 0 Real Betis 3-4-3 0 #> 906 6 0 Real Betis 3-4-3 0 #> 907 6 0 Real Betis 3-4-3 0 #> 908 6 0 Real Betis 3-4-3 0 #> 909 6 0 Real Betis 3-4-3 0 #> 910 6 0 Real Betis 3-4-3 0 #> 911 6 0 Real Betis 3-4-3 0 #> 912 6 0 Real Betis 3-4-3 0 #> 913 6 0 Real Betis 3-4-3 0 #> 914 6 0 Real Betis 3-4-3 0 #> 915 6 0 Real Betis 3-4-3 0 #> 916 6 0 Real Betis 3-4-3 0 #> 917 6 0 Real Betis 3-4-3 0 #> 918 6 0 Real Betis 3-4-3 0 #> 919 6 0 Real Betis 3-4-3 0 #> 920 6 0 Real Betis 3-4-3 0 #> 921 6 0 Real Betis 3-4-3 0 #> 922 6 0 Real Betis 3-4-3 0 #> 923 6 0 Real Madrid 4-3-3 1 #> 924 6 0 Real Madrid 4-3-3 1 #> 925 6 0 Real Madrid 4-3-3 1 #> 926 6 0 Real Madrid 4-3-3 1 #> 927 6 0 Real Madrid 4-3-3 1 #> 928 6 0 Real Madrid 4-3-3 1 #> 929 6 0 Real Madrid 4-3-3 1 #> 930 6 0 Real Madrid 4-3-3 1 #> 931 6 0 Real Madrid 4-3-3 1 #> 932 6 0 Real Madrid 4-3-3 1 #> 933 6 0 Real Madrid 4-3-3 1 #> 934 6 0 Real Madrid 4-3-3 1 #> 935 6 0 Real Madrid 4-3-3 1 #> 936 6 0 Real Madrid 4-3-3 1 #> 937 6 0 Real Madrid 4-3-3 1 #> 938 6 0 Real Madrid 4-3-3 1 #> 939 6 0 Real Madrid 4-3-3 1 #> 940 6 0 Real Madrid 4-3-3 1 #> 941 6 0 Real Madrid 4-3-3 1 #> 942 6 0 Real Madrid 4-3-3 1 #> 943 6 0 Real Madrid 4-3-3 1 #> 944 6 0 Real Madrid 4-3-3 1 #> 945 6 0 Real Madrid 4-3-3 1 #> 946 6 0 Real Madrid 4-3-3 1 #> 947 6 0 Real Madrid 4-3-3 1 #> 948 6 0 Real Madrid 4-3-3 1 #> 949 6 0 Real Madrid 4-3-3 1 #> 950 6 0 Real Madrid 4-3-3 1 #> 951 4 0 Villarreal 4-4-2 1 #> 952 4 0 Villarreal 4-4-2 1 #> 953 4 0 Villarreal 4-4-2 1 #> 954 4 0 Villarreal 4-4-2 1 #> 955 4 0 Villarreal 4-4-2 1 #> 956 4 0 Villarreal 4-4-2 1 #> 957 4 0 Villarreal 4-4-2 1 #> 958 4 0 Villarreal 4-4-2 1 #> 959 4 0 Villarreal 4-4-2 1 #> 960 4 0 Villarreal 4-4-2 1 #> 961 4 0 Villarreal 4-4-2 1 #> 962 4 0 Villarreal 4-4-2 1 #> 963 4 0 Villarreal 4-4-2 1 #> 964 4 0 Villarreal 4-4-2 1 #> 965 4 0 Villarreal 4-4-2 1 #> 966 4 0 Villarreal 4-4-2 1 #> 967 4 0 Villarreal 4-4-2 1 #> 968 4 0 Villarreal 4-4-2 1 #> 969 4 0 Villarreal 4-4-2 1 #> 970 4 0 Villarreal 4-4-2 1 #> 971 4 0 Villarreal 4-4-2 1 #> 972 4 0 Villarreal 4-4-2 1 #> 973 4 0 Villarreal 4-4-2 1 #> 974 4 0 Villarreal 4-4-2 1 #> 975 4 0 Villarreal 4-4-2 1 #> 976 4 0 Villarreal 4-4-2 1 #> 977 4 0 Villarreal 4-4-2 1 #> 978 4 0 Villarreal 4-4-2 1 #> 979 1 0 Levante 4-4-2 0 #> 980 1 0 Levante 4-4-2 0 #> 981 1 0 Levante 4-4-2 0 #> 982 1 0 Levante 4-4-2 0 #> 983 1 0 Levante 4-4-2 0 #> 984 1 0 Levante 4-4-2 0 #> 985 1 0 Levante 4-4-2 0 #> 986 1 0 Levante 4-4-2 0 #> 987 1 0 Levante 4-4-2 0 #> 988 1 0 Levante 4-4-2 0 #> 989 1 0 Levante 4-4-2 0 #> 990 1 0 Levante 4-4-2 0 #> 991 1 0 Levante 4-4-2 0 #> 992 1 0 Levante 4-4-2 0 #> 993 1 0 Levante 4-4-2 0 #> 994 1 0 Levante 4-4-2 0 #> 995 1 0 Levante 4-4-2 0 #> 996 1 0 Levante 4-4-2 0 #> 997 1 0 Levante 4-4-2 0 #> 998 1 0 Levante 4-4-2 0 #> 999 1 0 Levante 4-4-2 0 #> 1000 1 0 Levante 4-4-2 0 #> 1001 1 0 Levante 4-4-2 0 #> 1002 1 0 Levante 4-4-2 0 #> 1003 1 0 Levante 4-4-2 0 #> 1004 1 0 Levante 4-4-2 0 #> 1005 1 0 Levante 4-4-2 0 #> 1006 1 0 Levante 4-4-2 0 #> 1007 3 0 Alavés 4-4-2 1 #> 1008 3 0 Alavés 4-4-2 1 #> 1009 3 0 Alavés 4-4-2 1 #> 1010 3 0 Alavés 4-4-2 1 #> 1011 3 0 Alavés 4-4-2 1 #> 1012 3 0 Alavés 4-4-2 1 #> 1013 3 0 Alavés 4-4-2 1 #> 1014 3 0 Alavés 4-4-2 1 #> 1015 3 0 Alavés 4-4-2 1 #> 1016 3 0 Alavés 4-4-2 1 #> 1017 3 0 Alavés 4-4-2 1 #> 1018 3 0 Alavés 4-4-2 1 #> 1019 3 0 Alavés 4-4-2 1 #> 1020 3 0 Alavés 4-4-2 1 #> 1021 3 0 Alavés 4-4-2 1 #> 1022 3 0 Alavés 4-4-2 1 #> 1023 3 0 Alavés 4-4-2 1 #> 1024 3 0 Alavés 4-4-2 1 #> 1025 3 0 Alavés 4-4-2 1 #> 1026 3 0 Alavés 4-4-2 1 #> 1027 3 0 Alavés 4-4-2 1 #> 1028 3 0 Alavés 4-4-2 1 #> 1029 3 0 Alavés 4-4-2 1 #> 1030 3 0 Alavés 4-4-2 1 #> 1031 3 0 Alavés 4-4-2 1 #> 1032 3 0 Alavés 4-4-2 1 #> 1033 3 0 Alavés 4-4-2 1 #> 1034 3 0 Alavés 4-4-2 1 #> 1035 3 0 Getafe 4-4-2 2 #> 1036 3 0 Getafe 4-4-2 2 #> 1037 3 0 Getafe 4-4-2 2 #> 1038 3 0 Getafe 4-4-2 2 #> 1039 3 0 Getafe 4-4-2 2 #> 1040 3 0 Getafe 4-4-2 2 #> 1041 3 0 Getafe 4-4-2 2 #> 1042 3 0 Getafe 4-4-2 2 #> 1043 3 0 Getafe 4-4-2 2 #> 1044 3 0 Getafe 4-4-2 2 #> 1045 3 0 Getafe 4-4-2 2 #> 1046 3 0 Getafe 4-4-2 2 #> 1047 3 0 Getafe 4-4-2 2 #> 1048 3 0 Getafe 4-4-2 2 #> 1049 3 0 Getafe 4-4-2 2 #> 1050 3 0 Getafe 4-4-2 2 #> 1051 3 0 Getafe 4-4-2 2 #> 1052 3 0 Getafe 4-4-2 2 #> 1053 3 0 Getafe 4-4-2 2 #> 1054 3 0 Getafe 4-4-2 2 #> 1055 3 0 Getafe 4-4-2 2 #> 1056 3 0 Getafe 4-4-2 2 #> 1057 3 0 Getafe 4-4-2 2 #> 1058 3 0 Getafe 4-4-2 2 #> 1059 3 0 Getafe 4-4-2 2 #> 1060 3 0 Getafe 4-4-2 2 #> 1061 3 0 Getafe 4-4-2 2 #> 1062 3 0 Getafe 4-4-2 2 #> 1063 1 0 Celta Vigo 3-4-3 2 #> 1064 1 0 Celta Vigo 3-4-3 2 #> 1065 1 0 Celta Vigo 3-4-3 2 #> 1066 1 0 Celta Vigo 3-4-3 2 #> 1067 1 0 Celta Vigo 3-4-3 2 #> 1068 1 0 Celta Vigo 3-4-3 2 #> 1069 1 0 Celta Vigo 3-4-3 2 #> 1070 1 0 Celta Vigo 3-4-3 2 #> 1071 1 0 Celta Vigo 3-4-3 2 #> 1072 1 0 Celta Vigo 3-4-3 2 #> 1073 1 0 Celta Vigo 3-4-3 2 #> 1074 1 0 Celta Vigo 3-4-3 2 #> 1075 1 0 Celta Vigo 3-4-3 2 #> 1076 1 0 Celta Vigo 3-4-3 2 #> 1077 1 0 Celta Vigo 3-4-3 2 #> 1078 1 0 Celta Vigo 3-4-3 2 #> 1079 1 0 Celta Vigo 3-4-3 2 #> 1080 1 0 Celta Vigo 3-4-3 2 #> 1081 1 0 Celta Vigo 3-4-3 2 #> 1082 1 0 Celta Vigo 3-4-3 2 #> 1083 1 0 Celta Vigo 3-4-3 2 #> 1084 1 0 Celta Vigo 3-4-3 2 #> 1085 1 0 Celta Vigo 3-4-3 2 #> 1086 1 0 Celta Vigo 3-4-3 2 #> 1087 1 0 Celta Vigo 3-4-3 2 #> 1088 1 0 Celta Vigo 3-4-3 2 #> 1089 1 0 Celta Vigo 3-4-3 2 #> 1090 1 0 Celta Vigo 3-4-3 2 #> 1091 5 0 Real Sociedad 4-3-3 1 #> 1092 5 0 Real Sociedad 4-3-3 1 #> 1093 5 0 Real Sociedad 4-3-3 1 #> 1094 5 0 Real Sociedad 4-3-3 1 #> 1095 5 0 Real Sociedad 4-3-3 1 #> 1096 5 0 Real Sociedad 4-3-3 1 #> 1097 5 0 Real Sociedad 4-3-3 1 #> 1098 5 0 Real Sociedad 4-3-3 1 #> 1099 5 0 Real Sociedad 4-3-3 1 #> 1100 5 0 Real Sociedad 4-3-3 1 #> 1101 5 0 Real Sociedad 4-3-3 1 #> 1102 5 0 Real Sociedad 4-3-3 1 #> 1103 5 0 Real Sociedad 4-3-3 1 #> 1104 5 0 Real Sociedad 4-3-3 1 #> 1105 5 0 Real Sociedad 4-3-3 1 #> 1106 5 0 Real Sociedad 4-3-3 1 #> 1107 5 0 Real Sociedad 4-3-3 1 #> 1108 5 0 Real Sociedad 4-3-3 1 #> 1109 5 0 Real Sociedad 4-3-3 1 #> 1110 5 0 Real Sociedad 4-3-3 1 #> 1111 5 0 Real Sociedad 4-3-3 1 #> 1112 5 0 Real Sociedad 4-3-3 1 #> 1113 5 0 Real Sociedad 4-3-3 1 #> 1114 5 0 Real Sociedad 4-3-3 1 #> 1115 5 0 Real Sociedad 4-3-3 1 #> 1116 5 0 Real Sociedad 4-3-3 1 #> 1117 5 0 Real Sociedad 4-3-3 1 #> 1118 5 0 Real Sociedad 4-3-3 1 #> 1119 1 1 Alavés 4-4-2 5 #> 1120 1 1 Alavés 4-4-2 5 #> 1121 1 1 Alavés 4-4-2 5 #> 1122 1 1 Alavés 4-4-2 5 #> 1123 1 1 Alavés 4-4-2 5 #> 1124 1 1 Alavés 4-4-2 5 #> 1125 1 1 Alavés 4-4-2 5 #> 1126 1 1 Alavés 4-4-2 5 #> 1127 1 1 Alavés 4-4-2 5 #> 1128 1 1 Alavés 4-4-2 5 #> 1129 1 1 Alavés 4-4-2 5 #> 1130 1 1 Alavés 4-4-2 5 #> 1131 1 1 Alavés 4-4-2 5 #> 1132 1 1 Alavés 4-4-2 5 #> 1133 1 1 Alavés 4-4-2 5 #> 1134 1 1 Alavés 4-4-2 5 #> 1135 1 1 Alavés 4-4-2 5 #> 1136 1 1 Alavés 4-4-2 5 #> 1137 1 1 Alavés 4-4-2 5 #> 1138 1 1 Alavés 4-4-2 5 #> 1139 1 1 Alavés 4-4-2 5 #> 1140 1 1 Alavés 4-4-2 5 #> 1141 1 1 Alavés 4-4-2 5 #> 1142 1 1 Alavés 4-4-2 5 #> 1143 1 1 Alavés 4-4-2 5 #> 1144 1 1 Alavés 4-4-2 5 #> 1145 1 1 Alavés 4-4-2 5 #> 1146 1 1 Alavés 4-4-2 5 #> 1147 1 0 Leganés 4-4-2 0 #> 1148 1 0 Leganés 4-4-2 0 #> 1149 1 0 Leganés 4-4-2 0 #> 1150 1 0 Leganés 4-4-2 0 #> 1151 1 0 Leganés 4-4-2 0 #> 1152 1 0 Leganés 4-4-2 0 #> 1153 1 0 Leganés 4-4-2 0 #> 1154 1 0 Leganés 4-4-2 0 #> 1155 1 0 Leganés 4-4-2 0 #> 1156 1 0 Leganés 4-4-2 0 #> 1157 1 0 Leganés 4-4-2 0 #> 1158 1 0 Leganés 4-4-2 0 #> 1159 1 0 Leganés 4-4-2 0 #> 1160 1 0 Leganés 4-4-2 0 #> 1161 1 0 Leganés 4-4-2 0 #> 1162 1 0 Leganés 4-4-2 0 #> 1163 1 0 Leganés 4-4-2 0 #> 1164 1 0 Leganés 4-4-2 0 #> 1165 1 0 Leganés 4-4-2 0 #> 1166 1 0 Leganés 4-4-2 0 #> 1167 1 0 Leganés 4-4-2 0 #> 1168 1 0 Leganés 4-4-2 0 #> 1169 1 0 Leganés 4-4-2 0 #> 1170 1 0 Leganés 4-4-2 0 #> 1171 1 0 Leganés 4-4-2 0 #> 1172 1 0 Leganés 4-4-2 0 #> 1173 1 0 Leganés 4-4-2 0 #> 1174 1 0 Leganés 4-4-2 0 #> 1175 2 0 Valladolid 4-1-4-1 3 #> 1176 2 0 Valladolid 4-1-4-1 3 #> 1177 2 0 Valladolid 4-1-4-1 3 #> 1178 2 0 Valladolid 4-1-4-1 3 #> 1179 2 0 Valladolid 4-1-4-1 3 #> 1180 2 0 Valladolid 4-1-4-1 3 #> 1181 2 0 Valladolid 4-1-4-1 3 #> 1182 2 0 Valladolid 4-1-4-1 3 #> 1183 2 0 Valladolid 4-1-4-1 3 #> 1184 2 0 Valladolid 4-1-4-1 3 #> 1185 2 0 Valladolid 4-1-4-1 3 #> 1186 2 0 Valladolid 4-1-4-1 3 #> 1187 2 0 Valladolid 4-1-4-1 3 #> 1188 2 0 Valladolid 4-1-4-1 3 #> 1189 2 0 Valladolid 4-1-4-1 3 #> 1190 2 0 Valladolid 4-1-4-1 3 #> 1191 2 0 Valladolid 4-1-4-1 3 #> 1192 2 0 Valladolid 4-1-4-1 3 #> 1193 2 0 Valladolid 4-1-4-1 3 #> 1194 2 0 Valladolid 4-1-4-1 3 #> 1195 2 0 Valladolid 4-1-4-1 3 #> 1196 2 0 Valladolid 4-1-4-1 3 #> 1197 2 0 Valladolid 4-1-4-1 3 #> 1198 2 0 Valladolid 4-1-4-1 3 #> 1199 2 0 Valladolid 4-1-4-1 3 #> 1200 2 0 Valladolid 4-1-4-1 3 #> 1201 2 0 Valladolid 4-1-4-1 3 #> 1202 2 0 Valladolid 4-1-4-1 3 #> 1203 1 1 Atlético Madrid 4-4-2 2 #> 1204 1 1 Atlético Madrid 4-4-2 2 #> 1205 1 1 Atlético Madrid 4-4-2 2 #> 1206 1 1 Atlético Madrid 4-4-2 2 #> 1207 1 1 Atlético Madrid 4-4-2 2 #> 1208 1 1 Atlético Madrid 4-4-2 2 #> 1209 1 1 Atlético Madrid 4-4-2 2 #> 1210 1 1 Atlético Madrid 4-4-2 2 #> 1211 1 1 Atlético Madrid 4-4-2 2 #> 1212 1 1 Atlético Madrid 4-4-2 2 #> 1213 1 1 Atlético Madrid 4-4-2 2 #> 1214 1 1 Atlético Madrid 4-4-2 2 #> 1215 1 1 Atlético Madrid 4-4-2 2 #> 1216 1 1 Atlético Madrid 4-4-2 2 #> 1217 1 1 Atlético Madrid 4-4-2 2 #> 1218 1 1 Atlético Madrid 4-4-2 2 #> 1219 1 1 Atlético Madrid 4-4-2 2 #> 1220 1 1 Atlético Madrid 4-4-2 2 #> 1221 1 1 Atlético Madrid 4-4-2 2 #> 1222 1 1 Atlético Madrid 4-4-2 2 #> 1223 1 1 Atlético Madrid 4-4-2 2 #> 1224 1 1 Atlético Madrid 4-4-2 2 #> 1225 1 1 Atlético Madrid 4-4-2 2 #> 1226 1 1 Atlético Madrid 4-4-2 2 #> 1227 1 1 Atlético Madrid 4-4-2 2 #> 1228 1 1 Atlético Madrid 4-4-2 2 #> 1229 1 1 Atlético Madrid 4-4-2 2 #> 1230 1 1 Atlético Madrid 4-4-2 2 #> 1231 2 0 Espanyol 4-1-4-1 0 #> 1232 2 0 Espanyol 4-1-4-1 0 #> 1233 2 0 Espanyol 4-1-4-1 0 #> 1234 2 0 Espanyol 4-1-4-1 0 #> 1235 2 0 Espanyol 4-1-4-1 0 #> 1236 2 0 Espanyol 4-1-4-1 0 #> 1237 2 0 Espanyol 4-1-4-1 0 #> 1238 2 0 Espanyol 4-1-4-1 0 #> 1239 2 0 Espanyol 4-1-4-1 0 #> 1240 2 0 Espanyol 4-1-4-1 0 #> 1241 2 0 Espanyol 4-1-4-1 0 #> 1242 2 0 Espanyol 4-1-4-1 0 #> 1243 2 0 Espanyol 4-1-4-1 0 #> 1244 2 0 Espanyol 4-1-4-1 0 #> 1245 2 0 Espanyol 4-1-4-1 0 #> 1246 2 0 Espanyol 4-1-4-1 0 #> 1247 2 0 Espanyol 4-1-4-1 0 #> 1248 2 0 Espanyol 4-1-4-1 0 #> 1249 2 0 Espanyol 4-1-4-1 0 #> 1250 2 0 Espanyol 4-1-4-1 0 #> 1251 2 0 Espanyol 4-1-4-1 0 #> 1252 2 0 Espanyol 4-1-4-1 0 #> 1253 2 0 Espanyol 4-1-4-1 0 #> 1254 2 0 Espanyol 4-1-4-1 0 #> 1255 2 0 Espanyol 4-1-4-1 0 #> 1256 2 0 Espanyol 4-1-4-1 0 #> 1257 2 0 Espanyol 4-1-4-1 0 #> 1258 2 0 Espanyol 4-1-4-1 0 #> 1259 1 0 Sevilla 3-5-2 6 #> 1260 1 0 Sevilla 3-5-2 6 #> 1261 1 0 Sevilla 3-5-2 6 #> 1262 1 0 Sevilla 3-5-2 6 #> 1263 1 0 Sevilla 3-5-2 6 #> 1264 1 0 Sevilla 3-5-2 6 #> 1265 1 0 Sevilla 3-5-2 6 #> 1266 1 0 Sevilla 3-5-2 6 #> 1267 1 0 Sevilla 3-5-2 6 #> 1268 1 0 Sevilla 3-5-2 6 #> 1269 1 0 Sevilla 3-5-2 6 #> 1270 1 0 Sevilla 3-5-2 6 #> 1271 1 0 Sevilla 3-5-2 6 #> 1272 1 0 Sevilla 3-5-2 6 #> 1273 1 0 Sevilla 3-5-2 6 #> 1274 1 0 Sevilla 3-5-2 6 #> 1275 1 0 Sevilla 3-5-2 6 #> 1276 1 0 Sevilla 3-5-2 6 #> 1277 1 0 Sevilla 3-5-2 6 #> 1278 1 0 Sevilla 3-5-2 6 #> 1279 1 0 Sevilla 3-5-2 6 #> 1280 1 0 Sevilla 3-5-2 6 #> 1281 1 0 Sevilla 3-5-2 6 #> 1282 1 0 Sevilla 3-5-2 6 #> 1283 1 0 Sevilla 3-5-2 6 #> 1284 1 0 Sevilla 3-5-2 6 #> 1285 1 0 Sevilla 3-5-2 6 #> 1286 1 0 Sevilla 3-5-2 6 #> 1287 4 0 Valencia 4-4-2 0 #> 1288 4 0 Valencia 4-4-2 0 #> 1289 4 0 Valencia 4-4-2 0 #> 1290 4 0 Valencia 4-4-2 0 #> 1291 4 0 Valencia 4-4-2 0 #> 1292 4 0 Valencia 4-4-2 0 #> 1293 4 0 Valencia 4-4-2 0 #> 1294 4 0 Valencia 4-4-2 0 #> 1295 4 0 Valencia 4-4-2 0 #> 1296 4 0 Valencia 4-4-2 0 #> 1297 4 0 Valencia 4-4-2 0 #> 1298 4 0 Valencia 4-4-2 0 #> 1299 4 0 Valencia 4-4-2 0 #> 1300 4 0 Valencia 4-4-2 0 #> 1301 4 0 Valencia 4-4-2 0 #> 1302 4 0 Valencia 4-4-2 0 #> 1303 4 0 Valencia 4-4-2 0 #> 1304 4 0 Valencia 4-4-2 0 #> 1305 4 0 Valencia 4-4-2 0 #> 1306 4 0 Valencia 4-4-2 0 #> 1307 4 0 Valencia 4-4-2 0 #> 1308 4 0 Valencia 4-4-2 0 #> 1309 4 0 Valencia 4-4-2 0 #> 1310 4 0 Valencia 4-4-2 0 #> 1311 4 0 Valencia 4-4-2 0 #> 1312 4 0 Valencia 4-4-2 0 #> 1313 4 0 Valencia 4-4-2 0 #> 1314 4 0 Valencia 4-4-2 0 #> 1315 2 0 Athletic Club 4-2-3-1 2 #> 1316 2 0 Athletic Club 4-2-3-1 2 #> 1317 2 0 Athletic Club 4-2-3-1 2 #> 1318 2 0 Athletic Club 4-2-3-1 2 #> 1319 2 0 Athletic Club 4-2-3-1 2 #> 1320 2 0 Athletic Club 4-2-3-1 2 #> 1321 2 0 Athletic Club 4-2-3-1 2 #> 1322 2 0 Athletic Club 4-2-3-1 2 #> 1323 2 0 Athletic Club 4-2-3-1 2 #> 1324 2 0 Athletic Club 4-2-3-1 2 #> 1325 2 0 Athletic Club 4-2-3-1 2 #> 1326 2 0 Athletic Club 4-2-3-1 2 #> 1327 2 0 Athletic Club 4-2-3-1 2 #> 1328 2 0 Athletic Club 4-2-3-1 2 #> 1329 2 0 Athletic Club 4-2-3-1 2 #> 1330 2 0 Athletic Club 4-2-3-1 2 #> 1331 2 0 Athletic Club 4-2-3-1 2 #> 1332 2 0 Athletic Club 4-2-3-1 2 #> 1333 2 0 Athletic Club 4-2-3-1 2 #> 1334 2 0 Athletic Club 4-2-3-1 2 #> 1335 2 0 Athletic Club 4-2-3-1 2 #> 1336 2 0 Athletic Club 4-2-3-1 2 #> 1337 2 0 Athletic Club 4-2-3-1 2 #> 1338 2 0 Athletic Club 4-2-3-1 2 #> 1339 2 0 Athletic Club 4-2-3-1 2 #> 1340 2 0 Athletic Club 4-2-3-1 2 #> 1341 2 0 Athletic Club 4-2-3-1 2 #> 1342 2 0 Athletic Club 4-2-3-1 2 #> 1343 3 1 Girona 5-3-2 2 #> 1344 3 1 Girona 5-3-2 2 #> 1345 3 1 Girona 5-3-2 2 #> 1346 3 1 Girona 5-3-2 2 #> 1347 3 1 Girona 5-3-2 2 #> 1348 3 1 Girona 5-3-2 2 #> 1349 3 1 Girona 5-3-2 2 #> 1350 3 1 Girona 5-3-2 2 #> 1351 3 1 Girona 5-3-2 2 #> 1352 3 1 Girona 5-3-2 2 #> 1353 3 1 Girona 5-3-2 2 #> 1354 3 1 Girona 5-3-2 2 #> 1355 3 1 Girona 5-3-2 2 #> 1356 3 1 Girona 5-3-2 2 #> 1357 3 1 Girona 5-3-2 2 #> 1358 3 1 Girona 5-3-2 2 #> 1359 3 1 Girona 5-3-2 2 #> 1360 3 1 Girona 5-3-2 2 #> 1361 3 1 Girona 5-3-2 2 #> 1362 3 1 Girona 5-3-2 2 #> 1363 3 1 Girona 5-3-2 2 #> 1364 3 1 Girona 5-3-2 2 #> 1365 3 1 Girona 5-3-2 2 #> 1366 3 1 Girona 5-3-2 2 #> 1367 3 1 Girona 5-3-2 2 #> 1368 3 1 Girona 5-3-2 2 #> 1369 3 1 Girona 5-3-2 2 #> 1370 3 1 Girona 5-3-2 2 #> 1371 2 0 Eibar 4-2-3-1 0 #> 1372 2 0 Eibar 4-2-3-1 0 #> 1373 2 0 Eibar 4-2-3-1 0 #> 1374 2 0 Eibar 4-2-3-1 0 #> 1375 2 0 Eibar 4-2-3-1 0 #> 1376 2 0 Eibar 4-2-3-1 0 #> 1377 2 0 Eibar 4-2-3-1 0 #> 1378 2 0 Eibar 4-2-3-1 0 #> 1379 2 0 Eibar 4-2-3-1 0 #> 1380 2 0 Eibar 4-2-3-1 0 #> 1381 2 0 Eibar 4-2-3-1 0 #> 1382 2 0 Eibar 4-2-3-1 0 #> 1383 2 0 Eibar 4-2-3-1 0 #> 1384 2 0 Eibar 4-2-3-1 0 #> 1385 2 0 Eibar 4-2-3-1 0 #> 1386 2 0 Eibar 4-2-3-1 0 #> 1387 2 0 Eibar 4-2-3-1 0 #> 1388 2 0 Eibar 4-2-3-1 0 #> 1389 2 0 Eibar 4-2-3-1 0 #> 1390 2 0 Eibar 4-2-3-1 0 #> 1391 2 0 Eibar 4-2-3-1 0 #> 1392 2 0 Eibar 4-2-3-1 0 #> 1393 2 0 Eibar 4-2-3-1 0 #> 1394 2 0 Eibar 4-2-3-1 0 #> 1395 2 0 Eibar 4-2-3-1 0 #> 1396 2 0 Eibar 4-2-3-1 0 #> 1397 2 0 Eibar 4-2-3-1 0 #> 1398 2 0 Eibar 4-2-3-1 0 #> 1399 4 0 Rayo Vallecano 4-1-4-1 2 #> 1400 4 0 Rayo Vallecano 4-1-4-1 2 #> 1401 4 0 Rayo Vallecano 4-1-4-1 2 #> 1402 4 0 Rayo Vallecano 4-1-4-1 2 #> 1403 4 0 Rayo Vallecano 4-1-4-1 2 #> 1404 4 0 Rayo Vallecano 4-1-4-1 2 #> 1405 4 0 Rayo Vallecano 4-1-4-1 2 #> 1406 4 0 Rayo Vallecano 4-1-4-1 2 #> 1407 4 0 Rayo Vallecano 4-1-4-1 2 #> 1408 4 0 Rayo Vallecano 4-1-4-1 2 #> 1409 4 0 Rayo Vallecano 4-1-4-1 2 #> 1410 4 0 Rayo Vallecano 4-1-4-1 2 #> 1411 4 0 Rayo Vallecano 4-1-4-1 2 #> 1412 4 0 Rayo Vallecano 4-1-4-1 2 #> 1413 4 0 Rayo Vallecano 4-1-4-1 2 #> 1414 4 0 Rayo Vallecano 4-1-4-1 2 #> 1415 4 0 Rayo Vallecano 4-1-4-1 2 #> 1416 4 0 Rayo Vallecano 4-1-4-1 2 #> 1417 4 0 Rayo Vallecano 4-1-4-1 2 #> 1418 4 0 Rayo Vallecano 4-1-4-1 2 #> 1419 4 0 Rayo Vallecano 4-1-4-1 2 #> 1420 4 0 Rayo Vallecano 4-1-4-1 2 #> 1421 4 0 Rayo Vallecano 4-1-4-1 2 #> 1422 4 0 Rayo Vallecano 4-1-4-1 2 #> 1423 4 0 Rayo Vallecano 4-1-4-1 2 #> 1424 4 0 Rayo Vallecano 4-1-4-1 2 #> 1425 4 0 Rayo Vallecano 4-1-4-1 2 #> 1426 4 0 Rayo Vallecano 4-1-4-1 2 #> 1427 0 0 Huesca 4-4-2 0 #> 1428 0 0 Huesca 4-4-2 0 #> 1429 0 0 Huesca 4-4-2 0 #> 1430 0 0 Huesca 4-4-2 0 #> 1431 0 0 Huesca 4-4-2 0 #> 1432 0 0 Huesca 4-4-2 0 #> 1433 0 0 Huesca 4-4-2 0 #> 1434 0 0 Huesca 4-4-2 0 #> 1435 0 0 Huesca 4-4-2 0 #> 1436 0 0 Huesca 4-4-2 0 #> 1437 0 0 Huesca 4-4-2 0 #> 1438 0 0 Huesca 4-4-2 0 #> 1439 0 0 Huesca 4-4-2 0 #> 1440 0 0 Huesca 4-4-2 0 #> 1441 0 0 Huesca 4-4-2 0 #> 1442 0 0 Huesca 4-4-2 0 #> 1443 0 0 Huesca 4-4-2 0 #> 1444 0 0 Huesca 4-4-2 0 #> 1445 0 0 Huesca 4-4-2 0 #> 1446 0 0 Huesca 4-4-2 0 #> 1447 0 0 Huesca 4-4-2 0 #> 1448 0 0 Huesca 4-4-2 0 #> 1449 0 0 Huesca 4-4-2 0 #> 1450 0 0 Huesca 4-4-2 0 #> 1451 0 0 Huesca 4-4-2 0 #> 1452 0 0 Huesca 4-4-2 0 #> 1453 0 0 Huesca 4-4-2 0 #> 1454 0 0 Huesca 4-4-2 0 #> 1455 4 0 Barcelona 4-3-3 1 #> 1456 4 0 Barcelona 4-3-3 1 #> 1457 4 0 Barcelona 4-3-3 1 #> 1458 4 0 Barcelona 4-3-3 1 #> 1459 4 0 Barcelona 4-3-3 1 #> 1460 4 0 Barcelona 4-3-3 1 #> 1461 4 0 Barcelona 4-3-3 1 #> 1462 4 0 Barcelona 4-3-3 1 #> 1463 4 0 Barcelona 4-3-3 1 #> 1464 4 0 Barcelona 4-3-3 1 #> 1465 4 0 Barcelona 4-3-3 1 #> 1466 4 0 Barcelona 4-3-3 1 #> 1467 4 0 Barcelona 4-3-3 1 #> 1468 4 0 Barcelona 4-3-3 1 #> 1469 4 0 Barcelona 4-3-3 1 #> 1470 4 0 Barcelona 4-3-3 1 #> 1471 4 0 Barcelona 4-3-3 1 #> 1472 4 0 Barcelona 4-3-3 1 #> 1473 4 0 Barcelona 4-3-3 1 #> 1474 4 0 Barcelona 4-3-3 1 #> 1475 4 0 Barcelona 4-3-3 1 #> 1476 4 0 Barcelona 4-3-3 1 #> 1477 4 0 Barcelona 4-3-3 1 #> 1478 4 0 Barcelona 4-3-3 1 #> 1479 4 0 Barcelona 4-3-3 1 #> 1480 4 0 Barcelona 4-3-3 1 #> 1481 4 0 Barcelona 4-3-3 1 #> 1482 4 0 Barcelona 4-3-3 1 #> 1483 1 0 Villarreal 4-4-2 3 #> 1484 1 0 Villarreal 4-4-2 3 #> 1485 1 0 Villarreal 4-4-2 3 #> 1486 1 0 Villarreal 4-4-2 3 #> 1487 1 0 Villarreal 4-4-2 3 #> 1488 1 0 Villarreal 4-4-2 3 #> 1489 1 0 Villarreal 4-4-2 3 #> 1490 1 0 Villarreal 4-4-2 3 #> 1491 1 0 Villarreal 4-4-2 3 #> 1492 1 0 Villarreal 4-4-2 3 #> 1493 1 0 Villarreal 4-4-2 3 #> 1494 1 0 Villarreal 4-4-2 3 #> 1495 1 0 Villarreal 4-4-2 3 #> 1496 1 0 Villarreal 4-4-2 3 #> 1497 1 0 Villarreal 4-4-2 3 #> 1498 1 0 Villarreal 4-4-2 3 #> 1499 1 0 Villarreal 4-4-2 3 #> 1500 1 0 Villarreal 4-4-2 3 #> 1501 1 0 Villarreal 4-4-2 3 #> 1502 1 0 Villarreal 4-4-2 3 #> 1503 1 0 Villarreal 4-4-2 3 #> 1504 1 0 Villarreal 4-4-2 3 #> 1505 1 0 Villarreal 4-4-2 3 #> 1506 1 0 Villarreal 4-4-2 3 #> 1507 1 0 Villarreal 4-4-2 3 #> 1508 1 0 Villarreal 4-4-2 3 #> 1509 1 0 Villarreal 4-4-2 3 #> 1510 1 0 Villarreal 4-4-2 3 #> 1511 3 0 Real Madrid 4-3-3 0 #> 1512 3 0 Real Madrid 4-3-3 0 #> 1513 3 0 Real Madrid 4-3-3 0 #> 1514 3 0 Real Madrid 4-3-3 0 #> 1515 3 0 Real Madrid 4-3-3 0 #> 1516 3 0 Real Madrid 4-3-3 0 #> 1517 3 0 Real Madrid 4-3-3 0 #> 1518 3 0 Real Madrid 4-3-3 0 #> 1519 3 0 Real Madrid 4-3-3 0 #> 1520 3 0 Real Madrid 4-3-3 0 #> 1521 3 0 Real Madrid 4-3-3 0 #> 1522 3 0 Real Madrid 4-3-3 0 #> 1523 3 0 Real Madrid 4-3-3 0 #> 1524 3 0 Real Madrid 4-3-3 0 #> 1525 3 0 Real Madrid 4-3-3 0 #> 1526 3 0 Real Madrid 4-3-3 0 #> 1527 3 0 Real Madrid 4-3-3 0 #> 1528 3 0 Real Madrid 4-3-3 0 #> 1529 3 0 Real Madrid 4-3-3 0 #> 1530 3 0 Real Madrid 4-3-3 0 #> 1531 3 0 Real Madrid 4-3-3 0 #> 1532 3 0 Real Madrid 4-3-3 0 #> 1533 3 0 Real Madrid 4-3-3 0 #> 1534 3 0 Real Madrid 4-3-3 0 #> 1535 3 0 Real Madrid 4-3-3 0 #> 1536 3 0 Real Madrid 4-3-3 0 #> 1537 3 0 Real Madrid 4-3-3 0 #> 1538 3 0 Real Madrid 4-3-3 0 #> 1539 1 0 Celta Vigo 5-3-2 1 #> 1540 1 0 Celta Vigo 5-3-2 1 #> 1541 1 0 Celta Vigo 5-3-2 1 #> 1542 1 0 Celta Vigo 5-3-2 1 #> 1543 1 0 Celta Vigo 5-3-2 1 #> 1544 1 0 Celta Vigo 5-3-2 1 #> 1545 1 0 Celta Vigo 5-3-2 1 #> 1546 1 0 Celta Vigo 5-3-2 1 #> 1547 1 0 Celta Vigo 5-3-2 1 #> 1548 1 0 Celta Vigo 5-3-2 1 #> 1549 1 0 Celta Vigo 5-3-2 1 #> 1550 1 0 Celta Vigo 5-3-2 1 #> 1551 1 0 Celta Vigo 5-3-2 1 #> 1552 1 0 Celta Vigo 5-3-2 1 #> 1553 1 0 Celta Vigo 5-3-2 1 #> 1554 1 0 Celta Vigo 5-3-2 1 #> 1555 1 0 Celta Vigo 5-3-2 1 #> 1556 1 0 Celta Vigo 5-3-2 1 #> 1557 1 0 Celta Vigo 5-3-2 1 #> 1558 1 0 Celta Vigo 5-3-2 1 #> 1559 1 0 Celta Vigo 5-3-2 1 #> 1560 1 0 Celta Vigo 5-3-2 1 #> 1561 1 0 Celta Vigo 5-3-2 1 #> 1562 1 0 Celta Vigo 5-3-2 1 #> 1563 1 0 Celta Vigo 5-3-2 1 #> 1564 1 0 Celta Vigo 5-3-2 1 #> 1565 1 0 Celta Vigo 5-3-2 1 #> 1566 1 0 Celta Vigo 5-3-2 1 #> 1567 4 0 Getafe 4-4-2 1 #> 1568 4 0 Getafe 4-4-2 1 #> 1569 4 0 Getafe 4-4-2 1 #> 1570 4 0 Getafe 4-4-2 1 #> 1571 4 0 Getafe 4-4-2 1 #> 1572 4 0 Getafe 4-4-2 1 #> 1573 4 0 Getafe 4-4-2 1 #> 1574 4 0 Getafe 4-4-2 1 #> 1575 4 0 Getafe 4-4-2 1 #> 1576 4 0 Getafe 4-4-2 1 #> 1577 4 0 Getafe 4-4-2 1 #> 1578 4 0 Getafe 4-4-2 1 #> 1579 4 0 Getafe 4-4-2 1 #> 1580 4 0 Getafe 4-4-2 1 #> 1581 4 0 Getafe 4-4-2 1 #> 1582 4 0 Getafe 4-4-2 1 #> 1583 4 0 Getafe 4-4-2 1 #> 1584 4 0 Getafe 4-4-2 1 #> 1585 4 0 Getafe 4-4-2 1 #> 1586 4 0 Getafe 4-4-2 1 #> 1587 4 0 Getafe 4-4-2 1 #> 1588 4 0 Getafe 4-4-2 1 #> 1589 4 0 Getafe 4-4-2 1 #> 1590 4 0 Getafe 4-4-2 1 #> 1591 4 0 Getafe 4-4-2 1 #> 1592 4 0 Getafe 4-4-2 1 #> 1593 4 0 Getafe 4-4-2 1 #> 1594 4 0 Getafe 4-4-2 1 #> 1595 1 0 Levante 4-4-2 1 #> 1596 1 0 Levante 4-4-2 1 #> 1597 1 0 Levante 4-4-2 1 #> 1598 1 0 Levante 4-4-2 1 #> 1599 1 0 Levante 4-4-2 1 #> 1600 1 0 Levante 4-4-2 1 #> 1601 1 0 Levante 4-4-2 1 #> 1602 1 0 Levante 4-4-2 1 #> 1603 1 0 Levante 4-4-2 1 #> 1604 1 0 Levante 4-4-2 1 #> 1605 1 0 Levante 4-4-2 1 #> 1606 1 0 Levante 4-4-2 1 #> 1607 1 0 Levante 4-4-2 1 #> 1608 1 0 Levante 4-4-2 1 #> 1609 1 0 Levante 4-4-2 1 #> 1610 1 0 Levante 4-4-2 1 #> 1611 1 0 Levante 4-4-2 1 #> 1612 1 0 Levante 4-4-2 1 #> 1613 1 0 Levante 4-4-2 1 #> 1614 1 0 Levante 4-4-2 1 #> 1615 1 0 Levante 4-4-2 1 #> 1616 1 0 Levante 4-4-2 1 #> 1617 1 0 Levante 4-4-2 1 #> 1618 1 0 Levante 4-4-2 1 #> 1619 1 0 Levante 4-4-2 1 #> 1620 1 0 Levante 4-4-2 1 #> 1621 1 0 Levante 4-4-2 1 #> 1622 1 0 Levante 4-4-2 1 #> 1623 1 0 Real Betis 3-4-3 1 #> 1624 1 0 Real Betis 3-4-3 1 #> 1625 1 0 Real Betis 3-4-3 1 #> 1626 1 0 Real Betis 3-4-3 1 #> 1627 1 0 Real Betis 3-4-3 1 #> 1628 1 0 Real Betis 3-4-3 1 #> 1629 1 0 Real Betis 3-4-3 1 #> 1630 1 0 Real Betis 3-4-3 1 #> 1631 1 0 Real Betis 3-4-3 1 #> 1632 1 0 Real Betis 3-4-3 1 #> 1633 1 0 Real Betis 3-4-3 1 #> 1634 1 0 Real Betis 3-4-3 1 #> 1635 1 0 Real Betis 3-4-3 1 #> 1636 1 0 Real Betis 3-4-3 1 #> 1637 1 0 Real Betis 3-4-3 1 #> 1638 1 0 Real Betis 3-4-3 1 #> 1639 1 0 Real Betis 3-4-3 1 #> 1640 1 0 Real Betis 3-4-3 1 #> 1641 1 0 Real Betis 3-4-3 1 #> 1642 1 0 Real Betis 3-4-3 1 #> 1643 1 0 Real Betis 3-4-3 1 #> 1644 1 0 Real Betis 3-4-3 1 #> 1645 1 0 Real Betis 3-4-3 1 #> 1646 1 0 Real Betis 3-4-3 1 #> 1647 1 0 Real Betis 3-4-3 1 #> 1648 1 0 Real Betis 3-4-3 1 #> 1649 1 0 Real Betis 3-4-3 1 #> 1650 1 0 Real Betis 3-4-3 1 #> 1651 3 0 Espanyol 4-1-4-1 2 #> 1652 3 0 Espanyol 4-1-4-1 2 #> 1653 3 0 Espanyol 4-1-4-1 2 #> 1654 3 0 Espanyol 4-1-4-1 2 #> 1655 3 0 Espanyol 4-1-4-1 2 #> 1656 3 0 Espanyol 4-1-4-1 2 #> 1657 3 0 Espanyol 4-1-4-1 2 #> 1658 3 0 Espanyol 4-1-4-1 2 #> 1659 3 0 Espanyol 4-1-4-1 2 #> 1660 3 0 Espanyol 4-1-4-1 2 #> 1661 3 0 Espanyol 4-1-4-1 2 #> 1662 3 0 Espanyol 4-1-4-1 2 #> 1663 3 0 Espanyol 4-1-4-1 2 #> 1664 3 0 Espanyol 4-1-4-1 2 #> 1665 3 0 Espanyol 4-1-4-1 2 #> 1666 3 0 Espanyol 4-1-4-1 2 #> 1667 3 0 Espanyol 4-1-4-1 2 #> 1668 3 0 Espanyol 4-1-4-1 2 #> 1669 3 0 Espanyol 4-1-4-1 2 #> 1670 3 0 Espanyol 4-1-4-1 2 #> 1671 3 0 Espanyol 4-1-4-1 2 #> 1672 3 0 Espanyol 4-1-4-1 2 #> 1673 3 0 Espanyol 4-1-4-1 2 #> 1674 3 0 Espanyol 4-1-4-1 2 #> 1675 3 0 Espanyol 4-1-4-1 2 #> 1676 3 0 Espanyol 4-1-4-1 2 #> 1677 3 0 Espanyol 4-1-4-1 2 #> 1678 3 0 Espanyol 4-1-4-1 2 #> 1679 3 0 Valencia 4-4-2 1 #> 1680 3 0 Valencia 4-4-2 1 #> 1681 3 0 Valencia 4-4-2 1 #> 1682 3 0 Valencia 4-4-2 1 #> 1683 3 0 Valencia 4-4-2 1 #> 1684 3 0 Valencia 4-4-2 1 #> 1685 3 0 Valencia 4-4-2 1 #> 1686 3 0 Valencia 4-4-2 1 #> 1687 3 0 Valencia 4-4-2 1 #> 1688 3 0 Valencia 4-4-2 1 #> 1689 3 0 Valencia 4-4-2 1 #> 1690 3 0 Valencia 4-4-2 1 #> 1691 3 0 Valencia 4-4-2 1 #> 1692 3 0 Valencia 4-4-2 1 #> 1693 3 0 Valencia 4-4-2 1 #> 1694 3 0 Valencia 4-4-2 1 #> 1695 3 0 Valencia 4-4-2 1 #> 1696 3 0 Valencia 4-4-2 1 #> 1697 3 0 Valencia 4-4-2 1 #> 1698 3 0 Valencia 4-4-2 1 #> 1699 3 0 Valencia 4-4-2 1 #> 1700 3 0 Valencia 4-4-2 1 #> 1701 3 0 Valencia 4-4-2 1 #> 1702 3 0 Valencia 4-4-2 1 #> 1703 3 0 Valencia 4-4-2 1 #> 1704 3 0 Valencia 4-4-2 1 #> 1705 3 0 Valencia 4-4-2 1 #> 1706 3 0 Valencia 4-4-2 1 #> 1707 3 0 Athletic Club 4-2-3-1 1 #> 1708 3 0 Athletic Club 4-2-3-1 1 #> 1709 3 0 Athletic Club 4-2-3-1 1 #> 1710 3 0 Athletic Club 4-2-3-1 1 #> 1711 3 0 Athletic Club 4-2-3-1 1 #> 1712 3 0 Athletic Club 4-2-3-1 1 #> 1713 3 0 Athletic Club 4-2-3-1 1 #> 1714 3 0 Athletic Club 4-2-3-1 1 #> 1715 3 0 Athletic Club 4-2-3-1 1 #> 1716 3 0 Athletic Club 4-2-3-1 1 #> 1717 3 0 Athletic Club 4-2-3-1 1 #> 1718 3 0 Athletic Club 4-2-3-1 1 #> 1719 3 0 Athletic Club 4-2-3-1 1 #> 1720 3 0 Athletic Club 4-2-3-1 1 #> 1721 3 0 Athletic Club 4-2-3-1 1 #> 1722 3 0 Athletic Club 4-2-3-1 1 #> 1723 3 0 Athletic Club 4-2-3-1 1 #> 1724 3 0 Athletic Club 4-2-3-1 1 #> 1725 3 0 Athletic Club 4-2-3-1 1 #> 1726 3 0 Athletic Club 4-2-3-1 1 #> 1727 3 0 Athletic Club 4-2-3-1 1 #> 1728 3 0 Athletic Club 4-2-3-1 1 #> 1729 3 0 Athletic Club 4-2-3-1 1 #> 1730 3 0 Athletic Club 4-2-3-1 1 #> 1731 3 0 Athletic Club 4-2-3-1 1 #> 1732 3 0 Athletic Club 4-2-3-1 1 #> 1733 3 0 Athletic Club 4-2-3-1 1 #> 1734 3 0 Athletic Club 4-2-3-1 1 #> 1735 2 0 Sevilla 3-5-2 3 #> 1736 2 0 Sevilla 3-5-2 3 #> 1737 2 0 Sevilla 3-5-2 3 #> 1738 2 0 Sevilla 3-5-2 3 #> 1739 2 0 Sevilla 3-5-2 3 #> 1740 2 0 Sevilla 3-5-2 3 #> 1741 2 0 Sevilla 3-5-2 3 #> 1742 2 0 Sevilla 3-5-2 3 #> 1743 2 0 Sevilla 3-5-2 3 #> 1744 2 0 Sevilla 3-5-2 3 #> 1745 2 0 Sevilla 3-5-2 3 #> 1746 2 0 Sevilla 3-5-2 3 #> 1747 2 0 Sevilla 3-5-2 3 #> 1748 2 0 Sevilla 3-5-2 3 #> 1749 2 0 Sevilla 3-5-2 3 #> 1750 2 0 Sevilla 3-5-2 3 #> 1751 2 0 Sevilla 3-5-2 3 #> 1752 2 0 Sevilla 3-5-2 3 #> 1753 2 0 Sevilla 3-5-2 3 #> 1754 2 0 Sevilla 3-5-2 3 #> 1755 2 0 Sevilla 3-5-2 3 #> 1756 2 0 Sevilla 3-5-2 3 #> 1757 2 0 Sevilla 3-5-2 3 #> 1758 2 0 Sevilla 3-5-2 3 #> 1759 2 0 Sevilla 3-5-2 3 #> 1760 2 0 Sevilla 3-5-2 3 #> 1761 2 0 Sevilla 3-5-2 3 #> 1762 2 0 Sevilla 3-5-2 3 #> 1763 3 0 Atlético Madrid 4-4-2 0 #> 1764 3 0 Atlético Madrid 4-4-2 0 #> 1765 3 0 Atlético Madrid 4-4-2 0 #> 1766 3 0 Atlético Madrid 4-4-2 0 #> 1767 3 0 Atlético Madrid 4-4-2 0 #> 1768 3 0 Atlético Madrid 4-4-2 0 #> 1769 3 0 Atlético Madrid 4-4-2 0 #> 1770 3 0 Atlético Madrid 4-4-2 0 #> 1771 3 0 Atlético Madrid 4-4-2 0 #> 1772 3 0 Atlético Madrid 4-4-2 0 #> 1773 3 0 Atlético Madrid 4-4-2 0 #> 1774 3 0 Atlético Madrid 4-4-2 0 #> 1775 3 0 Atlético Madrid 4-4-2 0 #> 1776 3 0 Atlético Madrid 4-4-2 0 #> 1777 3 0 Atlético Madrid 4-4-2 0 #> 1778 3 0 Atlético Madrid 4-4-2 0 #> 1779 3 0 Atlético Madrid 4-4-2 0 #> 1780 3 0 Atlético Madrid 4-4-2 0 #> 1781 3 0 Atlético Madrid 4-4-2 0 #> 1782 3 0 Atlético Madrid 4-4-2 0 #> 1783 3 0 Atlético Madrid 4-4-2 0 #> 1784 3 0 Atlético Madrid 4-4-2 0 #> 1785 3 0 Atlético Madrid 4-4-2 0 #> 1786 3 0 Atlético Madrid 4-4-2 0 #> 1787 3 0 Atlético Madrid 4-4-2 0 #> 1788 3 0 Atlético Madrid 4-4-2 0 #> 1789 3 0 Atlético Madrid 4-4-2 0 #> 1790 3 0 Atlético Madrid 4-4-2 0 #> 1791 4 0 Girona 4-4-2 1 #> 1792 4 0 Girona 4-4-2 1 #> 1793 4 0 Girona 4-4-2 1 #> 1794 4 0 Girona 4-4-2 1 #> 1795 4 0 Girona 4-4-2 1 #> 1796 4 0 Girona 4-4-2 1 #> 1797 4 0 Girona 4-4-2 1 #> 1798 4 0 Girona 4-4-2 1 #> 1799 4 0 Girona 4-4-2 1 #> 1800 4 0 Girona 4-4-2 1 #> 1801 4 0 Girona 4-4-2 1 #> 1802 4 0 Girona 4-4-2 1 #> 1803 4 0 Girona 4-4-2 1 #> 1804 4 0 Girona 4-4-2 1 #> 1805 4 0 Girona 4-4-2 1 #> 1806 4 0 Girona 4-4-2 1 #> 1807 4 0 Girona 4-4-2 1 #> 1808 4 0 Girona 4-4-2 1 #> 1809 4 0 Girona 4-4-2 1 #> 1810 4 0 Girona 4-4-2 1 #> 1811 4 0 Girona 4-4-2 1 #> 1812 4 0 Girona 4-4-2 1 #> 1813 4 0 Girona 4-4-2 1 #> 1814 4 0 Girona 4-4-2 1 #> 1815 4 0 Girona 4-4-2 1 #> 1816 4 0 Girona 4-4-2 1 #> 1817 4 0 Girona 4-4-2 1 #> 1818 4 0 Girona 4-4-2 1 #> 1819 3 0 Valladolid 4-4-2 1 #> 1820 3 0 Valladolid 4-4-2 1 #> 1821 3 0 Valladolid 4-4-2 1 #> 1822 3 0 Valladolid 4-4-2 1 #> 1823 3 0 Valladolid 4-4-2 1 #> 1824 3 0 Valladolid 4-4-2 1 #> 1825 3 0 Valladolid 4-4-2 1 #> 1826 3 0 Valladolid 4-4-2 1 #> 1827 3 0 Valladolid 4-4-2 1 #> 1828 3 0 Valladolid 4-4-2 1 #> 1829 3 0 Valladolid 4-4-2 1 #> 1830 3 0 Valladolid 4-4-2 1 #> 1831 3 0 Valladolid 4-4-2 1 #> 1832 3 0 Valladolid 4-4-2 1 #> 1833 3 0 Valladolid 4-4-2 1 #> 1834 3 0 Valladolid 4-4-2 1 #> 1835 3 0 Valladolid 4-4-2 1 #> 1836 3 0 Valladolid 4-4-2 1 #> 1837 3 0 Valladolid 4-4-2 1 #> 1838 3 0 Valladolid 4-4-2 1 #> 1839 3 0 Valladolid 4-4-2 1 #> 1840 3 0 Valladolid 4-4-2 1 #> 1841 3 0 Valladolid 4-4-2 1 #> 1842 3 0 Valladolid 4-4-2 1 #> 1843 3 0 Valladolid 4-4-2 1 #> 1844 3 0 Valladolid 4-4-2 1 #> 1845 3 0 Valladolid 4-4-2 1 #> 1846 3 0 Valladolid 4-4-2 1 #> 1847 7 0 Alavés 4-4-2 1 #> 1848 7 0 Alavés 4-4-2 1 #> 1849 7 0 Alavés 4-4-2 1 #> 1850 7 0 Alavés 4-4-2 1 #> 1851 7 0 Alavés 4-4-2 1 #> 1852 7 0 Alavés 4-4-2 1 #> 1853 7 0 Alavés 4-4-2 1 #> 1854 7 0 Alavés 4-4-2 1 #> 1855 7 0 Alavés 4-4-2 1 #> 1856 7 0 Alavés 4-4-2 1 #> 1857 7 0 Alavés 4-4-2 1 #> 1858 7 0 Alavés 4-4-2 1 #> 1859 7 0 Alavés 4-4-2 1 #> 1860 7 0 Alavés 4-4-2 1 #> 1861 7 0 Alavés 4-4-2 1 #> 1862 7 0 Alavés 4-4-2 1 #> 1863 7 0 Alavés 4-4-2 1 #> 1864 7 0 Alavés 4-4-2 1 #> 1865 7 0 Alavés 4-4-2 1 #> 1866 7 0 Alavés 4-4-2 1 #> 1867 7 0 Alavés 4-4-2 1 #> 1868 7 0 Alavés 4-4-2 1 #> 1869 7 0 Alavés 4-4-2 1 #> 1870 7 0 Alavés 4-4-2 1 #> 1871 7 0 Alavés 4-4-2 1 #> 1872 7 0 Alavés 4-4-2 1 #> 1873 7 0 Alavés 4-4-2 1 #> 1874 7 0 Alavés 4-4-2 1 #> 1875 0 0 Leganés 5-4-1 0 #> 1876 0 0 Leganés 5-4-1 0 #> 1877 0 0 Leganés 5-4-1 0 #> 1878 0 0 Leganés 5-4-1 0 #> 1879 0 0 Leganés 5-4-1 0 #> 1880 0 0 Leganés 5-4-1 0 #> 1881 0 0 Leganés 5-4-1 0 #> 1882 0 0 Leganés 5-4-1 0 #> 1883 0 0 Leganés 5-4-1 0 #> 1884 0 0 Leganés 5-4-1 0 #> 1885 0 0 Leganés 5-4-1 0 #> 1886 0 0 Leganés 5-4-1 0 #> 1887 0 0 Leganés 5-4-1 0 #> 1888 0 0 Leganés 5-4-1 0 #> 1889 0 0 Leganés 5-4-1 0 #> 1890 0 0 Leganés 5-4-1 0 #> 1891 0 0 Leganés 5-4-1 0 #> 1892 0 0 Leganés 5-4-1 0 #> 1893 0 0 Leganés 5-4-1 0 #> 1894 0 0 Leganés 5-4-1 0 #> 1895 0 0 Leganés 5-4-1 0 #> 1896 0 0 Leganés 5-4-1 0 #> 1897 0 0 Leganés 5-4-1 0 #> 1898 0 0 Leganés 5-4-1 0 #> 1899 0 0 Leganés 5-4-1 0 #> 1900 0 0 Leganés 5-4-1 0 #> 1901 0 0 Leganés 5-4-1 0 #> 1902 0 0 Leganés 5-4-1 0 #> 1903 2 0 Getafe 4-4-2 1 #> 1904 2 0 Getafe 4-4-2 1 #> 1905 2 0 Getafe 4-4-2 1 #> 1906 2 0 Getafe 4-4-2 1 #> 1907 2 0 Getafe 4-4-2 1 #> 1908 2 0 Getafe 4-4-2 1 #> 1909 2 0 Getafe 4-4-2 1 #> 1910 2 0 Getafe 4-4-2 1 #> 1911 2 0 Getafe 4-4-2 1 #> 1912 2 0 Getafe 4-4-2 1 #> 1913 2 0 Getafe 4-4-2 1 #> 1914 2 0 Getafe 4-4-2 1 #> 1915 2 0 Getafe 4-4-2 1 #> 1916 2 0 Getafe 4-4-2 1 #> 1917 2 0 Getafe 4-4-2 1 #> 1918 2 0 Getafe 4-4-2 1 #> 1919 2 0 Getafe 4-4-2 1 #> 1920 2 0 Getafe 4-4-2 1 #> 1921 2 0 Getafe 4-4-2 1 #> 1922 2 0 Getafe 4-4-2 1 #> 1923 2 0 Getafe 4-4-2 1 #> 1924 2 0 Getafe 4-4-2 1 #> 1925 2 0 Getafe 4-4-2 1 #> 1926 2 0 Getafe 4-4-2 1 #> 1927 2 0 Getafe 4-4-2 1 #> 1928 2 0 Getafe 4-4-2 1 #> 1929 2 0 Getafe 4-4-2 1 #> 1930 2 0 Getafe 4-4-2 1 #> 1931 6 0 Real Sociedad 4-2-3-1 3 #> 1932 6 0 Real Sociedad 4-2-3-1 3 #> 1933 6 0 Real Sociedad 4-2-3-1 3 #> 1934 6 0 Real Sociedad 4-2-3-1 3 #> 1935 6 0 Real Sociedad 4-2-3-1 3 #> 1936 6 0 Real Sociedad 4-2-3-1 3 #> 1937 6 0 Real Sociedad 4-2-3-1 3 #> 1938 6 0 Real Sociedad 4-2-3-1 3 #> 1939 6 0 Real Sociedad 4-2-3-1 3 #> 1940 6 0 Real Sociedad 4-2-3-1 3 #> 1941 6 0 Real Sociedad 4-2-3-1 3 #> 1942 6 0 Real Sociedad 4-2-3-1 3 #> 1943 6 0 Real Sociedad 4-2-3-1 3 #> 1944 6 0 Real Sociedad 4-2-3-1 3 #> 1945 6 0 Real Sociedad 4-2-3-1 3 #> 1946 6 0 Real Sociedad 4-2-3-1 3 #> 1947 6 0 Real Sociedad 4-2-3-1 3 #> 1948 6 0 Real Sociedad 4-2-3-1 3 #> 1949 6 0 Real Sociedad 4-2-3-1 3 #> 1950 6 0 Real Sociedad 4-2-3-1 3 #> 1951 6 0 Real Sociedad 4-2-3-1 3 #> 1952 6 0 Real Sociedad 4-2-3-1 3 #> 1953 6 0 Real Sociedad 4-2-3-1 3 #> 1954 6 0 Real Sociedad 4-2-3-1 3 #> 1955 6 0 Real Sociedad 4-2-3-1 3 #> 1956 6 0 Real Sociedad 4-2-3-1 3 #> 1957 6 0 Real Sociedad 4-2-3-1 3 #> 1958 6 0 Real Sociedad 4-2-3-1 3 #> 1959 3 0 Eibar 4-4-2 3 #> 1960 3 0 Eibar 4-4-2 3 #> 1961 3 0 Eibar 4-4-2 3 #> 1962 3 0 Eibar 4-4-2 3 #> 1963 3 0 Eibar 4-4-2 3 #> 1964 3 0 Eibar 4-4-2 3 #> 1965 3 0 Eibar 4-4-2 3 #> 1966 3 0 Eibar 4-4-2 3 #> 1967 3 0 Eibar 4-4-2 3 #> 1968 3 0 Eibar 4-4-2 3 #> 1969 3 0 Eibar 4-4-2 3 #> 1970 3 0 Eibar 4-4-2 3 #> 1971 3 0 Eibar 4-4-2 3 #> 1972 3 0 Eibar 4-4-2 3 #> 1973 3 0 Eibar 4-4-2 3 #> 1974 3 0 Eibar 4-4-2 3 #> 1975 3 0 Eibar 4-4-2 3 #> 1976 3 0 Eibar 4-4-2 3 #> 1977 3 0 Eibar 4-4-2 3 #> 1978 3 0 Eibar 4-4-2 3 #> 1979 3 0 Eibar 4-4-2 3 #> 1980 3 0 Eibar 4-4-2 3 #> 1981 3 0 Eibar 4-4-2 3 #> 1982 3 0 Eibar 4-4-2 3 #> 1983 3 0 Eibar 4-4-2 3 #> 1984 3 0 Eibar 4-4-2 3 #> 1985 3 0 Eibar 4-4-2 3 #> 1986 3 0 Eibar 4-4-2 3 #> 1987 4 1 Levante 3-5-2 1 #> 1988 4 1 Levante 3-5-2 1 #> 1989 4 1 Levante 3-5-2 1 #> 1990 4 1 Levante 3-5-2 1 #> 1991 4 1 Levante 3-5-2 1 #> 1992 4 1 Levante 3-5-2 1 #> 1993 4 1 Levante 3-5-2 1 #> 1994 4 1 Levante 3-5-2 1 #> 1995 4 1 Levante 3-5-2 1 #> 1996 4 1 Levante 3-5-2 1 #> 1997 4 1 Levante 3-5-2 1 #> 1998 4 1 Levante 3-5-2 1 #> 1999 4 1 Levante 3-5-2 1 #> 2000 4 1 Levante 3-5-2 1 #> 2001 4 1 Levante 3-5-2 1 #> 2002 4 1 Levante 3-5-2 1 #> 2003 4 1 Levante 3-5-2 1 #> 2004 4 1 Levante 3-5-2 1 #> 2005 4 1 Levante 3-5-2 1 #> 2006 4 1 Levante 3-5-2 1 #> 2007 4 1 Levante 3-5-2 1 #> 2008 4 1 Levante 3-5-2 1 #> 2009 4 1 Levante 3-5-2 1 #> 2010 4 1 Levante 3-5-2 1 #> 2011 4 1 Levante 3-5-2 1 #> 2012 4 1 Levante 3-5-2 1 #> 2013 4 1 Levante 3-5-2 1 #> 2014 4 1 Levante 3-5-2 1 #> 2015 1 0 Real Madrid 4-3-3 0 #> 2016 1 0 Real Madrid 4-3-3 0 #> 2017 1 0 Real Madrid 4-3-3 0 #> 2018 1 0 Real Madrid 4-3-3 0 #> 2019 1 0 Real Madrid 4-3-3 0 #> 2020 1 0 Real Madrid 4-3-3 0 #> 2021 1 0 Real Madrid 4-3-3 0 #> 2022 1 0 Real Madrid 4-3-3 0 #> 2023 1 0 Real Madrid 4-3-3 0 #> 2024 1 0 Real Madrid 4-3-3 0 #> 2025 1 0 Real Madrid 4-3-3 0 #> 2026 1 0 Real Madrid 4-3-3 0 #> 2027 1 0 Real Madrid 4-3-3 0 #> 2028 1 0 Real Madrid 4-3-3 0 #> 2029 1 0 Real Madrid 4-3-3 0 #> 2030 1 0 Real Madrid 4-3-3 0 #> 2031 1 0 Real Madrid 4-3-3 0 #> 2032 1 0 Real Madrid 4-3-3 0 #> 2033 1 0 Real Madrid 4-3-3 0 #> 2034 1 0 Real Madrid 4-3-3 0 #> 2035 1 0 Real Madrid 4-3-3 0 #> 2036 1 0 Real Madrid 4-3-3 0 #> 2037 1 0 Real Madrid 4-3-3 0 #> 2038 1 0 Real Madrid 4-3-3 0 #> 2039 1 0 Real Madrid 4-3-3 0 #> 2040 1 0 Real Madrid 4-3-3 0 #> Away_xG #> 1 0.0 #> 2 0.0 #> 3 0.0 #> 4 0.0 #> 5 0.0 #> 6 0.0 #> 7 0.0 #> 8 0.0 #> 9 0.0 #> 10 0.0 #> 11 0.0 #> 12 0.0 #> 13 0.0 #> 14 0.0 #> 15 0.0 #> 16 0.0 #> 17 0.0 #> 18 0.0 #> 19 0.0 #> 20 0.0 #> 21 0.0 #> 22 0.0 #> 23 0.0 #> 24 0.0 #> 25 0.0 #> 26 0.0 #> 27 0.0 #> 28 0.0 #> 29 2.5 #> 30 2.5 #> 31 2.5 #> 32 2.5 #> 33 2.5 #> 34 2.5 #> 35 2.5 #> 36 2.5 #> 37 2.5 #> 38 2.5 #> 39 2.5 #> 40 2.5 #> 41 2.5 #> 42 2.5 #> 43 2.5 #> 44 2.5 #> 45 2.5 #> 46 2.5 #> 47 2.5 #> 48 2.5 #> 49 2.5 #> 50 2.5 #> 51 2.5 #> 52 2.5 #> 53 2.5 #> 54 2.5 #> 55 2.5 #> 56 2.5 #> 57 0.6 #> 58 0.6 #> 59 0.6 #> 60 0.6 #> 61 0.6 #> 62 0.6 #> 63 0.6 #> 64 0.6 #> 65 0.6 #> 66 0.6 #> 67 0.6 #> 68 0.6 #> 69 0.6 #> 70 0.6 #> 71 0.6 #> 72 0.6 #> 73 0.6 #> 74 0.6 #> 75 0.6 #> 76 0.6 #> 77 0.6 #> 78 0.6 #> 79 0.6 #> 80 0.6 #> 81 0.6 #> 82 0.6 #> 83 0.6 #> 84 0.6 #> 85 0.7 #> 86 0.7 #> 87 0.7 #> 88 0.7 #> 89 0.7 #> 90 0.7 #> 91 0.7 #> 92 0.7 #> 93 0.7 #> 94 0.7 #> 95 0.7 #> 96 0.7 #> 97 0.7 #> 98 0.7 #> 99 0.7 #> 100 0.7 #> 101 0.7 #> 102 0.7 #> 103 0.7 #> 104 0.7 #> 105 0.7 #> 106 0.7 #> 107 0.7 #> 108 0.7 #> 109 0.7 #> 110 0.7 #> 111 0.7 #> 112 0.7 #> 113 0.3 #> 114 0.3 #> 115 0.3 #> 116 0.3 #> 117 0.3 #> 118 0.3 #> 119 0.3 #> 120 0.3 #> 121 0.3 #> 122 0.3 #> 123 0.3 #> 124 0.3 #> 125 0.3 #> 126 0.3 #> 127 0.3 #> 128 0.3 #> 129 0.3 #> 130 0.3 #> 131 0.3 #> 132 0.3 #> 133 0.3 #> 134 0.3 #> 135 0.3 #> 136 0.3 #> 137 0.3 #> 138 0.3 #> 139 0.3 #> 140 0.3 #> 141 1.7 #> 142 1.7 #> 143 1.7 #> 144 1.7 #> 145 1.7 #> 146 1.7 #> 147 1.7 #> 148 1.7 #> 149 1.7 #> 150 1.7 #> 151 1.7 #> 152 1.7 #> 153 1.7 #> 154 1.7 #> 155 1.7 #> 156 1.7 #> 157 1.7 #> 158 1.7 #> 159 1.7 #> 160 1.7 #> 161 1.7 #> 162 1.7 #> 163 1.7 #> 164 1.7 #> 165 1.7 #> 166 1.7 #> 167 1.7 #> 168 1.7 #> 169 2.8 #> 170 2.8 #> 171 2.8 #> 172 2.8 #> 173 2.8 #> 174 2.8 #> 175 2.8 #> 176 2.8 #> 177 2.8 #> 178 2.8 #> 179 2.8 #> 180 2.8 #> 181 2.8 #> 182 2.8 #> 183 2.8 #> 184 2.8 #> 185 2.8 #> 186 2.8 #> 187 2.8 #> 188 2.8 #> 189 2.8 #> 190 2.8 #> 191 2.8 #> 192 2.8 #> 193 2.8 #> 194 2.8 #> 195 2.8 #> 196 0.2 #> 197 0.2 #> 198 0.2 #> 199 0.2 #> 200 0.2 #> 201 0.2 #> 202 0.2 #> 203 0.2 #> 204 0.2 #> 205 0.2 #> 206 0.2 #> 207 0.2 #> 208 0.2 #> 209 0.2 #> 210 0.2 #> 211 0.2 #> 212 0.2 #> 213 0.2 #> 214 0.2 #> 215 0.2 #> 216 0.2 #> 217 0.2 #> 218 0.2 #> 219 0.2 #> 220 0.2 #> 221 0.2 #> 222 0.2 #> 223 0.2 #> 224 0.9 #> 225 0.9 #> 226 0.9 #> 227 0.9 #> 228 0.9 #> 229 0.9 #> 230 0.9 #> 231 0.9 #> 232 0.9 #> 233 0.9 #> 234 0.9 #> 235 0.9 #> 236 0.9 #> 237 0.9 #> 238 0.9 #> 239 0.9 #> 240 0.9 #> 241 0.9 #> 242 0.9 #> 243 0.9 #> 244 0.9 #> 245 0.9 #> 246 0.9 #> 247 0.9 #> 248 0.9 #> 249 0.9 #> 250 0.9 #> 251 0.9 #> 252 1.0 #> 253 1.0 #> 254 1.0 #> 255 1.0 #> 256 1.0 #> 257 1.0 #> 258 1.0 #> 259 1.0 #> 260 1.0 #> 261 1.0 #> 262 1.0 #> 263 1.0 #> 264 1.0 #> 265 1.0 #> 266 1.0 #> 267 1.0 #> 268 1.0 #> 269 1.0 #> 270 1.0 #> 271 1.0 #> 272 1.0 #> 273 1.0 #> 274 1.0 #> 275 1.0 #> 276 1.0 #> 277 1.0 #> 278 1.0 #> 279 1.0 #> 280 0.6 #> 281 0.6 #> 282 0.6 #> 283 0.6 #> 284 0.6 #> 285 0.6 #> 286 0.6 #> 287 0.6 #> 288 0.6 #> 289 0.6 #> 290 0.6 #> 291 0.6 #> 292 0.6 #> 293 0.6 #> 294 0.6 #> 295 0.6 #> 296 0.6 #> 297 0.6 #> 298 0.6 #> 299 0.6 #> 300 0.6 #> 301 0.6 #> 302 0.6 #> 303 0.6 #> 304 0.6 #> 305 0.6 #> 306 0.6 #> 307 0.6 #> 308 1.6 #> 309 1.6 #> 310 1.6 #> 311 1.6 #> 312 1.6 #> 313 1.6 #> 314 1.6 #> 315 1.6 #> 316 1.6 #> 317 1.6 #> 318 1.6 #> 319 1.6 #> 320 1.6 #> 321 1.6 #> 322 1.6 #> 323 1.6 #> 324 1.6 #> 325 1.6 #> 326 1.6 #> 327 1.6 #> 328 1.6 #> 329 1.6 #> 330 1.6 #> 331 1.6 #> 332 1.6 #> 333 1.6 #> 334 1.6 #> 335 1.6 #> 336 0.9 #> 337 0.9 #> 338 0.9 #> 339 0.9 #> 340 0.9 #> 341 0.9 #> 342 0.9 #> 343 0.9 #> 344 0.9 #> 345 0.9 #> 346 0.9 #> 347 0.9 #> 348 0.9 #> 349 0.9 #> 350 0.9 #> 351 0.9 #> 352 0.9 #> 353 0.9 #> 354 0.9 #> 355 0.9 #> 356 0.9 #> 357 0.9 #> 358 0.9 #> 359 0.9 #> 360 0.9 #> 361 0.9 #> 362 0.9 #> 363 0.9 #> 364 1.5 #> 365 1.5 #> 366 1.5 #> 367 1.5 #> 368 1.5 #> 369 1.5 #> 370 1.5 #> 371 1.5 #> 372 1.5 #> 373 1.5 #> 374 1.5 #> 375 1.5 #> 376 1.5 #> 377 1.5 #> 378 1.5 #> 379 1.5 #> 380 1.5 #> 381 1.5 #> 382 1.5 #> 383 1.5 #> 384 1.5 #> 385 1.5 #> 386 1.5 #> 387 1.5 #> 388 1.5 #> 389 1.5 #> 390 1.5 #> 391 1.5 #> 392 1.0 #> 393 1.0 #> 394 1.0 #> 395 1.0 #> 396 1.0 #> 397 1.0 #> 398 1.0 #> 399 1.0 #> 400 1.0 #> 401 1.0 #> 402 1.0 #> 403 1.0 #> 404 1.0 #> 405 1.0 #> 406 1.0 #> 407 1.0 #> 408 1.0 #> 409 1.0 #> 410 1.0 #> 411 1.0 #> 412 1.0 #> 413 1.0 #> 414 1.0 #> 415 1.0 #> 416 1.0 #> 417 1.0 #> 418 1.0 #> 419 1.0 #> 420 1.9 #> 421 1.9 #> 422 1.9 #> 423 1.9 #> 424 1.9 #> 425 1.9 #> 426 1.9 #> 427 1.9 #> 428 1.9 #> 429 1.9 #> 430 1.9 #> 431 1.9 #> 432 1.9 #> 433 1.9 #> 434 1.9 #> 435 1.9 #> 436 1.9 #> 437 1.9 #> 438 1.9 #> 439 1.9 #> 440 1.9 #> 441 1.9 #> 442 1.9 #> 443 1.9 #> 444 1.9 #> 445 1.9 #> 446 1.9 #> 447 1.9 #> 448 3.9 #> 449 3.9 #> 450 3.9 #> 451 3.9 #> 452 3.9 #> 453 3.9 #> 454 3.9 #> 455 3.9 #> 456 3.9 #> 457 3.9 #> 458 3.9 #> 459 3.9 #> 460 3.9 #> 461 3.9 #> 462 3.9 #> 463 3.9 #> 464 3.9 #> 465 3.9 #> 466 3.9 #> 467 3.9 #> 468 3.9 #> 469 3.9 #> 470 3.9 #> 471 3.9 #> 472 3.9 #> 473 3.9 #> 474 3.9 #> 475 3.9 #> 476 1.0 #> 477 1.0 #> 478 1.0 #> 479 1.0 #> 480 1.0 #> 481 1.0 #> 482 1.0 #> 483 1.0 #> 484 1.0 #> 485 1.0 #> 486 1.0 #> 487 1.0 #> 488 1.0 #> 489 1.0 #> 490 1.0 #> 491 1.0 #> 492 1.0 #> 493 1.0 #> 494 1.0 #> 495 1.0 #> 496 1.0 #> 497 1.0 #> 498 1.0 #> 499 1.0 #> 500 1.0 #> 501 1.0 #> 502 1.0 #> 503 1.0 #> 504 2.5 #> 505 2.5 #> 506 2.5 #> 507 2.5 #> 508 2.5 #> 509 2.5 #> 510 2.5 #> 511 2.5 #> 512 2.5 #> 513 2.5 #> 514 2.5 #> 515 2.5 #> 516 2.5 #> 517 2.5 #> 518 2.5 #> 519 2.5 #> 520 2.5 #> 521 2.5 #> 522 2.5 #> 523 2.5 #> 524 2.5 #> 525 2.5 #> 526 2.5 #> 527 2.5 #> 528 2.5 #> 529 2.5 #> 530 2.5 #> 531 2.5 #> 532 0.3 #> 533 0.3 #> 534 0.3 #> 535 0.3 #> 536 0.3 #> 537 0.3 #> 538 0.3 #> 539 0.3 #> 540 0.3 #> 541 0.3 #> 542 0.3 #> 543 0.3 #> 544 0.3 #> 545 0.3 #> 546 0.3 #> 547 0.3 #> 548 0.3 #> 549 0.3 #> 550 0.3 #> 551 0.3 #> 552 0.3 #> 553 0.3 #> 554 0.3 #> 555 0.3 #> 556 0.3 #> 557 0.3 #> 558 0.3 #> 559 0.3 #> 560 0.9 #> 561 0.9 #> 562 0.9 #> 563 0.9 #> 564 0.9 #> 565 0.9 #> 566 0.9 #> 567 0.9 #> 568 0.9 #> 569 0.9 #> 570 0.9 #> 571 0.9 #> 572 0.9 #> 573 0.9 #> 574 0.9 #> 575 0.9 #> 576 0.9 #> 577 0.9 #> 578 0.9 #> 579 0.9 #> 580 0.9 #> 581 0.9 #> 582 0.9 #> 583 0.9 #> 584 0.9 #> 585 0.9 #> 586 0.9 #> 587 0.9 #> 588 1.0 #> 589 1.0 #> 590 1.0 #> 591 1.0 #> 592 1.0 #> 593 1.0 #> 594 1.0 #> 595 1.0 #> 596 1.0 #> 597 1.0 #> 598 1.0 #> 599 1.0 #> 600 1.0 #> 601 1.0 #> 602 1.0 #> 603 1.0 #> 604 1.0 #> 605 1.0 #> 606 1.0 #> 607 1.0 #> 608 1.0 #> 609 1.0 #> 610 1.0 #> 611 1.0 #> 612 1.0 #> 613 1.0 #> 614 1.0 #> 615 1.0 #> 616 1.3 #> 617 1.3 #> 618 1.3 #> 619 1.3 #> 620 1.3 #> 621 1.3 #> 622 1.3 #> 623 1.3 #> 624 1.3 #> 625 1.3 #> 626 1.3 #> 627 1.3 #> 628 1.3 #> 629 1.3 #> 630 1.3 #> 631 1.3 #> 632 1.3 #> 633 1.3 #> 634 1.3 #> 635 1.3 #> 636 1.3 #> 637 1.3 #> 638 1.3 #> 639 1.3 #> 640 1.3 #> 641 1.3 #> 642 1.3 #> 643 1.3 #> 644 0.4 #> 645 0.4 #> 646 0.4 #> 647 0.4 #> 648 0.4 #> 649 0.4 #> 650 0.4 #> 651 0.4 #> 652 0.4 #> 653 0.4 #> 654 0.4 #> 655 0.4 #> 656 0.4 #> 657 0.4 #> 658 0.4 #> 659 0.4 #> 660 0.4 #> 661 0.4 #> 662 0.4 #> 663 0.4 #> 664 0.4 #> 665 0.4 #> 666 0.4 #> 667 0.4 #> 668 0.4 #> 669 0.4 #> 670 0.4 #> 671 0.4 #> 672 1.1 #> 673 1.1 #> 674 1.1 #> 675 1.1 #> 676 1.1 #> 677 1.1 #> 678 1.1 #> 679 1.1 #> 680 1.1 #> 681 1.1 #> 682 1.1 #> 683 1.1 #> 684 1.1 #> 685 1.1 #> 686 1.1 #> 687 1.1 #> 688 1.1 #> 689 1.1 #> 690 1.1 #> 691 1.1 #> 692 1.1 #> 693 1.1 #> 694 1.1 #> 695 1.1 #> 696 1.1 #> 697 1.1 #> 698 1.1 #> 699 1.1 #> 700 4.1 #> 701 4.1 #> 702 4.1 #> 703 4.1 #> 704 4.1 #> 705 4.1 #> 706 4.1 #> 707 4.1 #> 708 4.1 #> 709 4.1 #> 710 4.1 #> 711 4.1 #> 712 4.1 #> 713 4.1 #> 714 4.1 #> 715 4.1 #> 716 4.1 #> 717 4.1 #> 718 4.1 #> 719 4.1 #> 720 4.1 #> 721 4.1 #> 722 4.1 #> 723 4.1 #> 724 4.1 #> 725 4.1 #> 726 4.1 #> 727 4.1 #> 728 1.2 #> 729 1.2 #> 730 1.2 #> 731 1.2 #> 732 1.2 #> 733 1.2 #> 734 1.2 #> 735 1.2 #> 736 1.2 #> 737 1.2 #> 738 1.2 #> 739 1.2 #> 740 1.2 #> 741 1.2 #> 742 1.2 #> 743 1.2 #> 744 1.2 #> 745 1.2 #> 746 1.2 #> 747 1.2 #> 748 1.2 #> 749 1.2 #> 750 1.2 #> 751 1.2 #> 752 1.2 #> 753 1.2 #> 754 1.2 #> 755 1.2 #> 756 1.7 #> 757 1.7 #> 758 1.7 #> 759 1.7 #> 760 1.7 #> 761 1.7 #> 762 1.7 #> 763 1.7 #> 764 1.7 #> 765 1.7 #> 766 1.7 #> 767 1.7 #> 768 1.7 #> 769 1.7 #> 770 1.7 #> 771 1.7 #> 772 1.7 #> 773 1.7 #> 774 1.7 #> 775 1.7 #> 776 1.7 #> 777 1.7 #> 778 1.7 #> 779 1.7 #> 780 1.7 #> 781 1.7 #> 782 1.7 #> 783 1.7 #> 784 0.6 #> 785 0.6 #> 786 0.6 #> 787 0.6 #> 788 0.6 #> 789 0.6 #> 790 0.6 #> 791 0.6 #> 792 0.6 #> 793 0.6 #> 794 0.6 #> 795 0.6 #> 796 0.6 #> 797 0.6 #> 798 0.6 #> 799 0.6 #> 800 0.6 #> 801 0.6 #> 802 0.6 #> 803 0.6 #> 804 0.6 #> 805 0.6 #> 806 0.6 #> 807 0.6 #> 808 0.6 #> 809 0.6 #> 810 0.6 #> 811 0.6 #> 812 1.2 #> 813 1.2 #> 814 1.2 #> 815 1.2 #> 816 1.2 #> 817 1.2 #> 818 1.2 #> 819 1.2 #> 820 1.2 #> 821 1.2 #> 822 1.2 #> 823 1.2 #> 824 1.2 #> 825 1.2 #> 826 1.2 #> 827 1.2 #> 828 1.2 #> 829 1.2 #> 830 1.2 #> 831 1.2 #> 832 1.2 #> 833 1.2 #> 834 1.2 #> 835 1.2 #> 836 1.2 #> 837 1.2 #> 838 1.2 #> 839 1.2 #> 840 1.3 #> 841 1.3 #> 842 1.3 #> 843 1.3 #> 844 1.3 #> 845 1.3 #> 846 1.3 #> 847 1.3 #> 848 1.3 #> 849 1.3 #> 850 1.3 #> 851 1.3 #> 852 1.3 #> 853 1.3 #> 854 1.3 #> 855 1.3 #> 856 1.3 #> 857 1.3 #> 858 1.3 #> 859 1.3 #> 860 1.3 #> 861 1.3 #> 862 1.3 #> 863 1.3 #> 864 1.3 #> 865 1.3 #> 866 1.3 #> 867 1.4 #> 868 1.4 #> 869 1.4 #> 870 1.4 #> 871 1.4 #> 872 1.4 #> 873 1.4 #> 874 1.4 #> 875 1.4 #> 876 1.4 #> 877 1.4 #> 878 1.4 #> 879 1.4 #> 880 1.4 #> 881 1.4 #> 882 1.4 #> 883 1.4 #> 884 1.4 #> 885 1.4 #> 886 1.4 #> 887 1.4 #> 888 1.4 #> 889 1.4 #> 890 1.4 #> 891 1.4 #> 892 1.4 #> 893 1.4 #> 894 1.4 #> 895 1.0 #> 896 1.0 #> 897 1.0 #> 898 1.0 #> 899 1.0 #> 900 1.0 #> 901 1.0 #> 902 1.0 #> 903 1.0 #> 904 1.0 #> 905 1.0 #> 906 1.0 #> 907 1.0 #> 908 1.0 #> 909 1.0 #> 910 1.0 #> 911 1.0 #> 912 1.0 #> 913 1.0 #> 914 1.0 #> 915 1.0 #> 916 1.0 #> 917 1.0 #> 918 1.0 #> 919 1.0 #> 920 1.0 #> 921 1.0 #> 922 1.0 #> 923 1.8 #> 924 1.8 #> 925 1.8 #> 926 1.8 #> 927 1.8 #> 928 1.8 #> 929 1.8 #> 930 1.8 #> 931 1.8 #> 932 1.8 #> 933 1.8 #> 934 1.8 #> 935 1.8 #> 936 1.8 #> 937 1.8 #> 938 1.8 #> 939 1.8 #> 940 1.8 #> 941 1.8 #> 942 1.8 #> 943 1.8 #> 944 1.8 #> 945 1.8 #> 946 1.8 #> 947 1.8 #> 948 1.8 #> 949 1.8 #> 950 1.8 #> 951 0.5 #> 952 0.5 #> 953 0.5 #> 954 0.5 #> 955 0.5 #> 956 0.5 #> 957 0.5 #> 958 0.5 #> 959 0.5 #> 960 0.5 #> 961 0.5 #> 962 0.5 #> 963 0.5 #> 964 0.5 #> 965 0.5 #> 966 0.5 #> 967 0.5 #> 968 0.5 #> 969 0.5 #> 970 0.5 #> 971 0.5 #> 972 0.5 #> 973 0.5 #> 974 0.5 #> 975 0.5 #> 976 0.5 #> 977 0.5 #> 978 0.5 #> 979 0.8 #> 980 0.8 #> 981 0.8 #> 982 0.8 #> 983 0.8 #> 984 0.8 #> 985 0.8 #> 986 0.8 #> 987 0.8 #> 988 0.8 #> 989 0.8 #> 990 0.8 #> 991 0.8 #> 992 0.8 #> 993 0.8 #> 994 0.8 #> 995 0.8 #> 996 0.8 #> 997 0.8 #> 998 0.8 #> 999 0.8 #> 1000 0.8 #> 1001 0.8 #> 1002 0.8 #> 1003 0.8 #> 1004 0.8 #> 1005 0.8 #> 1006 0.8 #> 1007 0.8 #> 1008 0.8 #> 1009 0.8 #> 1010 0.8 #> 1011 0.8 #> 1012 0.8 #> 1013 0.8 #> 1014 0.8 #> 1015 0.8 #> 1016 0.8 #> 1017 0.8 #> 1018 0.8 #> 1019 0.8 #> 1020 0.8 #> 1021 0.8 #> 1022 0.8 #> 1023 0.8 #> 1024 0.8 #> 1025 0.8 #> 1026 0.8 #> 1027 0.8 #> 1028 0.8 #> 1029 0.8 #> 1030 0.8 #> 1031 0.8 #> 1032 0.8 #> 1033 0.8 #> 1034 0.8 #> 1035 1.9 #> 1036 1.9 #> 1037 1.9 #> 1038 1.9 #> 1039 1.9 #> 1040 1.9 #> 1041 1.9 #> 1042 1.9 #> 1043 1.9 #> 1044 1.9 #> 1045 1.9 #> 1046 1.9 #> 1047 1.9 #> 1048 1.9 #> 1049 1.9 #> 1050 1.9 #> 1051 1.9 #> 1052 1.9 #> 1053 1.9 #> 1054 1.9 #> 1055 1.9 #> 1056 1.9 #> 1057 1.9 #> 1058 1.9 #> 1059 1.9 #> 1060 1.9 #> 1061 1.9 #> 1062 1.9 #> 1063 1.0 #> 1064 1.0 #> 1065 1.0 #> 1066 1.0 #> 1067 1.0 #> 1068 1.0 #> 1069 1.0 #> 1070 1.0 #> 1071 1.0 #> 1072 1.0 #> 1073 1.0 #> 1074 1.0 #> 1075 1.0 #> 1076 1.0 #> 1077 1.0 #> 1078 1.0 #> 1079 1.0 #> 1080 1.0 #> 1081 1.0 #> 1082 1.0 #> 1083 1.0 #> 1084 1.0 #> 1085 1.0 #> 1086 1.0 #> 1087 1.0 #> 1088 1.0 #> 1089 1.0 #> 1090 1.0 #> 1091 0.2 #> 1092 0.2 #> 1093 0.2 #> 1094 0.2 #> 1095 0.2 #> 1096 0.2 #> 1097 0.2 #> 1098 0.2 #> 1099 0.2 #> 1100 0.2 #> 1101 0.2 #> 1102 0.2 #> 1103 0.2 #> 1104 0.2 #> 1105 0.2 #> 1106 0.2 #> 1107 0.2 #> 1108 0.2 #> 1109 0.2 #> 1110 0.2 #> 1111 0.2 #> 1112 0.2 #> 1113 0.2 #> 1114 0.2 #> 1115 0.2 #> 1116 0.2 #> 1117 0.2 #> 1118 0.2 #> 1119 1.3 #> 1120 1.3 #> 1121 1.3 #> 1122 1.3 #> 1123 1.3 #> 1124 1.3 #> 1125 1.3 #> 1126 1.3 #> 1127 1.3 #> 1128 1.3 #> 1129 1.3 #> 1130 1.3 #> 1131 1.3 #> 1132 1.3 #> 1133 1.3 #> 1134 1.3 #> 1135 1.3 #> 1136 1.3 #> 1137 1.3 #> 1138 1.3 #> 1139 1.3 #> 1140 1.3 #> 1141 1.3 #> 1142 1.3 #> 1143 1.3 #> 1144 1.3 #> 1145 1.3 #> 1146 1.3 #> 1147 0.3 #> 1148 0.3 #> 1149 0.3 #> 1150 0.3 #> 1151 0.3 #> 1152 0.3 #> 1153 0.3 #> 1154 0.3 #> 1155 0.3 #> 1156 0.3 #> 1157 0.3 #> 1158 0.3 #> 1159 0.3 #> 1160 0.3 #> 1161 0.3 #> 1162 0.3 #> 1163 0.3 #> 1164 0.3 #> 1165 0.3 #> 1166 0.3 #> 1167 0.3 #> 1168 0.3 #> 1169 0.3 #> 1170 0.3 #> 1171 0.3 #> 1172 0.3 #> 1173 0.3 #> 1174 0.3 #> 1175 2.1 #> 1176 2.1 #> 1177 2.1 #> 1178 2.1 #> 1179 2.1 #> 1180 2.1 #> 1181 2.1 #> 1182 2.1 #> 1183 2.1 #> 1184 2.1 #> 1185 2.1 #> 1186 2.1 #> 1187 2.1 #> 1188 2.1 #> 1189 2.1 #> 1190 2.1 #> 1191 2.1 #> 1192 2.1 #> 1193 2.1 #> 1194 2.1 #> 1195 2.1 #> 1196 2.1 #> 1197 2.1 #> 1198 2.1 #> 1199 2.1 #> 1200 2.1 #> 1201 2.1 #> 1202 2.1 #> 1203 1.1 #> 1204 1.1 #> 1205 1.1 #> 1206 1.1 #> 1207 1.1 #> 1208 1.1 #> 1209 1.1 #> 1210 1.1 #> 1211 1.1 #> 1212 1.1 #> 1213 1.1 #> 1214 1.1 #> 1215 1.1 #> 1216 1.1 #> 1217 1.1 #> 1218 1.1 #> 1219 1.1 #> 1220 1.1 #> 1221 1.1 #> 1222 1.1 #> 1223 1.1 #> 1224 1.1 #> 1225 1.1 #> 1226 1.1 #> 1227 1.1 #> 1228 1.1 #> 1229 1.1 #> 1230 1.1 #> 1231 0.4 #> 1232 0.4 #> 1233 0.4 #> 1234 0.4 #> 1235 0.4 #> 1236 0.4 #> 1237 0.4 #> 1238 0.4 #> 1239 0.4 #> 1240 0.4 #> 1241 0.4 #> 1242 0.4 #> 1243 0.4 #> 1244 0.4 #> 1245 0.4 #> 1246 0.4 #> 1247 0.4 #> 1248 0.4 #> 1249 0.4 #> 1250 0.4 #> 1251 0.4 #> 1252 0.4 #> 1253 0.4 #> 1254 0.4 #> 1255 0.4 #> 1256 0.4 #> 1257 0.4 #> 1258 0.4 #> 1259 3.2 #> 1260 3.2 #> 1261 3.2 #> 1262 3.2 #> 1263 3.2 #> 1264 3.2 #> 1265 3.2 #> 1266 3.2 #> 1267 3.2 #> 1268 3.2 #> 1269 3.2 #> 1270 3.2 #> 1271 3.2 #> 1272 3.2 #> 1273 3.2 #> 1274 3.2 #> 1275 3.2 #> 1276 3.2 #> 1277 3.2 #> 1278 3.2 #> 1279 3.2 #> 1280 3.2 #> 1281 3.2 #> 1282 3.2 #> 1283 3.2 #> 1284 3.2 #> 1285 3.2 #> 1286 3.2 #> 1287 0.4 #> 1288 0.4 #> 1289 0.4 #> 1290 0.4 #> 1291 0.4 #> 1292 0.4 #> 1293 0.4 #> 1294 0.4 #> 1295 0.4 #> 1296 0.4 #> 1297 0.4 #> 1298 0.4 #> 1299 0.4 #> 1300 0.4 #> 1301 0.4 #> 1302 0.4 #> 1303 0.4 #> 1304 0.4 #> 1305 0.4 #> 1306 0.4 #> 1307 0.4 #> 1308 0.4 #> 1309 0.4 #> 1310 0.4 #> 1311 0.4 #> 1312 0.4 #> 1313 0.4 #> 1314 0.4 #> 1315 0.6 #> 1316 0.6 #> 1317 0.6 #> 1318 0.6 #> 1319 0.6 #> 1320 0.6 #> 1321 0.6 #> 1322 0.6 #> 1323 0.6 #> 1324 0.6 #> 1325 0.6 #> 1326 0.6 #> 1327 0.6 #> 1328 0.6 #> 1329 0.6 #> 1330 0.6 #> 1331 0.6 #> 1332 0.6 #> 1333 0.6 #> 1334 0.6 #> 1335 0.6 #> 1336 0.6 #> 1337 0.6 #> 1338 0.6 #> 1339 0.6 #> 1340 0.6 #> 1341 0.6 #> 1342 0.6 #> 1343 1.5 #> 1344 1.5 #> 1345 1.5 #> 1346 1.5 #> 1347 1.5 #> 1348 1.5 #> 1349 1.5 #> 1350 1.5 #> 1351 1.5 #> 1352 1.5 #> 1353 1.5 #> 1354 1.5 #> 1355 1.5 #> 1356 1.5 #> 1357 1.5 #> 1358 1.5 #> 1359 1.5 #> 1360 1.5 #> 1361 1.5 #> 1362 1.5 #> 1363 1.5 #> 1364 1.5 #> 1365 1.5 #> 1366 1.5 #> 1367 1.5 #> 1368 1.5 #> 1369 1.5 #> 1370 1.5 #> 1371 0.3 #> 1372 0.3 #> 1373 0.3 #> 1374 0.3 #> 1375 0.3 #> 1376 0.3 #> 1377 0.3 #> 1378 0.3 #> 1379 0.3 #> 1380 0.3 #> 1381 0.3 #> 1382 0.3 #> 1383 0.3 #> 1384 0.3 #> 1385 0.3 #> 1386 0.3 #> 1387 0.3 #> 1388 0.3 #> 1389 0.3 #> 1390 0.3 #> 1391 0.3 #> 1392 0.3 #> 1393 0.3 #> 1394 0.3 #> 1395 0.3 #> 1396 0.3 #> 1397 0.3 #> 1398 0.3 #> 1399 2.1 #> 1400 2.1 #> 1401 2.1 #> 1402 2.1 #> 1403 2.1 #> 1404 2.1 #> 1405 2.1 #> 1406 2.1 #> 1407 2.1 #> 1408 2.1 #> 1409 2.1 #> 1410 2.1 #> 1411 2.1 #> 1412 2.1 #> 1413 2.1 #> 1414 2.1 #> 1415 2.1 #> 1416 2.1 #> 1417 2.1 #> 1418 2.1 #> 1419 2.1 #> 1420 2.1 #> 1421 2.1 #> 1422 2.1 #> 1423 2.1 #> 1424 2.1 #> 1425 2.1 #> 1426 2.1 #> 1427 0.9 #> 1428 0.9 #> 1429 0.9 #> 1430 0.9 #> 1431 0.9 #> 1432 0.9 #> 1433 0.9 #> 1434 0.9 #> 1435 0.9 #> 1436 0.9 #> 1437 0.9 #> 1438 0.9 #> 1439 0.9 #> 1440 0.9 #> 1441 0.9 #> 1442 0.9 #> 1443 0.9 #> 1444 0.9 #> 1445 0.9 #> 1446 0.9 #> 1447 0.9 #> 1448 0.9 #> 1449 0.9 #> 1450 0.9 #> 1451 0.9 #> 1452 0.9 #> 1453 0.9 #> 1454 0.9 #> 1455 0.4 #> 1456 0.4 #> 1457 0.4 #> 1458 0.4 #> 1459 0.4 #> 1460 0.4 #> 1461 0.4 #> 1462 0.4 #> 1463 0.4 #> 1464 0.4 #> 1465 0.4 #> 1466 0.4 #> 1467 0.4 #> 1468 0.4 #> 1469 0.4 #> 1470 0.4 #> 1471 0.4 #> 1472 0.4 #> 1473 0.4 #> 1474 0.4 #> 1475 0.4 #> 1476 0.4 #> 1477 0.4 #> 1478 0.4 #> 1479 0.4 #> 1480 0.4 #> 1481 0.4 #> 1482 0.4 #> 1483 2.5 #> 1484 2.5 #> 1485 2.5 #> 1486 2.5 #> 1487 2.5 #> 1488 2.5 #> 1489 2.5 #> 1490 2.5 #> 1491 2.5 #> 1492 2.5 #> 1493 2.5 #> 1494 2.5 #> 1495 2.5 #> 1496 2.5 #> 1497 2.5 #> 1498 2.5 #> 1499 2.5 #> 1500 2.5 #> 1501 2.5 #> 1502 2.5 #> 1503 2.5 #> 1504 2.5 #> 1505 2.5 #> 1506 2.5 #> 1507 2.5 #> 1508 2.5 #> 1509 2.5 #> 1510 2.5 #> 1511 1.5 #> 1512 1.5 #> 1513 1.5 #> 1514 1.5 #> 1515 1.5 #> 1516 1.5 #> 1517 1.5 #> 1518 1.5 #> 1519 1.5 #> 1520 1.5 #> 1521 1.5 #> 1522 1.5 #> 1523 1.5 #> 1524 1.5 #> 1525 1.5 #> 1526 1.5 #> 1527 1.5 #> 1528 1.5 #> 1529 1.5 #> 1530 1.5 #> 1531 1.5 #> 1532 1.5 #> 1533 1.5 #> 1534 1.5 #> 1535 1.5 #> 1536 1.5 #> 1537 1.5 #> 1538 1.5 #> 1539 0.4 #> 1540 0.4 #> 1541 0.4 #> 1542 0.4 #> 1543 0.4 #> 1544 0.4 #> 1545 0.4 #> 1546 0.4 #> 1547 0.4 #> 1548 0.4 #> 1549 0.4 #> 1550 0.4 #> 1551 0.4 #> 1552 0.4 #> 1553 0.4 #> 1554 0.4 #> 1555 0.4 #> 1556 0.4 #> 1557 0.4 #> 1558 0.4 #> 1559 0.4 #> 1560 0.4 #> 1561 0.4 #> 1562 0.4 #> 1563 0.4 #> 1564 0.4 #> 1565 0.4 #> 1566 0.4 #> 1567 1.1 #> 1568 1.1 #> 1569 1.1 #> 1570 1.1 #> 1571 1.1 #> 1572 1.1 #> 1573 1.1 #> 1574 1.1 #> 1575 1.1 #> 1576 1.1 #> 1577 1.1 #> 1578 1.1 #> 1579 1.1 #> 1580 1.1 #> 1581 1.1 #> 1582 1.1 #> 1583 1.1 #> 1584 1.1 #> 1585 1.1 #> 1586 1.1 #> 1587 1.1 #> 1588 1.1 #> 1589 1.1 #> 1590 1.1 #> 1591 1.1 #> 1592 1.1 #> 1593 1.1 #> 1594 1.1 #> 1595 0.8 #> 1596 0.8 #> 1597 0.8 #> 1598 0.8 #> 1599 0.8 #> 1600 0.8 #> 1601 0.8 #> 1602 0.8 #> 1603 0.8 #> 1604 0.8 #> 1605 0.8 #> 1606 0.8 #> 1607 0.8 #> 1608 0.8 #> 1609 0.8 #> 1610 0.8 #> 1611 0.8 #> 1612 0.8 #> 1613 0.8 #> 1614 0.8 #> 1615 0.8 #> 1616 0.8 #> 1617 0.8 #> 1618 0.8 #> 1619 0.8 #> 1620 0.8 #> 1621 0.8 #> 1622 0.8 #> 1623 1.6 #> 1624 1.6 #> 1625 1.6 #> 1626 1.6 #> 1627 1.6 #> 1628 1.6 #> 1629 1.6 #> 1630 1.6 #> 1631 1.6 #> 1632 1.6 #> 1633 1.6 #> 1634 1.6 #> 1635 1.6 #> 1636 1.6 #> 1637 1.6 #> 1638 1.6 #> 1639 1.6 #> 1640 1.6 #> 1641 1.6 #> 1642 1.6 #> 1643 1.6 #> 1644 1.6 #> 1645 1.6 #> 1646 1.6 #> 1647 1.6 #> 1648 1.6 #> 1649 1.6 #> 1650 1.6 #> 1651 1.5 #> 1652 1.5 #> 1653 1.5 #> 1654 1.5 #> 1655 1.5 #> 1656 1.5 #> 1657 1.5 #> 1658 1.5 #> 1659 1.5 #> 1660 1.5 #> 1661 1.5 #> 1662 1.5 #> 1663 1.5 #> 1664 1.5 #> 1665 1.5 #> 1666 1.5 #> 1667 1.5 #> 1668 1.5 #> 1669 1.5 #> 1670 1.5 #> 1671 1.5 #> 1672 1.5 #> 1673 1.5 #> 1674 1.5 #> 1675 1.5 #> 1676 1.5 #> 1677 1.5 #> 1678 1.5 #> 1679 0.9 #> 1680 0.9 #> 1681 0.9 #> 1682 0.9 #> 1683 0.9 #> 1684 0.9 #> 1685 0.9 #> 1686 0.9 #> 1687 0.9 #> 1688 0.9 #> 1689 0.9 #> 1690 0.9 #> 1691 0.9 #> 1692 0.9 #> 1693 0.9 #> 1694 0.9 #> 1695 0.9 #> 1696 0.9 #> 1697 0.9 #> 1698 0.9 #> 1699 0.9 #> 1700 0.9 #> 1701 0.9 #> 1702 0.9 #> 1703 0.9 #> 1704 0.9 #> 1705 0.9 #> 1706 0.9 #> 1707 0.9 #> 1708 0.9 #> 1709 0.9 #> 1710 0.9 #> 1711 0.9 #> 1712 0.9 #> 1713 0.9 #> 1714 0.9 #> 1715 0.9 #> 1716 0.9 #> 1717 0.9 #> 1718 0.9 #> 1719 0.9 #> 1720 0.9 #> 1721 0.9 #> 1722 0.9 #> 1723 0.9 #> 1724 0.9 #> 1725 0.9 #> 1726 0.9 #> 1727 0.9 #> 1728 0.9 #> 1729 0.9 #> 1730 0.9 #> 1731 0.9 #> 1732 0.9 #> 1733 0.9 #> 1734 0.9 #> 1735 2.0 #> 1736 2.0 #> 1737 2.0 #> 1738 2.0 #> 1739 2.0 #> 1740 2.0 #> 1741 2.0 #> 1742 2.0 #> 1743 2.0 #> 1744 2.0 #> 1745 2.0 #> 1746 2.0 #> 1747 2.0 #> 1748 2.0 #> 1749 2.0 #> 1750 2.0 #> 1751 2.0 #> 1752 2.0 #> 1753 2.0 #> 1754 2.0 #> 1755 2.0 #> 1756 2.0 #> 1757 2.0 #> 1758 2.0 #> 1759 2.0 #> 1760 2.0 #> 1761 2.0 #> 1762 2.0 #> 1763 0.8 #> 1764 0.8 #> 1765 0.8 #> 1766 0.8 #> 1767 0.8 #> 1768 0.8 #> 1769 0.8 #> 1770 0.8 #> 1771 0.8 #> 1772 0.8 #> 1773 0.8 #> 1774 0.8 #> 1775 0.8 #> 1776 0.8 #> 1777 0.8 #> 1778 0.8 #> 1779 0.8 #> 1780 0.8 #> 1781 0.8 #> 1782 0.8 #> 1783 0.8 #> 1784 0.8 #> 1785 0.8 #> 1786 0.8 #> 1787 0.8 #> 1788 0.8 #> 1789 0.8 #> 1790 0.8 #> 1791 1.7 #> 1792 1.7 #> 1793 1.7 #> 1794 1.7 #> 1795 1.7 #> 1796 1.7 #> 1797 1.7 #> 1798 1.7 #> 1799 1.7 #> 1800 1.7 #> 1801 1.7 #> 1802 1.7 #> 1803 1.7 #> 1804 1.7 #> 1805 1.7 #> 1806 1.7 #> 1807 1.7 #> 1808 1.7 #> 1809 1.7 #> 1810 1.7 #> 1811 1.7 #> 1812 1.7 #> 1813 1.7 #> 1814 1.7 #> 1815 1.7 #> 1816 1.7 #> 1817 1.7 #> 1818 1.7 #> 1819 0.8 #> 1820 0.8 #> 1821 0.8 #> 1822 0.8 #> 1823 0.8 #> 1824 0.8 #> 1825 0.8 #> 1826 0.8 #> 1827 0.8 #> 1828 0.8 #> 1829 0.8 #> 1830 0.8 #> 1831 0.8 #> 1832 0.8 #> 1833 0.8 #> 1834 0.8 #> 1835 0.8 #> 1836 0.8 #> 1837 0.8 #> 1838 0.8 #> 1839 0.8 #> 1840 0.8 #> 1841 0.8 #> 1842 0.8 #> 1843 0.8 #> 1844 0.8 #> 1845 0.8 #> 1846 0.8 #> 1847 0.9 #> 1848 0.9 #> 1849 0.9 #> 1850 0.9 #> 1851 0.9 #> 1852 0.9 #> 1853 0.9 #> 1854 0.9 #> 1855 0.9 #> 1856 0.9 #> 1857 0.9 #> 1858 0.9 #> 1859 0.9 #> 1860 0.9 #> 1861 0.9 #> 1862 0.9 #> 1863 0.9 #> 1864 0.9 #> 1865 0.9 #> 1866 0.9 #> 1867 0.9 #> 1868 0.9 #> 1869 0.9 #> 1870 0.9 #> 1871 0.9 #> 1872 0.9 #> 1873 0.9 #> 1874 0.9 #> 1875 0.5 #> 1876 0.5 #> 1877 0.5 #> 1878 0.5 #> 1879 0.5 #> 1880 0.5 #> 1881 0.5 #> 1882 0.5 #> 1883 0.5 #> 1884 0.5 #> 1885 0.5 #> 1886 0.5 #> 1887 0.5 #> 1888 0.5 #> 1889 0.5 #> 1890 0.5 #> 1891 0.5 #> 1892 0.5 #> 1893 0.5 #> 1894 0.5 #> 1895 0.5 #> 1896 0.5 #> 1897 0.5 #> 1898 0.5 #> 1899 0.5 #> 1900 0.5 #> 1901 0.5 #> 1902 0.5 #> 1903 1.2 #> 1904 1.2 #> 1905 1.2 #> 1906 1.2 #> 1907 1.2 #> 1908 1.2 #> 1909 1.2 #> 1910 1.2 #> 1911 1.2 #> 1912 1.2 #> 1913 1.2 #> 1914 1.2 #> 1915 1.2 #> 1916 1.2 #> 1917 1.2 #> 1918 1.2 #> 1919 1.2 #> 1920 1.2 #> 1921 1.2 #> 1922 1.2 #> 1923 1.2 #> 1924 1.2 #> 1925 1.2 #> 1926 1.2 #> 1927 1.2 #> 1928 1.2 #> 1929 1.2 #> 1930 1.2 #> 1931 2.2 #> 1932 2.2 #> 1933 2.2 #> 1934 2.2 #> 1935 2.2 #> 1936 2.2 #> 1937 2.2 #> 1938 2.2 #> 1939 2.2 #> 1940 2.2 #> 1941 2.2 #> 1942 2.2 #> 1943 2.2 #> 1944 2.2 #> 1945 2.2 #> 1946 2.2 #> 1947 2.2 #> 1948 2.2 #> 1949 2.2 #> 1950 2.2 #> 1951 2.2 #> 1952 2.2 #> 1953 2.2 #> 1954 2.2 #> 1955 2.2 #> 1956 2.2 #> 1957 2.2 #> 1958 2.2 #> 1959 1.7 #> 1960 1.7 #> 1961 1.7 #> 1962 1.7 #> 1963 1.7 #> 1964 1.7 #> 1965 1.7 #> 1966 1.7 #> 1967 1.7 #> 1968 1.7 #> 1969 1.7 #> 1970 1.7 #> 1971 1.7 #> 1972 1.7 #> 1973 1.7 #> 1974 1.7 #> 1975 1.7 #> 1976 1.7 #> 1977 1.7 #> 1978 1.7 #> 1979 1.7 #> 1980 1.7 #> 1981 1.7 #> 1982 1.7 #> 1983 1.7 #> 1984 1.7 #> 1985 1.7 #> 1986 1.7 #> 1987 1.0 #> 1988 1.0 #> 1989 1.0 #> 1990 1.0 #> 1991 1.0 #> 1992 1.0 #> 1993 1.0 #> 1994 1.0 #> 1995 1.0 #> 1996 1.0 #> 1997 1.0 #> 1998 1.0 #> 1999 1.0 #> 2000 1.0 #> 2001 1.0 #> 2002 1.0 #> 2003 1.0 #> 2004 1.0 #> 2005 1.0 #> 2006 1.0 #> 2007 1.0 #> 2008 1.0 #> 2009 1.0 #> 2010 1.0 #> 2011 1.0 #> 2012 1.0 #> 2013 1.0 #> 2014 1.0 #> 2015 0.8 #> 2016 0.8 #> 2017 0.8 #> 2018 0.8 #> 2019 0.8 #> 2020 0.8 #> 2021 0.8 #> 2022 0.8 #> 2023 0.8 #> 2024 0.8 #> 2025 0.8 #> 2026 0.8 #> 2027 0.8 #> 2028 0.8 #> 2029 0.8 #> 2030 0.8 #> 2031 0.8 #> 2032 0.8 #> 2033 0.8 #> 2034 0.8 #> 2035 0.8 #> 2036 0.8 #> 2037 0.8 #> 2038 0.8 #> 2039 0.8 #> 2040 0.8 #> Away_Goals #> 1 #> 2 #> 3 #> 4 #> 5 #> 6 #> 7 #> 8 #> 9 #> 10 #> 11 #> 12 #> 13 #> 14 #> 15 #> 16 #> 17 #> 18 #> 19 #> 20 #> 21 #> 22 #> 23 #> 24 #> 25 #> 26 #> 27 #> 28 #> 29 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 30 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 31 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 32 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 33 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 34 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 35 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 36 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 37 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 38 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 39 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 40 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 41 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 42 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 43 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 44 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 45 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 46 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 47 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 48 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 49 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 50 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 51 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 52 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 53 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 54 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 55 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 56 Roger Martí · 38’ José Luis Morales · 54’ José Luis Morales · 90+5’ #> 57 Mario Hermoso · 45’ #> 58 Mario Hermoso · 45’ #> 59 Mario Hermoso · 45’ #> 60 Mario Hermoso · 45’ #> 61 Mario Hermoso · 45’ #> 62 Mario Hermoso · 45’ #> 63 Mario Hermoso · 45’ #> 64 Mario Hermoso · 45’ #> 65 Mario Hermoso · 45’ #> 66 Mario Hermoso · 45’ #> 67 Mario Hermoso · 45’ #> 68 Mario Hermoso · 45’ #> 69 Mario Hermoso · 45’ #> 70 Mario Hermoso · 45’ #> 71 Mario Hermoso · 45’ #> 72 Mario Hermoso · 45’ #> 73 Mario Hermoso · 45’ #> 74 Mario Hermoso · 45’ #> 75 Mario Hermoso · 45’ #> 76 Mario Hermoso · 45’ #> 77 Mario Hermoso · 45’ #> 78 Mario Hermoso · 45’ #> 79 Mario Hermoso · 45’ #> 80 Mario Hermoso · 45’ #> 81 Mario Hermoso · 45’ #> 82 Mario Hermoso · 45’ #> 83 Mario Hermoso · 45’ #> 84 Mario Hermoso · 45’ #> 85 Willian José · 40’ Juanmi · 71’ #> 86 Willian José · 40’ Juanmi · 71’ #> 87 Willian José · 40’ Juanmi · 71’ #> 88 Willian José · 40’ Juanmi · 71’ #> 89 Willian José · 40’ Juanmi · 71’ #> 90 Willian José · 40’ Juanmi · 71’ #> 91 Willian José · 40’ Juanmi · 71’ #> 92 Willian José · 40’ Juanmi · 71’ #> 93 Willian José · 40’ Juanmi · 71’ #> 94 Willian José · 40’ Juanmi · 71’ #> 95 Willian José · 40’ Juanmi · 71’ #> 96 Willian José · 40’ Juanmi · 71’ #> 97 Willian José · 40’ Juanmi · 71’ #> 98 Willian José · 40’ Juanmi · 71’ #> 99 Willian José · 40’ Juanmi · 71’ #> 100 Willian José · 40’ Juanmi · 71’ #> 101 Willian José · 40’ Juanmi · 71’ #> 102 Willian José · 40’ Juanmi · 71’ #> 103 Willian José · 40’ Juanmi · 71’ #> 104 Willian José · 40’ Juanmi · 71’ #> 105 Willian José · 40’ Juanmi · 71’ #> 106 Willian José · 40’ Juanmi · 71’ #> 107 Willian José · 40’ Juanmi · 71’ #> 108 Willian José · 40’ Juanmi · 71’ #> 109 Willian José · 40’ Juanmi · 71’ #> 110 Willian José · 40’ Juanmi · 71’ #> 111 Willian José · 40’ Juanmi · 71’ #> 112 Willian José · 40’ Juanmi · 71’ #> 113 #> 114 #> 115 #> 116 #> 117 #> 118 #> 119 #> 120 #> 121 #> 122 #> 123 #> 124 #> 125 #> 126 #> 127 #> 128 #> 129 #> 130 #> 131 #> 132 #> 133 #> 134 #> 135 #> 136 #> 137 #> 138 #> 139 #> 140 #> 141 Álex Gallar · 5’ Álex Gallar · 40’ #> 142 Álex Gallar · 5’ Álex Gallar · 40’ #> 143 Álex Gallar · 5’ Álex Gallar · 40’ #> 144 Álex Gallar · 5’ Álex Gallar · 40’ #> 145 Álex Gallar · 5’ Álex Gallar · 40’ #> 146 Álex Gallar · 5’ Álex Gallar · 40’ #> 147 Álex Gallar · 5’ Álex Gallar · 40’ #> 148 Álex Gallar · 5’ Álex Gallar · 40’ #> 149 Álex Gallar · 5’ Álex Gallar · 40’ #> 150 Álex Gallar · 5’ Álex Gallar · 40’ #> 151 Álex Gallar · 5’ Álex Gallar · 40’ #> 152 Álex Gallar · 5’ Álex Gallar · 40’ #> 153 Álex Gallar · 5’ Álex Gallar · 40’ #> 154 Álex Gallar · 5’ Álex Gallar · 40’ #> 155 Álex Gallar · 5’ Álex Gallar · 40’ #> 156 Álex Gallar · 5’ Álex Gallar · 40’ #> 157 Álex Gallar · 5’ Álex Gallar · 40’ #> 158 Álex Gallar · 5’ Álex Gallar · 40’ #> 159 Álex Gallar · 5’ Álex Gallar · 40’ #> 160 Álex Gallar · 5’ Álex Gallar · 40’ #> 161 Álex Gallar · 5’ Álex Gallar · 40’ #> 162 Álex Gallar · 5’ Álex Gallar · 40’ #> 163 Álex Gallar · 5’ Álex Gallar · 40’ #> 164 Álex Gallar · 5’ Álex Gallar · 40’ #> 165 Álex Gallar · 5’ Álex Gallar · 40’ #> 166 Álex Gallar · 5’ Álex Gallar · 40’ #> 167 Álex Gallar · 5’ Álex Gallar · 40’ #> 168 Álex Gallar · 5’ Álex Gallar · 40’ #> 169 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 170 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 171 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 172 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 173 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 174 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 175 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 176 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 177 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 178 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 179 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 180 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 181 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 182 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 183 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 184 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 185 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 186 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 187 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 188 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 189 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 190 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 191 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 192 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 193 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 194 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 195 Franco Vázquez · 15’ André Silva · 31’ André Silva · 45+1’ André Silva · 79’ #> 196 #> 197 #> 198 #> 199 #> 200 #> 201 #> 202 #> 203 #> 204 #> 205 #> 206 #> 207 #> 208 #> 209 #> 210 #> 211 #> 212 #> 213 #> 214 #> 215 #> 216 #> 217 #> 218 #> 219 #> 220 #> 221 #> 222 #> 223 #> 224 Ángel Correa · 26’ #> 225 Ángel Correa · 26’ #> 226 Ángel Correa · 26’ #> 227 Ángel Correa · 26’ #> 228 Ángel Correa · 26’ #> 229 Ángel Correa · 26’ #> 230 Ángel Correa · 26’ #> 231 Ángel Correa · 26’ #> 232 Ángel Correa · 26’ #> 233 Ángel Correa · 26’ #> 234 Ángel Correa · 26’ #> 235 Ángel Correa · 26’ #> 236 Ángel Correa · 26’ #> 237 Ángel Correa · 26’ #> 238 Ángel Correa · 26’ #> 239 Ángel Correa · 26’ #> 240 Ángel Correa · 26’ #> 241 Ángel Correa · 26’ #> 242 Ángel Correa · 26’ #> 243 Ángel Correa · 26’ #> 244 Ángel Correa · 26’ #> 245 Ángel Correa · 26’ #> 246 Ángel Correa · 26’ #> 247 Ángel Correa · 26’ #> 248 Ángel Correa · 26’ #> 249 Ángel Correa · 26’ #> 250 Ángel Correa · 26’ #> 251 Ángel Correa · 26’ #> 252 Jonathan Silva · 33’ #> 253 Jonathan Silva · 33’ #> 254 Jonathan Silva · 33’ #> 255 Jonathan Silva · 33’ #> 256 Jonathan Silva · 33’ #> 257 Jonathan Silva · 33’ #> 258 Jonathan Silva · 33’ #> 259 Jonathan Silva · 33’ #> 260 Jonathan Silva · 33’ #> 261 Jonathan Silva · 33’ #> 262 Jonathan Silva · 33’ #> 263 Jonathan Silva · 33’ #> 264 Jonathan Silva · 33’ #> 265 Jonathan Silva · 33’ #> 266 Jonathan Silva · 33’ #> 267 Jonathan Silva · 33’ #> 268 Jonathan Silva · 33’ #> 269 Jonathan Silva · 33’ #> 270 Jonathan Silva · 33’ #> 271 Jonathan Silva · 33’ #> 272 Jonathan Silva · 33’ #> 273 Jonathan Silva · 33’ #> 274 Jonathan Silva · 33’ #> 275 Jonathan Silva · 33’ #> 276 Jonathan Silva · 33’ #> 277 Jonathan Silva · 33’ #> 278 Jonathan Silva · 33’ #> 279 Jonathan Silva · 33’ #> 280 #> 281 #> 282 #> 283 #> 284 #> 285 #> 286 #> 287 #> 288 #> 289 #> 290 #> 291 #> 292 #> 293 #> 294 #> 295 #> 296 #> 297 #> 298 #> 299 #> 300 #> 301 #> 302 #> 303 #> 304 #> 305 #> 306 #> 307 #> 308 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 309 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 310 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 311 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 312 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 313 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 314 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 315 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 316 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 317 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 318 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 319 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 320 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 321 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 322 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 323 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 324 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 325 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 326 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 327 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 328 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 329 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 330 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 331 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 332 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 333 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 334 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 335 David Zurutuza · 11’ Asier Illarramendi · 17’ #> 336 #> 337 #> 338 #> 339 #> 340 #> 341 #> 342 #> 343 #> 344 #> 345 #> 346 #> 347 #> 348 #> 349 #> 350 #> 351 #> 352 #> 353 #> 354 #> 355 #> 356 #> 357 #> 358 #> 359 #> 360 #> 361 #> 362 #> 363 #> 364 #> 365 #> 366 #> 367 #> 368 #> 369 #> 370 #> 371 #> 372 #> 373 #> 374 #> 375 #> 376 #> 377 #> 378 #> 379 #> 380 #> 381 #> 382 #> 383 #> 384 #> 385 #> 386 #> 387 #> 388 #> 389 #> 390 #> 391 #> 392 Ousmane Dembélé · 57’ #> 393 Ousmane Dembélé · 57’ #> 394 Ousmane Dembélé · 57’ #> 395 Ousmane Dembélé · 57’ #> 396 Ousmane Dembélé · 57’ #> 397 Ousmane Dembélé · 57’ #> 398 Ousmane Dembélé · 57’ #> 399 Ousmane Dembélé · 57’ #> 400 Ousmane Dembélé · 57’ #> 401 Ousmane Dembélé · 57’ #> 402 Ousmane Dembélé · 57’ #> 403 Ousmane Dembélé · 57’ #> 404 Ousmane Dembélé · 57’ #> 405 Ousmane Dembélé · 57’ #> 406 Ousmane Dembélé · 57’ #> 407 Ousmane Dembélé · 57’ #> 408 Ousmane Dembélé · 57’ #> 409 Ousmane Dembélé · 57’ #> 410 Ousmane Dembélé · 57’ #> 411 Ousmane Dembélé · 57’ #> 412 Ousmane Dembélé · 57’ #> 413 Ousmane Dembélé · 57’ #> 414 Ousmane Dembélé · 57’ #> 415 Ousmane Dembélé · 57’ #> 416 Ousmane Dembélé · 57’ #> 417 Ousmane Dembélé · 57’ #> 418 Ousmane Dembélé · 57’ #> 419 Ousmane Dembélé · 57’ #> 420 #> 421 #> 422 #> 423 #> 424 #> 425 #> 426 #> 427 #> 428 #> 429 #> 430 #> 431 #> 432 #> 433 #> 434 #> 435 #> 436 #> 437 #> 438 #> 439 #> 440 #> 441 #> 442 #> 443 #> 444 #> 445 #> 446 #> 447 #> 448 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 449 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 450 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 451 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 452 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 453 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 454 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 455 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 456 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 457 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 458 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 459 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 460 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 461 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 462 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 463 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 464 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 465 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 466 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 467 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 468 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 469 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 470 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 471 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 472 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 473 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 474 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 475 Sergio Ramos (P) · 39’ Karim Benzema (P) · 52’ Gareth Bale · 59’ Karim Benzema · 80’ #> 476 #> 477 #> 478 #> 479 #> 480 #> 481 #> 482 #> 483 #> 484 #> 485 #> 486 #> 487 #> 488 #> 489 #> 490 #> 491 #> 492 #> 493 #> 494 #> 495 #> 496 #> 497 #> 498 #> 499 #> 500 #> 501 #> 502 #> 503 #> 504 Pione Sisto · 10’ Maxi Gómez · 35’ #> 505 Pione Sisto · 10’ Maxi Gómez · 35’ #> 506 Pione Sisto · 10’ Maxi Gómez · 35’ #> 507 Pione Sisto · 10’ Maxi Gómez · 35’ #> 508 Pione Sisto · 10’ Maxi Gómez · 35’ #> 509 Pione Sisto · 10’ Maxi Gómez · 35’ #> 510 Pione Sisto · 10’ Maxi Gómez · 35’ #> 511 Pione Sisto · 10’ Maxi Gómez · 35’ #> 512 Pione Sisto · 10’ Maxi Gómez · 35’ #> 513 Pione Sisto · 10’ Maxi Gómez · 35’ #> 514 Pione Sisto · 10’ Maxi Gómez · 35’ #> 515 Pione Sisto · 10’ Maxi Gómez · 35’ #> 516 Pione Sisto · 10’ Maxi Gómez · 35’ #> 517 Pione Sisto · 10’ Maxi Gómez · 35’ #> 518 Pione Sisto · 10’ Maxi Gómez · 35’ #> 519 Pione Sisto · 10’ Maxi Gómez · 35’ #> 520 Pione Sisto · 10’ Maxi Gómez · 35’ #> 521 Pione Sisto · 10’ Maxi Gómez · 35’ #> 522 Pione Sisto · 10’ Maxi Gómez · 35’ #> 523 Pione Sisto · 10’ Maxi Gómez · 35’ #> 524 Pione Sisto · 10’ Maxi Gómez · 35’ #> 525 Pione Sisto · 10’ Maxi Gómez · 35’ #> 526 Pione Sisto · 10’ Maxi Gómez · 35’ #> 527 Pione Sisto · 10’ Maxi Gómez · 35’ #> 528 Pione Sisto · 10’ Maxi Gómez · 35’ #> 529 Pione Sisto · 10’ Maxi Gómez · 35’ #> 530 Pione Sisto · 10’ Maxi Gómez · 35’ #> 531 Pione Sisto · 10’ Maxi Gómez · 35’ #> 532 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 533 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 534 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 535 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 536 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 537 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 538 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 539 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 540 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 541 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 542 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 543 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 544 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 545 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 546 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 547 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 548 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 549 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 550 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 551 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 552 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 553 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 554 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 555 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 556 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 557 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 558 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 559 Jorge Miramón · 71’ Ezequiel Ávila · 87’ #> 560 #> 561 #> 562 #> 563 #> 564 #> 565 #> 566 #> 567 #> 568 #> 569 #> 570 #> 571 #> 572 #> 573 #> 574 #> 575 #> 576 #> 577 #> 578 #> 579 #> 580 #> 581 #> 582 #> 583 #> 584 #> 585 #> 586 #> 587 #> 588 Cristhian Stuani · 54’ #> 589 Cristhian Stuani · 54’ #> 590 Cristhian Stuani · 54’ #> 591 Cristhian Stuani · 54’ #> 592 Cristhian Stuani · 54’ #> 593 Cristhian Stuani · 54’ #> 594 Cristhian Stuani · 54’ #> 595 Cristhian Stuani · 54’ #> 596 Cristhian Stuani · 54’ #> 597 Cristhian Stuani · 54’ #> 598 Cristhian Stuani · 54’ #> 599 Cristhian Stuani · 54’ #> 600 Cristhian Stuani · 54’ #> 601 Cristhian Stuani · 54’ #> 602 Cristhian Stuani · 54’ #> 603 Cristhian Stuani · 54’ #> 604 Cristhian Stuani · 54’ #> 605 Cristhian Stuani · 54’ #> 606 Cristhian Stuani · 54’ #> 607 Cristhian Stuani · 54’ #> 608 Cristhian Stuani · 54’ #> 609 Cristhian Stuani · 54’ #> 610 Cristhian Stuani · 54’ #> 611 Cristhian Stuani · 54’ #> 612 Cristhian Stuani · 54’ #> 613 Cristhian Stuani · 54’ #> 614 Cristhian Stuani · 54’ #> 615 Cristhian Stuani · 54’ #> 616 Willian José (P) · 15’ #> 617 Willian José (P) · 15’ #> 618 Willian José (P) · 15’ #> 619 Willian José (P) · 15’ #> 620 Willian José (P) · 15’ #> 621 Willian José (P) · 15’ #> 622 Willian José (P) · 15’ #> 623 Willian José (P) · 15’ #> 624 Willian José (P) · 15’ #> 625 Willian José (P) · 15’ #> 626 Willian José (P) · 15’ #> 627 Willian José (P) · 15’ #> 628 Willian José (P) · 15’ #> 629 Willian José (P) · 15’ #> 630 Willian José (P) · 15’ #> 631 Willian José (P) · 15’ #> 632 Willian José (P) · 15’ #> 633 Willian José (P) · 15’ #> 634 Willian José (P) · 15’ #> 635 Willian José (P) · 15’ #> 636 Willian José (P) · 15’ #> 637 Willian José (P) · 15’ #> 638 Willian José (P) · 15’ #> 639 Willian José (P) · 15’ #> 640 Willian José (P) · 15’ #> 641 Willian José (P) · 15’ #> 642 Willian José (P) · 15’ #> 643 Willian José (P) · 15’ #> 644 Stefan Savić · 70’ #> 645 Stefan Savić · 70’ #> 646 Stefan Savić · 70’ #> 647 Stefan Savić · 70’ #> 648 Stefan Savić · 70’ #> 649 Stefan Savić · 70’ #> 650 Stefan Savić · 70’ #> 651 Stefan Savić · 70’ #> 652 Stefan Savić · 70’ #> 653 Stefan Savić · 70’ #> 654 Stefan Savić · 70’ #> 655 Stefan Savić · 70’ #> 656 Stefan Savić · 70’ #> 657 Stefan Savić · 70’ #> 658 Stefan Savić · 70’ #> 659 Stefan Savić · 70’ #> 660 Stefan Savić · 70’ #> 661 Stefan Savić · 70’ #> 662 Stefan Savić · 70’ #> 663 Stefan Savić · 70’ #> 664 Stefan Savić · 70’ #> 665 Stefan Savić · 70’ #> 666 Stefan Savić · 70’ #> 667 Stefan Savić · 70’ #> 668 Stefan Savić · 70’ #> 669 Stefan Savić · 70’ #> 670 Stefan Savić · 70’ #> 671 Stefan Savić · 70’ #> 672 Guido Carrillo (P) · 24’ #> 673 Guido Carrillo (P) · 24’ #> 674 Guido Carrillo (P) · 24’ #> 675 Guido Carrillo (P) · 24’ #> 676 Guido Carrillo (P) · 24’ #> 677 Guido Carrillo (P) · 24’ #> 678 Guido Carrillo (P) · 24’ #> 679 Guido Carrillo (P) · 24’ #> 680 Guido Carrillo (P) · 24’ #> 681 Guido Carrillo (P) · 24’ #> 682 Guido Carrillo (P) · 24’ #> 683 Guido Carrillo (P) · 24’ #> 684 Guido Carrillo (P) · 24’ #> 685 Guido Carrillo (P) · 24’ #> 686 Guido Carrillo (P) · 24’ #> 687 Guido Carrillo (P) · 24’ #> 688 Guido Carrillo (P) · 24’ #> 689 Guido Carrillo (P) · 24’ #> 690 Guido Carrillo (P) · 24’ #> 691 Guido Carrillo (P) · 24’ #> 692 Guido Carrillo (P) · 24’ #> 693 Guido Carrillo (P) · 24’ #> 694 Guido Carrillo (P) · 24’ #> 695 Guido Carrillo (P) · 24’ #> 696 Guido Carrillo (P) · 24’ #> 697 Guido Carrillo (P) · 24’ #> 698 Guido Carrillo (P) · 24’ #> 699 Guido Carrillo (P) · 24’ #> 700 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 701 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 702 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 703 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 704 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 705 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 706 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 707 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 708 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 709 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 710 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 711 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 712 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 713 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 714 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 715 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 716 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 717 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 718 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 719 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 720 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 721 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 722 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 723 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 724 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 725 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 726 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 727 Denis Cheryshev · 16’ Daniel Parejo (P) · 52’ #> 728 Léo Baptistão (P) · 42’ #> 729 Léo Baptistão (P) · 42’ #> 730 Léo Baptistão (P) · 42’ #> 731 Léo Baptistão (P) · 42’ #> 732 Léo Baptistão (P) · 42’ #> 733 Léo Baptistão (P) · 42’ #> 734 Léo Baptistão (P) · 42’ #> 735 Léo Baptistão (P) · 42’ #> 736 Léo Baptistão (P) · 42’ #> 737 Léo Baptistão (P) · 42’ #> 738 Léo Baptistão (P) · 42’ #> 739 Léo Baptistão (P) · 42’ #> 740 Léo Baptistão (P) · 42’ #> 741 Léo Baptistão (P) · 42’ #> 742 Léo Baptistão (P) · 42’ #> 743 Léo Baptistão (P) · 42’ #> 744 Léo Baptistão (P) · 42’ #> 745 Léo Baptistão (P) · 42’ #> 746 Léo Baptistão (P) · 42’ #> 747 Léo Baptistão (P) · 42’ #> 748 Léo Baptistão (P) · 42’ #> 749 Léo Baptistão (P) · 42’ #> 750 Léo Baptistão (P) · 42’ #> 751 Léo Baptistão (P) · 42’ #> 752 Léo Baptistão (P) · 42’ #> 753 Léo Baptistão (P) · 42’ #> 754 Léo Baptistão (P) · 42’ #> 755 Léo Baptistão (P) · 42’ #> 756 Cucho · 3’ Álex Gallar · 42’ #> 757 Cucho · 3’ Álex Gallar · 42’ #> 758 Cucho · 3’ Álex Gallar · 42’ #> 759 Cucho · 3’ Álex Gallar · 42’ #> 760 Cucho · 3’ Álex Gallar · 42’ #> 761 Cucho · 3’ Álex Gallar · 42’ #> 762 Cucho · 3’ Álex Gallar · 42’ #> 763 Cucho · 3’ Álex Gallar · 42’ #> 764 Cucho · 3’ Álex Gallar · 42’ #> 765 Cucho · 3’ Álex Gallar · 42’ #> 766 Cucho · 3’ Álex Gallar · 42’ #> 767 Cucho · 3’ Álex Gallar · 42’ #> 768 Cucho · 3’ Álex Gallar · 42’ #> 769 Cucho · 3’ Álex Gallar · 42’ #> 770 Cucho · 3’ Álex Gallar · 42’ #> 771 Cucho · 3’ Álex Gallar · 42’ #> 772 Cucho · 3’ Álex Gallar · 42’ #> 773 Cucho · 3’ Álex Gallar · 42’ #> 774 Cucho · 3’ Álex Gallar · 42’ #> 775 Cucho · 3’ Álex Gallar · 42’ #> 776 Cucho · 3’ Álex Gallar · 42’ #> 777 Cucho · 3’ Álex Gallar · 42’ #> 778 Cucho · 3’ Álex Gallar · 42’ #> 779 Cucho · 3’ Álex Gallar · 42’ #> 780 Cucho · 3’ Álex Gallar · 42’ #> 781 Cucho · 3’ Álex Gallar · 42’ #> 782 Cucho · 3’ Álex Gallar · 42’ #> 783 Cucho · 3’ Álex Gallar · 42’ #> 784 Roque Mesa · 66’ #> 785 Roque Mesa · 66’ #> 786 Roque Mesa · 66’ #> 787 Roque Mesa · 66’ #> 788 Roque Mesa · 66’ #> 789 Roque Mesa · 66’ #> 790 Roque Mesa · 66’ #> 791 Roque Mesa · 66’ #> 792 Roque Mesa · 66’ #> 793 Roque Mesa · 66’ #> 794 Roque Mesa · 66’ #> 795 Roque Mesa · 66’ #> 796 Roque Mesa · 66’ #> 797 Roque Mesa · 66’ #> 798 Roque Mesa · 66’ #> 799 Roque Mesa · 66’ #> 800 Roque Mesa · 66’ #> 801 Roque Mesa · 66’ #> 802 Roque Mesa · 66’ #> 803 Roque Mesa · 66’ #> 804 Roque Mesa · 66’ #> 805 Roque Mesa · 66’ #> 806 Roque Mesa · 66’ #> 807 Roque Mesa · 66’ #> 808 Roque Mesa · 66’ #> 809 Roque Mesa · 66’ #> 810 Roque Mesa · 66’ #> 811 Roque Mesa · 66’ #> 812 Giannelli Imbula · 29’ #> 813 Giannelli Imbula · 29’ #> 814 Giannelli Imbula · 29’ #> 815 Giannelli Imbula · 29’ #> 816 Giannelli Imbula · 29’ #> 817 Giannelli Imbula · 29’ #> 818 Giannelli Imbula · 29’ #> 819 Giannelli Imbula · 29’ #> 820 Giannelli Imbula · 29’ #> 821 Giannelli Imbula · 29’ #> 822 Giannelli Imbula · 29’ #> 823 Giannelli Imbula · 29’ #> 824 Giannelli Imbula · 29’ #> 825 Giannelli Imbula · 29’ #> 826 Giannelli Imbula · 29’ #> 827 Giannelli Imbula · 29’ #> 828 Giannelli Imbula · 29’ #> 829 Giannelli Imbula · 29’ #> 830 Giannelli Imbula · 29’ #> 831 Giannelli Imbula · 29’ #> 832 Giannelli Imbula · 29’ #> 833 Giannelli Imbula · 29’ #> 834 Giannelli Imbula · 29’ #> 835 Giannelli Imbula · 29’ #> 836 Giannelli Imbula · 29’ #> 837 Giannelli Imbula · 29’ #> 838 Giannelli Imbula · 29’ #> 839 Giannelli Imbula · 29’ #> 840 Sergi Enrich · 87’ #> 841 Sergi Enrich · 87’ #> 842 Sergi Enrich · 87’ #> 843 Sergi Enrich · 87’ #> 844 Sergi Enrich · 87’ #> 845 Sergi Enrich · 87’ #> 846 Sergi Enrich · 87’ #> 847 Sergi Enrich · 87’ #> 848 Sergi Enrich · 87’ #> 849 Sergi Enrich · 87’ #> 850 Sergi Enrich · 87’ #> 851 Sergi Enrich · 87’ #> 852 Sergi Enrich · 87’ #> 853 Sergi Enrich · 87’ #> 854 Sergi Enrich · 87’ #> 855 Sergi Enrich · 87’ #> 856 Sergi Enrich · 87’ #> 857 Sergi Enrich · 87’ #> 858 Sergi Enrich · 87’ #> 859 Sergi Enrich · 87’ #> 860 Sergi Enrich · 87’ #> 861 Sergi Enrich · 87’ #> 862 Sergi Enrich · 87’ #> 863 Sergi Enrich · 87’ #> 864 Sergi Enrich · 87’ #> 865 Sergi Enrich · 87’ #> 866 Sergi Enrich · 87’ #> 867 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 868 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 869 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 870 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 871 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 872 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 873 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 874 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 875 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 876 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 877 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 878 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 879 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 880 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 881 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 882 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 883 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 884 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 885 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 886 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 887 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 888 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 889 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 890 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 891 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 892 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 893 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 894 Luis Suárez · 63’ Ousmane Dembélé · 66’ #> 895 #> 896 #> 897 #> 898 #> 899 #> 900 #> 901 #> 902 #> 903 #> 904 #> 905 #> 906 #> 907 #> 908 #> 909 #> 910 #> 911 #> 912 #> 913 #> 914 #> 915 #> 916 #> 917 #> 918 #> 919 #> 920 #> 921 #> 922 #> 923 Isco · 63’ #> 924 Isco · 63’ #> 925 Isco · 63’ #> 926 Isco · 63’ #> 927 Isco · 63’ #> 928 Isco · 63’ #> 929 Isco · 63’ #> 930 Isco · 63’ #> 931 Isco · 63’ #> 932 Isco · 63’ #> 933 Isco · 63’ #> 934 Isco · 63’ #> 935 Isco · 63’ #> 936 Isco · 63’ #> 937 Isco · 63’ #> 938 Isco · 63’ #> 939 Isco · 63’ #> 940 Isco · 63’ #> 941 Isco · 63’ #> 942 Isco · 63’ #> 943 Isco · 63’ #> 944 Isco · 63’ #> 945 Isco · 63’ #> 946 Isco · 63’ #> 947 Isco · 63’ #> 948 Isco · 63’ #> 949 Isco · 63’ #> 950 Isco · 63’ #> 951 Carlos Bacca · 65’ #> 952 Carlos Bacca · 65’ #> 953 Carlos Bacca · 65’ #> 954 Carlos Bacca · 65’ #> 955 Carlos Bacca · 65’ #> 956 Carlos Bacca · 65’ #> 957 Carlos Bacca · 65’ #> 958 Carlos Bacca · 65’ #> 959 Carlos Bacca · 65’ #> 960 Carlos Bacca · 65’ #> 961 Carlos Bacca · 65’ #> 962 Carlos Bacca · 65’ #> 963 Carlos Bacca · 65’ #> 964 Carlos Bacca · 65’ #> 965 Carlos Bacca · 65’ #> 966 Carlos Bacca · 65’ #> 967 Carlos Bacca · 65’ #> 968 Carlos Bacca · 65’ #> 969 Carlos Bacca · 65’ #> 970 Carlos Bacca · 65’ #> 971 Carlos Bacca · 65’ #> 972 Carlos Bacca · 65’ #> 973 Carlos Bacca · 65’ #> 974 Carlos Bacca · 65’ #> 975 Carlos Bacca · 65’ #> 976 Carlos Bacca · 65’ #> 977 Carlos Bacca · 65’ #> 978 Carlos Bacca · 65’ #> 979 #> 980 #> 981 #> 982 #> 983 #> 984 #> 985 #> 986 #> 987 #> 988 #> 989 #> 990 #> 991 #> 992 #> 993 #> 994 #> 995 #> 996 #> 997 #> 998 #> 999 #> 1000 #> 1001 #> 1002 #> 1003 #> 1004 #> 1005 #> 1006 #> 1007 Ibai Gómez · 90+3’ #> 1008 Ibai Gómez · 90+3’ #> 1009 Ibai Gómez · 90+3’ #> 1010 Ibai Gómez · 90+3’ #> 1011 Ibai Gómez · 90+3’ #> 1012 Ibai Gómez · 90+3’ #> 1013 Ibai Gómez · 90+3’ #> 1014 Ibai Gómez · 90+3’ #> 1015 Ibai Gómez · 90+3’ #> 1016 Ibai Gómez · 90+3’ #> 1017 Ibai Gómez · 90+3’ #> 1018 Ibai Gómez · 90+3’ #> 1019 Ibai Gómez · 90+3’ #> 1020 Ibai Gómez · 90+3’ #> 1021 Ibai Gómez · 90+3’ #> 1022 Ibai Gómez · 90+3’ #> 1023 Ibai Gómez · 90+3’ #> 1024 Ibai Gómez · 90+3’ #> 1025 Ibai Gómez · 90+3’ #> 1026 Ibai Gómez · 90+3’ #> 1027 Ibai Gómez · 90+3’ #> 1028 Ibai Gómez · 90+3’ #> 1029 Ibai Gómez · 90+3’ #> 1030 Ibai Gómez · 90+3’ #> 1031 Ibai Gómez · 90+3’ #> 1032 Ibai Gómez · 90+3’ #> 1033 Ibai Gómez · 90+3’ #> 1034 Ibai Gómez · 90+3’ #> 1035 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1036 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1037 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1038 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1039 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1040 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1041 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1042 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1043 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1044 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1045 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1046 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1047 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1048 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1049 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1050 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1051 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1052 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1053 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1054 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1055 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1056 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1057 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1058 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1059 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1060 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1061 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1062 Ángel Rodríguez · 3’ Ángel Rodríguez · 38’ #> 1063 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1064 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1065 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1066 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1067 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1068 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1069 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1070 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1071 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1072 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1073 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1074 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1075 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1076 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1077 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1078 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1079 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1080 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1081 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1082 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1083 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1084 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1085 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1086 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1087 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1088 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1089 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1090 Iago Aspas · 34’ Sofiane Boufal · 87’ Gustavo Cabral · 90+2’ #> 1091 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1092 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1093 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1094 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1095 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1096 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1097 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1098 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1099 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1100 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1101 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1102 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1103 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1104 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1105 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1106 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1107 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1108 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1109 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1110 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1111 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1112 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1113 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1114 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1115 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1116 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1117 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1118 Mikel Merino · 64’ Juanmi · 71’ Theo Hernández · 82’ #> 1119 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1120 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1121 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1122 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1123 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1124 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1125 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1126 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1127 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1128 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1129 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1130 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1131 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1132 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1133 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1134 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1135 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1136 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1137 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1138 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1139 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1140 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1141 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1142 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1143 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1144 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1145 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1146 Ximo Navarro · 8’ Ibai Gómez · 34’ Jonathan Calleri · 56’ Ibai Gómez · 77’ Burgui · 90+5’ #> 1147 #> 1148 #> 1149 #> 1150 #> 1151 #> 1152 #> 1153 #> 1154 #> 1155 #> 1156 #> 1157 #> 1158 #> 1159 #> 1160 #> 1161 #> 1162 #> 1163 #> 1164 #> 1165 #> 1166 #> 1167 #> 1168 #> 1169 #> 1170 #> 1171 #> 1172 #> 1173 #> 1174 #> 1175 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1176 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1177 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1178 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1179 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1180 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1181 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1182 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1183 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1184 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1185 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1186 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1187 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1188 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1189 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1190 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1191 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1192 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1193 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1194 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1195 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1196 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1197 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1198 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1199 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1200 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1201 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1202 Óscar Plano · 39’ Enes Ünal · 65’ Leonardo Suárez · 90+4’ #> 1203 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1204 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1205 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1206 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1207 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1208 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1209 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1210 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1211 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1212 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1213 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1214 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1215 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1216 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1217 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1218 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1219 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1220 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1221 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1222 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1223 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1224 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1225 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1226 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1227 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1228 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1229 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1230 David Soria (OG) · 14’ Thomas Lemar · 60’ #> 1231 #> 1232 #> 1233 #> 1234 #> 1235 #> 1236 #> 1237 #> 1238 #> 1239 #> 1240 #> 1241 #> 1242 #> 1243 #> 1244 #> 1245 #> 1246 #> 1247 #> 1248 #> 1249 #> 1250 #> 1251 #> 1252 #> 1253 #> 1254 #> 1255 #> 1256 #> 1257 #> 1258 #> 1259 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1260 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1261 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1262 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1263 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1264 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1265 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1266 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1267 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1268 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1269 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1270 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1271 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1272 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1273 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1274 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1275 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1276 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1277 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1278 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1279 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1280 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1281 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1282 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1283 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1284 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1285 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1286 Wissam Ben Yedder · 11’ Daniel Carriço · 21’ Wissam Ben Yedder · 35’ Wissam Ben Yedder · 45’ André Silva · 49’ Pablo Sarabia · 59’ #> 1287 Daniel Parejo · 58’ #> 1288 Daniel Parejo · 58’ #> 1289 Daniel Parejo · 58’ #> 1290 Daniel Parejo · 58’ #> 1291 Daniel Parejo · 58’ #> 1292 Daniel Parejo · 58’ #> 1293 Daniel Parejo · 58’ #> 1294 Daniel Parejo · 58’ #> 1295 Daniel Parejo · 58’ #> 1296 Daniel Parejo · 58’ #> 1297 Daniel Parejo · 58’ #> 1298 Daniel Parejo · 58’ #> 1299 Daniel Parejo · 58’ #> 1300 Daniel Parejo · 58’ #> 1301 Daniel Parejo · 58’ #> 1302 Daniel Parejo · 58’ #> 1303 Daniel Parejo · 58’ #> 1304 Daniel Parejo · 58’ #> 1305 Daniel Parejo · 58’ #> 1306 Daniel Parejo · 58’ #> 1307 Daniel Parejo · 58’ #> 1308 Daniel Parejo · 58’ #> 1309 Daniel Parejo · 58’ #> 1310 Daniel Parejo · 58’ #> 1311 Daniel Parejo · 58’ #> 1312 Daniel Parejo · 58’ #> 1313 Daniel Parejo · 58’ #> 1314 Daniel Parejo · 58’ #> 1315 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1316 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1317 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1318 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1319 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1320 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1321 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1322 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1323 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1324 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1325 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1326 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1327 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1328 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1329 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1330 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1331 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1332 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1333 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1334 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1335 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1336 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1337 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1338 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1339 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1340 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1341 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1342 Iñaki Williams · 7’ Raúl García · 18’ Markel Susaeta · 45’ #> 1343 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1344 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1345 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1346 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1347 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1348 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1349 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1350 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1351 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1352 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1353 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1354 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1355 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1356 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1357 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1358 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1359 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1360 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1361 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1362 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1363 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1364 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1365 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1366 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1367 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1368 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1369 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1370 Cristhian Stuani · 45’ Cristhian Stuani · 51’ #> 1371 #> 1372 #> 1373 #> 1374 #> 1375 #> 1376 #> 1377 #> 1378 #> 1379 #> 1380 #> 1381 #> 1382 #> 1383 #> 1384 #> 1385 #> 1386 #> 1387 #> 1388 #> 1389 #> 1390 #> 1391 #> 1392 #> 1393 #> 1394 #> 1395 #> 1396 #> 1397 #> 1398 #> 1399 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1400 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1401 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1402 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1403 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1404 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1405 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1406 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1407 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1408 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1409 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1410 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1411 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1412 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1413 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1414 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1415 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1416 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1417 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1418 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1419 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1420 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1421 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1422 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1423 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1424 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1425 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1426 Luis Advíncula · 31’ Óscar Trejo (P) · 36’ #> 1427 #> 1428 #> 1429 #> 1430 #> 1431 #> 1432 #> 1433 #> 1434 #> 1435 #> 1436 #> 1437 #> 1438 #> 1439 #> 1440 #> 1441 #> 1442 #> 1443 #> 1444 #> 1445 #> 1446 #> 1447 #> 1448 #> 1449 #> 1450 #> 1451 #> 1452 #> 1453 #> 1454 #> 1455 Philippe Coutinho · 12’ #> 1456 Philippe Coutinho · 12’ #> 1457 Philippe Coutinho · 12’ #> 1458 Philippe Coutinho · 12’ #> 1459 Philippe Coutinho · 12’ #> 1460 Philippe Coutinho · 12’ #> 1461 Philippe Coutinho · 12’ #> 1462 Philippe Coutinho · 12’ #> 1463 Philippe Coutinho · 12’ #> 1464 Philippe Coutinho · 12’ #> 1465 Philippe Coutinho · 12’ #> 1466 Philippe Coutinho · 12’ #> 1467 Philippe Coutinho · 12’ #> 1468 Philippe Coutinho · 12’ #> 1469 Philippe Coutinho · 12’ #> 1470 Philippe Coutinho · 12’ #> 1471 Philippe Coutinho · 12’ #> 1472 Philippe Coutinho · 12’ #> 1473 Philippe Coutinho · 12’ #> 1474 Philippe Coutinho · 12’ #> 1475 Philippe Coutinho · 12’ #> 1476 Philippe Coutinho · 12’ #> 1477 Philippe Coutinho · 12’ #> 1478 Philippe Coutinho · 12’ #> 1479 Philippe Coutinho · 12’ #> 1480 Philippe Coutinho · 12’ #> 1481 Philippe Coutinho · 12’ #> 1482 Philippe Coutinho · 12’ #> 1483 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1484 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1485 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1486 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1487 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1488 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1489 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1490 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1491 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1492 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1493 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1494 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1495 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1496 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1497 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1498 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1499 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1500 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1501 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1502 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1503 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1504 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1505 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1506 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1507 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1508 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1509 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1510 Pablo Fornals · 65’ Ramiro Funes Mori · 80’ Karl Toko Ekambi · 89’ #> 1511 #> 1512 #> 1513 #> 1514 #> 1515 #> 1516 #> 1517 #> 1518 #> 1519 #> 1520 #> 1521 #> 1522 #> 1523 #> 1524 #> 1525 #> 1526 #> 1527 #> 1528 #> 1529 #> 1530 #> 1531 #> 1532 #> 1533 #> 1534 #> 1535 #> 1536 #> 1537 #> 1538 #> 1539 Iago Aspas · 82’ #> 1540 Iago Aspas · 82’ #> 1541 Iago Aspas · 82’ #> 1542 Iago Aspas · 82’ #> 1543 Iago Aspas · 82’ #> 1544 Iago Aspas · 82’ #> 1545 Iago Aspas · 82’ #> 1546 Iago Aspas · 82’ #> 1547 Iago Aspas · 82’ #> 1548 Iago Aspas · 82’ #> 1549 Iago Aspas · 82’ #> 1550 Iago Aspas · 82’ #> 1551 Iago Aspas · 82’ #> 1552 Iago Aspas · 82’ #> 1553 Iago Aspas · 82’ #> 1554 Iago Aspas · 82’ #> 1555 Iago Aspas · 82’ #> 1556 Iago Aspas · 82’ #> 1557 Iago Aspas · 82’ #> 1558 Iago Aspas · 82’ #> 1559 Iago Aspas · 82’ #> 1560 Iago Aspas · 82’ #> 1561 Iago Aspas · 82’ #> 1562 Iago Aspas · 82’ #> 1563 Iago Aspas · 82’ #> 1564 Iago Aspas · 82’ #> 1565 Iago Aspas · 82’ #> 1566 Iago Aspas · 82’ #> 1567 Amath · 80’ #> 1568 Amath · 80’ #> 1569 Amath · 80’ #> 1570 Amath · 80’ #> 1571 Amath · 80’ #> 1572 Amath · 80’ #> 1573 Amath · 80’ #> 1574 Amath · 80’ #> 1575 Amath · 80’ #> 1576 Amath · 80’ #> 1577 Amath · 80’ #> 1578 Amath · 80’ #> 1579 Amath · 80’ #> 1580 Amath · 80’ #> 1581 Amath · 80’ #> 1582 Amath · 80’ #> 1583 Amath · 80’ #> 1584 Amath · 80’ #> 1585 Amath · 80’ #> 1586 Amath · 80’ #> 1587 Amath · 80’ #> 1588 Amath · 80’ #> 1589 Amath · 80’ #> 1590 Amath · 80’ #> 1591 Amath · 80’ #> 1592 Amath · 80’ #> 1593 Amath · 80’ #> 1594 Amath · 80’ #> 1595 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1596 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1597 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1598 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1599 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1600 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1601 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1602 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1603 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1604 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1605 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1606 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1607 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1608 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1609 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1610 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1611 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1612 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1613 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1614 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1615 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1616 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1617 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1618 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1619 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1620 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1621 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1622 Sergio Postigo · 47’ Nikola Vukčević · 54’ #> 1623 Loren Morón · 64’ #> 1624 Loren Morón · 64’ #> 1625 Loren Morón · 64’ #> 1626 Loren Morón · 64’ #> 1627 Loren Morón · 64’ #> 1628 Loren Morón · 64’ #> 1629 Loren Morón · 64’ #> 1630 Loren Morón · 64’ #> 1631 Loren Morón · 64’ #> 1632 Loren Morón · 64’ #> 1633 Loren Morón · 64’ #> 1634 Loren Morón · 64’ #> 1635 Loren Morón · 64’ #> 1636 Loren Morón · 64’ #> 1637 Loren Morón · 64’ #> 1638 Loren Morón · 64’ #> 1639 Loren Morón · 64’ #> 1640 Loren Morón · 64’ #> 1641 Loren Morón · 64’ #> 1642 Loren Morón · 64’ #> 1643 Loren Morón · 64’ #> 1644 Loren Morón · 64’ #> 1645 Loren Morón · 64’ #> 1646 Loren Morón · 64’ #> 1647 Loren Morón · 64’ #> 1648 Loren Morón · 64’ #> 1649 Loren Morón · 64’ #> 1650 Loren Morón · 64’ #> 1651 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1652 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1653 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1654 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1655 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1656 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1657 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1658 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1659 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1660 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1661 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1662 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1663 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1664 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1665 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1666 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1667 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1668 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1669 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1670 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1671 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1672 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1673 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1674 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1675 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1676 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1677 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1678 Borja Iglesias · 19’ Esteban Granero · 45+1’ #> 1679 Kévin Gameiro · 36’ #> 1680 Kévin Gameiro · 36’ #> 1681 Kévin Gameiro · 36’ #> 1682 Kévin Gameiro · 36’ #> 1683 Kévin Gameiro · 36’ #> 1684 Kévin Gameiro · 36’ #> 1685 Kévin Gameiro · 36’ #> 1686 Kévin Gameiro · 36’ #> 1687 Kévin Gameiro · 36’ #> 1688 Kévin Gameiro · 36’ #> 1689 Kévin Gameiro · 36’ #> 1690 Kévin Gameiro · 36’ #> 1691 Kévin Gameiro · 36’ #> 1692 Kévin Gameiro · 36’ #> 1693 Kévin Gameiro · 36’ #> 1694 Kévin Gameiro · 36’ #> 1695 Kévin Gameiro · 36’ #> 1696 Kévin Gameiro · 36’ #> 1697 Kévin Gameiro · 36’ #> 1698 Kévin Gameiro · 36’ #> 1699 Kévin Gameiro · 36’ #> 1700 Kévin Gameiro · 36’ #> 1701 Kévin Gameiro · 36’ #> 1702 Kévin Gameiro · 36’ #> 1703 Kévin Gameiro · 36’ #> 1704 Kévin Gameiro · 36’ #> 1705 Kévin Gameiro · 36’ #> 1706 Kévin Gameiro · 36’ #> 1707 Óscar de Marcos · 41’ #> 1708 Óscar de Marcos · 41’ #> 1709 Óscar de Marcos · 41’ #> 1710 Óscar de Marcos · 41’ #> 1711 Óscar de Marcos · 41’ #> 1712 Óscar de Marcos · 41’ #> 1713 Óscar de Marcos · 41’ #> 1714 Óscar de Marcos · 41’ #> 1715 Óscar de Marcos · 41’ #> 1716 Óscar de Marcos · 41’ #> 1717 Óscar de Marcos · 41’ #> 1718 Óscar de Marcos · 41’ #> 1719 Óscar de Marcos · 41’ #> 1720 Óscar de Marcos · 41’ #> 1721 Óscar de Marcos · 41’ #> 1722 Óscar de Marcos · 41’ #> 1723 Óscar de Marcos · 41’ #> 1724 Óscar de Marcos · 41’ #> 1725 Óscar de Marcos · 41’ #> 1726 Óscar de Marcos · 41’ #> 1727 Óscar de Marcos · 41’ #> 1728 Óscar de Marcos · 41’ #> 1729 Óscar de Marcos · 41’ #> 1730 Óscar de Marcos · 41’ #> 1731 Óscar de Marcos · 41’ #> 1732 Óscar de Marcos · 41’ #> 1733 Óscar de Marcos · 41’ #> 1734 Óscar de Marcos · 41’ #> 1735 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1736 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1737 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1738 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1739 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1740 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1741 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1742 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1743 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1744 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1745 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1746 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1747 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1748 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1749 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1750 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1751 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1752 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1753 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1754 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1755 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1756 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1757 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1758 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1759 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1760 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1761 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1762 André Silva · 47’ Éver Banega (P) · 59’ Éver Banega · 90+4’ #> 1763 #> 1764 #> 1765 #> 1766 #> 1767 #> 1768 #> 1769 #> 1770 #> 1771 #> 1772 #> 1773 #> 1774 #> 1775 #> 1776 #> 1777 #> 1778 #> 1779 #> 1780 #> 1781 #> 1782 #> 1783 #> 1784 #> 1785 #> 1786 #> 1787 #> 1788 #> 1789 #> 1790 #> 1791 Cristhian Stuani (P) · 37’ #> 1792 Cristhian Stuani (P) · 37’ #> 1793 Cristhian Stuani (P) · 37’ #> 1794 Cristhian Stuani (P) · 37’ #> 1795 Cristhian Stuani (P) · 37’ #> 1796 Cristhian Stuani (P) · 37’ #> 1797 Cristhian Stuani (P) · 37’ #> 1798 Cristhian Stuani (P) · 37’ #> 1799 Cristhian Stuani (P) · 37’ #> 1800 Cristhian Stuani (P) · 37’ #> 1801 Cristhian Stuani (P) · 37’ #> 1802 Cristhian Stuani (P) · 37’ #> 1803 Cristhian Stuani (P) · 37’ #> 1804 Cristhian Stuani (P) · 37’ #> 1805 Cristhian Stuani (P) · 37’ #> 1806 Cristhian Stuani (P) · 37’ #> 1807 Cristhian Stuani (P) · 37’ #> 1808 Cristhian Stuani (P) · 37’ #> 1809 Cristhian Stuani (P) · 37’ #> 1810 Cristhian Stuani (P) · 37’ #> 1811 Cristhian Stuani (P) · 37’ #> 1812 Cristhian Stuani (P) · 37’ #> 1813 Cristhian Stuani (P) · 37’ #> 1814 Cristhian Stuani (P) · 37’ #> 1815 Cristhian Stuani (P) · 37’ #> 1816 Cristhian Stuani (P) · 37’ #> 1817 Cristhian Stuani (P) · 37’ #> 1818 Cristhian Stuani (P) · 37’ #> 1819 Leonardo Suárez · 53’ #> 1820 Leonardo Suárez · 53’ #> 1821 Leonardo Suárez · 53’ #> 1822 Leonardo Suárez · 53’ #> 1823 Leonardo Suárez · 53’ #> 1824 Leonardo Suárez · 53’ #> 1825 Leonardo Suárez · 53’ #> 1826 Leonardo Suárez · 53’ #> 1827 Leonardo Suárez · 53’ #> 1828 Leonardo Suárez · 53’ #> 1829 Leonardo Suárez · 53’ #> 1830 Leonardo Suárez · 53’ #> 1831 Leonardo Suárez · 53’ #> 1832 Leonardo Suárez · 53’ #> 1833 Leonardo Suárez · 53’ #> 1834 Leonardo Suárez · 53’ #> 1835 Leonardo Suárez · 53’ #> 1836 Leonardo Suárez · 53’ #> 1837 Leonardo Suárez · 53’ #> 1838 Leonardo Suárez · 53’ #> 1839 Leonardo Suárez · 53’ #> 1840 Leonardo Suárez · 53’ #> 1841 Leonardo Suárez · 53’ #> 1842 Leonardo Suárez · 53’ #> 1843 Leonardo Suárez · 53’ #> 1844 Leonardo Suárez · 53’ #> 1845 Leonardo Suárez · 53’ #> 1846 Leonardo Suárez · 53’ #> 1847 Rubén Sobrino · 5’ #> 1848 Rubén Sobrino · 5’ #> 1849 Rubén Sobrino · 5’ #> 1850 Rubén Sobrino · 5’ #> 1851 Rubén Sobrino · 5’ #> 1852 Rubén Sobrino · 5’ #> 1853 Rubén Sobrino · 5’ #> 1854 Rubén Sobrino · 5’ #> 1855 Rubén Sobrino · 5’ #> 1856 Rubén Sobrino · 5’ #> 1857 Rubén Sobrino · 5’ #> 1858 Rubén Sobrino · 5’ #> 1859 Rubén Sobrino · 5’ #> 1860 Rubén Sobrino · 5’ #> 1861 Rubén Sobrino · 5’ #> 1862 Rubén Sobrino · 5’ #> 1863 Rubén Sobrino · 5’ #> 1864 Rubén Sobrino · 5’ #> 1865 Rubén Sobrino · 5’ #> 1866 Rubén Sobrino · 5’ #> 1867 Rubén Sobrino · 5’ #> 1868 Rubén Sobrino · 5’ #> 1869 Rubén Sobrino · 5’ #> 1870 Rubén Sobrino · 5’ #> 1871 Rubén Sobrino · 5’ #> 1872 Rubén Sobrino · 5’ #> 1873 Rubén Sobrino · 5’ #> 1874 Rubén Sobrino · 5’ #> 1875 #> 1876 #> 1877 #> 1878 #> 1879 #> 1880 #> 1881 #> 1882 #> 1883 #> 1884 #> 1885 #> 1886 #> 1887 #> 1888 #> 1889 #> 1890 #> 1891 #> 1892 #> 1893 #> 1894 #> 1895 #> 1896 #> 1897 #> 1898 #> 1899 #> 1900 #> 1901 #> 1902 #> 1903 Jaime Mata · 78’ #> 1904 Jaime Mata · 78’ #> 1905 Jaime Mata · 78’ #> 1906 Jaime Mata · 78’ #> 1907 Jaime Mata · 78’ #> 1908 Jaime Mata · 78’ #> 1909 Jaime Mata · 78’ #> 1910 Jaime Mata · 78’ #> 1911 Jaime Mata · 78’ #> 1912 Jaime Mata · 78’ #> 1913 Jaime Mata · 78’ #> 1914 Jaime Mata · 78’ #> 1915 Jaime Mata · 78’ #> 1916 Jaime Mata · 78’ #> 1917 Jaime Mata · 78’ #> 1918 Jaime Mata · 78’ #> 1919 Jaime Mata · 78’ #> 1920 Jaime Mata · 78’ #> 1921 Jaime Mata · 78’ #> 1922 Jaime Mata · 78’ #> 1923 Jaime Mata · 78’ #> 1924 Jaime Mata · 78’ #> 1925 Jaime Mata · 78’ #> 1926 Jaime Mata · 78’ #> 1927 Jaime Mata · 78’ #> 1928 Jaime Mata · 78’ #> 1929 Jaime Mata · 78’ #> 1930 Jaime Mata · 78’ #> 1931 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1932 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1933 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1934 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1935 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1936 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1937 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1938 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1939 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1940 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1941 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1942 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1943 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1944 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1945 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1946 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1947 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1948 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1949 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1950 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1951 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1952 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1953 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1954 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1955 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1956 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1957 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1958 Mikel Oyarzabal (P) · 30’ Luca Sangalli · 47’ Mikel Oyarzabal (P) · 74’ #> 1959 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1960 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1961 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1962 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1963 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1964 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1965 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1966 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1967 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1968 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1969 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1970 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1971 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1972 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1973 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1974 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1975 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1976 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1977 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1978 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1979 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1980 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1981 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1982 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1983 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1984 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1985 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1986 Charles (P) · 12’ Anaitz Arbilla · 45+5’ Sergi Enrich · 72’ #> 1987 Enis Bardhi · 60’ #> 1988 Enis Bardhi · 60’ #> 1989 Enis Bardhi · 60’ #> 1990 Enis Bardhi · 60’ #> 1991 Enis Bardhi · 60’ #> 1992 Enis Bardhi · 60’ #> 1993 Enis Bardhi · 60’ #> 1994 Enis Bardhi · 60’ #> 1995 Enis Bardhi · 60’ #> 1996 Enis Bardhi · 60’ #> 1997 Enis Bardhi · 60’ #> 1998 Enis Bardhi · 60’ #> 1999 Enis Bardhi · 60’ #> 2000 Enis Bardhi · 60’ #> 2001 Enis Bardhi · 60’ #> 2002 Enis Bardhi · 60’ #> 2003 Enis Bardhi · 60’ #> 2004 Enis Bardhi · 60’ #> 2005 Enis Bardhi · 60’ #> 2006 Enis Bardhi · 60’ #> 2007 Enis Bardhi · 60’ #> 2008 Enis Bardhi · 60’ #> 2009 Enis Bardhi · 60’ #> 2010 Enis Bardhi · 60’ #> 2011 Enis Bardhi · 60’ #> 2012 Enis Bardhi · 60’ #> 2013 Enis Bardhi · 60’ #> 2014 Enis Bardhi · 60’ #> 2015 #> 2016 #> 2017 #> 2018 #> 2019 #> 2020 #> 2021 #> 2022 #> 2023 #> 2024 #> 2025 #> 2026 #> 2027 #> 2028 #> 2029 #> 2030 #> 2031 #> 2032 #> 2033 #> 2034 #> 2035 #> 2036 #> 2037 #> 2038 #> 2039 #> 2040 #> Away_Yellow_Cards Away_Red_Cards #> 1 1 0 #> 2 1 0 #> 3 1 0 #> 4 1 0 #> 5 1 0 #> 6 1 0 #> 7 1 0 #> 8 1 0 #> 9 1 0 #> 10 1 0 #> 11 1 0 #> 12 1 0 #> 13 1 0 #> 14 1 0 #> 15 1 0 #> 16 1 0 #> 17 1 0 #> 18 1 0 #> 19 1 0 #> 20 1 0 #> 21 1 0 #> 22 1 0 #> 23 1 0 #> 24 1 0 #> 25 1 0 #> 26 1 0 #> 27 1 0 #> 28 1 0 #> 29 2 0 #> 30 2 0 #> 31 2 0 #> 32 2 0 #> 33 2 0 #> 34 2 0 #> 35 2 0 #> 36 2 0 #> 37 2 0 #> 38 2 0 #> 39 2 0 #> 40 2 0 #> 41 2 0 #> 42 2 0 #> 43 2 0 #> 44 2 0 #> 45 2 0 #> 46 2 0 #> 47 2 0 #> 48 2 0 #> 49 2 0 #> 50 2 0 #> 51 2 0 #> 52 2 0 #> 53 2 0 #> 54 2 0 #> 55 2 0 #> 56 2 0 #> 57 2 0 #> 58 2 0 #> 59 2 0 #> 60 2 0 #> 61 2 0 #> 62 2 0 #> 63 2 0 #> 64 2 0 #> 65 2 0 #> 66 2 0 #> 67 2 0 #> 68 2 0 #> 69 2 0 #> 70 2 0 #> 71 2 0 #> 72 2 0 #> 73 2 0 #> 74 2 0 #> 75 2 0 #> 76 2 0 #> 77 2 0 #> 78 2 0 #> 79 2 0 #> 80 2 0 #> 81 2 0 #> 82 2 0 #> 83 2 0 #> 84 2 0 #> 85 3 0 #> 86 3 0 #> 87 3 0 #> 88 3 0 #> 89 3 0 #> 90 3 0 #> 91 3 0 #> 92 3 0 #> 93 3 0 #> 94 3 0 #> 95 3 0 #> 96 3 0 #> 97 3 0 #> 98 3 0 #> 99 3 0 #> 100 3 0 #> 101 3 0 #> 102 3 0 #> 103 3 0 #> 104 3 0 #> 105 3 0 #> 106 3 0 #> 107 3 0 #> 108 3 0 #> 109 3 0 #> 110 3 0 #> 111 3 0 #> 112 3 0 #> 113 2 0 #> 114 2 0 #> 115 2 0 #> 116 2 0 #> 117 2 0 #> 118 2 0 #> 119 2 0 #> 120 2 0 #> 121 2 0 #> 122 2 0 #> 123 2 0 #> 124 2 0 #> 125 2 0 #> 126 2 0 #> 127 2 0 #> 128 2 0 #> 129 2 0 #> 130 2 0 #> 131 2 0 #> 132 2 0 #> 133 2 0 #> 134 2 0 #> 135 2 0 #> 136 2 0 #> 137 2 0 #> 138 2 0 #> 139 2 0 #> 140 2 0 #> 141 1 0 #> 142 1 0 #> 143 1 0 #> 144 1 0 #> 145 1 0 #> 146 1 0 #> 147 1 0 #> 148 1 0 #> 149 1 0 #> 150 1 0 #> 151 1 0 #> 152 1 0 #> 153 1 0 #> 154 1 0 #> 155 1 0 #> 156 1 0 #> 157 1 0 #> 158 1 0 #> 159 1 0 #> 160 1 0 #> 161 1 0 #> 162 1 0 #> 163 1 0 #> 164 1 0 #> 165 1 0 #> 166 1 0 #> 167 1 0 #> 168 1 0 #> 169 0 0 #> 170 0 0 #> 171 0 0 #> 172 0 0 #> 173 0 0 #> 174 0 0 #> 175 0 0 #> 176 0 0 #> 177 0 0 #> 178 0 0 #> 179 0 0 #> 180 0 0 #> 181 0 0 #> 182 0 0 #> 183 0 0 #> 184 0 0 #> 185 0 0 #> 186 0 0 #> 187 0 0 #> 188 0 0 #> 189 0 0 #> 190 0 0 #> 191 0 0 #> 192 0 0 #> 193 0 0 #> 194 0 0 #> 195 0 0 #> 196 7 0 #> 197 7 0 #> 198 7 0 #> 199 7 0 #> 200 7 0 #> 201 7 0 #> 202 7 0 #> 203 7 0 #> 204 7 0 #> 205 7 0 #> 206 7 0 #> 207 7 0 #> 208 7 0 #> 209 7 0 #> 210 7 0 #> 211 7 0 #> 212 7 0 #> 213 7 0 #> 214 7 0 #> 215 7 0 #> 216 7 0 #> 217 7 0 #> 218 7 0 #> 219 7 0 #> 220 7 0 #> 221 7 0 #> 222 7 0 #> 223 7 0 #> 224 3 0 #> 225 3 0 #> 226 3 0 #> 227 3 0 #> 228 3 0 #> 229 3 0 #> 230 3 0 #> 231 3 0 #> 232 3 0 #> 233 3 0 #> 234 3 0 #> 235 3 0 #> 236 3 0 #> 237 3 0 #> 238 3 0 #> 239 3 0 #> 240 3 0 #> 241 3 0 #> 242 3 0 #> 243 3 0 #> 244 3 0 #> 245 3 0 #> 246 3 0 #> 247 3 0 #> 248 3 0 #> 249 3 0 #> 250 3 0 #> 251 3 0 #> 252 5 0 #> 253 5 0 #> 254 5 0 #> 255 5 0 #> 256 5 0 #> 257 5 0 #> 258 5 0 #> 259 5 0 #> 260 5 0 #> 261 5 0 #> 262 5 0 #> 263 5 0 #> 264 5 0 #> 265 5 0 #> 266 5 0 #> 267 5 0 #> 268 5 0 #> 269 5 0 #> 270 5 0 #> 271 5 0 #> 272 5 0 #> 273 5 0 #> 274 5 0 #> 275 5 0 #> 276 5 0 #> 277 5 0 #> 278 5 0 #> 279 5 0 #> 280 1 0 #> 281 1 0 #> 282 1 0 #> 283 1 0 #> 284 1 0 #> 285 1 0 #> 286 1 0 #> 287 1 0 #> 288 1 0 #> 289 1 0 #> 290 1 0 #> 291 1 0 #> 292 1 0 #> 293 1 0 #> 294 1 0 #> 295 1 0 #> 296 1 0 #> 297 1 0 #> 298 1 0 #> 299 1 0 #> 300 1 0 #> 301 1 0 #> 302 1 0 #> 303 1 0 #> 304 1 0 #> 305 1 0 #> 306 1 0 #> 307 1 0 #> 308 2 0 #> 309 2 0 #> 310 2 0 #> 311 2 0 #> 312 2 0 #> 313 2 0 #> 314 2 0 #> 315 2 0 #> 316 2 0 #> 317 2 0 #> 318 2 0 #> 319 2 0 #> 320 2 0 #> 321 2 0 #> 322 2 0 #> 323 2 0 #> 324 2 0 #> 325 2 0 #> 326 2 0 #> 327 2 0 #> 328 2 0 #> 329 2 0 #> 330 2 0 #> 331 2 0 #> 332 2 0 #> 333 2 0 #> 334 2 0 #> 335 2 0 #> 336 1 0 #> 337 1 0 #> 338 1 0 #> 339 1 0 #> 340 1 0 #> 341 1 0 #> 342 1 0 #> 343 1 0 #> 344 1 0 #> 345 1 0 #> 346 1 0 #> 347 1 0 #> 348 1 0 #> 349 1 0 #> 350 1 0 #> 351 1 0 #> 352 1 0 #> 353 1 0 #> 354 1 0 #> 355 1 0 #> 356 1 0 #> 357 1 0 #> 358 1 0 #> 359 1 0 #> 360 1 0 #> 361 1 0 #> 362 1 0 #> 363 1 0 #> 364 1 0 #> 365 1 0 #> 366 1 0 #> 367 1 0 #> 368 1 0 #> 369 1 0 #> 370 1 0 #> 371 1 0 #> 372 1 0 #> 373 1 0 #> 374 1 0 #> 375 1 0 #> 376 1 0 #> 377 1 0 #> 378 1 0 #> 379 1 0 #> 380 1 0 #> 381 1 0 #> 382 1 0 #> 383 1 0 #> 384 1 0 #> 385 1 0 #> 386 1 0 #> 387 1 0 #> 388 1 0 #> 389 1 0 #> 390 1 0 #> 391 1 0 #> 392 1 0 #> 393 1 0 #> 394 1 0 #> 395 1 0 #> 396 1 0 #> 397 1 0 #> 398 1 0 #> 399 1 0 #> 400 1 0 #> 401 1 0 #> 402 1 0 #> 403 1 0 #> 404 1 0 #> 405 1 0 #> 406 1 0 #> 407 1 0 #> 408 1 0 #> 409 1 0 #> 410 1 0 #> 411 1 0 #> 412 1 0 #> 413 1 0 #> 414 1 0 #> 415 1 0 #> 416 1 0 #> 417 1 0 #> 418 1 0 #> 419 1 0 #> 420 1 0 #> 421 1 0 #> 422 1 0 #> 423 1 0 #> 424 1 0 #> 425 1 0 #> 426 1 0 #> 427 1 0 #> 428 1 0 #> 429 1 0 #> 430 1 0 #> 431 1 0 #> 432 1 0 #> 433 1 0 #> 434 1 0 #> 435 1 0 #> 436 1 0 #> 437 1 0 #> 438 1 0 #> 439 1 0 #> 440 1 0 #> 441 1 0 #> 442 1 0 #> 443 1 0 #> 444 1 0 #> 445 1 0 #> 446 1 0 #> 447 1 0 #> 448 3 0 #> 449 3 0 #> 450 3 0 #> 451 3 0 #> 452 3 0 #> 453 3 0 #> 454 3 0 #> 455 3 0 #> 456 3 0 #> 457 3 0 #> 458 3 0 #> 459 3 0 #> 460 3 0 #> 461 3 0 #> 462 3 0 #> 463 3 0 #> 464 3 0 #> 465 3 0 #> 466 3 0 #> 467 3 0 #> 468 3 0 #> 469 3 0 #> 470 3 0 #> 471 3 0 #> 472 3 0 #> 473 3 0 #> 474 3 0 #> 475 3 0 #> 476 2 0 #> 477 2 0 #> 478 2 0 #> 479 2 0 #> 480 2 0 #> 481 2 0 #> 482 2 0 #> 483 2 0 #> 484 2 0 #> 485 2 0 #> 486 2 0 #> 487 2 0 #> 488 2 0 #> 489 2 0 #> 490 2 0 #> 491 2 0 #> 492 2 0 #> 493 2 0 #> 494 2 0 #> 495 2 0 #> 496 2 0 #> 497 2 0 #> 498 2 0 #> 499 2 0 #> 500 2 0 #> 501 2 0 #> 502 2 0 #> 503 2 0 #> 504 3 0 #> 505 3 0 #> 506 3 0 #> 507 3 0 #> 508 3 0 #> 509 3 0 #> 510 3 0 #> 511 3 0 #> 512 3 0 #> 513 3 0 #> 514 3 0 #> 515 3 0 #> 516 3 0 #> 517 3 0 #> 518 3 0 #> 519 3 0 #> 520 3 0 #> 521 3 0 #> 522 3 0 #> 523 3 0 #> 524 3 0 #> 525 3 0 #> 526 3 0 #> 527 3 0 #> 528 3 0 #> 529 3 0 #> 530 3 0 #> 531 3 0 #> 532 2 0 #> 533 2 0 #> 534 2 0 #> 535 2 0 #> 536 2 0 #> 537 2 0 #> 538 2 0 #> 539 2 0 #> 540 2 0 #> 541 2 0 #> 542 2 0 #> 543 2 0 #> 544 2 0 #> 545 2 0 #> 546 2 0 #> 547 2 0 #> 548 2 0 #> 549 2 0 #> 550 2 0 #> 551 2 0 #> 552 2 0 #> 553 2 0 #> 554 2 0 #> 555 2 0 #> 556 2 0 #> 557 2 0 #> 558 2 0 #> 559 2 0 #> 560 1 0 #> 561 1 0 #> 562 1 0 #> 563 1 0 #> 564 1 0 #> 565 1 0 #> 566 1 0 #> 567 1 0 #> 568 1 0 #> 569 1 0 #> 570 1 0 #> 571 1 0 #> 572 1 0 #> 573 1 0 #> 574 1 0 #> 575 1 0 #> 576 1 0 #> 577 1 0 #> 578 1 0 #> 579 1 0 #> 580 1 0 #> 581 1 0 #> 582 1 0 #> 583 1 0 #> 584 1 0 #> 585 1 0 #> 586 1 0 #> 587 1 0 #> 588 2 0 #> 589 2 0 #> 590 2 0 #> 591 2 0 #> 592 2 0 #> 593 2 0 #> 594 2 0 #> 595 2 0 #> 596 2 0 #> 597 2 0 #> 598 2 0 #> 599 2 0 #> 600 2 0 #> 601 2 0 #> 602 2 0 #> 603 2 0 #> 604 2 0 #> 605 2 0 #> 606 2 0 #> 607 2 0 #> 608 2 0 #> 609 2 0 #> 610 2 0 #> 611 2 0 #> 612 2 0 #> 613 2 0 #> 614 2 0 #> 615 2 0 #> 616 2 0 #> 617 2 0 #> 618 2 0 #> 619 2 0 #> 620 2 0 #> 621 2 0 #> 622 2 0 #> 623 2 0 #> 624 2 0 #> 625 2 0 #> 626 2 0 #> 627 2 0 #> 628 2 0 #> 629 2 0 #> 630 2 0 #> 631 2 0 #> 632 2 0 #> 633 2 0 #> 634 2 0 #> 635 2 0 #> 636 2 0 #> 637 2 0 #> 638 2 0 #> 639 2 0 #> 640 2 0 #> 641 2 0 #> 642 2 0 #> 643 2 0 #> 644 6 1 #> 645 6 1 #> 646 6 1 #> 647 6 1 #> 648 6 1 #> 649 6 1 #> 650 6 1 #> 651 6 1 #> 652 6 1 #> 653 6 1 #> 654 6 1 #> 655 6 1 #> 656 6 1 #> 657 6 1 #> 658 6 1 #> 659 6 1 #> 660 6 1 #> 661 6 1 #> 662 6 1 #> 663 6 1 #> 664 6 1 #> 665 6 1 #> 666 6 1 #> 667 6 1 #> 668 6 1 #> 669 6 1 #> 670 6 1 #> 671 6 1 #> 672 1 0 #> 673 1 0 #> 674 1 0 #> 675 1 0 #> 676 1 0 #> 677 1 0 #> 678 1 0 #> 679 1 0 #> 680 1 0 #> 681 1 0 #> 682 1 0 #> 683 1 0 #> 684 1 0 #> 685 1 0 #> 686 1 0 #> 687 1 0 #> 688 1 0 #> 689 1 0 #> 690 1 0 #> 691 1 0 #> 692 1 0 #> 693 1 0 #> 694 1 0 #> 695 1 0 #> 696 1 0 #> 697 1 0 #> 698 1 0 #> 699 1 0 #> 700 2 0 #> 701 2 0 #> 702 2 0 #> 703 2 0 #> 704 2 0 #> 705 2 0 #> 706 2 0 #> 707 2 0 #> 708 2 0 #> 709 2 0 #> 710 2 0 #> 711 2 0 #> 712 2 0 #> 713 2 0 #> 714 2 0 #> 715 2 0 #> 716 2 0 #> 717 2 0 #> 718 2 0 #> 719 2 0 #> 720 2 0 #> 721 2 0 #> 722 2 0 #> 723 2 0 #> 724 2 0 #> 725 2 0 #> 726 2 0 #> 727 2 0 #> 728 3 0 #> 729 3 0 #> 730 3 0 #> 731 3 0 #> 732 3 0 #> 733 3 0 #> 734 3 0 #> 735 3 0 #> 736 3 0 #> 737 3 0 #> 738 3 0 #> 739 3 0 #> 740 3 0 #> 741 3 0 #> 742 3 0 #> 743 3 0 #> 744 3 0 #> 745 3 0 #> 746 3 0 #> 747 3 0 #> 748 3 0 #> 749 3 0 #> 750 3 0 #> 751 3 0 #> 752 3 0 #> 753 3 0 #> 754 3 0 #> 755 3 0 #> 756 2 0 #> 757 2 0 #> 758 2 0 #> 759 2 0 #> 760 2 0 #> 761 2 0 #> 762 2 0 #> 763 2 0 #> 764 2 0 #> 765 2 0 #> 766 2 0 #> 767 2 0 #> 768 2 0 #> 769 2 0 #> 770 2 0 #> 771 2 0 #> 772 2 0 #> 773 2 0 #> 774 2 0 #> 775 2 0 #> 776 2 0 #> 777 2 0 #> 778 2 0 #> 779 2 0 #> 780 2 0 #> 781 2 0 #> 782 2 0 #> 783 2 0 #> 784 7 1 #> 785 7 1 #> 786 7 1 #> 787 7 1 #> 788 7 1 #> 789 7 1 #> 790 7 1 #> 791 7 1 #> 792 7 1 #> 793 7 1 #> 794 7 1 #> 795 7 1 #> 796 7 1 #> 797 7 1 #> 798 7 1 #> 799 7 1 #> 800 7 1 #> 801 7 1 #> 802 7 1 #> 803 7 1 #> 804 7 1 #> 805 7 1 #> 806 7 1 #> 807 7 1 #> 808 7 1 #> 809 7 1 #> 810 7 1 #> 811 7 1 #> 812 1 0 #> 813 1 0 #> 814 1 0 #> 815 1 0 #> 816 1 0 #> 817 1 0 #> 818 1 0 #> 819 1 0 #> 820 1 0 #> 821 1 0 #> 822 1 0 #> 823 1 0 #> 824 1 0 #> 825 1 0 #> 826 1 0 #> 827 1 0 #> 828 1 0 #> 829 1 0 #> 830 1 0 #> 831 1 0 #> 832 1 0 #> 833 1 0 #> 834 1 0 #> 835 1 0 #> 836 1 0 #> 837 1 0 #> 838 1 0 #> 839 1 0 #> 840 2 0 #> 841 2 0 #> 842 2 0 #> 843 2 0 #> 844 2 0 #> 845 2 0 #> 846 2 0 #> 847 2 0 #> 848 2 0 #> 849 2 0 #> 850 2 0 #> 851 2 0 #> 852 2 0 #> 853 2 0 #> 854 2 0 #> 855 2 0 #> 856 2 0 #> 857 2 0 #> 858 2 0 #> 859 2 0 #> 860 2 0 #> 861 2 0 #> 862 2 0 #> 863 2 0 #> 864 2 0 #> 865 2 0 #> 866 2 0 #> 867 1 0 #> 868 1 0 #> 869 1 0 #> 870 1 0 #> 871 1 0 #> 872 1 0 #> 873 1 0 #> 874 1 0 #> 875 1 0 #> 876 1 0 #> 877 1 0 #> 878 1 0 #> 879 1 0 #> 880 1 0 #> 881 1 0 #> 882 1 0 #> 883 1 0 #> 884 1 0 #> 885 1 0 #> 886 1 0 #> 887 1 0 #> 888 1 0 #> 889 1 0 #> 890 1 0 #> 891 1 0 #> 892 1 0 #> 893 1 0 #> 894 1 0 #> 895 3 0 #> 896 3 0 #> 897 3 0 #> 898 3 0 #> 899 3 0 #> 900 3 0 #> 901 3 0 #> 902 3 0 #> 903 3 0 #> 904 3 0 #> 905 3 0 #> 906 3 0 #> 907 3 0 #> 908 3 0 #> 909 3 0 #> 910 3 0 #> 911 3 0 #> 912 3 0 #> 913 3 0 #> 914 3 0 #> 915 3 0 #> 916 3 0 #> 917 3 0 #> 918 3 0 #> 919 3 0 #> 920 3 0 #> 921 3 0 #> 922 3 0 #> 923 2 0 #> 924 2 0 #> 925 2 0 #> 926 2 0 #> 927 2 0 #> 928 2 0 #> 929 2 0 #> 930 2 0 #> 931 2 0 #> 932 2 0 #> 933 2 0 #> 934 2 0 #> 935 2 0 #> 936 2 0 #> 937 2 0 #> 938 2 0 #> 939 2 0 #> 940 2 0 #> 941 2 0 #> 942 2 0 #> 943 2 0 #> 944 2 0 #> 945 2 0 #> 946 2 0 #> 947 2 0 #> 948 2 0 #> 949 2 0 #> 950 2 0 #> 951 3 0 #> 952 3 0 #> 953 3 0 #> 954 3 0 #> 955 3 0 #> 956 3 0 #> 957 3 0 #> 958 3 0 #> 959 3 0 #> 960 3 0 #> 961 3 0 #> 962 3 0 #> 963 3 0 #> 964 3 0 #> 965 3 0 #> 966 3 0 #> 967 3 0 #> 968 3 0 #> 969 3 0 #> 970 3 0 #> 971 3 0 #> 972 3 0 #> 973 3 0 #> 974 3 0 #> 975 3 0 #> 976 3 0 #> 977 3 0 #> 978 3 0 #> 979 2 0 #> 980 2 0 #> 981 2 0 #> 982 2 0 #> 983 2 0 #> 984 2 0 #> 985 2 0 #> 986 2 0 #> 987 2 0 #> 988 2 0 #> 989 2 0 #> 990 2 0 #> 991 2 0 #> 992 2 0 #> 993 2 0 #> 994 2 0 #> 995 2 0 #> 996 2 0 #> 997 2 0 #> 998 2 0 #> 999 2 0 #> 1000 2 0 #> 1001 2 0 #> 1002 2 0 #> 1003 2 0 #> 1004 2 0 #> 1005 2 0 #> 1006 2 0 #> 1007 2 0 #> 1008 2 0 #> 1009 2 0 #> 1010 2 0 #> 1011 2 0 #> 1012 2 0 #> 1013 2 0 #> 1014 2 0 #> 1015 2 0 #> 1016 2 0 #> 1017 2 0 #> 1018 2 0 #> 1019 2 0 #> 1020 2 0 #> 1021 2 0 #> 1022 2 0 #> 1023 2 0 #> 1024 2 0 #> 1025 2 0 #> 1026 2 0 #> 1027 2 0 #> 1028 2 0 #> 1029 2 0 #> 1030 2 0 #> 1031 2 0 #> 1032 2 0 #> 1033 2 0 #> 1034 2 0 #> 1035 6 0 #> 1036 6 0 #> 1037 6 0 #> 1038 6 0 #> 1039 6 0 #> 1040 6 0 #> 1041 6 0 #> 1042 6 0 #> 1043 6 0 #> 1044 6 0 #> 1045 6 0 #> 1046 6 0 #> 1047 6 0 #> 1048 6 0 #> 1049 6 0 #> 1050 6 0 #> 1051 6 0 #> 1052 6 0 #> 1053 6 0 #> 1054 6 0 #> 1055 6 0 #> 1056 6 0 #> 1057 6 0 #> 1058 6 0 #> 1059 6 0 #> 1060 6 0 #> 1061 6 0 #> 1062 6 0 #> 1063 4 1 #> 1064 4 1 #> 1065 4 1 #> 1066 4 1 #> 1067 4 1 #> 1068 4 1 #> 1069 4 1 #> 1070 4 1 #> 1071 4 1 #> 1072 4 1 #> 1073 4 1 #> 1074 4 1 #> 1075 4 1 #> 1076 4 1 #> 1077 4 1 #> 1078 4 1 #> 1079 4 1 #> 1080 4 1 #> 1081 4 1 #> 1082 4 1 #> 1083 4 1 #> 1084 4 1 #> 1085 4 1 #> 1086 4 1 #> 1087 4 1 #> 1088 4 1 #> 1089 4 1 #> 1090 4 1 #> 1091 4 2 #> 1092 4 2 #> 1093 4 2 #> 1094 4 2 #> 1095 4 2 #> 1096 4 2 #> 1097 4 2 #> 1098 4 2 #> 1099 4 2 #> 1100 4 2 #> 1101 4 2 #> 1102 4 2 #> 1103 4 2 #> 1104 4 2 #> 1105 4 2 #> 1106 4 2 #> 1107 4 2 #> 1108 4 2 #> 1109 4 2 #> 1110 4 2 #> 1111 4 2 #> 1112 4 2 #> 1113 4 2 #> 1114 4 2 #> 1115 4 2 #> 1116 4 2 #> 1117 4 2 #> 1118 4 2 #> 1119 2 0 #> 1120 2 0 #> 1121 2 0 #> 1122 2 0 #> 1123 2 0 #> 1124 2 0 #> 1125 2 0 #> 1126 2 0 #> 1127 2 0 #> 1128 2 0 #> 1129 2 0 #> 1130 2 0 #> 1131 2 0 #> 1132 2 0 #> 1133 2 0 #> 1134 2 0 #> 1135 2 0 #> 1136 2 0 #> 1137 2 0 #> 1138 2 0 #> 1139 2 0 #> 1140 2 0 #> 1141 2 0 #> 1142 2 0 #> 1143 2 0 #> 1144 2 0 #> 1145 2 0 #> 1146 2 0 #> 1147 1 0 #> 1148 1 0 #> 1149 1 0 #> 1150 1 0 #> 1151 1 0 #> 1152 1 0 #> 1153 1 0 #> 1154 1 0 #> 1155 1 0 #> 1156 1 0 #> 1157 1 0 #> 1158 1 0 #> 1159 1 0 #> 1160 1 0 #> 1161 1 0 #> 1162 1 0 #> 1163 1 0 #> 1164 1 0 #> 1165 1 0 #> 1166 1 0 #> 1167 1 0 #> 1168 1 0 #> 1169 1 0 #> 1170 1 0 #> 1171 1 0 #> 1172 1 0 #> 1173 1 0 #> 1174 1 0 #> 1175 2 0 #> 1176 2 0 #> 1177 2 0 #> 1178 2 0 #> 1179 2 0 #> 1180 2 0 #> 1181 2 0 #> 1182 2 0 #> 1183 2 0 #> 1184 2 0 #> 1185 2 0 #> 1186 2 0 #> 1187 2 0 #> 1188 2 0 #> 1189 2 0 #> 1190 2 0 #> 1191 2 0 #> 1192 2 0 #> 1193 2 0 #> 1194 2 0 #> 1195 2 0 #> 1196 2 0 #> 1197 2 0 #> 1198 2 0 #> 1199 2 0 #> 1200 2 0 #> 1201 2 0 #> 1202 2 0 #> 1203 2 0 #> 1204 2 0 #> 1205 2 0 #> 1206 2 0 #> 1207 2 0 #> 1208 2 0 #> 1209 2 0 #> 1210 2 0 #> 1211 2 0 #> 1212 2 0 #> 1213 2 0 #> 1214 2 0 #> 1215 2 0 #> 1216 2 0 #> 1217 2 0 #> 1218 2 0 #> 1219 2 0 #> 1220 2 0 #> 1221 2 0 #> 1222 2 0 #> 1223 2 0 #> 1224 2 0 #> 1225 2 0 #> 1226 2 0 #> 1227 2 0 #> 1228 2 0 #> 1229 2 0 #> 1230 2 0 #> 1231 2 0 #> 1232 2 0 #> 1233 2 0 #> 1234 2 0 #> 1235 2 0 #> 1236 2 0 #> 1237 2 0 #> 1238 2 0 #> 1239 2 0 #> 1240 2 0 #> 1241 2 0 #> 1242 2 0 #> 1243 2 0 #> 1244 2 0 #> 1245 2 0 #> 1246 2 0 #> 1247 2 0 #> 1248 2 0 #> 1249 2 0 #> 1250 2 0 #> 1251 2 0 #> 1252 2 0 #> 1253 2 0 #> 1254 2 0 #> 1255 2 0 #> 1256 2 0 #> 1257 2 0 #> 1258 2 0 #> 1259 1 0 #> 1260 1 0 #> 1261 1 0 #> 1262 1 0 #> 1263 1 0 #> 1264 1 0 #> 1265 1 0 #> 1266 1 0 #> 1267 1 0 #> 1268 1 0 #> 1269 1 0 #> 1270 1 0 #> 1271 1 0 #> 1272 1 0 #> 1273 1 0 #> 1274 1 0 #> 1275 1 0 #> 1276 1 0 #> 1277 1 0 #> 1278 1 0 #> 1279 1 0 #> 1280 1 0 #> 1281 1 0 #> 1282 1 0 #> 1283 1 0 #> 1284 1 0 #> 1285 1 0 #> 1286 1 0 #> 1287 1 1 #> 1288 1 1 #> 1289 1 1 #> 1290 1 1 #> 1291 1 1 #> 1292 1 1 #> 1293 1 1 #> 1294 1 1 #> 1295 1 1 #> 1296 1 1 #> 1297 1 1 #> 1298 1 1 #> 1299 1 1 #> 1300 1 1 #> 1301 1 1 #> 1302 1 1 #> 1303 1 1 #> 1304 1 1 #> 1305 1 1 #> 1306 1 1 #> 1307 1 1 #> 1308 1 1 #> 1309 1 1 #> 1310 1 1 #> 1311 1 1 #> 1312 1 1 #> 1313 1 1 #> 1314 1 1 #> 1315 8 1 #> 1316 8 1 #> 1317 8 1 #> 1318 8 1 #> 1319 8 1 #> 1320 8 1 #> 1321 8 1 #> 1322 8 1 #> 1323 8 1 #> 1324 8 1 #> 1325 8 1 #> 1326 8 1 #> 1327 8 1 #> 1328 8 1 #> 1329 8 1 #> 1330 8 1 #> 1331 8 1 #> 1332 8 1 #> 1333 8 1 #> 1334 8 1 #> 1335 8 1 #> 1336 8 1 #> 1337 8 1 #> 1338 8 1 #> 1339 8 1 #> 1340 8 1 #> 1341 8 1 #> 1342 8 1 #> 1343 5 0 #> 1344 5 0 #> 1345 5 0 #> 1346 5 0 #> 1347 5 0 #> 1348 5 0 #> 1349 5 0 #> 1350 5 0 #> 1351 5 0 #> 1352 5 0 #> 1353 5 0 #> 1354 5 0 #> 1355 5 0 #> 1356 5 0 #> 1357 5 0 #> 1358 5 0 #> 1359 5 0 #> 1360 5 0 #> 1361 5 0 #> 1362 5 0 #> 1363 5 0 #> 1364 5 0 #> 1365 5 0 #> 1366 5 0 #> 1367 5 0 #> 1368 5 0 #> 1369 5 0 #> 1370 5 0 #> 1371 2 0 #> 1372 2 0 #> 1373 2 0 #> 1374 2 0 #> 1375 2 0 #> 1376 2 0 #> 1377 2 0 #> 1378 2 0 #> 1379 2 0 #> 1380 2 0 #> 1381 2 0 #> 1382 2 0 #> 1383 2 0 #> 1384 2 0 #> 1385 2 0 #> 1386 2 0 #> 1387 2 0 #> 1388 2 0 #> 1389 2 0 #> 1390 2 0 #> 1391 2 0 #> 1392 2 0 #> 1393 2 0 #> 1394 2 0 #> 1395 2 0 #> 1396 2 0 #> 1397 2 0 #> 1398 2 0 #> 1399 3 0 #> 1400 3 0 #> 1401 3 0 #> 1402 3 0 #> 1403 3 0 #> 1404 3 0 #> 1405 3 0 #> 1406 3 0 #> 1407 3 0 #> 1408 3 0 #> 1409 3 0 #> 1410 3 0 #> 1411 3 0 #> 1412 3 0 #> 1413 3 0 #> 1414 3 0 #> 1415 3 0 #> 1416 3 0 #> 1417 3 0 #> 1418 3 0 #> 1419 3 0 #> 1420 3 0 #> 1421 3 0 #> 1422 3 0 #> 1423 3 0 #> 1424 3 0 #> 1425 3 0 #> 1426 3 0 #> 1427 2 0 #> 1428 2 0 #> 1429 2 0 #> 1430 2 0 #> 1431 2 0 #> 1432 2 0 #> 1433 2 0 #> 1434 2 0 #> 1435 2 0 #> 1436 2 0 #> 1437 2 0 #> 1438 2 0 #> 1439 2 0 #> 1440 2 0 #> 1441 2 0 #> 1442 2 0 #> 1443 2 0 #> 1444 2 0 #> 1445 2 0 #> 1446 2 0 #> 1447 2 0 #> 1448 2 0 #> 1449 2 0 #> 1450 2 0 #> 1451 2 0 #> 1452 2 0 #> 1453 2 0 #> 1454 2 0 #> 1455 2 0 #> 1456 2 0 #> 1457 2 0 #> 1458 2 0 #> 1459 2 0 #> 1460 2 0 #> 1461 2 0 #> 1462 2 0 #> 1463 2 0 #> 1464 2 0 #> 1465 2 0 #> 1466 2 0 #> 1467 2 0 #> 1468 2 0 #> 1469 2 0 #> 1470 2 0 #> 1471 2 0 #> 1472 2 0 #> 1473 2 0 #> 1474 2 0 #> 1475 2 0 #> 1476 2 0 #> 1477 2 0 #> 1478 2 0 #> 1479 2 0 #> 1480 2 0 #> 1481 2 0 #> 1482 2 0 #> 1483 1 0 #> 1484 1 0 #> 1485 1 0 #> 1486 1 0 #> 1487 1 0 #> 1488 1 0 #> 1489 1 0 #> 1490 1 0 #> 1491 1 0 #> 1492 1 0 #> 1493 1 0 #> 1494 1 0 #> 1495 1 0 #> 1496 1 0 #> 1497 1 0 #> 1498 1 0 #> 1499 1 0 #> 1500 1 0 #> 1501 1 0 #> 1502 1 0 #> 1503 1 0 #> 1504 1 0 #> 1505 1 0 #> 1506 1 0 #> 1507 1 0 #> 1508 1 0 #> 1509 1 0 #> 1510 1 0 #> 1511 4 0 #> 1512 4 0 #> 1513 4 0 #> 1514 4 0 #> 1515 4 0 #> 1516 4 0 #> 1517 4 0 #> 1518 4 0 #> 1519 4 0 #> 1520 4 0 #> 1521 4 0 #> 1522 4 0 #> 1523 4 0 #> 1524 4 0 #> 1525 4 0 #> 1526 4 0 #> 1527 4 0 #> 1528 4 0 #> 1529 4 0 #> 1530 4 0 #> 1531 4 0 #> 1532 4 0 #> 1533 4 0 #> 1534 4 0 #> 1535 4 0 #> 1536 4 0 #> 1537 4 0 #> 1538 4 0 #> 1539 3 0 #> 1540 3 0 #> 1541 3 0 #> 1542 3 0 #> 1543 3 0 #> 1544 3 0 #> 1545 3 0 #> 1546 3 0 #> 1547 3 0 #> 1548 3 0 #> 1549 3 0 #> 1550 3 0 #> 1551 3 0 #> 1552 3 0 #> 1553 3 0 #> 1554 3 0 #> 1555 3 0 #> 1556 3 0 #> 1557 3 0 #> 1558 3 0 #> 1559 3 0 #> 1560 3 0 #> 1561 3 0 #> 1562 3 0 #> 1563 3 0 #> 1564 3 0 #> 1565 3 0 #> 1566 3 0 #> 1567 2 0 #> 1568 2 0 #> 1569 2 0 #> 1570 2 0 #> 1571 2 0 #> 1572 2 0 #> 1573 2 0 #> 1574 2 0 #> 1575 2 0 #> 1576 2 0 #> 1577 2 0 #> 1578 2 0 #> 1579 2 0 #> 1580 2 0 #> 1581 2 0 #> 1582 2 0 #> 1583 2 0 #> 1584 2 0 #> 1585 2 0 #> 1586 2 0 #> 1587 2 0 #> 1588 2 0 #> 1589 2 0 #> 1590 2 0 #> 1591 2 0 #> 1592 2 0 #> 1593 2 0 #> 1594 2 0 #> 1595 5 1 #> 1596 5 1 #> 1597 5 1 #> 1598 5 1 #> 1599 5 1 #> 1600 5 1 #> 1601 5 1 #> 1602 5 1 #> 1603 5 1 #> 1604 5 1 #> 1605 5 1 #> 1606 5 1 #> 1607 5 1 #> 1608 5 1 #> 1609 5 1 #> 1610 5 1 #> 1611 5 1 #> 1612 5 1 #> 1613 5 1 #> 1614 5 1 #> 1615 5 1 #> 1616 5 1 #> 1617 5 1 #> 1618 5 1 #> 1619 5 1 #> 1620 5 1 #> 1621 5 1 #> 1622 5 1 #> 1623 3 0 #> 1624 3 0 #> 1625 3 0 #> 1626 3 0 #> 1627 3 0 #> 1628 3 0 #> 1629 3 0 #> 1630 3 0 #> 1631 3 0 #> 1632 3 0 #> 1633 3 0 #> 1634 3 0 #> 1635 3 0 #> 1636 3 0 #> 1637 3 0 #> 1638 3 0 #> 1639 3 0 #> 1640 3 0 #> 1641 3 0 #> 1642 3 0 #> 1643 3 0 #> 1644 3 0 #> 1645 3 0 #> 1646 3 0 #> 1647 3 0 #> 1648 3 0 #> 1649 3 0 #> 1650 3 0 #> 1651 3 0 #> 1652 3 0 #> 1653 3 0 #> 1654 3 0 #> 1655 3 0 #> 1656 3 0 #> 1657 3 0 #> 1658 3 0 #> 1659 3 0 #> 1660 3 0 #> 1661 3 0 #> 1662 3 0 #> 1663 3 0 #> 1664 3 0 #> 1665 3 0 #> 1666 3 0 #> 1667 3 0 #> 1668 3 0 #> 1669 3 0 #> 1670 3 0 #> 1671 3 0 #> 1672 3 0 #> 1673 3 0 #> 1674 3 0 #> 1675 3 0 #> 1676 3 0 #> 1677 3 0 #> 1678 3 0 #> 1679 5 0 #> 1680 5 0 #> 1681 5 0 #> 1682 5 0 #> 1683 5 0 #> 1684 5 0 #> 1685 5 0 #> 1686 5 0 #> 1687 5 0 #> 1688 5 0 #> 1689 5 0 #> 1690 5 0 #> 1691 5 0 #> 1692 5 0 #> 1693 5 0 #> 1694 5 0 #> 1695 5 0 #> 1696 5 0 #> 1697 5 0 #> 1698 5 0 #> 1699 5 0 #> 1700 5 0 #> 1701 5 0 #> 1702 5 0 #> 1703 5 0 #> 1704 5 0 #> 1705 5 0 #> 1706 5 0 #> 1707 3 0 #> 1708 3 0 #> 1709 3 0 #> 1710 3 0 #> 1711 3 0 #> 1712 3 0 #> 1713 3 0 #> 1714 3 0 #> 1715 3 0 #> 1716 3 0 #> 1717 3 0 #> 1718 3 0 #> 1719 3 0 #> 1720 3 0 #> 1721 3 0 #> 1722 3 0 #> 1723 3 0 #> 1724 3 0 #> 1725 3 0 #> 1726 3 0 #> 1727 3 0 #> 1728 3 0 #> 1729 3 0 #> 1730 3 0 #> 1731 3 0 #> 1732 3 0 #> 1733 3 0 #> 1734 3 0 #> 1735 3 0 #> 1736 3 0 #> 1737 3 0 #> 1738 3 0 #> 1739 3 0 #> 1740 3 0 #> 1741 3 0 #> 1742 3 0 #> 1743 3 0 #> 1744 3 0 #> 1745 3 0 #> 1746 3 0 #> 1747 3 0 #> 1748 3 0 #> 1749 3 0 #> 1750 3 0 #> 1751 3 0 #> 1752 3 0 #> 1753 3 0 #> 1754 3 0 #> 1755 3 0 #> 1756 3 0 #> 1757 3 0 #> 1758 3 0 #> 1759 3 0 #> 1760 3 0 #> 1761 3 0 #> 1762 3 0 #> 1763 4 0 #> 1764 4 0 #> 1765 4 0 #> 1766 4 0 #> 1767 4 0 #> 1768 4 0 #> 1769 4 0 #> 1770 4 0 #> 1771 4 0 #> 1772 4 0 #> 1773 4 0 #> 1774 4 0 #> 1775 4 0 #> 1776 4 0 #> 1777 4 0 #> 1778 4 0 #> 1779 4 0 #> 1780 4 0 #> 1781 4 0 #> 1782 4 0 #> 1783 4 0 #> 1784 4 0 #> 1785 4 0 #> 1786 4 0 #> 1787 4 0 #> 1788 4 0 #> 1789 4 0 #> 1790 4 0 #> 1791 2 0 #> 1792 2 0 #> 1793 2 0 #> 1794 2 0 #> 1795 2 0 #> 1796 2 0 #> 1797 2 0 #> 1798 2 0 #> 1799 2 0 #> 1800 2 0 #> 1801 2 0 #> 1802 2 0 #> 1803 2 0 #> 1804 2 0 #> 1805 2 0 #> 1806 2 0 #> 1807 2 0 #> 1808 2 0 #> 1809 2 0 #> 1810 2 0 #> 1811 2 0 #> 1812 2 0 #> 1813 2 0 #> 1814 2 0 #> 1815 2 0 #> 1816 2 0 #> 1817 2 0 #> 1818 2 0 #> 1819 3 0 #> 1820 3 0 #> 1821 3 0 #> 1822 3 0 #> 1823 3 0 #> 1824 3 0 #> 1825 3 0 #> 1826 3 0 #> 1827 3 0 #> 1828 3 0 #> 1829 3 0 #> 1830 3 0 #> 1831 3 0 #> 1832 3 0 #> 1833 3 0 #> 1834 3 0 #> 1835 3 0 #> 1836 3 0 #> 1837 3 0 #> 1838 3 0 #> 1839 3 0 #> 1840 3 0 #> 1841 3 0 #> 1842 3 0 #> 1843 3 0 #> 1844 3 0 #> 1845 3 0 #> 1846 3 0 #> 1847 1 0 #> 1848 1 0 #> 1849 1 0 #> 1850 1 0 #> 1851 1 0 #> 1852 1 0 #> 1853 1 0 #> 1854 1 0 #> 1855 1 0 #> 1856 1 0 #> 1857 1 0 #> 1858 1 0 #> 1859 1 0 #> 1860 1 0 #> 1861 1 0 #> 1862 1 0 #> 1863 1 0 #> 1864 1 0 #> 1865 1 0 #> 1866 1 0 #> 1867 1 0 #> 1868 1 0 #> 1869 1 0 #> 1870 1 0 #> 1871 1 0 #> 1872 1 0 #> 1873 1 0 #> 1874 1 0 #> 1875 4 0 #> 1876 4 0 #> 1877 4 0 #> 1878 4 0 #> 1879 4 0 #> 1880 4 0 #> 1881 4 0 #> 1882 4 0 #> 1883 4 0 #> 1884 4 0 #> 1885 4 0 #> 1886 4 0 #> 1887 4 0 #> 1888 4 0 #> 1889 4 0 #> 1890 4 0 #> 1891 4 0 #> 1892 4 0 #> 1893 4 0 #> 1894 4 0 #> 1895 4 0 #> 1896 4 0 #> 1897 4 0 #> 1898 4 0 #> 1899 4 0 #> 1900 4 0 #> 1901 4 0 #> 1902 4 0 #> 1903 2 0 #> 1904 2 0 #> 1905 2 0 #> 1906 2 0 #> 1907 2 0 #> 1908 2 0 #> 1909 2 0 #> 1910 2 0 #> 1911 2 0 #> 1912 2 0 #> 1913 2 0 #> 1914 2 0 #> 1915 2 0 #> 1916 2 0 #> 1917 2 0 #> 1918 2 0 #> 1919 2 0 #> 1920 2 0 #> 1921 2 0 #> 1922 2 0 #> 1923 2 0 #> 1924 2 0 #> 1925 2 0 #> 1926 2 0 #> 1927 2 0 #> 1928 2 0 #> 1929 2 0 #> 1930 2 0 #> 1931 5 0 #> 1932 5 0 #> 1933 5 0 #> 1934 5 0 #> 1935 5 0 #> 1936 5 0 #> 1937 5 0 #> 1938 5 0 #> 1939 5 0 #> 1940 5 0 #> 1941 5 0 #> 1942 5 0 #> 1943 5 0 #> 1944 5 0 #> 1945 5 0 #> 1946 5 0 #> 1947 5 0 #> 1948 5 0 #> 1949 5 0 #> 1950 5 0 #> 1951 5 0 #> 1952 5 0 #> 1953 5 0 #> 1954 5 0 #> 1955 5 0 #> 1956 5 0 #> 1957 5 0 #> 1958 5 0 #> 1959 6 0 #> 1960 6 0 #> 1961 6 0 #> 1962 6 0 #> 1963 6 0 #> 1964 6 0 #> 1965 6 0 #> 1966 6 0 #> 1967 6 0 #> 1968 6 0 #> 1969 6 0 #> 1970 6 0 #> 1971 6 0 #> 1972 6 0 #> 1973 6 0 #> 1974 6 0 #> 1975 6 0 #> 1976 6 0 #> 1977 6 0 #> 1978 6 0 #> 1979 6 0 #> 1980 6 0 #> 1981 6 0 #> 1982 6 0 #> 1983 6 0 #> 1984 6 0 #> 1985 6 0 #> 1986 6 0 #> 1987 5 0 #> 1988 5 0 #> 1989 5 0 #> 1990 5 0 #> 1991 5 0 #> 1992 5 0 #> 1993 5 0 #> 1994 5 0 #> 1995 5 0 #> 1996 5 0 #> 1997 5 0 #> 1998 5 0 #> 1999 5 0 #> 2000 5 0 #> 2001 5 0 #> 2002 5 0 #> 2003 5 0 #> 2004 5 0 #> 2005 5 0 #> 2006 5 0 #> 2007 5 0 #> 2008 5 0 #> 2009 5 0 #> 2010 5 0 #> 2011 5 0 #> 2012 5 0 #> 2013 5 0 #> 2014 5 0 #> 2015 0 0 #> 2016 0 0 #> 2017 0 0 #> 2018 0 0 #> 2019 0 0 #> 2020 0 0 #> 2021 0 0 #> 2022 0 0 #> 2023 0 0 #> 2024 0 0 #> 2025 0 0 #> 2026 0 0 #> 2027 0 0 #> 2028 0 0 #> 2029 0 0 #> 2030 0 0 #> 2031 0 0 #> 2032 0 0 #> 2033 0 0 #> 2034 0 0 #> 2035 0 0 #> 2036 0 0 #> 2037 0 0 #> 2038 0 0 #> 2039 0 0 #> 2040 0 0 #> Game_URL #> 1 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 2 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 3 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 4 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 5 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 6 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 7 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 8 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 9 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 10 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 11 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 12 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 13 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 14 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 15 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 16 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 17 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 18 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 19 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 20 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 21 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 22 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 23 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 24 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 25 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 26 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 27 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 28 https://fbref.com/en/matches/82b4ca95/Girona-Valladolid-August-17-2018-La-Liga #> 29 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 30 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 31 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 32 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 33 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 34 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 35 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 36 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 37 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 38 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 39 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 40 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 41 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 42 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 43 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 44 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 45 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 46 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 47 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 48 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 49 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 50 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 51 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 52 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 53 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 54 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 55 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 56 https://fbref.com/en/matches/9fe3febe/Real-Betis-Levante-August-17-2018-La-Liga #> 57 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 58 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 59 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 60 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 61 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 62 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 63 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 64 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 65 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 66 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 67 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 68 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 69 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 70 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 71 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 72 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 73 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 74 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 75 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 76 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 77 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 78 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 79 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 80 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 81 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 82 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 83 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 84 https://fbref.com/en/matches/a8d60ff6/Celta-Vigo-Espanyol-August-18-2018-La-Liga #> 85 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 86 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 87 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 88 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 89 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 90 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 91 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 92 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 93 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 94 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 95 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 96 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 97 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 98 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 99 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 100 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 101 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 102 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 103 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 104 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 105 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 106 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 107 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 108 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 109 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 110 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 111 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 112 https://fbref.com/en/matches/aeeb77fc/Villarreal-Real-Sociedad-August-18-2018-La-Liga #> 113 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 114 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 115 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 116 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 117 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 118 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 119 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 120 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 121 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 122 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 123 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 124 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 125 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 126 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 127 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 128 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 129 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 130 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 131 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 132 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 133 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 134 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 135 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 136 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 137 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 138 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 139 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 140 https://fbref.com/en/matches/e95b2588/Barcelona-Alaves-August-18-2018-La-Liga #> 141 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 142 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 143 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 144 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 145 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 146 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 147 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 148 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 149 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 150 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 151 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 152 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 153 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 154 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 155 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 156 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 157 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 158 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 159 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 160 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 161 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 162 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 163 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 164 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 165 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 166 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 167 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 168 https://fbref.com/en/matches/446f0d99/Eibar-Huesca-August-19-2018-La-Liga #> 169 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 170 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 171 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 172 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 173 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 174 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 175 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 176 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 177 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 178 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 179 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 180 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 181 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 182 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 183 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 184 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 185 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 186 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 187 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 188 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 189 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 190 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 191 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 192 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 193 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 194 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 195 https://fbref.com/en/matches/d1aa3271/Rayo-Vallecano-Sevilla-August-19-2018-La-Liga #> 196 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 197 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 198 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 199 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 200 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 201 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 202 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 203 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 204 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 205 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 206 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 207 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 208 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 209 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 210 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 211 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 212 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 213 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 214 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 215 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 216 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 217 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 218 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 219 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 220 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 221 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 222 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 223 https://fbref.com/en/matches/25f5e47e/Real-Madrid-Getafe-August-19-2018-La-Liga #> 224 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 225 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 226 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 227 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 228 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 229 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 230 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 231 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 232 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 233 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 234 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 235 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 236 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 237 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 238 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 239 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 240 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 241 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 242 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 243 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 244 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 245 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 246 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 247 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 248 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 249 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 250 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 251 https://fbref.com/en/matches/1202acb1/Valencia-Atletico-Madrid-August-20-2018-La-Liga #> 252 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 253 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 254 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 255 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 256 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 257 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 258 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 259 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 260 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 261 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 262 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 263 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 264 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 265 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 266 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 267 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 268 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 269 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 270 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 271 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 272 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 273 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 274 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 275 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 276 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 277 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 278 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 279 https://fbref.com/en/matches/95ac7d44/Athletic-Club-Leganes-August-20-2018-La-Liga #> 280 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 281 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 282 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 283 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 284 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 285 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 286 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 287 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 288 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 289 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 290 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 291 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 292 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 293 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 294 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 295 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 296 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 297 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 298 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 299 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 300 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 301 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 302 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 303 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 304 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 305 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 306 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 307 https://fbref.com/en/matches/aed2b90b/Getafe-Eibar-August-24-2018-La-Liga #> 308 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 309 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 310 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 311 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 312 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 313 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 314 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 315 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 316 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 317 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 318 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 319 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 320 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 321 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 322 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 323 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 324 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 325 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 326 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 327 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 328 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 329 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 330 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 331 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 332 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 333 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 334 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 335 https://fbref.com/en/matches/75220ead/Leganes-Real-Sociedad-August-24-2018-La-Liga #> 336 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 337 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 338 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 339 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 340 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 341 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 342 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 343 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 344 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 345 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 346 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 347 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 348 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 349 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 350 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 351 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 352 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 353 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 354 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 355 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 356 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 357 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 358 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 359 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 360 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 361 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 362 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 363 https://fbref.com/en/matches/31b10b4c/Alaves-Real-Betis-August-25-2018-La-Liga #> 364 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 365 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 366 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 367 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 368 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 369 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 370 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 371 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 372 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 373 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 374 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 375 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 376 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 377 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 378 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 379 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 380 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 381 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 382 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 383 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 384 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 385 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 386 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 387 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 388 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 389 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 390 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 391 https://fbref.com/en/matches/9dafff66/Atletico-Madrid-Rayo-Vallecano-August-25-2018-La-Liga #> 392 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 393 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 394 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 395 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 396 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 397 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 398 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 399 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 400 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 401 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 402 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 403 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 404 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 405 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 406 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 407 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 408 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 409 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 410 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 411 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 412 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 413 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 414 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 415 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 416 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 417 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 418 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 419 https://fbref.com/en/matches/262193b3/Valladolid-Barcelona-August-25-2018-La-Liga #> 420 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 421 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 422 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 423 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 424 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 425 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 426 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 427 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 428 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 429 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 430 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 431 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 432 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 433 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 434 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 435 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 436 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 437 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 438 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 439 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 440 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 441 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 442 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 443 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 444 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 445 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 446 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 447 https://fbref.com/en/matches/9c6a2f94/Espanyol-Valencia-August-26-2018-La-Liga #> 448 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 449 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 450 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 451 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 452 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 453 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 454 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 455 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 456 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 457 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 458 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 459 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 460 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 461 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 462 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 463 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 464 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 465 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 466 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 467 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 468 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 469 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 470 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 471 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 472 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 473 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 474 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 475 https://fbref.com/en/matches/5aa7f90b/Girona-Real-Madrid-August-26-2018-La-Liga #> 476 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 477 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 478 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 479 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 480 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 481 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 482 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 483 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 484 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 485 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 486 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 487 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 488 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 489 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 490 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 491 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 492 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 493 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 494 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 495 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 496 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 497 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 498 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 499 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 500 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 501 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 502 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 503 https://fbref.com/en/matches/ec7274c0/Sevilla-Villarreal-August-26-2018-La-Liga #> 504 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 505 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 506 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 507 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 508 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 509 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 510 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 511 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 512 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 513 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 514 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 515 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 516 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 517 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 518 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 519 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 520 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 521 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 522 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 523 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 524 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 525 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 526 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 527 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 528 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 529 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 530 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 531 https://fbref.com/en/matches/37c34100/Levante-Celta-Vigo-August-27-2018-La-Liga #> 532 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 533 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 534 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 535 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 536 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 537 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 538 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 539 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 540 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 541 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 542 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 543 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 544 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 545 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 546 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 547 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 548 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 549 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 550 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 551 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 552 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 553 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 554 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 555 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 556 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 557 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 558 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 559 https://fbref.com/en/matches/0d234b90/Athletic-Club-Huesca-August-27-2018-La-Liga #> 560 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 561 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 562 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 563 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 564 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 565 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 566 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 567 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 568 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 569 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 570 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 571 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 572 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 573 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 574 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 575 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 576 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 577 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 578 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 579 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 580 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 581 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 582 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 583 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 584 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 585 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 586 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 587 https://fbref.com/en/matches/3505425b/Getafe-Valladolid-August-31-2018-La-Liga #> 588 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 589 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 590 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 591 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 592 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 593 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 594 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 595 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 596 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 597 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 598 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 599 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 600 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 601 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 602 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 603 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 604 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 605 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 606 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 607 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 608 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 609 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 610 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 611 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 612 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 613 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 614 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 615 https://fbref.com/en/matches/d376ad57/Villarreal-Girona-August-31-2018-La-Liga #> 616 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 617 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 618 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 619 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 620 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 621 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 622 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 623 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 624 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 625 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 626 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 627 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 628 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 629 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 630 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 631 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 632 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 633 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 634 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 635 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 636 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 637 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 638 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 639 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 640 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 641 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 642 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 643 https://fbref.com/en/matches/e9a96548/Eibar-Real-Sociedad-August-31-2018-La-Liga #> 644 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 645 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 646 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 647 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 648 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 649 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 650 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 651 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 652 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 653 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 654 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 655 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 656 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 657 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 658 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 659 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 660 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 661 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 662 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 663 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 664 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 665 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 666 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 667 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 668 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 669 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 670 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 671 https://fbref.com/en/matches/612c7914/Celta-Vigo-Atletico-Madrid-September-1-2018-La-Liga #> 672 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 673 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 674 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 675 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 676 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 677 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 678 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 679 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 680 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 681 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 682 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 683 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 684 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 685 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 686 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 687 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 688 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 689 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 690 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 691 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 692 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 693 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 694 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 695 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 696 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 697 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 698 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 699 https://fbref.com/en/matches/273a53fc/Real-Madrid-Leganes-September-1-2018-La-Liga #> 700 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 701 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 702 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 703 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 704 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 705 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 706 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 707 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 708 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 709 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 710 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 711 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 712 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 713 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 714 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 715 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 716 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 717 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 718 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 719 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 720 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 721 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 722 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 723 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 724 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 725 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 726 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 727 https://fbref.com/en/matches/8b8f19c0/Levante-Valencia-September-2-2018-La-Liga #> 728 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 729 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 730 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 731 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 732 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 733 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 734 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 735 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 736 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 737 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 738 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 739 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 740 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 741 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 742 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 743 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 744 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 745 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 746 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 747 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 748 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 749 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 750 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 751 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 752 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 753 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 754 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 755 https://fbref.com/en/matches/efc2a670/Alaves-Espanyol-September-2-2018-La-Liga #> 756 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 757 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 758 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 759 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 760 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 761 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 762 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 763 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 764 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 765 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 766 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 767 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 768 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 769 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 770 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 771 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 772 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 773 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 774 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 775 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 776 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 777 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 778 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 779 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 780 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 781 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 782 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 783 https://fbref.com/en/matches/0b6d40c5/Barcelona-Huesca-September-2-2018-La-Liga #> 784 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 785 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 786 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 787 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 788 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 789 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 790 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 791 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 792 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 793 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 794 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 795 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 796 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 797 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 798 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 799 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 800 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 801 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 802 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 803 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 804 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 805 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 806 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 807 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 808 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 809 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 810 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 811 https://fbref.com/en/matches/386b9a82/Real-Betis-Sevilla-September-2-2018-La-Liga #> 812 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 813 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 814 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 815 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 816 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 817 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 818 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 819 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 820 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 821 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 822 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 823 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 824 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 825 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 826 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 827 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 828 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 829 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 830 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 831 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 832 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 833 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 834 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 835 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 836 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 837 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 838 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 839 https://fbref.com/en/matches/3b452df0/Huesca-Rayo-Vallecano-September-14-2018-La-Liga #> 840 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 841 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 842 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 843 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 844 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 845 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 846 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 847 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 848 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 849 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 850 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 851 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 852 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 853 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 854 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 855 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 856 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 857 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 858 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 859 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 860 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 861 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 862 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 863 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 864 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 865 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 866 https://fbref.com/en/matches/4bd8f1d5/Atletico-Madrid-Eibar-September-15-2018-La-Liga #> 867 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 868 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 869 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 870 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 871 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 872 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 873 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 874 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 875 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 876 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 877 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 878 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 879 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 880 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 881 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 882 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 883 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 884 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 885 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 886 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 887 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 888 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 889 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 890 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 891 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 892 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 893 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 894 https://fbref.com/en/matches/afa6f343/Real-Sociedad-Barcelona-September-15-2018-La-Liga #> 895 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 896 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 897 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 898 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 899 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 900 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 901 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 902 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 903 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 904 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 905 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 906 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 907 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 908 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 909 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 910 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 911 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 912 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 913 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 914 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 915 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 916 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 917 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 918 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 919 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 920 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 921 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 922 https://fbref.com/en/matches/91a61918/Valencia-Real-Betis-September-15-2018-La-Liga #> 923 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 924 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 925 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 926 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 927 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 928 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 929 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 930 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 931 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 932 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 933 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 934 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 935 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 936 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 937 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 938 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 939 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 940 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 941 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 942 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 943 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 944 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 945 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 946 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 947 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 948 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 949 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 950 https://fbref.com/en/matches/bb5953f9/Athletic-Club-Real-Madrid-September-15-2018-La-Liga #> 951 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 952 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 953 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 954 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 955 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 956 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 957 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 958 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 959 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 960 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 961 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 962 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 963 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 964 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 965 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 966 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 967 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 968 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 969 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 970 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 971 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 972 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 973 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 974 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 975 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 976 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 977 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 978 https://fbref.com/en/matches/6c8c4d1a/Leganes-Villarreal-September-16-2018-La-Liga #> 979 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 980 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 981 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 982 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 983 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 984 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 985 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 986 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 987 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 988 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 989 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 990 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 991 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 992 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 993 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 994 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 995 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 996 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 997 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 998 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 999 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1000 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1001 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1002 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1003 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1004 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1005 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1006 https://fbref.com/en/matches/1fe6901f/Espanyol-Levante-September-16-2018-La-Liga #> 1007 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1008 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1009 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1010 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1011 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1012 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1013 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1014 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1015 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1016 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1017 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1018 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1019 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1020 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1021 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1022 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1023 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1024 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1025 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1026 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1027 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1028 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1029 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1030 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1031 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1032 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1033 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1034 https://fbref.com/en/matches/6e8f0e3e/Valladolid-Alaves-September-16-2018-La-Liga #> 1035 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1036 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1037 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1038 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1039 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1040 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1041 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1042 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1043 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1044 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1045 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1046 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1047 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1048 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1049 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1050 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1051 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1052 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1053 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1054 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1055 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1056 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1057 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1058 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1059 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1060 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1061 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1062 https://fbref.com/en/matches/a12e422c/Sevilla-Getafe-September-16-2018-La-Liga #> 1063 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1064 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1065 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1066 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1067 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1068 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1069 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1070 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1071 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1072 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1073 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1074 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1075 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1076 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1077 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1078 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1079 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1080 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1081 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1082 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1083 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1084 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1085 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1086 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1087 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1088 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1089 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1090 https://fbref.com/en/matches/bcf15aba/Girona-Celta-Vigo-September-17-2018-La-Liga #> 1091 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1092 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1093 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1094 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1095 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1096 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1097 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1098 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1099 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1100 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1101 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1102 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1103 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1104 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1105 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1106 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1107 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1108 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1109 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1110 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1111 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1112 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1113 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1114 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1115 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1116 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1117 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1118 https://fbref.com/en/matches/271adbd0/Huesca-Real-Sociedad-September-21-2018-La-Liga #> 1119 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1120 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1121 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1122 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1123 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1124 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1125 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1126 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1127 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1128 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1129 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1130 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1131 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1132 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1133 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1134 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1135 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1136 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1137 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1138 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1139 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1140 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1141 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1142 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1143 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1144 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1145 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1146 https://fbref.com/en/matches/aa996107/Rayo-Vallecano-Alaves-September-22-2018-La-Liga #> 1147 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1148 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1149 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1150 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1151 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1152 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1153 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1154 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1155 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1156 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1157 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1158 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1159 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1160 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1161 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1162 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1163 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1164 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1165 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1166 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1167 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1168 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1169 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1170 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1171 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1172 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1173 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1174 https://fbref.com/en/matches/4c66f244/Eibar-Leganes-September-22-2018-La-Liga #> 1175 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1176 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1177 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1178 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1179 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1180 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1181 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1182 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1183 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1184 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1185 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1186 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1187 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1188 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1189 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1190 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1191 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1192 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1193 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1194 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1195 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1196 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1197 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1198 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1199 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1200 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1201 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1202 https://fbref.com/en/matches/68974e33/Celta-Vigo-Valladolid-September-22-2018-La-Liga #> 1203 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1204 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1205 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1206 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1207 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1208 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1209 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1210 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1211 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1212 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1213 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1214 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1215 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1216 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1217 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1218 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1219 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1220 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1221 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1222 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1223 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1224 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1225 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1226 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1227 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1228 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1229 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1230 https://fbref.com/en/matches/33165f42/Getafe-Atletico-Madrid-September-22-2018-La-Liga #> 1231 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1232 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1233 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1234 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1235 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1236 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1237 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1238 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1239 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1240 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1241 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1242 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1243 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1244 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1245 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1246 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1247 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1248 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1249 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1250 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1251 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1252 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1253 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1254 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1255 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1256 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1257 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1258 https://fbref.com/en/matches/b5e24bc9/Real-Madrid-Espanyol-September-22-2018-La-Liga #> 1259 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1260 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1261 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1262 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1263 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1264 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1265 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1266 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1267 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1268 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1269 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1270 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1271 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1272 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1273 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1274 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1275 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1276 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1277 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1278 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1279 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1280 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1281 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1282 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1283 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1284 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1285 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1286 https://fbref.com/en/matches/6e11f898/Levante-Sevilla-September-23-2018-La-Liga #> 1287 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1288 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1289 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1290 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1291 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1292 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1293 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1294 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1295 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1296 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1297 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1298 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1299 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1300 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1301 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1302 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1303 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1304 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1305 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1306 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1307 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1308 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1309 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1310 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1311 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1312 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1313 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1314 https://fbref.com/en/matches/6999b1a0/Villarreal-Valencia-September-23-2018-La-Liga #> 1315 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1316 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1317 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1318 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1319 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1320 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1321 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1322 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1323 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1324 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1325 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1326 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1327 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1328 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1329 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1330 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1331 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1332 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1333 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1334 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1335 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1336 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1337 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1338 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1339 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1340 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1341 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1342 https://fbref.com/en/matches/6830d52f/Real-Betis-Athletic-Club-September-23-2018-La-Liga #> 1343 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1344 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1345 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1346 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1347 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1348 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1349 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1350 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1351 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1352 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1353 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1354 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1355 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1356 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1357 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1358 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1359 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1360 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1361 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1362 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1363 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1364 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1365 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1366 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1367 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1368 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1369 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1370 https://fbref.com/en/matches/96e8cb92/Barcelona-Girona-September-23-2018-La-Liga #> 1371 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1372 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1373 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1374 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1375 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1376 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1377 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1378 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1379 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1380 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1381 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1382 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1383 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1384 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1385 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1386 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1387 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1388 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1389 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1390 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1391 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1392 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1393 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1394 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1395 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1396 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1397 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1398 https://fbref.com/en/matches/c188683e/Espanyol-Eibar-September-25-2018-La-Liga #> 1399 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1400 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1401 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1402 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1403 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1404 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1405 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1406 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1407 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1408 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1409 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1410 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1411 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1412 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1413 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1414 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1415 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1416 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1417 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1418 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1419 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1420 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1421 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1422 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1423 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1424 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1425 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1426 https://fbref.com/en/matches/61b8b4da/Real-Sociedad-Rayo-Vallecano-September-25-2018-La-Liga #> 1427 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1428 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1429 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1430 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1431 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1432 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1433 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1434 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1435 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1436 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1437 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1438 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1439 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1440 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1441 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1442 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1443 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1444 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1445 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1446 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1447 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1448 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1449 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1450 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1451 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1452 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1453 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1454 https://fbref.com/en/matches/206bfcf0/Atletico-Madrid-Huesca-September-25-2018-La-Liga #> 1455 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1456 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1457 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1458 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1459 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1460 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1461 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1462 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1463 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1464 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1465 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1466 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1467 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1468 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1469 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1470 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1471 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1472 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1473 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1474 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1475 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1476 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1477 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1478 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1479 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1480 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1481 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1482 https://fbref.com/en/matches/2ffc9376/Leganes-Barcelona-September-26-2018-La-Liga #> 1483 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1484 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1485 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1486 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1487 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1488 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1489 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1490 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1491 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1492 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1493 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1494 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1495 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1496 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1497 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1498 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1499 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1500 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1501 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1502 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1503 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1504 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1505 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1506 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1507 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1508 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1509 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1510 https://fbref.com/en/matches/48a26407/Athletic-Club-Villarreal-September-26-2018-La-Liga #> 1511 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1512 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1513 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1514 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1515 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1516 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1517 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1518 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1519 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1520 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1521 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1522 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1523 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1524 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1525 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1526 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1527 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1528 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1529 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1530 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1531 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1532 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1533 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1534 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1535 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1536 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1537 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1538 https://fbref.com/en/matches/16bb809b/Sevilla-Real-Madrid-September-26-2018-La-Liga #> 1539 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1540 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1541 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1542 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1543 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1544 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1545 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1546 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1547 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1548 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1549 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1550 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1551 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1552 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1553 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1554 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1555 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1556 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1557 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1558 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1559 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1560 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1561 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1562 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1563 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1564 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1565 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1566 https://fbref.com/en/matches/e90af81c/Valencia-Celta-Vigo-September-26-2018-La-Liga #> 1567 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1568 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1569 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1570 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1571 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1572 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1573 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1574 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1575 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1576 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1577 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1578 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1579 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1580 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1581 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1582 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1583 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1584 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1585 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1586 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1587 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1588 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1589 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1590 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1591 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1592 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1593 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1594 https://fbref.com/en/matches/5be74cda/Alaves-Getafe-September-27-2018-La-Liga #> 1595 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1596 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1597 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1598 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1599 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1600 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1601 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1602 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1603 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1604 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1605 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1606 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1607 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1608 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1609 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1610 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1611 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1612 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1613 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1614 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1615 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1616 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1617 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1618 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1619 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1620 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1621 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1622 https://fbref.com/en/matches/b83a53c3/Valladolid-Levante-September-27-2018-La-Liga #> 1623 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1624 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1625 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1626 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1627 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1628 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1629 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1630 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1631 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1632 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1633 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1634 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1635 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1636 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1637 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1638 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1639 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1640 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1641 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1642 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1643 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1644 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1645 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1646 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1647 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1648 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1649 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1650 https://fbref.com/en/matches/a9c4da3e/Girona-Real-Betis-September-27-2018-La-Liga #> 1651 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1652 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1653 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1654 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1655 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1656 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1657 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1658 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1659 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1660 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1661 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1662 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1663 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1664 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1665 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1666 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1667 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1668 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1669 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1670 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1671 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1672 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1673 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1674 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1675 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1676 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1677 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1678 https://fbref.com/en/matches/592e74ab/Rayo-Vallecano-Espanyol-September-28-2018-La-Liga #> 1679 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1680 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1681 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1682 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1683 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1684 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1685 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1686 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1687 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1688 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1689 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1690 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1691 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1692 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1693 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1694 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1695 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1696 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1697 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1698 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1699 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1700 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1701 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1702 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1703 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1704 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1705 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1706 https://fbref.com/en/matches/34c786e8/Real-Sociedad-Valencia-September-29-2018-La-Liga #> 1707 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1708 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1709 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1710 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1711 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1712 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1713 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1714 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1715 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1716 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1717 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1718 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1719 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1720 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1721 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1722 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1723 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1724 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1725 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1726 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1727 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1728 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1729 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1730 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1731 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1732 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1733 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1734 https://fbref.com/en/matches/104beba1/Barcelona-Athletic-Club-September-29-2018-La-Liga #> 1735 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1736 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1737 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1738 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1739 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1740 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1741 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1742 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1743 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1744 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1745 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1746 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1747 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1748 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1749 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1750 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1751 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1752 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1753 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1754 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1755 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1756 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1757 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1758 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1759 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1760 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1761 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1762 https://fbref.com/en/matches/d97aedf7/Eibar-Sevilla-September-29-2018-La-Liga #> 1763 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1764 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1765 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1766 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1767 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1768 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1769 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1770 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1771 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1772 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1773 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1774 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1775 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1776 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1777 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1778 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1779 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1780 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1781 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1782 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1783 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1784 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1785 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1786 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1787 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1788 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1789 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1790 https://fbref.com/en/matches/d2d44529/El-Derbi-Madrileno-Real-Madrid-Atletico-Madrid-September-29-2018-La-Liga #> 1791 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1792 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1793 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1794 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1795 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1796 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1797 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1798 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1799 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1800 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1801 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1802 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1803 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1804 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1805 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1806 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1807 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1808 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1809 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1810 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1811 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1812 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1813 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1814 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1815 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1816 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1817 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1818 https://fbref.com/en/matches/8bfabe21/Huesca-Girona-September-30-2018-La-Liga #> 1819 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1820 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1821 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1822 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1823 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1824 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1825 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1826 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1827 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1828 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1829 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1830 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1831 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1832 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1833 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1834 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1835 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1836 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1837 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1838 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1839 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1840 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1841 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1842 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1843 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1844 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1845 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1846 https://fbref.com/en/matches/d88a3f0a/Villarreal-Valladolid-September-30-2018-La-Liga #> 1847 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1848 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1849 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1850 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1851 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1852 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1853 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1854 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1855 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1856 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1857 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1858 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1859 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1860 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1861 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1862 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1863 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1864 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1865 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1866 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1867 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1868 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1869 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1870 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1871 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1872 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1873 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1874 https://fbref.com/en/matches/bbddb46a/Levante-Alaves-September-30-2018-La-Liga #> 1875 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1876 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1877 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1878 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1879 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1880 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1881 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1882 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1883 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1884 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1885 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1886 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1887 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1888 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1889 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1890 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1891 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1892 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1893 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1894 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1895 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1896 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1897 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1898 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1899 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1900 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1901 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1902 https://fbref.com/en/matches/637330f8/Real-Betis-Leganes-September-30-2018-La-Liga #> 1903 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1904 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1905 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1906 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1907 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1908 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1909 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1910 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1911 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1912 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1913 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1914 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1915 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1916 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1917 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1918 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1919 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1920 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1921 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1922 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1923 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1924 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1925 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1926 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1927 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1928 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1929 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1930 https://fbref.com/en/matches/64042946/Celta-Vigo-Getafe-October-1-2018-La-Liga #> 1931 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1932 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1933 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1934 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1935 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1936 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1937 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1938 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1939 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1940 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1941 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1942 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1943 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1944 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1945 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1946 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1947 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1948 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1949 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1950 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1951 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1952 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1953 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1954 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1955 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1956 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1957 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1958 https://fbref.com/en/matches/83e25acf/Athletic-Club-Real-Sociedad-October-5-2018-La-Liga #> 1959 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1960 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1961 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1962 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1963 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1964 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1965 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1966 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1967 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1968 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1969 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1970 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1971 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1972 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1973 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1974 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1975 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1976 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1977 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1978 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1979 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1980 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1981 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1982 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1983 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1984 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1985 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1986 https://fbref.com/en/matches/4f8ebd8c/Girona-Eibar-October-6-2018-La-Liga #> 1987 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1988 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1989 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1990 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1991 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1992 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1993 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1994 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1995 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1996 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1997 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1998 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 1999 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2000 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2001 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2002 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2003 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2004 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2005 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2006 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2007 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2008 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2009 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2010 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2011 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2012 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2013 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2014 https://fbref.com/en/matches/e344cb66/Getafe-Levante-October-6-2018-La-Liga #> 2015 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2016 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2017 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2018 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2019 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2020 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2021 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2022 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2023 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2024 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2025 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2026 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2027 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2028 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2029 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2030 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2031 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2032 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2033 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2034 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2035 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2036 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2037 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2038 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2039 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> 2040 https://fbref.com/en/matches/6bd9667d/Alaves-Real-Madrid-October-6-2018-La-Liga #> Team Home_Away Player #> 1 Girona Home Cristhian Stuani #> 2 Girona Home Patrick Roberts #> 3 Girona Home Borja García #> 4 Girona Home Portu #> 5 Girona Home Aleix García #> 6 Girona Home Anthony Lozano #> 7 Girona Home David Timor #> 8 Girona Home Pere Pons #> 9 Girona Home Álex Granell #> 10 Girona Home Marc Muniesa #> 11 Girona Home Bernardo Espinosa #> 12 Girona Home Juanpe #> 13 Girona Home Pedro Porro #> 14 Girona Home Yassine Bounou #> 15 Valladolid Away Chris Ramos #> 16 Valladolid Away Óscar Plano #> 17 Valladolid Away Toni Villa #> 18 Valladolid Away Míchel #> 19 Valladolid Away Keko #> 20 Valladolid Away Anuar #> 21 Valladolid Away Daniele Verde #> 22 Valladolid Away Rubén Alcaraz #> 23 Valladolid Away Borja Fernández #> 24 Valladolid Away Nacho #> 25 Valladolid Away Fernando Calero #> 26 Valladolid Away Kiko Olivas #> 27 Valladolid Away Javi Moyano #> 28 Valladolid Away Jordi Masip #> 29 Real Betis Home Loren Morón #> 30 Real Betis Home Ryad Boudebouz #> 31 Real Betis Home Antonio Sanabria #> 32 Real Betis Home Junior Firpo #> 33 Real Betis Home Francis Guerrero #> 34 Real Betis Home Antonio Barragán #> 35 Real Betis Home Andrés Guardado #> 36 Real Betis Home Sergio Canales #> 37 Real Betis Home William Carvalho #> 38 Real Betis Home Takashi Inui #> 39 Real Betis Home Zouhair Feddal #> 40 Real Betis Home Marc Bartra #> 41 Real Betis Home Aïssa Mandi #> 42 Real Betis Home Pau López #> 43 Levante Away Roger Martí #> 44 Levante Away Antonio Luna #> 45 Levante Away José Luis Morales #> 46 Levante Away Enis Bardhi #> 47 Levante Away José Campaña #> 48 Levante Away Cheick Doukouré #> 49 Levante Away Sanjin Prcić #> 50 Levante Away Jason #> 51 Levante Away Raphael Dwamena #> 52 Levante Away Toño #> 53 Levante Away Chema #> 54 Levante Away Sergio Postigo #> 55 Levante Away Coke #> 56 Levante Away Oier Olazábal #> 57 Celta Vigo Home Maxi Gómez #> 58 Celta Vigo Home Dennis Eckert #> 59 Celta Vigo Home Pione Sisto #> 60 Celta Vigo Home Emre Mor #> 61 Celta Vigo Home Brais Méndez #> 62 Celta Vigo Home Sofiane Boufal #> 63 Celta Vigo Home Iago Aspas #> 64 Celta Vigo Home Stanislav Lobotka #> 65 Celta Vigo Home Fran Beltrán #> 66 Celta Vigo Home Júnior Alonso #> 67 Celta Vigo Home Gustavo Cabral #> 68 Celta Vigo Home Néstor Araujo #> 69 Celta Vigo Home Hugo Mallo #> 70 Celta Vigo Home Sergio Álvarez #> 71 Espanyol Away Borja Iglesias #> 72 Espanyol Away Sergio García #> 73 Espanyol Away Pablo Piatti #> 74 Espanyol Away Javi Puado #> 75 Espanyol Away Léo Baptistão #> 76 Espanyol Away Hernán Pérez #> 77 Espanyol Away Sergi Darder #> 78 Espanyol Away Marc Roca #> 79 Espanyol Away Víctor Sánchez #> 80 Espanyol Away Dídac Vilà #> 81 Espanyol Away Mario Hermoso #> 82 Espanyol Away David López #> 83 Espanyol Away Javi López #> 84 Espanyol Away Diego López #> 85 Villarreal Home Karl Toko Ekambi #> 86 Villarreal Home Gerard Moreno #> 87 Villarreal Home Santi Cazorla #> 88 Villarreal Home Manu Trigueros #> 89 Villarreal Home Manu Morlanes #> 90 Villarreal Home Dani Raba #> 91 Villarreal Home Santiago Cáseres #> 92 Villarreal Home Pablo Fornals #> 93 Villarreal Home Carlos Bacca #> 94 Villarreal Home Alfonso Pedraza #> 95 Villarreal Home Ramiro Funes Mori #> 96 Villarreal Home Álvaro González #> 97 Villarreal Home Mario Gaspar #> 98 Villarreal Home Sergio Asenjo #> 99 Real Sociedad Away Willian José #> 100 Real Sociedad Away Rubén Pardo #> 101 Real Sociedad Away Juanmi #> 102 Real Sociedad Away Mikel Merino #> 103 Real Sociedad Away David Zurutuza #> 104 Real Sociedad Away Igor Zubeldia #> 105 Real Sociedad Away Asier Illarramendi #> 106 Real Sociedad Away Mikel Oyarzabal #> 107 Real Sociedad Away Aritz Elustondo #> 108 Real Sociedad Away Theo Hernández #> 109 Real Sociedad Away Héctor Moreno #> 110 Real Sociedad Away Diego Llorente #> 111 Real Sociedad Away Joseba Zaldúa #> 112 Real Sociedad Away Gerónimo Rulli #> 113 Barcelona Home Lionel Messi #> 114 Barcelona Home Luis Suárez #> 115 Barcelona Home Ousmane Dembélé #> 116 Barcelona Home Arthur Melo #> 117 Barcelona Home Ivan Rakitić #> 118 Barcelona Home Sergio Busquets #> 119 Barcelona Home Arturo Vidal #> 120 Barcelona Home Sergi Roberto #> 121 Barcelona Home Jordi Alba #> 122 Barcelona Home Samuel Umtiti #> 123 Barcelona Home Gerard Piqué #> 124 Barcelona Home Nélson Semedo #> 125 Barcelona Home Philippe Coutinho #> 126 Barcelona Home Marc-André ter Stegen #> 127 Alavés Away Rubén Sobrino #> 128 Alavés Away Burgui #> 129 Alavés Away Jony #> 130 Alavés Away Borja Bastón #> 131 Alavés Away Ibai Gómez #> 132 Alavés Away Manu García #> 133 Alavés Away Daniel Torres #> 134 Alavés Away Adrián Marín #> 135 Alavés Away Wakaso #> 136 Alavés Away Rubén Duarte #> 137 Alavés Away Guillermo Maripán #> 138 Alavés Away Víctor Laguardia #> 139 Alavés Away Martin Agirregabiria #> 140 Alavés Away Fernando Pacheco #> 141 Eibar Home Kiké #> 142 Eibar Home Charles #> 143 Eibar Home Sergi Enrich #> 144 Eibar Home Bebé #> 145 Eibar Home Gonzalo Escalante #> 146 Eibar Home Joan Jordán #> 147 Eibar Home Papakouli Diop #> 148 Eibar Home Fabián Orellana #> 149 Eibar Home José Ángel #> 150 Eibar Home Anaitz Arbilla #> 151 Eibar Home Pedro Bigas #> 152 Eibar Home Paulo Oliveira #> 153 Eibar Home Rubén Peña #> 154 Eibar Home Marko Dmitrović #> 155 Huesca Away Samuele Longo #> 156 Huesca Away Cucho #> 157 Huesca Away Rúben Semedo #> 158 Huesca Away Moi Gómez #> 159 Huesca Away Gonzalo Melero #> 160 Huesca Away Damián Musto #> 161 Huesca Away David Ferreiro #> 162 Huesca Away Álex Gallar #> 163 Huesca Away Ezequiel Ávila #> 164 Huesca Away Luisinho #> 165 Huesca Away Xabier Etxeita #> 166 Huesca Away Jorge Pulido #> 167 Huesca Away Jorge Miramón #> 168 Huesca Away Axel Werner #> 169 Rayo Vallecano Home Óscar Trejo #> 170 Rayo Vallecano Home Adri Embarba #> 171 Rayo Vallecano Home José Pozo #> 172 Rayo Vallecano Home Luis Advíncula #> 173 Rayo Vallecano Home Álvaro Medrán #> 174 Rayo Vallecano Home Javi Guerra #> 175 Rayo Vallecano Home Gaël Kakuta #> 176 Rayo Vallecano Home Jordi Amat #> 177 Rayo Vallecano Home Álex Moreno #> 178 Rayo Vallecano Home Chechu #> 179 Rayo Vallecano Home Abdoulaye Ba #> 180 Rayo Vallecano Home Tito #> 181 Rayo Vallecano Home Alberto García #> 182 Sevilla Away André Silva #> 183 Sevilla Away Franco Vázquez #> 184 Sevilla Away Pablo Sarabia #> 185 Sevilla Away Luis Muriel #> 186 Sevilla Away Éver Banega #> 187 Sevilla Away Ibrahim Amadou #> 188 Sevilla Away Roque Mesa #> 189 Sevilla Away Sergio Escudero #> 190 Sevilla Away Aleix Vidal #> 191 Sevilla Away Jesús Navas #> 192 Sevilla Away Sergi Gómez #> 193 Sevilla Away Simon Kjær #> 194 Sevilla Away Gabriel Mercado #> 195 Sevilla Away Tomáš Vaclík #> 196 Real Madrid Home Karim Benzema #> 197 Real Madrid Home Marco Asensio #> 198 Real Madrid Home Gareth Bale #> 199 Real Madrid Home Lucas Vázquez #> 200 Real Madrid Home Isco #> 201 Real Madrid Home Casemiro #> 202 Real Madrid Home Toni Kroos #> 203 Real Madrid Home Dani Ceballos #> 204 Real Madrid Home Luka Modrić #> 205 Real Madrid Home Marcelo #> 206 Real Madrid Home Sergio Ramos #> 207 Real Madrid Home Nacho #> 208 Real Madrid Home Dani Carvajal #> 209 Real Madrid Home Keylor Navas #> 210 Getafe Away Jorge Molina #> 211 Getafe Away Ángel Rodríguez #> 212 Getafe Away Amath #> 213 Getafe Away Jaime Mata #> 214 Getafe Away Gaku Shibasaki #> 215 Getafe Away Mauro Arambarri #> 216 Getafe Away Francisco Portillo #> 217 Getafe Away Iván Alejo #> 218 Getafe Away Nemanja Maksimović #> 219 Getafe Away Leandro Cabrera #> 220 Getafe Away Bruno González #> 221 Getafe Away Djené #> 222 Getafe Away Damián Suárez #> 223 Getafe Away David Soria #> 224 Valencia Home Santi Mina #> 225 Valencia Home Kévin Gameiro #> 226 Valencia Home Rodrigo #> 227 Valencia Home Daniel Wass #> 228 Valencia Home Geoffrey Kondogbia #> 229 Valencia Home Daniel Parejo #> 230 Valencia Home Carlos Soler #> 231 Valencia Home Michy Batshuayi #> 232 Valencia Home José Luis Gayà #> 233 Valencia Home Gabriel Paulista #> 234 Valencia Home Ezequiel Garay #> 235 Valencia Home Mouctar Diakhaby #> 236 Valencia Home Cristiano Piccini #> 237 Valencia Home Neto #> 238 Atlético Madrid Away Antoine Griezmann #> 239 Atlético Madrid Away Gelson Martins #> 240 Atlético Madrid Away Diego Costa #> 241 Atlético Madrid Away Thomas Lemar #> 242 Atlético Madrid Away Vitolo #> 243 Atlético Madrid Away Saúl Ñíguez #> 244 Atlético Madrid Away Koke #> 245 Atlético Madrid Away Ángel Correa #> 246 Atlético Madrid Away Thomas Partey #> 247 Atlético Madrid Away Filipe Luís #> 248 Atlético Madrid Away Diego Godín #> 249 Atlético Madrid Away Stefan Savić #> 250 Atlético Madrid Away Juanfran #> 251 Atlético Madrid Away Jan Oblak #> 252 Athletic Club Home Aritz Aduriz #> 253 Athletic Club Home Iñigo Córdoba #> 254 Athletic Club Home Iñaki Williams #> 255 Athletic Club Home Markel Susaeta #> 256 Athletic Club Home Iker Muniain #> 257 Athletic Club Home Dani García #> 258 Athletic Club Home Unai López #> 259 Athletic Club Home Raúl García #> 260 Athletic Club Home Yuri Berchiche #> 261 Athletic Club Home Peru Nolaskoain #> 262 Athletic Club Home Yeray Álvarez #> 263 Athletic Club Home Óscar de Marcos #> 264 Athletic Club Home Ander Capa #> 265 Athletic Club Home Unai Simón #> 266 Leganés Away Guido Carrillo #> 267 Leganés Away Youssef En-Nesyri #> 268 Leganés Away Javier Eraso #> 269 Leganés Away Michael Santos #> 270 Leganés Away Jonathan Silva #> 271 Leganés Away Gerard Gumbau #> 272 Leganés Away Rubén Pérez #> 273 Leganés Away Nabil El Zhar #> 274 Leganés Away Dani Ojeda #> 275 Leganés Away Raúl García #> 276 Leganés Away Dimitris Siovas #> 277 Leganés Away Ezequiel Muñoz #> 278 Leganés Away Juanfran #> 279 Leganés Away Iván Cuéllar #> 280 Getafe Home Jaime Mata #> 281 Getafe Home Jorge Molina #> 282 Getafe Home Ángel Rodríguez #> 283 Getafe Home Leandro Cabrera #> 284 Getafe Home Francisco Portillo #> 285 Getafe Home Nemanja Maksimović #> 286 Getafe Home Mauro Arambarri #> 287 Getafe Home Iván Alejo #> 288 Getafe Home Amath #> 289 Getafe Home Vitorino Antunes #> 290 Getafe Home Bruno González #> 291 Getafe Home Djené #> 292 Getafe Home Damián Suárez #> 293 Getafe Home David Soria #> 294 Eibar Away Sergi Enrich #> 295 Eibar Away Kiké #> 296 Eibar Away Charles #> 297 Eibar Away Pere Milla #> 298 Eibar Away Pablo Hervías #> 299 Eibar Away Papakouli Diop #> 300 Eibar Away Gonzalo Escalante #> 301 Eibar Away Joan Jordán #> 302 Eibar Away Bebé #> 303 Eibar Away José Ángel #> 304 Eibar Away Anaitz Arbilla #> 305 Eibar Away Paulo Oliveira #> 306 Eibar Away Rubén Peña #> 307 Eibar Away Marko Dmitrović #> 308 Leganés Home Guido Carrillo #> 309 Leganés Home Javier Eraso #> 310 Leganés Home Michael Santos #> 311 Leganés Home Dani Ojeda #> 312 Leganés Home Diego Rolán #> 313 Leganés Home Gerard Gumbau #> 314 Leganés Home Rubén Pérez #> 315 Leganés Home Nabil El Zhar #> 316 Leganés Home Jonathan Silva #> 317 Leganés Home Dimitris Siovas #> 318 Leganés Home Ezequiel Muñoz #> 319 Leganés Home Youssef En-Nesyri #> 320 Leganés Home Juanfran #> 321 Leganés Home Iván Cuéllar #> 322 Real Sociedad Away Willian José #> 323 Real Sociedad Away Juanmi #> 324 Real Sociedad Away David Zurutuza #> 325 Real Sociedad Away Mikel Merino #> 326 Real Sociedad Away Asier Illarramendi #> 327 Real Sociedad Away Igor Zubeldia #> 328 Real Sociedad Away Mikel Oyarzabal #> 329 Real Sociedad Away Rubén Pardo #> 330 Real Sociedad Away Theo Hernández #> 331 Real Sociedad Away Héctor Moreno #> 332 Real Sociedad Away Diego Llorente #> 333 Real Sociedad Away Aritz Elustondo #> 334 Real Sociedad Away Joseba Zaldúa #> 335 Real Sociedad Away Gerónimo Rulli #> 336 Alavés Home Rubén Sobrino #> 337 Alavés Home Burgui #> 338 Alavés Home Borja Bastón #> 339 Alavés Home John Guidetti #> 340 Alavés Home Jony #> 341 Alavés Home Patrick Twumasi #> 342 Alavés Home Manu García #> 343 Alavés Home Wakaso #> 344 Alavés Home Ibai Gómez #> 345 Alavés Home Rubén Duarte #> 346 Alavés Home Guillermo Maripán #> 347 Alavés Home Víctor Laguardia #> 348 Alavés Home Martin Agirregabiria #> 349 Alavés Home Fernando Pacheco #> 350 Real Betis Away Loren Morón #> 351 Real Betis Away Takashi Inui #> 352 Real Betis Away Antonio Sanabria #> 353 Real Betis Away Sergio Canales #> 354 Real Betis Away William Carvalho #> 355 Real Betis Away Ryad Boudebouz #> 356 Real Betis Away Andrés Guardado #> 357 Real Betis Away Junior Firpo #> 358 Real Betis Away Francis Guerrero #> 359 Real Betis Away Cristian Tello #> 360 Real Betis Away Zouhair Feddal #> 361 Real Betis Away Marc Bartra #> 362 Real Betis Away Aïssa Mandi #> 363 Real Betis Away Pau López #> 364 Atlético Madrid Home Diego Costa #> 365 Atlético Madrid Home Antoine Griezmann #> 366 Atlético Madrid Home Gelson Martins #> 367 Atlético Madrid Home Thomas Lemar #> 368 Atlético Madrid Home Saúl Ñíguez #> 369 Atlético Madrid Home Rodri #> 370 Atlético Madrid Home Ángel Correa #> 371 Atlético Madrid Home Koke #> 372 Atlético Madrid Home Lucas Hernández #> 373 Atlético Madrid Home Diego Godín #> 374 Atlético Madrid Home Stefan Savić #> 375 Atlético Madrid Home Juanfran #> 376 Atlético Madrid Home Thomas Partey #> 377 Atlético Madrid Home Jan Oblak #> 378 Rayo Vallecano Away Adri Embarba #> 379 Rayo Vallecano Away Álvaro García #> 380 Rayo Vallecano Away Sergio Moreno #> 381 Rayo Vallecano Away Santi Comesaña #> 382 Rayo Vallecano Away José Pozo #> 383 Rayo Vallecano Away Óscar Trejo #> 384 Rayo Vallecano Away Gaël Kakuta #> 385 Rayo Vallecano Away Álvaro Medrán #> 386 Rayo Vallecano Away Gorka Elustondo #> 387 Rayo Vallecano Away Álex Moreno #> 388 Rayo Vallecano Away Jordi Amat #> 389 Rayo Vallecano Away Abdoulaye Ba #> 390 Rayo Vallecano Away Luis Advíncula #> 391 Rayo Vallecano Away Alberto García #> 392 Valladolid Home Óscar Plano #> 393 Valladolid Home Enes Ünal #> 394 Valladolid Home Duje Čop #> 395 Valladolid Home Toni Villa #> 396 Valladolid Home Daniele Verde #> 397 Valladolid Home Rubén Alcaraz #> 398 Valladolid Home Borja Fernández #> 399 Valladolid Home Keko #> 400 Valladolid Home Anuar #> 401 Valladolid Home Nacho #> 402 Valladolid Home Fernando Calero #> 403 Valladolid Home Kiko Olivas #> 404 Valladolid Home Javi Moyano #> 405 Valladolid Home Jordi Masip #> 406 Barcelona Away Luis Suárez #> 407 Barcelona Away Munir El Haddadi #> 408 Barcelona Away Ousmane Dembélé #> 409 Barcelona Away Arturo Vidal #> 410 Barcelona Away Lionel Messi #> 411 Barcelona Away Philippe Coutinho #> 412 Barcelona Away Malcom #> 413 Barcelona Away Sergio Busquets #> 414 Barcelona Away Ivan Rakitić #> 415 Barcelona Away Jordi Alba #> 416 Barcelona Away Samuel Umtiti #> 417 Barcelona Away Gerard Piqué #> 418 Barcelona Away Sergi Roberto #> 419 Barcelona Away Marc-André ter Stegen #> 420 Espanyol Home Borja Iglesias #> 421 Espanyol Home Sergio García #> 422 Espanyol Home Hernán Pérez #> 423 Espanyol Home Esteban Granero #> 424 Espanyol Home Víctor Sánchez #> 425 Espanyol Home Sergi Darder #> 426 Espanyol Home Léo Baptistão #> 427 Espanyol Home Pablo Piatti #> 428 Espanyol Home Marc Roca #> 429 Espanyol Home Dídac Vilà #> 430 Espanyol Home Mario Hermoso #> 431 Espanyol Home David López #> 432 Espanyol Home Javi López #> 433 Espanyol Home Diego López #> 434 Valencia Away Santi Mina #> 435 Valencia Away Kévin Gameiro #> 436 Valencia Away Rodrigo #> 437 Valencia Away Michy Batshuayi #> 438 Valencia Away Daniel Wass #> 439 Valencia Away Denis Cheryshev #> 440 Valencia Away Geoffrey Kondogbia #> 441 Valencia Away Daniel Parejo #> 442 Valencia Away Carlos Soler #> 443 Valencia Away José Luis Gayà #> 444 Valencia Away Mouctar Diakhaby #> 445 Valencia Away Gabriel Paulista #> 446 Valencia Away Cristiano Piccini #> 447 Valencia Away Neto #> 448 Girona Home Anthony Lozano #> 449 Girona Home Cristhian Stuani #> 450 Girona Home Borja García #> 451 Girona Home Portu #> 452 Girona Home Álex Granell #> 453 Girona Home David Timor #> 454 Girona Home Pere Pons #> 455 Girona Home Aleix García #> 456 Girona Home Marc Muniesa #> 457 Girona Home Bernardo Espinosa #> 458 Girona Home Juanpe #> 459 Girona Home Pedro Porro #> 460 Girona Home Aday #> 461 Girona Home Yassine Bounou #> 462 Real Madrid Away Karim Benzema #> 463 Real Madrid Away Marco Asensio #> 464 Real Madrid Away Gareth Bale #> 465 Real Madrid Away Lucas Vázquez #> 466 Real Madrid Away Isco #> 467 Real Madrid Away Luka Modrić #> 468 Real Madrid Away Toni Kroos #> 469 Real Madrid Away Casemiro #> 470 Real Madrid Away Marcelo #> 471 Real Madrid Away Raphaël Varane #> 472 Real Madrid Away Sergio Ramos #> 473 Real Madrid Away Nacho #> 474 Real Madrid Away Dani Carvajal #> 475 Real Madrid Away Keylor Navas #> 476 Sevilla Home André Silva #> 477 Sevilla Home Franco Vázquez #> 478 Sevilla Home Aleix Vidal #> 479 Sevilla Home Pablo Sarabia #> 480 Sevilla Home Éver Banega #> 481 Sevilla Home Maxime Gonalons #> 482 Sevilla Home Roque Mesa #> 483 Sevilla Home Sergio Escudero #> 484 Sevilla Home Wissam Ben Yedder #> 485 Sevilla Home Jesús Navas #> 486 Sevilla Home Sergi Gómez #> 487 Sevilla Home Simon Kjær #> 488 Sevilla Home Gabriel Mercado #> 489 Sevilla Home Tomáš Vaclík #> 490 Villarreal Away Karl Toko Ekambi #> 491 Villarreal Away Jaume Costa #> 492 Villarreal Away Gerard Moreno #> 493 Villarreal Away Pablo Fornals #> 494 Villarreal Away Carlos Bacca #> 495 Villarreal Away Manu Trigueros #> 496 Villarreal Away Santi Cazorla #> 497 Villarreal Away Dani Raba #> 498 Villarreal Away Santiago Cáseres #> 499 Villarreal Away Alfonso Pedraza #> 500 Villarreal Away Víctor Ruiz #> 501 Villarreal Away Álvaro González #> 502 Villarreal Away Mario Gaspar #> 503 Villarreal Away Sergio Asenjo #> 504 Levante Home Roger Martí #> 505 Levante Home José Luis Morales #> 506 Levante Home Jason #> 507 Levante Home Raphael Dwamena #> 508 Levante Home Enis Bardhi #> 509 Levante Home Rubén Rochina #> 510 Levante Home Cheick Doukouré #> 511 Levante Home Sanjin Prcić #> 512 Levante Home José Campaña #> 513 Levante Home Toño #> 514 Levante Home Rober #> 515 Levante Home Sergio Postigo #> 516 Levante Home Coke #> 517 Levante Home Oier Olazábal #> 518 Celta Vigo Away Maxi Gómez #> 519 Celta Vigo Away Dennis Eckert #> 520 Celta Vigo Away Pione Sisto #> 521 Celta Vigo Away Okay Yokuşlu #> 522 Celta Vigo Away Iago Aspas #> 523 Celta Vigo Away Sofiane Boufal #> 524 Celta Vigo Away Júnior Alonso #> 525 Celta Vigo Away Fran Beltrán #> 526 Celta Vigo Away Stanislav Lobotka #> 527 Celta Vigo Away Hugo Mallo #> 528 Celta Vigo Away Néstor Araujo #> 529 Celta Vigo Away Gustavo Cabral #> 530 Celta Vigo Away Facundo Roncaglia #> 531 Celta Vigo Away Sergio Álvarez #> 532 Athletic Club Home Iñaki Williams #> 533 Athletic Club Home Iñigo Córdoba #> 534 Athletic Club Home Ander Iturraspe #> 535 Athletic Club Home Iker Muniain #> 536 Athletic Club Home Raúl García #> 537 Athletic Club Home Markel Susaeta #> 538 Athletic Club Home Gorka Guruzeta #> 539 Athletic Club Home Dani García #> 540 Athletic Club Home Yuri Berchiche #> 541 Athletic Club Home Peru Nolaskoain #> 542 Athletic Club Home Yeray Álvarez #> 543 Athletic Club Home Óscar de Marcos #> 544 Athletic Club Home Ander Capa #> 545 Athletic Club Home Unai Simón #> 546 Huesca Away Samuele Longo #> 547 Huesca Away Ezequiel Ávila #> 548 Huesca Away Cucho #> 549 Huesca Away Moi Gómez #> 550 Huesca Away David Ferreiro #> 551 Huesca Away Gonzalo Melero #> 552 Huesca Away Damián Musto #> 553 Huesca Away Álex Gallar #> 554 Huesca Away Serdar Gürler #> 555 Huesca Away Luisinho #> 556 Huesca Away Xabier Etxeita #> 557 Huesca Away Jorge Pulido #> 558 Huesca Away Jorge Miramón #> 559 Huesca Away Axel Werner #> 560 Getafe Home Jaime Mata #> 561 Getafe Home Jorge Molina #> 562 Getafe Home Ángel Rodríguez #> 563 Getafe Home Sergi Guardiola #> 564 Getafe Home Iván Alejo #> 565 Getafe Home Amath #> 566 Getafe Home Nemanja Maksimović #> 567 Getafe Home Mauro Arambarri #> 568 Getafe Home Francisco Portillo #> 569 Getafe Home Vitorino Antunes #> 570 Getafe Home Bruno González #> 571 Getafe Home Djené #> 572 Getafe Home Damián Suárez #> 573 Getafe Home David Soria #> 574 Valladolid Away Enes Ünal #> 575 Valladolid Away Duje Čop #> 576 Valladolid Away Toni Villa #> 577 Valladolid Away Míchel #> 578 Valladolid Away Keko #> 579 Valladolid Away Daniele Verde #> 580 Valladolid Away Óscar Plano #> 581 Valladolid Away Rubén Alcaraz #> 582 Valladolid Away Anuar #> 583 Valladolid Away Nacho #> 584 Valladolid Away Fernando Calero #> 585 Valladolid Away Kiko Olivas #> 586 Valladolid Away Javi Moyano #> 587 Valladolid Away Jordi Masip #> 588 Villarreal Home Karl Toko Ekambi #> 589 Villarreal Home Nicola Sansone #> 590 Villarreal Home Gerard Moreno #> 591 Villarreal Home Manu Trigueros #> 592 Villarreal Home Pablo Fornals #> 593 Villarreal Home Santi Cazorla #> 594 Villarreal Home Miguel Layún #> 595 Villarreal Home Santiago Cáseres #> 596 Villarreal Home Carlos Bacca #> 597 Villarreal Home Alfonso Pedraza #> 598 Villarreal Home Víctor Ruiz #> 599 Villarreal Home Álvaro González #> 600 Villarreal Home Mario Gaspar #> 601 Villarreal Home Sergio Asenjo #> 602 Girona Away Cristhian Stuani #> 603 Girona Away Borja García #> 604 Girona Away Patrick Roberts #> 605 Girona Away Anthony Lozano #> 606 Girona Away Aleix García #> 607 Girona Away Aday #> 608 Girona Away Marc Muniesa #> 609 Girona Away Álex Granell #> 610 Girona Away Pere Pons #> 611 Girona Away Pedro Porro #> 612 Girona Away Juanpe #> 613 Girona Away Bernardo Espinosa #> 614 Girona Away Pedro Alcalá #> 615 Girona Away Yassine Bounou #> 616 Eibar Home Marc Cardona #> 617 Eibar Home Charles #> 618 Eibar Home Sergi Enrich #> 619 Eibar Home Pere Milla #> 620 Eibar Home Papakouli Diop #> 621 Eibar Home Sergio Álvarez #> 622 Eibar Home Fabián Orellana #> 623 Eibar Home Joan Jordán #> 624 Eibar Home Anaitz Arbilla #> 625 Eibar Home Pedro Bigas #> 626 Eibar Home José Ángel #> 627 Eibar Home Paulo Oliveira #> 628 Eibar Home Rubén Peña #> 629 Eibar Home Marko Dmitrović #> 630 Real Sociedad Away Willian José #> 631 Real Sociedad Away Jon Bautista #> 632 Real Sociedad Away Juanmi #> 633 Real Sociedad Away David Zurutuza #> 634 Real Sociedad Away Mikel Oyarzabal #> 635 Real Sociedad Away Igor Zubeldia #> 636 Real Sociedad Away Asier Illarramendi #> 637 Real Sociedad Away Martín Merquelanz #> 638 Real Sociedad Away Luca Sangalli #> 639 Real Sociedad Away Theo Hernández #> 640 Real Sociedad Away Héctor Moreno #> 641 Real Sociedad Away Aritz Elustondo #> 642 Real Sociedad Away Joseba Zaldúa #> 643 Real Sociedad Away Gerónimo Rulli #> 644 Celta Vigo Home Maxi Gómez #> 645 Celta Vigo Home Pione Sisto #> 646 Celta Vigo Home Okay Yokuşlu #> 647 Celta Vigo Home Iago Aspas #> 648 Celta Vigo Home Sofiane Boufal #> 649 Celta Vigo Home Júnior Alonso #> 650 Celta Vigo Home Fran Beltrán #> 651 Celta Vigo Home Stanislav Lobotka #> 652 Celta Vigo Home Brais Méndez #> 653 Celta Vigo Home Hugo Mallo #> 654 Celta Vigo Home Néstor Araujo #> 655 Celta Vigo Home Gustavo Cabral #> 656 Celta Vigo Home Facundo Roncaglia #> 657 Celta Vigo Home Sergio Álvarez #> 658 Atlético Madrid Away Antoine Griezmann #> 659 Atlético Madrid Away Diego Costa #> 660 Atlético Madrid Away Koke #> 661 Atlético Madrid Away Thomas Partey #> 662 Atlético Madrid Away Thomas Lemar #> 663 Atlético Madrid Away Saúl Ñíguez #> 664 Atlético Madrid Away Ángel Correa #> 665 Atlético Madrid Away Nikola Kalinić #> 666 Atlético Madrid Away Filipe Luís #> 667 Atlético Madrid Away Diego Godín #> 668 Atlético Madrid Away José María Giménez #> 669 Atlético Madrid Away Santiago Arias #> 670 Atlético Madrid Away Stefan Savić #> 671 Atlético Madrid Away Jan Oblak #> 672 Real Madrid Home Karim Benzema #> 673 Real Madrid Home Marco Asensio #> 674 Real Madrid Home Dani Ceballos #> 675 Real Madrid Home Gareth Bale #> 676 Real Madrid Home Lucas Vázquez #> 677 Real Madrid Home Toni Kroos #> 678 Real Madrid Home Casemiro #> 679 Real Madrid Home Luka Modrić #> 680 Real Madrid Home Isco #> 681 Real Madrid Home Marcelo #> 682 Real Madrid Home Sergio Ramos #> 683 Real Madrid Home Raphaël Varane #> 684 Real Madrid Home Dani Carvajal #> 685 Real Madrid Home Thibaut Courtois #> 686 Leganés Away Guido Carrillo #> 687 Leganés Away Michael Santos #> 688 Leganés Away Diego Rolán #> 689 Leganés Away Nabil El Zhar #> 690 Leganés Away Youssef En-Nesyri #> 691 Leganés Away Gerard Gumbau #> 692 Leganés Away Rubén Pérez #> 693 Leganés Away Javier Eraso #> 694 Leganés Away Mikel Vesga #> 695 Leganés Away Jonathan Silva #> 696 Leganés Away Dimitris Siovas #> 697 Leganés Away Unai Bustinza #> 698 Leganés Away Juanfran #> 699 Leganés Away Iván Cuéllar #> 700 Levante Home Roger Martí #> 701 Levante Home Emmanuel Boateng #> 702 Levante Home Raphael Dwamena #> 703 Levante Home Enis Bardhi #> 704 Levante Home José Campaña #> 705 Levante Home Sanjin Prcić #> 706 Levante Home Jason #> 707 Levante Home José Luis Morales #> 708 Levante Home Toño #> 709 Levante Home Chema #> 710 Levante Home Sergio Postigo #> 711 Levante Home Rober #> 712 Levante Home Coke #> 713 Levante Home Oier Olazábal #> 714 Valencia Away Kévin Gameiro #> 715 Valencia Away Michy Batshuayi #> 716 Valencia Away Rodrigo #> 717 Valencia Away Denis Cheryshev #> 718 Valencia Away Ferrán Torres #> 719 Valencia Away Daniel Wass #> 720 Valencia Away Daniel Parejo #> 721 Valencia Away Carlos Soler #> 722 Valencia Away Santi Mina #> 723 Valencia Away José Luis Gayà #> 724 Valencia Away Mouctar Diakhaby #> 725 Valencia Away Gabriel Paulista #> 726 Valencia Away Cristiano Piccini #> 727 Valencia Away Neto #> 728 Alavés Home Rubén Sobrino #> 729 Alavés Home Borja Bastón #> 730 Alavés Home John Guidetti #> 731 Alavés Home Jony #> 732 Alavés Home Adrián Marín #> 733 Alavés Home Manu García #> 734 Alavés Home Wakaso #> 735 Alavés Home Ibai Gómez #> 736 Alavés Home Ximo Navarro #> 737 Alavés Home Rubén Duarte #> 738 Alavés Home Guillermo Maripán #> 739 Alavés Home Víctor Laguardia #> 740 Alavés Home Martin Agirregabiria #> 741 Alavés Home Fernando Pacheco #> 742 Espanyol Away Borja Iglesias #> 743 Espanyol Away Sergio García #> 744 Espanyol Away Léo Baptistão #> 745 Espanyol Away Sergi Darder #> 746 Espanyol Away Marc Roca #> 747 Espanyol Away Pablo Piatti #> 748 Espanyol Away Esteban Granero #> 749 Espanyol Away Óscar Melendo #> 750 Espanyol Away Dídac Vilà #> 751 Espanyol Away Mario Hermoso #> 752 Espanyol Away David López #> 753 Espanyol Away Javi López #> 754 Espanyol Away Hernán Pérez #> 755 Espanyol Away Diego López #> 756 Barcelona Home Luis Suárez #> 757 Barcelona Home Ousmane Dembélé #> 758 Barcelona Home Lionel Messi #> 759 Barcelona Home Philippe Coutinho #> 760 Barcelona Home Sergio Busquets #> 761 Barcelona Home Arthur Melo #> 762 Barcelona Home Ivan Rakitić #> 763 Barcelona Home Arturo Vidal #> 764 Barcelona Home Jordi Alba #> 765 Barcelona Home Samuel Umtiti #> 766 Barcelona Home Clément Lenglet #> 767 Barcelona Home Gerard Piqué #> 768 Barcelona Home Sergi Roberto #> 769 Barcelona Home Marc-André ter Stegen #> 770 Huesca Away Cucho #> 771 Huesca Away Ezequiel Ávila #> 772 Huesca Away Samuele Longo #> 773 Huesca Away Serdar Gürler #> 774 Huesca Away Moi Gómez #> 775 Huesca Away Gonzalo Melero #> 776 Huesca Away Damián Musto #> 777 Huesca Away Álex Gallar #> 778 Huesca Away Rúben Semedo #> 779 Huesca Away Luisinho #> 780 Huesca Away Xabier Etxeita #> 781 Huesca Away Jorge Pulido #> 782 Huesca Away Jorge Miramón #> 783 Huesca Away Axel Werner #> 784 Real Betis Home Loren Morón #> 785 Real Betis Home Antonio Sanabria #> 786 Real Betis Home Takashi Inui #> 787 Real Betis Home Sergio Canales #> 788 Real Betis Home William Carvalho #> 789 Real Betis Home Joaquín #> 790 Real Betis Home Andrés Guardado #> 791 Real Betis Home Junior Firpo #> 792 Real Betis Home Cristian Tello #> 793 Real Betis Home Zouhair Feddal #> 794 Real Betis Home Marc Bartra #> 795 Real Betis Home Sidnei #> 796 Real Betis Home Aïssa Mandi #> 797 Real Betis Home Pau López #> 798 Sevilla Away André Silva #> 799 Sevilla Away Franco Vázquez #> 800 Sevilla Away Maxime Gonalons #> 801 Sevilla Away Pablo Sarabia #> 802 Sevilla Away Roque Mesa #> 803 Sevilla Away Éver Banega #> 804 Sevilla Away Guilherme Arana #> 805 Sevilla Away Aleix Vidal #> 806 Sevilla Away Jesús Navas #> 807 Sevilla Away Sergi Gómez #> 808 Sevilla Away Simon Kjær #> 809 Sevilla Away Quincy Promes #> 810 Sevilla Away Gabriel Mercado #> 811 Sevilla Away Tomáš Vaclík #> 812 Huesca Home Samuele Longo #> 813 Huesca Home Cucho #> 814 Huesca Home Ezequiel Ávila #> 815 Huesca Home Moi Gómez #> 816 Huesca Home David Ferreiro #> 817 Huesca Home Gonzalo Melero #> 818 Huesca Home Damián Musto #> 819 Huesca Home Serdar Gürler #> 820 Huesca Home Álex Gallar #> 821 Huesca Home Luisinho #> 822 Huesca Home Rúben Semedo #> 823 Huesca Home Jorge Pulido #> 824 Huesca Home Jorge Miramón #> 825 Huesca Home Axel Werner #> 826 Rayo Vallecano Away Raúl de Tomás #> 827 Rayo Vallecano Away Álex Alegría #> 828 Rayo Vallecano Away Álvaro García #> 829 Rayo Vallecano Away Adri Embarba #> 830 Rayo Vallecano Away Gaël Kakuta #> 831 Rayo Vallecano Away Bebé #> 832 Rayo Vallecano Away Óscar Trejo #> 833 Rayo Vallecano Away Giannelli Imbula #> 834 Rayo Vallecano Away Gorka Elustondo #> 835 Rayo Vallecano Away Álex Moreno #> 836 Rayo Vallecano Away Jordi Amat #> 837 Rayo Vallecano Away Abdoulaye Ba #> 838 Rayo Vallecano Away Luis Advíncula #> 839 Rayo Vallecano Away Alberto García #> 840 Atlético Madrid Home Diego Costa #> 841 Atlético Madrid Home Thomas Lemar #> 842 Atlético Madrid Home Ángel Correa #> 843 Atlético Madrid Home Saúl Ñíguez #> 844 Atlético Madrid Home Koke #> 845 Atlético Madrid Home Antoine Griezmann #> 846 Atlético Madrid Home Rodri #> 847 Atlético Madrid Home Borja Garcés #> 848 Atlético Madrid Home Filipe Luís #> 849 Atlético Madrid Home Diego Godín #> 850 Atlético Madrid Home José María Giménez #> 851 Atlético Madrid Home Juanfran #> 852 Atlético Madrid Home Jan Oblak #> 853 Eibar Away Charles #> 854 Eibar Away Sergi Enrich #> 855 Eibar Away Pere Milla #> 856 Eibar Away Gonzalo Escalante #> 857 Eibar Away Pablo de Blasis #> 858 Eibar Away Joan Jordán #> 859 Eibar Away Sergio Álvarez #> 860 Eibar Away Papakouli Diop #> 861 Eibar Away Marc Cardona #> 862 Eibar Away José Ángel #> 863 Eibar Away Anaitz Arbilla #> 864 Eibar Away Paulo Oliveira #> 865 Eibar Away Rubén Peña #> 866 Eibar Away Marko Dmitrović #> 867 Real Sociedad Home Juanmi #> 868 Real Sociedad Home Mikel Oyarzabal #> 869 Real Sociedad Home Rubén Pardo #> 870 Real Sociedad Home Luca Sangalli #> 871 Real Sociedad Home David Zurutuza #> 872 Real Sociedad Home Jon Bautista #> 873 Real Sociedad Home Asier Illarramendi #> 874 Real Sociedad Home Mikel Merino #> 875 Real Sociedad Home Igor Zubeldia #> 876 Real Sociedad Home Theo Hernández #> 877 Real Sociedad Home Héctor Moreno #> 878 Real Sociedad Home Aritz Elustondo #> 879 Real Sociedad Home Joseba Zaldúa #> 880 Real Sociedad Home Gerónimo Rulli #> 881 Barcelona Away Luis Suárez #> 882 Barcelona Away Ousmane Dembélé #> 883 Barcelona Away Arturo Vidal #> 884 Barcelona Away Lionel Messi #> 885 Barcelona Away Rafinha #> 886 Barcelona Away Sergio Busquets #> 887 Barcelona Away Ivan Rakitić #> 888 Barcelona Away Sergi Roberto #> 889 Barcelona Away Jordi Alba #> 890 Barcelona Away Samuel Umtiti #> 891 Barcelona Away Gerard Piqué #> 892 Barcelona Away Nélson Semedo #> 893 Barcelona Away Philippe Coutinho #> 894 Barcelona Away Marc-André ter Stegen #> 895 Valencia Home Rodrigo #> 896 Valencia Home Kévin Gameiro #> 897 Valencia Home Denis Cheryshev #> 898 Valencia Home Michy Batshuayi #> 899 Valencia Home Geoffrey Kondogbia #> 900 Valencia Home Daniel Wass #> 901 Valencia Home Daniel Parejo #> 902 Valencia Home Ferrán Torres #> 903 Valencia Home Gonçalo Guedes #> 904 Valencia Home José Luis Gayà #> 905 Valencia Home Mouctar Diakhaby #> 906 Valencia Home Gabriel Paulista #> 907 Valencia Home Cristiano Piccini #> 908 Valencia Home Jaume Doménech #> 909 Real Betis Away Antonio Sanabria #> 910 Real Betis Away Sergio León #> 911 Real Betis Away Takashi Inui #> 912 Real Betis Away Joaquín #> 913 Real Betis Away Ryad Boudebouz #> 914 Real Betis Away Giovani Lo Celso #> 915 Real Betis Away Andrés Guardado #> 916 Real Betis Away Sergio Canales #> 917 Real Betis Away Junior Firpo #> 918 Real Betis Away Francis Guerrero #> 919 Real Betis Away Sidnei #> 920 Real Betis Away Marc Bartra #> 921 Real Betis Away Aïssa Mandi #> 922 Real Betis Away Pau López #> 923 Athletic Club Home Iñaki Williams #> 924 Athletic Club Home Mikel San José #> 925 Athletic Club Home Iker Muniain #> 926 Athletic Club Home Ander Capa #> 927 Athletic Club Home Markel Susaeta #> 928 Athletic Club Home Raúl García #> 929 Athletic Club Home Beñat Etxebarria #> 930 Athletic Club Home Mikel Rico #> 931 Athletic Club Home Dani García #> 932 Athletic Club Home Yuri Berchiche #> 933 Athletic Club Home Iñigo Martínez #> 934 Athletic Club Home Yeray Álvarez #> 935 Athletic Club Home Óscar de Marcos #> 936 Athletic Club Home Unai Simón #> 937 Real Madrid Away Karim Benzema #> 938 Real Madrid Away Marco Asensio #> 939 Real Madrid Away Gareth Bale #> 940 Real Madrid Away Lucas Vázquez #> 941 Real Madrid Away Dani Ceballos #> 942 Real Madrid Away Casemiro #> 943 Real Madrid Away Toni Kroos #> 944 Real Madrid Away Luka Modrić #> 945 Real Madrid Away Isco #> 946 Real Madrid Away Marcelo #> 947 Real Madrid Away Sergio Ramos #> 948 Real Madrid Away Raphaël Varane #> 949 Real Madrid Away Dani Carvajal #> 950 Real Madrid Away Thibaut Courtois #> 951 Leganés Home Guido Carrillo #> 952 Leganés Home Diego Rolán #> 953 Leganés Home Óscar Rodríguez Arnaiz #> 954 Leganés Home Nabil El Zhar #> 955 Leganés Home Javier Eraso #> 956 Leganés Home Michael Santos #> 957 Leganés Home Rubén Pérez #> 958 Leganés Home Gerard Gumbau #> 959 Leganés Home Jonathan Silva #> 960 Leganés Home Dimitris Siovas #> 961 Leganés Home Unai Bustinza #> 962 Leganés Home Allan Nyom #> 963 Leganés Home Juanfran #> 964 Leganés Home Iván Cuéllar #> 965 Villarreal Away Gerard Moreno #> 966 Villarreal Away Karl Toko Ekambi #> 967 Villarreal Away Carlos Bacca #> 968 Villarreal Away Miguel Layún #> 969 Villarreal Away Manu Morlanes #> 970 Villarreal Away Manuel Iturra #> 971 Villarreal Away Manu Trigueros #> 972 Villarreal Away Dani Raba #> 973 Villarreal Away Pablo Fornals #> 974 Villarreal Away Jaume Costa #> 975 Villarreal Away Víctor Ruiz #> 976 Villarreal Away Álvaro González #> 977 Villarreal Away Mario Gaspar #> 978 Villarreal Away Sergio Asenjo #> 979 Espanyol Home Borja Iglesias #> 980 Espanyol Home Hernán Pérez #> 981 Espanyol Home Sergio García #> 982 Espanyol Home Pablo Piatti #> 983 Espanyol Home Léo Baptistão #> 984 Espanyol Home Esteban Granero #> 985 Espanyol Home Marc Roca #> 986 Espanyol Home Sergi Darder #> 987 Espanyol Home Víctor Sánchez #> 988 Espanyol Home Dídac Vilà #> 989 Espanyol Home Mario Hermoso #> 990 Espanyol Home David López #> 991 Espanyol Home Javi López #> 992 Espanyol Home Diego López #> 993 Levante Away Emmanuel Boateng #> 994 Levante Away Borja Mayoral #> 995 Levante Away Roger Martí #> 996 Levante Away Jason #> 997 Levante Away Rubén Rochina #> 998 Levante Away Enis Bardhi #> 999 Levante Away José Campaña #> 1000 Levante Away José Luis Morales #> 1001 Levante Away Antonio Luna #> 1002 Levante Away Chema #> 1003 Levante Away Sergio Postigo #> 1004 Levante Away Rober #> 1005 Levante Away Pedro López Muñoz #> 1006 Levante Away Oier Olazábal #> 1007 Valladolid Home Enes Ünal #> 1008 Valladolid Home Duje Čop #> 1009 Valladolid Home Toni Villa #> 1010 Valladolid Home Keko #> 1011 Valladolid Home Ivi #> 1012 Valladolid Home Óscar Plano #> 1013 Valladolid Home Borja Fernández #> 1014 Valladolid Home Anuar #> 1015 Valladolid Home Míchel #> 1016 Valladolid Home Nacho #> 1017 Valladolid Home Fernando Calero #> 1018 Valladolid Home Kiko Olivas #> 1019 Valladolid Home Javi Moyano #> 1020 Valladolid Home Jordi Masip #> 1021 Alavés Away Jonathan Calleri #> 1022 Alavés Away Burgui #> 1023 Alavés Away John Guidetti #> 1024 Alavés Away Patrick Twumasi #> 1025 Alavés Away Jony #> 1026 Alavés Away Wakaso #> 1027 Alavés Away Darko Brašanac #> 1028 Alavés Away Manu García #> 1029 Alavés Away Ibai Gómez #> 1030 Alavés Away Rubén Duarte #> 1031 Alavés Away Ximo Navarro #> 1032 Alavés Away Víctor Laguardia #> 1033 Alavés Away Martin Agirregabiria #> 1034 Alavés Away Fernando Pacheco #> 1035 Sevilla Home André Silva #> 1036 Sevilla Home Nolito #> 1037 Sevilla Home Franco Vázquez #> 1038 Sevilla Home Pablo Sarabia #> 1039 Sevilla Home Aleix Vidal #> 1040 Sevilla Home Quincy Promes #> 1041 Sevilla Home Éver Banega #> 1042 Sevilla Home Roque Mesa #> 1043 Sevilla Home Wissam Ben Yedder #> 1044 Sevilla Home Jesús Navas #> 1045 Sevilla Home Sergi Gómez #> 1046 Sevilla Home Simon Kjær #> 1047 Sevilla Home Joris Gnagnon #> 1048 Sevilla Home Tomáš Vaclík #> 1049 Getafe Away Ángel Rodríguez #> 1050 Getafe Away Gaku Shibasaki #> 1051 Getafe Away Jorge Molina #> 1052 Getafe Away Amath #> 1053 Getafe Away Dimitri Foulquier #> 1054 Getafe Away Djené #> 1055 Getafe Away Sebastián Cristóforo #> 1056 Getafe Away Nemanja Maksimović #> 1057 Getafe Away Francisco Portillo #> 1058 Getafe Away Vitorino Antunes #> 1059 Getafe Away Leandro Cabrera #> 1060 Getafe Away Bruno González #> 1061 Getafe Away Damián Suárez #> 1062 Getafe Away David Soria #> 1063 Girona Home Cristhian Stuani #> 1064 Girona Home Borja García #> 1065 Girona Home Patrick Roberts #> 1066 Girona Home Portu #> 1067 Girona Home Aleix García #> 1068 Girona Home Douglas Luiz #> 1069 Girona Home Álex Granell #> 1070 Girona Home Aday #> 1071 Girona Home Marc Muniesa #> 1072 Girona Home Pedro Porro #> 1073 Girona Home Juanpe #> 1074 Girona Home Bernardo Espinosa #> 1075 Girona Home Pedro Alcalá #> 1076 Girona Home Yassine Bounou #> 1077 Celta Vigo Away Maxi Gómez #> 1078 Celta Vigo Away Pione Sisto #> 1079 Celta Vigo Away Dennis Eckert #> 1080 Celta Vigo Away Iago Aspas #> 1081 Celta Vigo Away Stanislav Lobotka #> 1082 Celta Vigo Away Fran Beltrán #> 1083 Celta Vigo Away Brais Méndez #> 1084 Celta Vigo Away Júnior Alonso #> 1085 Celta Vigo Away Sofiane Boufal #> 1086 Celta Vigo Away Hugo Mallo #> 1087 Celta Vigo Away Néstor Araujo #> 1088 Celta Vigo Away Gustavo Cabral #> 1089 Celta Vigo Away Facundo Roncaglia #> 1090 Celta Vigo Away Sergio Álvarez #> 1091 Huesca Home Cucho #> 1092 Huesca Home David Ferreiro #> 1093 Huesca Home Álex Gallar #> 1094 Huesca Home Moi Gómez #> 1095 Huesca Home Samuele Longo #> 1096 Huesca Home Gonzalo Melero #> 1097 Huesca Home Damián Musto #> 1098 Huesca Home Luisinho #> 1099 Huesca Home Ezequiel Ávila #> 1100 Huesca Home Rúben Semedo #> 1101 Huesca Home Jorge Pulido #> 1102 Huesca Home Serdar Gürler #> 1103 Huesca Home Jorge Miramón #> 1104 Huesca Home Axel Werner #> 1105 Real Sociedad Away Jon Bautista #> 1106 Real Sociedad Away Raúl Navas #> 1107 Real Sociedad Away Juanmi #> 1108 Real Sociedad Away Mikel Oyarzabal #> 1109 Real Sociedad Away Kévin Rodrigues #> 1110 Real Sociedad Away Rubén Pardo #> 1111 Real Sociedad Away David Zurutuza #> 1112 Real Sociedad Away Igor Zubeldia #> 1113 Real Sociedad Away Mikel Merino #> 1114 Real Sociedad Away Theo Hernández #> 1115 Real Sociedad Away Héctor Moreno #> 1116 Real Sociedad Away Aritz Elustondo #> 1117 Real Sociedad Away Joseba Zaldúa #> 1118 Real Sociedad Away Gerónimo Rulli #> 1119 Rayo Vallecano Home Raúl de Tomás #> 1120 Rayo Vallecano Home Álvaro García #> 1121 Rayo Vallecano Home Adri Embarba #> 1122 Rayo Vallecano Home Giannelli Imbula #> 1123 Rayo Vallecano Home Óscar Trejo #> 1124 Rayo Vallecano Home Álex Alegría #> 1125 Rayo Vallecano Home Gaël Kakuta #> 1126 Rayo Vallecano Home Gorka Elustondo #> 1127 Rayo Vallecano Home Emiliano Velázquez #> 1128 Rayo Vallecano Home Álex Moreno #> 1129 Rayo Vallecano Home Jordi Amat #> 1130 Rayo Vallecano Home Abdoulaye Ba #> 1131 Rayo Vallecano Home Luis Advíncula #> 1132 Rayo Vallecano Home Alberto García #> 1133 Alavés Away John Guidetti #> 1134 Alavés Away Rubén Sobrino #> 1135 Alavés Away Jonathan Calleri #> 1136 Alavés Away Jony #> 1137 Alavés Away Burgui #> 1138 Alavés Away Wakaso #> 1139 Alavés Away Darko Brašanac #> 1140 Alavés Away Ibai Gómez #> 1141 Alavés Away Rubén Duarte #> 1142 Alavés Away Martin Agirregabiria #> 1143 Alavés Away Guillermo Maripán #> 1144 Alavés Away Víctor Laguardia #> 1145 Alavés Away Ximo Navarro #> 1146 Alavés Away Fernando Pacheco #> 1147 Eibar Home Kiké #> 1148 Eibar Home Joan Jordán #> 1149 Eibar Home Sergi Enrich #> 1150 Eibar Home Pablo de Blasis #> 1151 Eibar Home Papakouli Diop #> 1152 Eibar Home Gonzalo Escalante #> 1153 Eibar Home Pablo Hervías #> 1154 Eibar Home Fabián Orellana #> 1155 Eibar Home José Ángel #> 1156 Eibar Home Anaitz Arbilla #> 1157 Eibar Home Iván Ramis #> 1158 Eibar Home Paulo Oliveira #> 1159 Eibar Home Rubén Peña #> 1160 Eibar Home Marko Dmitrović #> 1161 Leganés Away Guido Carrillo #> 1162 Leganés Away Michael Santos #> 1163 Leganés Away Youssef En-Nesyri #> 1164 Leganés Away Diego Rolán #> 1165 Leganés Away Óscar Rodríguez Arnaiz #> 1166 Leganés Away Gerard Gumbau #> 1167 Leganés Away Rubén Pérez #> 1168 Leganés Away Juanfran #> 1169 Leganés Away Nabil El Zhar #> 1170 Leganés Away Raúl García #> 1171 Leganés Away Dimitris Siovas #> 1172 Leganés Away Unai Bustinza #> 1173 Leganés Away Allan Nyom #> 1174 Leganés Away Iván Cuéllar #> 1175 Celta Vigo Home Maxi Gómez #> 1176 Celta Vigo Home Iago Aspas #> 1177 Celta Vigo Home Sofiane Boufal #> 1178 Celta Vigo Home Pione Sisto #> 1179 Celta Vigo Home Stanislav Lobotka #> 1180 Celta Vigo Home Okay Yokuşlu #> 1181 Celta Vigo Home Brais Méndez #> 1182 Celta Vigo Home Fran Beltrán #> 1183 Celta Vigo Home David Juncà #> 1184 Celta Vigo Home Júnior Alonso #> 1185 Celta Vigo Home Néstor Araujo #> 1186 Celta Vigo Home David Costas #> 1187 Celta Vigo Home Facundo Roncaglia #> 1188 Celta Vigo Home Sergio Álvarez #> 1189 Valladolid Away Duje Čop #> 1190 Valladolid Away Óscar Plano #> 1191 Valladolid Away Rubén Alcaraz #> 1192 Valladolid Away Míchel #> 1193 Valladolid Away Keko #> 1194 Valladolid Away Toni Villa #> 1195 Valladolid Away Borja Fernández #> 1196 Valladolid Away Enes Ünal #> 1197 Valladolid Away Nacho #> 1198 Valladolid Away Fernando Calero #> 1199 Valladolid Away Kiko Olivas #> 1200 Valladolid Away Javi Moyano #> 1201 Valladolid Away Leonardo Suárez #> 1202 Valladolid Away Jordi Masip #> 1203 Getafe Home Jorge Molina #> 1204 Getafe Home Sergi Guardiola #> 1205 Getafe Home Ángel Rodríguez #> 1206 Getafe Home Amath #> 1207 Getafe Home Iván Alejo #> 1208 Getafe Home Djené #> 1209 Getafe Home Sebastián Cristóforo #> 1210 Getafe Home Mauro Arambarri #> 1211 Getafe Home Francisco Portillo #> 1212 Getafe Home Vitorino Antunes #> 1213 Getafe Home Leandro Cabrera #> 1214 Getafe Home Bruno González #> 1215 Getafe Home Damián Suárez #> 1216 Getafe Home David Soria #> 1217 Atlético Madrid Away Antoine Griezmann #> 1218 Atlético Madrid Away Diego Costa #> 1219 Atlético Madrid Away Koke #> 1220 Atlético Madrid Away Saúl Ñíguez #> 1221 Atlético Madrid Away Rodri #> 1222 Atlético Madrid Away Thomas Partey #> 1223 Atlético Madrid Away Thomas Lemar #> 1224 Atlético Madrid Away Ángel Correa #> 1225 Atlético Madrid Away Filipe Luís #> 1226 Atlético Madrid Away Diego Godín #> 1227 Atlético Madrid Away Lucas Hernández #> 1228 Atlético Madrid Away José María Giménez #> 1229 Atlético Madrid Away Juanfran #> 1230 Atlético Madrid Away Jan Oblak #> 1231 Real Madrid Home Karim Benzema #> 1232 Real Madrid Home Mariano #> 1233 Real Madrid Home Marco Asensio #> 1234 Real Madrid Home Isco #> 1235 Real Madrid Home Marcos Llorente #> 1236 Real Madrid Home Dani Ceballos #> 1237 Real Madrid Home Lucas Vázquez #> 1238 Real Madrid Home Casemiro #> 1239 Real Madrid Home Luka Modrić #> 1240 Real Madrid Home Nacho #> 1241 Real Madrid Home Sergio Ramos #> 1242 Real Madrid Home Raphaël Varane #> 1243 Real Madrid Home Álvaro Odriozola #> 1244 Real Madrid Home Thibaut Courtois #> 1245 Espanyol Away Borja Iglesias #> 1246 Espanyol Away Pablo Piatti #> 1247 Espanyol Away Léo Baptistão #> 1248 Espanyol Away Esteban Granero #> 1249 Espanyol Away Sergi Darder #> 1250 Espanyol Away Víctor Sánchez #> 1251 Espanyol Away Hernán Pérez #> 1252 Espanyol Away Sergio García #> 1253 Espanyol Away Marc Roca #> 1254 Espanyol Away Dídac Vilà #> 1255 Espanyol Away Mario Hermoso #> 1256 Espanyol Away Naldo #> 1257 Espanyol Away Javi López #> 1258 Espanyol Away Diego López #> 1259 Levante Home Borja Mayoral #> 1260 Levante Home Roger Martí #> 1261 Levante Home Emmanuel Boateng #> 1262 Levante Home José Luis Morales #> 1263 Levante Home José Campaña #> 1264 Levante Home Moses Simon #> 1265 Levante Home Sanjin Prcić #> 1266 Levante Home Nikola Vukčević #> 1267 Levante Home Enis Bardhi #> 1268 Levante Home Antonio Luna #> 1269 Levante Home Rober #> 1270 Levante Home Sergio Postigo #> 1271 Levante Home Pedro López Muñoz #> 1272 Levante Home Oier Olazábal #> 1273 Sevilla Away André Silva #> 1274 Sevilla Away Wissam Ben Yedder #> 1275 Sevilla Away Quincy Promes #> 1276 Sevilla Away Pablo Sarabia #> 1277 Sevilla Away Luis Muriel #> 1278 Sevilla Away Éver Banega #> 1279 Sevilla Away Roque Mesa #> 1280 Sevilla Away Franco Vázquez #> 1281 Sevilla Away Aleix Vidal #> 1282 Sevilla Away Jesús Navas #> 1283 Sevilla Away Daniel Carriço #> 1284 Sevilla Away Simon Kjær #> 1285 Sevilla Away Sergi Gómez #> 1286 Sevilla Away Tomáš Vaclík #> 1287 Villarreal Home Carlos Bacca #> 1288 Villarreal Home Karl Toko Ekambi #> 1289 Villarreal Home Gerard Moreno #> 1290 Villarreal Home Miguel Layún #> 1291 Villarreal Home Ramiro Funes Mori #> 1292 Villarreal Home Manu Trigueros #> 1293 Villarreal Home Pablo Fornals #> 1294 Villarreal Home Alfonso Pedraza #> 1295 Villarreal Home Jaume Costa #> 1296 Villarreal Home Santi Cazorla #> 1297 Villarreal Home Víctor Ruiz #> 1298 Villarreal Home Álvaro González #> 1299 Villarreal Home Mario Gaspar #> 1300 Villarreal Home Sergio Asenjo #> 1301 Valencia Away Kévin Gameiro #> 1302 Valencia Away Francis Coquelin #> 1303 Valencia Away Santi Mina #> 1304 Valencia Away Michy Batshuayi #> 1305 Valencia Away Denis Cheryshev #> 1306 Valencia Away Daniel Parejo #> 1307 Valencia Away Carlos Soler #> 1308 Valencia Away Ferrán Torres #> 1309 Valencia Away Gonçalo Guedes #> 1310 Valencia Away José Luis Gayà #> 1311 Valencia Away Mouctar Diakhaby #> 1312 Valencia Away Gabriel Paulista #> 1313 Valencia Away Cristiano Piccini #> 1314 Valencia Away Neto #> 1315 Real Betis Home Antonio Sanabria #> 1316 Real Betis Home Joaquín #> 1317 Real Betis Home Sergio Canales #> 1318 Real Betis Home Andrés Guardado #> 1319 Real Betis Home Giovani Lo Celso #> 1320 Real Betis Home Loren Morón #> 1321 Real Betis Home Junior Firpo #> 1322 Real Betis Home Cristian Tello #> 1323 Real Betis Home Francis Guerrero #> 1324 Real Betis Home Takashi Inui #> 1325 Real Betis Home Sidnei #> 1326 Real Betis Home Marc Bartra #> 1327 Real Betis Home Aïssa Mandi #> 1328 Real Betis Home Pau López #> 1329 Athletic Club Away Iñaki Williams #> 1330 Athletic Club Away Iker Muniain #> 1331 Athletic Club Away Yuri Berchiche #> 1332 Athletic Club Away Markel Susaeta #> 1333 Athletic Club Away Raúl García #> 1334 Athletic Club Away Ander Capa #> 1335 Athletic Club Away Dani García #> 1336 Athletic Club Away Beñat Etxebarria #> 1337 Athletic Club Away Mikel San José #> 1338 Athletic Club Away Mikel Balenziaga #> 1339 Athletic Club Away Iñigo Martínez #> 1340 Athletic Club Away Yeray Álvarez #> 1341 Athletic Club Away Óscar de Marcos #> 1342 Athletic Club Away Unai Simón #> 1343 Barcelona Home Luis Suárez #> 1344 Barcelona Home Ousmane Dembélé #> 1345 Barcelona Home Samuel Umtiti #> 1346 Barcelona Home Lionel Messi #> 1347 Barcelona Home Arthur Melo #> 1348 Barcelona Home Philippe Coutinho #> 1349 Barcelona Home Sergio Busquets #> 1350 Barcelona Home Arturo Vidal #> 1351 Barcelona Home Ivan Rakitić #> 1352 Barcelona Home Jordi Alba #> 1353 Barcelona Home Clément Lenglet #> 1354 Barcelona Home Gerard Piqué #> 1355 Barcelona Home Nélson Semedo #> 1356 Barcelona Home Marc-André ter Stegen #> 1357 Girona Away Cristhian Stuani #> 1358 Girona Away Portu #> 1359 Girona Away Seydou Doumbia #> 1360 Girona Away Aleix García #> 1361 Girona Away Borja García #> 1362 Girona Away Pere Pons #> 1363 Girona Away Álex Granell #> 1364 Girona Away Douglas Luiz #> 1365 Girona Away Marc Muniesa #> 1366 Girona Away Juanpe #> 1367 Girona Away Bernardo Espinosa #> 1368 Girona Away Pedro Alcalá #> 1369 Girona Away Aday #> 1370 Girona Away Yassine Bounou #> 1371 Espanyol Home Sergio García #> 1372 Espanyol Home Borja Iglesias #> 1373 Espanyol Home Pablo Piatti #> 1374 Espanyol Home Léo Baptistão #> 1375 Espanyol Home Hernán Pérez #> 1376 Espanyol Home Sergi Darder #> 1377 Espanyol Home Marc Roca #> 1378 Espanyol Home Óscar Melendo #> 1379 Espanyol Home Víctor Sánchez #> 1380 Espanyol Home Dídac Vilà #> 1381 Espanyol Home Mario Hermoso #> 1382 Espanyol Home Óscar Duarte #> 1383 Espanyol Home Roberto Rosales #> 1384 Espanyol Home Diego López #> 1385 Eibar Away Marc Cardona #> 1386 Eibar Away Charles #> 1387 Eibar Away Pere Milla #> 1388 Eibar Away Gonzalo Escalante #> 1389 Eibar Away Pablo de Blasis #> 1390 Eibar Away Fabián Orellana #> 1391 Eibar Away Joan Jordán #> 1392 Eibar Away Sergio Álvarez #> 1393 Eibar Away Sergi Enrich #> 1394 Eibar Away Marc Cucurella #> 1395 Eibar Away Pedro Bigas #> 1396 Eibar Away Paulo Oliveira #> 1397 Eibar Away Anaitz Arbilla #> 1398 Eibar Away Marko Dmitrović #> 1399 Real Sociedad Home Jon Bautista #> 1400 Real Sociedad Home Mikel Oyarzabal #> 1401 Real Sociedad Home Luca Sangalli #> 1402 Real Sociedad Home David Zurutuza #> 1403 Real Sociedad Home Mikel Merino #> 1404 Real Sociedad Home Igor Zubeldia #> 1405 Real Sociedad Home Asier Illarramendi #> 1406 Real Sociedad Home Rubén Pardo #> 1407 Real Sociedad Home Willian José #> 1408 Real Sociedad Home Kévin Rodrigues #> 1409 Real Sociedad Home Héctor Moreno #> 1410 Real Sociedad Home Aritz Elustondo #> 1411 Real Sociedad Home Joseba Zaldúa #> 1412 Real Sociedad Home Gerónimo Rulli #> 1413 Rayo Vallecano Away Raúl de Tomás #> 1414 Rayo Vallecano Away Álex Alegría #> 1415 Rayo Vallecano Away Bebé #> 1416 Rayo Vallecano Away Adri Embarba #> 1417 Rayo Vallecano Away Óscar Trejo #> 1418 Rayo Vallecano Away Álvaro Medrán #> 1419 Rayo Vallecano Away Giannelli Imbula #> 1420 Rayo Vallecano Away Gaël Kakuta #> 1421 Rayo Vallecano Away Santi Comesaña #> 1422 Rayo Vallecano Away Álex Moreno #> 1423 Rayo Vallecano Away Jordi Amat #> 1424 Rayo Vallecano Away Álex Gálvez #> 1425 Rayo Vallecano Away Luis Advíncula #> 1426 Rayo Vallecano Away Alberto García #> 1427 Atlético Madrid Home Antoine Griezmann #> 1428 Atlético Madrid Home Nikola Kalinić #> 1429 Atlético Madrid Home Diego Costa #> 1430 Atlético Madrid Home Gelson Martins #> 1431 Atlético Madrid Home Thomas Lemar #> 1432 Atlético Madrid Home Koke #> 1433 Atlético Madrid Home Thomas Partey #> 1434 Atlético Madrid Home Ángel Correa #> 1435 Atlético Madrid Home Filipe Luís #> 1436 Atlético Madrid Home Diego Godín #> 1437 Atlético Madrid Home José María Giménez #> 1438 Atlético Madrid Home Lucas Hernández #> 1439 Atlético Madrid Home Carlos Isaac #> 1440 Atlético Madrid Home Jan Oblak #> 1441 Huesca Away Samuele Longo #> 1442 Huesca Away Ezequiel Ávila #> 1443 Huesca Away Cucho #> 1444 Huesca Away Juan Aguilera #> 1445 Huesca Away David Ferreiro #> 1446 Huesca Away Damián Musto #> 1447 Huesca Away Gonzalo Melero #> 1448 Huesca Away Álex Gallar #> 1449 Huesca Away Luisinho #> 1450 Huesca Away Carlos Akapo #> 1451 Huesca Away Rúben Semedo #> 1452 Huesca Away Xabier Etxeita #> 1453 Huesca Away Jorge Miramón #> 1454 Huesca Away Axel Werner #> 1455 Leganés Home Youssef En-Nesyri #> 1456 Leganés Home Óscar Rodríguez Arnaiz #> 1457 Leganés Home Gerard Gumbau #> 1458 Leganés Home Rubén Pérez #> 1459 Leganés Home Mikel Vesga #> 1460 Leganés Home Sabin Merino #> 1461 Leganés Home Nabil El Zhar #> 1462 Leganés Home Allan Nyom #> 1463 Leganés Home Jonathan Silva #> 1464 Leganés Home Raúl García #> 1465 Leganés Home Unai Bustinza #> 1466 Leganés Home Rodrigo Tarín #> 1467 Leganés Home Juanfran #> 1468 Leganés Home Iván Cuéllar #> 1469 Barcelona Away Munir El Haddadi #> 1470 Barcelona Away Luis Suárez #> 1471 Barcelona Away Ousmane Dembélé #> 1472 Barcelona Away Malcom #> 1473 Barcelona Away Lionel Messi #> 1474 Barcelona Away Philippe Coutinho #> 1475 Barcelona Away Sergio Busquets #> 1476 Barcelona Away Ivan Rakitić #> 1477 Barcelona Away Thomas Vermaelen #> 1478 Barcelona Away Jordi Alba #> 1479 Barcelona Away Samuel Umtiti #> 1480 Barcelona Away Gerard Piqué #> 1481 Barcelona Away Sergi Roberto #> 1482 Barcelona Away Marc-André ter Stegen #> 1483 Athletic Club Home Iñaki Williams #> 1484 Athletic Club Home Iker Muniain #> 1485 Athletic Club Home Ander Capa #> 1486 Athletic Club Home Raúl García #> 1487 Athletic Club Home Iñigo Córdoba #> 1488 Athletic Club Home Ander Iturraspe #> 1489 Athletic Club Home Unai López #> 1490 Athletic Club Home Beñat Etxebarria #> 1491 Athletic Club Home Yuri Berchiche #> 1492 Athletic Club Home Iñigo Martínez #> 1493 Athletic Club Home Unai Núñez #> 1494 Athletic Club Home Óscar de Marcos #> 1495 Athletic Club Home Gorka Guruzeta #> 1496 Athletic Club Home Unai Simón #> 1497 Villarreal Away Carlos Bacca #> 1498 Villarreal Away Karl Toko Ekambi #> 1499 Villarreal Away Gerard Moreno #> 1500 Villarreal Away Alfonso Pedraza #> 1501 Villarreal Away Miguel Layún #> 1502 Villarreal Away Santi Cazorla #> 1503 Villarreal Away Ramiro Funes Mori #> 1504 Villarreal Away Manu Trigueros #> 1505 Villarreal Away Pablo Fornals #> 1506 Villarreal Away Jaume Costa #> 1507 Villarreal Away Víctor Ruiz #> 1508 Villarreal Away Álvaro González #> 1509 Villarreal Away Mario Gaspar #> 1510 Villarreal Away Sergio Asenjo #> 1511 Sevilla Home Wissam Ben Yedder #> 1512 Sevilla Home Quincy Promes #> 1513 Sevilla Home André Silva #> 1514 Sevilla Home Franco Vázquez #> 1515 Sevilla Home Éver Banega #> 1516 Sevilla Home Roque Mesa #> 1517 Sevilla Home Pablo Sarabia #> 1518 Sevilla Home Guilherme Arana #> 1519 Sevilla Home Nolito #> 1520 Sevilla Home Jesús Navas #> 1521 Sevilla Home Sergi Gómez #> 1522 Sevilla Home Simon Kjær #> 1523 Sevilla Home Daniel Carriço #> 1524 Sevilla Home Tomáš Vaclík #> 1525 Real Madrid Away Karim Benzema #> 1526 Real Madrid Away Mariano #> 1527 Real Madrid Away Marco Asensio #> 1528 Real Madrid Away Gareth Bale #> 1529 Real Madrid Away Toni Kroos #> 1530 Real Madrid Away Casemiro #> 1531 Real Madrid Away Luka Modrić #> 1532 Real Madrid Away Dani Ceballos #> 1533 Real Madrid Away Marcelo #> 1534 Real Madrid Away Sergio Ramos #> 1535 Real Madrid Away Raphaël Varane #> 1536 Real Madrid Away Nacho #> 1537 Real Madrid Away Lucas Vázquez #> 1538 Real Madrid Away Thibaut Courtois #> 1539 Valencia Home Michy Batshuayi #> 1540 Valencia Home Kévin Gameiro #> 1541 Valencia Home Rodrigo #> 1542 Valencia Home Gonçalo Guedes #> 1543 Valencia Home Denis Cheryshev #> 1544 Valencia Home Francis Coquelin #> 1545 Valencia Home Geoffrey Kondogbia #> 1546 Valencia Home Carlos Soler #> 1547 Valencia Home Daniel Wass #> 1548 Valencia Home José Luis Gayà #> 1549 Valencia Home Jeison Murillo #> 1550 Valencia Home Ezequiel Garay #> 1551 Valencia Home Cristiano Piccini #> 1552 Valencia Home Neto #> 1553 Celta Vigo Away Maxi Gómez #> 1554 Celta Vigo Away Iago Aspas #> 1555 Celta Vigo Away Júnior Alonso #> 1556 Celta Vigo Away Fran Beltrán #> 1557 Celta Vigo Away Stanislav Lobotka #> 1558 Celta Vigo Away Okay Yokuşlu #> 1559 Celta Vigo Away Pione Sisto #> 1560 Celta Vigo Away David Juncà #> 1561 Celta Vigo Away Néstor Araujo #> 1562 Celta Vigo Away Gustavo Cabral #> 1563 Celta Vigo Away Facundo Roncaglia #> 1564 Celta Vigo Away Hugo Mallo #> 1565 Celta Vigo Away Dennis Eckert #> 1566 Celta Vigo Away Sergio Álvarez #> 1567 Alavés Home Rubén Sobrino #> 1568 Alavés Home John Guidetti #> 1569 Alavés Home Jonathan Calleri #> 1570 Alavés Home Jony #> 1571 Alavés Home Wakaso #> 1572 Alavés Home Manu García #> 1573 Alavés Home Darko Brašanac #> 1574 Alavés Home Ibai Gómez #> 1575 Alavés Home Burgui #> 1576 Alavés Home Rubén Duarte #> 1577 Alavés Home Ximo Navarro #> 1578 Alavés Home Víctor Laguardia #> 1579 Alavés Home Martin Agirregabiria #> 1580 Alavés Home Fernando Pacheco #> 1581 Getafe Away Ángel Rodríguez #> 1582 Getafe Away Jorge Molina #> 1583 Getafe Away Jaime Mata #> 1584 Getafe Away Amath #> 1585 Getafe Away Dimitri Foulquier #> 1586 Getafe Away Nemanja Maksimović #> 1587 Getafe Away Mauro Arambarri #> 1588 Getafe Away Markel Bergara #> 1589 Getafe Away Francisco Portillo #> 1590 Getafe Away Leandro Cabrera #> 1591 Getafe Away Bruno González #> 1592 Getafe Away Djené #> 1593 Getafe Away Damián Suárez #> 1594 Getafe Away David Soria #> 1595 Valladolid Home Duje Čop #> 1596 Valladolid Home Borja Fernández #> 1597 Valladolid Home Enes Ünal #> 1598 Valladolid Home Toni Villa #> 1599 Valladolid Home Rubén Alcaraz #> 1600 Valladolid Home Míchel #> 1601 Valladolid Home Óscar Plano #> 1602 Valladolid Home Antoñito #> 1603 Valladolid Home Nacho #> 1604 Valladolid Home Fernando Calero #> 1605 Valladolid Home Kiko Olivas #> 1606 Valladolid Home Javi Moyano #> 1607 Valladolid Home Leonardo Suárez #> 1608 Valladolid Home Jordi Masip #> 1609 Levante Away Roger Martí #> 1610 Levante Away Emmanuel Boateng #> 1611 Levante Away Borja Mayoral #> 1612 Levante Away Jason #> 1613 Levante Away José Luis Morales #> 1614 Levante Away Nikola Vukčević #> 1615 Levante Away José Campaña #> 1616 Levante Away Enis Bardhi #> 1617 Levante Away Antonio Luna #> 1618 Levante Away Chema #> 1619 Levante Away Sergio Postigo #> 1620 Levante Away Pedro López Muñoz #> 1621 Levante Away Moses Simon #> 1622 Levante Away Oier Olazábal #> 1623 Girona Home Cristhian Stuani #> 1624 Girona Home Borja García #> 1625 Girona Home Portu #> 1626 Girona Home Aday #> 1627 Girona Home Douglas Luiz #> 1628 Girona Home Álex Granell #> 1629 Girona Home Aleix García #> 1630 Girona Home Pedro Porro #> 1631 Girona Home Seydou Doumbia #> 1632 Girona Home Juanpe #> 1633 Girona Home Bernardo Espinosa #> 1634 Girona Home Pedro Alcalá #> 1635 Girona Home Patrick Roberts #> 1636 Girona Home Yassine Bounou #> 1637 Real Betis Away Loren Morón #> 1638 Real Betis Away Takashi Inui #> 1639 Real Betis Away Joaquín #> 1640 Real Betis Away Ryad Boudebouz #> 1641 Real Betis Away Giovani Lo Celso #> 1642 Real Betis Away Andrés Guardado #> 1643 Real Betis Away Javi García #> 1644 Real Betis Away Sergio Canales #> 1645 Real Betis Away Junior Firpo #> 1646 Real Betis Away Francis Guerrero #> 1647 Real Betis Away Sidnei #> 1648 Real Betis Away Marc Bartra #> 1649 Real Betis Away Aïssa Mandi #> 1650 Real Betis Away Pau López #> 1651 Rayo Vallecano Home Raúl de Tomás #> 1652 Rayo Vallecano Home Bebé #> 1653 Rayo Vallecano Home Álvaro García #> 1654 Rayo Vallecano Home Giannelli Imbula #> 1655 Rayo Vallecano Home Óscar Trejo #> 1656 Rayo Vallecano Home José Pozo #> 1657 Rayo Vallecano Home Gaël Kakuta #> 1658 Rayo Vallecano Home Adri Embarba #> 1659 Rayo Vallecano Home Santi Comesaña #> 1660 Rayo Vallecano Home Álex Moreno #> 1661 Rayo Vallecano Home Jordi Amat #> 1662 Rayo Vallecano Home Abdoulaye Ba #> 1663 Rayo Vallecano Home Luis Advíncula #> 1664 Rayo Vallecano Home Alberto García #> 1665 Espanyol Away Borja Iglesias #> 1666 Espanyol Away Sergio García #> 1667 Espanyol Away Esteban Granero #> 1668 Espanyol Away Óscar Melendo #> 1669 Espanyol Away Víctor Sánchez #> 1670 Espanyol Away Léo Baptistão #> 1671 Espanyol Away Hernán Pérez #> 1672 Espanyol Away Marc Roca #> 1673 Espanyol Away Sergi Darder #> 1674 Espanyol Away Dídac Vilà #> 1675 Espanyol Away Mario Hermoso #> 1676 Espanyol Away Naldo #> 1677 Espanyol Away Javi López #> 1678 Espanyol Away Diego López #> 1679 Real Sociedad Home Willian José #> 1680 Real Sociedad Home David Zurutuza #> 1681 Real Sociedad Home Mikel Merino #> 1682 Real Sociedad Home Rubén Pardo #> 1683 Real Sociedad Home Asier Illarramendi #> 1684 Real Sociedad Home Igor Zubeldia #> 1685 Real Sociedad Home Mikel Oyarzabal #> 1686 Real Sociedad Home Jon Bautista #> 1687 Real Sociedad Home Kévin Rodrigues #> 1688 Real Sociedad Home Raúl Navas #> 1689 Real Sociedad Home Aritz Elustondo #> 1690 Real Sociedad Home Joseba Zaldúa #> 1691 Real Sociedad Home Sandro Ramírez #> 1692 Real Sociedad Home Miguel Ángel Moyá #> 1693 Valencia Away Michy Batshuayi #> 1694 Valencia Away Rodrigo #> 1695 Valencia Away Kévin Gameiro #> 1696 Valencia Away Denis Cheryshev #> 1697 Valencia Away Gonçalo Guedes #> 1698 Valencia Away Geoffrey Kondogbia #> 1699 Valencia Away Francis Coquelin #> 1700 Valencia Away Daniel Parejo #> 1701 Valencia Away Carlos Soler #> 1702 Valencia Away Toni Lato #> 1703 Valencia Away Mouctar Diakhaby #> 1704 Valencia Away Gabriel Paulista #> 1705 Valencia Away Rúben Vezo #> 1706 Valencia Away Neto #> 1707 Barcelona Home Luis Suárez #> 1708 Barcelona Home Philippe Coutinho #> 1709 Barcelona Home Ousmane Dembélé #> 1710 Barcelona Home Munir El Haddadi #> 1711 Barcelona Home Ivan Rakitić #> 1712 Barcelona Home Sergi Roberto #> 1713 Barcelona Home Sergio Busquets #> 1714 Barcelona Home Arturo Vidal #> 1715 Barcelona Home Lionel Messi #> 1716 Barcelona Home Jordi Alba #> 1717 Barcelona Home Clément Lenglet #> 1718 Barcelona Home Gerard Piqué #> 1719 Barcelona Home Nélson Semedo #> 1720 Barcelona Home Marc-André ter Stegen #> 1721 Athletic Club Away Iñaki Williams #> 1722 Athletic Club Away Aritz Aduriz #> 1723 Athletic Club Away Yuri Berchiche #> 1724 Athletic Club Away Markel Susaeta #> 1725 Athletic Club Away Raúl García #> 1726 Athletic Club Away Beñat Etxebarria #> 1727 Athletic Club Away Mikel San José #> 1728 Athletic Club Away Dani García #> 1729 Athletic Club Away Mikel Balenziaga #> 1730 Athletic Club Away Iñigo Martínez #> 1731 Athletic Club Away Peru Nolaskoain #> 1732 Athletic Club Away Yeray Álvarez #> 1733 Athletic Club Away Óscar de Marcos #> 1734 Athletic Club Away Unai Simón #> 1735 Eibar Home Kiké #> 1736 Eibar Home Charles #> 1737 Eibar Home Sergi Enrich #> 1738 Eibar Home Pablo Hervías #> 1739 Eibar Home Sergio Álvarez #> 1740 Eibar Home Joan Jordán #> 1741 Eibar Home Papakouli Diop #> 1742 Eibar Home Fabián Orellana #> 1743 Eibar Home José Ángel #> 1744 Eibar Home Pedro Bigas #> 1745 Eibar Home Iván Ramis #> 1746 Eibar Home Anaitz Arbilla #> 1747 Eibar Home Rubén Peña #> 1748 Eibar Home Marko Dmitrović #> 1749 Sevilla Away André Silva #> 1750 Sevilla Away Luis Muriel #> 1751 Sevilla Away Wissam Ben Yedder #> 1752 Sevilla Away Quincy Promes #> 1753 Sevilla Away Franco Vázquez #> 1754 Sevilla Away Éver Banega #> 1755 Sevilla Away Pablo Sarabia #> 1756 Sevilla Away Roque Mesa #> 1757 Sevilla Away Guilherme Arana #> 1758 Sevilla Away Jesús Navas #> 1759 Sevilla Away Sergi Gómez #> 1760 Sevilla Away Simon Kjær #> 1761 Sevilla Away Daniel Carriço #> 1762 Sevilla Away Tomáš Vaclík #> 1763 Real Madrid Home Karim Benzema #> 1764 Real Madrid Home Vinicius Júnior #> 1765 Real Madrid Home Marco Asensio #> 1766 Real Madrid Home Gareth Bale #> 1767 Real Madrid Home Dani Ceballos #> 1768 Real Madrid Home Toni Kroos #> 1769 Real Madrid Home Casemiro #> 1770 Real Madrid Home Luka Modrić #> 1771 Real Madrid Home Lucas Vázquez #> 1772 Real Madrid Home Nacho #> 1773 Real Madrid Home Sergio Ramos #> 1774 Real Madrid Home Raphaël Varane #> 1775 Real Madrid Home Dani Carvajal #> 1776 Real Madrid Home Thibaut Courtois #> 1777 Atlético Madrid Away Antoine Griezmann #> 1778 Atlético Madrid Away Diego Costa #> 1779 Atlético Madrid Away Thomas Partey #> 1780 Atlético Madrid Away Koke #> 1781 Atlético Madrid Away Rodri #> 1782 Atlético Madrid Away Nikola Kalinić #> 1783 Atlético Madrid Away Saúl Ñíguez #> 1784 Atlético Madrid Away Thomas Lemar #> 1785 Atlético Madrid Away Ángel Correa #> 1786 Atlético Madrid Away Filipe Luís #> 1787 Atlético Madrid Away Diego Godín #> 1788 Atlético Madrid Away José María Giménez #> 1789 Atlético Madrid Away Juanfran #> 1790 Atlético Madrid Away Jan Oblak #> 1791 Huesca Home Cucho #> 1792 Huesca Home Ezequiel Ávila #> 1793 Huesca Home Álex Gallar #> 1794 Huesca Home Gonzalo Melero #> 1795 Huesca Home Juan Aguilera #> 1796 Huesca Home Damián Musto #> 1797 Huesca Home Moi Gómez #> 1798 Huesca Home Carlos Akapo #> 1799 Huesca Home Xabier Etxeita #> 1800 Huesca Home Rúben Semedo #> 1801 Huesca Home Jorge Pulido #> 1802 Huesca Home Jorge Miramón #> 1803 Huesca Home David Ferreiro #> 1804 Huesca Home Aleksandar Jovanović #> 1805 Girona Away Cristhian Stuani #> 1806 Girona Away Portu #> 1807 Girona Away Aleix García #> 1808 Girona Away Álex Granell #> 1809 Girona Away Borja García #> 1810 Girona Away Pedro Alcalá #> 1811 Girona Away Douglas Luiz #> 1812 Girona Away Pere Pons #> 1813 Girona Away Anthony Lozano #> 1814 Girona Away Marc Muniesa #> 1815 Girona Away Bernardo Espinosa #> 1816 Girona Away Juanpe #> 1817 Girona Away Aday #> 1818 Girona Away Yassine Bounou #> 1819 Villarreal Home Carlos Bacca #> 1820 Villarreal Home Gerard Moreno #> 1821 Villarreal Home Santi Cazorla #> 1822 Villarreal Home Karl Toko Ekambi #> 1823 Villarreal Home Ramiro Funes Mori #> 1824 Villarreal Home Manu Trigueros #> 1825 Villarreal Home Pablo Fornals #> 1826 Villarreal Home Jaume Costa #> 1827 Villarreal Home Alfonso Pedraza #> 1828 Villarreal Home Víctor Ruiz #> 1829 Villarreal Home Álvaro González #> 1830 Villarreal Home Mario Gaspar #> 1831 Villarreal Home Miguel Layún #> 1832 Villarreal Home Sergio Asenjo #> 1833 Valladolid Away Duje Čop #> 1834 Valladolid Away Leonardo Suárez #> 1835 Valladolid Away Anuar #> 1836 Valladolid Away Toni Villa #> 1837 Valladolid Away Ivi #> 1838 Valladolid Away Rubén Alcaraz #> 1839 Valladolid Away Míchel #> 1840 Valladolid Away Borja Fernández #> 1841 Valladolid Away Antoñito #> 1842 Valladolid Away Nacho #> 1843 Valladolid Away Fernando Calero #> 1844 Valladolid Away Kiko Olivas #> 1845 Valladolid Away Javi Moyano #> 1846 Valladolid Away Jordi Masip #> 1847 Levante Home José Luis Morales #> 1848 Levante Home Emmanuel Boateng #> 1849 Levante Home Rubén Rochina #> 1850 Levante Home Cheick Doukouré #> 1851 Levante Home Sanjin Prcić #> 1852 Levante Home José Campaña #> 1853 Levante Home Toño #> 1854 Levante Home Jason #> 1855 Levante Home Moses Simon #> 1856 Levante Home Rober #> 1857 Levante Home Sergio Postigo #> 1858 Levante Home Erick Cabaco #> 1859 Levante Home Chema #> 1860 Levante Home Oier Olazábal #> 1861 Alavés Away John Guidetti #> 1862 Alavés Away Jonathan Calleri #> 1863 Alavés Away Rubén Sobrino #> 1864 Alavés Away Burgui #> 1865 Alavés Away Jony #> 1866 Alavés Away Manu García #> 1867 Alavés Away Tomás Pina Isla #> 1868 Alavés Away Ibai Gómez #> 1869 Alavés Away Rubén Duarte #> 1870 Alavés Away Ximo Navarro #> 1871 Alavés Away Guillermo Maripán #> 1872 Alavés Away Víctor Laguardia #> 1873 Alavés Away Martin Agirregabiria #> 1874 Alavés Away Fernando Pacheco #> 1875 Real Betis Home Joaquín #> 1876 Real Betis Home Sergio León #> 1877 Real Betis Home Loren Morón #> 1878 Real Betis Home Giovani Lo Celso #> 1879 Real Betis Home Sergio Canales #> 1880 Real Betis Home Antonio Sanabria #> 1881 Real Betis Home Ryad Boudebouz #> 1882 Real Betis Home Cristian Tello #> 1883 Real Betis Home Antonio Barragán #> 1884 Real Betis Home William Carvalho #> 1885 Real Betis Home Marc Bartra #> 1886 Real Betis Home Javi García #> 1887 Real Betis Home Aïssa Mandi #> 1888 Real Betis Home Joel Robles #> 1889 Leganés Away Youssef En-Nesyri #> 1890 Leganés Away Guido Carrillo #> 1891 Leganés Away Óscar Rodríguez Arnaiz #> 1892 Leganés Away Mikel Vesga #> 1893 Leganés Away Gerard Gumbau #> 1894 Leganés Away Rubén Pérez #> 1895 Leganés Away Nabil El Zhar #> 1896 Leganés Away Sabin Merino #> 1897 Leganés Away Jonathan Silva #> 1898 Leganés Away Raúl García #> 1899 Leganés Away Unai Bustinza #> 1900 Leganés Away Rodrigo Tarín #> 1901 Leganés Away Juanfran #> 1902 Leganés Away Iván Cuéllar #> 1903 Celta Vigo Home Maxi Gómez #> 1904 Celta Vigo Home Iago Aspas #> 1905 Celta Vigo Home Brais Méndez #> 1906 Celta Vigo Home Stanislav Lobotka #> 1907 Celta Vigo Home Fran Beltrán #> 1908 Celta Vigo Home Okay Yokuşlu #> 1909 Celta Vigo Home Mathias Jensen #> 1910 Celta Vigo Home Néstor Araujo #> 1911 Celta Vigo Home Júnior Alonso #> 1912 Celta Vigo Home Facundo Roncaglia #> 1913 Celta Vigo Home Pione Sisto #> 1914 Celta Vigo Home Gustavo Cabral #> 1915 Celta Vigo Home Hugo Mallo #> 1916 Celta Vigo Home Sergio Álvarez #> 1917 Getafe Away Jorge Molina #> 1918 Getafe Away Ángel Rodríguez #> 1919 Getafe Away Robert Ibáñez #> 1920 Getafe Away Amath #> 1921 Getafe Away Markel Bergara #> 1922 Getafe Away Nemanja Maksimović #> 1923 Getafe Away Mauro Arambarri #> 1924 Getafe Away Jaime Mata #> 1925 Getafe Away Francisco Portillo #> 1926 Getafe Away Vitorino Antunes #> 1927 Getafe Away Bruno González #> 1928 Getafe Away Djené #> 1929 Getafe Away Damián Suárez #> 1930 Getafe Away David Soria #> 1931 Athletic Club Home Iñaki Williams #> 1932 Athletic Club Home Iker Muniain #> 1933 Athletic Club Home Markel Susaeta #> 1934 Athletic Club Home Beñat Etxebarria #> 1935 Athletic Club Home Mikel San José #> 1936 Athletic Club Home Dani García #> 1937 Athletic Club Home Raúl García #> 1938 Athletic Club Home Aritz Aduriz #> 1939 Athletic Club Home Yuri Berchiche #> 1940 Athletic Club Home Iñigo Martínez #> 1941 Athletic Club Home Yeray Álvarez #> 1942 Athletic Club Home Óscar de Marcos #> 1943 Athletic Club Home Ander Capa #> 1944 Athletic Club Home Unai Simón #> 1945 Real Sociedad Away Jon Bautista #> 1946 Real Sociedad Away Mikel Oyarzabal #> 1947 Real Sociedad Away Héctor Moreno #> 1948 Real Sociedad Away Luca Sangalli #> 1949 Real Sociedad Away Sandro Ramírez #> 1950 Real Sociedad Away Rubén Pardo #> 1951 Real Sociedad Away David Zurutuza #> 1952 Real Sociedad Away Igor Zubeldia #> 1953 Real Sociedad Away Asier Illarramendi #> 1954 Real Sociedad Away Kévin Rodrigues #> 1955 Real Sociedad Away Raúl Navas #> 1956 Real Sociedad Away Aritz Elustondo #> 1957 Real Sociedad Away Andoni Gorosabel #> 1958 Real Sociedad Away Miguel Ángel Moyá #> 1959 Girona Home Cristhian Stuani #> 1960 Girona Home Portu #> 1961 Girona Home Seydou Doumbia #> 1962 Girona Home Álex Granell #> 1963 Girona Home Borja García #> 1964 Girona Home Douglas Luiz #> 1965 Girona Home Aday #> 1966 Girona Home Patrick Roberts #> 1967 Girona Home Pedro Porro #> 1968 Girona Home Anthony Lozano #> 1969 Girona Home Marc Muniesa #> 1970 Girona Home Bernardo Espinosa #> 1971 Girona Home Juanpe #> 1972 Girona Home Yassine Bounou #> 1973 Eibar Away Charles #> 1974 Eibar Away Kiké #> 1975 Eibar Away Sergi Enrich #> 1976 Eibar Away Sergio Álvarez #> 1977 Eibar Away Pablo de Blasis #> 1978 Eibar Away Joan Jordán #> 1979 Eibar Away Papakouli Diop #> 1980 Eibar Away Fabián Orellana #> 1981 Eibar Away Marc Cucurella #> 1982 Eibar Away José Ángel #> 1983 Eibar Away Anaitz Arbilla #> 1984 Eibar Away Paulo Oliveira #> 1985 Eibar Away Rubén Peña #> 1986 Eibar Away Marko Dmitrović #> 1987 Getafe Home Jaime Mata #> 1988 Getafe Home Ángel Rodríguez #> 1989 Getafe Home Jorge Molina #> 1990 Getafe Home Amath #> 1991 Getafe Home Robert Ibáñez #> 1992 Getafe Home Nemanja Maksimović #> 1993 Getafe Home Mauro Arambarri #> 1994 Getafe Home Markel Bergara #> 1995 Getafe Home Francisco Portillo #> 1996 Getafe Home Vitorino Antunes #> 1997 Getafe Home Bruno González #> 1998 Getafe Home Djené #> 1999 Getafe Home Damián Suárez #> 2000 Getafe Home David Soria #> 2001 Levante Away Emmanuel Boateng #> 2002 Levante Away Borja Mayoral #> 2003 Levante Away José Luis Morales #> 2004 Levante Away José Campaña #> 2005 Levante Away Rubén Rochina #> 2006 Levante Away Sanjin Prcić #> 2007 Levante Away Enis Bardhi #> 2008 Levante Away Toño #> 2009 Levante Away Jason #> 2010 Levante Away Rober #> 2011 Levante Away Sergio Postigo #> 2012 Levante Away Erick Cabaco #> 2013 Levante Away Pedro López Muñoz #> 2014 Levante Away Oier Olazábal #> 2015 Alavés Home Jonathan Calleri #> 2016 Alavés Home Jony #> 2017 Alavés Home Ibai Gómez #> 2018 Alavés Home Rubén Sobrino #> 2019 Alavés Home Wakaso #> 2020 Alavés Home Manu García #> 2021 Alavés Home Tomás Pina Isla #> 2022 Alavés Home Darko Brašanac #> 2023 Alavés Home Rubén Duarte #> 2024 Alavés Home Guillermo Maripán #> 2025 Alavés Home Martin Agirregabiria #> 2026 Alavés Home Víctor Laguardia #> 2027 Alavés Home Ximo Navarro #> 2028 Alavés Home Fernando Pacheco #> 2029 Real Madrid Away Karim Benzema #> 2030 Real Madrid Away Mariano #> 2031 Real Madrid Away Dani Ceballos #> 2032 Real Madrid Away Gareth Bale #> 2033 Real Madrid Away Vinicius Júnior #> 2034 Real Madrid Away Toni Kroos #> 2035 Real Madrid Away Casemiro #> 2036 Real Madrid Away Marco Asensio #> 2037 Real Madrid Away Luka Modrić #> 2038 Real Madrid Away Nacho #> 2039 Real Madrid Away Sergio Ramos #> 2040 Real Madrid Away Raphaël Varane #> Player_Href Player_Num Nation Pos #> 1 /en/players/220c11f1/Cristhian-Stuani 7 URU FW #> 2 /en/players/59d93937/Patrick-Roberts 17 ENG RW,FW #> 3 /en/players/e7f4603c/Borja-Garcia 10 ESP LW,AM,LM #> 4 /en/players/1bda5842/Portu 9 ESP RW,LW #> 5 /en/players/a10361d2/Aleix-Garcia 23 ESP LM #> 6 /en/players/38699c72/Anthony-Lozano 19 HON LW,FW,LM #> 7 /en/players/174651c8/David-Timor 24 ESP CM,DM #> 8 /en/players/29b61deb/Pere-Pons 8 ESP DM #> 9 /en/players/a25250f8/Alex-Granell 6 ESP RM,DM #> 10 /en/players/4db76f57/Marc-Muniesa 20 ESP LB #> 11 /en/players/4242011c/Bernardo-Espinosa 2 COL CB #> 12 /en/players/1633fc8a/Juanpe 15 ESP CB #> 13 /en/players/27d0a506/Pedro-Porro 29 ESP RB #> 14 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK #> 15 /en/players/44e07fac/Chris-Ramos 12 ESP FW #> 16 /en/players/7c388b20/Oscar-Plano 10 ESP FW,LW #> 17 /en/players/636eae97/Toni-Villa 19 ESP LW #> 18 /en/players/418f8f61/Michel 21 ESP AM #> 19 /en/players/1512328c/Keko 24 ESP RW #> 20 /en/players/c93231dc/Anuar 23 MAR AM #> 21 /en/players/d3298c99/Daniele-Verde 11 ITA AM,FW #> 22 /en/players/036bba5f/Ruben-Alcaraz 14 ESP DM #> 23 /en/players/9127f9ce/Borja-Fernandez 8 ESP DM #> 24 /en/players/e29d1111/Nacho 22 ESP LB #> 25 /en/players/41b3069f/Fernando-Calero 5 ESP CB #> 26 /en/players/72b07a9c/Kiko-Olivas 4 ESP CB #> 27 /en/players/933e8c8a/Javi-Moyano 17 ESP RB #> 28 /en/players/8fae77ea/Jordi-Masip 1 ESP GK #> 29 /en/players/3aa4a3be/Loren-Moron 16 ESP FW #> 30 /en/players/1001ae82/Ryad-Boudebouz 10 ALG FW #> 31 /en/players/0a447501/Antonio-Sanabria 9 PAR FW #> 32 /en/players/24f59bb2/Junior-Firpo 20 ESP LW #> 33 /en/players/59d53e8a/Francis-Guerrero 2 ESP RW #> 34 /en/players/487d9b09/Antonio-Barragan 19 ESP RW #> 35 /en/players/ef322658/Andres-Guardado 18 MEX CM,DM #> 36 /en/players/a6de370d/Sergio-Canales 6 ESP CM #> 37 /en/players/dee86451/William-Carvalho 14 POR DM #> 38 /en/players/61bd33d0/Takashi-Inui 8 JPN CM,DM #> 39 /en/players/89151b16/Zouhair-Feddal 4 MAR CB #> 40 /en/players/b742cc0d/Marc-Bartra 5 ESP CB #> 41 /en/players/fbd6378b/Aissa-Mandi 23 ALG CB #> 42 /en/players/20b9f052/Pau-Lopez 13 ESP GK #> 43 /en/players/0ae4e09a/Roger-Marti 9 ESP FW #> 44 /en/players/ed239245/Antonio-Luna 22 ESP LB,FW #> 45 /en/players/4a478107/Jose-Luis-Morales 11 ESP FW,RM #> 46 /en/players/cac2537b/Enis-Bardhi 10 MKD LM,RM,FW #> 47 /en/players/61220da2/Jose-Campana 24 ESP CM #> 48 /en/players/e208bcc8/Cheick-Doukoure 5 CIV CM #> 49 /en/players/51c30111/Sanjin-Prcic 8 BIH CM #> 50 /en/players/9038c2a1/Jason 23 ESP RM,FW #> 51 /en/players/525f9bf4/Raphael-Dwamena 20 GHA FW #> 52 /en/players/d4ef9ac5/Tono 3 ESP LB,LM #> 53 /en/players/7f203b54/Chema 6 ESP CB #> 54 /en/players/474ecac8/Sergio-Postigo 15 ESP CB #> 55 /en/players/6d8f8441/Coke 12 ESP RB #> 56 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK #> 57 /en/players/4c2e9442/Maxi-Gomez 9 URU FW #> 58 /en/players/7f8fb807/Dennis-Eckert 32 GER FW #> 59 /en/players/fd9c4805/Pione-Sisto 11 DEN LW #> 60 /en/players/0c3f7197/Emre-Mor 7 TUR LW,RW #> 61 /en/players/c9e39d91/Brais-Mendez 23 ESP RW #> 62 /en/players/b0c71810/Sofiane-Boufal 19 MAR LW,RW #> 63 /en/players/7dcf86f6/Iago-Aspas 10 ESP AM #> 64 /en/players/e1cbb531/Stanislav-Lobotka 14 SVK DM #> 65 /en/players/ed5c5fa3/Fran-Beltran 8 ESP DM #> 66 /en/players/b18a3023/Junior-Alonso 25 PAR LB #> 67 /en/players/92b4a127/Gustavo-Cabral 22 ARG CB #> 68 /en/players/27a013f7/Nestor-Araujo 4 MEX CB #> 69 /en/players/cb574619/Hugo-Mallo 2 ESP RB #> 70 /en/players/8875b8c9/Sergio-Alvarez 1 ESP GK #> 71 /en/players/75645f0e/Borja-Iglesias 7 ESP FW #> 72 /en/players/2bee98fd/Sergio-Garcia 9 ESP FW #> 73 /en/players/48e89655/Pablo-Piatti 19 ARG LW #> 74 /en/players/2683eda7/Javi-Puado 20 ESP LW #> 75 /en/players/35f6db55/Leo-Baptistao 11 BRA RW #> 76 /en/players/e1cea3f7/Hernan-Perez 17 PAR RW #> 77 /en/players/070a3904/Sergi-Darder 10 ESP LM #> 78 /en/players/da27e268/Marc-Roca 21 ESP CM #> 79 /en/players/ad4d0985/Victor-Sanchez 4 ESP RM #> 80 /en/players/bad38a94/Didac-Vila 12 ESP LB #> 81 /en/players/555f3a0b/Mario-Hermoso 22 ESP CB #> 82 /en/players/f03f284b/David-Lopez 15 ESP CB #> 83 /en/players/ffad706e/Javi-Lopez 16 ESP RB #> 84 /en/players/73683fa9/Diego-Lopez 13 ESP GK #> 85 /en/players/5ceba7fc/Karl-Toko-Ekambi 17 CMR FW #> 86 /en/players/81f0781e/Gerard-Moreno 7 ESP FW,LM #> 87 /en/players/e2e9c250/Santi-Cazorla 19 ESP LM #> 88 /en/players/963829d0/Manu-Trigueros 14 ESP CM #> 89 /en/players/a0255c67/Manu-Morlanes 28 ESP CM #> 90 /en/players/ea6a7ab4/Dani-Raba 22 ESP RM,CM #> 91 /en/players/958bba56/Santiago-Caseres 5 ARG CM #> 92 /en/players/82927de4/Pablo-Fornals 8 ESP RM,CM,LM #> 93 /en/players/09a9e921/Carlos-Bacca 9 COL FW,LM #> 94 /en/players/63f04c6c/Alfonso-Pedraza 16 ESP LB #> 95 /en/players/89cbc961/Ramiro-Funes-Mori 4 ARG CB #> 96 /en/players/42dcf26d/Alvaro-Gonzalez 3 ESP CB #> 97 /en/players/fb5d47b3/Mario-Gaspar 2 ESP RB #> 98 /en/players/9f0ea33f/Sergio-Asenjo 1 ESP GK #> 99 /en/players/d87e2cae/Willian-Jose 12 BRA FW #> 100 /en/players/2306bfde/Ruben-Pardo 14 ESP FW #> 101 /en/players/84399660/Juanmi 7 ESP RM,FW #> 102 /en/players/d080ed5e/Mikel-Merino 8 ESP LM #> 103 /en/players/d9bda115/David-Zurutuza 17 ESP LM #> 104 /en/players/5c7845f6/Igor-Zubeldia 5 ESP CM #> 105 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP CM #> 106 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP RM #> 107 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP CB #> 108 /en/players/d4c9725f/Theo-Hernandez 19 FRA LB #> 109 /en/players/5d311e8d/Hector-Moreno 6 MEX CB #> 110 /en/players/bba30585/Diego-Llorente 3 ESP CB #> 111 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP RB #> 112 /en/players/625c144a/Geronimo-Rulli 1 ARG GK #> 113 /en/players/d70ce98e/Lionel-Messi 10 ARG FW,RW #> 114 /en/players/a6154613/Luis-Suarez 9 URU FW #> 115 /en/players/b19db005/Ousmane-Dembele 11 FRA LM #> 116 /en/players/48b3dd60/Arthur-Melo 8 BRA LM #> 117 /en/players/89f951b5/Ivan-Rakitic 4 CRO CM,RM #> 118 /en/players/5ab0ea87/Sergio-Busquets 5 ESP CM #> 119 /en/players/67cdbc0e/Arturo-Vidal 22 CHI CM #> 120 /en/players/335fa267/Sergi-Roberto 20 ESP RB,RM #> 121 /en/players/4601e194/Jordi-Alba 18 ESP LB #> 122 /en/players/3eed9821/Samuel-Umtiti 23 FRA CB #> 123 /en/players/adfc9123/Gerard-Pique 3 ESP CB #> 124 /en/players/d04b94db/Nelson-Semedo 2 POR RB #> 125 /en/players/0ef89a37/Philippe-Coutinho 7 BRA RM,LW #> 126 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER GK #> 127 /en/players/19b776e9/Ruben-Sobrino 7 ESP FW #> 128 /en/players/45e304c8/Burgui 14 ESP FW #> 129 /en/players/244f57b9/Jony 23 ESP LW #> 130 /en/players/8c44e37b/Borja-Baston 18 ESP FW #> 131 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RW,RM #> 132 /en/players/05a4465d/Manu-Garcia 19 ESP CM #> 133 /en/players/87882adc/Daniel-Torres 16 COL CM #> 134 /en/players/b7f2edff/Adrian-Marin 17 ESP LM,LB #> 135 /en/players/999908af/Wakaso 22 GHA CM #> 136 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB,LM #> 137 /en/players/d9764034/Guillermo-Maripan 6 CHI CB #> 138 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB #> 139 /en/players/355c883a/Martin-Agirregabiria 21 ESP RB #> 140 /en/players/97852360/Fernando-Pacheco 1 ESP GK #> 141 /en/players/e897d8ba/Kike 17 ESP FW #> 142 /en/players/c4b8bcf4/Charles 19 BRA FW #> 143 /en/players/bb4b1242/Sergi-Enrich 9 ESP FW #> 144 /en/players/d8712bf9/Bebe 10 CPV LM #> 145 /en/players/3f79a1c8/Gonzalo-Escalante 5 ARG CM,LM #> 146 /en/players/2a0c8ba4/Joan-Jordan 24 ESP CM,RM #> 147 /en/players/7329018e/Papakouli-Diop 8 SEN CM #> 148 /en/players/c90977db/Fabian-Orellana 14 CHI RM,LM #> 149 /en/players/3024e383/Jose-Angel 15 ESP LB #> 150 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP CB #> 151 /en/players/697295b1/Pedro-Bigas 3 ESP CB #> 152 /en/players/a8fbae1d/Paulo-Oliveira 12 POR CB #> 153 /en/players/1f079188/Ruben-Pena 11 ESP RB #> 154 /en/players/ac295d9e/Marko-Dmitrovic 25 SRB GK #> 155 /en/players/1163de29/Samuele-Longo 12 ITA FW #> 156 /en/players/71b47ab9/Cucho 9 COL FW #> 157 /en/players/c904f3d5/Ruben-Semedo 4 POR DM #> 158 /en/players/5a626448/Moi-Gomez 6 ESP LM,CM #> 159 /en/players/3902e91b/Gonzalo-Melero 8 ESP CM #> 160 /en/players/74e0a984/Damian-Musto 23 ARG CM #> 161 /en/players/8970907e/David-Ferreiro 7 ESP LM #> 162 /en/players/36d5469c/Alex-Gallar 11 ESP RM #> 163 /en/players/253a06b9/Ezequiel-Avila 19 ARG RM #> 164 /en/players/a7f00c8c/Luisinho 16 POR LB #> 165 /en/players/4a895384/Xabier-Etxeita 3 ESP CB #> 166 /en/players/978cd030/Jorge-Pulido 14 ESP CB #> 167 /en/players/7f4c7c9f/Jorge-Miramon 24 ESP RB #> 168 /en/players/c0b1a6da/Axel-Werner 1 ARG GK #> 169 /en/players/fc647b34/Oscar-Trejo 8 ARG FW,CM #> 170 /en/players/db8f0eba/Adri-Embarba 11 ESP LM,LW #> 171 /en/players/fc8b614b/Jose-Pozo 22 ESP CM #> 172 /en/players/cacadf4f/Luis-Advincula 17 PER RM #> 173 /en/players/31223bcf/Alvaro-Medran 4 ESP CM #> 174 /en/players/aa386464/Javi-Guerra 24 ESP FW,CM #> 175 /en/players/5b1bf5e3/Gael-Kakuta 10 COD RM,CM,RW #> 176 /en/players/d70a2141/Jordi-Amat 16 IDN DM,CM #> 177 /en/players/16e9d0ea/Alex-Moreno 7 ESP LB,LM #> 178 /en/players/e98f3a6a/Chechu 5 ESP CB #> 179 /en/players/1f54ed90/Abdoulaye-Ba 21 SEN CB #> 180 /en/players/7cefa219/Tito 2 ESP RB,CB #> 181 /en/players/17d9e354/Alberto-Garcia 1 ESP GK #> 182 /en/players/3effaa34/Andre-Silva 12 POR FW #> 183 /en/players/467bae22/Franco-Vazquez 22 ARG AM,CM #> 184 /en/players/9744ff80/Pablo-Sarabia 17 ESP AM #> 185 /en/players/eb2fe5b6/Luis-Muriel 14 COL FW #> 186 /en/players/fa937f7a/Ever-Banega 10 ARG CM #> 187 /en/players/9260926b/Ibrahim-Amadou 5 FRA CM #> 188 /en/players/7c4243d4/Roque-Mesa 7 ESP CM #> 189 /en/players/b0616e3d/Sergio-Escudero 18 ESP WB #> 190 /en/players/04965583/Aleix-Vidal 11 ESP WB #> 191 /en/players/3f10bd22/Jesus-Navas 16 ESP WB #> 192 /en/players/bc6f5f06/Sergi-Gomez 3 ESP CB #> 193 /en/players/8b8a56ce/Simon-Kjaer 4 DEN CB #> 194 /en/players/bf97c188/Gabriel-Mercado 25 ARG CB #> 195 /en/players/7b456af7/Tomas-Vaclik 1 CZE GK #> 196 /en/players/70d74ece/Karim-Benzema 9 FRA FW #> 197 /en/players/45af8a54/Marco-Asensio 20 ESP LW #> 198 /en/players/a58bb1e1/Gareth-Bale 11 WAL RW #> 199 /en/players/fd51b456/Lucas-Vazquez 17 ESP RW #> 200 /en/players/a0b4bb3e/Isco 22 ESP LM #> 201 /en/players/4d224fe8/Casemiro 14 BRA CM #> 202 /en/players/6ce1f46f/Toni-Kroos 8 GER CM,LM #> 203 /en/players/c0617e2b/Dani-Ceballos 24 ESP RM #> 204 /en/players/6025fab1/Luka-Modric 10 CRO RM #> 205 /en/players/603116a7/Marcelo 12 BRA LB #> 206 /en/players/08511d65/Sergio-Ramos 4 ESP CB #> 207 /en/players/2946f9a1/Nacho 6 ESP CB #> 208 /en/players/4958bfb2/Dani-Carvajal 2 ESP RB #> 209 /en/players/ecada4fc/Keylor-Navas 1 CRC GK #> 210 /en/players/43f71e77/Jorge-Molina 19 ESP FW #> 211 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW #> 212 /en/players/f3b1d9a2/Amath 11 SEN LM #> 213 /en/players/02319ad7/Jaime-Mata 7 ESP FW,LM #> 214 /en/players/d2ac648c/Gaku-Shibasaki 10 JPN CM,LM,FW #> 215 /en/players/58afe001/Mauro-Arambarri 18 URU CM #> 216 /en/players/8e010ff4/Francisco-Portillo 8 ESP RM #> 217 /en/players/3d7e48ce/Ivan-Alejo 23 ESP RM #> 218 /en/players/00b28772/Nemanja-Maksimovic 20 SRB CM,DM #> 219 /en/players/69cbc8b6/Leandro-Cabrera 6 URU LB #> 220 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB #> 221 /en/players/a4971d84/Djene 2 TOG CB #> 222 /en/players/ba5004e1/Damian-Suarez 22 URU RB #> 223 /en/players/8f8c6934/David-Soria 13 ESP GK #> 224 /en/players/0b90bb97/Santi-Mina 22 ESP FW #> 225 /en/players/42276181/Kevin-Gameiro 9 FRA FW #> 226 /en/players/1fb1c435/Rodrigo 19 ESP FW,LM #> 227 /en/players/d83bbc54/Daniel-Wass 18 DEN LM,RM #> 228 /en/players/cce181df/Geoffrey-Kondogbia 6 CTA CM #> 229 /en/players/7460ca0d/Daniel-Parejo 10 ESP CM #> 230 /en/players/fed17f5a/Carlos-Soler 8 ESP RM #> 231 /en/players/2973d8ff/Michy-Batshuayi 23 BEL FW,RM #> 232 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP LB #> 233 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA CB #> 234 /en/players/ac3fb1be/Ezequiel-Garay 24 ARG CB #> 235 /en/players/d2110326/Mouctar-Diakhaby 12 GUI CB #> 236 /en/players/32c0491f/Cristiano-Piccini 21 ITA RB #> 237 /en/players/a9dc785c/Neto 13 BRA GK #> 238 /en/players/df69b544/Antoine-Griezmann 7 FRA FW #> 239 /en/players/3ef0fa48/Gelson-Martins 18 POR RW,RM #> 240 /en/players/a190d597/Diego-Costa 19 ESP FW #> 241 /en/players/4dbd0916/Thomas-Lemar 11 FRA LM #> 242 /en/players/db750822/Vitolo 23 ESP LM,LW #> 243 /en/players/c14bc029/Saul-Niguez 8 ESP CM,DM #> 244 /en/players/55126f3b/Koke 6 ESP CM,DM #> 245 /en/players/01eb744d/Angel-Correa 10 ARG RM,FW #> 246 /en/players/529f49ab/Thomas-Partey 5 GHA AM,FW #> 247 /en/players/e4ed2628/Filipe-Luis 3 BRA LB #> 248 /en/players/fc4f85b1/Diego-Godin 2 URU CB #> 249 /en/players/f6ac68c1/Stefan-Savic 15 MNE CB #> 250 /en/players/cfd8d664/Juanfran 20 ESP RB #> 251 /en/players/ee8508c0/Jan-Oblak 13 SVN GK #> 252 /en/players/293211e1/Aritz-Aduriz 20 ESP FW #> 253 /en/players/49ea92be/Inigo-Cordoba 11 ESP LW,FW #> 254 /en/players/6a99e0b1/Inaki-Williams 9 GHA LW,FW #> 255 /en/players/6fd1ba62/Markel-Susaeta 14 ESP RW #> 256 /en/players/c05dfb74/Iker-Muniain 10 ESP LM #> 257 /en/players/240d3a0b/Dani-Garcia 16 ESP CM #> 258 /en/players/88050721/Unai-Lopez 23 ESP RM #> 259 /en/players/b418dbd4/Raul-Garcia 22 ESP RM #> 260 /en/players/b6e50615/Yuri-Berchiche 12 ESP LB #> 261 /en/players/857cb4f3/Peru-Nolaskoain 31 ESP CB #> 262 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP CB #> 263 /en/players/9f323c71/Oscar-de-Marcos 18 ESP RB #> 264 /en/players/37f1cf47/Ander-Capa 21 ESP RB #> 265 /en/players/5dcf3e90/Unai-Simon 25 ESP GK #> 266 /en/players/8f898ba8/Guido-Carrillo 9 ARG FW #> 267 /en/players/04e17fd5/Youssef-En-Nesyri 26 MAR FW #> 268 /en/players/aec0fb6f/Javier-Eraso 17 ESP FW #> 269 /en/players/3cb6f224/Michael-Santos 20 URU FW #> 270 /en/players/f2308b33/Jonathan-Silva 5 ARG LM #> 271 /en/players/ac454a4f/Gerard-Gumbau 6 ESP CM #> 272 /en/players/3c7bc9bd/Ruben-Perez 21 ESP CM #> 273 /en/players/37f96552/Nabil-El-Zhar 10 MAR RM #> 274 /en/players/375a669e/Dani-Ojeda 7 ESP RM #> 275 /en/players/1a317a1b/Raul-Garcia 14 ESP LB #> 276 /en/players/92d38e6c/Dimitris-Siovas 22 GRE CB #> 277 /en/players/e4b8c5b6/Ezequiel-Munoz 19 ARG CB #> 278 /en/players/9ba48d64/Juanfran 2 ESP RB #> 279 /en/players/75751c99/Ivan-Cuellar 1 ESP GK #> 280 /en/players/02319ad7/Jaime-Mata 7 ESP FW #> 281 /en/players/43f71e77/Jorge-Molina 19 ESP FW #> 282 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW #> 283 /en/players/69cbc8b6/Leandro-Cabrera 6 URU LB #> 284 /en/players/8e010ff4/Francisco-Portillo 8 ESP LM,RM #> 285 /en/players/00b28772/Nemanja-Maksimovic 20 SRB CM #> 286 /en/players/58afe001/Mauro-Arambarri 18 URU CM #> 287 /en/players/3d7e48ce/Ivan-Alejo 23 ESP RM #> 288 /en/players/f3b1d9a2/Amath 11 SEN LM,FW #> 289 /en/players/3e4f735d/Vitorino-Antunes 3 POR LB,LM #> 290 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB #> 291 /en/players/a4971d84/Djene 2 TOG CB #> 292 /en/players/ba5004e1/Damian-Suarez 22 URU RB #> 293 /en/players/8f8c6934/David-Soria 13 ESP GK #> 294 /en/players/bb4b1242/Sergi-Enrich 9 ESP FW #> 295 /en/players/e897d8ba/Kike 17 ESP FW #> 296 /en/players/c4b8bcf4/Charles 19 BRA FW #> 297 /en/players/335039a2/Pere-Milla 22 ESP LM #> 298 /en/players/ba5a9545/Pablo-Hervias 18 ESP RM #> 299 /en/players/7329018e/Papakouli-Diop 8 SEN CM #> 300 /en/players/3f79a1c8/Gonzalo-Escalante 5 ARG CM #> 301 /en/players/2a0c8ba4/Joan-Jordan 24 ESP RM,LM #> 302 /en/players/d8712bf9/Bebe 10 CPV LM #> 303 /en/players/3024e383/Jose-Angel 15 ESP LB #> 304 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP CB #> 305 /en/players/a8fbae1d/Paulo-Oliveira 12 POR CB #> 306 /en/players/1f079188/Ruben-Pena 11 ESP RB #> 307 /en/players/ac295d9e/Marko-Dmitrovic 25 SRB GK #> 308 /en/players/8f898ba8/Guido-Carrillo 9 ARG FW #> 309 /en/players/aec0fb6f/Javier-Eraso 17 ESP FW #> 310 /en/players/3cb6f224/Michael-Santos 20 URU FW,LW,RW #> 311 /en/players/375a669e/Dani-Ojeda 7 ESP LM #> 312 /en/players/d1491e00/Diego-Rolan 4 URU LM,LW #> 313 /en/players/ac454a4f/Gerard-Gumbau 6 ESP CM #> 314 /en/players/3c7bc9bd/Ruben-Perez 21 ESP CM #> 315 /en/players/37f96552/Nabil-El-Zhar 10 MAR RM #> 316 /en/players/f2308b33/Jonathan-Silva 5 ARG LB,CB #> 317 /en/players/92d38e6c/Dimitris-Siovas 22 GRE CB #> 318 /en/players/e4b8c5b6/Ezequiel-Munoz 19 ARG CB #> 319 /en/players/04e17fd5/Youssef-En-Nesyri 26 MAR RW,CB #> 320 /en/players/9ba48d64/Juanfran 2 ESP RB,CB #> 321 /en/players/75751c99/Ivan-Cuellar 1 ESP GK #> 322 /en/players/d87e2cae/Willian-Jose 12 BRA FW #> 323 /en/players/84399660/Juanmi 7 ESP FW,RW,LW #> 324 /en/players/d9bda115/David-Zurutuza 17 ESP LM #> 325 /en/players/d080ed5e/Mikel-Merino 8 ESP AM #> 326 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP CM,DM #> 327 /en/players/5c7845f6/Igor-Zubeldia 5 ESP CM,DM #> 328 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP RM,RW #> 329 /en/players/2306bfde/Ruben-Pardo 14 ESP LW #> 330 /en/players/d4c9725f/Theo-Hernandez 19 FRA LB #> 331 /en/players/5d311e8d/Hector-Moreno 6 MEX CB #> 332 /en/players/bba30585/Diego-Llorente 3 ESP CB #> 333 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP CB #> 334 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP RB #> 335 /en/players/625c144a/Geronimo-Rulli 1 ARG GK #> 336 /en/players/19b776e9/Ruben-Sobrino 7 ESP FW #> 337 /en/players/45e304c8/Burgui 14 ESP FW #> 338 /en/players/8c44e37b/Borja-Baston 18 ESP FW #> 339 /en/players/99bebd12/John-Guidetti 10 SWE FW #> 340 /en/players/244f57b9/Jony 23 ESP LM #> 341 /en/players/e3993b65/Patrick-Twumasi 24 GHA LM #> 342 /en/players/05a4465d/Manu-Garcia 19 ESP CM #> 343 /en/players/999908af/Wakaso 22 GHA CM #> 344 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RM #> 345 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB #> 346 /en/players/d9764034/Guillermo-Maripan 6 CHI CB #> 347 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB #> 348 /en/players/355c883a/Martin-Agirregabiria 21 ESP RB #> 349 /en/players/97852360/Fernando-Pacheco 1 ESP GK #> 350 /en/players/3aa4a3be/Loren-Moron 16 ESP FW,AM #> 351 /en/players/61bd33d0/Takashi-Inui 8 JPN AM #> 352 /en/players/0a447501/Antonio-Sanabria 9 PAR AM,FW #> 353 /en/players/a6de370d/Sergio-Canales 6 ESP AM,CM #> 354 /en/players/dee86451/William-Carvalho 14 POR CM #> 355 /en/players/1001ae82/Ryad-Boudebouz 10 ALG AM,CM #> 356 /en/players/ef322658/Andres-Guardado 18 MEX CM #> 357 /en/players/24f59bb2/Junior-Firpo 20 ESP WB #> 358 /en/players/59d53e8a/Francis-Guerrero 2 ESP WB #> 359 /en/players/72a99e38/Cristian-Tello 11 ESP WB #> 360 /en/players/89151b16/Zouhair-Feddal 4 MAR CB #> 361 /en/players/b742cc0d/Marc-Bartra 5 ESP CB #> 362 /en/players/fbd6378b/Aissa-Mandi 23 ALG CB #> 363 /en/players/20b9f052/Pau-Lopez 13 ESP GK #> 364 /en/players/a190d597/Diego-Costa 19 ESP FW #> 365 /en/players/df69b544/Antoine-Griezmann 7 FRA FW #> 366 /en/players/3ef0fa48/Gelson-Martins 18 POR RW #> 367 /en/players/4dbd0916/Thomas-Lemar 11 FRA LM,LW,RM #> 368 /en/players/c14bc029/Saul-Niguez 8 ESP CM #> 369 /en/players/6434f10d/Rodri 14 ESP CM #> 370 /en/players/01eb744d/Angel-Correa 10 ARG RM #> 371 /en/players/55126f3b/Koke 6 ESP CM,LM #> 372 /en/players/c3ee18ef/Lucas-Hernandez 21 FRA LB #> 373 /en/players/fc4f85b1/Diego-Godin 2 URU CB #> 374 /en/players/f6ac68c1/Stefan-Savic 15 MNE CB #> 375 /en/players/cfd8d664/Juanfran 20 ESP RB #> 376 /en/players/529f49ab/Thomas-Partey 5 GHA RB #> 377 /en/players/ee8508c0/Jan-Oblak 13 SVN GK #> 378 /en/players/db8f0eba/Adri-Embarba 11 ESP FW,LM,RM #> 379 /en/players/90bbd822/Alvaro-Garcia 18 ESP LM #> 380 /en/players/014b57f5/Sergio-Moreno 29 ESP FW #> 381 /en/players/5ae499d0/Santi-Comesana 27 ESP CM #> 382 /en/players/fc8b614b/Jose-Pozo 22 ESP RM,FW,CM #> 383 /en/players/fc647b34/Oscar-Trejo 8 ARG CM #> 384 /en/players/5b1bf5e3/Gael-Kakuta 10 COD RM #> 385 /en/players/31223bcf/Alvaro-Medran 4 ESP CM,RM #> 386 /en/players/7b309e55/Gorka-Elustondo 6 ESP DM #> 387 /en/players/16e9d0ea/Alex-Moreno 7 ESP LB #> 388 /en/players/d70a2141/Jordi-Amat 16 IDN CB #> 389 /en/players/1f54ed90/Abdoulaye-Ba 21 SEN CB #> 390 /en/players/cacadf4f/Luis-Advincula 17 PER RB #> 391 /en/players/17d9e354/Alberto-Garcia 1 ESP GK #> 392 /en/players/7c388b20/Oscar-Plano 10 ESP FW,LM #> 393 /en/players/f8eca1b6/Enes-Unal 9 TUR FW #> 394 /en/players/8b0b02c9/Duje-Cop 20 CRO FW #> 395 /en/players/636eae97/Toni-Villa 19 ESP AM,LM #> 396 /en/players/d3298c99/Daniele-Verde 11 ITA FW #> 397 /en/players/036bba5f/Ruben-Alcaraz 14 ESP LM,CM #> 398 /en/players/9127f9ce/Borja-Fernandez 8 ESP CM #> 399 /en/players/1512328c/Keko 24 ESP RM #> 400 /en/players/c93231dc/Anuar 23 MAR RM,CM #> 401 /en/players/e29d1111/Nacho 22 ESP LB #> 402 /en/players/41b3069f/Fernando-Calero 5 ESP CB #> 403 /en/players/72b07a9c/Kiko-Olivas 4 ESP CB #> 404 /en/players/933e8c8a/Javi-Moyano 17 ESP RB #> 405 /en/players/8fae77ea/Jordi-Masip 1 ESP GK #> 406 /en/players/a6154613/Luis-Suarez 9 URU FW #> 407 /en/players/8696bc90/Munir-El-Haddadi 19 MAR FW #> 408 /en/players/b19db005/Ousmane-Dembele 11 FRA LW #> 409 /en/players/67cdbc0e/Arturo-Vidal 22 CHI RM #> 410 /en/players/d70ce98e/Lionel-Messi 10 ARG RW,FW #> 411 /en/players/0ef89a37/Philippe-Coutinho 7 BRA LM #> 412 /en/players/6853490f/Malcom 14 BRA LM #> 413 /en/players/5ab0ea87/Sergio-Busquets 5 ESP CM #> 414 /en/players/89f951b5/Ivan-Rakitic 4 CRO RM,CM #> 415 /en/players/4601e194/Jordi-Alba 18 ESP LB #> 416 /en/players/3eed9821/Samuel-Umtiti 23 FRA CB #> 417 /en/players/adfc9123/Gerard-Pique 3 ESP CB #> 418 /en/players/335fa267/Sergi-Roberto 20 ESP RB #> 419 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER GK #> 420 /en/players/75645f0e/Borja-Iglesias 7 ESP FW #> 421 /en/players/2bee98fd/Sergio-Garcia 9 ESP LM #> 422 /en/players/e1cea3f7/Hernan-Perez 17 PAR RM,LM #> 423 /en/players/1b17ed86/Esteban-Granero 23 ESP CM #> 424 /en/players/ad4d0985/Victor-Sanchez 4 ESP CM #> 425 /en/players/070a3904/Sergi-Darder 10 ESP CM #> 426 /en/players/35f6db55/Leo-Baptistao 11 BRA RM #> 427 /en/players/48e89655/Pablo-Piatti 19 ARG LM,RM #> 428 /en/players/da27e268/Marc-Roca 21 ESP DM #> 429 /en/players/bad38a94/Didac-Vila 12 ESP LB #> 430 /en/players/555f3a0b/Mario-Hermoso 22 ESP CB #> 431 /en/players/f03f284b/David-Lopez 15 ESP CB #> 432 /en/players/ffad706e/Javi-Lopez 16 ESP RB #> 433 /en/players/73683fa9/Diego-Lopez 13 ESP GK #> 434 /en/players/0b90bb97/Santi-Mina 22 ESP FW #> 435 /en/players/42276181/Kevin-Gameiro 9 FRA FW #> 436 /en/players/1fb1c435/Rodrigo 19 ESP FW #> 437 /en/players/2973d8ff/Michy-Batshuayi 23 BEL FW #> 438 /en/players/d83bbc54/Daniel-Wass 18 DEN LM #> 439 /en/players/0ac94a23/Denis-Cheryshev 11 RUS LM #> 440 /en/players/cce181df/Geoffrey-Kondogbia 6 CTA CM #> 441 /en/players/7460ca0d/Daniel-Parejo 10 ESP CM #> 442 /en/players/fed17f5a/Carlos-Soler 8 ESP RM #> 443 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP LB #> 444 /en/players/d2110326/Mouctar-Diakhaby 12 GUI CB #> 445 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA CB #> 446 /en/players/32c0491f/Cristiano-Piccini 21 ITA RB #> 447 /en/players/a9dc785c/Neto 13 BRA GK #> 448 /en/players/38699c72/Anthony-Lozano 19 HON FW #> 449 /en/players/220c11f1/Cristhian-Stuani 7 URU FW #> 450 /en/players/e7f4603c/Borja-Garcia 10 ESP LW #> 451 /en/players/1bda5842/Portu 9 ESP RW #> 452 /en/players/a25250f8/Alex-Granell 6 ESP LM,RM #> 453 /en/players/174651c8/David-Timor 24 ESP CM #> 454 /en/players/29b61deb/Pere-Pons 8 ESP RM #> 455 /en/players/a10361d2/Aleix-Garcia 23 ESP LM #> 456 /en/players/4db76f57/Marc-Muniesa 20 ESP LB #> 457 /en/players/4242011c/Bernardo-Espinosa 2 COL CB #> 458 /en/players/1633fc8a/Juanpe 15 ESP CB #> 459 /en/players/27d0a506/Pedro-Porro 29 ESP RB #> 460 /en/players/5890cef1/Aday 11 ESP RB #> 461 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK #> 462 /en/players/70d74ece/Karim-Benzema 9 FRA FW #> 463 /en/players/45af8a54/Marco-Asensio 20 ESP LW,RW #> 464 /en/players/a58bb1e1/Gareth-Bale 11 WAL RW #> 465 /en/players/fd51b456/Lucas-Vazquez 17 ESP LW,RW #> 466 /en/players/a0b4bb3e/Isco 22 ESP AM #> 467 /en/players/6025fab1/Luka-Modric 10 CRO AM #> 468 /en/players/6ce1f46f/Toni-Kroos 8 GER DM #> 469 /en/players/4d224fe8/Casemiro 14 BRA DM #> 470 /en/players/603116a7/Marcelo 12 BRA LB #> 471 /en/players/9f8e9423/Raphael-Varane 5 FRA CB #> 472 /en/players/08511d65/Sergio-Ramos 4 ESP CB #> 473 /en/players/2946f9a1/Nacho 6 ESP CB,LB #> 474 /en/players/4958bfb2/Dani-Carvajal 2 ESP RB #> 475 /en/players/ecada4fc/Keylor-Navas 1 CRC GK #> 476 /en/players/3effaa34/Andre-Silva 12 POR FW #> 477 /en/players/467bae22/Franco-Vazquez 22 ARG AM #> 478 /en/players/04965583/Aleix-Vidal 11 ESP AM,WB #> 479 /en/players/9744ff80/Pablo-Sarabia 17 ESP AM #> 480 /en/players/fa937f7a/Ever-Banega 10 ARG CM #> 481 /en/players/b8c1de25/Maxime-Gonalons 15 FRA CM #> 482 /en/players/7c4243d4/Roque-Mesa 7 ESP CM #> 483 /en/players/b0616e3d/Sergio-Escudero 18 ESP WB #> 484 /en/players/942b4f90/Wissam-Ben-Yedder 9 FRA AM #> 485 /en/players/3f10bd22/Jesus-Navas 16 ESP WB #> 486 /en/players/bc6f5f06/Sergi-Gomez 3 ESP CB #> 487 /en/players/8b8a56ce/Simon-Kjaer 4 DEN CB #> 488 /en/players/bf97c188/Gabriel-Mercado 25 ARG CB #> 489 /en/players/7b456af7/Tomas-Vaclik 1 CZE GK #> 490 /en/players/5ceba7fc/Karl-Toko-Ekambi 17 CMR FW #> 491 /en/players/808d48f3/Jaume-Costa 11 ESP LB #> 492 /en/players/81f0781e/Gerard-Moreno 7 ESP FW #> 493 /en/players/82927de4/Pablo-Fornals 8 ESP AM #> 494 /en/players/09a9e921/Carlos-Bacca 9 COL FW #> 495 /en/players/963829d0/Manu-Trigueros 14 ESP LM,CM #> 496 /en/players/e2e9c250/Santi-Cazorla 19 ESP RM #> 497 /en/players/ea6a7ab4/Dani-Raba 22 ESP RM #> 498 /en/players/958bba56/Santiago-Caseres 5 ARG DM,CM #> 499 /en/players/63f04c6c/Alfonso-Pedraza 16 ESP LB,LM #> 500 /en/players/b3dc6eca/Victor-Ruiz 6 ESP CB #> 501 /en/players/42dcf26d/Alvaro-Gonzalez 3 ESP CB #> 502 /en/players/fb5d47b3/Mario-Gaspar 2 ESP RB #> 503 /en/players/9f0ea33f/Sergio-Asenjo 1 ESP GK #> 504 /en/players/0ae4e09a/Roger-Marti 9 ESP FW,RW #> 505 /en/players/4a478107/Jose-Luis-Morales 11 ESP LW,AM #> 506 /en/players/9038c2a1/Jason 23 ESP RW #> 507 /en/players/525f9bf4/Raphael-Dwamena 20 GHA FW,RW #> 508 /en/players/cac2537b/Enis-Bardhi 10 MKD AM #> 509 /en/players/ecd8c01e/Ruben-Rochina 16 ESP LW #> 510 /en/players/e208bcc8/Cheick-Doukoure 5 CIV DM #> 511 /en/players/51c30111/Sanjin-Prcic 8 BIH DM #> 512 /en/players/61220da2/Jose-Campana 24 ESP DM #> 513 /en/players/d4ef9ac5/Tono 3 ESP LB #> 514 /en/players/c00097d2/Rober 4 ESP CB #> 515 /en/players/474ecac8/Sergio-Postigo 15 ESP CB #> 516 /en/players/6d8f8441/Coke 12 ESP RB #> 517 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK #> 518 /en/players/4c2e9442/Maxi-Gomez 9 URU FW #> 519 /en/players/7f8fb807/Dennis-Eckert 32 GER FW #> 520 /en/players/fd9c4805/Pione-Sisto 11 DEN LW #> 521 /en/players/e49ce451/Okay-Yokuslu 5 TUR CM #> 522 /en/players/7dcf86f6/Iago-Aspas 10 ESP RW #> 523 /en/players/b0c71810/Sofiane-Boufal 19 MAR RW,FW #> 524 /en/players/b18a3023/Junior-Alonso 25 PAR LM,LB #> 525 /en/players/ed5c5fa3/Fran-Beltran 8 ESP CM #> 526 /en/players/e1cbb531/Stanislav-Lobotka 14 SVK CM #> 527 /en/players/cb574619/Hugo-Mallo 2 ESP RM,RB #> 528 /en/players/27a013f7/Nestor-Araujo 4 MEX CB #> 529 /en/players/92b4a127/Gustavo-Cabral 22 ARG CB #> 530 /en/players/51e3954c/Facundo-Roncaglia 24 ARG CB #> 531 /en/players/8875b8c9/Sergio-Alvarez 1 ESP GK #> 532 /en/players/6a99e0b1/Inaki-Williams 9 GHA FW,LM #> 533 /en/players/49ea92be/Inigo-Cordoba 11 ESP LM #> 534 /en/players/6dce77a5/Ander-Iturraspe 8 ESP LM,DM #> 535 /en/players/c05dfb74/Iker-Muniain 10 ESP CM #> 536 /en/players/b418dbd4/Raul-Garcia 22 ESP CM,RM #> 537 /en/players/6fd1ba62/Markel-Susaeta 14 ESP RM #> 538 /en/players/6b5ea2f4/Gorka-Guruzeta 30 ESP FW,RM #> 539 /en/players/240d3a0b/Dani-Garcia 16 ESP DM,CM #> 540 /en/players/b6e50615/Yuri-Berchiche 12 ESP LB #> 541 /en/players/857cb4f3/Peru-Nolaskoain 31 ESP CB #> 542 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP CB #> 543 /en/players/9f323c71/Oscar-de-Marcos 18 ESP RB #> 544 /en/players/37f1cf47/Ander-Capa 21 ESP RB #> 545 /en/players/5dcf3e90/Unai-Simon 25 ESP GK #> 546 /en/players/1163de29/Samuele-Longo 12 ITA FW #> 547 /en/players/253a06b9/Ezequiel-Avila 19 ARG FW #> 548 /en/players/71b47ab9/Cucho 9 COL FW #> 549 /en/players/5a626448/Moi-Gomez 6 ESP LM #> 550 /en/players/8970907e/David-Ferreiro 7 ESP LM #> 551 /en/players/3902e91b/Gonzalo-Melero 8 ESP CM #> 552 /en/players/74e0a984/Damian-Musto 23 ARG CM #> 553 /en/players/36d5469c/Alex-Gallar 11 ESP RM #> 554 /en/players/8d2ad5c0/Serdar-Gurler 21 TUR RM #> 555 /en/players/a7f00c8c/Luisinho 16 POR LB #> 556 /en/players/4a895384/Xabier-Etxeita 3 ESP CB #> 557 /en/players/978cd030/Jorge-Pulido 14 ESP CB #> 558 /en/players/7f4c7c9f/Jorge-Miramon 24 ESP RB #> 559 /en/players/c0b1a6da/Axel-Werner 1 ARG GK #> 560 /en/players/02319ad7/Jaime-Mata 7 ESP FW #> 561 /en/players/43f71e77/Jorge-Molina 19 ESP FW #> 562 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW #> 563 /en/players/32974271/Sergi-Guardiola 14 ESP FW #> 564 /en/players/3d7e48ce/Ivan-Alejo 23 ESP LM #> 565 /en/players/f3b1d9a2/Amath 11 SEN LM #> 566 /en/players/00b28772/Nemanja-Maksimovic 20 SRB CM #> 567 /en/players/58afe001/Mauro-Arambarri 18 URU CM #> 568 /en/players/8e010ff4/Francisco-Portillo 8 ESP RM #> 569 /en/players/3e4f735d/Vitorino-Antunes 3 POR LB #> 570 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB #> 571 /en/players/a4971d84/Djene 2 TOG CB #> 572 /en/players/ba5004e1/Damian-Suarez 22 URU RB #> 573 /en/players/8f8c6934/David-Soria 13 ESP GK #> 574 /en/players/f8eca1b6/Enes-Unal 9 TUR FW #> 575 /en/players/8b0b02c9/Duje-Cop 20 CRO FW #> 576 /en/players/636eae97/Toni-Villa 19 ESP LW #> 577 /en/players/418f8f61/Michel 21 ESP FW #> 578 /en/players/1512328c/Keko 24 ESP RW #> 579 /en/players/d3298c99/Daniele-Verde 11 ITA RM,RW #> 580 /en/players/7c388b20/Oscar-Plano 10 ESP AM,LM #> 581 /en/players/036bba5f/Ruben-Alcaraz 14 ESP DM,CM #> 582 /en/players/c93231dc/Anuar 23 MAR DM,CM #> 583 /en/players/e29d1111/Nacho 22 ESP LB #> 584 /en/players/41b3069f/Fernando-Calero 5 ESP CB #> 585 /en/players/72b07a9c/Kiko-Olivas 4 ESP CB #> 586 /en/players/933e8c8a/Javi-Moyano 17 ESP RB #> 587 /en/players/8fae77ea/Jordi-Masip 1 ESP GK #> 588 /en/players/5ceba7fc/Karl-Toko-Ekambi 17 CMR FW,RM #> 589 /en/players/7eb97a8e/Nicola-Sansone 10 ITA RM #> 590 /en/players/81f0781e/Gerard-Moreno 7 ESP FW #> 591 /en/players/963829d0/Manu-Trigueros 14 ESP AM,CM #> 592 /en/players/82927de4/Pablo-Fornals 8 ESP LM #> 593 /en/players/e2e9c250/Santi-Cazorla 19 ESP RM,CM #> 594 /en/players/ad6295d4/Miguel-Layun 24 MEX CM #> 595 /en/players/958bba56/Santiago-Caseres 5 ARG DM #> 596 /en/players/09a9e921/Carlos-Bacca 9 COL FW #> 597 /en/players/63f04c6c/Alfonso-Pedraza 16 ESP LB #> 598 /en/players/b3dc6eca/Victor-Ruiz 6 ESP CB #> 599 /en/players/42dcf26d/Alvaro-Gonzalez 3 ESP CB #> 600 /en/players/fb5d47b3/Mario-Gaspar 2 ESP RB #> 601 /en/players/9f0ea33f/Sergio-Asenjo 1 ESP GK #> 602 /en/players/220c11f1/Cristhian-Stuani 7 URU FW #> 603 /en/players/e7f4603c/Borja-Garcia 10 ESP LW,AM #> 604 /en/players/59d93937/Patrick-Roberts 17 ENG AM #> 605 /en/players/38699c72/Anthony-Lozano 19 HON RW #> 606 /en/players/a10361d2/Aleix-Garcia 23 ESP AM #> 607 /en/players/5890cef1/Aday 11 ESP LM,WB #> 608 /en/players/4db76f57/Marc-Muniesa 20 ESP WB #> 609 /en/players/a25250f8/Alex-Granell 6 ESP CM #> 610 /en/players/29b61deb/Pere-Pons 8 ESP CM #> 611 /en/players/27d0a506/Pedro-Porro 29 ESP RM,WB #> 612 /en/players/1633fc8a/Juanpe 15 ESP CB #> 613 /en/players/4242011c/Bernardo-Espinosa 2 COL CB #> 614 /en/players/ba71d071/Pedro-Alcala 5 ESP CB #> 615 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK #> 616 /en/players/b92b456a/Marc-Cardona 7 ESP FW #> 617 /en/players/c4b8bcf4/Charles 19 BRA FW #> 618 /en/players/bb4b1242/Sergi-Enrich 9 ESP FW #> 619 /en/players/335039a2/Pere-Milla 22 ESP LM #> 620 /en/players/7329018e/Papakouli-Diop 8 SEN CM #> 621 /en/players/88d91621/Sergio-Alvarez 6 ESP CM #> 622 /en/players/c90977db/Fabian-Orellana 14 CHI RM #> 623 /en/players/2a0c8ba4/Joan-Jordan 24 ESP RM #> 624 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP CB,LB #> 625 /en/players/697295b1/Pedro-Bigas 3 ESP CB #> 626 /en/players/3024e383/Jose-Angel 15 ESP LB #> 627 /en/players/a8fbae1d/Paulo-Oliveira 12 POR CB #> 628 /en/players/1f079188/Ruben-Pena 11 ESP RB #> 629 /en/players/ac295d9e/Marko-Dmitrovic 1 SRB GK #> 630 /en/players/d87e2cae/Willian-Jose 12 BRA FW #> 631 /en/players/debc6b55/Jon-Bautista 21 ESP FW #> 632 /en/players/84399660/Juanmi 7 ESP FW #> 633 /en/players/d9bda115/David-Zurutuza 17 ESP CM,FW,LM #> 634 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP LM,FW #> 635 /en/players/5c7845f6/Igor-Zubeldia 5 ESP CM #> 636 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP CM #> 637 /en/players/ddd5348b/Martin-Merquelanz 16 ESP LM,CM #> 638 /en/players/7958dc65/Luca-Sangalli 23 ESP RM #> 639 /en/players/d4c9725f/Theo-Hernandez 19 FRA LB #> 640 /en/players/5d311e8d/Hector-Moreno 6 MEX CB #> 641 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP CB #> 642 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP RB #> 643 /en/players/625c144a/Geronimo-Rulli 1 ARG GK #> 644 /en/players/4c2e9442/Maxi-Gomez 9 URU FW #> 645 /en/players/fd9c4805/Pione-Sisto 11 DEN LW #> 646 /en/players/e49ce451/Okay-Yokuslu 5 TUR LW #> 647 /en/players/7dcf86f6/Iago-Aspas 10 ESP RW #> 648 /en/players/b0c71810/Sofiane-Boufal 19 MAR RW #> 649 /en/players/b18a3023/Junior-Alonso 25 PAR LM #> 650 /en/players/ed5c5fa3/Fran-Beltran 8 ESP CM #> 651 /en/players/e1cbb531/Stanislav-Lobotka 14 SVK CM #> 652 /en/players/c9e39d91/Brais-Mendez 23 ESP CM #> 653 /en/players/cb574619/Hugo-Mallo 2 ESP RM #> 654 /en/players/27a013f7/Nestor-Araujo 4 MEX CB #> 655 /en/players/92b4a127/Gustavo-Cabral 22 ARG CB #> 656 /en/players/51e3954c/Facundo-Roncaglia 24 ARG CB #> 657 /en/players/8875b8c9/Sergio-Alvarez 1 ESP GK #> 658 /en/players/df69b544/Antoine-Griezmann 7 FRA FW,RM,AM,LM #> 659 /en/players/a190d597/Diego-Costa 19 ESP FW #> 660 /en/players/55126f3b/Koke 6 ESP LM,CM,DM #> 661 /en/players/529f49ab/Thomas-Partey 5 GHA CM #> 662 /en/players/4dbd0916/Thomas-Lemar 11 FRA LM,CM #> 663 /en/players/c14bc029/Saul-Niguez 8 ESP CM,CB #> 664 /en/players/01eb744d/Angel-Correa 10 ARG RM #> 665 /en/players/d4931a5a/Nikola-Kalinic 9 CRO FW #> 666 /en/players/e4ed2628/Filipe-Luis 3 BRA LB #> 667 /en/players/fc4f85b1/Diego-Godin 2 URU CB #> 668 /en/players/f0da930c/Jose-Maria-Gimenez 24 URU CB #> 669 /en/players/fdd60087/Santiago-Arias 4 COL RB #> 670 /en/players/f6ac68c1/Stefan-Savic 15 MNE RB #> 671 /en/players/ee8508c0/Jan-Oblak 13 SVN GK #> 672 /en/players/70d74ece/Karim-Benzema 9 FRA FW #> 673 /en/players/45af8a54/Marco-Asensio 20 ESP LW #> 674 /en/players/c0617e2b/Dani-Ceballos 24 ESP LW #> 675 /en/players/a58bb1e1/Gareth-Bale 11 WAL RW #> 676 /en/players/fd51b456/Lucas-Vazquez 17 ESP RW #> 677 /en/players/6ce1f46f/Toni-Kroos 8 GER LM #> 678 /en/players/4d224fe8/Casemiro 14 BRA CM #> 679 /en/players/6025fab1/Luka-Modric 10 CRO RM #> 680 /en/players/a0b4bb3e/Isco 22 ESP RM #> 681 /en/players/603116a7/Marcelo 12 BRA LB #> 682 /en/players/08511d65/Sergio-Ramos 4 ESP CB #> 683 /en/players/9f8e9423/Raphael-Varane 5 FRA CB #> 684 /en/players/4958bfb2/Dani-Carvajal 2 ESP RB #> 685 /en/players/1840e36d/Thibaut-Courtois 25 BEL GK #> 686 /en/players/8f898ba8/Guido-Carrillo 9 ARG FW #> 687 /en/players/3cb6f224/Michael-Santos 20 URU LM,FW,LW #> 688 /en/players/d1491e00/Diego-Rolan 4 URU LM #> 689 /en/players/37f96552/Nabil-El-Zhar 10 MAR LM,RW,RM #> 690 /en/players/04e17fd5/Youssef-En-Nesyri 26 MAR RM #> 691 /en/players/ac454a4f/Gerard-Gumbau 6 ESP CM #> 692 /en/players/3c7bc9bd/Ruben-Perez 21 ESP CM #> 693 /en/players/aec0fb6f/Javier-Eraso 17 ESP RM,CM,FW #> 694 /en/players/b0fce72c/Mikel-Vesga 23 ESP FW #> 695 /en/players/f2308b33/Jonathan-Silva 5 ARG LB #> 696 /en/players/92d38e6c/Dimitris-Siovas 22 GRE CB #> 697 /en/players/f3112790/Unai-Bustinza 3 ESP CB #> 698 /en/players/9ba48d64/Juanfran 2 ESP RB #> 699 /en/players/75751c99/Ivan-Cuellar 1 ESP GK #> 700 /en/players/0ae4e09a/Roger-Marti 9 ESP FW #> 701 /en/players/2e23c66b/Emmanuel-Boateng 21 GHA FW #> 702 /en/players/525f9bf4/Raphael-Dwamena 20 GHA FW #> 703 /en/players/cac2537b/Enis-Bardhi 10 MKD LM #> 704 /en/players/61220da2/Jose-Campana 24 ESP CM #> 705 /en/players/51c30111/Sanjin-Prcic 8 BIH CM #> 706 /en/players/9038c2a1/Jason 23 ESP CM #> 707 /en/players/4a478107/Jose-Luis-Morales 11 ESP RM #> 708 /en/players/d4ef9ac5/Tono 3 ESP LB #> 709 /en/players/7f203b54/Chema 6 ESP CB #> 710 /en/players/474ecac8/Sergio-Postigo 15 ESP CB #> 711 /en/players/c00097d2/Rober 4 ESP CB #> 712 /en/players/6d8f8441/Coke 12 ESP RB #> 713 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK #> 714 /en/players/42276181/Kevin-Gameiro 9 FRA FW #> 715 /en/players/2973d8ff/Michy-Batshuayi 23 BEL FW #> 716 /en/players/1fb1c435/Rodrigo 19 ESP FW #> 717 /en/players/0ac94a23/Denis-Cheryshev 11 RUS LM #> 718 /en/players/9e1035f8/Ferran-Torres 20 ESP LM #> 719 /en/players/d83bbc54/Daniel-Wass 18 DEN CM #> 720 /en/players/7460ca0d/Daniel-Parejo 10 ESP CM #> 721 /en/players/fed17f5a/Carlos-Soler 8 ESP RM #> 722 /en/players/0b90bb97/Santi-Mina 22 ESP RM #> 723 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP LB #> 724 /en/players/d2110326/Mouctar-Diakhaby 12 GUI CB #> 725 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA CB #> 726 /en/players/32c0491f/Cristiano-Piccini 21 ITA RB #> 727 /en/players/a9dc785c/Neto 13 BRA GK #> 728 /en/players/19b776e9/Ruben-Sobrino 7 ESP FW #> 729 /en/players/8c44e37b/Borja-Baston 18 ESP FW #> 730 /en/players/99bebd12/John-Guidetti 10 SWE FW #> 731 /en/players/244f57b9/Jony 23 ESP LM #> 732 /en/players/b7f2edff/Adrian-Marin 17 ESP LM #> 733 /en/players/05a4465d/Manu-Garcia 19 ESP CM #> 734 /en/players/999908af/Wakaso 22 GHA CM #> 735 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RM #> 736 /en/players/8db394aa/Ximo-Navarro 15 ESP RM #> 737 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB #> 738 /en/players/d9764034/Guillermo-Maripan 6 CHI CB #> 739 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB #> 740 /en/players/355c883a/Martin-Agirregabiria 21 ESP RB #> 741 /en/players/97852360/Fernando-Pacheco 1 ESP GK #> 742 /en/players/75645f0e/Borja-Iglesias 7 ESP FW #> 743 /en/players/2bee98fd/Sergio-Garcia 9 ESP LW,FW #> 744 /en/players/35f6db55/Leo-Baptistao 11 BRA RW,RM #> 745 /en/players/070a3904/Sergi-Darder 10 ESP LM,CM #> 746 /en/players/da27e268/Marc-Roca 21 ESP CM #> 747 /en/players/48e89655/Pablo-Piatti 19 ARG LM,CM #> 748 /en/players/1b17ed86/Esteban-Granero 23 ESP RM #> 749 /en/players/379652be/Oscar-Melendo 14 ESP RM,CM #> 750 /en/players/bad38a94/Didac-Vila 12 ESP LB #> 751 /en/players/555f3a0b/Mario-Hermoso 22 ESP CB #> 752 /en/players/f03f284b/David-Lopez 15 ESP CB #> 753 /en/players/ffad706e/Javi-Lopez 16 ESP RB #> 754 /en/players/e1cea3f7/Hernan-Perez 17 PAR RB #> 755 /en/players/73683fa9/Diego-Lopez 13 ESP GK #> 756 /en/players/a6154613/Luis-Suarez 9 URU FW #> 757 /en/players/b19db005/Ousmane-Dembele 11 FRA LW,RM #> 758 /en/players/d70ce98e/Lionel-Messi 10 ARG RW,FW #> 759 /en/players/0ef89a37/Philippe-Coutinho 7 BRA LM #> 760 /en/players/5ab0ea87/Sergio-Busquets 5 ESP CM #> 761 /en/players/48b3dd60/Arthur-Melo 8 BRA CM #> 762 /en/players/89f951b5/Ivan-Rakitic 4 CRO RM #> 763 /en/players/67cdbc0e/Arturo-Vidal 22 CHI CM,RM #> 764 /en/players/4601e194/Jordi-Alba 18 ESP LB #> 765 /en/players/3eed9821/Samuel-Umtiti 23 FRA CB #> 766 /en/players/4f28a6ff/Clement-Lenglet 15 FRA CB #> 767 /en/players/adfc9123/Gerard-Pique 3 ESP CB #> 768 /en/players/335fa267/Sergi-Roberto 20 ESP RB #> 769 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER GK #> 770 /en/players/71b47ab9/Cucho 9 COL FW #> 771 /en/players/253a06b9/Ezequiel-Avila 19 ARG FW #> 772 /en/players/1163de29/Samuele-Longo 12 ITA FW #> 773 /en/players/8d2ad5c0/Serdar-Gurler 21 TUR LM,FW #> 774 /en/players/5a626448/Moi-Gomez 6 ESP LM,FW #> 775 /en/players/3902e91b/Gonzalo-Melero 8 ESP CM #> 776 /en/players/74e0a984/Damian-Musto 23 ARG CM #> 777 /en/players/36d5469c/Alex-Gallar 11 ESP RM #> 778 /en/players/c904f3d5/Ruben-Semedo 4 POR CB #> 779 /en/players/a7f00c8c/Luisinho 16 POR LB #> 780 /en/players/4a895384/Xabier-Etxeita 3 ESP CB #> 781 /en/players/978cd030/Jorge-Pulido 14 ESP CB,RB #> 782 /en/players/7f4c7c9f/Jorge-Miramon 24 ESP RB,RM #> 783 /en/players/c0b1a6da/Axel-Werner 1 ARG GK #> 784 /en/players/3aa4a3be/Loren-Moron 16 ESP FW #> 785 /en/players/0a447501/Antonio-Sanabria 9 PAR FW #> 786 /en/players/61bd33d0/Takashi-Inui 8 JPN AM #> 787 /en/players/a6de370d/Sergio-Canales 6 ESP AM #> 788 /en/players/dee86451/William-Carvalho 14 POR CM #> 789 /en/players/4c5b14d2/Joaquin 17 ESP AM #> 790 /en/players/ef322658/Andres-Guardado 18 MEX CM #> 791 /en/players/24f59bb2/Junior-Firpo 20 ESP WB #> 792 /en/players/72a99e38/Cristian-Tello 11 ESP WB #> 793 /en/players/89151b16/Zouhair-Feddal 4 MAR CB #> 794 /en/players/b742cc0d/Marc-Bartra 5 ESP CB #> 795 /en/players/b14d0c5d/Sidnei 12 BRA CB #> 796 /en/players/fbd6378b/Aissa-Mandi 23 ALG CB #> 797 /en/players/20b9f052/Pau-Lopez 13 ESP GK #> 798 /en/players/3effaa34/Andre-Silva 12 POR FW #> 799 /en/players/467bae22/Franco-Vazquez 22 ARG AM #> 800 /en/players/b8c1de25/Maxime-Gonalons 15 FRA DM,CM #> 801 /en/players/9744ff80/Pablo-Sarabia 17 ESP AM,DM,FW #> 802 /en/players/7c4243d4/Roque-Mesa 7 ESP CM,DM #> 803 /en/players/fa937f7a/Ever-Banega 10 ARG CM,DM #> 804 /en/players/2b15a82a/Guilherme-Arana 23 BRA WB #> 805 /en/players/04965583/Aleix-Vidal 11 ESP WB #> 806 /en/players/3f10bd22/Jesus-Navas 16 ESP WB #> 807 /en/players/bc6f5f06/Sergi-Gomez 3 ESP CB #> 808 /en/players/8b8a56ce/Simon-Kjaer 4 DEN CB #> 809 /en/players/b182a240/Quincy-Promes 21 NED AM,CB #> 810 /en/players/bf97c188/Gabriel-Mercado 25 ARG CB #> 811 /en/players/7b456af7/Tomas-Vaclik 1 CZE GK #> 812 /en/players/1163de29/Samuele-Longo 12 ITA FW #> 813 /en/players/71b47ab9/Cucho 9 COL FW #> 814 /en/players/253a06b9/Ezequiel-Avila 19 ARG FW #> 815 /en/players/5a626448/Moi-Gomez 6 ESP LM #> 816 /en/players/8970907e/David-Ferreiro 7 ESP LM #> 817 /en/players/3902e91b/Gonzalo-Melero 8 ESP CM #> 818 /en/players/74e0a984/Damian-Musto 23 ARG CM #> 819 /en/players/8d2ad5c0/Serdar-Gurler 21 TUR RM #> 820 /en/players/36d5469c/Alex-Gallar 11 ESP RM #> 821 /en/players/a7f00c8c/Luisinho 16 POR LB #> 822 /en/players/c904f3d5/Ruben-Semedo 4 POR CB #> 823 /en/players/978cd030/Jorge-Pulido 14 ESP CB #> 824 /en/players/7f4c7c9f/Jorge-Miramon 24 ESP RB #> 825 /en/players/c0b1a6da/Axel-Werner 1 ARG GK #> 826 /en/players/02ef8778/Raul-de-Tomas 9 ESP FW #> 827 /en/players/46166b49/Alex-Alegria 15 ESP FW #> 828 /en/players/90bbd822/Alvaro-Garcia 18 ESP LW #> 829 /en/players/db8f0eba/Adri-Embarba 11 ESP LW #> 830 /en/players/5b1bf5e3/Gael-Kakuta 10 COD RW #> 831 /en/players/d8712bf9/Bebe 14 CPV RW #> 832 /en/players/fc647b34/Oscar-Trejo 8 ARG AM #> 833 /en/players/b86fe156/Giannelli-Imbula 12 COD DM #> 834 /en/players/7b309e55/Gorka-Elustondo 6 ESP DM #> 835 /en/players/16e9d0ea/Alex-Moreno 7 ESP LB #> 836 /en/players/d70a2141/Jordi-Amat 16 IDN CB #> 837 /en/players/1f54ed90/Abdoulaye-Ba 21 SEN CB #> 838 /en/players/cacadf4f/Luis-Advincula 17 PER RB #> 839 /en/players/17d9e354/Alberto-Garcia 1 ESP GK #> 840 /en/players/a190d597/Diego-Costa 19 ESP FW #> 841 /en/players/4dbd0916/Thomas-Lemar 11 FRA LM #> 842 /en/players/01eb744d/Angel-Correa 10 ARG RM,LM #> 843 /en/players/c14bc029/Saul-Niguez 8 ESP CM #> 844 /en/players/55126f3b/Koke 6 ESP CM,RM #> 845 /en/players/df69b544/Antoine-Griezmann 7 FRA RM,FW,LM #> 846 /en/players/6434f10d/Rodri 14 ESP DM,CM #> 847 /en/players/bc39454c/Borja-Garces 32 ESP FW,CM #> 848 /en/players/e4ed2628/Filipe-Luis 3 BRA LB #> 849 /en/players/fc4f85b1/Diego-Godin 2 URU CB #> 850 /en/players/f0da930c/Jose-Maria-Gimenez 24 URU CB #> 851 /en/players/cfd8d664/Juanfran 20 ESP RB #> 852 /en/players/ee8508c0/Jan-Oblak 13 SVN GK #> 853 /en/players/c4b8bcf4/Charles 19 BRA FW #> 854 /en/players/bb4b1242/Sergi-Enrich 9 ESP FW #> 855 /en/players/335039a2/Pere-Milla 22 ESP LW #> 856 /en/players/3f79a1c8/Gonzalo-Escalante 5 ARG AM #> 857 /en/players/9ab48bde/Pablo-de-Blasis 16 ARG RW,LW #> 858 /en/players/2a0c8ba4/Joan-Jordan 24 ESP AM,RW #> 859 /en/players/88d91621/Sergio-Alvarez 6 ESP DM #> 860 /en/players/7329018e/Papakouli-Diop 8 SEN DM #> 861 /en/players/b92b456a/Marc-Cardona 7 ESP DM #> 862 /en/players/3024e383/Jose-Angel 15 ESP LB #> 863 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP CB #> 864 /en/players/a8fbae1d/Paulo-Oliveira 12 POR CB #> 865 /en/players/1f079188/Ruben-Pena 11 ESP RB #> 866 /en/players/ac295d9e/Marko-Dmitrovic 1 SRB GK #> 867 /en/players/84399660/Juanmi 7 ESP FW #> 868 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP FW,RM #> 869 /en/players/2306bfde/Ruben-Pardo 14 ESP AM #> 870 /en/players/7958dc65/Luca-Sangalli 23 ESP AM #> 871 /en/players/d9bda115/David-Zurutuza 17 ESP LM #> 872 /en/players/debc6b55/Jon-Bautista 21 ESP FW #> 873 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP RM,LM #> 874 /en/players/d080ed5e/Mikel-Merino 8 ESP LM #> 875 /en/players/5c7845f6/Igor-Zubeldia 5 ESP DM #> 876 /en/players/d4c9725f/Theo-Hernandez 19 FRA LB #> 877 /en/players/5d311e8d/Hector-Moreno 6 MEX CB #> 878 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP CB #> 879 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP RB #> 880 /en/players/625c144a/Geronimo-Rulli 1 ARG GK #> 881 /en/players/a6154613/Luis-Suarez 9 URU FW #> 882 /en/players/b19db005/Ousmane-Dembele 11 FRA LW #> 883 /en/players/67cdbc0e/Arturo-Vidal 22 CHI LM,LW #> 884 /en/players/d70ce98e/Lionel-Messi 10 ARG RW #> 885 /en/players/0c2ac3cb/Rafinha 12 BRA LM,RM #> 886 /en/players/5ab0ea87/Sergio-Busquets 5 ESP RM #> 887 /en/players/89f951b5/Ivan-Rakitic 4 CRO CM #> 888 /en/players/335fa267/Sergi-Roberto 20 ESP RB,RM #> 889 /en/players/4601e194/Jordi-Alba 18 ESP LB #> 890 /en/players/3eed9821/Samuel-Umtiti 23 FRA CB #> 891 /en/players/adfc9123/Gerard-Pique 3 ESP CB #> 892 /en/players/d04b94db/Nelson-Semedo 2 POR RB #> 893 /en/players/0ef89a37/Philippe-Coutinho 7 BRA LM,LW #> 894 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER GK #> 895 /en/players/1fb1c435/Rodrigo 19 ESP FW #> 896 /en/players/42276181/Kevin-Gameiro 9 FRA FW #> 897 /en/players/0ac94a23/Denis-Cheryshev 11 RUS LM #> 898 /en/players/2973d8ff/Michy-Batshuayi 23 BEL LM #> 899 /en/players/cce181df/Geoffrey-Kondogbia 6 CTA CM #> 900 /en/players/d83bbc54/Daniel-Wass 18 DEN CM #> 901 /en/players/7460ca0d/Daniel-Parejo 10 ESP CM #> 902 /en/players/9e1035f8/Ferran-Torres 20 ESP RM #> 903 /en/players/e6bc67d7/Goncalo-Guedes 7 POR RM #> 904 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP LB #> 905 /en/players/d2110326/Mouctar-Diakhaby 12 GUI CB #> 906 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA CB #> 907 /en/players/32c0491f/Cristiano-Piccini 21 ITA RB #> 908 /en/players/c9cb972b/Jaume-Domenech 1 ESP GK #> 909 /en/players/0a447501/Antonio-Sanabria 9 PAR FW #> 910 /en/players/0a0cc13c/Sergio-Leon 7 ESP FW #> 911 /en/players/61bd33d0/Takashi-Inui 8 JPN AM #> 912 /en/players/4c5b14d2/Joaquin 17 ESP AM #> 913 /en/players/1001ae82/Ryad-Boudebouz 10 ALG AM #> 914 /en/players/d7553721/Giovani-Lo-Celso 21 ARG CM #> 915 /en/players/ef322658/Andres-Guardado 18 MEX CM #> 916 /en/players/a6de370d/Sergio-Canales 6 ESP CM,AM #> 917 /en/players/24f59bb2/Junior-Firpo 20 ESP WB #> 918 /en/players/59d53e8a/Francis-Guerrero 2 ESP WB #> 919 /en/players/b14d0c5d/Sidnei 12 BRA CB #> 920 /en/players/b742cc0d/Marc-Bartra 5 ESP CB #> 921 /en/players/fbd6378b/Aissa-Mandi 23 ALG CB #> 922 /en/players/20b9f052/Pau-Lopez 13 ESP GK #> 923 /en/players/6a99e0b1/Inaki-Williams 9 GHA FW #> 924 /en/players/003a5c72/Mikel-San-Jose 6 ESP DM,FW #> 925 /en/players/c05dfb74/Iker-Muniain 10 ESP LW #> 926 /en/players/37f1cf47/Ander-Capa 21 ESP RW #> 927 /en/players/6fd1ba62/Markel-Susaeta 14 ESP RW,LW #> 928 /en/players/b418dbd4/Raul-Garcia 22 ESP AM,FW #> 929 /en/players/b037bd4f/Benat-Etxebarria 7 ESP DM #> 930 /en/players/def69cd0/Mikel-Rico 17 ESP AM #> 931 /en/players/240d3a0b/Dani-Garcia 16 ESP DM #> 932 /en/players/b6e50615/Yuri-Berchiche 12 ESP LB #> 933 /en/players/3fc45c73/Inigo-Martinez 4 ESP CB #> 934 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP CB #> 935 /en/players/9f323c71/Oscar-de-Marcos 18 ESP RB #> 936 /en/players/5dcf3e90/Unai-Simon 25 ESP GK #> 937 /en/players/70d74ece/Karim-Benzema 9 FRA FW #> 938 /en/players/45af8a54/Marco-Asensio 20 ESP LW #> 939 /en/players/a58bb1e1/Gareth-Bale 11 WAL RW #> 940 /en/players/fd51b456/Lucas-Vazquez 17 ESP RW #> 941 /en/players/c0617e2b/Dani-Ceballos 24 ESP LM #> 942 /en/players/4d224fe8/Casemiro 14 BRA CM #> 943 /en/players/6ce1f46f/Toni-Kroos 8 GER LM,CM #> 944 /en/players/6025fab1/Luka-Modric 10 CRO RM #> 945 /en/players/a0b4bb3e/Isco 22 ESP RM #> 946 /en/players/603116a7/Marcelo 12 BRA LB #> 947 /en/players/08511d65/Sergio-Ramos 4 ESP CB #> 948 /en/players/9f8e9423/Raphael-Varane 5 FRA CB #> 949 /en/players/4958bfb2/Dani-Carvajal 2 ESP RB #> 950 /en/players/1840e36d/Thibaut-Courtois 25 BEL GK #> 951 /en/players/8f898ba8/Guido-Carrillo 9 ARG FW #> 952 /en/players/d1491e00/Diego-Rolan 4 URU LW #> 953 /en/players/19709006/Oscar-Rodriguez-Arnaiz 27 ESP LW #> 954 /en/players/37f96552/Nabil-El-Zhar 10 MAR RW #> 955 /en/players/aec0fb6f/Javier-Eraso 17 ESP AM #> 956 /en/players/3cb6f224/Michael-Santos 20 URU AM #> 957 /en/players/3c7bc9bd/Ruben-Perez 21 ESP DM #> 958 /en/players/ac454a4f/Gerard-Gumbau 6 ESP DM #> 959 /en/players/f2308b33/Jonathan-Silva 5 ARG LB #> 960 /en/players/92d38e6c/Dimitris-Siovas 22 GRE CB #> 961 /en/players/f3112790/Unai-Bustinza 3 ESP CB #> 962 /en/players/97572117/Allan-Nyom 12 CMR RB #> 963 /en/players/9ba48d64/Juanfran 2 ESP RB #> 964 /en/players/75751c99/Ivan-Cuellar 1 ESP GK #> 965 /en/players/81f0781e/Gerard-Moreno 7 ESP FW #> 966 /en/players/5ceba7fc/Karl-Toko-Ekambi 17 CMR FW #> 967 /en/players/09a9e921/Carlos-Bacca 9 COL FW #> 968 /en/players/ad6295d4/Miguel-Layun 24 MEX LM #> 969 /en/players/a0255c67/Manu-Morlanes 28 ESP CM #> 970 /en/players/000b3da6/Manuel-Iturra 20 CHI CM #> 971 /en/players/963829d0/Manu-Trigueros 14 ESP CM #> 972 /en/players/ea6a7ab4/Dani-Raba 22 ESP RM #> 973 /en/players/82927de4/Pablo-Fornals 8 ESP RM #> 974 /en/players/808d48f3/Jaume-Costa 11 ESP LB #> 975 /en/players/b3dc6eca/Victor-Ruiz 6 ESP CB #> 976 /en/players/42dcf26d/Alvaro-Gonzalez 3 ESP CB #> 977 /en/players/fb5d47b3/Mario-Gaspar 2 ESP RB #> 978 /en/players/9f0ea33f/Sergio-Asenjo 1 ESP GK #> 979 /en/players/75645f0e/Borja-Iglesias 7 ESP FW #> 980 /en/players/e1cea3f7/Hernan-Perez 17 PAR RW #> 981 /en/players/2bee98fd/Sergio-Garcia 9 ESP LW #> 982 /en/players/48e89655/Pablo-Piatti 19 ARG LW #> 983 /en/players/35f6db55/Leo-Baptistao 11 BRA RW,FW #> 984 /en/players/1b17ed86/Esteban-Granero 23 ESP LM #> 985 /en/players/da27e268/Marc-Roca 21 ESP CM #> 986 /en/players/070a3904/Sergi-Darder 10 ESP RM #> 987 /en/players/ad4d0985/Victor-Sanchez 4 ESP RM #> 988 /en/players/bad38a94/Didac-Vila 12 ESP LB #> 989 /en/players/555f3a0b/Mario-Hermoso 22 ESP CB #> 990 /en/players/f03f284b/David-Lopez 15 ESP CB #> 991 /en/players/ffad706e/Javi-Lopez 16 ESP RB #> 992 /en/players/73683fa9/Diego-Lopez 13 ESP GK #> 993 /en/players/2e23c66b/Emmanuel-Boateng 21 GHA FW #> 994 /en/players/64e8ed6d/Borja-Mayoral 2 ESP FW #> 995 /en/players/0ae4e09a/Roger-Marti 9 ESP FW #> 996 /en/players/9038c2a1/Jason 23 ESP LM #> 997 /en/players/ecd8c01e/Ruben-Rochina 16 ESP LM #> 998 /en/players/cac2537b/Enis-Bardhi 10 MKD CM #> 999 /en/players/61220da2/Jose-Campana 24 ESP CM #> 1000 /en/players/4a478107/Jose-Luis-Morales 11 ESP RM #> 1001 /en/players/ed239245/Antonio-Luna 22 ESP LB #> 1002 /en/players/7f203b54/Chema 6 ESP CB #> 1003 /en/players/474ecac8/Sergio-Postigo 15 ESP CB #> 1004 /en/players/c00097d2/Rober 4 ESP CB #> 1005 /en/players/a60823a4/Pedro-Lopez-Munoz 19 ESP RB #> 1006 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK #> 1007 /en/players/f8eca1b6/Enes-Unal 9 TUR FW #> 1008 /en/players/8b0b02c9/Duje-Cop 20 CRO FW #> 1009 /en/players/636eae97/Toni-Villa 19 ESP LW,AM #> 1010 /en/players/1512328c/Keko 24 ESP RW #> 1011 /en/players/d2fa73e7/Ivi 7 ESP LW #> 1012 /en/players/7c388b20/Oscar-Plano 10 ESP AM,RW #> 1013 /en/players/9127f9ce/Borja-Fernandez 8 ESP DM #> 1014 /en/players/c93231dc/Anuar 23 MAR DM #> 1015 /en/players/418f8f61/Michel 21 ESP DM #> 1016 /en/players/e29d1111/Nacho 22 ESP LB #> 1017 /en/players/41b3069f/Fernando-Calero 5 ESP CB #> 1018 /en/players/72b07a9c/Kiko-Olivas 4 ESP CB #> 1019 /en/players/933e8c8a/Javi-Moyano 17 ESP RB #> 1020 /en/players/8fae77ea/Jordi-Masip 1 ESP GK #> 1021 /en/players/6922f806/Jonathan-Calleri 12 ARG FW #> 1022 /en/players/45e304c8/Burgui 14 ESP FW #> 1023 /en/players/99bebd12/John-Guidetti 10 SWE FW #> 1024 /en/players/e3993b65/Patrick-Twumasi 24 GHA FW #> 1025 /en/players/244f57b9/Jony 23 ESP LM #> 1026 /en/players/999908af/Wakaso 22 GHA CM #> 1027 /en/players/4accb7e0/Darko-Brasanac 20 SRB CM #> 1028 /en/players/05a4465d/Manu-Garcia 19 ESP CM #> 1029 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RM #> 1030 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB #> 1031 /en/players/8db394aa/Ximo-Navarro 15 ESP CB #> 1032 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB #> 1033 /en/players/355c883a/Martin-Agirregabiria 21 ESP RB #> 1034 /en/players/97852360/Fernando-Pacheco 1 ESP GK #> 1035 /en/players/3effaa34/Andre-Silva 12 POR FW #> 1036 /en/players/b2d0ec1b/Nolito 8 ESP LW #> 1037 /en/players/467bae22/Franco-Vazquez 22 ARG CM #> 1038 /en/players/9744ff80/Pablo-Sarabia 17 ESP RW #> 1039 /en/players/04965583/Aleix-Vidal 11 ESP LM #> 1040 /en/players/b182a240/Quincy-Promes 21 NED LM #> 1041 /en/players/fa937f7a/Ever-Banega 10 ARG CM #> 1042 /en/players/7c4243d4/Roque-Mesa 7 ESP CM #> 1043 /en/players/942b4f90/Wissam-Ben-Yedder 9 FRA LW #> 1044 /en/players/3f10bd22/Jesus-Navas 16 ESP RM #> 1045 /en/players/bc6f5f06/Sergi-Gomez 3 ESP CB #> 1046 /en/players/8b8a56ce/Simon-Kjaer 4 DEN CB #> 1047 /en/players/1232e1dc/Joris-Gnagnon 24 FRA CB #> 1048 /en/players/7b456af7/Tomas-Vaclik 1 CZE GK #> 1049 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW #> 1050 /en/players/d2ac648c/Gaku-Shibasaki 10 JPN FW #> 1051 /en/players/43f71e77/Jorge-Molina 19 ESP FW #> 1052 /en/players/f3b1d9a2/Amath 11 SEN LM #> 1053 /en/players/45e17712/Dimitri-Foulquier 24 FRA LM #> 1054 /en/players/a4971d84/Djene 2 TOG CM #> 1055 /en/players/3c05c659/Sebastian-Cristoforo 15 URU CM #> 1056 /en/players/00b28772/Nemanja-Maksimovic 20 SRB CM #> 1057 /en/players/8e010ff4/Francisco-Portillo 8 ESP RM #> 1058 /en/players/3e4f735d/Vitorino-Antunes 3 POR LB #> 1059 /en/players/69cbc8b6/Leandro-Cabrera 6 URU CB #> 1060 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB #> 1061 /en/players/ba5004e1/Damian-Suarez 22 URU RB #> 1062 /en/players/8f8c6934/David-Soria 13 ESP GK #> 1063 /en/players/220c11f1/Cristhian-Stuani 7 URU FW #> 1064 /en/players/e7f4603c/Borja-Garcia 10 ESP AM #> 1065 /en/players/59d93937/Patrick-Roberts 17 ENG AM #> 1066 /en/players/1bda5842/Portu 9 ESP AM #> 1067 /en/players/a10361d2/Aleix-Garcia 23 ESP AM #> 1068 /en/players/6f7d826d/Douglas-Luiz 12 BRA CM #> 1069 /en/players/a25250f8/Alex-Granell 6 ESP CM #> 1070 /en/players/5890cef1/Aday 11 ESP WB #> 1071 /en/players/4db76f57/Marc-Muniesa 20 ESP WB #> 1072 /en/players/27d0a506/Pedro-Porro 29 ESP WB #> 1073 /en/players/1633fc8a/Juanpe 15 ESP CB #> 1074 /en/players/4242011c/Bernardo-Espinosa 2 COL CB #> 1075 /en/players/ba71d071/Pedro-Alcala 5 ESP CB #> 1076 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK #> 1077 /en/players/4c2e9442/Maxi-Gomez 9 URU FW #> 1078 /en/players/fd9c4805/Pione-Sisto 11 DEN AM,LM #> 1079 /en/players/7f8fb807/Dennis-Eckert 32 GER FW,LM #> 1080 /en/players/7dcf86f6/Iago-Aspas 10 ESP AM,FW,RM #> 1081 /en/players/e1cbb531/Stanislav-Lobotka 14 SVK CM #> 1082 /en/players/ed5c5fa3/Fran-Beltran 8 ESP CM #> 1083 /en/players/c9e39d91/Brais-Mendez 23 ESP CM #> 1084 /en/players/b18a3023/Junior-Alonso 25 PAR WB #> 1085 /en/players/b0c71810/Sofiane-Boufal 19 MAR RM,LM #> 1086 /en/players/cb574619/Hugo-Mallo 2 ESP RB,WB #> 1087 /en/players/27a013f7/Nestor-Araujo 4 MEX CB #> 1088 /en/players/92b4a127/Gustavo-Cabral 22 ARG CB #> 1089 /en/players/51e3954c/Facundo-Roncaglia 24 ARG LB,CB #> 1090 /en/players/8875b8c9/Sergio-Alvarez 1 ESP GK #> 1091 /en/players/71b47ab9/Cucho 9 COL FW #> 1092 /en/players/8970907e/David-Ferreiro 7 ESP LW,LM,LB #> 1093 /en/players/36d5469c/Alex-Gallar 11 ESP RW,RM,LM #> 1094 /en/players/5a626448/Moi-Gomez 6 ESP AM #> 1095 /en/players/1163de29/Samuele-Longo 12 ITA FW #> 1096 /en/players/3902e91b/Gonzalo-Melero 8 ESP DM,CM #> 1097 /en/players/74e0a984/Damian-Musto 23 ARG DM,CM,CB #> 1098 /en/players/a7f00c8c/Luisinho 16 POR LB #> 1099 /en/players/253a06b9/Ezequiel-Avila 19 ARG CM,LB #> 1100 /en/players/c904f3d5/Ruben-Semedo 4 POR CB #> 1101 /en/players/978cd030/Jorge-Pulido 14 ESP CB #> 1102 /en/players/8d2ad5c0/Serdar-Gurler 21 TUR RM #> 1103 /en/players/7f4c7c9f/Jorge-Miramon 24 ESP RB #> 1104 /en/players/c0b1a6da/Axel-Werner 1 ARG GK #> 1105 /en/players/debc6b55/Jon-Bautista 21 ESP FW #> 1106 /en/players/ad178594/Raul-Navas 22 ESP CB,FW #> 1107 /en/players/84399660/Juanmi 7 ESP LW #> 1108 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP RW,FW #> 1109 /en/players/f1bed920/Kevin-Rodrigues 20 POR FW #> 1110 /en/players/2306bfde/Ruben-Pardo 14 ESP LM #> 1111 /en/players/d9bda115/David-Zurutuza 17 ESP LM #> 1112 /en/players/5c7845f6/Igor-Zubeldia 5 ESP CM #> 1113 /en/players/d080ed5e/Mikel-Merino 8 ESP RM #> 1114 /en/players/d4c9725f/Theo-Hernandez 19 FRA LB #> 1115 /en/players/5d311e8d/Hector-Moreno 6 MEX CB,LB #> 1116 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP CB #> 1117 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP RB #> 1118 /en/players/625c144a/Geronimo-Rulli 1 ARG GK #> 1119 /en/players/02ef8778/Raul-de-Tomas 9 ESP FW #> 1120 /en/players/90bbd822/Alvaro-Garcia 18 ESP LM #> 1121 /en/players/db8f0eba/Adri-Embarba 11 ESP RM,LM #> 1122 /en/players/b86fe156/Giannelli-Imbula 12 COD CM,DM #> 1123 /en/players/fc647b34/Oscar-Trejo 8 ARG CM #> 1124 /en/players/46166b49/Alex-Alegria 15 ESP FW,CM #> 1125 /en/players/5b1bf5e3/Gael-Kakuta 10 COD RM,LM #> 1126 /en/players/7b309e55/Gorka-Elustondo 6 ESP CB,DM #> 1127 /en/players/5efb80d5/Emiliano-Velazquez 20 URU CB #> 1128 /en/players/16e9d0ea/Alex-Moreno 7 ESP LB #> 1129 /en/players/d70a2141/Jordi-Amat 16 IDN CB #> 1130 /en/players/1f54ed90/Abdoulaye-Ba 21 SEN CB #> 1131 /en/players/cacadf4f/Luis-Advincula 17 PER RB #> 1132 /en/players/17d9e354/Alberto-Garcia 1 ESP GK #> 1133 /en/players/99bebd12/John-Guidetti 10 SWE FW #> 1134 /en/players/19b776e9/Ruben-Sobrino 7 ESP FW #> 1135 /en/players/6922f806/Jonathan-Calleri 12 ARG FW #> 1136 /en/players/244f57b9/Jony 23 ESP LM #> 1137 /en/players/45e304c8/Burgui 14 ESP LM #> 1138 /en/players/999908af/Wakaso 22 GHA CM #> 1139 /en/players/4accb7e0/Darko-Brasanac 20 SRB CM #> 1140 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RM #> 1141 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB #> 1142 /en/players/355c883a/Martin-Agirregabiria 21 ESP LB #> 1143 /en/players/d9764034/Guillermo-Maripan 6 CHI CB #> 1144 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB #> 1145 /en/players/8db394aa/Ximo-Navarro 15 ESP RB #> 1146 /en/players/97852360/Fernando-Pacheco 1 ESP GK #> 1147 /en/players/e897d8ba/Kike 17 ESP FW #> 1148 /en/players/2a0c8ba4/Joan-Jordan 24 ESP FW #> 1149 /en/players/bb4b1242/Sergi-Enrich 9 ESP FW #> 1150 /en/players/9ab48bde/Pablo-de-Blasis 16 ARG LM #> 1151 /en/players/7329018e/Papakouli-Diop 8 SEN CM #> 1152 /en/players/3f79a1c8/Gonzalo-Escalante 5 ARG CM #> 1153 /en/players/ba5a9545/Pablo-Hervias 18 ESP RM #> 1154 /en/players/c90977db/Fabian-Orellana 14 CHI RM #> 1155 /en/players/3024e383/Jose-Angel 15 ESP LB #> 1156 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP LB #> 1157 /en/players/d2be40f2/Ivan-Ramis 4 ESP CB #> 1158 /en/players/a8fbae1d/Paulo-Oliveira 12 POR CB #> 1159 /en/players/1f079188/Ruben-Pena 11 ESP RB #> 1160 /en/players/ac295d9e/Marko-Dmitrovic 1 SRB GK #> 1161 /en/players/8f898ba8/Guido-Carrillo 9 ARG FW #> 1162 /en/players/3cb6f224/Michael-Santos 20 URU FW #> 1163 /en/players/04e17fd5/Youssef-En-Nesyri 26 MAR FW #> 1164 /en/players/d1491e00/Diego-Rolan 4 URU LM #> 1165 /en/players/19709006/Oscar-Rodriguez-Arnaiz 27 ESP LM #> 1166 /en/players/ac454a4f/Gerard-Gumbau 6 ESP CM #> 1167 /en/players/3c7bc9bd/Ruben-Perez 21 ESP CM #> 1168 /en/players/9ba48d64/Juanfran 2 ESP RM #> 1169 /en/players/37f96552/Nabil-El-Zhar 10 MAR RM #> 1170 /en/players/1a317a1b/Raul-Garcia 14 ESP LB #> 1171 /en/players/92d38e6c/Dimitris-Siovas 22 GRE CB #> 1172 /en/players/f3112790/Unai-Bustinza 3 ESP CB #> 1173 /en/players/97572117/Allan-Nyom 12 CMR RB #> 1174 /en/players/75751c99/Ivan-Cuellar 1 ESP GK #> 1175 /en/players/4c2e9442/Maxi-Gomez 9 URU FW #> 1176 /en/players/7dcf86f6/Iago-Aspas 10 ESP FW #> 1177 /en/players/b0c71810/Sofiane-Boufal 19 MAR LM #> 1178 /en/players/fd9c4805/Pione-Sisto 11 DEN LM #> 1179 /en/players/e1cbb531/Stanislav-Lobotka 14 SVK CM #> 1180 /en/players/e49ce451/Okay-Yokuslu 5 TUR CM #> 1181 /en/players/c9e39d91/Brais-Mendez 23 ESP RM #> 1182 /en/players/ed5c5fa3/Fran-Beltran 8 ESP RM #> 1183 /en/players/de7d40d6/David-Junca 17 ESP LB #> 1184 /en/players/b18a3023/Junior-Alonso 25 PAR LB #> 1185 /en/players/27a013f7/Nestor-Araujo 4 MEX CB #> 1186 /en/players/545e2f01/David-Costas 3 ESP CB #> 1187 /en/players/51e3954c/Facundo-Roncaglia 24 ARG RB #> 1188 /en/players/8875b8c9/Sergio-Alvarez 1 ESP GK #> 1189 /en/players/8b0b02c9/Duje-Cop 20 CRO FW #> 1190 /en/players/7c388b20/Oscar-Plano 10 ESP LM #> 1191 /en/players/036bba5f/Ruben-Alcaraz 14 ESP CM #> 1192 /en/players/418f8f61/Michel 21 ESP CM #> 1193 /en/players/1512328c/Keko 24 ESP RM #> 1194 /en/players/636eae97/Toni-Villa 19 ESP RM #> 1195 /en/players/9127f9ce/Borja-Fernandez 8 ESP DM #> 1196 /en/players/f8eca1b6/Enes-Unal 9 TUR DM #> 1197 /en/players/e29d1111/Nacho 22 ESP LB #> 1198 /en/players/41b3069f/Fernando-Calero 5 ESP CB #> 1199 /en/players/72b07a9c/Kiko-Olivas 4 ESP CB #> 1200 /en/players/933e8c8a/Javi-Moyano 17 ESP RB #> 1201 /en/players/25c72b36/Leonardo-Suarez 32 ARG RB #> 1202 /en/players/8fae77ea/Jordi-Masip 1 ESP GK #> 1203 /en/players/43f71e77/Jorge-Molina 19 ESP FW #> 1204 /en/players/32974271/Sergi-Guardiola 14 ESP LM,FW #> 1205 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW,LM #> 1206 /en/players/f3b1d9a2/Amath 11 SEN LM #> 1207 /en/players/3d7e48ce/Ivan-Alejo 23 ESP RM #> 1208 /en/players/a4971d84/Djene 2 TOG CM #> 1209 /en/players/3c05c659/Sebastian-Cristoforo 15 URU CM #> 1210 /en/players/58afe001/Mauro-Arambarri 18 URU CM #> 1211 /en/players/8e010ff4/Francisco-Portillo 8 ESP RM,LM #> 1212 /en/players/3e4f735d/Vitorino-Antunes 3 POR LB #> 1213 /en/players/69cbc8b6/Leandro-Cabrera 6 URU CB #> 1214 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB #> 1215 /en/players/ba5004e1/Damian-Suarez 22 URU RB #> 1216 /en/players/8f8c6934/David-Soria 13 ESP GK #> 1217 /en/players/df69b544/Antoine-Griezmann 7 FRA FW,RW #> 1218 /en/players/a190d597/Diego-Costa 19 ESP FW #> 1219 /en/players/55126f3b/Koke 6 ESP LM,CM #> 1220 /en/players/c14bc029/Saul-Niguez 8 ESP CM #> 1221 /en/players/6434f10d/Rodri 14 ESP CM #> 1222 /en/players/529f49ab/Thomas-Partey 5 GHA CM #> 1223 /en/players/4dbd0916/Thomas-Lemar 11 FRA RM,LW #> 1224 /en/players/01eb744d/Angel-Correa 10 ARG RM #> 1225 /en/players/e4ed2628/Filipe-Luis 3 BRA LB #> 1226 /en/players/fc4f85b1/Diego-Godin 2 URU CB #> 1227 /en/players/c3ee18ef/Lucas-Hernandez 21 FRA CB,LB #> 1228 /en/players/f0da930c/Jose-Maria-Gimenez 24 URU CB #> 1229 /en/players/cfd8d664/Juanfran 20 ESP RB #> 1230 /en/players/ee8508c0/Jan-Oblak 13 SVN GK #> 1231 /en/players/70d74ece/Karim-Benzema 9 FRA FW #> 1232 /en/players/5c4dc0ff/Mariano 7 DOM FW #> 1233 /en/players/45af8a54/Marco-Asensio 20 ESP LW #> 1234 /en/players/a0b4bb3e/Isco 22 ESP RW,LM #> 1235 /en/players/02c15616/Marcos-Llorente 18 ESP LM #> 1236 /en/players/c0617e2b/Dani-Ceballos 24 ESP LM #> 1237 /en/players/fd51b456/Lucas-Vazquez 17 ESP RW #> 1238 /en/players/4d224fe8/Casemiro 14 BRA CM #> 1239 /en/players/6025fab1/Luka-Modric 10 CRO RM #> 1240 /en/players/2946f9a1/Nacho 6 ESP LB #> 1241 /en/players/08511d65/Sergio-Ramos 4 ESP CB #> 1242 /en/players/9f8e9423/Raphael-Varane 5 FRA CB #> 1243 /en/players/1d1691ad/Alvaro-Odriozola 19 ESP RB #> 1244 /en/players/1840e36d/Thibaut-Courtois 25 BEL GK #> 1245 /en/players/75645f0e/Borja-Iglesias 7 ESP FW #> 1246 /en/players/48e89655/Pablo-Piatti 19 ARG LM #> 1247 /en/players/35f6db55/Leo-Baptistao 11 BRA RM,LM #> 1248 /en/players/1b17ed86/Esteban-Granero 23 ESP CM #> 1249 /en/players/070a3904/Sergi-Darder 10 ESP CM #> 1250 /en/players/ad4d0985/Victor-Sanchez 4 ESP CM #> 1251 /en/players/e1cea3f7/Hernan-Perez 17 PAR RM #> 1252 /en/players/2bee98fd/Sergio-Garcia 9 ESP LM #> 1253 /en/players/da27e268/Marc-Roca 21 ESP DM #> 1254 /en/players/bad38a94/Didac-Vila 12 ESP LB #> 1255 /en/players/555f3a0b/Mario-Hermoso 22 ESP CB #> 1256 /en/players/a2609621/Naldo 5 BRA CB #> 1257 /en/players/ffad706e/Javi-Lopez 16 ESP RB #> 1258 /en/players/73683fa9/Diego-Lopez 13 ESP GK #> 1259 /en/players/64e8ed6d/Borja-Mayoral 2 ESP FW #> 1260 /en/players/0ae4e09a/Roger-Marti 9 ESP FW #> 1261 /en/players/2e23c66b/Emmanuel-Boateng 21 GHA FW #> 1262 /en/players/4a478107/Jose-Luis-Morales 11 ESP LM,RM #> 1263 /en/players/61220da2/Jose-Campana 24 ESP CM #> 1264 /en/players/5f3eaaf5/Moses-Simon 7 NGA LM #> 1265 /en/players/51c30111/Sanjin-Prcic 8 BIH CM #> 1266 /en/players/4442fbcd/Nikola-Vukcevic 17 MNE CM #> 1267 /en/players/cac2537b/Enis-Bardhi 10 MKD RM,CM #> 1268 /en/players/ed239245/Antonio-Luna 22 ESP LB #> 1269 /en/players/c00097d2/Rober 4 ESP CB #> 1270 /en/players/474ecac8/Sergio-Postigo 15 ESP CB #> 1271 /en/players/a60823a4/Pedro-Lopez-Munoz 19 ESP RB #> 1272 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK #> 1273 /en/players/3effaa34/Andre-Silva 12 POR FW #> 1274 /en/players/942b4f90/Wissam-Ben-Yedder 9 FRA FW #> 1275 /en/players/b182a240/Quincy-Promes 21 NED LW,FW #> 1276 /en/players/9744ff80/Pablo-Sarabia 17 ESP CM #> 1277 /en/players/eb2fe5b6/Luis-Muriel 14 COL RW #> 1278 /en/players/fa937f7a/Ever-Banega 10 ARG CM #> 1279 /en/players/7c4243d4/Roque-Mesa 7 ESP CM #> 1280 /en/players/467bae22/Franco-Vazquez 22 ARG CM #> 1281 /en/players/04965583/Aleix-Vidal 11 ESP WB,LM #> 1282 /en/players/3f10bd22/Jesus-Navas 16 ESP WB,RM #> 1283 /en/players/e1deea75/Daniel-Carrico 6 POR CB #> 1284 /en/players/8b8a56ce/Simon-Kjaer 4 DEN CB #> 1285 /en/players/bc6f5f06/Sergi-Gomez 3 ESP CB #> 1286 /en/players/7b456af7/Tomas-Vaclik 1 CZE GK #> 1287 /en/players/09a9e921/Carlos-Bacca 9 COL FW #> 1288 /en/players/5ceba7fc/Karl-Toko-Ekambi 17 CMR FW #> 1289 /en/players/81f0781e/Gerard-Moreno 7 ESP FW #> 1290 /en/players/ad6295d4/Miguel-Layun 24 MEX LM,RM #> 1291 /en/players/89cbc961/Ramiro-Funes-Mori 4 ARG CM #> 1292 /en/players/963829d0/Manu-Trigueros 14 ESP CM #> 1293 /en/players/82927de4/Pablo-Fornals 8 ESP RM #> 1294 /en/players/63f04c6c/Alfonso-Pedraza 16 ESP LB,LM #> 1295 /en/players/808d48f3/Jaume-Costa 11 ESP LB #> 1296 /en/players/e2e9c250/Santi-Cazorla 19 ESP LM #> 1297 /en/players/b3dc6eca/Victor-Ruiz 6 ESP CB #> 1298 /en/players/42dcf26d/Alvaro-Gonzalez 3 ESP CB #> 1299 /en/players/fb5d47b3/Mario-Gaspar 2 ESP RB #> 1300 /en/players/9f0ea33f/Sergio-Asenjo 1 ESP GK #> 1301 /en/players/42276181/Kevin-Gameiro 9 FRA FW #> 1302 /en/players/a6951bf8/Francis-Coquelin 17 FRA CM #> 1303 /en/players/0b90bb97/Santi-Mina 22 ESP FW #> 1304 /en/players/2973d8ff/Michy-Batshuayi 23 BEL FW #> 1305 /en/players/0ac94a23/Denis-Cheryshev 11 RUS LM #> 1306 /en/players/7460ca0d/Daniel-Parejo 10 ESP CM #> 1307 /en/players/fed17f5a/Carlos-Soler 8 ESP CM #> 1308 /en/players/9e1035f8/Ferran-Torres 20 ESP RM #> 1309 /en/players/e6bc67d7/Goncalo-Guedes 7 POR RM #> 1310 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP LB #> 1311 /en/players/d2110326/Mouctar-Diakhaby 12 GUI CB #> 1312 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA CB #> 1313 /en/players/32c0491f/Cristiano-Piccini 21 ITA RB #> 1314 /en/players/a9dc785c/Neto 13 BRA GK #> 1315 /en/players/0a447501/Antonio-Sanabria 9 PAR FW #> 1316 /en/players/4c5b14d2/Joaquin 17 ESP AM,WB #> 1317 /en/players/a6de370d/Sergio-Canales 6 ESP AM,CM #> 1318 /en/players/ef322658/Andres-Guardado 18 MEX CM #> 1319 /en/players/d7553721/Giovani-Lo-Celso 21 ARG CM #> 1320 /en/players/3aa4a3be/Loren-Moron 16 ESP AM,FW #> 1321 /en/players/24f59bb2/Junior-Firpo 20 ESP WB #> 1322 /en/players/72a99e38/Cristian-Tello 11 ESP WB #> 1323 /en/players/59d53e8a/Francis-Guerrero 2 ESP WB #> 1324 /en/players/61bd33d0/Takashi-Inui 8 JPN AM,WB #> 1325 /en/players/b14d0c5d/Sidnei 12 BRA CB #> 1326 /en/players/b742cc0d/Marc-Bartra 5 ESP CB #> 1327 /en/players/fbd6378b/Aissa-Mandi 23 ALG CB #> 1328 /en/players/20b9f052/Pau-Lopez 13 ESP GK #> 1329 /en/players/6a99e0b1/Inaki-Williams 9 GHA FW #> 1330 /en/players/c05dfb74/Iker-Muniain 10 ESP FW #> 1331 /en/players/b6e50615/Yuri-Berchiche 12 ESP LW #> 1332 /en/players/6fd1ba62/Markel-Susaeta 14 ESP RW #> 1333 /en/players/b418dbd4/Raul-Garcia 22 ESP AM,RW #> 1334 /en/players/37f1cf47/Ander-Capa 21 ESP RW #> 1335 /en/players/240d3a0b/Dani-Garcia 16 ESP DM #> 1336 /en/players/b037bd4f/Benat-Etxebarria 7 ESP DM #> 1337 /en/players/003a5c72/Mikel-San-Jose 6 ESP DM #> 1338 /en/players/1fe67e86/Mikel-Balenziaga 24 ESP LB #> 1339 /en/players/3fc45c73/Inigo-Martinez 4 ESP CB #> 1340 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP CB #> 1341 /en/players/9f323c71/Oscar-de-Marcos 18 ESP RB #> 1342 /en/players/5dcf3e90/Unai-Simon 25 ESP GK #> 1343 /en/players/a6154613/Luis-Suarez 9 URU FW #> 1344 /en/players/b19db005/Ousmane-Dembele 11 FRA LW #> 1345 /en/players/3eed9821/Samuel-Umtiti 23 FRA CB,LW #> 1346 /en/players/d70ce98e/Lionel-Messi 10 ARG RW,FW #> 1347 /en/players/48b3dd60/Arthur-Melo 8 BRA LM #> 1348 /en/players/0ef89a37/Philippe-Coutinho 7 BRA AM,LM #> 1349 /en/players/5ab0ea87/Sergio-Busquets 5 ESP CM,CB #> 1350 /en/players/67cdbc0e/Arturo-Vidal 22 CHI RM #> 1351 /en/players/89f951b5/Ivan-Rakitic 4 CRO RM #> 1352 /en/players/4601e194/Jordi-Alba 18 ESP LB #> 1353 /en/players/4f28a6ff/Clement-Lenglet 15 FRA CB #> 1354 /en/players/adfc9123/Gerard-Pique 3 ESP CB #> 1355 /en/players/d04b94db/Nelson-Semedo 2 POR RB #> 1356 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER GK #> 1357 /en/players/220c11f1/Cristhian-Stuani 7 URU FW #> 1358 /en/players/1bda5842/Portu 9 ESP FW #> 1359 /en/players/c49afee6/Seydou-Doumbia 22 CIV FW #> 1360 /en/players/a10361d2/Aleix-Garcia 23 ESP CM #> 1361 /en/players/e7f4603c/Borja-Garcia 10 ESP CM #> 1362 /en/players/29b61deb/Pere-Pons 8 ESP CM #> 1363 /en/players/a25250f8/Alex-Granell 6 ESP CM #> 1364 /en/players/6f7d826d/Douglas-Luiz 12 BRA CM #> 1365 /en/players/4db76f57/Marc-Muniesa 20 ESP LB #> 1366 /en/players/1633fc8a/Juanpe 15 ESP CB #> 1367 /en/players/4242011c/Bernardo-Espinosa 2 COL CB #> 1368 /en/players/ba71d071/Pedro-Alcala 5 ESP CB #> 1369 /en/players/5890cef1/Aday 11 ESP RB #> 1370 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK #> 1371 /en/players/2bee98fd/Sergio-Garcia 9 ESP FW #> 1372 /en/players/75645f0e/Borja-Iglesias 7 ESP FW,LW #> 1373 /en/players/48e89655/Pablo-Piatti 19 ARG LW #> 1374 /en/players/35f6db55/Leo-Baptistao 11 BRA RW #> 1375 /en/players/e1cea3f7/Hernan-Perez 17 PAR RW #> 1376 /en/players/070a3904/Sergi-Darder 10 ESP LM #> 1377 /en/players/da27e268/Marc-Roca 21 ESP CM #> 1378 /en/players/379652be/Oscar-Melendo 14 ESP RM #> 1379 /en/players/ad4d0985/Victor-Sanchez 4 ESP RM #> 1380 /en/players/bad38a94/Didac-Vila 12 ESP LB #> 1381 /en/players/555f3a0b/Mario-Hermoso 22 ESP CB #> 1382 /en/players/aa0ac32d/Oscar-Duarte 6 CRC CB #> 1383 /en/players/81069528/Roberto-Rosales 8 VEN RB #> 1384 /en/players/73683fa9/Diego-Lopez 13 ESP GK #> 1385 /en/players/b92b456a/Marc-Cardona 7 ESP FW #> 1386 /en/players/c4b8bcf4/Charles 19 BRA FW #> 1387 /en/players/335039a2/Pere-Milla 22 ESP LW #> 1388 /en/players/3f79a1c8/Gonzalo-Escalante 5 ARG DM,LW #> 1389 /en/players/9ab48bde/Pablo-de-Blasis 16 ARG RW,LW #> 1390 /en/players/c90977db/Fabian-Orellana 14 CHI AM,RW #> 1391 /en/players/2a0c8ba4/Joan-Jordan 24 ESP DM,AM #> 1392 /en/players/88d91621/Sergio-Alvarez 6 ESP DM #> 1393 /en/players/bb4b1242/Sergi-Enrich 9 ESP AM,DM #> 1394 /en/players/1daec722/Marc-Cucurella 20 ESP LB #> 1395 /en/players/697295b1/Pedro-Bigas 3 ESP CB #> 1396 /en/players/a8fbae1d/Paulo-Oliveira 12 POR CB #> 1397 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP RB #> 1398 /en/players/ac295d9e/Marko-Dmitrovic 1 SRB GK #> 1399 /en/players/debc6b55/Jon-Bautista 21 ESP FW #> 1400 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP LW #> 1401 /en/players/7958dc65/Luca-Sangalli 23 ESP RW #> 1402 /en/players/d9bda115/David-Zurutuza 17 ESP RW #> 1403 /en/players/d080ed5e/Mikel-Merino 8 ESP AM #> 1404 /en/players/5c7845f6/Igor-Zubeldia 5 ESP DM #> 1405 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP DM #> 1406 /en/players/2306bfde/Ruben-Pardo 14 ESP DM #> 1407 /en/players/d87e2cae/Willian-Jose 12 BRA AM #> 1408 /en/players/f1bed920/Kevin-Rodrigues 20 POR LB #> 1409 /en/players/5d311e8d/Hector-Moreno 6 MEX CB #> 1410 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP CB #> 1411 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP RB #> 1412 /en/players/625c144a/Geronimo-Rulli 1 ARG GK #> 1413 /en/players/02ef8778/Raul-de-Tomas 9 ESP FW #> 1414 /en/players/46166b49/Alex-Alegria 15 ESP FW #> 1415 /en/players/d8712bf9/Bebe 14 CPV LM,LW #> 1416 /en/players/db8f0eba/Adri-Embarba 11 ESP LW #> 1417 /en/players/fc647b34/Oscar-Trejo 8 ARG CM,AM #> 1418 /en/players/31223bcf/Alvaro-Medran 4 ESP CM #> 1419 /en/players/b86fe156/Giannelli-Imbula 12 COD DM #> 1420 /en/players/5b1bf5e3/Gael-Kakuta 10 COD RM,RW #> 1421 /en/players/5ae499d0/Santi-Comesana 27 ESP DM #> 1422 /en/players/16e9d0ea/Alex-Moreno 7 ESP LB #> 1423 /en/players/d70a2141/Jordi-Amat 16 IDN CB #> 1424 /en/players/960fb42d/Alex-Galvez 23 ESP CB #> 1425 /en/players/cacadf4f/Luis-Advincula 17 PER RB #> 1426 /en/players/17d9e354/Alberto-Garcia 1 ESP GK #> 1427 /en/players/df69b544/Antoine-Griezmann 7 FRA FW #> 1428 /en/players/d4931a5a/Nikola-Kalinic 9 CRO FW #> 1429 /en/players/a190d597/Diego-Costa 19 ESP FW #> 1430 /en/players/3ef0fa48/Gelson-Martins 18 POR FW,RM #> 1431 /en/players/4dbd0916/Thomas-Lemar 11 FRA LM #> 1432 /en/players/55126f3b/Koke 6 ESP CM #> 1433 /en/players/529f49ab/Thomas-Partey 5 GHA CM #> 1434 /en/players/01eb744d/Angel-Correa 10 ARG RM,FW #> 1435 /en/players/e4ed2628/Filipe-Luis 3 BRA LB #> 1436 /en/players/fc4f85b1/Diego-Godin 2 URU CB #> 1437 /en/players/f0da930c/Jose-Maria-Gimenez 24 URU CB #> 1438 /en/players/c3ee18ef/Lucas-Hernandez 21 FRA CB #> 1439 /en/players/3e5a168c/Carlos-Isaac 38 ESP RB #> 1440 /en/players/ee8508c0/Jan-Oblak 13 SVN GK #> 1441 /en/players/1163de29/Samuele-Longo 12 ITA FW #> 1442 /en/players/253a06b9/Ezequiel-Avila 19 ARG FW #> 1443 /en/players/71b47ab9/Cucho 9 COL FW #> 1444 /en/players/18dc8533/Juan-Aguilera 5 ESP DM,FW #> 1445 /en/players/8970907e/David-Ferreiro 7 ESP LM,LW #> 1446 /en/players/74e0a984/Damian-Musto 23 ARG CM,DM #> 1447 /en/players/3902e91b/Gonzalo-Melero 8 ESP CM,AM #> 1448 /en/players/36d5469c/Alex-Gallar 11 ESP RM,RW #> 1449 /en/players/a7f00c8c/Luisinho 16 POR LB #> 1450 /en/players/f2a68b97/Carlos-Akapo 15 EQG LB #> 1451 /en/players/c904f3d5/Ruben-Semedo 4 POR CB #> 1452 /en/players/4a895384/Xabier-Etxeita 3 ESP CB #> 1453 /en/players/7f4c7c9f/Jorge-Miramon 24 ESP RB #> 1454 /en/players/c0b1a6da/Axel-Werner 1 ARG GK #> 1455 /en/players/04e17fd5/Youssef-En-Nesyri 26 MAR FW #> 1456 /en/players/19709006/Oscar-Rodriguez-Arnaiz 27 ESP LM #> 1457 /en/players/ac454a4f/Gerard-Gumbau 6 ESP CM,LM #> 1458 /en/players/3c7bc9bd/Ruben-Perez 21 ESP CM #> 1459 /en/players/b0fce72c/Mikel-Vesga 23 ESP CM #> 1460 /en/players/1d5f96d9/Sabin-Merino 18 ESP LM #> 1461 /en/players/37f96552/Nabil-El-Zhar 10 MAR RM #> 1462 /en/players/97572117/Allan-Nyom 12 CMR RB #> 1463 /en/players/f2308b33/Jonathan-Silva 5 ARG LB #> 1464 /en/players/1a317a1b/Raul-Garcia 14 ESP CB #> 1465 /en/players/f3112790/Unai-Bustinza 3 ESP CB #> 1466 /en/players/a03c82b2/Rodrigo-Tarin 28 ESP CB #> 1467 /en/players/9ba48d64/Juanfran 2 ESP RB,RM #> 1468 /en/players/75751c99/Ivan-Cuellar 1 ESP GK #> 1469 /en/players/8696bc90/Munir-El-Haddadi 19 MAR FW #> 1470 /en/players/a6154613/Luis-Suarez 9 URU FW #> 1471 /en/players/b19db005/Ousmane-Dembele 11 FRA LW #> 1472 /en/players/6853490f/Malcom 14 BRA LW #> 1473 /en/players/d70ce98e/Lionel-Messi 10 ARG RW #> 1474 /en/players/0ef89a37/Philippe-Coutinho 7 BRA LM #> 1475 /en/players/5ab0ea87/Sergio-Busquets 5 ESP CM #> 1476 /en/players/89f951b5/Ivan-Rakitic 4 CRO RM #> 1477 /en/players/d0d79694/Thomas-Vermaelen 24 BEL LB #> 1478 /en/players/4601e194/Jordi-Alba 18 ESP LB #> 1479 /en/players/3eed9821/Samuel-Umtiti 23 FRA CB #> 1480 /en/players/adfc9123/Gerard-Pique 3 ESP CB #> 1481 /en/players/335fa267/Sergi-Roberto 20 ESP RB #> 1482 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER GK #> 1483 /en/players/6a99e0b1/Inaki-Williams 9 GHA FW #> 1484 /en/players/c05dfb74/Iker-Muniain 10 ESP LW,RW #> 1485 /en/players/37f1cf47/Ander-Capa 21 ESP RW,RB #> 1486 /en/players/b418dbd4/Raul-Garcia 22 ESP AM #> 1487 /en/players/49ea92be/Inigo-Cordoba 11 ESP AM #> 1488 /en/players/6dce77a5/Ander-Iturraspe 8 ESP DM #> 1489 /en/players/88050721/Unai-Lopez 23 ESP DM #> 1490 /en/players/b037bd4f/Benat-Etxebarria 7 ESP DM #> 1491 /en/players/b6e50615/Yuri-Berchiche 12 ESP LB #> 1492 /en/players/3fc45c73/Inigo-Martinez 4 ESP CB #> 1493 /en/players/be170419/Unai-Nunez 3 ESP CB #> 1494 /en/players/9f323c71/Oscar-de-Marcos 18 ESP RB #> 1495 /en/players/6b5ea2f4/Gorka-Guruzeta 30 ESP LW,RB #> 1496 /en/players/5dcf3e90/Unai-Simon 25 ESP GK #> 1497 /en/players/09a9e921/Carlos-Bacca 9 COL FW #> 1498 /en/players/5ceba7fc/Karl-Toko-Ekambi 17 CMR FW #> 1499 /en/players/81f0781e/Gerard-Moreno 7 ESP FW #> 1500 /en/players/63f04c6c/Alfonso-Pedraza 16 ESP FW #> 1501 /en/players/ad6295d4/Miguel-Layun 24 MEX LM #> 1502 /en/players/e2e9c250/Santi-Cazorla 19 ESP LM #> 1503 /en/players/89cbc961/Ramiro-Funes-Mori 4 ARG CM #> 1504 /en/players/963829d0/Manu-Trigueros 14 ESP CM #> 1505 /en/players/82927de4/Pablo-Fornals 8 ESP RM #> 1506 /en/players/808d48f3/Jaume-Costa 11 ESP LB #> 1507 /en/players/b3dc6eca/Victor-Ruiz 6 ESP CB #> 1508 /en/players/42dcf26d/Alvaro-Gonzalez 3 ESP CB #> 1509 /en/players/fb5d47b3/Mario-Gaspar 2 ESP RB #> 1510 /en/players/9f0ea33f/Sergio-Asenjo 1 ESP GK #> 1511 /en/players/942b4f90/Wissam-Ben-Yedder 9 FRA FW #> 1512 /en/players/b182a240/Quincy-Promes 21 NED FW #> 1513 /en/players/3effaa34/Andre-Silva 12 POR FW #> 1514 /en/players/467bae22/Franco-Vazquez 22 ARG CM #> 1515 /en/players/fa937f7a/Ever-Banega 10 ARG CM #> 1516 /en/players/7c4243d4/Roque-Mesa 7 ESP CM #> 1517 /en/players/9744ff80/Pablo-Sarabia 17 ESP CM #> 1518 /en/players/2b15a82a/Guilherme-Arana 23 BRA WB #> 1519 /en/players/b2d0ec1b/Nolito 8 ESP WB #> 1520 /en/players/3f10bd22/Jesus-Navas 16 ESP WB #> 1521 /en/players/bc6f5f06/Sergi-Gomez 3 ESP CB #> 1522 /en/players/8b8a56ce/Simon-Kjaer 4 DEN CB #> 1523 /en/players/e1deea75/Daniel-Carrico 6 POR CB #> 1524 /en/players/7b456af7/Tomas-Vaclik 1 CZE GK #> 1525 /en/players/70d74ece/Karim-Benzema 9 FRA FW #> 1526 /en/players/5c4dc0ff/Mariano 7 DOM FW #> 1527 /en/players/45af8a54/Marco-Asensio 20 ESP LW,RW,LM #> 1528 /en/players/a58bb1e1/Gareth-Bale 11 WAL RW,LW #> 1529 /en/players/6ce1f46f/Toni-Kroos 8 GER LM,CM #> 1530 /en/players/4d224fe8/Casemiro 14 BRA CM,CB #> 1531 /en/players/6025fab1/Luka-Modric 10 CRO RM,CM #> 1532 /en/players/c0617e2b/Dani-Ceballos 24 ESP CM #> 1533 /en/players/603116a7/Marcelo 12 BRA LB,LM #> 1534 /en/players/08511d65/Sergio-Ramos 4 ESP CB #> 1535 /en/players/9f8e9423/Raphael-Varane 5 FRA CB #> 1536 /en/players/2946f9a1/Nacho 6 ESP RB #> 1537 /en/players/fd51b456/Lucas-Vazquez 17 ESP RM #> 1538 /en/players/1840e36d/Thibaut-Courtois 25 BEL GK #> 1539 /en/players/2973d8ff/Michy-Batshuayi 23 BEL FW #> 1540 /en/players/42276181/Kevin-Gameiro 9 FRA FW #> 1541 /en/players/1fb1c435/Rodrigo 19 ESP FW #> 1542 /en/players/e6bc67d7/Goncalo-Guedes 7 POR LM #> 1543 /en/players/0ac94a23/Denis-Cheryshev 11 RUS LM #> 1544 /en/players/a6951bf8/Francis-Coquelin 17 FRA CM #> 1545 /en/players/cce181df/Geoffrey-Kondogbia 6 CTA CM #> 1546 /en/players/fed17f5a/Carlos-Soler 8 ESP CM #> 1547 /en/players/d83bbc54/Daniel-Wass 18 DEN RM #> 1548 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP LB #> 1549 /en/players/b233e8e4/Jeison-Murillo 4 COL CB #> 1550 /en/players/ac3fb1be/Ezequiel-Garay 24 ARG CB #> 1551 /en/players/32c0491f/Cristiano-Piccini 21 ITA RB #> 1552 /en/players/a9dc785c/Neto 13 BRA GK #> 1553 /en/players/4c2e9442/Maxi-Gomez 9 URU FW,LW #> 1554 /en/players/7dcf86f6/Iago-Aspas 10 ESP FW,RW #> 1555 /en/players/b18a3023/Junior-Alonso 25 PAR CB #> 1556 /en/players/ed5c5fa3/Fran-Beltran 8 ESP CM #> 1557 /en/players/e1cbb531/Stanislav-Lobotka 14 SVK CM,RM #> 1558 /en/players/e49ce451/Okay-Yokuslu 5 TUR CM #> 1559 /en/players/fd9c4805/Pione-Sisto 11 DEN CM,LM #> 1560 /en/players/de7d40d6/David-Junca 17 ESP LB #> 1561 /en/players/27a013f7/Nestor-Araujo 4 MEX CB #> 1562 /en/players/92b4a127/Gustavo-Cabral 22 ARG CB #> 1563 /en/players/51e3954c/Facundo-Roncaglia 24 ARG CB,RB #> 1564 /en/players/cb574619/Hugo-Mallo 2 ESP RB #> 1565 /en/players/7f8fb807/Dennis-Eckert 32 GER FW #> 1566 /en/players/8875b8c9/Sergio-Alvarez 1 ESP GK #> 1567 /en/players/19b776e9/Ruben-Sobrino 7 ESP FW #> 1568 /en/players/99bebd12/John-Guidetti 10 SWE FW #> 1569 /en/players/6922f806/Jonathan-Calleri 12 ARG FW #> 1570 /en/players/244f57b9/Jony 23 ESP LM #> 1571 /en/players/999908af/Wakaso 22 GHA CM #> 1572 /en/players/05a4465d/Manu-Garcia 19 ESP CM #> 1573 /en/players/4accb7e0/Darko-Brasanac 20 SRB CM #> 1574 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RM #> 1575 /en/players/45e304c8/Burgui 14 ESP RM #> 1576 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB #> 1577 /en/players/8db394aa/Ximo-Navarro 15 ESP CB #> 1578 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB #> 1579 /en/players/355c883a/Martin-Agirregabiria 21 ESP RB #> 1580 /en/players/97852360/Fernando-Pacheco 1 ESP GK #> 1581 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW #> 1582 /en/players/43f71e77/Jorge-Molina 19 ESP FW #> 1583 /en/players/02319ad7/Jaime-Mata 7 ESP FW #> 1584 /en/players/f3b1d9a2/Amath 11 SEN LM #> 1585 /en/players/45e17712/Dimitri-Foulquier 24 FRA RM,LM #> 1586 /en/players/00b28772/Nemanja-Maksimovic 20 SRB CM #> 1587 /en/players/58afe001/Mauro-Arambarri 18 URU CM #> 1588 /en/players/04a65a8f/Markel-Bergara 5 ESP CM #> 1589 /en/players/8e010ff4/Francisco-Portillo 8 ESP RM,LM #> 1590 /en/players/69cbc8b6/Leandro-Cabrera 6 URU LB #> 1591 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB #> 1592 /en/players/a4971d84/Djene 2 TOG CB #> 1593 /en/players/ba5004e1/Damian-Suarez 22 URU RB #> 1594 /en/players/8f8c6934/David-Soria 13 ESP GK #> 1595 /en/players/8b0b02c9/Duje-Cop 20 CRO FW #> 1596 /en/players/9127f9ce/Borja-Fernandez 8 ESP CM,FW #> 1597 /en/players/f8eca1b6/Enes-Unal 9 TUR FW #> 1598 /en/players/636eae97/Toni-Villa 19 ESP LM,LW #> 1599 /en/players/036bba5f/Ruben-Alcaraz 14 ESP CM #> 1600 /en/players/418f8f61/Michel 21 ESP CM #> 1601 /en/players/7c388b20/Oscar-Plano 10 ESP RM #> 1602 /en/players/dbe519cf/Antonito 18 ESP RM,RB #> 1603 /en/players/e29d1111/Nacho 22 ESP LB #> 1604 /en/players/41b3069f/Fernando-Calero 5 ESP CB #> 1605 /en/players/72b07a9c/Kiko-Olivas 4 ESP CB #> 1606 /en/players/933e8c8a/Javi-Moyano 17 ESP RB #> 1607 /en/players/25c72b36/Leonardo-Suarez 32 ARG RW,RB,RM #> 1608 /en/players/8fae77ea/Jordi-Masip 1 ESP GK #> 1609 /en/players/0ae4e09a/Roger-Marti 9 ESP FW #> 1610 /en/players/2e23c66b/Emmanuel-Boateng 21 GHA FW #> 1611 /en/players/64e8ed6d/Borja-Mayoral 2 ESP FW #> 1612 /en/players/9038c2a1/Jason 23 ESP FW #> 1613 /en/players/4a478107/Jose-Luis-Morales 11 ESP LM #> 1614 /en/players/4442fbcd/Nikola-Vukcevic 17 MNE CM #> 1615 /en/players/61220da2/Jose-Campana 24 ESP CM #> 1616 /en/players/cac2537b/Enis-Bardhi 10 MKD RM #> 1617 /en/players/ed239245/Antonio-Luna 22 ESP LB #> 1618 /en/players/7f203b54/Chema 6 ESP CB #> 1619 /en/players/474ecac8/Sergio-Postigo 15 ESP CB #> 1620 /en/players/a60823a4/Pedro-Lopez-Munoz 19 ESP RB #> 1621 /en/players/5f3eaaf5/Moses-Simon 7 NGA RB #> 1622 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK #> 1623 /en/players/220c11f1/Cristhian-Stuani 7 URU FW #> 1624 /en/players/e7f4603c/Borja-Garcia 10 ESP LW #> 1625 /en/players/1bda5842/Portu 9 ESP RW #> 1626 /en/players/5890cef1/Aday 11 ESP LM #> 1627 /en/players/6f7d826d/Douglas-Luiz 12 BRA CM #> 1628 /en/players/a25250f8/Alex-Granell 6 ESP CM #> 1629 /en/players/a10361d2/Aleix-Garcia 23 ESP CB #> 1630 /en/players/27d0a506/Pedro-Porro 29 ESP RM #> 1631 /en/players/c49afee6/Seydou-Doumbia 22 CIV RM #> 1632 /en/players/1633fc8a/Juanpe 15 ESP CB #> 1633 /en/players/4242011c/Bernardo-Espinosa 2 COL CB #> 1634 /en/players/ba71d071/Pedro-Alcala 5 ESP CB #> 1635 /en/players/59d93937/Patrick-Roberts 17 ENG GK #> 1636 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK #> 1637 /en/players/3aa4a3be/Loren-Moron 16 ESP FW #> 1638 /en/players/61bd33d0/Takashi-Inui 8 JPN AM #> 1639 /en/players/4c5b14d2/Joaquin 17 ESP AM #> 1640 /en/players/1001ae82/Ryad-Boudebouz 10 ALG AM #> 1641 /en/players/d7553721/Giovani-Lo-Celso 21 ARG AM #> 1642 /en/players/ef322658/Andres-Guardado 18 MEX CM #> 1643 /en/players/167c1bb0/Javi-Garcia 3 ESP CM #> 1644 /en/players/a6de370d/Sergio-Canales 6 ESP CM #> 1645 /en/players/24f59bb2/Junior-Firpo 20 ESP WB #> 1646 /en/players/59d53e8a/Francis-Guerrero 2 ESP WB #> 1647 /en/players/b14d0c5d/Sidnei 12 BRA CB #> 1648 /en/players/b742cc0d/Marc-Bartra 5 ESP CB #> 1649 /en/players/fbd6378b/Aissa-Mandi 23 ALG CB #> 1650 /en/players/20b9f052/Pau-Lopez 13 ESP GK #> 1651 /en/players/02ef8778/Raul-de-Tomas 9 ESP FW #> 1652 /en/players/d8712bf9/Bebe 14 CPV LM #> 1653 /en/players/90bbd822/Alvaro-Garcia 18 ESP LM #> 1654 /en/players/b86fe156/Giannelli-Imbula 12 COD CM #> 1655 /en/players/fc647b34/Oscar-Trejo 8 ARG CM #> 1656 /en/players/fc8b614b/Jose-Pozo 22 ESP CM #> 1657 /en/players/5b1bf5e3/Gael-Kakuta 10 COD RM #> 1658 /en/players/db8f0eba/Adri-Embarba 11 ESP RM #> 1659 /en/players/5ae499d0/Santi-Comesana 27 ESP DM #> 1660 /en/players/16e9d0ea/Alex-Moreno 7 ESP LB #> 1661 /en/players/d70a2141/Jordi-Amat 16 IDN CB #> 1662 /en/players/1f54ed90/Abdoulaye-Ba 21 SEN CB #> 1663 /en/players/cacadf4f/Luis-Advincula 17 PER RB #> 1664 /en/players/17d9e354/Alberto-Garcia 1 ESP GK #> 1665 /en/players/75645f0e/Borja-Iglesias 7 ESP FW #> 1666 /en/players/2bee98fd/Sergio-Garcia 9 ESP LM #> 1667 /en/players/1b17ed86/Esteban-Granero 23 ESP CM #> 1668 /en/players/379652be/Oscar-Melendo 14 ESP CM #> 1669 /en/players/ad4d0985/Victor-Sanchez 4 ESP CM,DM #> 1670 /en/players/35f6db55/Leo-Baptistao 11 BRA RM #> 1671 /en/players/e1cea3f7/Hernan-Perez 17 PAR RM #> 1672 /en/players/da27e268/Marc-Roca 21 ESP DM #> 1673 /en/players/070a3904/Sergi-Darder 10 ESP CM #> 1674 /en/players/bad38a94/Didac-Vila 12 ESP LB #> 1675 /en/players/555f3a0b/Mario-Hermoso 22 ESP CB #> 1676 /en/players/a2609621/Naldo 5 BRA CB #> 1677 /en/players/ffad706e/Javi-Lopez 16 ESP RB #> 1678 /en/players/73683fa9/Diego-Lopez 13 ESP GK #> 1679 /en/players/d87e2cae/Willian-Jose 12 BRA FW #> 1680 /en/players/d9bda115/David-Zurutuza 17 ESP LM,RM,FW #> 1681 /en/players/d080ed5e/Mikel-Merino 8 ESP LM #> 1682 /en/players/2306bfde/Ruben-Pardo 14 ESP CM,FW #> 1683 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP CM #> 1684 /en/players/5c7845f6/Igor-Zubeldia 5 ESP CB,CM #> 1685 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP RM #> 1686 /en/players/debc6b55/Jon-Bautista 21 ESP FW #> 1687 /en/players/f1bed920/Kevin-Rodrigues 20 POR LB #> 1688 /en/players/ad178594/Raul-Navas 22 ESP CB #> 1689 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP RB,CB #> 1690 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP RB #> 1691 /en/players/833fb62e/Sandro-Ramirez 24 ESP FW,LM #> 1692 /en/players/011d8c56/Miguel-Angel-Moya 13 ESP GK #> 1693 /en/players/2973d8ff/Michy-Batshuayi 23 BEL FW #> 1694 /en/players/1fb1c435/Rodrigo 19 ESP FW #> 1695 /en/players/42276181/Kevin-Gameiro 9 FRA FW #> 1696 /en/players/0ac94a23/Denis-Cheryshev 11 RUS LM #> 1697 /en/players/e6bc67d7/Goncalo-Guedes 7 POR LM #> 1698 /en/players/cce181df/Geoffrey-Kondogbia 6 CTA CM #> 1699 /en/players/a6951bf8/Francis-Coquelin 17 FRA CM #> 1700 /en/players/7460ca0d/Daniel-Parejo 10 ESP CM #> 1701 /en/players/fed17f5a/Carlos-Soler 8 ESP RM #> 1702 /en/players/8e088e04/Toni-Lato 15 ESP LB #> 1703 /en/players/d2110326/Mouctar-Diakhaby 12 GUI CB #> 1704 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA CB #> 1705 /en/players/c67cd65c/Ruben-Vezo 3 POR RB #> 1706 /en/players/a9dc785c/Neto 13 BRA GK #> 1707 /en/players/a6154613/Luis-Suarez 9 URU FW #> 1708 /en/players/0ef89a37/Philippe-Coutinho 7 BRA LW,LM #> 1709 /en/players/b19db005/Ousmane-Dembele 11 FRA RW,LW #> 1710 /en/players/8696bc90/Munir-El-Haddadi 19 MAR LW #> 1711 /en/players/89f951b5/Ivan-Rakitic 4 CRO LM,RM #> 1712 /en/players/335fa267/Sergi-Roberto 20 ESP CM #> 1713 /en/players/5ab0ea87/Sergio-Busquets 5 ESP CM #> 1714 /en/players/67cdbc0e/Arturo-Vidal 22 CHI RM #> 1715 /en/players/d70ce98e/Lionel-Messi 10 ARG RW #> 1716 /en/players/4601e194/Jordi-Alba 18 ESP LB #> 1717 /en/players/4f28a6ff/Clement-Lenglet 15 FRA CB #> 1718 /en/players/adfc9123/Gerard-Pique 3 ESP CB #> 1719 /en/players/d04b94db/Nelson-Semedo 2 POR RB #> 1720 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER GK #> 1721 /en/players/6a99e0b1/Inaki-Williams 9 GHA FW #> 1722 /en/players/293211e1/Aritz-Aduriz 20 ESP FW #> 1723 /en/players/b6e50615/Yuri-Berchiche 12 ESP LW #> 1724 /en/players/6fd1ba62/Markel-Susaeta 14 ESP RW #> 1725 /en/players/b418dbd4/Raul-Garcia 22 ESP AM #> 1726 /en/players/b037bd4f/Benat-Etxebarria 7 ESP DM #> 1727 /en/players/003a5c72/Mikel-San-Jose 6 ESP DM #> 1728 /en/players/240d3a0b/Dani-Garcia 16 ESP DM #> 1729 /en/players/1fe67e86/Mikel-Balenziaga 24 ESP LB #> 1730 /en/players/3fc45c73/Inigo-Martinez 4 ESP CB #> 1731 /en/players/857cb4f3/Peru-Nolaskoain 31 ESP CB #> 1732 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP CB #> 1733 /en/players/9f323c71/Oscar-de-Marcos 18 ESP RB #> 1734 /en/players/5dcf3e90/Unai-Simon 25 ESP GK #> 1735 /en/players/e897d8ba/Kike 17 ESP FW #> 1736 /en/players/c4b8bcf4/Charles 19 BRA FW #> 1737 /en/players/bb4b1242/Sergi-Enrich 9 ESP FW #> 1738 /en/players/ba5a9545/Pablo-Hervias 18 ESP LM #> 1739 /en/players/88d91621/Sergio-Alvarez 6 ESP CM #> 1740 /en/players/2a0c8ba4/Joan-Jordan 24 ESP CM #> 1741 /en/players/7329018e/Papakouli-Diop 8 SEN CM #> 1742 /en/players/c90977db/Fabian-Orellana 14 CHI RM #> 1743 /en/players/3024e383/Jose-Angel 15 ESP LB #> 1744 /en/players/697295b1/Pedro-Bigas 3 ESP CB #> 1745 /en/players/d2be40f2/Ivan-Ramis 4 ESP CB #> 1746 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP CB #> 1747 /en/players/1f079188/Ruben-Pena 11 ESP RB #> 1748 /en/players/ac295d9e/Marko-Dmitrovic 1 SRB GK #> 1749 /en/players/3effaa34/Andre-Silva 12 POR FW #> 1750 /en/players/eb2fe5b6/Luis-Muriel 14 COL FW #> 1751 /en/players/942b4f90/Wissam-Ben-Yedder 9 FRA FW #> 1752 /en/players/b182a240/Quincy-Promes 21 NED LM #> 1753 /en/players/467bae22/Franco-Vazquez 22 ARG CM,RM #> 1754 /en/players/fa937f7a/Ever-Banega 10 ARG CM #> 1755 /en/players/9744ff80/Pablo-Sarabia 17 ESP CM #> 1756 /en/players/7c4243d4/Roque-Mesa 7 ESP CM #> 1757 /en/players/2b15a82a/Guilherme-Arana 23 BRA WB,LB #> 1758 /en/players/3f10bd22/Jesus-Navas 16 ESP WB,RB #> 1759 /en/players/bc6f5f06/Sergi-Gomez 3 ESP CB #> 1760 /en/players/8b8a56ce/Simon-Kjaer 4 DEN CB #> 1761 /en/players/e1deea75/Daniel-Carrico 6 POR CB #> 1762 /en/players/7b456af7/Tomas-Vaclik 1 CZE GK #> 1763 /en/players/70d74ece/Karim-Benzema 9 FRA FW #> 1764 /en/players/7111d552/Vinicius-Junior 28 BRA LW #> 1765 /en/players/45af8a54/Marco-Asensio 20 ESP LW,RW,FW #> 1766 /en/players/a58bb1e1/Gareth-Bale 11 WAL RW #> 1767 /en/players/c0617e2b/Dani-Ceballos 24 ESP LW,RM #> 1768 /en/players/6ce1f46f/Toni-Kroos 8 GER LM #> 1769 /en/players/4d224fe8/Casemiro 14 BRA CM #> 1770 /en/players/6025fab1/Luka-Modric 10 CRO RM #> 1771 /en/players/fd51b456/Lucas-Vazquez 17 ESP RM,RW #> 1772 /en/players/2946f9a1/Nacho 6 ESP LB #> 1773 /en/players/08511d65/Sergio-Ramos 4 ESP CB #> 1774 /en/players/9f8e9423/Raphael-Varane 5 FRA CB #> 1775 /en/players/4958bfb2/Dani-Carvajal 2 ESP RB #> 1776 /en/players/1840e36d/Thibaut-Courtois 25 BEL GK #> 1777 /en/players/df69b544/Antoine-Griezmann 7 FRA FW #> 1778 /en/players/a190d597/Diego-Costa 19 ESP FW #> 1779 /en/players/529f49ab/Thomas-Partey 5 GHA CM #> 1780 /en/players/55126f3b/Koke 6 ESP LM #> 1781 /en/players/6434f10d/Rodri 14 ESP CM #> 1782 /en/players/d4931a5a/Nikola-Kalinic 9 CRO FW #> 1783 /en/players/c14bc029/Saul-Niguez 8 ESP CM,RM #> 1784 /en/players/4dbd0916/Thomas-Lemar 11 FRA RM #> 1785 /en/players/01eb744d/Angel-Correa 10 ARG RM,FW #> 1786 /en/players/e4ed2628/Filipe-Luis 3 BRA LB #> 1787 /en/players/fc4f85b1/Diego-Godin 2 URU CB #> 1788 /en/players/f0da930c/Jose-Maria-Gimenez 24 URU CB #> 1789 /en/players/cfd8d664/Juanfran 20 ESP RB #> 1790 /en/players/ee8508c0/Jan-Oblak 13 SVN GK #> 1791 /en/players/71b47ab9/Cucho 9 COL FW #> 1792 /en/players/253a06b9/Ezequiel-Avila 19 ARG LW #> 1793 /en/players/36d5469c/Alex-Gallar 11 ESP RW #> 1794 /en/players/3902e91b/Gonzalo-Melero 8 ESP AM #> 1795 /en/players/18dc8533/Juan-Aguilera 5 ESP DM #> 1796 /en/players/74e0a984/Damian-Musto 23 ARG DM #> 1797 /en/players/5a626448/Moi-Gomez 6 ESP DM #> 1798 /en/players/f2a68b97/Carlos-Akapo 15 EQG LB #> 1799 /en/players/4a895384/Xabier-Etxeita 3 ESP CB #> 1800 /en/players/c904f3d5/Ruben-Semedo 4 POR CB #> 1801 /en/players/978cd030/Jorge-Pulido 14 ESP RB,CB #> 1802 /en/players/7f4c7c9f/Jorge-Miramon 24 ESP LB,RB #> 1803 /en/players/8970907e/David-Ferreiro 7 ESP LB #> 1804 /en/players/129dd8e7/Aleksandar-Jovanovic 25 SRB GK #> 1805 /en/players/220c11f1/Cristhian-Stuani 7 URU FW #> 1806 /en/players/1bda5842/Portu 9 ESP FW #> 1807 /en/players/a10361d2/Aleix-Garcia 23 ESP LM,CM #> 1808 /en/players/a25250f8/Alex-Granell 6 ESP CM #> 1809 /en/players/e7f4603c/Borja-Garcia 10 ESP CM #> 1810 /en/players/ba71d071/Pedro-Alcala 5 ESP CB #> 1811 /en/players/6f7d826d/Douglas-Luiz 12 BRA CM #> 1812 /en/players/29b61deb/Pere-Pons 8 ESP RM,CM #> 1813 /en/players/38699c72/Anthony-Lozano 19 HON CM #> 1814 /en/players/4db76f57/Marc-Muniesa 20 ESP LB #> 1815 /en/players/4242011c/Bernardo-Espinosa 2 COL CB #> 1816 /en/players/1633fc8a/Juanpe 15 ESP CB #> 1817 /en/players/5890cef1/Aday 11 ESP RB #> 1818 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK #> 1819 /en/players/09a9e921/Carlos-Bacca 9 COL FW #> 1820 /en/players/81f0781e/Gerard-Moreno 7 ESP FW,LM #> 1821 /en/players/e2e9c250/Santi-Cazorla 19 ESP LM #> 1822 /en/players/5ceba7fc/Karl-Toko-Ekambi 17 CMR FW,RM #> 1823 /en/players/89cbc961/Ramiro-Funes-Mori 4 ARG CM #> 1824 /en/players/963829d0/Manu-Trigueros 14 ESP CM #> 1825 /en/players/82927de4/Pablo-Fornals 8 ESP RM,LM #> 1826 /en/players/808d48f3/Jaume-Costa 11 ESP LB #> 1827 /en/players/63f04c6c/Alfonso-Pedraza 16 ESP LB #> 1828 /en/players/b3dc6eca/Victor-Ruiz 6 ESP CB #> 1829 /en/players/42dcf26d/Alvaro-Gonzalez 3 ESP CB #> 1830 /en/players/fb5d47b3/Mario-Gaspar 2 ESP RB #> 1831 /en/players/ad6295d4/Miguel-Layun 24 MEX RB #> 1832 /en/players/9f0ea33f/Sergio-Asenjo 1 ESP GK #> 1833 /en/players/8b0b02c9/Duje-Cop 20 CRO FW #> 1834 /en/players/25c72b36/Leonardo-Suarez 32 ARG FW #> 1835 /en/players/c93231dc/Anuar 23 MAR FW #> 1836 /en/players/636eae97/Toni-Villa 19 ESP LM #> 1837 /en/players/d2fa73e7/Ivi 7 ESP LM #> 1838 /en/players/036bba5f/Ruben-Alcaraz 14 ESP CM #> 1839 /en/players/418f8f61/Michel 21 ESP CM #> 1840 /en/players/9127f9ce/Borja-Fernandez 8 ESP CM #> 1841 /en/players/dbe519cf/Antonito 18 ESP RM #> 1842 /en/players/e29d1111/Nacho 22 ESP LB #> 1843 /en/players/41b3069f/Fernando-Calero 5 ESP CB #> 1844 /en/players/72b07a9c/Kiko-Olivas 4 ESP CB #> 1845 /en/players/933e8c8a/Javi-Moyano 17 ESP RB #> 1846 /en/players/8fae77ea/Jordi-Masip 1 ESP GK #> 1847 /en/players/4a478107/Jose-Luis-Morales 11 ESP FW #> 1848 /en/players/2e23c66b/Emmanuel-Boateng 21 GHA FW #> 1849 /en/players/ecd8c01e/Ruben-Rochina 16 ESP CM #> 1850 /en/players/e208bcc8/Cheick-Doukoure 5 CIV CM #> 1851 /en/players/51c30111/Sanjin-Prcic 8 BIH CM #> 1852 /en/players/61220da2/Jose-Campana 24 ESP CM #> 1853 /en/players/d4ef9ac5/Tono 3 ESP WB #> 1854 /en/players/9038c2a1/Jason 23 ESP WB #> 1855 /en/players/5f3eaaf5/Moses-Simon 7 NGA CM #> 1856 /en/players/c00097d2/Rober 4 ESP CB #> 1857 /en/players/474ecac8/Sergio-Postigo 15 ESP CB #> 1858 /en/players/e7ab4179/Erick-Cabaco 18 URU CB #> 1859 /en/players/7f203b54/Chema 6 ESP WB #> 1860 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK #> 1861 /en/players/99bebd12/John-Guidetti 10 SWE FW #> 1862 /en/players/6922f806/Jonathan-Calleri 12 ARG FW #> 1863 /en/players/19b776e9/Ruben-Sobrino 7 ESP FW #> 1864 /en/players/45e304c8/Burgui 14 ESP LM #> 1865 /en/players/244f57b9/Jony 23 ESP LM #> 1866 /en/players/05a4465d/Manu-Garcia 19 ESP CM #> 1867 /en/players/e54bd0a2/Tomas-Pina-Isla 8 ESP CM #> 1868 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RM #> 1869 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB #> 1870 /en/players/8db394aa/Ximo-Navarro 15 ESP RB #> 1871 /en/players/d9764034/Guillermo-Maripan 6 CHI CB #> 1872 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB #> 1873 /en/players/355c883a/Martin-Agirregabiria 21 ESP LB,RB #> 1874 /en/players/97852360/Fernando-Pacheco 1 ESP GK #> 1875 /en/players/4c5b14d2/Joaquin 17 ESP FW,WB,CM #> 1876 /en/players/0a0cc13c/Sergio-Leon 7 ESP FW #> 1877 /en/players/3aa4a3be/Loren-Moron 16 ESP FW #> 1878 /en/players/d7553721/Giovani-Lo-Celso 21 ARG CM #> 1879 /en/players/a6de370d/Sergio-Canales 6 ESP CM #> 1880 /en/players/0a447501/Antonio-Sanabria 9 PAR FW #> 1881 /en/players/1001ae82/Ryad-Boudebouz 10 ALG CM #> 1882 /en/players/72a99e38/Cristian-Tello 11 ESP WB #> 1883 /en/players/487d9b09/Antonio-Barragan 19 ESP WB #> 1884 /en/players/dee86451/William-Carvalho 14 POR CM #> 1885 /en/players/b742cc0d/Marc-Bartra 5 ESP CB #> 1886 /en/players/167c1bb0/Javi-Garcia 3 ESP CB #> 1887 /en/players/fbd6378b/Aissa-Mandi 23 ALG CB #> 1888 /en/players/cda0b317/Joel-Robles 1 ESP GK #> 1889 /en/players/04e17fd5/Youssef-En-Nesyri 26 MAR FW #> 1890 /en/players/8f898ba8/Guido-Carrillo 9 ARG FW #> 1891 /en/players/19709006/Oscar-Rodriguez-Arnaiz 27 ESP LM #> 1892 /en/players/b0fce72c/Mikel-Vesga 23 ESP CM #> 1893 /en/players/ac454a4f/Gerard-Gumbau 6 ESP CM,LM #> 1894 /en/players/3c7bc9bd/Ruben-Perez 21 ESP CM #> 1895 /en/players/37f96552/Nabil-El-Zhar 10 MAR RM #> 1896 /en/players/1d5f96d9/Sabin-Merino 18 ESP RM #> 1897 /en/players/f2308b33/Jonathan-Silva 5 ARG LB #> 1898 /en/players/1a317a1b/Raul-Garcia 14 ESP CB #> 1899 /en/players/f3112790/Unai-Bustinza 3 ESP CB #> 1900 /en/players/a03c82b2/Rodrigo-Tarin 28 ESP CB #> 1901 /en/players/9ba48d64/Juanfran 2 ESP RB #> 1902 /en/players/75751c99/Ivan-Cuellar 1 ESP GK #> 1903 /en/players/4c2e9442/Maxi-Gomez 9 URU FW #> 1904 /en/players/7dcf86f6/Iago-Aspas 10 ESP FW #> 1905 /en/players/c9e39d91/Brais-Mendez 23 ESP LM,RM #> 1906 /en/players/e1cbb531/Stanislav-Lobotka 14 SVK CM #> 1907 /en/players/ed5c5fa3/Fran-Beltran 8 ESP CM #> 1908 /en/players/e49ce451/Okay-Yokuslu 5 TUR CM #> 1909 /en/players/0f134faf/Mathias-Jensen 18 DEN RM #> 1910 /en/players/27a013f7/Nestor-Araujo 4 MEX CB,RM #> 1911 /en/players/b18a3023/Junior-Alonso 25 PAR LB #> 1912 /en/players/51e3954c/Facundo-Roncaglia 24 ARG CB #> 1913 /en/players/fd9c4805/Pione-Sisto 11 DEN LM #> 1914 /en/players/92b4a127/Gustavo-Cabral 22 ARG CB #> 1915 /en/players/cb574619/Hugo-Mallo 2 ESP RB #> 1916 /en/players/8875b8c9/Sergio-Alvarez 1 ESP GK #> 1917 /en/players/43f71e77/Jorge-Molina 19 ESP FW #> 1918 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW #> 1919 /en/players/c7429db3/Robert-Ibanez 17 ESP RM,LM #> 1920 /en/players/f3b1d9a2/Amath 11 SEN LM,RM #> 1921 /en/players/04a65a8f/Markel-Bergara 5 ESP CM #> 1922 /en/players/00b28772/Nemanja-Maksimovic 20 SRB CM #> 1923 /en/players/58afe001/Mauro-Arambarri 18 URU CM #> 1924 /en/players/02319ad7/Jaime-Mata 7 ESP FW,LM #> 1925 /en/players/8e010ff4/Francisco-Portillo 8 ESP RM,CM #> 1926 /en/players/3e4f735d/Vitorino-Antunes 3 POR LB #> 1927 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB #> 1928 /en/players/a4971d84/Djene 2 TOG CB #> 1929 /en/players/ba5004e1/Damian-Suarez 22 URU RB #> 1930 /en/players/8f8c6934/David-Soria 13 ESP GK #> 1931 /en/players/6a99e0b1/Inaki-Williams 9 GHA FW,LW #> 1932 /en/players/c05dfb74/Iker-Muniain 10 ESP LW,AM #> 1933 /en/players/6fd1ba62/Markel-Susaeta 14 ESP RW #> 1934 /en/players/b037bd4f/Benat-Etxebarria 7 ESP LM,DM #> 1935 /en/players/003a5c72/Mikel-San-Jose 6 ESP DM #> 1936 /en/players/240d3a0b/Dani-Garcia 16 ESP CM,DM #> 1937 /en/players/b418dbd4/Raul-Garcia 22 ESP RM #> 1938 /en/players/293211e1/Aritz-Aduriz 20 ESP FW #> 1939 /en/players/b6e50615/Yuri-Berchiche 12 ESP LB #> 1940 /en/players/3fc45c73/Inigo-Martinez 4 ESP CB #> 1941 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP CB #> 1942 /en/players/9f323c71/Oscar-de-Marcos 18 ESP RB #> 1943 /en/players/37f1cf47/Ander-Capa 21 ESP RB #> 1944 /en/players/5dcf3e90/Unai-Simon 25 ESP GK #> 1945 /en/players/debc6b55/Jon-Bautista 21 ESP FW #> 1946 /en/players/8c3c640c/Mikel-Oyarzabal 10 ESP LW #> 1947 /en/players/5d311e8d/Hector-Moreno 6 MEX LW #> 1948 /en/players/7958dc65/Luca-Sangalli 23 ESP RW #> 1949 /en/players/833fb62e/Sandro-Ramirez 24 ESP RW #> 1950 /en/players/2306bfde/Ruben-Pardo 14 ESP AM #> 1951 /en/players/d9bda115/David-Zurutuza 17 ESP AM #> 1952 /en/players/5c7845f6/Igor-Zubeldia 5 ESP DM #> 1953 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP DM #> 1954 /en/players/f1bed920/Kevin-Rodrigues 20 POR LB #> 1955 /en/players/ad178594/Raul-Navas 22 ESP CB #> 1956 /en/players/f7dc2ae5/Aritz-Elustondo 15 ESP CB #> 1957 /en/players/6f5f82c0/Andoni-Gorosabel 18 ESP RB #> 1958 /en/players/011d8c56/Miguel-Angel-Moya 13 ESP GK #> 1959 /en/players/220c11f1/Cristhian-Stuani 7 URU FW #> 1960 /en/players/1bda5842/Portu 9 ESP FW #> 1961 /en/players/c49afee6/Seydou-Doumbia 22 CIV FW #> 1962 /en/players/a25250f8/Alex-Granell 6 ESP CM #> 1963 /en/players/e7f4603c/Borja-Garcia 10 ESP CM #> 1964 /en/players/6f7d826d/Douglas-Luiz 12 BRA CM #> 1965 /en/players/5890cef1/Aday 11 ESP WB #> 1966 /en/players/59d93937/Patrick-Roberts 17 ENG WB #> 1967 /en/players/27d0a506/Pedro-Porro 29 ESP WB #> 1968 /en/players/38699c72/Anthony-Lozano 19 HON WB #> 1969 /en/players/4db76f57/Marc-Muniesa 20 ESP CB #> 1970 /en/players/4242011c/Bernardo-Espinosa 2 COL CB #> 1971 /en/players/1633fc8a/Juanpe 15 ESP CB #> 1972 /en/players/f6798fc3/Yassine-Bounou 13 MAR GK #> 1973 /en/players/c4b8bcf4/Charles 19 BRA FW #> 1974 /en/players/e897d8ba/Kike 17 ESP FW #> 1975 /en/players/bb4b1242/Sergi-Enrich 9 ESP FW #> 1976 /en/players/88d91621/Sergio-Alvarez 6 ESP CM #> 1977 /en/players/9ab48bde/Pablo-de-Blasis 16 ARG LM,RM #> 1978 /en/players/2a0c8ba4/Joan-Jordan 24 ESP CM,FW #> 1979 /en/players/7329018e/Papakouli-Diop 8 SEN CM #> 1980 /en/players/c90977db/Fabian-Orellana 14 CHI RM #> 1981 /en/players/1daec722/Marc-Cucurella 20 ESP LM,RM #> 1982 /en/players/3024e383/Jose-Angel 15 ESP LB #> 1983 /en/players/850c0a0d/Anaitz-Arbilla 23 ESP CB #> 1984 /en/players/a8fbae1d/Paulo-Oliveira 12 POR CB #> 1985 /en/players/1f079188/Ruben-Pena 11 ESP RB #> 1986 /en/players/ac295d9e/Marko-Dmitrovic 1 SRB GK #> 1987 /en/players/02319ad7/Jaime-Mata 7 ESP FW #> 1988 /en/players/8cfc2f69/Angel-Rodriguez 9 ESP FW #> 1989 /en/players/43f71e77/Jorge-Molina 19 ESP FW #> 1990 /en/players/f3b1d9a2/Amath 11 SEN LM #> 1991 /en/players/c7429db3/Robert-Ibanez 17 ESP RM #> 1992 /en/players/00b28772/Nemanja-Maksimovic 20 SRB CM #> 1993 /en/players/58afe001/Mauro-Arambarri 18 URU CM #> 1994 /en/players/04a65a8f/Markel-Bergara 5 ESP CM #> 1995 /en/players/8e010ff4/Francisco-Portillo 8 ESP RM,LM #> 1996 /en/players/3e4f735d/Vitorino-Antunes 3 POR LB #> 1997 /en/players/f11fe861/Bruno-Gonzalez 4 ESP CB #> 1998 /en/players/a4971d84/Djene 2 TOG CB #> 1999 /en/players/ba5004e1/Damian-Suarez 22 URU RB #> 2000 /en/players/8f8c6934/David-Soria 13 ESP GK #> 2001 /en/players/2e23c66b/Emmanuel-Boateng 21 GHA FW #> 2002 /en/players/64e8ed6d/Borja-Mayoral 2 ESP FW #> 2003 /en/players/4a478107/Jose-Luis-Morales 11 ESP FW #> 2004 /en/players/61220da2/Jose-Campana 24 ESP CM #> 2005 /en/players/ecd8c01e/Ruben-Rochina 16 ESP CM #> 2006 /en/players/51c30111/Sanjin-Prcic 8 BIH CM #> 2007 /en/players/cac2537b/Enis-Bardhi 10 MKD CM #> 2008 /en/players/d4ef9ac5/Tono 3 ESP WB #> 2009 /en/players/9038c2a1/Jason 23 ESP WB #> 2010 /en/players/c00097d2/Rober 4 ESP CB #> 2011 /en/players/474ecac8/Sergio-Postigo 15 ESP CB #> 2012 /en/players/e7ab4179/Erick-Cabaco 18 URU CB #> 2013 /en/players/a60823a4/Pedro-Lopez-Munoz 19 ESP CB #> 2014 /en/players/b5bdf144/Oier-Olazabal 13 ESP GK #> 2015 /en/players/6922f806/Jonathan-Calleri 12 ARG FW #> 2016 /en/players/244f57b9/Jony 23 ESP LW #> 2017 /en/players/9d2a3d5f/Ibai-Gomez 11 ESP RW #> 2018 /en/players/19b776e9/Ruben-Sobrino 7 ESP RW #> 2019 /en/players/999908af/Wakaso 22 GHA LM #> 2020 /en/players/05a4465d/Manu-Garcia 19 ESP LM #> 2021 /en/players/e54bd0a2/Tomas-Pina-Isla 8 ESP CM #> 2022 /en/players/4accb7e0/Darko-Brasanac 20 SRB RM #> 2023 /en/players/1fe0492d/Ruben-Duarte 3 ESP LB #> 2024 /en/players/d9764034/Guillermo-Maripan 6 CHI CB #> 2025 /en/players/355c883a/Martin-Agirregabiria 21 ESP RB #> 2026 /en/players/b7c99b9b/Victor-Laguardia 5 ESP CB #> 2027 /en/players/8db394aa/Ximo-Navarro 15 ESP RB,CB #> 2028 /en/players/97852360/Fernando-Pacheco 1 ESP GK #> 2029 /en/players/70d74ece/Karim-Benzema 9 FRA FW #> 2030 /en/players/5c4dc0ff/Mariano 7 DOM FW #> 2031 /en/players/c0617e2b/Dani-Ceballos 24 ESP LW,LM #> 2032 /en/players/a58bb1e1/Gareth-Bale 11 WAL RW,LW #> 2033 /en/players/7111d552/Vinicius-Junior 28 BRA LW #> 2034 /en/players/6ce1f46f/Toni-Kroos 8 GER LM,CM #> 2035 /en/players/4d224fe8/Casemiro 14 BRA CM #> 2036 /en/players/45af8a54/Marco-Asensio 20 ESP RW,CM #> 2037 /en/players/6025fab1/Luka-Modric 10 CRO RM #> 2038 /en/players/2946f9a1/Nacho 6 ESP LB #> 2039 /en/players/08511d65/Sergio-Ramos 4 ESP CB #> 2040 /en/players/9f8e9423/Raphael-Varane 5 FRA CB #> Age Min Tkl_Tackles TklW_Tackles Def 3rd_Tackles Mid 3rd_Tackles #> 1 31-309 80 1 0 0 1 #> 2 21-193 10 0 0 0 0 #> 3 27-288 90 0 0 0 0 #> 4 26-088 90 0 0 0 0 #> 5 21-050 61 0 0 0 0 #> 6 25-114 29 0 0 0 0 #> 7 28-304 73 2 2 1 1 #> 8 25-178 17 1 0 1 0 #> 9 30-015 90 0 0 0 0 #> 10 26-143 90 1 0 0 1 #> 11 29-037 90 2 2 1 1 #> 12 27-109 90 1 1 1 0 #> 13 18-338 90 4 3 1 1 #> 14 27-134 90 0 0 0 0 #> 15 21-211 63 1 1 0 0 #> 16 27-187 27 0 0 0 0 #> 17 23-222 87 8 6 5 1 #> 18 30-019 3 1 0 1 0 #> 19 26-233 90 1 0 0 1 #> 20 23-214 70 3 1 1 2 #> 21 22-058 20 0 0 0 0 #> 22 27-108 90 1 0 0 1 #> 23 37-215 90 2 2 0 2 #> 24 29-163 90 7 3 6 1 #> 25 22-337 90 2 1 2 0 #> 26 29-361 90 1 1 1 0 #> 27 32-175 90 0 0 0 0 #> 28 29-226 90 0 0 0 0 #> 29 24-230 90 0 0 0 0 #> 30 28-179 62 0 0 0 0 #> 31 22-166 28 0 0 0 0 #> 32 21-360 90 5 4 1 2 #> 33 22-159 73 5 2 1 4 #> 34 31-066 17 0 0 0 0 #> 35 31-323 90 1 0 0 0 #> 36 27-182 90 5 2 1 2 #> 37 26-132 65 2 2 0 1 #> 38 30-076 25 0 0 0 0 #> 39 29-228 90 1 1 1 0 #> 40 27-214 90 5 2 3 2 #> 41 26-299 90 1 1 0 1 #> 42 23-247 90 0 0 0 0 #> 43 27-226 73 0 0 0 0 #> 44 27-153 17 0 0 0 0 #> 45 31-025 90 0 0 0 0 #> 46 23-046 90 4 3 4 0 #> 47 25-078 90 1 0 0 1 #> 48 25-340 67 2 0 1 0 #> 49 24-270 23 2 2 1 1 #> 50 24-042 89 2 0 1 1 #> 51 22-339 1 0 0 0 0 #> 52 28-283 90 0 0 0 0 #> 53 26-167 90 0 0 0 0 #> 54 29-286 90 2 1 2 0 #> 55 31-113 90 1 1 1 0 #> 56 28-337 90 0 0 0 0 #> 57 22-004 89 1 0 0 0 #> 58 21-221 1 0 0 0 0 #> 59 23-195 51 1 1 1 0 #> 60 21-025 39 0 0 0 0 #> 61 21-223 76 3 1 1 1 #> 62 24-335 14 0 0 0 0 #> 63 31-017 90 0 0 0 0 #> 64 23-266 90 0 0 0 0 #> 65 19-196 90 1 1 0 1 #> 66 25-190 90 2 1 0 2 #> 67 32-308 90 0 0 0 0 #> 68 26-354 90 1 1 1 0 #> 69 27-057 90 0 0 0 0 #> 70 32-015 90 0 0 0 0 #> 71 25-213 70 0 0 0 0 #> 72 35-070 20 1 1 1 0 #> 73 29-140 80 3 2 1 1 #> 74 20-085 10 0 0 0 0 #> 75 25-357 70 1 1 1 0 #> 76 29-174 20 2 2 1 1 #> 77 24-239 90 1 0 1 0 #> 78 21-265 90 4 2 4 0 #> 79 30-344 90 4 2 3 1 #> 80 29-070 90 1 0 0 0 #> 81 23-061 90 1 0 1 0 #> 82 28-313 90 2 1 2 0 #> 83 32-209 90 5 1 2 3 #> 84 36-288 90 0 0 0 0 #> 85 25-338 90 0 0 0 0 #> 86 26-133 90 0 0 0 0 #> 87 33-248 72 1 0 0 1 #> 88 26-305 18 0 0 0 0 #> 89 19-218 64 2 2 0 2 #> 90 22-293 26 1 0 0 1 #> 91 21-174 90 3 1 2 0 #> 92 22-177 76 0 0 0 0 #> 93 31-344 14 0 0 0 0 #> 94 22-131 90 2 2 2 0 #> 95 27-166 90 1 1 1 0 #> 96 28-222 90 0 0 0 0 #> 97 27-267 90 4 3 2 0 #> 98 29-051 90 0 0 0 0 #> 99 26-268 90 0 0 0 0 #> 100 25-300 67 0 0 0 0 #> 101 25-090 23 0 0 0 0 #> 102 22-057 58 1 1 0 1 #> 103 32-030 32 0 0 0 0 #> 104 21-141 90 2 1 1 0 #> 105 28-163 90 2 0 1 1 #> 106 21-119 79 3 1 1 1 #> 107 24-143 11 0 0 0 0 #> 108 20-316 90 1 0 1 0 #> 109 30-213 90 0 0 0 0 #> 110 25-002 90 1 1 1 0 #> 111 26-055 90 0 0 0 0 #> 112 26-090 90 1 0 1 0 #> 113 31-055 90 0 0 0 0 #> 114 31-206 90 0 0 0 0 #> 115 21-095 76 0 0 0 0 #> 116 22-006 14 0 0 0 0 #> 117 30-161 90 0 0 0 0 #> 118 30-033 84 1 1 0 0 #> 119 31-088 6 1 1 0 1 #> 120 26-192 90 3 1 1 1 #> 121 29-150 90 0 0 0 0 #> 122 24-277 90 0 0 0 0 #> 123 31-197 90 1 0 0 1 #> 124 24-275 45 0 0 0 0 #> 125 26-067 45 1 1 0 0 #> 126 26-110 90 0 0 0 0 #> 127 26-078 70 0 0 0 0 #> 128 24-293 20 0 0 0 0 #> 129 27-040 67 2 1 1 0 #> 130 25-358 23 0 0 0 0 #> 131 28-280 90 2 1 2 0 #> 132 32-114 90 6 2 3 3 #> 133 28-276 67 2 1 2 0 #> 134 21-221 23 0 0 0 0 #> 135 28-024 90 4 1 4 0 #> 136 22-304 90 0 0 0 0 #> 137 24-104 90 2 1 2 0 #> 138 28-286 90 2 2 1 1 #> 139 22-100 90 2 1 2 0 #> 140 26-092 90 0 0 0 0 #> 141 28-267 45 0 0 0 0 #> 142 34-137 45 1 1 0 0 #> 143 28-174 90 0 0 0 0 #> 144 28-038 55 0 0 0 0 #> 145 25-145 35 2 1 0 2 #> 146 24-044 90 5 3 2 3 #> 147 32-153 90 1 1 0 1 #> 148 32-204 90 0 0 0 0 #> 149 28-348 90 0 0 0 0 #> 150 31-096 78 3 2 3 0 #> 151 27-338 12 0 0 0 0 #> 152 26-223 90 4 4 3 1 #> 153 27-032 90 2 1 1 1 #> 154 26-207 90 0 0 0 0 #> 155 26-219 90 1 0 1 0 #> 156 19-121 76 0 0 0 0 #> 157 24-137 14 0 0 0 0 #> 158 24-057 90 2 2 1 1 #> 159 24-229 90 0 0 0 0 #> 160 31-071 89 3 3 2 1 #> 161 30-140 1 0 0 0 0 #> 162 26-153 69 0 0 0 0 #> 163 24-194 21 3 3 2 1 #> 164 33-106 90 6 4 3 3 #> 165 30-292 90 1 0 1 0 #> 166 27-133 90 1 1 0 1 #> 167 29-078 90 3 3 2 1 #> 168 22-172 90 0 0 0 0 #> 169 30-115 90 2 1 0 1 #> 170 26-104 90 1 0 0 1 #> 171 22-157 75 1 1 0 1 #> 172 28-170 15 0 0 0 0 #> 173 24-157 67 0 0 0 0 #> 174 36-157 23 0 0 0 0 #> 175 27-059 90 2 2 1 1 #> 176 26-151 90 0 0 0 0 #> 177 25-072 90 1 1 1 0 #> 178 36-040 90 0 0 0 0 #> 179 27-230 90 5 3 4 1 #> 180 33-039 90 1 1 1 0 #> 181 33-191 90 0 0 0 0 #> 182 22-286 90 0 0 0 0 #> 183 29-178 90 1 1 1 0 #> 184 26-100 76 1 0 0 1 #> 185 27-125 14 0 0 0 0 #> 186 30-051 69 1 1 1 0 #> 187 25-135 21 2 1 0 2 #> 188 29-073 90 2 1 2 0 #> 189 28-351 60 2 2 1 1 #> 190 28-363 30 0 0 0 0 #> 191 32-271 90 1 1 0 1 #> 192 26-144 90 3 2 2 1 #> 193 29-146 90 0 0 0 0 #> 194 31-154 90 2 2 1 1 #> 195 29-143 90 0 0 0 0 #> 196 30-243 90 2 2 0 0 #> 197 22-210 90 1 0 0 1 #> 198 29-034 76 1 0 0 1 #> 199 27-049 14 0 0 0 0 #> 200 26-120 57 3 1 2 0 #> 201 26-177 33 1 0 0 1 #> 202 28-227 90 2 1 1 1 #> 203 22-012 70 1 0 0 0 #> 204 32-344 20 1 1 0 1 #> 205 30-099 90 3 3 1 1 #> 206 32-142 90 1 1 1 0 #> 207 28-213 90 2 2 1 1 #> 208 26-220 90 2 2 1 0 #> 209 31-247 90 0 0 0 0 #> 210 36-119 70 0 0 0 0 #> 211 31-115 20 0 0 0 0 #> 212 22-034 57 0 0 0 0 #> 213 29-299 33 0 0 0 0 #> 214 26-083 90 2 0 1 1 #> 215 22-323 90 4 3 0 4 #> 216 28-067 63 0 0 0 0 #> 217 23-190 27 0 0 0 0 #> 218 23-205 90 4 3 1 3 #> 219 27-063 90 1 0 0 1 #> 220 28-087 90 0 0 0 0 #> 221 26-231 90 4 3 4 0 #> 222 30-114 90 4 3 1 1 #> 223 25-137 90 0 0 0 0 #> 224 22-256 66 0 0 0 0 #> 225 31-103 24 0 0 0 0 #> 226 27-167 90 1 1 0 0 #> 227 29-081 90 1 1 0 1 #> 228 25-186 90 3 3 3 0 #> 229 29-126 90 3 3 1 1 #> 230 21-230 75 4 2 1 2 #> 231 24-322 15 0 0 0 0 #> 232 23-087 90 3 2 3 0 #> 233 27-267 90 0 0 0 0 #> 234 31-314 66 1 1 1 0 #> 235 21-244 24 0 0 0 0 #> 236 25-328 90 1 1 1 0 #> 237 29-032 90 0 0 0 0 #> 238 27-152 71 1 1 1 0 #> 239 23-101 19 0 0 0 0 #> 240 29-317 90 0 0 0 0 #> 241 22-281 62 4 3 4 0 #> 242 28-291 28 2 2 0 1 #> 243 23-272 90 1 0 1 0 #> 244 26-224 90 1 1 1 0 #> 245 23-164 80 1 0 0 0 #> 246 25-068 10 0 0 0 0 #> 247 33-011 90 7 5 3 4 #> 248 32-185 90 6 2 3 3 #> 249 27-224 90 1 1 1 0 #> 250 33-223 90 2 1 2 0 #> 251 25-225 90 0 0 0 0 #> 252 37-190 69 0 0 0 0 #> 253 21-160 21 0 0 0 0 #> 254 24-066 90 0 0 0 0 #> 255 30-249 90 2 2 0 1 #> 256 25-244 90 1 1 0 1 #> 257 28-088 90 2 2 1 0 #> 258 22-294 75 1 1 0 0 #> 259 32-040 15 0 0 0 0 #> 260 28-191 90 1 1 1 0 #> 261 19-299 90 2 1 1 1 #> 262 23-208 90 0 0 0 0 #> 263 29-128 64 1 1 0 1 #> 264 26-193 26 0 0 0 0 #> 265 21-070 90 0 0 0 0 #> 266 27-087 84 1 0 0 0 #> 267 21-080 6 0 0 0 0 #> 268 28-151 57 1 0 0 1 #> 269 25-160 33 2 2 1 1 #> 270 24-052 90 2 2 1 1 #> 271 23-245 90 2 1 0 2 #> 272 29-116 90 2 2 0 2 #> 273 31-358 64 0 0 0 0 #> 274 23-260 26 2 1 2 0 #> 275 29-112 90 0 0 0 0 #> 276 29-338 90 0 0 0 0 #> 277 27-316 90 1 1 1 0 #> 278 29-343 90 1 1 1 0 #> 279 34-085 90 0 0 0 0 #> 280 29-304 79 0 0 0 0 #> 281 36-124 11 0 0 0 0 #> 282 31-120 85 1 1 1 0 #> 283 27-068 5 0 0 0 0 #> 284 28-072 90 2 2 1 1 #> 285 23-210 90 3 2 1 1 #> 286 22-328 90 1 0 0 1 #> 287 23-195 70 0 0 0 0 #> 288 22-039 20 1 1 0 1 #> 289 31-145 90 0 0 0 0 #> 290 28-092 90 0 0 0 0 #> 291 26-236 90 0 0 0 0 #> 292 30-119 90 1 0 1 0 #> 293 25-142 90 0 0 0 0 #> 294 28-179 90 0 0 0 0 #> 295 28-272 74 1 0 0 0 #> 296 34-142 16 1 0 1 0 #> 297 25-335 66 1 1 0 0 #> 298 25-169 24 1 1 0 1 #> 299 32-158 90 1 1 0 1 #> 300 25-150 90 4 2 0 4 #> 301 24-049 83 2 2 0 1 #> 302 28-043 7 0 0 0 0 #> 303 28-353 90 2 2 1 1 #> 304 31-101 90 2 2 2 0 #> 305 26-228 90 0 0 0 0 #> 306 27-037 90 2 2 1 1 #> 307 26-212 90 0 0 0 0 #> 308 27-091 90 0 0 0 0 #> 309 28-155 45 1 1 0 0 #> 310 25-164 45 0 0 0 0 #> 311 23-264 65 1 1 0 0 #> 312 25-153 25 1 0 0 1 #> 313 23-249 90 2 2 2 0 #> 314 29-120 90 0 0 0 0 #> 315 31-362 90 0 0 0 0 #> 316 24-056 90 2 1 1 1 #> 317 29-342 90 0 0 0 0 #> 318 27-320 83 1 1 0 1 #> 319 21-084 7 0 0 0 0 #> 320 29-347 90 2 1 1 1 #> 321 34-089 90 0 0 0 0 #> 322 26-274 90 1 1 1 0 #> 323 25-096 90 2 2 0 2 #> 324 32-036 57 0 0 0 0 #> 325 22-063 33 0 0 0 0 #> 326 28-169 90 3 2 1 2 #> 327 21-147 90 3 2 3 0 #> 328 21-125 72 0 0 0 0 #> 329 25-306 18 0 0 0 0 #> 330 20-322 90 4 3 3 1 #> 331 30-219 90 0 0 0 0 #> 332 25-008 27 1 1 1 0 #> 333 24-149 63 1 0 1 0 #> 334 26-061 90 1 1 1 0 #> 335 26-096 90 0 0 0 0 #> 336 26-085 72 0 0 0 0 #> 337 24-300 18 0 0 0 0 #> 338 26-000 63 1 1 0 1 #> 339 26-132 27 0 0 0 0 #> 340 27-047 86 2 1 0 1 #> 341 24-108 4 0 0 0 0 #> 342 32-121 90 1 0 1 0 #> 343 28-031 90 4 4 2 2 #> 344 28-287 90 0 0 0 0 #> 345 22-311 90 2 1 1 0 #> 346 24-111 90 5 3 4 1 #> 347 28-293 90 2 0 2 0 #> 348 22-107 90 2 1 2 0 #> 349 26-099 90 0 0 0 0 #> 350 24-238 90 1 1 0 1 #> 351 30-084 60 0 0 0 0 #> 352 22-174 30 0 0 0 0 #> 353 27-190 90 0 0 0 0 #> 354 26-140 81 1 0 1 0 #> 355 28-187 9 0 0 0 0 #> 356 31-331 90 1 0 0 1 #> 357 22-003 90 0 0 0 0 #> 358 22-167 75 0 0 0 0 #> 359 27-014 15 1 1 1 0 #> 360 29-236 90 3 3 2 0 #> 361 27-222 90 1 1 1 0 #> 362 26-307 90 2 2 2 0 #> 363 23-255 90 0 0 0 0 #> 364 29-322 90 0 0 0 0 #> 365 27-157 75 1 1 0 0 #> 366 23-106 15 2 2 1 0 #> 367 22-286 90 1 0 0 1 #> 368 23-277 90 10 6 4 6 #> 369 22-064 90 4 3 1 3 #> 370 23-169 65 2 1 2 0 #> 371 26-229 25 2 0 1 1 #> 372 22-192 90 4 4 1 2 #> 373 32-190 90 0 0 0 0 #> 374 27-229 90 1 1 1 0 #> 375 33-228 35 0 0 0 0 #> 376 25-073 55 4 3 4 0 #> 377 25-230 90 0 0 0 0 #> 378 26-110 90 1 1 0 1 #> 379 25-302 76 0 0 0 0 #> 380 19-236 14 0 0 0 0 #> 381 21-324 68 2 2 2 0 #> 382 22-163 22 0 0 0 0 #> 383 30-121 90 5 3 2 2 #> 384 27-065 68 1 0 0 1 #> 385 24-163 22 0 0 0 0 #> 386 31-160 90 2 1 2 0 #> 387 25-078 90 2 2 1 1 #> 388 26-157 90 0 0 0 0 #> 389 27-236 90 4 3 3 1 #> 390 28-176 90 4 2 4 0 #> 391 33-197 90 0 0 0 0 #> 392 27-195 90 0 0 0 0 #> 393 21-107 69 0 0 0 0 #> 394 28-205 21 0 0 0 0 #> 395 23-230 86 2 1 0 1 #> 396 22-066 4 1 0 0 1 #> 397 27-116 90 5 3 4 1 #> 398 37-223 63 1 0 1 0 #> 399 26-241 27 2 1 1 1 #> 400 23-222 90 1 1 1 0 #> 401 29-171 90 6 4 5 1 #> 402 22-345 90 1 1 1 0 #> 403 30-004 90 2 1 1 1 #> 404 32-183 90 1 1 0 0 #> 405 29-234 90 1 1 1 0 #> 406 31-213 89 0 0 0 0 #> 407 22-358 1 0 0 0 0 #> 408 21-102 75 1 0 0 1 #> 409 31-095 15 0 0 0 0 #> 410 31-062 90 0 0 0 0 #> 411 26-074 83 0 0 0 0 #> 412 21-180 7 0 0 0 0 #> 413 30-040 90 2 1 1 1 #> 414 30-168 90 0 0 0 0 #> 415 29-157 90 2 2 1 1 #> 416 24-284 90 0 0 0 0 #> 417 31-204 90 1 1 1 0 #> 418 26-199 90 3 2 2 1 #> 419 26-117 90 0 0 0 0 #> 420 25-221 90 1 1 0 1 #> 421 35-078 70 0 0 0 0 #> 422 29-182 20 1 1 1 0 #> 423 31-055 79 0 0 0 0 #> 424 30-352 11 0 0 0 0 #> 425 24-247 90 2 2 0 2 #> 426 26-000 75 1 1 0 1 #> 427 29-148 15 0 0 0 0 #> 428 21-273 90 3 1 3 0 #> 429 29-078 90 4 2 1 1 #> 430 23-069 90 2 1 1 1 #> 431 28-321 90 1 0 1 0 #> 432 32-217 90 2 2 2 0 #> 433 36-296 90 0 0 0 0 #> 434 22-262 66 0 0 0 0 #> 435 31-109 24 0 0 0 0 #> 436 27-173 73 1 0 1 0 #> 437 24-328 17 0 0 0 0 #> 438 29-087 63 0 0 0 0 #> 439 27-243 27 2 2 2 0 #> 440 25-192 90 5 5 1 3 #> 441 29-132 90 3 2 0 2 #> 442 21-236 90 3 1 1 1 #> 443 23-093 90 3 3 1 1 #> 444 21-250 90 1 0 0 1 #> 445 27-273 90 1 1 1 0 #> 446 25-334 90 0 0 0 0 #> 447 29-038 90 1 0 1 0 #> 448 25-123 57 0 0 0 0 #> 449 31-318 33 0 0 0 0 #> 450 27-297 90 0 0 0 0 #> 451 26-097 90 1 0 0 0 #> 452 30-024 90 2 2 1 1 #> 453 28-313 90 0 0 0 0 #> 454 25-187 70 0 0 0 0 #> 455 21-059 20 2 0 2 0 #> 456 26-152 90 3 2 2 0 #> 457 29-046 90 1 1 1 0 #> 458 27-118 90 1 0 1 0 #> 459 18-347 78 3 2 3 0 #> 460 30-253 12 0 0 0 0 #> 461 27-143 90 0 0 0 0 #> 462 30-250 90 0 0 0 0 #> 463 22-217 90 0 0 0 0 #> 464 29-041 86 0 0 0 0 #> 465 27-056 4 1 0 1 0 #> 466 26-127 76 0 0 0 0 #> 467 32-351 14 3 0 2 1 #> 468 28-234 90 0 0 0 0 #> 469 26-184 90 3 2 3 0 #> 470 30-106 59 0 0 0 0 #> 471 25-123 31 0 0 0 0 #> 472 32-149 90 2 1 1 1 #> 473 28-220 90 2 2 2 0 #> 474 26-227 90 1 1 0 0 #> 475 31-254 90 0 0 0 0 #> 476 22-293 90 0 0 0 0 #> 477 29-185 62 0 0 0 0 #> 478 29-005 28 1 1 0 1 #> 479 26-107 90 1 1 1 0 #> 480 30-058 62 2 2 1 1 #> 481 29-169 28 2 2 2 0 #> 482 29-080 90 3 3 0 3 #> 483 28-358 82 2 2 0 2 #> 484 28-014 8 0 0 0 0 #> 485 32-278 90 1 1 1 0 #> 486 26-151 90 1 1 1 0 #> 487 29-153 90 0 0 0 0 #> 488 31-161 90 0 0 0 0 #> 489 29-150 90 0 0 0 0 #> 490 25-346 60 0 0 0 0 #> 491 30-161 30 1 0 0 0 #> 492 26-141 90 2 1 0 1 #> 493 22-185 61 1 1 0 1 #> 494 31-352 29 0 0 0 0 #> 495 26-313 90 3 3 0 3 #> 496 33-256 78 2 2 2 0 #> 497 22-301 12 0 0 0 0 #> 498 21-182 90 7 5 1 6 #> 499 22-139 90 2 1 1 1 #> 500 29-213 90 1 1 1 0 #> 501 28-230 90 1 1 0 1 #> 502 27-275 90 1 1 1 0 #> 503 29-059 90 0 0 0 0 #> 504 27-236 90 0 0 0 0 #> 505 31-035 90 0 0 0 0 #> 506 24-052 58 2 1 0 0 #> 507 22-349 32 0 0 0 0 #> 508 23-056 70 6 4 0 4 #> 509 27-157 20 0 0 0 0 #> 510 25-350 45 0 0 0 0 #> 511 24-280 45 5 5 3 2 #> 512 25-088 90 1 1 1 0 #> 513 28-293 90 1 1 1 0 #> 514 23-192 90 1 1 1 0 #> 515 29-296 90 3 2 3 0 #> 516 31-123 90 1 1 0 1 #> 517 28-347 90 0 0 0 0 #> 518 22-013 89 1 1 0 1 #> 519 21-230 1 0 0 0 0 #> 520 23-204 81 0 0 0 0 #> 521 24-171 9 2 1 2 0 #> 522 31-026 66 0 0 0 0 #> 523 24-344 24 0 0 0 0 #> 524 25-199 90 3 3 2 0 #> 525 19-205 90 1 1 1 0 #> 526 23-275 90 1 0 0 1 #> 527 27-066 90 2 1 1 1 #> 528 26-363 90 2 2 1 1 #> 529 32-317 90 5 5 3 2 #> 530 31-198 90 6 4 4 2 #> 531 32-024 90 0 0 0 0 #> 532 24-073 90 0 0 0 0 #> 533 21-167 70 0 0 0 0 #> 534 29-172 20 1 1 0 1 #> 535 25-251 90 1 1 1 0 #> 536 32-047 90 4 2 1 3 #> 537 30-256 83 2 1 1 1 #> 538 21-349 7 0 0 0 0 #> 539 28-095 90 4 2 0 4 #> 540 28-198 90 1 0 1 0 #> 541 19-306 90 2 2 0 2 #> 542 23-215 90 1 0 1 0 #> 543 29-135 80 2 1 1 0 #> 544 26-200 10 1 1 1 0 #> 545 21-077 90 0 0 0 0 #> 546 26-227 76 0 0 0 0 #> 547 24-202 14 0 0 0 0 #> 548 19-129 90 2 1 0 2 #> 549 24-065 60 0 0 0 0 #> 550 30-148 30 0 0 0 0 #> 551 24-237 90 0 0 0 0 #> 552 31-079 90 2 1 1 1 #> 553 26-161 67 1 0 0 0 #> 554 26-347 23 0 0 0 0 #> 555 33-114 90 3 2 3 0 #> 556 30-300 90 1 1 0 1 #> 557 27-141 90 0 0 0 0 #> 558 29-086 90 3 3 2 1 #> 559 22-180 90 0 0 0 0 #> 560 29-311 57 0 0 0 0 #> 561 36-131 33 0 0 0 0 #> 562 31-127 82 0 0 0 0 #> 563 27-094 8 0 0 0 0 #> 564 23-202 45 2 0 0 2 #> 565 22-046 45 2 2 1 1 #> 566 23-217 90 3 1 0 3 #> 567 22-335 90 0 0 0 0 #> 568 28-079 90 1 1 0 0 #> 569 31-152 90 1 0 0 1 #> 570 28-099 90 1 1 0 1 #> 571 26-243 90 0 0 0 0 #> 572 30-126 90 5 4 2 2 #> 573 25-149 90 0 0 0 0 #> 574 21-113 69 2 1 0 0 #> 575 28-211 21 0 0 0 0 #> 576 23-236 78 4 3 4 0 #> 577 30-033 12 1 1 0 0 #> 578 26-247 66 4 4 0 3 #> 579 22-072 24 1 0 1 0 #> 580 27-201 90 2 2 1 1 #> 581 27-122 90 1 1 1 0 #> 582 23-228 90 3 2 0 3 #> 583 29-177 90 2 0 2 0 #> 584 22-351 90 1 1 1 0 #> 585 30-010 90 2 1 2 0 #> 586 32-189 90 2 2 2 0 #> 587 29-240 90 0 0 0 0 #> 588 25-351 81 0 0 0 0 #> 589 26-355 9 0 0 0 0 #> 590 26-146 90 0 0 0 0 #> 591 26-318 90 2 1 1 1 #> 592 22-190 90 3 0 0 3 #> 593 33-261 74 3 1 2 0 #> 594 30-067 16 0 0 0 0 #> 595 21-187 65 3 2 0 3 #> 596 31-357 25 0 0 0 0 #> 597 22-144 90 1 0 0 0 #> 598 29-218 90 2 0 0 2 #> 599 28-235 90 1 0 1 0 #> 600 27-280 90 4 2 3 1 #> 601 29-064 90 0 0 0 0 #> 602 31-323 90 1 1 0 1 #> 603 27-302 80 0 0 0 0 #> 604 21-207 10 0 0 0 0 #> 605 25-128 58 0 0 0 0 #> 606 21-064 32 0 0 0 0 #> 607 30-258 77 1 1 1 0 #> 608 26-157 13 0 0 0 0 #> 609 30-029 90 2 0 0 2 #> 610 25-192 90 6 4 3 2 #> 611 18-352 90 1 1 1 0 #> 612 27-123 90 0 0 0 0 #> 613 29-051 90 1 1 1 0 #> 614 29-165 90 1 1 1 0 #> 615 27-148 90 0 0 0 0 #> 616 23-054 72 0 0 0 0 #> 617 34-149 18 0 0 0 0 #> 618 28-186 90 1 0 0 1 #> 619 25-342 90 1 1 0 1 #> 620 32-165 90 3 1 1 2 #> 621 26-220 90 3 3 1 2 #> 622 32-216 44 0 0 0 0 #> 623 24-056 46 0 0 0 0 #> 624 31-108 90 0 0 0 0 #> 625 27-350 45 0 0 0 0 #> 626 28-360 45 0 0 0 0 #> 627 26-235 90 1 1 0 1 #> 628 27-044 90 2 2 1 1 #> 629 26-219 90 0 0 0 0 #> 630 26-281 17 0 0 0 0 #> 631 23-059 73 0 0 0 0 #> 632 25-103 72 0 0 0 0 #> 633 32-043 18 1 1 0 1 #> 634 21-132 90 1 1 1 0 #> 635 21-154 90 2 2 1 1 #> 636 28-176 84 4 1 4 0 #> 637 23-080 6 0 0 0 0 #> 638 23-202 90 2 1 1 0 #> 639 20-329 90 5 2 4 1 #> 640 30-226 90 1 0 1 0 #> 641 24-156 90 1 1 1 0 #> 642 26-068 90 2 1 2 0 #> 643 26-103 90 0 0 0 0 #> 644 22-018 90 0 0 0 0 #> 645 23-209 68 0 0 0 0 #> 646 24-176 22 0 0 0 0 #> 647 31-031 87 0 0 0 0 #> 648 24-349 3 0 0 0 0 #> 649 25-204 90 1 1 1 0 #> 650 19-210 90 1 1 1 0 #> 651 23-280 80 0 0 0 0 #> 652 21-237 10 1 0 1 0 #> 653 27-071 90 1 0 1 0 #> 654 27-003 90 1 0 0 1 #> 655 32-322 90 3 2 3 0 #> 656 31-203 90 0 0 0 0 #> 657 32-029 90 0 0 0 0 #> 658 27-164 90 0 0 0 0 #> 659 29-329 90 0 0 0 0 #> 660 26-236 90 2 1 1 1 #> 661 25-080 55 2 2 1 1 #> 662 22-293 35 2 1 1 1 #> 663 23-284 90 2 1 0 2 #> 664 23-176 55 0 0 0 0 #> 665 30-239 35 0 0 0 0 #> 666 33-023 90 6 2 3 3 #> 667 32-197 90 2 1 2 0 #> 668 23-224 67 1 0 1 0 #> 669 26-231 23 0 0 0 0 #> 670 27-236 69 0 0 0 0 #> 671 25-237 90 0 0 0 0 #> 672 30-256 90 0 0 0 0 #> 673 22-223 77 0 0 0 0 #> 674 22-025 13 1 0 1 0 #> 675 29-047 84 0 0 0 0 #> 676 27-062 6 2 2 0 2 #> 677 28-240 90 1 0 0 1 #> 678 26-190 90 3 2 1 2 #> 679 32-357 61 0 0 0 0 #> 680 26-133 29 0 0 0 0 #> 681 30-112 90 3 2 1 2 #> 682 32-155 90 2 2 1 1 #> 683 25-129 90 2 1 2 0 #> 684 26-233 90 2 2 0 2 #> 685 26-113 90 0 0 0 0 #> 686 27-099 90 1 1 0 1 #> 687 25-172 80 2 0 0 1 #> 688 25-161 10 0 0 0 0 #> 689 32-005 69 1 0 0 1 #> 690 21-092 21 0 0 0 0 #> 691 23-257 90 1 1 0 1 #> 692 29-128 90 0 0 0 0 #> 693 28-163 68 0 0 0 0 #> 694 25-103 22 1 1 0 0 #> 695 24-064 90 2 2 2 0 #> 696 29-350 90 1 1 1 0 #> 697 26-211 90 1 1 1 0 #> 698 29-355 90 1 0 1 0 #> 699 34-097 90 0 0 0 0 #> 700 27-242 90 2 2 1 1 #> 701 22-102 68 0 0 0 0 #> 702 22-355 22 0 0 0 0 #> 703 23-062 90 2 0 0 2 #> 704 25-094 90 1 1 1 0 #> 705 24-286 64 2 2 0 2 #> 706 24-058 26 0 0 0 0 #> 707 31-041 90 1 0 0 1 #> 708 28-299 90 2 2 2 0 #> 709 26-183 90 2 2 2 0 #> 710 29-302 45 1 1 1 0 #> 711 23-198 45 2 2 1 1 #> 712 31-129 75 2 2 1 1 #> 713 28-353 90 0 0 0 0 #> 714 31-116 67 0 0 0 0 #> 715 24-335 23 0 0 0 0 #> 716 27-180 90 0 0 0 0 #> 717 27-250 69 1 1 1 0 #> 718 18-185 21 0 0 0 0 #> 719 29-094 90 0 0 0 0 #> 720 29-139 90 1 0 1 0 #> 721 21-243 81 3 3 2 1 #> 722 22-269 9 0 0 0 0 #> 723 23-100 90 2 2 1 1 #> 724 21-257 90 3 2 2 1 #> 725 27-280 90 1 1 0 1 #> 726 25-341 90 4 2 3 1 #> 727 29-045 90 0 0 0 0 #> 728 26-093 90 0 0 0 0 #> 729 26-008 63 0 0 0 0 #> 730 26-140 27 1 0 0 1 #> 731 27-055 80 0 0 0 0 #> 732 21-236 10 1 1 1 0 #> 733 32-129 90 1 0 0 1 #> 734 28-039 90 4 4 1 2 #> 735 28-295 84 0 0 0 0 #> 736 28-222 6 0 0 0 0 #> 737 22-319 90 4 2 3 1 #> 738 24-119 90 2 2 2 0 #> 739 28-301 90 2 1 2 0 #> 740 22-115 90 0 0 0 0 #> 741 26-107 90 0 0 0 0 #> 742 25-228 90 0 0 0 0 #> 743 35-085 90 0 0 0 0 #> 744 26-007 90 0 0 0 0 #> 745 24-254 90 2 1 1 1 #> 746 21-280 82 1 1 0 1 #> 747 29-155 8 0 0 0 0 #> 748 31-062 66 0 0 0 0 #> 749 21-010 24 0 0 0 0 #> 750 29-085 90 3 1 1 1 #> 751 23-076 90 4 1 3 1 #> 752 28-328 90 0 0 0 0 #> 753 32-224 77 0 0 0 0 #> 754 29-189 13 0 0 0 0 #> 755 36-303 90 0 0 0 0 #> 756 31-221 90 1 1 0 0 #> 757 21-110 90 1 1 0 1 #> 758 31-070 90 1 1 0 0 #> 759 26-082 90 1 1 0 1 #> 760 30-048 75 2 2 0 2 #> 761 22-021 15 1 1 0 1 #> 762 30-176 70 5 4 3 2 #> 763 31-103 20 1 0 0 1 #> 764 29-165 90 1 0 1 0 #> 765 24-292 64 0 0 0 0 #> 766 23-077 26 2 1 2 0 #> 767 31-212 90 0 0 0 0 #> 768 26-207 90 0 0 0 0 #> 769 26-125 90 0 0 0 0 #> 770 19-135 71 0 0 0 0 #> 771 24-208 19 0 0 0 0 #> 772 26-233 57 0 0 0 0 #> 773 26-353 33 1 1 1 0 #> 774 24-071 90 0 0 0 0 #> 775 24-243 90 4 3 2 2 #> 776 31-085 90 2 1 1 1 #> 777 26-167 64 1 1 1 0 #> 778 24-151 26 2 2 2 0 #> 779 33-120 90 1 1 1 0 #> 780 30-306 90 0 0 0 0 #> 781 27-147 90 3 3 2 1 #> 782 29-092 90 2 2 2 0 #> 783 22-186 90 0 0 0 0 #> 784 24-246 58 0 0 0 0 #> 785 22-182 32 0 0 0 0 #> 786 30-092 90 0 0 0 0 #> 787 27-198 90 2 2 0 1 #> 788 26-148 74 2 1 1 1 #> 789 37-043 16 0 0 0 0 #> 790 31-339 90 0 0 0 0 #> 791 22-011 90 1 1 1 0 #> 792 27-022 90 3 3 2 0 #> 793 29-244 90 2 0 2 0 #> 794 27-230 87 4 4 2 2 #> 795 29-010 3 0 0 0 0 #> 796 26-315 90 0 0 0 0 #> 797 23-263 90 0 0 0 0 #> 798 22-300 90 0 0 0 0 #> 799 29-192 60 2 2 1 1 #> 800 29-176 30 1 0 0 1 #> 801 26-114 90 0 0 0 0 #> 802 29-087 65 3 1 0 3 #> 803 30-065 90 1 1 0 1 #> 804 21-141 85 2 1 1 1 #> 805 29-012 5 0 0 0 0 #> 806 32-285 90 1 1 0 1 #> 807 26-158 90 4 3 3 1 #> 808 29-160 86 1 1 1 0 #> 809 26-241 4 1 1 0 0 #> 810 31-168 90 3 3 1 2 #> 811 29-157 90 0 0 0 0 #> 812 26-245 56 0 0 0 0 #> 813 19-147 34 0 0 0 0 #> 814 24-220 90 2 1 1 1 #> 815 24-083 67 1 1 0 1 #> 816 30-166 23 1 1 0 1 #> 817 24-255 90 1 1 0 1 #> 818 31-097 90 3 2 0 3 #> 819 27-000 55 1 1 0 1 #> 820 26-179 35 0 0 0 0 #> 821 33-132 90 0 0 0 0 #> 822 24-163 90 2 2 2 0 #> 823 27-159 90 0 0 0 0 #> 824 29-104 90 4 3 2 0 #> 825 22-198 90 0 0 0 0 #> 826 23-332 76 0 0 0 0 #> 827 25-339 14 0 0 0 0 #> 828 25-322 69 0 0 0 0 #> 829 26-130 21 1 0 0 1 #> 830 27-085 87 1 1 1 0 #> 831 28-064 3 0 0 0 0 #> 832 30-141 90 2 1 0 1 #> 833 26-002 90 1 1 0 1 #> 834 31-180 90 2 1 1 1 #> 835 25-098 90 2 1 2 0 #> 836 26-177 90 3 2 3 0 #> 837 27-256 90 2 2 1 1 #> 838 28-196 90 2 1 1 1 #> 839 33-217 90 0 0 0 0 #> 840 29-343 90 0 0 0 0 #> 841 22-307 58 1 1 0 1 #> 842 23-190 32 0 0 0 0 #> 843 23-298 90 0 0 0 0 #> 844 26-250 90 1 1 0 1 #> 845 27-178 90 0 0 0 0 #> 846 22-085 70 5 5 2 3 #> 847 19-040 20 0 0 0 0 #> 848 33-037 90 0 0 0 0 #> 849 32-211 90 2 1 1 1 #> 850 23-238 90 1 1 0 1 #> 851 33-249 90 0 0 0 0 #> 852 25-251 90 0 0 0 0 #> 853 34-164 56 0 0 0 0 #> 854 28-201 34 0 0 0 0 #> 855 25-357 56 2 2 0 2 #> 856 25-172 34 3 3 2 1 #> 857 30-223 90 3 2 3 0 #> 858 24-071 90 0 0 0 0 #> 859 26-235 90 3 3 0 3 #> 860 32-180 79 5 5 1 3 #> 861 23-069 11 0 0 0 0 #> 862 29-010 90 5 3 5 0 #> 863 31-123 90 2 2 1 1 #> 864 26-250 90 1 1 1 0 #> 865 27-059 90 2 2 1 1 #> 866 26-234 90 0 0 0 0 #> 867 25-118 90 1 1 0 1 #> 868 21-147 90 3 1 3 0 #> 869 25-328 81 2 1 0 2 #> 870 23-217 9 0 0 0 0 #> 871 32-058 72 2 1 0 2 #> 872 23-074 18 0 0 0 0 #> 873 28-191 81 4 3 2 1 #> 874 22-085 9 1 1 0 1 #> 875 21-169 90 2 1 0 2 #> 876 20-344 90 2 1 2 0 #> 877 30-241 90 1 0 1 0 #> 878 24-171 90 2 1 2 0 #> 879 26-083 90 2 2 1 1 #> 880 26-118 90 0 0 0 0 #> 881 31-234 90 1 0 0 1 #> 882 21-123 76 3 2 0 1 #> 883 31-116 14 1 1 1 0 #> 884 31-083 90 1 1 0 0 #> 885 25-215 56 2 2 0 1 #> 886 30-061 34 1 1 1 0 #> 887 30-189 90 0 0 0 0 #> 888 26-220 90 0 0 0 0 #> 889 29-178 90 1 1 0 1 #> 890 24-305 90 2 2 1 1 #> 891 31-225 90 4 3 3 1 #> 892 24-303 45 1 1 1 0 #> 893 26-095 45 0 0 0 0 #> 894 26-138 90 0 0 0 0 #> 895 27-193 90 1 0 1 0 #> 896 31-129 90 0 0 0 0 #> 897 27-263 76 1 1 0 0 #> 898 24-348 14 0 0 0 0 #> 899 25-212 13 0 0 0 0 #> 900 29-107 77 0 0 0 0 #> 901 29-152 90 2 0 1 1 #> 902 18-198 62 2 2 0 1 #> 903 21-290 28 1 1 0 0 #> 904 23-113 90 3 2 3 0 #> 905 21-270 90 0 0 0 0 #> 906 27-293 90 0 0 0 0 #> 907 25-354 90 0 0 0 0 #> 908 27-314 90 0 0 0 0 #> 909 22-195 67 0 0 0 0 #> 910 29-252 23 0 0 0 0 #> 911 30-105 62 2 2 0 2 #> 912 37-056 28 1 0 0 0 #> 913 28-208 76 0 0 0 0 #> 914 22-159 14 2 0 0 1 #> 915 31-352 90 1 1 1 0 #> 916 27-211 90 1 0 1 0 #> 917 22-024 90 2 1 2 0 #> 918 22-188 90 3 2 2 1 #> 919 29-023 90 2 1 2 0 #> 920 27-243 90 2 2 1 1 #> 921 26-328 90 1 1 0 1 #> 922 23-276 90 0 0 0 0 #> 923 24-092 75 0 0 0 0 #> 924 29-108 15 0 0 0 0 #> 925 25-270 53 3 1 0 1 #> 926 26-219 37 1 1 0 1 #> 927 30-275 90 1 0 1 0 #> 928 32-066 90 1 0 0 1 #> 929 31-208 80 2 1 1 1 #> 930 33-315 10 0 0 0 0 #> 931 28-114 90 1 1 0 1 #> 932 28-217 90 3 3 2 1 #> 933 27-121 90 2 1 2 0 #> 934 23-234 90 1 0 1 0 #> 935 29-154 90 1 1 0 1 #> 936 21-096 90 0 0 0 0 #> 937 30-270 90 1 0 0 0 #> 938 22-237 90 0 0 0 0 #> 939 29-061 74 0 0 0 0 #> 940 27-076 16 1 0 0 0 #> 941 22-039 45 1 1 1 0 #> 942 26-204 45 1 0 0 1 #> 943 28-254 90 0 0 0 0 #> 944 33-006 60 2 0 0 2 #> 945 26-147 30 1 1 0 1 #> 946 30-126 90 0 0 0 0 #> 947 32-169 90 2 2 1 1 #> 948 25-143 90 3 1 3 0 #> 949 26-247 90 0 0 0 0 #> 950 26-127 90 0 0 0 0 #> 951 27-114 90 2 2 0 2 #> 952 25-176 72 2 2 1 1 #> 953 20-080 18 0 0 0 0 #> 954 32-020 90 0 0 0 0 #> 955 28-178 61 0 0 0 0 #> 956 25-187 29 2 1 0 2 #> 957 29-143 90 2 1 2 0 #> 958 23-272 90 2 2 1 1 #> 959 24-079 90 1 1 1 0 #> 960 30-000 90 0 0 0 0 #> 961 26-226 90 0 0 0 0 #> 962 30-129 84 3 3 1 1 #> 963 30-005 6 0 0 0 0 #> 964 34-112 90 0 0 0 0 #> 965 26-162 90 0 0 0 0 #> 966 26-002 59 1 1 0 1 #> 967 32-008 31 0 0 0 0 #> 968 30-083 90 0 0 0 0 #> 969 19-247 87 1 1 0 1 #> 970 34-085 3 0 0 0 0 #> 971 26-334 90 0 0 0 0 #> 972 22-322 45 2 2 0 0 #> 973 22-206 45 0 0 0 0 #> 974 30-182 90 0 0 0 0 #> 975 29-234 90 0 0 0 0 #> 976 28-251 90 2 1 2 0 #> 977 27-296 90 1 1 1 0 #> 978 29-080 90 0 0 0 0 #> 979 25-242 83 0 0 0 0 #> 980 29-203 7 0 0 0 0 #> 981 35-099 71 1 1 1 0 #> 982 29-169 19 1 0 1 0 #> 983 26-021 90 1 1 1 0 #> 984 31-076 90 4 2 2 0 #> 985 21-294 90 3 2 2 1 #> 986 24-268 76 0 0 0 0 #> 987 31-008 14 1 0 0 1 #> 988 29-099 90 2 0 0 2 #> 989 23-090 90 0 0 0 0 #> 990 28-342 90 1 0 1 0 #> 991 32-238 90 2 2 2 0 #> 992 36-317 90 0 0 0 0 #> 993 22-116 64 0 0 0 0 #> 994 21-164 26 1 0 0 0 #> 995 27-256 90 0 0 0 0 #> 996 24-072 82 0 0 0 0 #> 997 27-177 8 0 0 0 0 #> 998 23-076 90 6 3 4 2 #> 999 25-108 90 1 1 1 0 #> 1000 31-055 90 0 0 0 0 #> 1001 27-183 90 0 0 0 0 #> 1002 26-197 62 0 0 0 0 #> 1003 29-316 28 0 0 0 0 #> 1004 23-212 90 1 1 1 0 #> 1005 34-319 90 0 0 0 0 #> 1006 29-002 90 0 0 0 0 #> 1007 21-129 62 0 0 0 0 #> 1008 28-227 28 0 0 0 0 #> 1009 23-252 90 0 0 0 0 #> 1010 26-263 80 0 0 0 0 #> 1011 24-079 10 0 0 0 0 #> 1012 27-217 90 1 1 1 0 #> 1013 37-245 90 0 0 0 0 #> 1014 23-244 66 3 3 1 2 #> 1015 30-049 24 0 0 0 0 #> 1016 29-193 90 3 1 2 1 #> 1017 23-002 90 1 0 1 0 #> 1018 30-026 90 0 0 0 0 #> 1019 32-205 90 1 1 1 0 #> 1020 29-256 90 0 0 0 0 #> 1021 24-358 62 1 1 0 1 #> 1022 24-322 28 0 0 0 0 #> 1023 26-154 73 1 0 0 1 #> 1024 24-130 17 0 0 0 0 #> 1025 27-069 90 0 0 0 0 #> 1026 28-053 90 2 2 2 0 #> 1027 26-216 79 0 0 0 0 #> 1028 32-143 11 4 3 2 2 #> 1029 28-309 90 1 1 1 0 #> 1030 22-333 90 1 1 0 1 #> 1031 28-236 90 1 0 1 0 #> 1032 28-315 90 1 1 1 0 #> 1033 22-129 90 6 3 5 1 #> 1034 26-121 90 0 0 0 0 #> 1035 22-314 90 0 0 0 0 #> 1036 31-336 45 2 1 0 1 #> 1037 29-206 45 3 2 0 2 #> 1038 26-128 90 1 1 0 0 #> 1039 29-026 68 1 0 0 1 #> 1040 26-255 22 0 0 0 0 #> 1041 30-079 90 8 5 1 6 #> 1042 29-101 45 0 0 0 0 #> 1043 28-035 45 1 1 0 0 #> 1044 32-299 90 1 0 0 1 #> 1045 26-172 90 2 2 2 0 #> 1046 29-174 90 4 2 3 0 #> 1047 21-246 90 1 0 1 0 #> 1048 29-171 90 0 0 0 0 #> 1049 31-143 61 0 0 0 0 #> 1050 26-111 29 0 0 0 0 #> 1051 36-147 90 0 0 0 0 #> 1052 22-062 68 1 0 1 0 #> 1053 25-177 22 0 0 0 0 #> 1054 26-259 77 2 2 0 2 #> 1055 25-024 13 1 0 1 0 #> 1056 23-233 90 2 1 2 0 #> 1057 28-095 90 2 1 2 0 #> 1058 31-168 90 2 2 2 0 #> 1059 27-091 90 1 1 1 0 #> 1060 28-115 90 4 2 4 0 #> 1061 30-142 90 0 0 0 0 #> 1062 25-165 90 0 0 0 0 #> 1063 31-340 90 3 3 2 1 #> 1064 27-319 66 2 1 1 1 #> 1065 21-224 24 1 1 1 0 #> 1066 26-119 87 0 0 0 0 #> 1067 21-081 3 0 0 0 0 #> 1068 20-131 90 3 1 2 1 #> 1069 30-046 90 9 3 4 5 #> 1070 30-275 83 0 0 0 0 #> 1071 26-174 7 1 0 0 1 #> 1072 19-004 90 3 1 0 2 #> 1073 27-140 90 0 0 0 0 #> 1074 29-068 90 0 0 0 0 #> 1075 29-182 90 2 2 2 0 #> 1076 27-165 90 0 0 0 0 #> 1077 22-034 90 0 0 0 0 #> 1078 23-225 65 0 0 0 0 #> 1079 21-251 25 0 0 0 0 #> 1080 31-047 90 0 0 0 0 #> 1081 23-296 90 1 1 0 1 #> 1082 19-226 74 3 2 2 1 #> 1083 21-253 16 0 0 0 0 #> 1084 25-220 45 0 0 0 0 #> 1085 25-000 45 0 0 0 0 #> 1086 27-087 90 1 0 0 1 #> 1087 27-019 90 1 0 0 1 #> 1088 32-338 89 0 0 0 0 #> 1089 31-219 90 3 2 1 2 #> 1090 32-045 90 0 0 0 0 #> 1091 19-154 90 0 0 0 0 #> 1092 30-173 90 0 0 0 0 #> 1093 26-186 90 3 2 2 0 #> 1094 24-090 67 0 0 0 0 #> 1095 26-252 23 0 0 0 0 #> 1096 24-262 90 3 3 0 3 #> 1097 31-104 90 2 2 2 0 #> 1098 33-139 78 2 1 0 2 #> 1099 24-227 12 1 0 1 0 #> 1100 24-170 90 3 3 2 1 #> 1101 27-166 83 1 0 1 0 #> 1102 27-007 7 0 0 0 0 #> 1103 29-111 90 2 2 1 0 #> 1104 22-205 90 0 0 0 0 #> 1105 23-080 84 0 0 0 0 #> 1106 30-133 6 0 0 0 0 #> 1107 25-124 70 1 0 0 1 #> 1108 21-153 89 2 2 1 1 #> 1109 24-200 1 0 0 0 0 #> 1110 25-334 73 2 1 1 1 #> 1111 32-064 17 0 0 0 0 #> 1112 21-175 90 5 5 2 2 #> 1113 22-091 90 2 0 1 0 #> 1114 20-350 81 5 4 3 0 #> 1115 30-247 90 2 2 1 1 #> 1116 24-177 90 0 0 0 0 #> 1117 26-089 90 3 3 2 0 #> 1118 26-124 90 0 0 0 0 #> 1119 23-340 90 0 0 0 0 #> 1120 25-330 56 1 1 0 1 #> 1121 26-138 34 1 0 1 0 #> 1122 26-010 90 2 1 0 2 #> 1123 30-149 69 1 0 0 1 #> 1124 25-347 21 0 0 0 0 #> 1125 27-093 90 1 1 0 0 #> 1126 31-188 72 1 1 0 1 #> 1127 24-145 18 0 0 0 0 #> 1128 25-106 90 0 0 0 0 #> 1129 26-185 90 2 1 2 0 #> 1130 27-264 34 1 1 1 0 #> 1131 28-204 90 3 2 3 0 #> 1132 33-225 90 0 0 0 0 #> 1133 26-160 63 0 0 0 0 #> 1134 26-113 27 0 0 0 0 #> 1135 24-364 90 0 0 0 0 #> 1136 27-075 78 0 0 0 0 #> 1137 24-328 12 0 0 0 0 #> 1138 28-059 90 3 3 2 1 #> 1139 26-222 90 5 3 2 2 #> 1140 28-315 90 3 3 2 0 #> 1141 22-339 81 1 1 1 0 #> 1142 22-135 9 0 0 0 0 #> 1143 24-139 90 2 2 2 0 #> 1144 28-321 90 1 1 1 0 #> 1145 28-242 90 3 1 2 1 #> 1146 26-127 90 0 0 0 0 #> 1147 28-301 72 1 0 0 0 #> 1148 24-078 18 0 0 0 0 #> 1149 28-208 90 1 1 1 0 #> 1150 30-230 90 0 0 0 0 #> 1151 32-187 90 0 0 0 0 #> 1152 25-179 90 3 2 0 3 #> 1153 25-198 66 0 0 0 0 #> 1154 32-238 24 0 0 0 0 #> 1155 29-017 88 4 4 4 0 #> 1156 31-130 2 0 0 0 0 #> 1157 33-332 90 0 0 0 0 #> 1158 26-257 90 2 2 2 0 #> 1159 27-066 90 1 1 1 0 #> 1160 26-241 90 0 0 0 0 #> 1161 27-120 90 0 0 0 0 #> 1162 25-193 62 1 1 0 1 #> 1163 21-113 28 0 0 0 0 #> 1164 25-182 75 3 2 2 1 #> 1165 20-086 15 0 0 0 0 #> 1166 23-278 90 2 2 1 1 #> 1167 29-149 90 4 2 0 3 #> 1168 30-011 56 0 0 0 0 #> 1169 32-026 34 0 0 0 0 #> 1170 29-145 90 3 3 2 1 #> 1171 30-006 90 0 0 0 0 #> 1172 26-232 90 4 2 3 1 #> 1173 30-135 90 1 1 0 0 #> 1174 34-118 90 0 0 0 0 #> 1175 22-039 90 0 0 0 0 #> 1176 31-052 90 1 0 1 0 #> 1177 25-005 68 0 0 0 0 #> 1178 23-230 22 0 0 0 0 #> 1179 23-301 90 0 0 0 0 #> 1180 24-197 90 5 3 3 2 #> 1181 21-258 81 0 0 0 0 #> 1182 19-231 9 1 1 1 0 #> 1183 24-310 58 2 1 0 1 #> 1184 25-225 32 1 1 0 1 #> 1185 27-024 90 0 0 0 0 #> 1186 23-180 90 1 1 1 0 #> 1187 31-224 90 5 4 5 0 #> 1188 32-050 90 0 0 0 0 #> 1189 28-233 90 0 0 0 0 #> 1190 27-223 90 3 3 0 1 #> 1191 27-144 90 5 3 0 5 #> 1192 30-055 90 3 1 1 2 #> 1193 26-269 52 2 0 2 0 #> 1194 23-258 38 1 0 1 0 #> 1195 37-251 55 2 1 0 1 #> 1196 21-135 35 0 0 0 0 #> 1197 29-199 90 3 3 2 1 #> 1198 23-008 90 2 2 0 2 #> 1199 30-032 90 3 1 2 0 #> 1200 32-211 89 0 0 0 0 #> 1201 22-176 1 0 0 0 0 #> 1202 29-262 90 0 0 0 0 #> 1203 36-153 69 0 0 0 0 #> 1204 27-116 21 1 1 0 1 #> 1205 31-149 90 3 2 0 1 #> 1206 22-068 62 2 1 1 0 #> 1207 23-224 4 0 0 0 0 #> 1208 26-265 77 0 0 0 0 #> 1209 25-030 13 0 0 0 0 #> 1210 22-357 90 5 3 3 2 #> 1211 28-101 90 4 2 0 2 #> 1212 31-174 90 1 0 0 0 #> 1213 27-097 90 0 0 0 0 #> 1214 28-121 90 1 1 1 0 #> 1215 30-148 90 1 1 0 0 #> 1216 25-171 90 0 0 0 0 #> 1217 27-185 90 0 0 0 0 #> 1218 29-350 90 0 0 0 0 #> 1219 26-257 90 2 0 1 1 #> 1220 23-305 90 1 1 0 1 #> 1221 22-092 57 3 1 1 2 #> 1222 25-101 33 0 0 0 0 #> 1223 22-314 79 2 1 2 0 #> 1224 23-197 11 0 0 0 0 #> 1225 33-044 70 5 0 4 1 #> 1226 32-218 20 0 0 0 0 #> 1227 22-220 90 0 0 0 0 #> 1228 23-245 90 1 1 1 0 #> 1229 33-256 90 3 3 3 0 #> 1230 25-258 90 0 0 0 0 #> 1231 30-277 59 0 0 0 0 #> 1232 25-052 31 1 1 1 0 #> 1233 22-244 90 0 0 0 0 #> 1234 26-154 78 1 1 0 0 #> 1235 23-235 12 0 0 0 0 #> 1236 22-046 62 1 1 0 1 #> 1237 27-083 28 1 1 1 0 #> 1238 26-211 90 4 3 1 2 #> 1239 33-013 90 1 1 0 0 #> 1240 28-247 90 2 2 2 0 #> 1241 32-176 90 5 5 2 0 #> 1242 25-150 90 2 1 1 1 #> 1243 22-282 90 2 2 0 1 #> 1244 26-134 90 0 0 0 0 #> 1245 25-248 90 0 0 0 0 #> 1246 29-175 54 1 0 1 0 #> 1247 26-027 36 0 0 0 0 #> 1248 31-082 90 2 1 1 1 #> 1249 24-274 54 2 1 0 2 #> 1250 31-014 36 1 0 1 0 #> 1251 29-209 69 2 2 2 0 #> 1252 35-105 21 0 0 0 0 #> 1253 21-300 90 0 0 0 0 #> 1254 29-105 90 3 1 1 2 #> 1255 23-096 90 0 0 0 0 #> 1256 30-028 90 2 1 2 0 #> 1257 32-244 90 4 2 3 1 #> 1258 36-323 90 0 0 0 0 #> 1259 21-171 90 0 0 0 0 #> 1260 27-263 60 0 0 0 0 #> 1261 22-123 30 1 0 0 0 #> 1262 31-062 90 1 0 0 1 #> 1263 25-115 72 2 1 1 0 #> 1264 23-073 18 0 0 0 0 #> 1265 24-307 60 1 0 0 1 #> 1266 26-284 30 0 0 0 0 #> 1267 23-083 90 2 1 1 1 #> 1268 27-190 90 0 0 0 0 #> 1269 23-219 90 0 0 0 0 #> 1270 29-323 90 2 0 2 0 #> 1271 34-326 90 0 0 0 0 #> 1272 29-009 90 0 0 0 0 #> 1273 22-321 90 2 2 0 1 #> 1274 28-042 62 0 0 0 0 #> 1275 26-262 28 0 0 0 0 #> 1276 26-135 72 1 1 0 1 #> 1277 27-160 18 0 0 0 0 #> 1278 30-086 62 4 4 2 1 #> 1279 29-108 28 0 0 0 0 #> 1280 29-213 90 0 0 0 0 #> 1281 29-033 90 1 1 1 0 #> 1282 32-306 90 0 0 0 0 #> 1283 30-050 90 1 1 1 0 #> 1284 29-181 90 0 0 0 0 #> 1285 26-179 90 2 1 2 0 #> 1286 29-178 90 0 0 0 0 #> 1287 32-015 80 1 1 1 0 #> 1288 26-009 10 0 0 0 0 #> 1289 26-169 90 0 0 0 0 #> 1290 30-090 90 2 0 0 2 #> 1291 27-202 90 2 2 1 1 #> 1292 26-341 90 4 4 2 1 #> 1293 22-213 66 0 0 0 0 #> 1294 22-167 24 2 2 0 1 #> 1295 30-189 72 1 1 1 0 #> 1296 33-284 18 1 1 0 1 #> 1297 29-241 90 3 0 2 1 #> 1298 28-258 90 1 0 1 0 #> 1299 27-303 90 1 1 0 1 #> 1300 29-087 90 0 0 0 0 #> 1301 31-137 60 0 0 0 0 #> 1302 27-133 30 2 1 1 1 #> 1303 22-290 45 0 0 0 0 #> 1304 24-356 45 0 0 0 0 #> 1305 27-271 90 3 1 1 2 #> 1306 29-160 57 1 1 0 0 #> 1307 21-264 90 1 0 0 1 #> 1308 18-206 55 2 1 1 0 #> 1309 21-298 35 3 2 3 0 #> 1310 23-121 90 7 4 5 1 #> 1311 21-278 90 0 0 0 0 #> 1312 27-301 90 0 0 0 0 #> 1313 25-362 90 0 0 0 0 #> 1314 29-066 90 0 0 0 0 #> 1315 22-203 90 1 1 0 0 #> 1316 37-064 90 0 0 0 0 #> 1317 27-219 90 0 0 0 0 #> 1318 31-360 90 1 1 1 0 #> 1319 22-167 64 1 0 0 1 #> 1320 24-267 26 0 0 0 0 #> 1321 22-032 61 0 0 0 0 #> 1322 27-043 29 0 0 0 0 #> 1323 22-196 77 2 1 0 1 #> 1324 30-113 13 0 0 0 0 #> 1325 29-031 90 2 2 2 0 #> 1326 27-251 90 2 2 1 1 #> 1327 26-336 90 0 0 0 0 #> 1328 23-284 90 0 0 0 0 #> 1329 24-100 81 2 2 1 1 #> 1330 25-278 9 0 0 0 0 #> 1331 28-225 90 0 0 0 0 #> 1332 30-283 44 0 0 0 0 #> 1333 32-074 55 3 1 1 2 #> 1334 26-227 35 0 0 0 0 #> 1335 28-122 90 3 1 1 2 #> 1336 31-216 72 0 0 0 0 #> 1337 29-116 18 0 0 0 0 #> 1338 30-206 90 1 0 0 0 #> 1339 27-129 90 0 0 0 0 #> 1340 23-242 90 1 0 0 1 #> 1341 29-162 90 1 0 0 1 #> 1342 21-104 90 0 0 0 0 #> 1343 31-242 90 0 0 0 0 #> 1344 21-131 45 0 0 0 0 #> 1345 24-313 45 0 0 0 0 #> 1346 31-091 90 0 0 0 0 #> 1347 22-042 57 0 0 0 0 #> 1348 26-103 33 0 0 0 0 #> 1349 30-069 90 3 2 0 3 #> 1350 31-124 57 2 1 1 1 #> 1351 30-197 33 0 0 0 0 #> 1352 29-186 90 1 0 0 1 #> 1353 23-098 34 2 2 1 1 #> 1354 31-233 90 0 0 0 0 #> 1355 24-311 90 1 1 1 0 #> 1356 26-146 90 0 0 0 0 #> 1357 31-346 90 4 2 1 3 #> 1358 26-125 84 1 1 0 1 #> 1359 30-266 6 0 0 0 0 #> 1360 21-087 45 2 0 2 0 #> 1361 27-325 45 1 1 0 1 #> 1362 25-215 90 3 1 3 0 #> 1363 30-052 71 3 2 2 1 #> 1364 20-137 19 0 0 0 0 #> 1365 26-180 90 0 0 0 0 #> 1366 27-146 90 3 1 1 2 #> 1367 29-074 90 1 1 1 0 #> 1368 29-188 90 2 1 1 1 #> 1369 30-281 90 0 0 0 0 #> 1370 27-171 90 0 0 0 0 #> 1371 35-108 60 0 0 0 0 #> 1372 25-251 30 0 0 0 0 #> 1373 29-178 90 6 5 2 3 #> 1374 26-030 70 1 0 0 0 #> 1375 29-212 20 0 0 0 0 #> 1376 24-277 90 4 1 2 2 #> 1377 21-303 90 2 1 1 1 #> 1378 21-033 78 2 0 0 1 #> 1379 31-017 12 1 0 0 1 #> 1380 29-108 90 2 1 1 1 #> 1381 23-099 90 0 0 0 0 #> 1382 29-114 90 1 1 1 0 #> 1383 29-309 90 3 3 1 2 #> 1384 36-326 90 0 0 0 0 #> 1385 23-079 63 2 2 1 1 #> 1386 34-174 27 1 1 0 0 #> 1387 26-002 60 0 0 0 0 #> 1388 25-182 30 0 0 0 0 #> 1389 30-233 90 1 1 0 1 #> 1390 32-241 90 2 2 1 1 #> 1391 24-081 90 0 0 0 0 #> 1392 26-245 77 1 1 0 1 #> 1393 28-211 13 0 0 0 0 #> 1394 20-065 90 0 0 0 0 #> 1395 28-010 90 1 1 1 0 #> 1396 26-260 90 2 2 2 0 #> 1397 31-133 90 5 4 5 0 #> 1398 26-244 90 0 0 0 0 #> 1399 23-084 90 3 1 0 2 #> 1400 21-157 90 3 2 1 0 #> 1401 23-227 76 3 1 1 2 #> 1402 32-068 14 1 1 0 1 #> 1403 22-095 90 4 2 2 2 #> 1404 21-179 60 3 1 1 1 #> 1405 28-201 30 0 0 0 0 #> 1406 25-338 62 0 0 0 0 #> 1407 26-306 28 1 0 0 1 #> 1408 24-204 90 4 3 1 2 #> 1409 30-251 90 0 0 0 0 #> 1410 24-181 90 2 1 1 1 #> 1411 26-093 90 2 2 2 0 #> 1412 26-128 90 0 0 0 0 #> 1413 23-343 75 0 0 0 0 #> 1414 25-350 15 0 0 0 0 #> 1415 28-075 70 1 0 0 1 #> 1416 26-141 20 1 1 1 0 #> 1417 30-152 90 2 1 0 1 #> 1418 24-194 64 1 1 0 1 #> 1419 26-013 26 0 0 0 0 #> 1420 27-096 90 0 0 0 0 #> 1421 21-355 90 2 2 0 2 #> 1422 25-109 90 1 0 1 0 #> 1423 26-188 90 2 2 1 1 #> 1424 29-111 90 2 2 2 0 #> 1425 28-207 90 1 1 0 1 #> 1426 33-228 90 0 0 0 0 #> 1427 27-188 52 0 0 0 0 #> 1428 30-263 38 3 2 2 1 #> 1429 29-353 64 0 0 0 0 #> 1430 23-137 26 1 0 1 0 #> 1431 22-317 90 0 0 0 0 #> 1432 26-260 90 0 0 0 0 #> 1433 25-104 90 2 2 0 2 #> 1434 23-200 90 0 0 0 0 #> 1435 33-047 90 4 4 2 2 #> 1436 32-221 90 2 0 2 0 #> 1437 23-248 38 1 0 0 1 #> 1438 22-223 52 2 1 2 0 #> 1439 20-148 90 0 0 0 0 #> 1440 25-261 90 0 0 0 0 #> 1441 26-256 55 1 1 1 0 #> 1442 24-231 35 0 0 0 0 #> 1443 19-158 45 1 1 0 1 #> 1444 33-012 45 1 1 0 0 #> 1445 30-177 90 1 1 1 0 #> 1446 31-108 90 2 1 2 0 #> 1447 24-266 90 0 0 0 0 #> 1448 26-190 90 2 2 1 1 #> 1449 33-143 68 2 2 2 0 #> 1450 25-197 22 1 1 1 0 #> 1451 24-174 90 1 1 1 0 #> 1452 30-329 90 2 2 2 0 #> 1453 29-115 90 3 2 2 1 #> 1454 22-209 90 0 0 0 0 #> 1455 21-117 90 2 0 1 1 #> 1456 20-090 73 2 1 1 1 #> 1457 23-282 17 0 0 0 0 #> 1458 29-153 90 0 0 0 0 #> 1459 25-128 81 4 3 2 2 #> 1460 26-265 9 0 0 0 0 #> 1461 32-030 85 0 0 0 0 #> 1462 30-139 5 1 1 1 0 #> 1463 24-089 90 0 0 0 0 #> 1464 29-149 90 4 2 1 3 #> 1465 26-236 90 3 1 3 0 #> 1466 22-083 90 1 1 1 0 #> 1467 30-015 90 1 0 1 0 #> 1468 34-122 90 0 0 0 0 #> 1469 23-025 60 0 0 0 0 #> 1470 31-245 30 1 1 0 0 #> 1471 21-134 70 0 0 0 0 #> 1472 21-212 20 1 0 0 0 #> 1473 31-094 90 0 0 0 0 #> 1474 26-106 90 2 2 0 1 #> 1475 30-072 90 4 3 4 0 #> 1476 30-200 90 1 0 0 0 #> 1477 32-316 69 1 1 1 0 #> 1478 29-189 21 1 1 1 0 #> 1479 24-316 90 1 1 0 0 #> 1480 31-236 90 0 0 0 0 #> 1481 26-231 90 1 1 0 1 #> 1482 26-149 90 0 0 0 0 #> 1483 24-103 90 0 0 0 0 #> 1484 25-281 90 1 1 0 0 #> 1485 26-230 90 1 1 0 1 #> 1486 32-077 69 1 0 1 0 #> 1487 21-197 21 0 0 0 0 #> 1488 29-202 66 0 0 0 0 #> 1489 22-331 24 0 0 0 0 #> 1490 31-219 90 1 0 0 0 #> 1491 28-228 90 3 3 2 0 #> 1492 27-132 90 0 0 0 0 #> 1493 21-239 90 1 1 1 0 #> 1494 29-165 80 2 1 2 0 #> 1495 22-014 10 0 0 0 0 #> 1496 21-107 90 0 0 0 0 #> 1497 32-018 59 0 0 0 0 #> 1498 26-012 31 0 0 0 0 #> 1499 26-172 87 0 0 0 0 #> 1500 22-170 3 1 0 1 0 #> 1501 30-093 63 3 0 0 3 #> 1502 33-287 27 0 0 0 0 #> 1503 27-205 90 2 1 0 2 #> 1504 26-344 90 5 4 1 4 #> 1505 22-216 90 5 3 2 1 #> 1506 30-192 90 3 2 2 1 #> 1507 29-244 90 0 0 0 0 #> 1508 28-261 90 2 2 1 1 #> 1509 27-306 90 1 0 1 0 #> 1510 29-090 90 0 0 0 0 #> 1511 28-045 68 0 0 0 0 #> 1512 26-265 22 1 0 0 1 #> 1513 22-324 90 1 1 0 1 #> 1514 29-216 90 3 2 1 2 #> 1515 30-089 89 1 0 0 1 #> 1516 29-111 1 0 0 0 0 #> 1517 26-138 90 1 1 0 0 #> 1518 21-165 84 0 0 0 0 #> 1519 31-346 6 0 0 0 0 #> 1520 32-309 90 0 0 0 0 #> 1521 26-182 90 2 0 1 1 #> 1522 29-184 90 0 0 0 0 #> 1523 30-053 90 1 0 1 0 #> 1524 29-181 90 0 0 0 0 #> 1525 30-281 58 1 1 0 1 #> 1526 25-056 32 0 0 0 0 #> 1527 22-248 90 1 1 0 0 #> 1528 29-072 90 1 1 1 0 #> 1529 28-265 90 2 2 2 0 #> 1530 26-215 90 3 1 2 1 #> 1531 33-017 69 1 1 0 1 #> 1532 22-050 21 0 0 0 0 #> 1533 30-137 90 0 0 0 0 #> 1534 32-180 90 0 0 0 0 #> 1535 25-154 90 3 1 2 1 #> 1536 28-251 58 1 1 0 0 #> 1537 27-087 32 1 1 0 1 #> 1538 26-138 90 0 0 0 0 #> 1539 24-359 82 1 1 0 1 #> 1540 31-140 8 0 0 0 0 #> 1541 27-204 90 0 0 0 0 #> 1542 21-301 75 1 0 0 1 #> 1543 27-274 15 0 0 0 0 #> 1544 27-136 69 0 0 0 0 #> 1545 25-223 21 2 1 0 1 #> 1546 21-267 90 2 0 0 2 #> 1547 29-118 90 0 0 0 0 #> 1548 23-124 90 1 1 0 1 #> 1549 26-122 90 2 1 1 1 #> 1550 31-351 90 0 0 0 0 #> 1551 26-000 90 3 3 1 2 #> 1552 29-069 90 1 0 1 0 #> 1553 22-043 90 0 0 0 0 #> 1554 31-056 85 0 0 0 0 #> 1555 25-229 5 0 0 0 0 #> 1556 19-235 90 0 0 0 0 #> 1557 23-305 90 0 0 0 0 #> 1558 24-201 45 1 0 0 1 #> 1559 23-234 45 0 0 0 0 #> 1560 24-314 90 3 1 2 1 #> 1561 27-028 90 0 0 0 0 #> 1562 32-347 90 1 0 1 0 #> 1563 31-228 90 1 1 1 0 #> 1564 27-096 69 0 0 0 0 #> 1565 21-260 21 2 1 0 1 #> 1566 32-054 90 0 0 0 0 #> 1567 26-118 72 1 1 0 0 #> 1568 26-165 18 0 0 0 0 #> 1569 25-004 90 0 0 0 0 #> 1570 27-080 90 0 0 0 0 #> 1571 28-064 61 0 0 0 0 #> 1572 32-154 29 2 1 0 2 #> 1573 26-227 90 1 1 1 0 #> 1574 28-320 79 0 0 0 0 #> 1575 24-333 11 0 0 0 0 #> 1576 22-344 90 3 2 2 1 #> 1577 28-247 90 2 2 2 0 #> 1578 28-326 90 0 0 0 0 #> 1579 22-140 90 0 0 0 0 #> 1580 26-132 90 0 0 0 0 #> 1581 31-154 69 0 0 0 0 #> 1582 36-158 21 0 0 0 0 #> 1583 29-338 90 0 0 0 0 #> 1584 22-073 83 2 2 0 1 #> 1585 25-188 7 0 0 0 0 #> 1586 23-244 90 2 1 0 2 #> 1587 22-362 76 3 1 2 1 #> 1588 32-145 14 0 0 0 0 #> 1589 28-106 90 1 1 0 1 #> 1590 27-102 90 2 1 2 0 #> 1591 28-126 90 2 0 0 2 #> 1592 26-270 90 0 0 0 0 #> 1593 30-153 90 4 3 2 1 #> 1594 25-176 90 0 0 0 0 #> 1595 28-238 74 1 1 0 0 #> 1596 37-256 16 0 0 0 0 #> 1597 21-140 90 2 2 0 0 #> 1598 23-263 90 3 3 1 2 #> 1599 27-149 90 3 2 0 3 #> 1600 30-060 90 3 3 1 2 #> 1601 27-228 69 1 1 0 0 #> 1602 30-277 21 0 0 0 0 #> 1603 29-204 90 4 2 1 1 #> 1604 23-013 90 3 2 3 0 #> 1605 30-037 90 0 0 0 0 #> 1606 32-216 81 1 0 0 1 #> 1607 22-181 9 0 0 0 0 #> 1608 29-267 90 0 0 0 0 #> 1609 27-267 67 0 0 0 0 #> 1610 22-127 23 0 0 0 0 #> 1611 21-175 72 0 0 0 0 #> 1612 24-083 18 0 0 0 0 #> 1613 31-066 90 1 1 0 1 #> 1614 26-288 53 3 3 1 1 #> 1615 25-119 90 4 3 2 2 #> 1616 23-087 90 2 2 1 1 #> 1617 27-194 90 1 1 1 0 #> 1618 26-208 90 2 2 1 1 #> 1619 29-327 90 1 1 1 0 #> 1620 34-330 87 0 0 0 0 #> 1621 23-077 3 1 1 1 0 #> 1622 29-013 90 0 0 0 0 #> 1623 31-350 90 1 0 0 1 #> 1624 27-329 90 0 0 0 0 #> 1625 26-129 90 0 0 0 0 #> 1626 30-285 90 0 0 0 0 #> 1627 20-141 90 0 0 0 0 #> 1628 30-056 72 1 0 1 0 #> 1629 21-091 18 2 2 1 1 #> 1630 19-014 81 1 1 0 1 #> 1631 30-270 9 0 0 0 0 #> 1632 27-150 90 1 1 0 1 #> 1633 29-078 90 1 0 0 1 #> 1634 29-192 72 0 0 0 0 #> 1635 21-234 18 1 0 0 1 #> 1636 27-175 90 0 0 0 0 #> 1637 24-271 90 2 2 0 2 #> 1638 30-117 64 2 1 0 2 #> 1639 37-068 26 0 0 0 0 #> 1640 28-220 74 0 0 0 0 #> 1641 22-171 16 0 0 0 0 #> 1642 31-364 85 0 0 0 0 #> 1643 31-231 5 0 0 0 0 #> 1644 27-223 90 1 1 0 1 #> 1645 22-036 90 1 1 0 1 #> 1646 22-200 90 2 1 2 0 #> 1647 29-035 90 4 3 3 1 #> 1648 27-255 90 1 1 1 0 #> 1649 26-340 90 0 0 0 0 #> 1650 23-288 90 0 0 0 0 #> 1651 23-346 90 2 0 0 2 #> 1652 28-078 77 2 2 1 0 #> 1653 25-336 13 1 1 1 0 #> 1654 26-016 90 2 2 0 2 #> 1655 30-155 64 3 2 2 1 #> 1656 22-197 26 1 1 0 1 #> 1657 27-099 64 4 3 2 2 #> 1658 26-144 26 0 0 0 0 #> 1659 21-358 90 2 1 1 1 #> 1660 25-112 90 3 2 2 1 #> 1661 26-191 90 0 0 0 0 #> 1662 27-270 90 0 0 0 0 #> 1663 28-210 90 3 1 3 0 #> 1664 33-231 90 0 0 0 0 #> 1665 25-254 90 2 1 0 1 #> 1666 35-111 90 1 0 0 1 #> 1667 31-088 81 2 2 1 1 #> 1668 21-036 9 0 0 0 0 #> 1669 31-020 90 5 4 2 2 #> 1670 26-033 70 1 0 1 0 #> 1671 29-215 20 1 0 0 1 #> 1672 21-306 86 2 1 1 1 #> 1673 24-280 4 0 0 0 0 #> 1674 29-111 90 4 4 3 1 #> 1675 23-102 90 1 1 1 0 #> 1676 30-034 90 1 0 0 0 #> 1677 32-250 90 1 0 1 0 #> 1678 36-329 90 0 0 0 0 #> 1679 26-310 90 0 0 0 0 #> 1680 32-072 90 1 0 0 1 #> 1681 22-099 15 1 1 0 1 #> 1682 25-342 75 1 0 0 1 #> 1683 28-205 90 2 2 2 0 #> 1684 21-183 90 1 1 0 1 #> 1685 21-161 75 0 0 0 0 #> 1686 23-088 15 0 0 0 0 #> 1687 24-208 90 3 1 3 0 #> 1688 30-141 90 2 2 2 0 #> 1689 24-185 90 3 2 1 1 #> 1690 26-097 45 0 0 0 0 #> 1691 23-082 45 1 1 0 1 #> 1692 34-180 90 0 0 0 0 #> 1693 24-362 67 0 0 0 0 #> 1694 27-207 23 0 0 0 0 #> 1695 31-143 90 3 1 1 1 #> 1696 27-277 59 0 0 0 0 #> 1697 21-304 31 1 1 1 0 #> 1698 25-226 75 2 0 1 0 #> 1699 27-139 15 1 0 0 1 #> 1700 29-166 90 3 3 2 0 #> 1701 21-270 90 3 3 2 1 #> 1702 20-312 90 2 1 0 1 #> 1703 21-284 90 0 0 0 0 #> 1704 27-307 90 4 3 3 1 #> 1705 24-157 90 0 0 0 0 #> 1706 29-072 90 0 0 0 0 #> 1707 31-248 90 0 0 0 0 #> 1708 26-109 90 1 1 0 1 #> 1709 21-137 79 0 0 0 0 #> 1710 23-028 11 0 0 0 0 #> 1711 30-203 90 0 0 0 0 #> 1712 26-234 50 1 0 0 1 #> 1713 30-075 40 2 1 0 1 #> 1714 31-130 54 2 0 0 2 #> 1715 31-097 36 1 1 0 0 #> 1716 29-192 90 3 2 2 0 #> 1717 23-104 90 1 1 1 0 #> 1718 31-239 90 2 0 0 2 #> 1719 24-317 90 4 2 1 1 #> 1720 26-152 90 0 0 0 0 #> 1721 24-106 78 2 2 2 0 #> 1722 37-230 12 1 0 0 0 #> 1723 28-231 90 1 1 1 0 #> 1724 30-289 90 2 1 1 1 #> 1725 32-080 90 1 1 0 0 #> 1726 31-222 66 0 0 0 0 #> 1727 29-122 24 0 0 0 0 #> 1728 28-128 90 2 1 1 1 #> 1729 30-212 90 2 1 1 1 #> 1730 27-135 22 1 1 1 0 #> 1731 19-339 68 2 1 2 0 #> 1732 23-248 90 0 0 0 0 #> 1733 29-168 90 6 4 4 2 #> 1734 21-110 90 0 0 0 0 #> 1735 28-308 68 1 1 0 0 #> 1736 34-178 22 0 0 0 0 #> 1737 28-215 90 3 1 0 1 #> 1738 25-205 90 0 0 0 0 #> 1739 26-249 68 3 3 0 3 #> 1740 24-085 22 2 2 0 1 #> 1741 32-194 90 1 1 0 0 #> 1742 32-245 90 0 0 0 0 #> 1743 29-024 90 0 0 0 0 #> 1744 28-014 90 2 1 0 0 #> 1745 33-339 82 1 1 1 0 #> 1746 31-137 8 0 0 0 0 #> 1747 27-073 90 1 1 0 0 #> 1748 26-248 90 0 0 0 0 #> 1749 22-327 89 1 0 1 0 #> 1750 27-166 1 0 0 0 0 #> 1751 28-048 82 2 2 0 2 #> 1752 26-268 8 2 1 1 1 #> 1753 29-219 90 2 1 2 0 #> 1754 30-092 90 4 1 2 2 #> 1755 26-141 72 3 1 3 0 #> 1756 29-114 18 0 0 0 0 #> 1757 21-168 90 2 1 0 1 #> 1758 32-312 90 0 0 0 0 #> 1759 26-185 90 1 1 1 0 #> 1760 29-187 90 3 0 3 0 #> 1761 30-056 90 1 1 1 0 #> 1762 29-184 90 0 0 0 0 #> 1763 30-284 87 0 0 0 0 #> 1764 18-079 3 0 0 0 0 #> 1765 22-251 90 0 0 0 0 #> 1766 29-075 45 0 0 0 0 #> 1767 22-053 45 0 0 0 0 #> 1768 28-268 90 2 1 1 0 #> 1769 26-218 90 4 3 1 2 #> 1770 33-020 81 1 0 0 1 #> 1771 27-090 9 1 1 0 1 #> 1772 28-254 90 2 2 1 1 #> 1773 32-183 90 1 1 1 0 #> 1774 25-157 90 1 1 1 0 #> 1775 26-261 90 2 2 0 0 #> 1776 26-141 90 0 0 0 0 #> 1777 27-192 90 1 1 0 1 #> 1778 29-357 68 0 0 0 0 #> 1779 25-108 22 0 0 0 0 #> 1780 26-264 90 3 3 2 1 #> 1781 22-099 84 4 2 2 2 #> 1782 30-267 6 0 0 0 0 #> 1783 23-312 90 3 2 1 2 #> 1784 22-321 59 0 0 0 0 #> 1785 23-204 31 1 0 1 0 #> 1786 33-051 90 2 2 1 0 #> 1787 32-225 90 1 0 0 1 #> 1788 23-252 90 1 0 1 0 #> 1789 33-263 90 3 2 3 0 #> 1790 25-265 90 0 0 0 0 #> 1791 19-163 90 0 0 0 0 #> 1792 24-236 90 0 0 0 0 #> 1793 26-195 90 0 0 0 0 #> 1794 24-271 90 1 1 0 1 #> 1795 33-017 90 1 1 0 1 #> 1796 31-113 58 2 1 0 2 #> 1797 24-099 32 2 1 1 1 #> 1798 25-202 21 1 1 1 0 #> 1799 30-334 69 5 1 3 2 #> 1800 24-179 90 1 1 0 1 #> 1801 27-175 90 2 2 2 0 #> 1802 29-120 54 1 0 0 1 #> 1803 30-182 36 3 3 0 3 #> 1804 25-298 90 0 0 0 0 #> 1805 31-353 90 1 0 0 1 #> 1806 26-132 90 1 1 0 0 #> 1807 21-094 63 1 0 0 1 #> 1808 30-059 27 0 0 0 0 #> 1809 27-332 45 1 1 1 0 #> 1810 29-195 45 2 1 2 0 #> 1811 20-144 90 1 1 1 0 #> 1812 25-222 76 2 2 0 1 #> 1813 25-158 14 0 0 0 0 #> 1814 26-187 90 5 5 3 2 #> 1815 29-081 90 2 1 1 1 #> 1816 27-153 90 2 1 2 0 #> 1817 30-288 90 2 1 1 1 #> 1818 27-178 90 0 0 0 0 #> 1819 32-022 90 0 0 0 0 #> 1820 26-176 90 0 0 0 0 #> 1821 33-291 65 0 0 0 0 #> 1822 26-016 25 0 0 0 0 #> 1823 27-209 90 2 2 0 1 #> 1824 26-348 90 2 2 0 1 #> 1825 22-220 90 3 2 0 2 #> 1826 30-196 76 0 0 0 0 #> 1827 22-174 14 1 1 1 0 #> 1828 29-248 90 2 0 2 0 #> 1829 28-265 90 2 1 1 1 #> 1830 27-310 45 2 0 2 0 #> 1831 30-097 45 0 0 0 0 #> 1832 29-094 90 0 0 0 0 #> 1833 28-241 90 1 1 1 0 #> 1834 22-184 69 0 0 0 0 #> 1835 23-258 21 0 0 0 0 #> 1836 23-266 84 3 2 3 0 #> 1837 24-093 6 0 0 0 0 #> 1838 27-152 90 3 2 1 2 #> 1839 30-063 89 2 1 2 0 #> 1840 37-259 1 0 0 0 0 #> 1841 30-280 90 1 0 0 1 #> 1842 29-207 90 7 5 7 0 #> 1843 23-016 90 2 2 1 1 #> 1844 30-040 90 0 0 0 0 #> 1845 32-219 90 0 0 0 0 #> 1846 29-270 90 0 0 0 0 #> 1847 31-069 90 0 0 0 0 #> 1848 22-130 90 0 0 0 0 #> 1849 27-191 82 3 1 1 1 #> 1850 26-019 8 0 0 0 0 #> 1851 24-314 90 1 0 0 1 #> 1852 25-122 90 1 1 1 0 #> 1853 28-327 90 0 0 0 0 #> 1854 24-086 59 0 0 0 0 #> 1855 23-080 31 2 1 0 2 #> 1856 23-226 90 3 3 2 1 #> 1857 29-330 90 0 0 0 0 #> 1858 23-164 71 1 1 1 0 #> 1859 26-211 19 0 0 0 0 #> 1860 29-016 90 0 0 0 0 #> 1861 26-168 65 0 0 0 0 #> 1862 25-007 25 0 0 0 0 #> 1863 26-121 90 2 2 1 1 #> 1864 24-336 58 1 1 1 0 #> 1865 27-083 32 0 0 0 0 #> 1866 32-157 90 0 0 0 0 #> 1867 30-351 90 6 3 2 4 #> 1868 28-323 90 0 0 0 0 #> 1869 22-347 45 0 0 0 0 #> 1870 28-250 45 1 1 0 1 #> 1871 24-147 90 1 0 1 0 #> 1872 28-329 90 2 1 1 1 #> 1873 22-143 90 4 3 3 1 #> 1874 26-135 90 0 0 0 0 #> 1875 37-071 90 0 0 0 0 #> 1876 29-267 83 1 1 0 0 #> 1877 24-274 7 0 0 0 0 #> 1878 22-174 90 4 2 0 3 #> 1879 27-226 74 1 1 0 1 #> 1880 22-210 16 0 0 0 0 #> 1881 28-223 90 2 1 0 0 #> 1882 27-050 90 0 0 0 0 #> 1883 31-110 80 0 0 0 0 #> 1884 26-176 10 0 0 0 0 #> 1885 27-258 90 3 1 2 1 #> 1886 31-234 90 0 0 0 0 #> 1887 26-343 90 0 0 0 0 #> 1888 28-105 90 0 0 0 0 #> 1889 21-121 76 0 0 0 0 #> 1890 27-128 14 1 0 1 0 #> 1891 20-094 54 1 1 1 0 #> 1892 25-132 36 1 0 1 0 #> 1893 23-286 90 5 3 3 2 #> 1894 29-157 90 3 2 1 2 #> 1895 32-034 54 0 0 0 0 #> 1896 26-269 36 0 0 0 0 #> 1897 24-093 90 4 3 3 1 #> 1898 29-153 90 1 1 1 0 #> 1899 26-240 90 3 3 1 2 #> 1900 22-087 90 1 0 0 1 #> 1901 30-019 90 0 0 0 0 #> 1902 34-126 90 0 0 0 0 #> 1903 22-048 90 0 0 0 0 #> 1904 31-061 90 0 0 0 0 #> 1905 21-267 90 4 2 0 3 #> 1906 23-310 90 0 0 0 0 #> 1907 19-240 58 2 1 1 0 #> 1908 24-206 32 2 2 1 1 #> 1909 22-273 76 0 0 0 0 #> 1910 27-033 14 0 0 0 0 #> 1911 25-234 90 4 3 3 1 #> 1912 31-233 80 3 2 3 0 #> 1913 23-239 10 0 0 0 0 #> 1914 32-352 90 4 4 4 0 #> 1915 27-101 90 1 1 1 0 #> 1916 32-059 90 0 0 0 0 #> 1917 36-162 90 0 0 0 0 #> 1918 31-158 75 0 0 0 0 #> 1919 25-193 15 0 0 0 0 #> 1920 22-077 88 2 2 0 2 #> 1921 32-149 2 0 0 0 0 #> 1922 23-248 90 1 0 0 1 #> 1923 23-001 65 2 2 0 2 #> 1924 29-342 25 0 0 0 0 #> 1925 28-110 90 1 1 0 1 #> 1926 31-183 90 2 2 0 2 #> 1927 28-130 90 1 1 1 0 #> 1928 26-274 90 1 0 0 1 #> 1929 30-157 90 3 1 2 1 #> 1930 25-180 90 0 0 0 0 #> 1931 24-112 90 0 0 0 0 #> 1932 25-290 90 1 1 1 0 #> 1933 30-295 90 0 0 0 0 #> 1934 31-228 83 1 0 0 1 #> 1935 29-128 7 0 0 0 0 #> 1936 28-134 90 0 0 0 0 #> 1937 32-086 67 1 1 0 0 #> 1938 37-236 23 0 0 0 0 #> 1939 28-237 90 0 0 0 0 #> 1940 27-141 90 2 1 1 1 #> 1941 23-254 90 2 0 0 2 #> 1942 29-174 67 1 1 0 0 #> 1943 26-239 23 1 1 0 0 #> 1944 21-116 90 0 0 0 0 #> 1945 23-094 90 2 2 0 1 #> 1946 21-167 85 1 0 0 1 #> 1947 30-261 5 0 0 0 0 #> 1948 23-237 75 2 2 1 1 #> 1949 23-088 15 0 0 0 0 #> 1950 25-348 65 0 0 0 0 #> 1951 32-078 25 1 0 1 0 #> 1952 21-189 90 2 2 1 1 #> 1953 28-211 90 5 3 4 1 #> 1954 24-214 90 3 1 3 0 #> 1955 30-147 90 1 1 1 0 #> 1956 24-191 90 2 2 2 0 #> 1957 22-062 90 5 2 3 1 #> 1958 34-186 90 0 0 0 0 #> 1959 31-359 90 0 0 0 0 #> 1960 26-138 76 0 0 0 0 #> 1961 30-279 14 0 0 0 0 #> 1962 30-065 90 1 0 1 0 #> 1963 27-338 90 2 2 1 0 #> 1964 20-150 90 0 0 0 0 #> 1965 30-294 80 3 3 0 3 #> 1966 21-243 10 0 0 0 0 #> 1967 19-023 72 0 0 0 0 #> 1968 25-164 18 0 0 0 0 #> 1969 26-193 90 8 4 4 3 #> 1970 29-087 90 0 0 0 0 #> 1971 27-159 90 2 2 1 1 #> 1972 27-184 90 0 0 0 0 #> 1973 34-185 70 0 0 0 0 #> 1974 28-315 20 0 0 0 0 #> 1975 28-222 84 0 0 0 0 #> 1976 26-256 6 1 0 1 0 #> 1977 30-244 90 1 1 1 0 #> 1978 24-092 90 2 2 0 1 #> 1979 32-201 90 2 1 0 2 #> 1980 32-252 76 2 1 2 0 #> 1981 20-076 14 0 0 0 0 #> 1982 29-031 90 3 1 1 2 #> 1983 31-144 90 2 1 2 0 #> 1984 26-271 90 1 1 1 0 #> 1985 27-080 90 2 1 1 1 #> 1986 26-255 90 0 0 0 0 #> 1987 29-347 61 0 0 0 0 #> 1988 31-163 29 1 0 0 1 #> 1989 36-167 90 1 0 0 0 #> 1990 22-082 66 2 1 0 2 #> 1991 25-198 24 0 0 0 0 #> 1992 23-253 90 2 1 1 1 #> 1993 23-006 53 0 0 0 0 #> 1994 32-154 37 2 2 0 1 #> 1995 28-115 89 0 0 0 0 #> 1996 31-188 90 3 2 1 2 #> 1997 28-135 90 1 0 0 1 #> 1998 26-279 90 6 6 5 1 #> 1999 30-162 90 3 2 1 1 #> 2000 25-185 90 0 0 0 0 #> 2001 22-136 83 2 2 0 0 #> 2002 21-184 7 0 0 0 0 #> 2003 31-075 90 0 0 0 0 #> 2004 25-128 90 3 2 2 1 #> 2005 27-197 90 1 1 1 0 #> 2006 24-320 45 1 0 1 0 #> 2007 23-096 45 2 1 1 1 #> 2008 28-333 90 1 1 0 0 #> 2009 24-092 90 3 1 1 2 #> 2010 23-232 90 1 1 1 0 #> 2011 29-336 90 3 1 2 1 #> 2012 23-170 73 2 1 2 0 #> 2013 34-339 17 1 1 1 0 #> 2014 29-022 90 0 0 0 0 #> 2015 25-013 90 0 0 0 0 #> 2016 27-089 90 0 0 0 0 #> 2017 28-329 66 3 3 2 1 #> 2018 26-127 24 0 0 0 0 #> 2019 28-073 73 0 0 0 0 #> 2020 32-163 17 0 0 0 0 #> 2021 30-357 90 1 1 0 1 #> 2022 26-236 90 2 1 0 1 #> 2023 22-353 90 2 0 2 0 #> 2024 24-153 87 3 2 1 2 #> 2025 22-149 3 0 0 0 0 #> 2026 28-335 90 4 4 4 0 #> 2027 28-256 90 3 1 3 0 #> 2028 26-141 90 0 0 0 0 #> 2029 30-291 45 0 0 0 0 #> 2030 25-066 45 0 0 0 0 #> 2031 22-060 90 1 1 0 1 #> 2032 29-082 79 0 0 0 0 #> 2033 18-086 11 0 0 0 0 #> 2034 28-275 90 0 0 0 0 #> 2035 26-225 61 1 1 0 1 #> 2036 22-258 29 0 0 0 0 #> 2037 33-027 90 3 2 3 0 #> 2038 28-261 90 1 1 0 1 #> 2039 32-190 90 1 0 0 1 #> 2040 25-164 90 0 0 0 0 #> Att 3rd_Tackles Tkl_Challenges Att_Challenges Tkl_percent_Challenges #> 1 0 0 0 NA #> 2 0 0 0 NA #> 3 0 0 0 NA #> 4 0 0 1 0.0 #> 5 0 0 0 NA #> 6 0 0 1 0.0 #> 7 0 0 1 0.0 #> 8 0 1 2 50.0 #> 9 0 0 1 0.0 #> 10 0 1 1 100.0 #> 11 0 2 2 100.0 #> 12 0 0 0 NA #> 13 2 1 5 20.0 #> 14 0 0 0 NA #> 15 1 1 1 100.0 #> 16 0 0 2 0.0 #> 17 2 4 7 57.1 #> 18 0 0 0 NA #> 19 0 0 1 0.0 #> 20 0 0 0 NA #> 21 0 0 0 NA #> 22 0 1 2 50.0 #> 23 0 1 2 50.0 #> 24 0 5 8 62.5 #> 25 0 1 3 33.3 #> 26 0 1 3 33.3 #> 27 0 0 1 0.0 #> 28 0 0 0 NA #> 29 0 0 2 0.0 #> 30 0 0 0 NA #> 31 0 0 0 NA #> 32 2 1 1 100.0 #> 33 0 2 2 100.0 #> 34 0 0 1 0.0 #> 35 1 1 3 33.3 #> 36 2 2 7 28.6 #> 37 1 1 3 33.3 #> 38 0 0 0 NA #> 39 0 1 1 100.0 #> 40 0 4 5 80.0 #> 41 0 1 1 100.0 #> 42 0 0 0 NA #> 43 0 0 1 0.0 #> 44 0 0 0 NA #> 45 0 0 2 0.0 #> 46 0 2 3 66.7 #> 47 0 1 3 33.3 #> 48 1 0 4 0.0 #> 49 0 1 1 100.0 #> 50 0 1 5 20.0 #> 51 0 0 0 NA #> 52 0 0 1 0.0 #> 53 0 0 1 0.0 #> 54 0 2 2 100.0 #> 55 0 1 2 50.0 #> 56 0 0 0 NA #> 57 1 0 0 NA #> 58 0 0 0 NA #> 59 0 0 2 0.0 #> 60 0 0 0 NA #> 61 1 0 1 0.0 #> 62 0 0 0 NA #> 63 0 0 1 0.0 #> 64 0 0 1 0.0 #> 65 0 0 1 0.0 #> 66 0 1 2 50.0 #> 67 0 0 0 NA #> 68 0 1 1 100.0 #> 69 0 0 0 NA #> 70 0 0 0 NA #> 71 0 0 0 NA #> 72 0 1 1 100.0 #> 73 1 2 4 50.0 #> 74 0 0 0 NA #> 75 0 1 3 33.3 #> 76 0 2 2 100.0 #> 77 0 1 2 50.0 #> 78 0 2 2 100.0 #> 79 0 2 5 40.0 #> 80 1 1 1 100.0 #> 81 0 1 1 100.0 #> 82 0 1 1 100.0 #> 83 0 3 5 60.0 #> 84 0 0 0 NA #> 85 0 0 0 NA #> 86 0 0 0 NA #> 87 0 0 2 0.0 #> 88 0 0 0 NA #> 89 0 0 0 NA #> 90 0 0 1 0.0 #> 91 1 0 0 NA #> 92 0 0 3 0.0 #> 93 0 0 0 NA #> 94 0 1 2 50.0 #> 95 0 0 0 NA #> 96 0 0 0 NA #> 97 2 4 4 100.0 #> 98 0 0 0 NA #> 99 0 0 1 0.0 #> 100 0 0 1 0.0 #> 101 0 0 0 NA #> 102 0 0 1 0.0 #> 103 0 0 0 NA #> 104 1 1 3 33.3 #> 105 0 1 2 50.0 #> 106 1 1 2 50.0 #> 107 0 0 0 NA #> 108 0 1 3 33.3 #> 109 0 0 0 NA #> 110 0 1 1 100.0 #> 111 0 0 1 0.0 #> 112 0 0 0 NA #> 113 0 0 0 NA #> 114 0 0 0 NA #> 115 0 0 1 0.0 #> 116 0 0 0 NA #> 117 0 0 0 NA #> 118 1 1 1 100.0 #> 119 0 0 0 NA #> 120 1 2 2 100.0 #> 121 0 0 2 0.0 #> 122 0 0 0 NA #> 123 0 1 1 100.0 #> 124 0 0 1 0.0 #> 125 1 0 0 NA #> 126 0 0 0 NA #> 127 0 0 0 NA #> 128 0 0 0 NA #> 129 1 1 4 25.0 #> 130 0 0 0 NA #> 131 0 0 0 NA #> 132 0 1 2 50.0 #> 133 0 0 2 0.0 #> 134 0 0 1 0.0 #> 135 0 1 2 50.0 #> 136 0 0 1 0.0 #> 137 0 1 3 33.3 #> 138 0 0 1 0.0 #> 139 0 1 2 50.0 #> 140 0 0 0 NA #> 141 0 0 0 NA #> 142 1 0 0 NA #> 143 0 0 0 NA #> 144 0 0 0 NA #> 145 0 1 1 100.0 #> 146 0 2 5 40.0 #> 147 0 0 1 0.0 #> 148 0 0 1 0.0 #> 149 0 0 1 0.0 #> 150 0 3 5 60.0 #> 151 0 0 0 NA #> 152 0 1 2 50.0 #> 153 0 1 2 50.0 #> 154 0 0 0 NA #> 155 0 0 0 NA #> 156 0 0 0 NA #> 157 0 0 0 NA #> 158 0 1 1 100.0 #> 159 0 0 3 0.0 #> 160 0 0 1 0.0 #> 161 0 0 0 NA #> 162 0 0 1 0.0 #> 163 0 2 2 100.0 #> 164 0 5 6 83.3 #> 165 0 0 0 NA #> 166 0 0 0 NA #> 167 0 1 1 100.0 #> 168 0 0 0 NA #> 169 1 0 0 NA #> 170 0 0 1 0.0 #> 171 0 0 0 NA #> 172 0 0 0 NA #> 173 0 0 1 0.0 #> 174 0 0 0 NA #> 175 0 0 1 0.0 #> 176 0 0 2 0.0 #> 177 0 1 2 50.0 #> 178 0 0 2 0.0 #> 179 0 3 3 100.0 #> 180 0 1 3 33.3 #> 181 0 0 0 NA #> 182 0 0 0 NA #> 183 0 1 2 50.0 #> 184 0 0 0 NA #> 185 0 0 0 NA #> 186 0 0 4 0.0 #> 187 0 0 0 NA #> 188 0 1 2 50.0 #> 189 0 0 1 0.0 #> 190 0 0 0 NA #> 191 0 0 0 NA #> 192 0 2 2 100.0 #> 193 0 0 0 NA #> 194 0 1 1 100.0 #> 195 0 0 0 NA #> 196 2 0 0 NA #> 197 0 0 1 0.0 #> 198 0 1 2 50.0 #> 199 0 0 0 NA #> 200 1 1 3 33.3 #> 201 0 1 1 100.0 #> 202 0 0 1 0.0 #> 203 1 0 0 NA #> 204 0 0 0 NA #> 205 1 1 3 33.3 #> 206 0 1 1 100.0 #> 207 0 0 0 NA #> 208 1 0 0 NA #> 209 0 0 0 NA #> 210 0 0 0 NA #> 211 0 0 0 NA #> 212 0 0 2 0.0 #> 213 0 0 1 0.0 #> 214 0 0 1 0.0 #> 215 0 1 3 33.3 #> 216 0 0 0 NA #> 217 0 0 3 0.0 #> 218 0 1 3 33.3 #> 219 0 1 2 50.0 #> 220 0 0 0 NA #> 221 0 2 2 100.0 #> 222 2 3 7 42.9 #> 223 0 0 0 NA #> 224 0 0 0 NA #> 225 0 0 0 NA #> 226 1 0 1 0.0 #> 227 0 0 1 0.0 #> 228 0 1 1 100.0 #> 229 1 3 7 42.9 #> 230 1 1 2 50.0 #> 231 0 0 0 NA #> 232 0 2 3 66.7 #> 233 0 0 0 NA #> 234 0 0 1 0.0 #> 235 0 0 0 NA #> 236 0 0 2 0.0 #> 237 0 0 0 NA #> 238 0 0 0 NA #> 239 0 0 0 NA #> 240 0 0 0 NA #> 241 0 4 4 100.0 #> 242 1 1 1 100.0 #> 243 0 0 0 NA #> 244 0 1 3 33.3 #> 245 1 0 2 0.0 #> 246 0 0 0 NA #> 247 0 4 7 57.1 #> 248 0 4 4 100.0 #> 249 0 0 0 NA #> 250 0 1 1 100.0 #> 251 0 0 0 NA #> 252 0 0 0 NA #> 253 0 0 0 NA #> 254 0 0 1 0.0 #> 255 1 0 1 0.0 #> 256 0 0 1 0.0 #> 257 1 1 4 25.0 #> 258 1 0 2 0.0 #> 259 0 0 0 NA #> 260 0 1 2 50.0 #> 261 0 0 1 0.0 #> 262 0 0 0 NA #> 263 0 1 1 100.0 #> 264 0 0 0 NA #> 265 0 0 0 NA #> 266 1 0 0 NA #> 267 0 0 0 NA #> 268 0 0 0 NA #> 269 0 1 1 100.0 #> 270 0 0 0 NA #> 271 0 1 3 33.3 #> 272 0 1 2 50.0 #> 273 0 0 2 0.0 #> 274 0 1 2 50.0 #> 275 0 0 0 NA #> 276 0 0 0 NA #> 277 0 0 0 NA #> 278 0 1 2 50.0 #> 279 0 0 0 NA #> 280 0 0 1 0.0 #> 281 0 0 0 NA #> 282 0 0 0 NA #> 283 0 0 0 NA #> 284 0 2 2 100.0 #> 285 1 2 4 50.0 #> 286 0 0 1 0.0 #> 287 0 0 1 0.0 #> 288 0 0 2 0.0 #> 289 0 0 1 0.0 #> 290 0 0 0 NA #> 291 0 0 1 0.0 #> 292 0 1 1 100.0 #> 293 0 0 0 NA #> 294 0 0 0 NA #> 295 1 0 1 0.0 #> 296 0 1 1 100.0 #> 297 1 0 2 0.0 #> 298 0 0 0 NA #> 299 0 0 0 NA #> 300 0 0 0 NA #> 301 1 0 0 NA #> 302 0 0 0 NA #> 303 0 1 3 33.3 #> 304 0 1 1 100.0 #> 305 0 0 0 NA #> 306 0 1 2 50.0 #> 307 0 0 0 NA #> 308 0 0 1 0.0 #> 309 1 0 0 NA #> 310 0 0 1 0.0 #> 311 1 0 1 0.0 #> 312 0 0 0 NA #> 313 0 0 2 0.0 #> 314 0 0 0 NA #> 315 0 0 1 0.0 #> 316 0 1 2 50.0 #> 317 0 0 0 NA #> 318 0 0 0 NA #> 319 0 0 0 NA #> 320 0 0 1 0.0 #> 321 0 0 0 NA #> 322 0 0 0 NA #> 323 0 1 3 33.3 #> 324 0 0 0 NA #> 325 0 0 1 0.0 #> 326 0 2 2 100.0 #> 327 0 1 2 50.0 #> 328 0 0 0 NA #> 329 0 0 1 0.0 #> 330 0 1 2 50.0 #> 331 0 0 0 NA #> 332 0 0 0 NA #> 333 0 1 1 100.0 #> 334 0 1 2 50.0 #> 335 0 0 0 NA #> 336 0 0 0 NA #> 337 0 0 0 NA #> 338 0 0 0 NA #> 339 0 0 0 NA #> 340 1 1 2 50.0 #> 341 0 0 0 NA #> 342 0 0 3 0.0 #> 343 0 0 1 0.0 #> 344 0 0 1 0.0 #> 345 1 1 2 50.0 #> 346 0 3 4 75.0 #> 347 0 1 1 100.0 #> 348 0 1 3 33.3 #> 349 0 0 1 0.0 #> 350 0 0 1 0.0 #> 351 0 0 1 0.0 #> 352 0 0 0 NA #> 353 0 0 0 NA #> 354 0 1 2 50.0 #> 355 0 0 1 0.0 #> 356 0 0 1 0.0 #> 357 0 0 0 NA #> 358 0 0 3 0.0 #> 359 0 1 1 100.0 #> 360 1 2 2 100.0 #> 361 0 1 1 100.0 #> 362 0 1 1 100.0 #> 363 0 0 0 NA #> 364 0 0 0 NA #> 365 1 0 3 0.0 #> 366 1 1 1 100.0 #> 367 0 0 3 0.0 #> 368 0 2 6 33.3 #> 369 0 4 5 80.0 #> 370 0 1 3 33.3 #> 371 0 2 2 100.0 #> 372 1 1 1 100.0 #> 373 0 0 2 0.0 #> 374 0 1 1 100.0 #> 375 0 0 0 NA #> 376 0 1 1 100.0 #> 377 0 0 0 NA #> 378 0 0 0 NA #> 379 0 0 0 NA #> 380 0 0 0 NA #> 381 0 1 3 33.3 #> 382 0 0 0 NA #> 383 1 2 3 66.7 #> 384 0 0 1 0.0 #> 385 0 0 0 NA #> 386 0 1 3 33.3 #> 387 0 1 1 100.0 #> 388 0 0 0 NA #> 389 0 3 4 75.0 #> 390 0 2 4 50.0 #> 391 0 0 0 NA #> 392 0 0 1 0.0 #> 393 0 0 2 0.0 #> 394 0 0 0 NA #> 395 1 1 1 100.0 #> 396 0 0 0 NA #> 397 0 1 3 33.3 #> 398 0 0 2 0.0 #> 399 0 0 1 0.0 #> 400 0 0 1 0.0 #> 401 0 2 2 100.0 #> 402 0 0 0 NA #> 403 0 2 3 66.7 #> 404 1 0 2 0.0 #> 405 0 0 0 NA #> 406 0 0 1 0.0 #> 407 0 0 0 NA #> 408 0 0 0 NA #> 409 0 0 0 NA #> 410 0 0 0 NA #> 411 0 0 2 0.0 #> 412 0 0 0 NA #> 413 0 0 0 NA #> 414 0 0 0 NA #> 415 0 2 3 66.7 #> 416 0 0 0 NA #> 417 0 1 1 100.0 #> 418 0 2 2 100.0 #> 419 0 0 0 NA #> 420 0 0 0 NA #> 421 0 0 0 NA #> 422 0 0 1 0.0 #> 423 0 0 0 NA #> 424 0 0 0 NA #> 425 0 1 2 50.0 #> 426 0 0 0 NA #> 427 0 0 0 NA #> 428 0 1 2 50.0 #> 429 2 2 3 66.7 #> 430 0 1 2 50.0 #> 431 0 0 0 NA #> 432 0 1 1 100.0 #> 433 0 0 0 NA #> 434 0 0 3 0.0 #> 435 0 0 0 NA #> 436 0 0 1 0.0 #> 437 0 0 0 NA #> 438 0 0 0 NA #> 439 0 1 1 100.0 #> 440 1 0 3 0.0 #> 441 1 2 4 50.0 #> 442 1 0 0 NA #> 443 1 2 2 100.0 #> 444 0 0 0 NA #> 445 0 1 1 100.0 #> 446 0 0 2 0.0 #> 447 0 1 1 100.0 #> 448 0 0 0 NA #> 449 0 0 0 NA #> 450 0 0 0 NA #> 451 1 0 0 NA #> 452 0 2 2 100.0 #> 453 0 0 0 NA #> 454 0 0 4 0.0 #> 455 0 2 2 100.0 #> 456 1 2 5 40.0 #> 457 0 1 1 100.0 #> 458 0 0 2 0.0 #> 459 0 3 5 60.0 #> 460 0 0 0 NA #> 461 0 0 0 NA #> 462 0 0 0 NA #> 463 0 0 0 NA #> 464 0 0 0 NA #> 465 0 0 0 NA #> 466 0 0 2 0.0 #> 467 0 0 0 NA #> 468 0 0 0 NA #> 469 0 0 0 NA #> 470 0 0 0 NA #> 471 0 0 0 NA #> 472 0 2 3 66.7 #> 473 0 1 2 50.0 #> 474 1 1 3 33.3 #> 475 0 0 0 NA #> 476 0 0 0 NA #> 477 0 0 1 0.0 #> 478 0 0 1 0.0 #> 479 0 0 1 0.0 #> 480 0 0 1 0.0 #> 481 0 0 0 NA #> 482 0 1 1 100.0 #> 483 0 1 3 33.3 #> 484 0 0 0 NA #> 485 0 0 0 NA #> 486 0 1 1 100.0 #> 487 0 0 0 NA #> 488 0 0 2 0.0 #> 489 0 0 0 NA #> 490 0 0 0 NA #> 491 1 1 1 100.0 #> 492 1 0 0 NA #> 493 0 0 1 0.0 #> 494 0 0 0 NA #> 495 0 0 2 0.0 #> 496 0 1 1 100.0 #> 497 0 0 0 NA #> 498 0 3 5 60.0 #> 499 0 1 2 50.0 #> 500 0 0 0 NA #> 501 0 0 0 NA #> 502 0 0 1 0.0 #> 503 0 0 0 NA #> 504 0 0 0 NA #> 505 0 0 3 0.0 #> 506 2 0 0 NA #> 507 0 0 0 NA #> 508 2 2 2 100.0 #> 509 0 0 2 0.0 #> 510 0 0 0 NA #> 511 0 1 2 50.0 #> 512 0 0 2 0.0 #> 513 0 1 1 100.0 #> 514 0 0 0 NA #> 515 0 2 3 66.7 #> 516 0 1 1 100.0 #> 517 0 0 0 NA #> 518 0 1 1 100.0 #> 519 0 0 0 NA #> 520 0 0 0 NA #> 521 0 1 1 100.0 #> 522 0 0 0 NA #> 523 0 0 1 0.0 #> 524 1 1 3 33.3 #> 525 0 0 1 0.0 #> 526 0 0 0 NA #> 527 0 0 2 0.0 #> 528 0 1 1 100.0 #> 529 0 1 1 100.0 #> 530 0 2 3 66.7 #> 531 0 0 0 NA #> 532 0 0 0 NA #> 533 0 0 0 NA #> 534 0 0 0 NA #> 535 0 1 2 50.0 #> 536 0 2 5 40.0 #> 537 0 1 4 25.0 #> 538 0 0 0 NA #> 539 0 2 2 100.0 #> 540 0 1 2 50.0 #> 541 0 2 2 100.0 #> 542 0 0 0 NA #> 543 1 1 1 100.0 #> 544 0 1 1 100.0 #> 545 0 0 0 NA #> 546 0 0 1 0.0 #> 547 0 0 1 0.0 #> 548 0 0 0 NA #> 549 0 0 0 NA #> 550 0 0 0 NA #> 551 0 0 3 0.0 #> 552 0 1 2 50.0 #> 553 1 1 2 50.0 #> 554 0 0 0 NA #> 555 0 3 3 100.0 #> 556 0 0 1 0.0 #> 557 0 0 0 NA #> 558 0 2 2 100.0 #> 559 0 0 0 NA #> 560 0 0 0 NA #> 561 0 0 0 NA #> 562 0 0 0 NA #> 563 0 0 0 NA #> 564 0 0 0 NA #> 565 0 0 0 NA #> 566 0 0 0 NA #> 567 0 0 1 0.0 #> 568 1 0 0 NA #> 569 0 0 0 NA #> 570 0 1 1 100.0 #> 571 0 0 0 NA #> 572 1 1 3 33.3 #> 573 0 0 0 NA #> 574 2 0 0 NA #> 575 0 0 0 NA #> 576 0 2 3 66.7 #> 577 1 1 1 100.0 #> 578 1 2 5 40.0 #> 579 0 1 2 50.0 #> 580 0 1 1 100.0 #> 581 0 1 4 25.0 #> 582 0 1 1 100.0 #> 583 0 1 2 50.0 #> 584 0 1 1 100.0 #> 585 0 2 2 100.0 #> 586 0 0 0 NA #> 587 0 0 0 NA #> 588 0 0 1 0.0 #> 589 0 0 0 NA #> 590 0 0 0 NA #> 591 0 0 0 NA #> 592 0 1 3 33.3 #> 593 1 1 3 33.3 #> 594 0 0 0 NA #> 595 0 1 2 50.0 #> 596 0 0 0 NA #> 597 1 1 2 50.0 #> 598 0 1 1 100.0 #> 599 0 1 1 100.0 #> 600 0 1 1 100.0 #> 601 0 0 0 NA #> 602 0 0 0 NA #> 603 0 0 0 NA #> 604 0 0 0 NA #> 605 0 0 1 0.0 #> 606 0 0 1 0.0 #> 607 0 1 1 100.0 #> 608 0 0 0 NA #> 609 0 1 3 33.3 #> 610 1 2 2 100.0 #> 611 0 1 2 50.0 #> 612 0 0 0 NA #> 613 0 0 0 NA #> 614 0 1 1 100.0 #> 615 0 0 0 NA #> 616 0 0 0 NA #> 617 0 0 1 0.0 #> 618 0 1 2 50.0 #> 619 0 0 1 0.0 #> 620 0 0 2 0.0 #> 621 0 1 1 100.0 #> 622 0 0 1 0.0 #> 623 0 0 1 0.0 #> 624 0 0 1 0.0 #> 625 0 0 0 NA #> 626 0 0 0 NA #> 627 0 0 1 0.0 #> 628 0 2 5 40.0 #> 629 0 0 0 NA #> 630 0 0 0 NA #> 631 0 0 1 0.0 #> 632 0 0 0 NA #> 633 0 1 1 100.0 #> 634 0 1 1 100.0 #> 635 0 0 1 0.0 #> 636 0 1 1 100.0 #> 637 0 0 0 NA #> 638 1 2 2 100.0 #> 639 0 2 2 100.0 #> 640 0 1 1 100.0 #> 641 0 1 1 100.0 #> 642 0 1 1 100.0 #> 643 0 0 0 NA #> 644 0 0 0 NA #> 645 0 0 0 NA #> 646 0 0 0 NA #> 647 0 0 0 NA #> 648 0 0 1 0.0 #> 649 0 1 1 100.0 #> 650 0 1 2 50.0 #> 651 0 0 0 NA #> 652 0 0 0 NA #> 653 0 1 2 50.0 #> 654 0 0 0 NA #> 655 0 2 2 100.0 #> 656 0 0 0 NA #> 657 0 0 0 NA #> 658 0 0 3 0.0 #> 659 0 0 1 0.0 #> 660 0 1 3 33.3 #> 661 0 0 1 0.0 #> 662 0 1 1 100.0 #> 663 0 1 3 33.3 #> 664 0 0 2 0.0 #> 665 0 0 0 NA #> 666 0 3 5 60.0 #> 667 0 1 1 100.0 #> 668 0 1 1 100.0 #> 669 0 0 0 NA #> 670 0 0 0 NA #> 671 0 0 0 NA #> 672 0 0 0 NA #> 673 0 0 0 NA #> 674 0 0 0 NA #> 675 0 0 0 NA #> 676 0 2 2 100.0 #> 677 0 1 1 100.0 #> 678 0 0 0 NA #> 679 0 0 1 0.0 #> 680 0 0 0 NA #> 681 0 1 2 50.0 #> 682 0 0 0 NA #> 683 0 1 1 100.0 #> 684 0 1 1 100.0 #> 685 0 0 0 NA #> 686 0 0 0 NA #> 687 1 0 2 0.0 #> 688 0 0 1 0.0 #> 689 0 0 0 NA #> 690 0 0 0 NA #> 691 0 0 2 0.0 #> 692 0 0 4 0.0 #> 693 0 0 1 0.0 #> 694 1 1 1 100.0 #> 695 0 2 3 66.7 #> 696 0 0 1 0.0 #> 697 0 1 2 50.0 #> 698 0 1 1 100.0 #> 699 0 0 0 NA #> 700 0 0 0 NA #> 701 0 0 0 NA #> 702 0 0 0 NA #> 703 0 0 3 0.0 #> 704 0 1 1 100.0 #> 705 0 0 2 0.0 #> 706 0 0 0 NA #> 707 0 0 0 NA #> 708 0 1 1 100.0 #> 709 0 2 2 100.0 #> 710 0 1 1 100.0 #> 711 0 1 1 100.0 #> 712 0 2 2 100.0 #> 713 0 0 0 NA #> 714 0 0 1 0.0 #> 715 0 0 0 NA #> 716 0 0 0 NA #> 717 0 0 0 NA #> 718 0 0 0 NA #> 719 0 0 1 0.0 #> 720 0 0 2 0.0 #> 721 0 0 1 0.0 #> 722 0 0 0 NA #> 723 0 1 2 50.0 #> 724 0 1 3 33.3 #> 725 0 0 0 NA #> 726 0 2 2 100.0 #> 727 0 0 0 NA #> 728 0 0 0 NA #> 729 0 0 1 0.0 #> 730 0 0 0 NA #> 731 0 0 2 0.0 #> 732 0 0 0 NA #> 733 0 0 2 0.0 #> 734 1 3 4 75.0 #> 735 0 0 2 0.0 #> 736 0 0 0 NA #> 737 0 1 1 100.0 #> 738 0 1 1 100.0 #> 739 0 0 0 NA #> 740 0 0 0 NA #> 741 0 0 0 NA #> 742 0 0 0 NA #> 743 0 0 1 0.0 #> 744 0 0 0 NA #> 745 0 0 1 0.0 #> 746 0 0 1 0.0 #> 747 0 0 0 NA #> 748 0 0 0 NA #> 749 0 0 0 NA #> 750 1 1 3 33.3 #> 751 0 2 4 50.0 #> 752 0 0 1 0.0 #> 753 0 0 1 0.0 #> 754 0 0 0 NA #> 755 0 0 0 NA #> 756 1 0 0 NA #> 757 0 0 0 NA #> 758 1 0 0 NA #> 759 0 0 0 NA #> 760 0 0 1 0.0 #> 761 0 0 0 NA #> 762 0 3 3 100.0 #> 763 0 0 0 NA #> 764 0 0 1 0.0 #> 765 0 0 0 NA #> 766 0 1 1 100.0 #> 767 0 0 0 NA #> 768 0 0 0 NA #> 769 0 0 0 NA #> 770 0 0 0 NA #> 771 0 0 0 NA #> 772 0 0 1 0.0 #> 773 0 0 0 NA #> 774 0 0 1 0.0 #> 775 0 1 4 25.0 #> 776 0 1 3 33.3 #> 777 0 1 1 100.0 #> 778 0 1 1 100.0 #> 779 0 1 3 33.3 #> 780 0 0 1 0.0 #> 781 0 2 3 66.7 #> 782 0 0 2 0.0 #> 783 0 0 0 NA #> 784 0 0 2 0.0 #> 785 0 0 0 NA #> 786 0 0 3 0.0 #> 787 1 1 1 100.0 #> 788 0 0 0 NA #> 789 0 0 0 NA #> 790 0 0 1 0.0 #> 791 0 1 1 100.0 #> 792 1 2 3 66.7 #> 793 0 1 1 100.0 #> 794 0 2 2 100.0 #> 795 0 0 0 NA #> 796 0 0 0 NA #> 797 0 0 0 NA #> 798 0 0 0 NA #> 799 0 0 0 NA #> 800 0 1 1 100.0 #> 801 0 0 1 0.0 #> 802 0 0 2 0.0 #> 803 0 0 5 0.0 #> 804 0 1 1 100.0 #> 805 0 0 0 NA #> 806 0 1 1 100.0 #> 807 0 2 3 66.7 #> 808 0 0 0 NA #> 809 1 1 1 100.0 #> 810 0 2 3 66.7 #> 811 0 0 0 NA #> 812 0 0 0 NA #> 813 0 0 0 NA #> 814 0 1 2 50.0 #> 815 0 1 2 50.0 #> 816 0 1 2 50.0 #> 817 0 1 4 25.0 #> 818 0 0 0 NA #> 819 0 1 2 50.0 #> 820 0 0 0 NA #> 821 0 0 0 NA #> 822 0 1 1 100.0 #> 823 0 0 0 NA #> 824 2 1 1 100.0 #> 825 0 0 0 NA #> 826 0 0 1 0.0 #> 827 0 0 0 NA #> 828 0 0 1 0.0 #> 829 0 0 2 0.0 #> 830 0 0 1 0.0 #> 831 0 0 1 0.0 #> 832 1 0 2 0.0 #> 833 0 0 1 0.0 #> 834 0 2 2 100.0 #> 835 0 0 0 NA #> 836 0 1 1 100.0 #> 837 0 1 1 100.0 #> 838 0 1 1 100.0 #> 839 0 0 0 NA #> 840 0 0 0 NA #> 841 0 0 0 NA #> 842 0 0 0 NA #> 843 0 0 0 NA #> 844 0 0 0 NA #> 845 0 0 0 NA #> 846 0 0 0 NA #> 847 0 0 0 NA #> 848 0 0 0 NA #> 849 0 0 0 NA #> 850 0 0 1 0.0 #> 851 0 0 1 0.0 #> 852 0 0 0 NA #> 853 0 0 0 NA #> 854 0 0 0 NA #> 855 0 0 2 0.0 #> 856 0 0 0 NA #> 857 0 1 4 25.0 #> 858 0 0 1 0.0 #> 859 0 0 2 0.0 #> 860 1 0 2 0.0 #> 861 0 0 0 NA #> 862 0 2 2 100.0 #> 863 0 1 2 50.0 #> 864 0 1 2 50.0 #> 865 0 0 0 NA #> 866 0 0 0 NA #> 867 0 1 1 100.0 #> 868 0 1 2 50.0 #> 869 0 0 1 0.0 #> 870 0 0 0 NA #> 871 0 1 4 25.0 #> 872 0 0 0 NA #> 873 1 2 5 40.0 #> 874 0 0 0 NA #> 875 0 2 2 100.0 #> 876 0 0 0 NA #> 877 0 0 1 0.0 #> 878 0 1 1 100.0 #> 879 0 0 3 0.0 #> 880 0 0 0 NA #> 881 0 0 0 NA #> 882 2 1 1 100.0 #> 883 0 1 1 100.0 #> 884 1 0 0 NA #> 885 1 0 0 NA #> 886 0 0 0 NA #> 887 0 0 1 0.0 #> 888 0 0 0 NA #> 889 0 1 2 50.0 #> 890 0 1 2 50.0 #> 891 0 2 2 100.0 #> 892 0 1 1 100.0 #> 893 0 0 0 NA #> 894 0 0 0 NA #> 895 0 0 0 NA #> 896 0 0 1 0.0 #> 897 1 1 2 50.0 #> 898 0 0 0 NA #> 899 0 0 0 NA #> 900 0 0 1 0.0 #> 901 0 1 3 33.3 #> 902 1 1 2 50.0 #> 903 1 0 1 0.0 #> 904 0 0 1 0.0 #> 905 0 0 0 NA #> 906 0 0 1 0.0 #> 907 0 0 0 NA #> 908 0 0 1 0.0 #> 909 0 0 1 0.0 #> 910 0 0 1 0.0 #> 911 0 2 2 100.0 #> 912 1 0 1 0.0 #> 913 0 0 0 NA #> 914 1 2 3 66.7 #> 915 0 0 1 0.0 #> 916 0 1 2 50.0 #> 917 0 0 0 NA #> 918 0 0 0 NA #> 919 0 0 1 0.0 #> 920 0 1 3 33.3 #> 921 0 0 1 0.0 #> 922 0 0 0 NA #> 923 0 0 0 NA #> 924 0 0 0 NA #> 925 2 0 2 0.0 #> 926 0 0 0 NA #> 927 0 0 2 0.0 #> 928 0 1 2 50.0 #> 929 0 0 1 0.0 #> 930 0 0 1 0.0 #> 931 0 1 2 50.0 #> 932 0 1 1 100.0 #> 933 0 1 2 50.0 #> 934 0 1 1 100.0 #> 935 0 1 2 50.0 #> 936 0 0 0 NA #> 937 1 0 1 0.0 #> 938 0 0 2 0.0 #> 939 0 0 1 0.0 #> 940 1 0 1 0.0 #> 941 0 0 0 NA #> 942 0 1 3 33.3 #> 943 0 0 0 NA #> 944 0 1 2 50.0 #> 945 0 1 1 100.0 #> 946 0 0 0 NA #> 947 0 0 1 0.0 #> 948 0 1 1 100.0 #> 949 0 0 3 0.0 #> 950 0 0 0 NA #> 951 0 1 1 100.0 #> 952 0 2 4 50.0 #> 953 0 0 0 NA #> 954 0 0 0 NA #> 955 0 0 0 NA #> 956 0 0 0 NA #> 957 0 1 2 50.0 #> 958 0 0 2 0.0 #> 959 0 0 0 NA #> 960 0 0 0 NA #> 961 0 0 1 0.0 #> 962 1 0 1 0.0 #> 963 0 0 0 NA #> 964 0 0 0 NA #> 965 0 0 2 0.0 #> 966 0 0 0 NA #> 967 0 0 0 NA #> 968 0 0 2 0.0 #> 969 0 0 1 0.0 #> 970 0 0 0 NA #> 971 0 0 0 NA #> 972 2 0 3 0.0 #> 973 0 0 0 NA #> 974 0 0 1 0.0 #> 975 0 0 0 NA #> 976 0 1 1 100.0 #> 977 0 1 2 50.0 #> 978 0 0 0 NA #> 979 0 0 0 NA #> 980 0 0 0 NA #> 981 0 0 0 NA #> 982 0 1 1 100.0 #> 983 0 0 1 0.0 #> 984 2 2 3 66.7 #> 985 0 1 2 50.0 #> 986 0 0 0 NA #> 987 0 0 1 0.0 #> 988 0 1 1 100.0 #> 989 0 0 0 NA #> 990 0 0 1 0.0 #> 991 0 1 3 33.3 #> 992 0 0 0 NA #> 993 0 0 0 NA #> 994 1 0 0 NA #> 995 0 0 0 NA #> 996 0 0 3 0.0 #> 997 0 0 0 NA #> 998 0 2 5 40.0 #> 999 0 0 0 NA #> 1000 0 0 2 0.0 #> 1001 0 0 0 NA #> 1002 0 0 0 NA #> 1003 0 0 0 NA #> 1004 0 0 0 NA #> 1005 0 0 1 0.0 #> 1006 0 0 0 NA #> 1007 0 0 0 NA #> 1008 0 0 0 NA #> 1009 0 0 0 NA #> 1010 0 0 0 NA #> 1011 0 0 0 NA #> 1012 0 0 0 NA #> 1013 0 0 0 NA #> 1014 0 0 0 NA #> 1015 0 0 1 0.0 #> 1016 0 0 1 0.0 #> 1017 0 0 0 NA #> 1018 0 0 1 0.0 #> 1019 0 1 1 100.0 #> 1020 0 0 0 NA #> 1021 0 0 1 0.0 #> 1022 0 0 0 NA #> 1023 0 0 0 NA #> 1024 0 0 1 0.0 #> 1025 0 0 1 0.0 #> 1026 0 0 2 0.0 #> 1027 0 0 0 NA #> 1028 0 2 3 66.7 #> 1029 0 0 2 0.0 #> 1030 0 0 1 0.0 #> 1031 0 0 0 NA #> 1032 0 1 1 100.0 #> 1033 0 3 6 50.0 #> 1034 0 0 0 NA #> 1035 0 0 0 NA #> 1036 1 1 1 100.0 #> 1037 1 2 2 100.0 #> 1038 1 1 2 50.0 #> 1039 0 0 1 0.0 #> 1040 0 0 0 NA #> 1041 1 0 1 0.0 #> 1042 0 0 0 NA #> 1043 1 0 0 NA #> 1044 0 0 1 0.0 #> 1045 0 0 0 NA #> 1046 1 2 2 100.0 #> 1047 0 0 1 0.0 #> 1048 0 0 0 NA #> 1049 0 0 0 NA #> 1050 0 0 0 NA #> 1051 0 0 1 0.0 #> 1052 0 1 4 25.0 #> 1053 0 0 0 NA #> 1054 0 0 2 0.0 #> 1055 0 0 0 NA #> 1056 0 0 0 NA #> 1057 0 2 2 100.0 #> 1058 0 2 3 66.7 #> 1059 0 0 0 NA #> 1060 0 3 4 75.0 #> 1061 0 0 2 0.0 #> 1062 0 0 0 NA #> 1063 0 0 1 0.0 #> 1064 0 2 2 100.0 #> 1065 0 1 3 33.3 #> 1066 0 0 0 NA #> 1067 0 0 0 NA #> 1068 0 1 6 16.7 #> 1069 0 2 6 33.3 #> 1070 0 0 0 NA #> 1071 0 0 0 NA #> 1072 1 0 2 0.0 #> 1073 0 0 1 0.0 #> 1074 0 0 0 NA #> 1075 0 2 2 100.0 #> 1076 0 0 0 NA #> 1077 0 0 0 NA #> 1078 0 0 0 NA #> 1079 0 0 0 NA #> 1080 0 0 1 0.0 #> 1081 0 0 1 0.0 #> 1082 0 1 2 50.0 #> 1083 0 0 0 NA #> 1084 0 0 1 0.0 #> 1085 0 0 1 0.0 #> 1086 0 0 0 NA #> 1087 0 0 0 NA #> 1088 0 0 0 NA #> 1089 0 2 5 40.0 #> 1090 0 0 0 NA #> 1091 0 0 1 0.0 #> 1092 0 0 1 0.0 #> 1093 1 1 1 100.0 #> 1094 0 0 1 0.0 #> 1095 0 0 0 NA #> 1096 0 1 7 14.3 #> 1097 0 0 0 NA #> 1098 0 1 2 50.0 #> 1099 0 0 1 0.0 #> 1100 0 3 3 100.0 #> 1101 0 0 0 NA #> 1102 0 0 0 NA #> 1103 1 0 0 NA #> 1104 0 0 0 NA #> 1105 0 0 1 0.0 #> 1106 0 0 0 NA #> 1107 0 0 0 NA #> 1108 0 0 0 NA #> 1109 0 0 0 NA #> 1110 0 2 2 100.0 #> 1111 0 0 0 NA #> 1112 1 0 0 NA #> 1113 1 0 3 0.0 #> 1114 2 3 4 75.0 #> 1115 0 0 0 NA #> 1116 0 0 0 NA #> 1117 1 1 2 50.0 #> 1118 0 0 0 NA #> 1119 0 0 0 NA #> 1120 0 0 1 0.0 #> 1121 0 0 0 NA #> 1122 0 0 0 NA #> 1123 0 0 0 NA #> 1124 0 0 0 NA #> 1125 1 0 0 NA #> 1126 0 1 2 50.0 #> 1127 0 0 0 NA #> 1128 0 0 0 NA #> 1129 0 0 1 0.0 #> 1130 0 1 1 100.0 #> 1131 0 1 2 50.0 #> 1132 0 0 0 NA #> 1133 0 0 1 0.0 #> 1134 0 0 0 NA #> 1135 0 0 2 0.0 #> 1136 0 0 1 0.0 #> 1137 0 0 0 NA #> 1138 0 1 4 25.0 #> 1139 1 2 3 66.7 #> 1140 1 3 3 100.0 #> 1141 0 1 2 50.0 #> 1142 0 0 0 NA #> 1143 0 2 2 100.0 #> 1144 0 1 2 50.0 #> 1145 0 2 4 50.0 #> 1146 0 0 0 NA #> 1147 1 0 0 NA #> 1148 0 0 0 NA #> 1149 0 0 0 NA #> 1150 0 0 0 NA #> 1151 0 0 1 0.0 #> 1152 0 0 1 0.0 #> 1153 0 0 2 0.0 #> 1154 0 0 0 NA #> 1155 0 2 2 100.0 #> 1156 0 0 0 NA #> 1157 0 0 0 NA #> 1158 0 1 2 50.0 #> 1159 0 0 0 NA #> 1160 0 0 0 NA #> 1161 0 0 0 NA #> 1162 0 0 1 0.0 #> 1163 0 0 0 NA #> 1164 0 0 3 0.0 #> 1165 0 0 0 NA #> 1166 0 1 3 33.3 #> 1167 1 0 2 0.0 #> 1168 0 0 0 NA #> 1169 0 0 0 NA #> 1170 0 3 4 75.0 #> 1171 0 0 1 0.0 #> 1172 0 2 2 100.0 #> 1173 1 0 0 NA #> 1174 0 0 0 NA #> 1175 0 0 1 0.0 #> 1176 0 0 0 NA #> 1177 0 0 2 0.0 #> 1178 0 0 2 0.0 #> 1179 0 0 0 NA #> 1180 0 3 4 75.0 #> 1181 0 0 2 0.0 #> 1182 0 1 1 100.0 #> 1183 1 0 0 NA #> 1184 0 0 0 NA #> 1185 0 0 0 NA #> 1186 0 1 1 100.0 #> 1187 0 4 4 100.0 #> 1188 0 0 0 NA #> 1189 0 0 0 NA #> 1190 2 1 1 100.0 #> 1191 0 1 2 50.0 #> 1192 0 1 1 100.0 #> 1193 0 1 5 20.0 #> 1194 0 1 1 100.0 #> 1195 1 0 0 NA #> 1196 0 0 0 NA #> 1197 0 1 1 100.0 #> 1198 0 0 0 NA #> 1199 1 0 0 NA #> 1200 0 0 3 0.0 #> 1201 0 0 0 NA #> 1202 0 0 0 NA #> 1203 0 0 0 NA #> 1204 0 0 0 NA #> 1205 2 1 1 100.0 #> 1206 1 0 1 0.0 #> 1207 0 0 0 NA #> 1208 0 0 0 NA #> 1209 0 0 3 0.0 #> 1210 0 1 1 100.0 #> 1211 2 0 1 0.0 #> 1212 1 0 1 0.0 #> 1213 0 0 1 0.0 #> 1214 0 0 1 0.0 #> 1215 1 0 3 0.0 #> 1216 0 0 0 NA #> 1217 0 0 0 NA #> 1218 0 0 1 0.0 #> 1219 0 0 1 0.0 #> 1220 0 0 1 0.0 #> 1221 0 0 1 0.0 #> 1222 0 0 0 NA #> 1223 0 1 3 33.3 #> 1224 0 0 0 NA #> 1225 0 3 3 100.0 #> 1226 0 0 0 NA #> 1227 0 0 0 NA #> 1228 0 0 0 NA #> 1229 0 3 4 75.0 #> 1230 0 0 0 NA #> 1231 0 0 0 NA #> 1232 0 0 0 NA #> 1233 0 0 0 NA #> 1234 1 0 2 0.0 #> 1235 0 0 0 NA #> 1236 0 0 1 0.0 #> 1237 0 0 0 NA #> 1238 1 0 1 0.0 #> 1239 1 0 0 NA #> 1240 0 1 2 50.0 #> 1241 3 2 2 100.0 #> 1242 0 1 3 33.3 #> 1243 1 0 0 NA #> 1244 0 0 0 NA #> 1245 0 0 0 NA #> 1246 0 1 2 50.0 #> 1247 0 0 1 0.0 #> 1248 0 0 0 NA #> 1249 0 0 1 0.0 #> 1250 0 0 1 0.0 #> 1251 0 1 4 25.0 #> 1252 0 0 0 NA #> 1253 0 0 0 NA #> 1254 0 2 2 100.0 #> 1255 0 0 1 0.0 #> 1256 0 0 0 NA #> 1257 0 0 3 0.0 #> 1258 0 0 0 NA #> 1259 0 0 0 NA #> 1260 0 0 0 NA #> 1261 1 0 0 NA #> 1262 0 0 1 0.0 #> 1263 1 0 3 0.0 #> 1264 0 0 0 NA #> 1265 0 0 0 NA #> 1266 0 0 0 NA #> 1267 0 1 2 50.0 #> 1268 0 0 1 0.0 #> 1269 0 0 1 0.0 #> 1270 0 1 1 100.0 #> 1271 0 0 0 NA #> 1272 0 0 0 NA #> 1273 1 1 2 50.0 #> 1274 0 0 0 NA #> 1275 0 0 0 NA #> 1276 0 0 0 NA #> 1277 0 0 1 0.0 #> 1278 1 1 3 33.3 #> 1279 0 0 0 NA #> 1280 0 0 2 0.0 #> 1281 0 0 3 0.0 #> 1282 0 0 0 NA #> 1283 0 1 2 50.0 #> 1284 0 0 0 NA #> 1285 0 0 0 NA #> 1286 0 0 0 NA #> 1287 0 0 0 NA #> 1288 0 0 0 NA #> 1289 0 0 1 0.0 #> 1290 0 0 1 0.0 #> 1291 0 0 2 0.0 #> 1292 1 2 4 50.0 #> 1293 0 0 0 NA #> 1294 1 1 2 50.0 #> 1295 0 1 2 50.0 #> 1296 0 1 1 100.0 #> 1297 0 1 1 100.0 #> 1298 0 0 0 NA #> 1299 0 0 1 0.0 #> 1300 0 0 0 NA #> 1301 0 0 0 NA #> 1302 0 0 0 NA #> 1303 0 0 1 0.0 #> 1304 0 0 0 NA #> 1305 0 1 1 100.0 #> 1306 1 0 0 NA #> 1307 0 0 1 0.0 #> 1308 1 0 0 NA #> 1309 0 2 3 66.7 #> 1310 1 3 3 100.0 #> 1311 0 0 0 NA #> 1312 0 0 0 NA #> 1313 0 0 1 0.0 #> 1314 0 0 0 NA #> 1315 1 0 0 NA #> 1316 0 0 0 NA #> 1317 0 0 0 NA #> 1318 0 1 2 50.0 #> 1319 0 0 0 NA #> 1320 0 0 0 NA #> 1321 0 0 0 NA #> 1322 0 0 0 NA #> 1323 1 2 2 100.0 #> 1324 0 0 0 NA #> 1325 0 2 2 100.0 #> 1326 0 2 3 66.7 #> 1327 0 0 0 NA #> 1328 0 0 0 NA #> 1329 0 1 2 50.0 #> 1330 0 0 0 NA #> 1331 0 0 1 0.0 #> 1332 0 0 0 NA #> 1333 0 1 2 50.0 #> 1334 0 0 1 0.0 #> 1335 0 2 4 50.0 #> 1336 0 0 3 0.0 #> 1337 0 0 0 NA #> 1338 1 0 1 0.0 #> 1339 0 0 1 0.0 #> 1340 0 1 2 50.0 #> 1341 0 0 2 0.0 #> 1342 0 0 0 NA #> 1343 0 0 0 NA #> 1344 0 0 0 NA #> 1345 0 0 0 NA #> 1346 0 0 1 0.0 #> 1347 0 0 0 NA #> 1348 0 0 0 NA #> 1349 0 1 3 33.3 #> 1350 0 2 3 66.7 #> 1351 0 0 1 0.0 #> 1352 0 1 2 50.0 #> 1353 0 0 0 NA #> 1354 0 0 1 0.0 #> 1355 0 0 0 NA #> 1356 0 0 1 0.0 #> 1357 0 0 0 NA #> 1358 0 0 1 0.0 #> 1359 0 0 0 NA #> 1360 0 1 2 50.0 #> 1361 0 1 1 100.0 #> 1362 0 2 3 66.7 #> 1363 0 1 4 25.0 #> 1364 0 0 0 NA #> 1365 0 0 0 NA #> 1366 0 1 1 100.0 #> 1367 0 0 1 0.0 #> 1368 0 1 2 50.0 #> 1369 0 0 0 NA #> 1370 0 0 0 NA #> 1371 0 0 0 NA #> 1372 0 0 2 0.0 #> 1373 1 0 1 0.0 #> 1374 1 0 0 NA #> 1375 0 0 0 NA #> 1376 0 1 3 33.3 #> 1377 0 1 1 100.0 #> 1378 1 2 2 100.0 #> 1379 0 1 1 100.0 #> 1380 0 0 1 0.0 #> 1381 0 0 1 0.0 #> 1382 0 0 0 NA #> 1383 0 1 2 50.0 #> 1384 0 0 0 NA #> 1385 0 1 1 100.0 #> 1386 1 0 0 NA #> 1387 0 0 0 NA #> 1388 0 0 1 0.0 #> 1389 0 0 3 0.0 #> 1390 0 0 1 0.0 #> 1391 0 0 1 0.0 #> 1392 0 1 2 50.0 #> 1393 0 0 0 NA #> 1394 0 0 1 0.0 #> 1395 0 0 0 NA #> 1396 0 1 2 50.0 #> 1397 0 1 1 100.0 #> 1398 0 0 0 NA #> 1399 1 0 0 NA #> 1400 2 2 2 100.0 #> 1401 0 0 1 0.0 #> 1402 0 0 0 NA #> 1403 0 0 3 0.0 #> 1404 1 2 3 66.7 #> 1405 0 0 0 NA #> 1406 0 0 0 NA #> 1407 0 1 1 100.0 #> 1408 1 0 1 0.0 #> 1409 0 0 1 0.0 #> 1410 0 0 0 NA #> 1411 0 0 3 0.0 #> 1412 0 0 0 NA #> 1413 0 0 0 NA #> 1414 0 0 0 NA #> 1415 0 0 0 NA #> 1416 0 0 0 NA #> 1417 1 0 0 NA #> 1418 0 0 2 0.0 #> 1419 0 0 0 NA #> 1420 0 0 1 0.0 #> 1421 0 1 1 100.0 #> 1422 0 1 1 100.0 #> 1423 0 1 1 100.0 #> 1424 0 0 2 0.0 #> 1425 0 0 0 NA #> 1426 0 0 0 NA #> 1427 0 0 1 0.0 #> 1428 0 1 1 100.0 #> 1429 0 0 0 NA #> 1430 0 1 1 100.0 #> 1431 0 0 0 NA #> 1432 0 0 4 0.0 #> 1433 0 0 0 NA #> 1434 0 0 0 NA #> 1435 0 2 2 100.0 #> 1436 0 2 3 66.7 #> 1437 0 0 0 NA #> 1438 0 2 3 66.7 #> 1439 0 0 2 0.0 #> 1440 0 0 0 NA #> 1441 0 0 1 0.0 #> 1442 0 0 0 NA #> 1443 0 0 0 NA #> 1444 1 0 0 NA #> 1445 0 1 5 20.0 #> 1446 0 0 0 NA #> 1447 0 0 7 0.0 #> 1448 0 0 1 0.0 #> 1449 0 0 3 0.0 #> 1450 0 1 2 50.0 #> 1451 0 0 1 0.0 #> 1452 0 1 1 100.0 #> 1453 0 1 3 33.3 #> 1454 0 0 0 NA #> 1455 0 1 2 50.0 #> 1456 0 0 1 0.0 #> 1457 0 0 0 NA #> 1458 0 0 0 NA #> 1459 0 2 4 50.0 #> 1460 0 0 0 NA #> 1461 0 0 0 NA #> 1462 0 0 0 NA #> 1463 0 0 0 NA #> 1464 0 2 3 66.7 #> 1465 0 1 2 50.0 #> 1466 0 0 0 NA #> 1467 0 0 0 NA #> 1468 0 0 0 NA #> 1469 0 0 0 NA #> 1470 1 0 0 NA #> 1471 0 0 0 NA #> 1472 1 0 0 NA #> 1473 0 0 1 0.0 #> 1474 1 1 1 100.0 #> 1475 0 3 6 50.0 #> 1476 1 0 1 0.0 #> 1477 0 1 3 33.3 #> 1478 0 0 0 NA #> 1479 1 1 1 100.0 #> 1480 0 0 0 NA #> 1481 0 1 4 25.0 #> 1482 0 0 0 NA #> 1483 0 0 0 NA #> 1484 1 0 0 NA #> 1485 0 0 0 NA #> 1486 0 1 1 100.0 #> 1487 0 0 2 0.0 #> 1488 0 0 0 NA #> 1489 0 0 1 0.0 #> 1490 1 0 1 0.0 #> 1491 1 1 2 50.0 #> 1492 0 0 1 0.0 #> 1493 0 0 1 0.0 #> 1494 0 2 3 66.7 #> 1495 0 0 0 NA #> 1496 0 0 1 0.0 #> 1497 0 0 0 NA #> 1498 0 0 0 NA #> 1499 0 0 1 0.0 #> 1500 0 0 0 NA #> 1501 0 0 0 NA #> 1502 0 0 0 NA #> 1503 0 0 1 0.0 #> 1504 0 2 4 50.0 #> 1505 2 2 4 50.0 #> 1506 0 1 1 100.0 #> 1507 0 0 0 NA #> 1508 0 1 1 100.0 #> 1509 0 0 1 0.0 #> 1510 0 0 1 0.0 #> 1511 0 0 2 0.0 #> 1512 0 0 0 NA #> 1513 0 0 0 NA #> 1514 0 2 5 40.0 #> 1515 0 0 0 NA #> 1516 0 0 0 NA #> 1517 1 0 1 0.0 #> 1518 0 0 1 0.0 #> 1519 0 0 1 0.0 #> 1520 0 0 1 0.0 #> 1521 0 0 0 NA #> 1522 0 0 1 0.0 #> 1523 0 0 0 NA #> 1524 0 0 0 NA #> 1525 0 0 0 NA #> 1526 0 0 1 0.0 #> 1527 1 0 0 NA #> 1528 0 1 2 50.0 #> 1529 0 0 2 0.0 #> 1530 0 3 5 60.0 #> 1531 0 0 0 NA #> 1532 0 0 0 NA #> 1533 0 0 0 NA #> 1534 0 0 0 NA #> 1535 0 2 2 100.0 #> 1536 1 0 1 0.0 #> 1537 0 1 1 100.0 #> 1538 0 0 0 NA #> 1539 0 0 2 0.0 #> 1540 0 0 0 NA #> 1541 0 0 0 NA #> 1542 0 1 1 100.0 #> 1543 0 0 0 NA #> 1544 0 0 1 0.0 #> 1545 1 0 0 NA #> 1546 0 0 3 0.0 #> 1547 0 0 0 NA #> 1548 0 0 0 NA #> 1549 0 1 2 50.0 #> 1550 0 0 0 NA #> 1551 0 2 3 66.7 #> 1552 0 1 1 100.0 #> 1553 0 0 0 NA #> 1554 0 0 0 NA #> 1555 0 0 0 NA #> 1556 0 0 0 NA #> 1557 0 0 2 0.0 #> 1558 0 0 1 0.0 #> 1559 0 0 0 NA #> 1560 0 2 2 100.0 #> 1561 0 0 1 0.0 #> 1562 0 1 1 100.0 #> 1563 0 1 3 33.3 #> 1564 0 0 0 NA #> 1565 1 0 1 0.0 #> 1566 0 0 0 NA #> 1567 1 1 1 100.0 #> 1568 0 0 0 NA #> 1569 0 0 1 0.0 #> 1570 0 0 1 0.0 #> 1571 0 0 1 0.0 #> 1572 0 1 2 50.0 #> 1573 0 0 1 0.0 #> 1574 0 0 0 NA #> 1575 0 0 0 NA #> 1576 0 1 2 50.0 #> 1577 0 0 0 NA #> 1578 0 0 0 NA #> 1579 0 0 0 NA #> 1580 0 0 0 NA #> 1581 0 0 0 NA #> 1582 0 0 0 NA #> 1583 0 0 1 0.0 #> 1584 1 1 3 33.3 #> 1585 0 0 0 NA #> 1586 0 1 3 33.3 #> 1587 0 0 2 0.0 #> 1588 0 0 1 0.0 #> 1589 0 0 1 0.0 #> 1590 0 1 1 100.0 #> 1591 0 0 0 NA #> 1592 0 0 1 0.0 #> 1593 1 3 7 42.9 #> 1594 0 0 0 NA #> 1595 1 0 0 NA #> 1596 0 0 0 NA #> 1597 2 0 0 NA #> 1598 0 1 2 50.0 #> 1599 0 3 4 75.0 #> 1600 0 0 2 0.0 #> 1601 1 0 0 NA #> 1602 0 0 0 NA #> 1603 2 3 5 60.0 #> 1604 0 2 2 100.0 #> 1605 0 0 1 0.0 #> 1606 0 0 0 NA #> 1607 0 0 0 NA #> 1608 0 0 0 NA #> 1609 0 0 0 NA #> 1610 0 0 0 NA #> 1611 0 0 0 NA #> 1612 0 0 0 NA #> 1613 0 0 1 0.0 #> 1614 1 0 1 0.0 #> 1615 0 1 5 20.0 #> 1616 0 1 4 25.0 #> 1617 0 0 0 NA #> 1618 0 2 2 100.0 #> 1619 0 0 0 NA #> 1620 0 0 1 0.0 #> 1621 0 0 0 NA #> 1622 0 0 0 NA #> 1623 0 0 0 NA #> 1624 0 0 1 0.0 #> 1625 0 0 1 0.0 #> 1626 0 0 0 NA #> 1627 0 0 3 0.0 #> 1628 0 0 1 0.0 #> 1629 0 1 1 100.0 #> 1630 0 0 1 0.0 #> 1631 0 0 0 NA #> 1632 0 0 1 0.0 #> 1633 0 0 1 0.0 #> 1634 0 0 1 0.0 #> 1635 0 0 1 0.0 #> 1636 0 0 0 NA #> 1637 0 0 0 NA #> 1638 0 1 1 100.0 #> 1639 0 0 0 NA #> 1640 0 0 1 0.0 #> 1641 0 0 0 NA #> 1642 0 0 2 0.0 #> 1643 0 0 0 NA #> 1644 0 1 2 50.0 #> 1645 0 0 0 NA #> 1646 0 0 0 NA #> 1647 0 2 2 100.0 #> 1648 0 0 0 NA #> 1649 0 0 0 NA #> 1650 0 0 0 NA #> 1651 0 0 1 0.0 #> 1652 1 1 2 50.0 #> 1653 0 1 2 50.0 #> 1654 0 1 1 100.0 #> 1655 0 1 2 50.0 #> 1656 0 1 1 100.0 #> 1657 0 1 3 33.3 #> 1658 0 0 0 NA #> 1659 0 1 3 33.3 #> 1660 0 1 1 100.0 #> 1661 0 0 0 NA #> 1662 0 0 0 NA #> 1663 0 0 0 NA #> 1664 0 0 0 NA #> 1665 1 0 0 NA #> 1666 0 0 1 0.0 #> 1667 0 1 1 100.0 #> 1668 0 0 0 NA #> 1669 1 1 4 25.0 #> 1670 0 0 2 0.0 #> 1671 0 1 2 50.0 #> 1672 0 2 6 33.3 #> 1673 0 0 0 NA #> 1674 0 1 2 50.0 #> 1675 0 1 1 100.0 #> 1676 1 1 1 100.0 #> 1677 0 0 2 0.0 #> 1678 0 0 0 NA #> 1679 0 0 0 NA #> 1680 0 1 1 100.0 #> 1681 0 0 0 NA #> 1682 0 0 0 NA #> 1683 0 0 0 NA #> 1684 0 0 4 0.0 #> 1685 0 0 1 0.0 #> 1686 0 0 0 NA #> 1687 0 2 2 100.0 #> 1688 0 1 2 50.0 #> 1689 1 0 0 NA #> 1690 0 0 0 NA #> 1691 0 0 0 NA #> 1692 0 0 0 NA #> 1693 0 0 0 NA #> 1694 0 0 0 NA #> 1695 1 0 0 NA #> 1696 0 0 2 0.0 #> 1697 0 0 0 NA #> 1698 1 0 0 NA #> 1699 0 0 1 0.0 #> 1700 1 0 3 0.0 #> 1701 0 1 4 25.0 #> 1702 1 0 0 NA #> 1703 0 0 1 0.0 #> 1704 0 3 3 100.0 #> 1705 0 0 1 0.0 #> 1706 0 0 0 NA #> 1707 0 0 0 NA #> 1708 0 1 1 100.0 #> 1709 0 0 0 NA #> 1710 0 0 0 NA #> 1711 0 0 0 NA #> 1712 0 1 1 100.0 #> 1713 1 1 2 50.0 #> 1714 0 0 0 NA #> 1715 1 0 0 NA #> 1716 1 3 3 100.0 #> 1717 0 1 1 100.0 #> 1718 0 2 3 66.7 #> 1719 2 0 0 NA #> 1720 0 0 1 0.0 #> 1721 0 0 1 0.0 #> 1722 1 0 0 NA #> 1723 0 0 1 0.0 #> 1724 0 0 2 0.0 #> 1725 1 0 3 0.0 #> 1726 0 0 2 0.0 #> 1727 0 0 0 NA #> 1728 0 1 2 50.0 #> 1729 0 1 1 100.0 #> 1730 0 1 2 50.0 #> 1731 0 0 0 NA #> 1732 0 0 1 0.0 #> 1733 0 1 1 100.0 #> 1734 0 0 0 NA #> 1735 1 0 0 NA #> 1736 0 0 1 0.0 #> 1737 2 0 1 0.0 #> 1738 0 0 2 0.0 #> 1739 0 0 0 NA #> 1740 1 2 3 66.7 #> 1741 1 0 1 0.0 #> 1742 0 0 1 0.0 #> 1743 0 0 1 0.0 #> 1744 2 0 0 NA #> 1745 0 1 1 100.0 #> 1746 0 0 0 NA #> 1747 1 1 1 100.0 #> 1748 0 0 0 NA #> 1749 0 0 2 0.0 #> 1750 0 0 1 0.0 #> 1751 0 0 0 NA #> 1752 0 2 2 100.0 #> 1753 0 0 3 0.0 #> 1754 0 1 1 100.0 #> 1755 0 1 2 50.0 #> 1756 0 0 1 0.0 #> 1757 1 0 0 NA #> 1758 0 0 0 NA #> 1759 0 1 1 100.0 #> 1760 0 1 1 100.0 #> 1761 0 0 0 NA #> 1762 0 0 0 NA #> 1763 0 0 0 NA #> 1764 0 0 0 NA #> 1765 0 0 3 0.0 #> 1766 0 0 0 NA #> 1767 0 0 1 0.0 #> 1768 1 0 0 NA #> 1769 1 2 5 40.0 #> 1770 0 1 1 100.0 #> 1771 0 0 0 NA #> 1772 0 0 0 NA #> 1773 0 0 0 NA #> 1774 0 0 0 NA #> 1775 2 0 0 NA #> 1776 0 0 0 NA #> 1777 0 0 0 NA #> 1778 0 0 1 0.0 #> 1779 0 0 0 NA #> 1780 0 1 3 33.3 #> 1781 0 2 3 66.7 #> 1782 0 0 0 NA #> 1783 0 1 2 50.0 #> 1784 0 0 1 0.0 #> 1785 0 0 1 0.0 #> 1786 1 1 2 50.0 #> 1787 0 0 0 NA #> 1788 0 1 1 100.0 #> 1789 0 3 4 75.0 #> 1790 0 0 0 NA #> 1791 0 0 0 NA #> 1792 0 0 1 0.0 #> 1793 0 0 0 NA #> 1794 0 0 0 NA #> 1795 0 1 2 50.0 #> 1796 0 0 0 NA #> 1797 0 1 1 100.0 #> 1798 0 1 1 100.0 #> 1799 0 4 5 80.0 #> 1800 0 1 1 100.0 #> 1801 0 0 1 0.0 #> 1802 0 0 0 NA #> 1803 0 1 1 100.0 #> 1804 0 0 0 NA #> 1805 0 0 0 NA #> 1806 1 0 2 0.0 #> 1807 0 0 0 NA #> 1808 0 0 0 NA #> 1809 0 1 1 100.0 #> 1810 0 0 0 NA #> 1811 0 0 0 NA #> 1812 1 2 3 66.7 #> 1813 0 0 0 NA #> 1814 0 2 2 100.0 #> 1815 0 0 0 NA #> 1816 0 2 2 100.0 #> 1817 0 1 1 100.0 #> 1818 0 0 0 NA #> 1819 0 0 0 NA #> 1820 0 0 1 0.0 #> 1821 0 0 0 NA #> 1822 0 0 0 NA #> 1823 1 0 0 NA #> 1824 1 1 3 33.3 #> 1825 1 1 3 33.3 #> 1826 0 0 0 NA #> 1827 0 0 0 NA #> 1828 0 0 1 0.0 #> 1829 0 2 2 100.0 #> 1830 0 2 2 100.0 #> 1831 0 0 0 NA #> 1832 0 0 0 NA #> 1833 0 0 3 0.0 #> 1834 0 0 0 NA #> 1835 0 0 0 NA #> 1836 0 1 2 50.0 #> 1837 0 0 0 NA #> 1838 0 0 1 0.0 #> 1839 0 1 1 100.0 #> 1840 0 0 0 NA #> 1841 0 0 3 0.0 #> 1842 0 3 3 100.0 #> 1843 0 0 0 NA #> 1844 0 0 0 NA #> 1845 0 0 0 NA #> 1846 0 0 0 NA #> 1847 0 0 0 NA #> 1848 0 0 0 NA #> 1849 1 2 3 66.7 #> 1850 0 0 0 NA #> 1851 0 0 1 0.0 #> 1852 0 1 3 33.3 #> 1853 0 0 0 NA #> 1854 0 0 0 NA #> 1855 0 2 2 100.0 #> 1856 0 2 2 100.0 #> 1857 0 0 0 NA #> 1858 0 0 0 NA #> 1859 0 0 0 NA #> 1860 0 0 0 NA #> 1861 0 0 1 0.0 #> 1862 0 0 0 NA #> 1863 0 0 1 0.0 #> 1864 0 0 0 NA #> 1865 0 0 0 NA #> 1866 0 0 2 0.0 #> 1867 0 0 0 NA #> 1868 0 0 1 0.0 #> 1869 0 0 0 NA #> 1870 0 1 1 100.0 #> 1871 0 1 1 100.0 #> 1872 0 0 0 NA #> 1873 0 1 1 100.0 #> 1874 0 0 0 NA #> 1875 0 0 0 NA #> 1876 1 0 0 NA #> 1877 0 0 0 NA #> 1878 1 0 0 NA #> 1879 0 0 1 0.0 #> 1880 0 0 0 NA #> 1881 2 1 1 100.0 #> 1882 0 0 0 NA #> 1883 0 0 0 NA #> 1884 0 0 0 NA #> 1885 0 3 5 60.0 #> 1886 0 0 0 NA #> 1887 0 0 1 0.0 #> 1888 0 0 0 NA #> 1889 0 0 0 NA #> 1890 0 0 0 NA #> 1891 0 0 0 NA #> 1892 0 1 2 50.0 #> 1893 0 0 1 0.0 #> 1894 0 0 0 NA #> 1895 0 0 1 0.0 #> 1896 0 0 0 NA #> 1897 0 2 3 66.7 #> 1898 0 1 1 100.0 #> 1899 0 1 1 100.0 #> 1900 0 0 0 NA #> 1901 0 0 0 NA #> 1902 0 0 0 NA #> 1903 0 0 0 NA #> 1904 0 0 0 NA #> 1905 1 0 1 0.0 #> 1906 0 0 0 NA #> 1907 1 1 1 100.0 #> 1908 0 1 1 100.0 #> 1909 0 0 0 NA #> 1910 0 0 0 NA #> 1911 0 2 3 66.7 #> 1912 0 3 3 100.0 #> 1913 0 0 0 NA #> 1914 0 2 2 100.0 #> 1915 0 0 0 NA #> 1916 0 0 0 NA #> 1917 0 0 0 NA #> 1918 0 0 0 NA #> 1919 0 0 0 NA #> 1920 0 0 0 NA #> 1921 0 0 0 NA #> 1922 0 1 1 100.0 #> 1923 0 0 0 NA #> 1924 0 0 1 0.0 #> 1925 0 0 0 NA #> 1926 0 1 1 100.0 #> 1927 0 1 1 100.0 #> 1928 0 0 0 NA #> 1929 0 2 2 100.0 #> 1930 0 0 0 NA #> 1931 0 0 2 0.0 #> 1932 0 0 1 0.0 #> 1933 0 0 0 NA #> 1934 0 0 1 0.0 #> 1935 0 0 0 NA #> 1936 0 0 1 0.0 #> 1937 1 0 2 0.0 #> 1938 0 0 0 NA #> 1939 0 0 2 0.0 #> 1940 0 1 1 100.0 #> 1941 0 0 0 NA #> 1942 1 0 2 0.0 #> 1943 1 0 0 NA #> 1944 0 0 0 NA #> 1945 1 0 0 NA #> 1946 0 1 4 25.0 #> 1947 0 0 0 NA #> 1948 0 1 3 33.3 #> 1949 0 0 0 NA #> 1950 0 0 1 0.0 #> 1951 0 0 0 NA #> 1952 0 1 2 50.0 #> 1953 0 3 3 100.0 #> 1954 0 3 4 75.0 #> 1955 0 0 1 0.0 #> 1956 0 2 2 100.0 #> 1957 1 1 2 50.0 #> 1958 0 0 0 NA #> 1959 0 0 0 NA #> 1960 0 0 0 NA #> 1961 0 0 0 NA #> 1962 0 0 1 0.0 #> 1963 1 1 2 50.0 #> 1964 0 0 1 0.0 #> 1965 0 1 1 100.0 #> 1966 0 0 0 NA #> 1967 0 0 1 0.0 #> 1968 0 0 0 NA #> 1969 1 0 1 0.0 #> 1970 0 0 0 NA #> 1971 0 1 2 50.0 #> 1972 0 0 0 NA #> 1973 0 0 0 NA #> 1974 0 0 0 NA #> 1975 0 0 2 0.0 #> 1976 0 0 1 0.0 #> 1977 0 0 1 0.0 #> 1978 1 1 2 50.0 #> 1979 0 0 0 NA #> 1980 0 1 1 100.0 #> 1981 0 0 0 NA #> 1982 0 2 3 66.7 #> 1983 0 0 0 NA #> 1984 0 0 1 0.0 #> 1985 0 0 0 NA #> 1986 0 0 0 NA #> 1987 0 0 0 NA #> 1988 0 0 0 NA #> 1989 1 0 1 0.0 #> 1990 0 0 0 NA #> 1991 0 0 0 NA #> 1992 0 0 0 NA #> 1993 0 0 0 NA #> 1994 1 2 2 100.0 #> 1995 0 0 1 0.0 #> 1996 0 2 2 100.0 #> 1997 0 0 1 0.0 #> 1998 0 2 3 66.7 #> 1999 1 2 6 33.3 #> 2000 0 0 0 NA #> 2001 2 0 1 0.0 #> 2002 0 0 0 NA #> 2003 0 0 1 0.0 #> 2004 0 3 5 60.0 #> 2005 0 0 3 0.0 #> 2006 0 1 1 100.0 #> 2007 0 2 2 100.0 #> 2008 1 1 1 100.0 #> 2009 0 2 2 100.0 #> 2010 0 1 1 100.0 #> 2011 0 2 2 100.0 #> 2012 0 2 4 50.0 #> 2013 0 1 1 100.0 #> 2014 0 0 0 NA #> 2015 0 0 0 NA #> 2016 0 0 1 0.0 #> 2017 0 2 2 100.0 #> 2018 0 0 0 NA #> 2019 0 0 0 NA #> 2020 0 0 0 NA #> 2021 0 0 0 NA #> 2022 1 0 0 NA #> 2023 0 2 2 100.0 #> 2024 0 2 2 100.0 #> 2025 0 0 0 NA #> 2026 0 4 5 80.0 #> 2027 0 2 2 100.0 #> 2028 0 0 0 NA #> 2029 0 0 0 NA #> 2030 0 0 0 NA #> 2031 0 0 0 NA #> 2032 0 0 1 0.0 #> 2033 0 0 0 NA #> 2034 0 0 0 NA #> 2035 0 0 0 NA #> 2036 0 0 0 NA #> 2037 0 2 3 66.7 #> 2038 0 1 1 100.0 #> 2039 0 1 1 100.0 #> 2040 0 0 0 NA #> Lost_Challenges Blocks_Blocks Sh_Blocks Pass_Blocks Int Tkl+Int Clr Err #> 1 0 0 0 0 0 1 1 0 #> 2 0 0 0 0 1 1 0 0 #> 3 0 0 0 0 2 2 1 0 #> 4 1 0 0 0 0 0 0 0 #> 5 0 1 0 1 0 0 0 0 #> 6 1 0 0 0 0 0 0 0 #> 7 1 0 0 0 2 4 0 0 #> 8 1 0 0 0 0 1 0 0 #> 9 1 1 0 1 1 1 1 0 #> 10 0 0 0 0 2 3 2 0 #> 11 0 0 0 0 1 3 4 0 #> 12 0 1 0 1 4 5 2 0 #> 13 4 1 0 1 0 4 3 0 #> 14 0 0 0 0 0 0 0 0 #> 15 0 0 0 0 0 1 1 0 #> 16 2 0 0 0 0 0 0 0 #> 17 3 0 0 0 1 9 0 0 #> 18 0 0 0 0 0 1 0 0 #> 19 1 1 0 1 1 2 2 0 #> 20 0 0 0 0 0 3 2 0 #> 21 0 0 0 0 0 0 0 0 #> 22 1 1 0 1 0 1 1 0 #> 23 1 1 0 1 2 4 4 0 #> 24 3 1 0 1 3 10 4 0 #> 25 2 1 0 1 1 3 9 0 #> 26 2 3 2 1 2 3 6 0 #> 27 1 0 0 0 0 0 4 0 #> 28 0 0 0 0 0 0 0 0 #> 29 2 0 0 0 0 0 1 0 #> 30 0 0 0 0 0 0 1 0 #> 31 0 0 0 0 0 0 0 0 #> 32 0 0 0 0 0 5 1 0 #> 33 0 0 0 0 1 6 0 0 #> 34 1 0 0 0 0 0 1 0 #> 35 2 3 0 3 1 2 1 0 #> 36 5 2 0 2 1 6 0 0 #> 37 2 0 0 0 2 4 1 0 #> 38 0 0 0 0 0 0 0 0 #> 39 0 0 0 0 3 4 4 0 #> 40 1 1 0 1 1 6 5 0 #> 41 0 1 0 1 0 1 1 0 #> 42 0 0 0 0 0 0 0 0 #> 43 1 0 0 0 0 0 0 0 #> 44 0 0 0 0 0 0 1 0 #> 45 2 0 0 0 1 1 1 0 #> 46 1 0 0 0 1 5 1 0 #> 47 2 0 0 0 0 1 3 0 #> 48 4 4 1 3 0 2 2 0 #> 49 0 0 0 0 1 3 1 0 #> 50 4 2 2 0 3 5 2 0 #> 51 0 0 0 0 0 0 0 0 #> 52 1 0 0 0 0 0 1 0 #> 53 1 1 1 0 1 1 13 0 #> 54 0 0 0 0 0 2 6 0 #> 55 1 0 0 0 3 4 3 0 #> 56 0 0 0 0 0 0 1 0 #> 57 0 0 0 0 0 1 3 0 #> 58 0 0 0 0 0 0 0 0 #> 59 2 1 0 1 0 1 0 0 #> 60 0 0 0 0 0 0 0 0 #> 61 1 2 1 1 0 3 1 0 #> 62 0 0 0 0 0 0 0 0 #> 63 1 0 0 0 0 0 1 0 #> 64 1 0 0 0 1 1 1 0 #> 65 1 1 0 1 2 3 1 0 #> 66 1 4 2 2 1 3 1 0 #> 67 0 4 2 2 5 5 3 0 #> 68 0 0 0 0 3 4 1 0 #> 69 0 1 0 1 4 4 7 0 #> 70 0 0 0 0 0 0 0 0 #> 71 0 0 0 0 0 0 0 0 #> 72 0 0 0 0 0 1 0 0 #> 73 2 1 0 1 0 3 2 0 #> 74 0 0 0 0 0 0 0 0 #> 75 2 2 0 2 0 1 0 0 #> 76 0 0 0 0 0 2 1 0 #> 77 1 1 1 0 0 1 1 0 #> 78 0 1 1 0 2 6 3 0 #> 79 3 0 0 0 3 7 0 0 #> 80 0 0 0 0 2 3 4 0 #> 81 0 0 0 0 3 4 3 0 #> 82 0 0 0 0 0 2 3 0 #> 83 2 1 0 1 3 8 3 0 #> 84 0 0 0 0 0 0 0 0 #> 85 0 0 0 0 0 0 0 0 #> 86 0 0 0 0 0 0 0 0 #> 87 2 3 0 3 0 1 0 0 #> 88 0 0 0 0 0 0 0 0 #> 89 0 2 1 1 1 3 0 0 #> 90 1 0 0 0 0 1 0 0 #> 91 0 1 0 1 0 3 0 0 #> 92 3 1 0 1 0 0 0 0 #> 93 0 0 0 0 0 0 0 0 #> 94 1 1 0 1 2 4 2 0 #> 95 0 0 0 0 0 1 4 1 #> 96 0 1 0 1 0 0 5 1 #> 97 0 2 0 2 2 6 2 0 #> 98 0 0 0 0 0 0 0 0 #> 99 1 0 0 0 0 0 1 0 #> 100 1 0 0 0 0 0 0 0 #> 101 0 0 0 0 0 0 2 0 #> 102 1 2 0 2 1 2 0 0 #> 103 0 0 0 0 2 2 1 0 #> 104 2 2 0 2 6 8 2 0 #> 105 1 5 4 1 0 2 2 0 #> 106 1 0 0 0 1 4 0 0 #> 107 0 0 0 0 0 0 2 0 #> 108 2 0 0 0 3 4 1 0 #> 109 0 3 2 1 2 2 4 0 #> 110 0 0 0 0 1 2 2 0 #> 111 1 0 0 0 3 3 3 0 #> 112 0 0 0 0 0 1 1 0 #> 113 0 1 0 1 0 0 0 0 #> 114 0 0 0 0 0 0 1 0 #> 115 1 0 0 0 0 0 0 0 #> 116 0 0 0 0 0 0 0 0 #> 117 0 0 0 0 2 2 0 0 #> 118 0 1 1 0 0 1 0 0 #> 119 0 0 0 0 0 1 0 0 #> 120 0 0 0 0 1 4 0 0 #> 121 2 0 0 0 1 1 0 0 #> 122 0 0 0 0 0 0 0 0 #> 123 0 0 0 0 0 1 2 1 #> 124 1 0 0 0 1 1 0 0 #> 125 0 0 0 0 1 2 0 0 #> 126 0 0 0 0 0 0 0 0 #> 127 0 0 0 0 0 0 0 0 #> 128 0 0 0 0 0 0 0 1 #> 129 3 0 0 0 0 2 0 0 #> 130 0 0 0 0 0 0 1 0 #> 131 0 2 0 2 1 3 1 0 #> 132 1 3 0 3 1 7 5 0 #> 133 2 0 0 0 2 4 0 0 #> 134 1 0 0 0 0 0 1 0 #> 135 1 3 1 2 2 6 1 0 #> 136 1 0 0 0 2 2 7 0 #> 137 2 2 1 1 2 4 5 0 #> 138 1 2 1 1 3 5 7 0 #> 139 1 1 1 0 2 4 7 0 #> 140 0 0 0 0 0 0 0 0 #> 141 0 0 0 0 0 0 0 0 #> 142 0 0 0 0 0 1 0 0 #> 143 0 0 0 0 0 0 0 0 #> 144 0 1 0 1 0 0 0 0 #> 145 0 0 0 0 0 2 0 0 #> 146 3 0 0 0 1 6 0 0 #> 147 1 1 0 1 0 1 0 0 #> 148 1 1 0 1 0 0 0 0 #> 149 1 0 0 0 0 0 1 0 #> 150 2 0 0 0 2 5 1 0 #> 151 0 0 0 0 0 0 0 0 #> 152 1 2 1 1 1 5 2 0 #> 153 1 1 0 1 2 4 1 0 #> 154 0 0 0 0 0 0 0 1 #> 155 0 1 0 1 0 1 1 0 #> 156 0 1 0 1 0 0 2 0 #> 157 0 0 0 0 0 0 2 0 #> 158 0 1 0 1 0 2 3 0 #> 159 3 0 0 0 0 0 0 0 #> 160 1 2 2 0 3 6 4 0 #> 161 0 0 0 0 0 0 0 0 #> 162 1 0 0 0 0 0 1 0 #> 163 0 1 0 1 0 3 1 0 #> 164 1 1 0 1 6 12 6 0 #> 165 0 2 1 1 1 2 10 0 #> 166 0 1 1 0 2 3 12 0 #> 167 0 0 0 0 4 7 10 0 #> 168 0 0 0 0 0 0 0 0 #> 169 0 1 0 1 0 2 0 0 #> 170 1 3 0 3 0 1 2 0 #> 171 0 0 0 0 0 1 0 0 #> 172 0 0 0 0 0 0 0 0 #> 173 1 1 0 1 1 1 0 0 #> 174 0 0 0 0 0 0 0 0 #> 175 1 0 0 0 1 3 2 0 #> 176 2 2 1 1 1 1 3 0 #> 177 1 1 1 0 0 1 3 0 #> 178 2 0 0 0 2 2 5 0 #> 179 0 1 1 0 2 7 8 0 #> 180 2 2 0 2 1 2 4 0 #> 181 0 0 0 0 0 0 0 0 #> 182 0 1 0 1 0 0 1 0 #> 183 1 0 0 0 0 1 1 0 #> 184 0 1 0 1 0 1 0 0 #> 185 0 0 0 0 0 0 0 0 #> 186 4 0 0 0 2 3 0 0 #> 187 0 0 0 0 1 3 0 0 #> 188 1 1 0 1 1 3 1 0 #> 189 1 1 0 1 0 2 2 0 #> 190 0 0 0 0 0 0 2 0 #> 191 0 3 2 1 0 1 0 0 #> 192 0 1 0 1 0 3 4 0 #> 193 0 2 1 1 0 0 4 0 #> 194 0 3 3 0 1 3 3 0 #> 195 0 0 0 0 0 0 1 0 #> 196 0 0 0 0 0 2 1 0 #> 197 1 0 0 0 0 1 0 0 #> 198 1 2 0 2 0 1 0 0 #> 199 0 0 0 0 0 0 1 0 #> 200 2 1 0 1 0 3 0 0 #> 201 0 0 0 0 0 1 2 0 #> 202 1 0 0 0 2 4 1 0 #> 203 0 1 0 1 0 1 0 0 #> 204 0 1 1 0 0 1 1 0 #> 205 2 1 0 1 0 3 0 0 #> 206 0 2 1 1 1 2 1 0 #> 207 0 0 0 0 4 6 3 0 #> 208 0 0 0 0 3 5 0 0 #> 209 0 0 0 0 0 0 0 0 #> 210 0 0 0 0 0 0 0 0 #> 211 0 0 0 0 0 0 0 0 #> 212 2 1 0 1 0 0 1 0 #> 213 1 0 0 0 1 1 1 0 #> 214 1 0 0 0 0 2 1 0 #> 215 2 1 0 1 0 4 1 0 #> 216 0 1 0 1 2 2 1 0 #> 217 3 1 0 1 0 0 0 0 #> 218 2 2 1 1 0 4 0 0 #> 219 1 0 0 0 1 2 1 0 #> 220 0 0 0 0 1 1 4 0 #> 221 0 3 1 2 1 5 2 1 #> 222 4 2 0 2 3 7 2 0 #> 223 0 0 0 0 0 0 0 1 #> 224 0 2 0 2 0 0 2 0 #> 225 0 0 0 0 0 0 0 0 #> 226 1 0 0 0 1 2 2 0 #> 227 1 1 0 1 1 2 0 0 #> 228 0 1 1 0 3 6 1 0 #> 229 4 0 0 0 2 5 0 0 #> 230 1 0 0 0 0 4 0 0 #> 231 0 0 0 0 0 0 0 0 #> 232 1 1 0 1 3 6 3 0 #> 233 0 1 0 1 1 1 10 0 #> 234 1 0 0 0 0 1 6 0 #> 235 0 2 2 0 1 1 4 0 #> 236 2 0 0 0 0 1 2 0 #> 237 0 0 0 0 0 0 1 0 #> 238 0 0 0 0 1 2 0 0 #> 239 0 0 0 0 0 0 0 0 #> 240 0 0 0 0 0 0 1 0 #> 241 0 0 0 0 1 5 0 0 #> 242 0 0 0 0 0 2 0 0 #> 243 0 1 0 1 1 2 2 0 #> 244 2 2 1 1 1 2 0 0 #> 245 2 0 0 0 0 1 1 0 #> 246 0 0 0 0 0 0 0 0 #> 247 3 0 0 0 0 7 0 0 #> 248 0 0 0 0 2 8 4 1 #> 249 0 0 0 0 1 2 6 0 #> 250 0 0 0 0 1 3 2 0 #> 251 0 0 0 0 0 0 1 0 #> 252 0 0 0 0 0 0 0 0 #> 253 0 0 0 0 0 0 0 0 #> 254 1 0 0 0 0 0 1 0 #> 255 1 1 0 1 1 3 1 0 #> 256 1 1 1 0 0 1 0 0 #> 257 3 0 0 0 1 3 1 0 #> 258 2 1 0 1 0 1 0 0 #> 259 0 0 0 0 0 0 1 0 #> 260 1 1 0 1 1 2 1 0 #> 261 1 1 1 0 1 3 5 0 #> 262 0 0 0 0 2 2 3 0 #> 263 0 1 0 1 1 2 3 0 #> 264 0 0 0 0 0 0 0 0 #> 265 0 0 0 0 0 0 0 0 #> 266 0 2 1 1 0 1 3 0 #> 267 0 0 0 0 0 0 0 0 #> 268 0 0 0 0 1 2 1 0 #> 269 0 0 0 0 1 3 0 0 #> 270 0 1 0 1 1 3 2 0 #> 271 2 0 0 0 1 3 3 0 #> 272 1 0 0 0 2 4 1 0 #> 273 2 0 0 0 1 1 0 0 #> 274 1 1 0 1 0 2 0 0 #> 275 0 3 1 2 0 0 4 0 #> 276 0 0 0 0 0 0 7 0 #> 277 0 2 1 1 0 1 6 0 #> 278 1 0 0 0 2 3 2 0 #> 279 0 0 0 0 0 0 0 0 #> 280 1 0 0 0 0 0 2 0 #> 281 0 0 0 0 0 0 1 0 #> 282 0 2 0 2 0 1 1 0 #> 283 0 0 0 0 0 0 2 0 #> 284 0 0 0 0 1 3 0 0 #> 285 2 5 0 5 2 5 2 0 #> 286 1 2 0 2 3 4 2 0 #> 287 1 1 0 1 0 0 1 0 #> 288 2 2 0 2 0 1 0 0 #> 289 1 1 1 0 4 4 4 0 #> 290 0 1 0 1 2 2 16 0 #> 291 1 0 0 0 1 1 9 1 #> 292 0 2 0 2 2 3 1 0 #> 293 0 0 0 0 0 0 2 0 #> 294 0 0 0 0 0 0 0 0 #> 295 1 0 0 0 0 1 0 0 #> 296 0 0 0 0 0 1 1 0 #> 297 2 0 0 0 0 1 0 0 #> 298 0 0 0 0 0 1 0 0 #> 299 0 0 0 0 2 3 0 0 #> 300 0 1 0 1 3 7 0 0 #> 301 0 3 0 3 1 3 0 0 #> 302 0 0 0 0 1 1 0 0 #> 303 2 0 0 0 0 2 3 0 #> 304 0 1 0 1 1 3 3 0 #> 305 0 1 0 1 2 2 2 0 #> 306 1 4 0 4 1 3 2 0 #> 307 0 0 0 0 0 0 1 0 #> 308 1 0 0 0 0 0 0 0 #> 309 0 1 0 1 1 2 0 0 #> 310 1 1 0 1 0 0 0 0 #> 311 1 0 0 0 0 1 0 0 #> 312 0 1 0 1 1 2 1 0 #> 313 2 0 0 0 1 3 0 0 #> 314 0 1 0 1 2 2 0 0 #> 315 1 1 0 1 0 0 0 0 #> 316 1 0 0 0 1 3 2 0 #> 317 0 0 0 0 2 2 1 0 #> 318 0 1 0 1 0 1 0 0 #> 319 0 0 0 0 0 0 0 0 #> 320 1 0 0 0 1 3 0 0 #> 321 0 0 0 0 0 0 0 0 #> 322 0 0 0 0 0 1 1 0 #> 323 2 1 0 1 0 2 3 0 #> 324 0 0 0 0 3 3 3 0 #> 325 1 1 0 1 0 0 1 0 #> 326 0 1 0 1 1 4 6 0 #> 327 1 4 2 2 1 4 6 0 #> 328 0 1 0 1 1 1 1 0 #> 329 1 0 0 0 0 0 0 0 #> 330 1 1 1 0 2 6 2 0 #> 331 0 2 1 1 2 2 4 0 #> 332 0 0 0 0 0 1 0 0 #> 333 0 1 0 1 1 2 12 0 #> 334 1 0 0 0 3 4 4 0 #> 335 0 0 0 0 0 0 1 0 #> 336 0 0 0 0 0 0 1 0 #> 337 0 0 0 0 0 0 0 0 #> 338 0 1 1 0 0 1 0 0 #> 339 0 1 0 1 0 0 0 0 #> 340 1 1 0 1 0 2 0 0 #> 341 0 0 0 0 0 0 0 0 #> 342 3 1 1 0 1 2 1 0 #> 343 1 3 0 3 0 4 1 0 #> 344 1 0 0 0 0 0 2 0 #> 345 1 2 1 1 0 2 4 0 #> 346 1 1 1 0 2 7 4 1 #> 347 0 1 0 1 2 4 6 0 #> 348 2 2 1 1 1 3 4 0 #> 349 1 0 0 0 0 0 1 0 #> 350 1 1 0 1 0 1 2 0 #> 351 1 1 0 1 0 0 0 0 #> 352 0 0 0 0 0 0 0 0 #> 353 0 4 0 4 0 0 1 0 #> 354 1 0 0 0 0 1 2 0 #> 355 1 0 0 0 0 0 0 0 #> 356 1 0 0 0 0 1 4 0 #> 357 0 2 0 2 1 1 4 0 #> 358 3 2 1 1 1 1 3 0 #> 359 0 1 0 1 0 1 0 0 #> 360 0 1 0 1 0 3 5 0 #> 361 0 2 2 0 1 2 5 0 #> 362 0 1 1 0 1 3 5 0 #> 363 0 0 0 0 0 0 0 0 #> 364 0 0 0 0 0 0 1 0 #> 365 3 1 0 1 0 1 1 0 #> 366 0 0 0 0 0 2 0 0 #> 367 3 0 0 0 4 5 0 0 #> 368 4 1 0 1 0 10 5 0 #> 369 1 0 0 0 1 5 2 0 #> 370 2 2 1 1 0 2 0 0 #> 371 0 1 0 1 0 2 1 0 #> 372 0 1 0 1 0 4 3 0 #> 373 2 0 0 0 4 4 2 0 #> 374 0 2 1 1 3 4 8 0 #> 375 0 0 0 0 1 1 0 0 #> 376 0 0 0 0 1 5 0 0 #> 377 0 0 0 0 0 0 0 0 #> 378 0 1 0 1 3 4 0 0 #> 379 0 1 0 1 2 2 1 0 #> 380 0 0 0 0 0 0 0 0 #> 381 2 0 0 0 1 3 3 0 #> 382 0 0 0 0 0 0 0 0 #> 383 1 2 0 2 1 6 2 0 #> 384 1 0 0 0 1 2 1 0 #> 385 0 1 0 1 0 0 0 0 #> 386 2 3 1 2 4 6 2 0 #> 387 0 1 0 1 2 4 1 0 #> 388 0 0 0 0 0 0 7 0 #> 389 1 0 0 0 2 6 6 0 #> 390 2 2 1 1 0 4 4 0 #> 391 0 0 0 0 0 0 0 0 #> 392 1 0 0 0 0 0 2 0 #> 393 2 0 0 0 0 0 0 0 #> 394 0 0 0 0 0 0 0 0 #> 395 0 1 0 1 2 4 0 0 #> 396 0 0 0 0 0 1 0 0 #> 397 2 3 0 3 1 6 1 0 #> 398 2 0 0 0 1 2 2 0 #> 399 1 2 0 2 0 2 0 0 #> 400 1 3 0 3 1 2 0 0 #> 401 0 0 0 0 1 7 3 0 #> 402 0 3 0 3 2 3 6 0 #> 403 1 2 1 1 3 5 3 0 #> 404 2 2 0 2 3 4 5 0 #> 405 0 0 0 0 0 1 0 0 #> 406 1 1 0 1 0 0 0 0 #> 407 0 0 0 0 0 0 0 0 #> 408 0 1 0 1 0 1 0 0 #> 409 0 0 0 0 0 0 0 0 #> 410 0 0 0 0 0 0 0 0 #> 411 2 1 0 1 0 0 0 0 #> 412 0 0 0 0 0 0 0 0 #> 413 0 4 0 4 0 2 0 0 #> 414 0 2 0 2 1 1 1 0 #> 415 1 0 0 0 0 2 1 0 #> 416 0 1 0 1 1 1 2 0 #> 417 0 0 0 0 1 2 4 0 #> 418 0 1 0 1 3 6 2 0 #> 419 0 0 0 0 0 0 0 0 #> 420 0 0 0 0 0 1 3 0 #> 421 0 0 0 0 1 1 1 0 #> 422 1 0 0 0 0 1 2 0 #> 423 0 4 2 2 0 0 1 0 #> 424 0 1 0 1 0 0 1 0 #> 425 1 0 0 0 1 3 4 0 #> 426 0 1 0 1 3 4 0 0 #> 427 0 0 0 0 0 0 0 0 #> 428 1 3 3 0 1 4 3 0 #> 429 1 4 2 2 3 7 7 0 #> 430 1 4 2 2 2 4 5 0 #> 431 0 3 1 2 2 3 3 0 #> 432 0 1 0 1 0 2 4 0 #> 433 0 0 0 0 0 0 0 0 #> 434 3 0 0 0 1 1 2 0 #> 435 0 0 0 0 0 0 0 0 #> 436 1 0 0 0 0 1 0 0 #> 437 0 0 0 0 0 0 0 0 #> 438 0 1 0 1 2 2 0 0 #> 439 0 1 0 1 0 2 0 0 #> 440 3 2 1 1 2 7 0 0 #> 441 2 3 0 3 0 3 0 0 #> 442 0 5 0 5 0 3 0 0 #> 443 0 2 0 2 3 6 5 0 #> 444 0 1 1 0 2 3 7 0 #> 445 0 4 2 2 2 3 4 0 #> 446 2 1 0 1 0 0 3 1 #> 447 0 0 0 0 0 1 0 0 #> 448 0 0 0 0 0 0 0 0 #> 449 0 0 0 0 0 0 1 0 #> 450 0 0 0 0 2 2 0 0 #> 451 0 0 0 0 0 1 0 0 #> 452 0 2 1 1 0 2 3 0 #> 453 0 1 1 0 1 1 3 0 #> 454 4 2 1 1 0 0 2 0 #> 455 0 0 0 0 0 2 0 0 #> 456 3 1 0 1 3 6 2 0 #> 457 0 1 1 0 3 4 9 0 #> 458 2 2 1 1 1 2 4 0 #> 459 2 1 0 1 5 8 1 0 #> 460 0 0 0 0 1 1 0 1 #> 461 0 0 0 0 0 0 0 0 #> 462 0 0 0 0 0 0 1 0 #> 463 0 0 0 0 0 0 0 0 #> 464 0 0 0 0 1 1 2 0 #> 465 0 0 0 0 0 1 0 0 #> 466 2 0 0 0 0 0 1 0 #> 467 0 0 0 0 1 4 0 0 #> 468 0 0 0 0 1 1 3 0 #> 469 0 0 0 0 2 5 2 0 #> 470 0 1 1 0 0 0 2 0 #> 471 0 1 0 1 0 0 3 0 #> 472 1 0 0 0 1 3 2 0 #> 473 1 1 1 0 1 3 3 0 #> 474 2 1 0 1 2 3 3 0 #> 475 0 0 0 0 0 0 1 0 #> 476 0 1 0 1 0 0 1 0 #> 477 1 0 0 0 0 0 0 0 #> 478 1 0 0 0 0 1 0 0 #> 479 1 0 0 0 0 1 0 0 #> 480 1 0 0 0 0 2 0 0 #> 481 0 0 0 0 0 2 0 0 #> 482 0 1 0 1 2 5 1 0 #> 483 2 0 0 0 2 4 2 0 #> 484 0 0 0 0 0 0 0 0 #> 485 0 2 0 2 1 2 1 0 #> 486 0 2 1 1 0 1 4 0 #> 487 0 3 3 0 2 2 4 0 #> 488 2 3 2 1 0 0 6 0 #> 489 0 0 0 0 0 0 0 0 #> 490 0 0 0 0 0 0 0 0 #> 491 0 0 0 0 0 1 5 0 #> 492 0 2 2 0 0 2 2 0 #> 493 1 1 0 1 2 3 0 0 #> 494 0 0 0 0 0 0 1 0 #> 495 2 2 0 2 1 4 0 0 #> 496 0 0 0 0 0 2 0 0 #> 497 0 0 0 0 0 0 0 0 #> 498 2 1 0 1 2 9 2 0 #> 499 1 1 0 1 1 3 8 0 #> 500 0 4 2 2 3 4 9 0 #> 501 0 3 3 0 1 2 8 0 #> 502 1 2 0 2 1 2 5 0 #> 503 0 0 0 0 0 0 1 0 #> 504 0 1 0 1 0 0 0 0 #> 505 3 1 0 1 1 1 0 0 #> 506 0 1 0 1 0 2 0 0 #> 507 0 0 0 0 0 0 0 0 #> 508 0 0 0 0 0 6 0 0 #> 509 2 0 0 0 0 0 0 0 #> 510 0 0 0 0 1 1 0 0 #> 511 1 1 1 0 0 5 0 0 #> 512 2 3 0 3 0 1 0 0 #> 513 0 1 0 1 1 2 0 0 #> 514 0 2 2 0 1 2 3 0 #> 515 1 3 2 1 0 3 2 0 #> 516 0 0 0 0 0 1 2 0 #> 517 0 0 0 0 0 0 3 0 #> 518 0 0 0 0 0 1 2 0 #> 519 0 0 0 0 0 0 0 0 #> 520 0 1 0 1 0 0 0 0 #> 521 0 0 0 0 0 2 0 0 #> 522 0 0 0 0 0 0 0 0 #> 523 1 2 0 2 0 0 0 0 #> 524 2 0 0 0 1 4 9 0 #> 525 1 1 0 1 1 2 2 0 #> 526 0 1 0 1 1 2 0 0 #> 527 2 1 0 1 1 3 3 0 #> 528 0 3 2 1 1 3 12 0 #> 529 0 0 0 0 5 10 4 0 #> 530 1 2 1 1 1 7 5 0 #> 531 0 0 0 0 0 0 1 0 #> 532 0 0 0 0 0 0 0 0 #> 533 0 1 0 1 0 0 0 0 #> 534 0 0 0 0 1 2 0 0 #> 535 1 1 0 1 0 1 0 0 #> 536 3 2 0 2 1 5 3 0 #> 537 3 0 0 0 3 5 0 0 #> 538 0 0 0 0 1 1 0 0 #> 539 0 2 0 2 3 7 2 0 #> 540 1 1 0 1 0 1 2 0 #> 541 0 0 0 0 2 4 2 0 #> 542 0 1 0 1 5 6 6 0 #> 543 0 0 0 0 0 2 2 0 #> 544 0 0 0 0 0 1 0 0 #> 545 0 0 0 0 0 0 1 0 #> 546 1 1 0 1 0 0 1 0 #> 547 1 1 0 1 0 0 0 0 #> 548 0 0 0 0 2 4 0 0 #> 549 0 0 0 0 1 1 1 0 #> 550 0 0 0 0 0 0 0 0 #> 551 3 1 0 1 0 0 2 0 #> 552 1 1 1 0 0 2 3 0 #> 553 1 0 0 0 2 3 1 0 #> 554 0 0 0 0 0 0 0 0 #> 555 0 2 0 2 2 5 2 0 #> 556 1 1 1 0 2 3 4 0 #> 557 0 3 2 1 0 0 5 0 #> 558 0 1 0 1 3 6 0 0 #> 559 0 0 0 0 0 0 0 0 #> 560 0 0 0 0 0 0 5 0 #> 561 0 0 0 0 0 0 0 0 #> 562 0 1 0 1 0 0 2 0 #> 563 0 0 0 0 0 0 0 0 #> 564 0 0 0 0 0 2 2 0 #> 565 0 0 0 0 1 3 0 0 #> 566 0 0 0 0 2 5 1 0 #> 567 1 2 1 1 1 1 1 0 #> 568 0 0 0 0 1 2 1 0 #> 569 0 2 0 2 2 3 3 0 #> 570 0 0 0 0 3 4 2 0 #> 571 0 1 0 1 3 3 5 0 #> 572 2 0 0 0 1 6 0 0 #> 573 0 0 0 0 0 0 3 0 #> 574 0 1 0 1 0 2 0 0 #> 575 0 1 0 1 0 0 0 0 #> 576 1 2 0 2 0 4 2 0 #> 577 0 0 0 0 0 1 0 0 #> 578 3 1 0 1 0 4 2 0 #> 579 1 0 0 0 1 2 1 0 #> 580 0 0 0 0 0 2 0 0 #> 581 3 2 1 1 1 2 1 0 #> 582 0 0 0 0 1 4 5 0 #> 583 1 1 1 0 3 5 5 0 #> 584 0 3 2 1 0 1 10 0 #> 585 0 0 0 0 2 4 2 0 #> 586 0 2 1 1 4 6 3 0 #> 587 0 0 0 0 0 0 0 0 #> 588 1 0 0 0 0 0 0 0 #> 589 0 0 0 0 0 0 0 0 #> 590 0 0 0 0 0 0 0 0 #> 591 0 0 0 0 1 3 1 0 #> 592 2 0 0 0 1 4 0 0 #> 593 2 0 0 0 1 4 0 0 #> 594 0 0 0 0 0 0 0 0 #> 595 1 0 0 0 2 5 0 0 #> 596 0 0 0 0 0 0 0 0 #> 597 1 2 0 2 0 1 0 0 #> 598 0 2 0 2 2 4 0 0 #> 599 0 1 1 0 1 2 6 0 #> 600 0 3 2 1 3 7 0 0 #> 601 0 0 0 0 0 0 1 0 #> 602 0 1 0 1 0 1 1 0 #> 603 0 0 0 0 2 2 0 0 #> 604 0 0 0 0 0 0 0 0 #> 605 1 0 0 0 0 0 0 0 #> 606 1 0 0 0 0 0 1 0 #> 607 0 0 0 0 0 1 3 0 #> 608 0 0 0 0 1 1 0 0 #> 609 2 4 1 3 4 6 1 0 #> 610 0 0 0 0 3 9 1 0 #> 611 1 0 0 0 2 3 1 0 #> 612 0 2 1 1 0 0 6 0 #> 613 0 1 1 0 2 3 8 0 #> 614 0 1 1 0 1 2 6 0 #> 615 0 0 0 0 0 0 1 0 #> 616 0 0 0 0 0 0 0 0 #> 617 1 0 0 0 0 0 0 0 #> 618 1 1 0 1 0 1 0 0 #> 619 1 2 1 1 0 1 0 0 #> 620 2 1 0 1 2 5 1 0 #> 621 0 1 1 0 0 3 2 0 #> 622 1 0 0 0 0 0 0 0 #> 623 1 1 0 1 0 0 0 0 #> 624 1 0 0 0 2 2 4 0 #> 625 0 1 0 1 0 0 2 0 #> 626 0 1 0 1 0 0 0 0 #> 627 1 0 0 0 2 3 4 0 #> 628 3 2 0 2 0 2 3 0 #> 629 0 0 0 0 0 0 1 0 #> 630 0 0 0 0 0 0 3 0 #> 631 1 1 0 1 1 1 0 0 #> 632 0 1 0 1 0 0 0 0 #> 633 0 0 0 0 0 1 0 0 #> 634 0 4 0 4 0 1 0 0 #> 635 1 1 0 1 2 4 4 0 #> 636 0 1 0 1 2 6 4 0 #> 637 0 0 0 0 0 0 0 0 #> 638 0 0 0 0 0 2 0 0 #> 639 0 0 0 0 3 8 2 0 #> 640 0 1 1 0 3 4 3 0 #> 641 0 0 0 0 2 3 10 0 #> 642 0 3 1 2 4 6 4 0 #> 643 0 0 0 0 0 0 1 0 #> 644 0 0 0 0 0 0 4 0 #> 645 0 0 0 0 0 0 1 0 #> 646 0 0 0 0 1 1 2 0 #> 647 0 1 0 1 0 0 0 0 #> 648 1 0 0 0 0 0 0 0 #> 649 0 0 0 0 1 2 3 0 #> 650 1 0 0 0 0 1 1 0 #> 651 0 1 1 0 0 0 1 1 #> 652 0 0 0 0 0 1 0 0 #> 653 1 2 2 0 0 1 3 0 #> 654 0 2 2 0 2 3 9 0 #> 655 0 1 0 1 4 7 9 0 #> 656 0 2 1 1 2 2 2 0 #> 657 0 0 0 0 0 0 1 0 #> 658 3 0 0 0 0 0 2 0 #> 659 1 0 0 0 0 0 0 0 #> 660 2 0 0 0 0 2 1 0 #> 661 1 0 0 0 1 3 1 0 #> 662 0 0 0 0 1 3 0 0 #> 663 2 1 1 0 0 2 1 0 #> 664 2 0 0 0 0 0 0 0 #> 665 0 0 0 0 0 0 0 0 #> 666 2 2 0 2 1 7 2 0 #> 667 0 0 0 0 1 3 0 1 #> 668 0 1 0 1 0 1 3 0 #> 669 0 0 0 0 1 1 1 0 #> 670 0 0 0 0 0 0 1 0 #> 671 0 0 0 0 0 0 0 0 #> 672 0 0 0 0 0 0 0 0 #> 673 0 1 1 0 0 0 0 0 #> 674 0 0 0 0 0 1 0 0 #> 675 0 0 0 0 0 0 2 0 #> 676 0 0 0 0 1 3 0 0 #> 677 0 0 0 0 0 1 0 0 #> 678 0 1 1 0 1 4 0 0 #> 679 1 0 0 0 0 0 1 0 #> 680 0 0 0 0 1 1 0 0 #> 681 1 0 0 0 1 4 0 0 #> 682 0 0 0 0 1 3 2 0 #> 683 0 0 0 0 0 2 1 0 #> 684 0 0 0 0 2 4 1 0 #> 685 0 0 0 0 0 0 0 0 #> 686 0 0 0 0 0 1 1 0 #> 687 2 3 0 3 0 2 1 0 #> 688 1 0 0 0 1 1 0 0 #> 689 0 0 0 0 0 1 0 0 #> 690 0 0 0 0 1 1 0 0 #> 691 2 0 0 0 1 2 2 0 #> 692 4 3 1 2 3 3 1 0 #> 693 1 0 0 0 0 0 0 0 #> 694 0 1 0 1 0 1 2 0 #> 695 1 1 0 1 0 2 6 0 #> 696 1 0 0 0 2 3 2 0 #> 697 1 2 2 0 3 4 7 0 #> 698 0 1 0 1 0 1 2 0 #> 699 0 0 0 0 0 0 0 0 #> 700 0 0 0 0 0 2 0 0 #> 701 0 0 0 0 0 0 0 0 #> 702 0 0 0 0 0 0 0 0 #> 703 3 3 0 3 2 4 2 0 #> 704 0 0 0 0 1 2 0 0 #> 705 2 0 0 0 1 3 1 0 #> 706 0 0 0 0 0 0 1 0 #> 707 0 1 0 1 2 3 0 0 #> 708 0 2 2 0 1 3 2 0 #> 709 0 0 0 0 2 4 3 0 #> 710 0 2 0 2 1 2 5 0 #> 711 0 1 1 0 2 4 6 0 #> 712 0 1 0 1 2 4 4 0 #> 713 0 0 0 0 0 0 1 0 #> 714 1 0 0 0 0 0 1 0 #> 715 0 0 0 0 0 0 0 0 #> 716 0 0 0 0 0 0 0 0 #> 717 0 3 0 3 0 1 1 0 #> 718 0 1 0 1 2 2 1 0 #> 719 1 0 0 0 4 4 1 0 #> 720 2 2 0 2 0 1 0 0 #> 721 1 1 0 1 1 4 3 0 #> 722 0 0 0 0 0 0 0 0 #> 723 1 2 0 2 0 2 4 0 #> 724 2 0 0 0 2 5 11 0 #> 725 0 3 3 0 1 2 5 0 #> 726 0 1 0 1 1 5 1 0 #> 727 0 0 0 0 1 1 0 1 #> 728 0 3 0 3 0 0 2 0 #> 729 1 2 1 1 0 0 3 0 #> 730 0 0 0 0 0 1 2 0 #> 731 2 0 0 0 0 0 2 0 #> 732 0 0 0 0 0 1 0 0 #> 733 2 1 0 1 0 1 4 0 #> 734 1 6 0 6 0 4 2 0 #> 735 2 1 0 1 0 0 0 0 #> 736 0 0 0 0 0 0 0 0 #> 737 0 0 0 0 3 7 7 0 #> 738 0 1 1 0 3 5 6 0 #> 739 0 0 0 0 0 2 7 0 #> 740 0 0 0 0 1 1 5 0 #> 741 0 0 0 0 0 0 2 0 #> 742 0 0 0 0 0 0 0 0 #> 743 1 0 0 0 1 1 0 0 #> 744 0 1 0 1 0 0 0 0 #> 745 1 0 0 0 1 3 0 0 #> 746 1 0 0 0 0 1 1 1 #> 747 0 0 0 0 0 0 0 0 #> 748 0 1 0 1 0 0 0 0 #> 749 0 0 0 0 0 0 0 0 #> 750 2 2 0 2 2 5 2 0 #> 751 2 0 0 0 0 4 2 0 #> 752 1 0 0 0 2 2 2 0 #> 753 1 1 0 1 2 2 2 0 #> 754 0 0 0 0 1 1 0 0 #> 755 0 0 0 0 0 0 0 0 #> 756 0 0 0 0 1 2 2 0 #> 757 0 0 0 0 0 1 0 0 #> 758 0 0 0 0 0 1 0 0 #> 759 0 0 0 0 1 2 0 0 #> 760 1 0 0 0 2 4 0 0 #> 761 0 0 0 0 0 1 0 0 #> 762 0 1 1 0 1 6 0 0 #> 763 0 0 0 0 0 1 0 0 #> 764 1 1 0 1 0 1 1 0 #> 765 0 0 0 0 3 3 3 0 #> 766 0 0 0 0 0 2 2 0 #> 767 0 2 0 2 2 2 2 0 #> 768 0 1 0 1 1 1 0 0 #> 769 0 0 0 0 0 0 0 0 #> 770 0 0 0 0 0 0 0 0 #> 771 0 0 0 0 0 0 0 0 #> 772 1 0 0 0 1 1 1 0 #> 773 0 0 0 0 0 1 0 0 #> 774 1 0 0 0 1 1 1 0 #> 775 3 1 0 1 1 5 1 0 #> 776 2 1 1 0 0 2 1 0 #> 777 0 1 1 0 2 3 0 0 #> 778 0 2 0 2 1 3 0 0 #> 779 2 1 0 1 2 3 5 0 #> 780 1 1 1 0 2 2 5 0 #> 781 1 1 0 1 0 3 6 0 #> 782 2 3 1 2 3 5 3 0 #> 783 0 0 0 0 0 0 0 0 #> 784 2 0 0 0 0 0 2 0 #> 785 0 1 0 1 0 0 1 0 #> 786 3 0 0 0 0 0 0 0 #> 787 0 2 0 2 0 2 1 0 #> 788 0 0 0 0 0 2 1 0 #> 789 0 0 0 0 0 0 0 0 #> 790 1 1 0 1 1 1 1 0 #> 791 0 2 0 2 0 1 2 0 #> 792 1 1 0 1 0 3 1 0 #> 793 0 1 0 1 1 3 7 0 #> 794 0 2 1 1 2 6 2 0 #> 795 0 0 0 0 1 1 3 0 #> 796 0 0 0 0 0 0 0 0 #> 797 0 0 0 0 0 0 1 0 #> 798 0 0 0 0 1 1 1 0 #> 799 0 0 0 0 1 3 0 0 #> 800 0 0 0 0 0 1 1 0 #> 801 1 1 0 1 1 1 0 0 #> 802 2 0 0 0 1 4 0 0 #> 803 5 1 0 1 0 1 0 0 #> 804 0 2 1 1 1 3 0 0 #> 805 0 0 0 0 0 0 0 0 #> 806 0 0 0 0 0 1 0 0 #> 807 1 1 1 0 1 5 2 0 #> 808 0 2 2 0 0 1 6 0 #> 809 0 0 0 0 0 1 0 0 #> 810 1 0 0 0 0 3 1 0 #> 811 0 0 0 0 0 0 1 0 #> 812 0 0 0 0 0 0 1 0 #> 813 0 0 0 0 0 0 1 0 #> 814 1 1 0 1 0 2 1 0 #> 815 1 1 1 0 1 2 1 0 #> 816 1 0 0 0 0 1 0 0 #> 817 3 2 1 1 0 1 1 0 #> 818 0 0 0 0 1 4 1 0 #> 819 1 1 0 1 0 1 0 0 #> 820 0 1 0 1 0 0 0 0 #> 821 0 0 0 0 1 1 0 0 #> 822 0 2 2 0 4 6 3 0 #> 823 0 6 5 1 0 0 3 0 #> 824 0 1 1 0 2 6 3 0 #> 825 0 0 0 0 0 0 0 0 #> 826 1 1 0 1 1 1 2 0 #> 827 0 0 0 0 0 0 0 0 #> 828 1 1 0 1 1 1 1 0 #> 829 2 0 0 0 1 2 0 0 #> 830 1 0 0 0 1 2 0 0 #> 831 1 0 0 0 0 0 0 0 #> 832 2 1 0 1 2 4 2 0 #> 833 1 0 0 0 0 1 0 0 #> 834 0 0 0 0 1 3 3 0 #> 835 0 2 1 1 3 5 3 0 #> 836 0 1 0 1 2 5 6 0 #> 837 0 1 1 0 2 4 14 0 #> 838 0 1 0 1 0 2 2 0 #> 839 0 0 0 0 0 0 1 0 #> 840 0 0 0 0 1 1 0 0 #> 841 0 1 0 1 0 1 0 0 #> 842 0 0 0 0 0 0 0 0 #> 843 0 1 0 1 2 2 2 0 #> 844 0 1 0 1 2 3 0 0 #> 845 0 1 0 1 0 0 0 0 #> 846 0 0 0 0 1 6 2 0 #> 847 0 0 0 0 0 0 0 0 #> 848 0 2 2 0 2 2 1 0 #> 849 0 0 0 0 1 3 7 0 #> 850 1 1 1 0 6 7 4 0 #> 851 1 2 0 2 1 1 1 0 #> 852 0 0 0 0 0 0 1 0 #> 853 0 0 0 0 0 0 2 0 #> 854 0 0 0 0 0 0 2 0 #> 855 2 1 0 1 2 4 0 0 #> 856 0 0 0 0 1 4 3 0 #> 857 3 0 0 0 0 3 1 0 #> 858 1 0 0 0 0 0 2 0 #> 859 2 0 0 0 4 7 5 0 #> 860 2 1 0 1 0 5 0 0 #> 861 0 0 0 0 0 0 1 0 #> 862 0 4 0 4 1 6 10 1 #> 863 1 4 4 0 1 3 8 0 #> 864 1 3 0 3 0 1 14 0 #> 865 0 2 0 2 3 5 5 0 #> 866 0 0 0 0 1 1 0 0 #> 867 0 0 0 0 5 6 0 0 #> 868 1 0 0 0 1 4 0 0 #> 869 1 1 0 1 3 5 0 0 #> 870 0 2 0 2 0 0 0 0 #> 871 3 1 0 1 3 5 1 1 #> 872 0 0 0 0 0 0 0 0 #> 873 3 2 0 2 4 8 1 0 #> 874 0 0 0 0 0 1 0 0 #> 875 0 3 0 3 3 5 0 0 #> 876 0 2 0 2 1 3 3 1 #> 877 1 0 0 0 3 4 2 0 #> 878 0 1 1 0 1 3 5 0 #> 879 3 0 0 0 1 3 5 0 #> 880 0 0 0 0 0 0 0 2 #> 881 0 0 0 0 0 1 0 0 #> 882 0 2 0 2 1 4 0 0 #> 883 0 0 0 0 0 1 1 0 #> 884 0 0 0 0 0 1 0 0 #> 885 0 0 0 0 1 3 0 0 #> 886 0 0 0 0 1 2 0 0 #> 887 1 1 1 0 3 3 0 0 #> 888 0 0 0 0 0 0 0 0 #> 889 1 0 0 0 4 5 2 0 #> 890 1 0 0 0 3 5 1 0 #> 891 0 0 0 0 0 4 3 0 #> 892 0 1 0 1 0 1 0 0 #> 893 0 1 0 1 1 1 0 0 #> 894 0 0 0 0 0 0 0 0 #> 895 0 0 0 0 0 1 1 0 #> 896 1 1 1 0 0 0 0 0 #> 897 1 1 0 1 1 2 1 0 #> 898 0 0 0 0 0 0 0 0 #> 899 0 0 0 0 0 0 0 0 #> 900 1 0 0 0 0 0 0 0 #> 901 2 0 0 0 1 3 1 0 #> 902 1 0 0 0 0 2 0 0 #> 903 1 0 0 0 0 1 0 0 #> 904 1 0 0 0 1 4 1 0 #> 905 0 1 0 1 1 1 0 0 #> 906 1 0 0 0 2 2 3 0 #> 907 0 2 1 1 5 5 0 0 #> 908 1 0 0 0 0 0 1 0 #> 909 1 0 0 0 1 1 0 0 #> 910 1 0 0 0 0 0 0 0 #> 911 0 1 0 1 1 3 0 0 #> 912 1 0 0 0 0 1 4 0 #> 913 0 0 0 0 0 0 0 0 #> 914 1 0 0 0 0 2 0 0 #> 915 1 1 0 1 1 2 0 0 #> 916 1 0 0 0 0 1 1 0 #> 917 0 0 0 0 0 2 8 0 #> 918 0 0 0 0 2 5 4 0 #> 919 1 2 1 1 5 7 4 0 #> 920 2 2 1 1 2 4 5 0 #> 921 1 1 1 0 0 1 3 0 #> 922 0 0 0 0 0 0 0 0 #> 923 0 0 0 0 0 0 1 0 #> 924 0 0 0 0 0 0 1 0 #> 925 2 0 0 0 0 3 1 0 #> 926 0 2 1 1 2 3 1 0 #> 927 2 0 0 0 0 1 0 0 #> 928 1 2 0 2 2 3 0 0 #> 929 1 0 0 0 2 4 0 0 #> 930 1 0 0 0 0 0 0 0 #> 931 1 0 0 0 2 3 3 0 #> 932 0 2 0 2 1 4 3 0 #> 933 1 0 0 0 3 5 6 0 #> 934 0 2 0 2 3 4 5 0 #> 935 1 1 0 1 3 4 4 0 #> 936 0 0 0 0 0 0 0 1 #> 937 1 0 0 0 0 1 1 0 #> 938 2 0 0 0 0 0 0 0 #> 939 1 2 0 2 1 1 0 0 #> 940 1 0 0 0 0 1 0 0 #> 941 0 0 0 0 0 1 0 0 #> 942 2 1 0 1 0 1 2 0 #> 943 0 2 0 2 0 0 0 0 #> 944 1 1 0 1 0 2 0 0 #> 945 0 1 1 0 0 1 0 0 #> 946 0 0 0 0 1 1 0 0 #> 947 1 0 0 0 3 5 2 0 #> 948 0 1 0 1 1 4 3 0 #> 949 3 0 0 0 0 0 0 0 #> 950 0 0 0 0 0 0 2 0 #> 951 0 1 0 1 1 3 1 0 #> 952 2 0 0 0 1 3 0 0 #> 953 0 0 0 0 0 0 0 0 #> 954 0 0 0 0 0 0 0 0 #> 955 0 0 0 0 0 0 0 0 #> 956 0 0 0 0 0 2 0 0 #> 957 1 0 0 0 2 4 1 0 #> 958 2 0 0 0 1 3 1 0 #> 959 0 1 1 0 1 2 3 0 #> 960 0 2 0 2 3 3 2 0 #> 961 1 0 0 0 1 1 2 0 #> 962 1 0 0 0 0 3 0 0 #> 963 0 0 0 0 0 0 0 0 #> 964 0 0 0 0 0 0 0 0 #> 965 2 0 0 0 0 0 0 0 #> 966 0 0 0 0 0 1 1 0 #> 967 0 0 0 0 0 0 0 0 #> 968 2 1 0 1 0 0 1 0 #> 969 1 1 1 0 0 1 3 0 #> 970 0 0 0 0 0 0 0 0 #> 971 0 1 1 0 0 0 2 0 #> 972 3 0 0 0 1 3 0 0 #> 973 0 0 0 0 0 0 0 0 #> 974 1 1 0 1 0 0 5 0 #> 975 0 0 0 0 2 2 3 0 #> 976 0 0 0 0 3 5 8 0 #> 977 1 2 1 1 1 2 4 0 #> 978 0 0 0 0 0 0 1 0 #> 979 0 1 0 1 0 0 2 0 #> 980 0 0 0 0 0 0 0 0 #> 981 0 1 0 1 1 2 0 0 #> 982 0 3 0 3 1 2 0 0 #> 983 1 1 0 1 0 1 1 0 #> 984 1 2 0 2 0 4 0 0 #> 985 1 4 3 1 1 4 2 0 #> 986 0 1 0 1 0 0 1 0 #> 987 1 0 0 0 0 1 0 0 #> 988 0 0 0 0 3 5 3 0 #> 989 0 0 0 0 2 2 1 0 #> 990 1 0 0 0 0 1 2 0 #> 991 2 1 0 1 1 3 0 0 #> 992 0 0 0 0 0 0 0 0 #> 993 0 0 0 0 0 0 0 0 #> 994 0 0 0 0 0 1 0 0 #> 995 0 0 0 0 0 0 1 0 #> 996 3 1 0 1 2 2 0 0 #> 997 0 0 0 0 0 0 0 0 #> 998 3 1 0 1 1 7 1 0 #> 999 0 1 0 1 2 3 1 1 #> 1000 2 0 0 0 0 0 1 0 #> 1001 0 1 0 1 1 1 3 0 #> 1002 0 1 1 0 1 1 3 0 #> 1003 0 0 0 0 2 2 1 0 #> 1004 0 1 0 1 6 7 4 0 #> 1005 1 3 1 2 0 0 1 0 #> 1006 0 0 0 0 0 0 1 0 #> 1007 0 0 0 0 0 0 1 0 #> 1008 0 1 1 0 0 0 0 0 #> 1009 0 0 0 0 0 0 0 0 #> 1010 0 0 0 0 1 1 0 0 #> 1011 0 0 0 0 0 0 0 0 #> 1012 0 0 0 0 0 1 0 0 #> 1013 0 2 0 2 0 0 0 0 #> 1014 0 0 0 0 1 4 0 0 #> 1015 1 0 0 0 0 0 2 0 #> 1016 1 1 0 1 1 4 1 0 #> 1017 0 1 1 0 4 5 8 0 #> 1018 1 0 0 0 3 3 8 0 #> 1019 0 1 0 1 1 2 1 0 #> 1020 0 0 0 0 0 0 0 0 #> 1021 1 1 1 0 0 1 1 0 #> 1022 0 0 0 0 0 0 0 0 #> 1023 0 0 0 0 0 1 0 0 #> 1024 1 1 0 1 0 0 0 0 #> 1025 1 1 0 1 1 1 0 0 #> 1026 2 0 0 0 4 6 2 0 #> 1027 0 3 2 1 0 0 1 0 #> 1028 1 0 0 0 0 4 1 0 #> 1029 2 0 0 0 1 2 0 0 #> 1030 1 0 0 0 0 1 5 0 #> 1031 0 1 1 0 0 1 11 0 #> 1032 0 0 0 0 4 5 10 0 #> 1033 3 0 0 0 0 6 1 0 #> 1034 0 0 0 0 0 0 0 0 #> 1035 0 1 0 1 0 0 1 0 #> 1036 0 1 0 1 0 2 0 0 #> 1037 0 0 0 0 2 5 0 0 #> 1038 1 1 0 1 0 1 0 0 #> 1039 1 3 0 3 1 2 0 0 #> 1040 0 1 0 1 0 0 0 0 #> 1041 1 1 0 1 0 8 1 0 #> 1042 0 0 0 0 1 1 0 0 #> 1043 0 0 0 0 1 2 0 0 #> 1044 1 1 0 1 0 1 0 0 #> 1045 0 1 0 1 0 2 0 1 #> 1046 0 0 0 0 1 5 3 0 #> 1047 1 1 1 0 2 3 3 0 #> 1048 0 0 0 0 0 0 0 0 #> 1049 0 0 0 0 0 0 0 0 #> 1050 0 0 0 0 1 1 0 0 #> 1051 1 0 0 0 0 0 2 0 #> 1052 3 2 0 2 4 5 1 0 #> 1053 0 0 0 0 0 0 2 0 #> 1054 2 0 0 0 2 4 0 0 #> 1055 0 2 0 2 1 2 0 0 #> 1056 0 3 2 1 1 3 2 0 #> 1057 0 0 0 0 0 2 2 0 #> 1058 1 3 0 3 2 4 4 0 #> 1059 0 2 1 1 3 4 15 0 #> 1060 1 2 1 1 0 4 16 0 #> 1061 2 4 1 3 1 1 3 0 #> 1062 0 0 0 0 0 0 1 0 #> 1063 1 0 0 0 0 3 0 0 #> 1064 0 1 0 1 0 2 0 0 #> 1065 2 0 0 0 0 1 0 0 #> 1066 0 1 0 1 0 0 0 0 #> 1067 0 0 0 0 0 0 0 0 #> 1068 5 3 2 1 2 5 1 0 #> 1069 4 2 1 1 3 12 1 0 #> 1070 0 0 0 0 1 1 4 0 #> 1071 0 0 0 0 0 1 0 0 #> 1072 2 0 0 0 2 5 0 0 #> 1073 1 2 2 0 0 0 6 0 #> 1074 0 3 3 0 0 0 6 1 #> 1075 0 0 0 0 2 4 5 0 #> 1076 0 0 0 0 0 0 0 1 #> 1077 0 0 0 0 0 0 0 0 #> 1078 0 1 0 1 1 1 1 0 #> 1079 0 0 0 0 0 0 0 0 #> 1080 1 1 0 1 0 0 0 0 #> 1081 1 0 0 0 0 1 1 0 #> 1082 1 1 0 1 1 4 0 0 #> 1083 0 0 0 0 0 0 0 0 #> 1084 1 0 0 0 0 0 1 0 #> 1085 1 0 0 0 0 0 0 0 #> 1086 0 0 0 0 1 2 2 0 #> 1087 0 0 0 0 2 3 5 0 #> 1088 0 0 0 0 2 2 4 0 #> 1089 3 0 0 0 1 4 0 1 #> 1090 0 0 0 0 0 0 0 0 #> 1091 1 1 0 1 0 0 0 0 #> 1092 1 3 1 2 1 1 1 0 #> 1093 0 2 0 2 1 4 0 0 #> 1094 1 1 0 1 0 0 0 0 #> 1095 0 0 0 0 0 0 0 0 #> 1096 6 2 0 2 0 3 2 0 #> 1097 0 1 1 0 3 5 2 0 #> 1098 1 0 0 0 2 4 1 0 #> 1099 1 0 0 0 0 1 0 0 #> 1100 0 1 0 1 0 3 5 0 #> 1101 0 0 0 0 0 1 5 0 #> 1102 0 0 0 0 0 0 0 0 #> 1103 0 1 0 1 2 4 1 0 #> 1104 0 0 0 0 0 0 2 0 #> 1105 1 2 0 2 0 0 1 0 #> 1106 0 0 0 0 0 0 3 0 #> 1107 0 2 0 2 1 2 3 0 #> 1108 0 2 0 2 0 2 1 0 #> 1109 0 0 0 0 0 0 0 0 #> 1110 0 0 0 0 1 3 0 0 #> 1111 0 0 0 0 0 0 1 0 #> 1112 0 1 0 1 3 8 2 0 #> 1113 3 1 0 1 1 3 2 0 #> 1114 1 1 0 1 1 6 2 0 #> 1115 0 1 0 1 1 3 2 0 #> 1116 0 0 0 0 0 0 7 0 #> 1117 1 1 0 1 0 3 3 0 #> 1118 0 0 0 0 0 0 2 1 #> 1119 0 1 0 1 0 0 1 0 #> 1120 1 0 0 0 0 1 1 0 #> 1121 0 1 0 1 1 2 0 0 #> 1122 0 1 1 0 0 2 0 0 #> 1123 0 1 1 0 0 1 0 0 #> 1124 0 0 0 0 0 0 0 0 #> 1125 0 1 0 1 1 2 1 0 #> 1126 1 3 0 3 1 2 5 0 #> 1127 0 0 0 0 1 1 0 0 #> 1128 0 0 0 0 0 0 3 0 #> 1129 1 1 0 1 4 6 4 0 #> 1130 0 0 0 0 0 1 0 0 #> 1131 1 1 0 1 0 3 2 0 #> 1132 0 0 0 0 0 0 0 0 #> 1133 1 0 0 0 1 1 1 0 #> 1134 0 0 0 0 0 0 0 0 #> 1135 2 2 0 2 0 0 3 0 #> 1136 1 1 0 1 0 0 0 0 #> 1137 0 0 0 0 0 0 0 0 #> 1138 3 1 0 1 2 5 0 0 #> 1139 1 0 0 0 0 5 1 0 #> 1140 0 0 0 0 1 4 1 0 #> 1141 1 0 0 0 1 2 1 0 #> 1142 0 0 0 0 0 0 2 0 #> 1143 0 1 1 0 0 2 3 0 #> 1144 1 1 1 0 1 2 6 0 #> 1145 2 0 0 0 3 6 6 0 #> 1146 0 0 0 0 0 0 0 0 #> 1147 0 1 0 1 0 1 1 0 #> 1148 0 1 0 1 0 0 0 0 #> 1149 0 0 0 0 0 1 0 0 #> 1150 0 0 0 0 0 0 0 0 #> 1151 1 0 0 0 2 2 5 0 #> 1152 1 1 0 1 1 4 0 0 #> 1153 2 2 0 2 0 0 0 0 #> 1154 0 0 0 0 0 0 0 0 #> 1155 0 0 0 0 1 5 2 0 #> 1156 0 0 0 0 0 0 0 0 #> 1157 0 1 0 1 0 0 2 0 #> 1158 1 0 0 0 0 2 4 0 #> 1159 0 0 0 0 0 1 3 0 #> 1160 0 0 0 0 0 0 0 0 #> 1161 0 0 0 0 0 0 2 0 #> 1162 1 0 0 0 0 1 0 0 #> 1163 0 0 0 0 0 0 1 0 #> 1164 3 0 0 0 0 3 1 0 #> 1165 0 0 0 0 0 0 0 0 #> 1166 2 1 0 1 4 6 0 0 #> 1167 2 1 1 0 1 5 1 0 #> 1168 0 0 0 0 0 0 3 0 #> 1169 0 1 0 1 0 0 0 0 #> 1170 1 0 0 0 0 3 6 0 #> 1171 1 1 1 0 1 1 8 0 #> 1172 0 2 0 2 3 7 5 0 #> 1173 0 0 0 0 1 2 4 0 #> 1174 0 0 0 0 1 1 1 0 #> 1175 1 0 0 0 0 0 0 0 #> 1176 0 2 0 2 0 1 1 0 #> 1177 2 2 0 2 2 2 1 0 #> 1178 2 0 0 0 0 0 0 0 #> 1179 0 0 0 0 2 2 1 0 #> 1180 1 3 2 1 1 6 5 0 #> 1181 2 2 0 2 2 2 1 0 #> 1182 0 0 0 0 1 2 0 0 #> 1183 0 0 0 0 0 2 3 1 #> 1184 0 0 0 0 0 1 2 0 #> 1185 0 2 2 0 1 1 4 0 #> 1186 0 1 1 0 3 4 7 0 #> 1187 0 3 1 2 1 6 5 0 #> 1188 0 0 0 0 0 0 0 0 #> 1189 0 1 0 1 0 0 0 0 #> 1190 0 1 1 0 0 3 0 0 #> 1191 1 2 0 2 1 6 1 0 #> 1192 0 1 0 1 0 3 1 0 #> 1193 4 0 0 0 0 2 0 0 #> 1194 0 2 0 2 0 1 0 0 #> 1195 0 0 0 0 2 4 1 0 #> 1196 0 1 0 1 0 0 0 0 #> 1197 0 1 1 0 3 6 1 0 #> 1198 0 2 1 1 0 2 3 0 #> 1199 0 1 0 1 1 4 5 0 #> 1200 3 1 1 0 1 1 1 0 #> 1201 0 0 0 0 0 0 0 0 #> 1202 0 0 0 0 0 0 0 0 #> 1203 0 1 0 1 0 0 0 0 #> 1204 0 0 0 0 0 1 0 0 #> 1205 0 0 0 0 2 5 0 0 #> 1206 1 2 0 2 2 4 0 0 #> 1207 0 0 0 0 0 0 0 0 #> 1208 0 1 0 1 1 1 0 0 #> 1209 3 2 0 2 0 0 1 0 #> 1210 0 1 0 1 1 6 1 0 #> 1211 1 0 0 0 0 4 0 0 #> 1212 1 0 0 0 2 3 2 0 #> 1213 1 0 0 0 3 3 4 0 #> 1214 1 0 0 0 3 4 6 0 #> 1215 3 1 0 1 1 2 3 0 #> 1216 0 0 0 0 1 1 1 0 #> 1217 0 0 0 0 0 0 0 0 #> 1218 1 1 0 1 0 0 0 0 #> 1219 1 0 0 0 2 4 1 1 #> 1220 1 2 0 2 3 4 0 0 #> 1221 1 0 0 0 0 3 1 0 #> 1222 0 0 0 0 0 0 0 0 #> 1223 2 2 0 2 1 3 2 0 #> 1224 0 0 0 0 0 0 0 0 #> 1225 0 1 0 1 3 8 3 0 #> 1226 0 0 0 0 0 0 1 0 #> 1227 0 4 3 1 2 2 4 0 #> 1228 0 1 1 0 1 2 11 0 #> 1229 1 0 0 0 1 4 3 0 #> 1230 0 0 0 0 0 0 0 0 #> 1231 0 1 0 1 0 0 0 0 #> 1232 0 0 0 0 0 1 0 0 #> 1233 0 1 0 1 1 1 0 0 #> 1234 2 0 0 0 1 2 0 0 #> 1235 0 0 0 0 1 1 0 0 #> 1236 1 1 0 1 0 1 0 0 #> 1237 0 2 0 2 1 2 0 0 #> 1238 1 1 1 0 3 7 1 0 #> 1239 0 1 0 1 2 3 0 0 #> 1240 1 2 0 2 1 3 0 0 #> 1241 0 2 1 1 4 9 3 1 #> 1242 2 2 1 1 0 2 3 0 #> 1243 0 1 0 1 1 3 0 0 #> 1244 0 0 0 0 0 0 0 0 #> 1245 0 0 0 0 1 1 2 0 #> 1246 1 0 0 0 0 1 0 0 #> 1247 1 0 0 0 0 0 0 0 #> 1248 0 1 1 0 0 2 2 0 #> 1249 1 1 1 0 1 3 1 0 #> 1250 1 1 0 1 1 2 0 0 #> 1251 3 1 0 1 1 3 0 0 #> 1252 0 0 0 0 0 0 0 0 #> 1253 0 1 1 0 2 2 2 0 #> 1254 0 1 0 1 1 4 6 0 #> 1255 1 2 2 0 0 0 9 0 #> 1256 0 0 0 0 1 3 8 0 #> 1257 3 1 0 1 3 7 3 0 #> 1258 0 0 0 0 0 0 0 0 #> 1259 0 1 0 1 0 0 0 0 #> 1260 0 0 0 0 0 0 0 0 #> 1261 0 0 0 0 0 1 0 0 #> 1262 1 1 0 1 1 2 1 0 #> 1263 3 1 1 0 1 3 0 0 #> 1264 0 0 0 0 0 0 0 0 #> 1265 0 1 1 0 1 2 0 1 #> 1266 0 0 0 0 1 1 0 0 #> 1267 1 1 0 1 0 2 1 0 #> 1268 1 0 0 0 0 0 3 0 #> 1269 1 2 2 0 2 2 3 0 #> 1270 0 2 2 0 5 7 0 0 #> 1271 0 0 0 0 3 3 0 0 #> 1272 0 0 0 0 0 0 1 1 #> 1273 1 0 0 0 0 2 3 0 #> 1274 0 0 0 0 0 0 0 0 #> 1275 0 0 0 0 0 0 0 0 #> 1276 0 0 0 0 1 2 1 0 #> 1277 1 0 0 0 0 0 0 0 #> 1278 2 0 0 0 1 5 0 0 #> 1279 0 0 0 0 0 0 0 0 #> 1280 2 3 0 3 1 1 1 0 #> 1281 3 1 0 1 2 3 5 0 #> 1282 0 0 0 0 0 0 3 0 #> 1283 1 2 1 1 2 3 4 0 #> 1284 0 2 2 0 1 1 7 0 #> 1285 0 1 1 0 1 3 1 0 #> 1286 0 0 0 0 0 0 1 0 #> 1287 0 0 0 0 0 1 0 0 #> 1288 0 0 0 0 0 0 0 0 #> 1289 1 1 0 1 1 1 3 0 #> 1290 1 1 0 1 0 2 2 0 #> 1291 2 0 0 0 1 3 2 1 #> 1292 2 2 1 1 0 4 0 0 #> 1293 0 0 0 0 0 0 0 0 #> 1294 1 0 0 0 0 2 0 0 #> 1295 1 3 1 2 2 3 4 0 #> 1296 0 0 0 0 0 1 0 0 #> 1297 0 1 1 0 3 6 4 0 #> 1298 0 1 1 0 3 4 7 0 #> 1299 1 1 0 1 1 2 3 0 #> 1300 0 0 0 0 0 0 1 0 #> 1301 0 0 0 0 0 0 0 0 #> 1302 0 0 0 0 0 2 1 0 #> 1303 1 0 0 0 0 0 2 0 #> 1304 0 3 1 2 0 0 2 0 #> 1305 0 1 0 1 0 3 3 0 #> 1306 0 1 0 1 2 3 1 0 #> 1307 1 2 1 1 0 1 2 0 #> 1308 0 0 0 0 0 2 0 0 #> 1309 1 0 0 0 0 3 0 0 #> 1310 0 0 0 0 1 8 2 0 #> 1311 0 3 2 1 1 1 6 0 #> 1312 0 3 2 1 2 2 10 0 #> 1313 1 2 1 1 1 1 6 0 #> 1314 0 0 0 0 0 0 0 0 #> 1315 0 0 0 0 0 1 1 0 #> 1316 0 0 0 0 1 1 0 0 #> 1317 0 0 0 0 0 0 0 0 #> 1318 1 0 0 0 0 1 1 0 #> 1319 0 1 0 1 0 1 0 0 #> 1320 0 0 0 0 0 0 0 0 #> 1321 0 0 0 0 0 0 1 0 #> 1322 0 2 0 2 0 0 0 0 #> 1323 0 0 0 0 0 2 0 0 #> 1324 0 0 0 0 0 0 0 0 #> 1325 0 1 0 1 2 4 1 0 #> 1326 1 2 1 1 2 4 2 0 #> 1327 0 2 1 1 1 1 0 0 #> 1328 0 0 0 0 0 0 0 0 #> 1329 1 1 0 1 1 3 3 0 #> 1330 0 0 0 0 0 0 0 0 #> 1331 1 0 0 0 0 0 6 0 #> 1332 0 0 0 0 0 0 0 0 #> 1333 1 3 0 3 1 4 0 0 #> 1334 1 0 0 0 0 0 1 0 #> 1335 2 1 0 1 2 5 1 0 #> 1336 3 0 0 0 0 0 0 0 #> 1337 0 0 0 0 0 0 0 0 #> 1338 1 3 2 1 0 1 2 0 #> 1339 1 1 1 0 2 2 6 0 #> 1340 1 3 3 0 6 7 10 0 #> 1341 2 2 0 2 0 1 3 0 #> 1342 0 0 0 0 1 1 0 0 #> 1343 0 0 0 0 0 0 0 0 #> 1344 0 0 0 0 1 1 0 0 #> 1345 0 0 0 0 0 0 0 0 #> 1346 1 0 0 0 0 0 0 0 #> 1347 0 0 0 0 1 1 1 0 #> 1348 0 0 0 0 1 1 0 0 #> 1349 2 1 0 1 0 3 2 0 #> 1350 1 0 0 0 0 2 1 0 #> 1351 1 1 0 1 0 0 0 0 #> 1352 1 0 0 0 0 1 1 0 #> 1353 0 0 0 0 0 2 0 0 #> 1354 1 2 1 1 1 1 0 2 #> 1355 0 1 0 1 2 3 1 0 #> 1356 1 0 0 0 0 0 0 0 #> 1357 0 0 0 0 2 6 0 0 #> 1358 1 0 0 0 1 2 0 0 #> 1359 0 0 0 0 2 2 0 0 #> 1360 1 0 0 0 1 3 0 0 #> 1361 0 0 0 0 2 3 1 0 #> 1362 1 1 1 0 2 5 3 0 #> 1363 3 0 0 0 1 4 0 0 #> 1364 0 0 0 0 0 0 0 0 #> 1365 0 0 0 0 2 2 1 0 #> 1366 0 0 0 0 1 4 1 0 #> 1367 1 5 4 1 1 2 4 0 #> 1368 1 2 2 0 1 3 5 0 #> 1369 0 0 0 0 2 2 2 0 #> 1370 0 0 0 0 0 0 0 0 #> 1371 0 0 0 0 0 0 0 0 #> 1372 2 0 0 0 0 0 0 0 #> 1373 1 3 0 3 1 7 0 0 #> 1374 0 1 0 1 0 1 0 0 #> 1375 0 0 0 0 0 0 0 0 #> 1376 2 1 0 1 3 7 0 0 #> 1377 0 1 0 1 4 6 2 0 #> 1378 0 0 0 0 1 3 0 0 #> 1379 0 1 0 1 0 1 1 0 #> 1380 1 5 0 5 2 4 10 0 #> 1381 1 1 1 0 0 0 6 0 #> 1382 0 0 0 0 3 4 3 0 #> 1383 1 1 0 1 1 4 6 0 #> 1384 0 0 0 0 0 0 0 0 #> 1385 0 2 0 2 0 2 0 0 #> 1386 0 0 0 0 0 1 0 0 #> 1387 0 0 0 0 0 0 0 0 #> 1388 1 0 0 0 1 1 0 0 #> 1389 3 2 0 2 2 3 1 0 #> 1390 1 1 0 1 1 3 0 0 #> 1391 1 2 0 2 1 1 1 0 #> 1392 1 0 0 0 0 1 3 0 #> 1393 0 0 0 0 0 0 1 0 #> 1394 1 0 0 0 2 2 1 0 #> 1395 0 1 0 1 1 2 5 0 #> 1396 1 2 1 1 2 4 1 0 #> 1397 0 1 0 1 0 5 0 0 #> 1398 0 0 0 0 0 0 1 0 #> 1399 0 1 0 1 0 3 0 0 #> 1400 0 0 0 0 0 3 2 0 #> 1401 1 0 0 0 1 4 0 0 #> 1402 0 1 1 0 0 1 0 0 #> 1403 3 1 0 1 3 7 0 0 #> 1404 1 1 0 1 1 4 0 0 #> 1405 0 0 0 0 0 0 2 0 #> 1406 0 1 0 1 4 4 1 0 #> 1407 0 0 0 0 0 1 0 0 #> 1408 1 0 0 0 1 5 3 0 #> 1409 1 0 0 0 2 2 1 0 #> 1410 0 1 0 1 2 4 0 0 #> 1411 3 1 0 1 2 4 2 0 #> 1412 0 0 0 0 0 0 0 1 #> 1413 0 1 0 1 0 0 1 0 #> 1414 0 0 0 0 0 0 0 0 #> 1415 0 1 0 1 0 1 2 0 #> 1416 0 1 0 1 0 1 1 0 #> 1417 0 2 1 1 0 2 0 0 #> 1418 2 0 0 0 1 2 1 0 #> 1419 0 0 0 0 0 0 0 0 #> 1420 1 1 0 1 2 2 2 0 #> 1421 0 1 0 1 3 5 0 0 #> 1422 0 0 0 0 2 3 2 0 #> 1423 0 3 1 2 3 5 6 0 #> 1424 2 1 0 1 1 3 6 0 #> 1425 0 1 0 1 0 1 3 0 #> 1426 0 0 0 0 0 0 0 0 #> 1427 1 1 0 1 0 0 0 0 #> 1428 0 0 0 0 0 3 0 0 #> 1429 0 0 0 0 0 0 0 0 #> 1430 0 0 0 0 0 1 0 0 #> 1431 0 0 0 0 0 0 0 0 #> 1432 4 0 0 0 1 1 1 0 #> 1433 0 2 0 2 4 6 0 0 #> 1434 0 2 1 1 1 1 1 0 #> 1435 0 1 0 1 2 6 0 0 #> 1436 1 0 0 0 0 2 6 0 #> 1437 0 1 1 0 2 3 1 0 #> 1438 1 0 0 0 1 3 1 0 #> 1439 2 2 0 2 1 1 2 0 #> 1440 0 0 0 0 0 0 1 0 #> 1441 1 0 0 0 0 1 1 0 #> 1442 0 0 0 0 0 0 0 0 #> 1443 0 1 0 1 0 1 1 0 #> 1444 0 0 0 0 1 2 0 0 #> 1445 4 1 0 1 3 4 0 0 #> 1446 0 3 1 2 3 5 1 0 #> 1447 7 0 0 0 1 1 2 0 #> 1448 1 0 0 0 1 3 0 0 #> 1449 3 2 1 1 3 5 3 0 #> 1450 1 1 1 0 1 2 0 0 #> 1451 1 1 1 0 4 5 2 0 #> 1452 0 2 2 0 0 2 5 0 #> 1453 2 2 0 2 1 4 0 0 #> 1454 0 0 0 0 0 0 0 0 #> 1455 1 2 0 2 0 2 1 0 #> 1456 1 0 0 0 0 2 0 0 #> 1457 0 0 0 0 0 0 1 0 #> 1458 0 0 0 0 1 1 0 0 #> 1459 2 5 0 5 2 6 1 0 #> 1460 0 0 0 0 0 0 1 0 #> 1461 0 0 0 0 0 0 0 0 #> 1462 0 0 0 0 0 1 2 0 #> 1463 0 0 0 0 2 2 2 0 #> 1464 1 0 0 0 2 6 5 1 #> 1465 1 0 0 0 1 4 3 0 #> 1466 0 0 0 0 4 5 6 0 #> 1467 0 0 0 0 3 4 2 0 #> 1468 0 0 0 0 0 0 0 0 #> 1469 0 1 0 1 0 0 0 0 #> 1470 0 0 0 0 0 1 0 0 #> 1471 0 0 0 0 0 0 0 0 #> 1472 0 1 0 1 0 1 0 0 #> 1473 1 0 0 0 0 0 0 0 #> 1474 0 0 0 0 0 2 2 0 #> 1475 3 2 0 2 1 5 1 0 #> 1476 1 2 0 2 0 1 0 0 #> 1477 2 1 1 0 0 1 2 0 #> 1478 0 0 0 0 0 1 0 0 #> 1479 0 0 0 0 1 2 3 1 #> 1480 0 1 1 0 2 2 11 1 #> 1481 3 0 0 0 2 3 1 0 #> 1482 0 0 0 0 0 0 0 0 #> 1483 0 0 0 0 1 1 0 0 #> 1484 0 0 0 0 0 1 0 0 #> 1485 0 0 0 0 0 1 0 0 #> 1486 0 2 0 2 1 2 0 0 #> 1487 2 0 0 0 0 0 0 0 #> 1488 0 0 0 0 4 4 2 0 #> 1489 1 1 1 0 0 0 0 0 #> 1490 1 2 0 2 1 2 0 0 #> 1491 1 0 0 0 0 3 0 0 #> 1492 1 1 1 0 2 2 4 0 #> 1493 1 2 2 0 4 5 3 1 #> 1494 1 1 1 0 3 5 0 0 #> 1495 0 0 0 0 0 0 0 0 #> 1496 1 0 0 0 0 0 0 0 #> 1497 0 0 0 0 0 0 0 0 #> 1498 0 0 0 0 0 0 0 0 #> 1499 1 1 0 1 0 0 2 0 #> 1500 0 0 0 0 0 1 0 0 #> 1501 0 0 0 0 0 3 0 0 #> 1502 0 1 0 1 1 1 0 0 #> 1503 1 1 1 0 1 3 2 0 #> 1504 2 0 0 0 1 6 0 0 #> 1505 2 0 0 0 0 5 0 0 #> 1506 0 0 0 0 1 4 6 0 #> 1507 0 0 0 0 1 1 2 0 #> 1508 0 0 0 0 0 2 9 0 #> 1509 1 3 1 2 0 1 6 0 #> 1510 1 0 0 0 1 1 0 0 #> 1511 2 0 0 0 0 0 0 0 #> 1512 0 1 1 0 0 1 0 0 #> 1513 0 0 0 0 1 2 1 0 #> 1514 3 1 0 1 1 4 2 0 #> 1515 0 0 0 0 1 2 1 0 #> 1516 0 0 0 0 0 0 1 0 #> 1517 1 2 0 2 0 1 0 0 #> 1518 1 2 1 1 4 4 0 0 #> 1519 1 0 0 0 0 0 1 0 #> 1520 1 1 0 1 2 2 2 0 #> 1521 0 2 2 0 1 3 5 0 #> 1522 1 2 2 0 0 0 9 0 #> 1523 0 0 0 0 2 3 4 0 #> 1524 0 0 0 0 0 0 0 1 #> 1525 0 1 0 1 0 1 1 0 #> 1526 1 0 0 0 0 0 0 0 #> 1527 0 0 0 0 0 1 1 0 #> 1528 1 1 1 0 0 1 2 0 #> 1529 2 1 0 1 2 4 1 1 #> 1530 2 3 1 2 2 5 2 0 #> 1531 0 0 0 0 2 3 0 0 #> 1532 0 0 0 0 0 0 0 0 #> 1533 0 0 0 0 0 0 1 0 #> 1534 0 0 0 0 1 1 2 0 #> 1535 0 2 2 0 5 8 4 0 #> 1536 1 0 0 0 0 1 5 0 #> 1537 0 0 0 0 0 1 0 0 #> 1538 0 0 0 0 1 1 0 0 #> 1539 2 1 1 0 0 1 0 0 #> 1540 0 0 0 0 0 0 0 0 #> 1541 0 0 0 0 0 0 0 0 #> 1542 0 1 0 1 0 1 0 0 #> 1543 0 0 0 0 1 1 1 0 #> 1544 1 1 0 1 2 2 1 0 #> 1545 0 0 0 0 0 2 0 0 #> 1546 3 2 1 1 1 3 1 0 #> 1547 0 0 0 0 1 1 0 0 #> 1548 0 0 0 0 1 2 1 0 #> 1549 1 1 0 1 2 4 6 0 #> 1550 0 1 0 1 3 3 6 0 #> 1551 1 0 0 0 0 3 1 0 #> 1552 0 0 0 0 0 1 0 0 #> 1553 0 0 0 0 0 0 0 0 #> 1554 0 1 0 1 2 2 0 0 #> 1555 0 0 0 0 0 0 0 0 #> 1556 0 3 0 3 2 2 1 0 #> 1557 2 0 0 0 1 1 0 0 #> 1558 1 0 0 0 0 1 1 0 #> 1559 0 0 0 0 0 0 0 0 #> 1560 0 0 0 0 1 4 2 0 #> 1561 1 1 0 1 1 1 5 0 #> 1562 0 3 1 2 2 3 2 0 #> 1563 2 0 0 0 0 1 1 0 #> 1564 0 0 0 0 1 1 0 0 #> 1565 1 0 0 0 1 3 0 0 #> 1566 0 0 0 0 0 0 1 0 #> 1567 0 0 0 0 0 1 0 0 #> 1568 0 0 0 0 0 0 0 0 #> 1569 1 0 0 0 0 0 1 0 #> 1570 1 1 0 1 0 0 0 0 #> 1571 1 1 1 0 1 1 0 0 #> 1572 1 0 0 0 0 2 1 0 #> 1573 1 1 0 1 3 4 0 0 #> 1574 0 2 0 2 0 0 1 0 #> 1575 0 1 0 1 0 0 0 0 #> 1576 1 3 0 3 3 6 4 0 #> 1577 0 0 0 0 5 7 12 1 #> 1578 0 0 0 0 2 2 9 0 #> 1579 0 1 1 0 2 2 4 0 #> 1580 0 0 0 0 0 0 1 0 #> 1581 0 1 0 1 1 1 0 0 #> 1582 0 0 0 0 1 1 2 0 #> 1583 1 0 0 0 1 1 0 0 #> 1584 2 1 0 1 0 2 1 0 #> 1585 0 0 0 0 1 1 1 0 #> 1586 2 5 1 4 1 3 0 0 #> 1587 2 1 0 1 2 5 0 0 #> 1588 1 1 0 1 0 0 1 0 #> 1589 1 0 0 0 0 1 0 0 #> 1590 0 1 0 1 0 2 9 0 #> 1591 0 1 1 0 1 3 5 0 #> 1592 1 1 1 0 1 1 6 0 #> 1593 4 3 2 1 2 6 3 0 #> 1594 0 0 0 0 0 0 0 0 #> 1595 0 0 0 0 0 1 0 0 #> 1596 0 0 0 0 0 0 1 0 #> 1597 0 0 0 0 0 2 0 0 #> 1598 1 0 0 0 1 4 0 0 #> 1599 1 2 2 0 0 3 1 0 #> 1600 2 0 0 0 0 3 1 0 #> 1601 0 0 0 0 0 1 2 0 #> 1602 0 0 0 0 0 0 0 0 #> 1603 2 0 0 0 1 5 0 0 #> 1604 0 2 2 0 5 8 4 0 #> 1605 1 1 0 1 3 3 6 0 #> 1606 0 0 0 0 0 1 3 0 #> 1607 0 0 0 0 0 0 0 0 #> 1608 0 1 0 1 0 0 0 0 #> 1609 0 0 0 0 0 0 1 0 #> 1610 0 0 0 0 0 0 0 0 #> 1611 0 0 0 0 0 0 0 0 #> 1612 0 0 0 0 1 1 0 0 #> 1613 1 1 1 0 0 1 1 0 #> 1614 1 1 1 0 0 3 2 0 #> 1615 4 0 0 0 3 7 2 0 #> 1616 3 0 0 0 2 4 1 0 #> 1617 0 1 1 0 1 2 6 0 #> 1618 0 2 0 2 1 3 4 0 #> 1619 0 1 1 0 1 2 6 0 #> 1620 1 2 0 2 3 3 5 0 #> 1621 0 0 0 0 0 1 0 0 #> 1622 0 0 0 0 0 0 1 0 #> 1623 0 0 0 0 0 1 0 0 #> 1624 1 0 0 0 1 1 1 0 #> 1625 1 0 0 0 1 1 0 0 #> 1626 0 0 0 0 0 0 2 0 #> 1627 3 2 0 2 1 1 0 0 #> 1628 1 0 0 0 1 2 0 0 #> 1629 0 2 1 1 0 2 0 0 #> 1630 1 2 0 2 1 2 2 0 #> 1631 0 0 0 0 0 0 0 0 #> 1632 1 0 0 0 2 3 5 0 #> 1633 1 3 1 2 1 2 5 0 #> 1634 1 0 0 0 3 3 4 0 #> 1635 1 0 0 0 1 2 0 0 #> 1636 0 0 0 0 0 0 0 1 #> 1637 0 1 0 1 0 2 1 0 #> 1638 0 0 0 0 0 2 1 0 #> 1639 0 0 0 0 2 2 0 0 #> 1640 1 1 0 1 0 0 0 0 #> 1641 0 0 0 0 1 1 0 0 #> 1642 2 3 0 3 2 2 0 0 #> 1643 0 0 0 0 0 0 2 0 #> 1644 1 0 0 0 0 1 0 0 #> 1645 0 0 0 0 1 2 1 0 #> 1646 0 0 0 0 0 2 2 0 #> 1647 0 0 0 0 3 7 2 0 #> 1648 0 1 0 1 1 2 5 0 #> 1649 0 1 1 0 1 1 2 0 #> 1650 0 0 0 0 0 0 1 0 #> 1651 1 2 0 2 0 2 1 0 #> 1652 1 1 0 1 0 2 2 0 #> 1653 1 0 0 0 0 1 0 0 #> 1654 0 1 1 0 0 2 0 0 #> 1655 1 0 0 0 1 4 0 0 #> 1656 0 0 0 0 0 1 0 0 #> 1657 2 1 1 0 0 4 1 0 #> 1658 0 0 0 0 0 0 0 0 #> 1659 2 2 1 1 1 3 5 0 #> 1660 0 1 0 1 0 3 7 0 #> 1661 0 0 0 0 1 1 5 0 #> 1662 0 1 1 0 0 0 5 0 #> 1663 0 0 0 0 0 3 3 0 #> 1664 0 0 0 0 0 0 0 1 #> 1665 0 1 1 0 0 2 0 0 #> 1666 1 0 0 0 1 2 0 0 #> 1667 0 1 0 1 2 4 1 0 #> 1668 0 0 0 0 0 0 0 0 #> 1669 3 0 0 0 0 5 1 0 #> 1670 2 2 0 2 0 1 0 0 #> 1671 1 0 0 0 1 2 0 0 #> 1672 4 1 0 1 1 3 1 0 #> 1673 0 0 0 0 0 0 0 0 #> 1674 1 1 1 0 1 5 6 0 #> 1675 0 1 1 0 1 2 4 0 #> 1676 0 0 0 0 3 4 5 0 #> 1677 2 3 1 2 0 1 5 0 #> 1678 0 0 0 0 0 0 0 1 #> 1679 0 0 0 0 0 0 1 0 #> 1680 0 3 0 3 0 1 0 0 #> 1681 0 1 0 1 0 1 0 0 #> 1682 0 1 1 0 3 4 0 0 #> 1683 0 3 0 3 2 4 1 0 #> 1684 4 1 0 1 1 2 1 0 #> 1685 1 2 0 2 0 0 0 0 #> 1686 0 1 0 1 0 0 0 0 #> 1687 0 2 0 2 1 4 4 0 #> 1688 1 1 0 1 2 4 2 0 #> 1689 0 1 0 1 1 4 1 0 #> 1690 0 1 0 1 1 1 0 0 #> 1691 0 0 0 0 0 1 0 0 #> 1692 0 0 0 0 0 0 0 0 #> 1693 0 0 0 0 0 0 0 0 #> 1694 0 0 0 0 0 0 0 0 #> 1695 0 0 0 0 1 4 0 0 #> 1696 2 1 0 1 2 2 0 0 #> 1697 0 0 0 0 0 1 0 0 #> 1698 0 0 0 0 1 3 2 0 #> 1699 1 0 0 0 0 1 0 0 #> 1700 3 1 0 1 2 5 2 0 #> 1701 3 4 0 4 1 4 2 0 #> 1702 0 1 0 1 2 4 1 0 #> 1703 1 0 0 0 1 1 2 0 #> 1704 0 1 1 0 2 6 4 0 #> 1705 1 1 0 1 2 2 2 0 #> 1706 0 0 0 0 0 0 1 0 #> 1707 0 0 0 0 0 0 2 0 #> 1708 0 0 0 0 1 2 0 0 #> 1709 0 1 0 1 0 0 0 0 #> 1710 0 0 0 0 0 0 0 0 #> 1711 0 1 1 0 3 3 1 0 #> 1712 0 0 0 0 1 2 0 0 #> 1713 1 1 0 1 0 2 0 0 #> 1714 0 3 0 3 1 3 0 0 #> 1715 0 0 0 0 0 1 0 0 #> 1716 0 1 0 1 2 5 0 0 #> 1717 0 1 0 1 1 2 2 0 #> 1718 1 1 1 0 1 3 1 0 #> 1719 0 3 1 2 2 6 2 0 #> 1720 1 0 0 0 0 0 0 0 #> 1721 1 1 0 1 0 2 1 0 #> 1722 0 0 0 0 0 1 0 0 #> 1723 1 1 0 1 1 2 3 0 #> 1724 2 1 0 1 1 3 2 0 #> 1725 3 1 0 1 0 1 2 0 #> 1726 2 3 0 3 0 0 1 0 #> 1727 0 0 0 0 2 2 0 0 #> 1728 1 2 1 1 2 4 3 0 #> 1729 0 0 0 0 0 2 5 0 #> 1730 1 1 0 1 1 2 0 0 #> 1731 0 4 1 3 2 4 3 0 #> 1732 1 3 1 2 0 0 7 0 #> 1733 0 1 1 0 1 7 3 0 #> 1734 0 0 0 0 0 0 0 0 #> 1735 0 1 0 1 0 1 0 0 #> 1736 1 0 0 0 0 0 0 0 #> 1737 1 0 0 0 0 3 0 0 #> 1738 2 0 0 0 0 0 0 0 #> 1739 0 1 0 1 2 5 2 0 #> 1740 1 2 0 2 1 3 0 0 #> 1741 1 1 0 1 2 3 0 0 #> 1742 1 1 0 1 0 0 0 0 #> 1743 1 1 0 1 0 0 3 0 #> 1744 0 0 0 0 2 4 0 0 #> 1745 0 0 0 0 1 2 0 0 #> 1746 0 0 0 0 0 0 0 0 #> 1747 0 3 1 2 2 3 4 0 #> 1748 0 0 0 0 0 0 0 0 #> 1749 2 1 0 1 0 1 0 0 #> 1750 1 0 0 0 0 0 1 0 #> 1751 0 0 0 0 2 4 1 0 #> 1752 0 0 0 0 0 2 0 0 #> 1753 3 4 0 4 2 4 1 0 #> 1754 0 1 0 1 1 5 3 0 #> 1755 1 2 0 2 0 3 2 0 #> 1756 1 0 0 0 0 0 1 0 #> 1757 0 1 0 1 2 4 4 0 #> 1758 0 1 0 1 0 0 3 0 #> 1759 0 0 0 0 1 2 6 0 #> 1760 0 2 2 0 0 3 10 0 #> 1761 0 1 0 1 1 2 10 0 #> 1762 0 0 0 0 0 0 1 0 #> 1763 0 0 0 0 1 1 3 0 #> 1764 0 0 0 0 0 0 0 0 #> 1765 3 1 0 1 3 3 0 0 #> 1766 0 0 0 0 0 0 0 0 #> 1767 1 1 0 1 1 1 0 0 #> 1768 0 0 0 0 1 3 0 0 #> 1769 3 2 0 2 1 5 5 0 #> 1770 0 1 0 1 0 1 0 0 #> 1771 0 1 0 1 0 1 0 0 #> 1772 0 0 0 0 1 3 2 0 #> 1773 0 2 1 1 1 2 6 0 #> 1774 0 0 0 0 0 1 2 0 #> 1775 0 2 0 2 0 2 2 0 #> 1776 0 0 0 0 0 0 0 0 #> 1777 0 0 0 0 0 1 0 0 #> 1778 1 2 0 2 0 0 1 0 #> 1779 0 0 0 0 1 1 0 0 #> 1780 2 2 0 2 1 4 2 0 #> 1781 1 1 0 1 2 6 1 0 #> 1782 0 0 0 0 0 0 0 0 #> 1783 1 4 1 3 2 5 4 0 #> 1784 1 1 0 1 0 0 0 0 #> 1785 1 1 0 1 0 1 0 0 #> 1786 1 0 0 0 0 2 5 0 #> 1787 0 2 1 1 1 2 8 0 #> 1788 0 4 1 3 2 3 9 0 #> 1789 1 1 0 1 3 6 2 0 #> 1790 0 0 0 0 0 0 0 0 #> 1791 0 0 0 0 0 0 0 0 #> 1792 1 1 0 1 0 0 2 0 #> 1793 0 0 0 0 1 1 1 0 #> 1794 0 1 0 1 0 1 1 0 #> 1795 1 2 1 1 2 3 1 0 #> 1796 0 1 1 0 0 2 0 0 #> 1797 0 0 0 0 0 2 0 0 #> 1798 0 0 0 0 2 3 5 0 #> 1799 1 0 0 0 1 6 2 0 #> 1800 0 1 1 0 3 4 6 0 #> 1801 1 2 0 2 2 4 2 0 #> 1802 0 0 0 0 4 5 1 0 #> 1803 0 0 0 0 2 5 0 0 #> 1804 0 0 0 0 0 0 0 0 #> 1805 0 0 0 0 1 2 2 0 #> 1806 2 0 0 0 0 1 0 0 #> 1807 0 1 0 1 1 2 0 0 #> 1808 0 0 0 0 0 0 0 0 #> 1809 0 0 0 0 1 2 0 0 #> 1810 0 0 0 0 3 5 3 0 #> 1811 0 1 0 1 2 3 0 0 #> 1812 1 1 0 1 1 3 1 0 #> 1813 0 0 0 0 0 0 0 0 #> 1814 0 1 0 1 4 9 2 0 #> 1815 0 2 1 1 0 2 3 0 #> 1816 0 1 0 1 2 4 9 0 #> 1817 0 1 0 1 2 4 1 0 #> 1818 0 0 0 0 0 0 1 0 #> 1819 0 0 0 0 0 0 0 0 #> 1820 1 0 0 0 0 0 1 0 #> 1821 0 0 0 0 0 0 0 0 #> 1822 0 0 0 0 0 0 0 0 #> 1823 0 2 1 1 2 4 0 0 #> 1824 2 0 0 0 0 2 0 0 #> 1825 2 1 0 1 2 5 0 0 #> 1826 0 1 0 1 1 1 2 0 #> 1827 0 0 0 0 0 1 1 0 #> 1828 1 1 1 0 3 5 1 0 #> 1829 0 0 0 0 2 4 1 0 #> 1830 0 1 1 0 0 2 0 0 #> 1831 0 1 0 1 0 0 1 0 #> 1832 0 0 0 0 0 0 0 0 #> 1833 3 2 1 1 1 2 0 0 #> 1834 0 2 0 2 0 0 0 0 #> 1835 0 1 0 1 0 0 1 0 #> 1836 1 0 0 0 1 4 1 0 #> 1837 0 0 0 0 0 0 0 0 #> 1838 1 1 0 1 4 7 4 0 #> 1839 0 2 0 2 2 4 2 0 #> 1840 0 0 0 0 0 0 1 0 #> 1841 3 1 1 0 1 2 0 0 #> 1842 0 1 1 0 3 10 5 0 #> 1843 0 3 3 0 2 4 8 0 #> 1844 0 1 1 0 1 1 4 0 #> 1845 0 0 0 0 2 2 5 0 #> 1846 0 0 0 0 0 0 0 0 #> 1847 0 1 0 1 0 0 0 0 #> 1848 0 0 0 0 0 0 2 0 #> 1849 1 1 0 1 2 5 1 0 #> 1850 0 0 0 0 0 0 0 0 #> 1851 1 0 0 0 2 3 1 0 #> 1852 2 1 0 1 0 1 3 0 #> 1853 0 1 0 1 1 1 1 0 #> 1854 0 3 1 2 1 1 0 0 #> 1855 0 0 0 0 2 4 1 0 #> 1856 0 2 1 1 1 4 1 0 #> 1857 0 0 0 0 1 1 2 0 #> 1858 0 1 1 0 0 1 2 0 #> 1859 0 0 0 0 0 0 1 0 #> 1860 0 0 0 0 0 0 0 0 #> 1861 1 1 0 1 0 0 1 0 #> 1862 0 0 0 0 0 0 0 0 #> 1863 1 0 0 0 0 2 2 0 #> 1864 0 0 0 0 0 1 0 0 #> 1865 0 0 0 0 0 0 0 0 #> 1866 2 1 0 1 1 1 1 0 #> 1867 0 0 0 0 2 8 1 0 #> 1868 1 0 0 0 0 0 1 0 #> 1869 0 0 0 0 0 0 0 0 #> 1870 0 0 0 0 1 2 0 0 #> 1871 0 0 0 0 2 3 4 0 #> 1872 0 0 0 0 1 3 3 0 #> 1873 0 1 0 1 2 6 5 0 #> 1874 0 0 0 0 0 0 1 0 #> 1875 0 1 0 1 0 0 1 0 #> 1876 0 0 0 0 0 1 1 0 #> 1877 0 0 0 0 0 0 0 0 #> 1878 0 1 0 1 1 5 0 0 #> 1879 1 0 0 0 0 1 0 0 #> 1880 0 0 0 0 0 0 0 0 #> 1881 0 2 1 1 0 2 0 0 #> 1882 0 0 0 0 0 0 1 0 #> 1883 0 0 0 0 0 0 0 0 #> 1884 0 0 0 0 0 0 0 0 #> 1885 2 0 0 0 0 3 3 0 #> 1886 0 1 1 0 1 1 1 0 #> 1887 1 1 0 1 3 3 1 0 #> 1888 0 0 0 0 0 0 1 0 #> 1889 0 1 0 1 0 0 0 0 #> 1890 0 0 0 0 1 2 0 0 #> 1891 0 2 0 2 0 1 0 0 #> 1892 1 3 0 3 1 2 1 0 #> 1893 1 3 1 2 0 5 0 0 #> 1894 0 0 0 0 2 5 1 0 #> 1895 1 0 0 0 1 1 1 0 #> 1896 0 1 0 1 0 0 0 0 #> 1897 1 0 0 0 1 5 2 0 #> 1898 0 2 1 1 4 5 7 0 #> 1899 0 2 2 0 3 6 7 0 #> 1900 0 1 1 0 1 2 5 0 #> 1901 0 1 1 0 0 0 4 0 #> 1902 0 0 0 0 0 0 0 0 #> 1903 0 0 0 0 0 0 0 0 #> 1904 0 0 0 0 0 0 0 0 #> 1905 1 1 0 1 0 4 0 0 #> 1906 0 3 0 3 0 0 1 0 #> 1907 0 1 0 1 0 2 0 0 #> 1908 0 0 0 0 0 2 3 0 #> 1909 0 2 0 2 0 0 0 0 #> 1910 0 1 1 0 0 0 2 0 #> 1911 1 2 0 2 1 5 5 0 #> 1912 0 1 0 1 1 4 7 0 #> 1913 0 0 0 0 0 0 0 0 #> 1914 0 3 1 2 1 5 7 0 #> 1915 0 0 0 0 0 1 3 0 #> 1916 0 0 0 0 0 0 0 0 #> 1917 0 0 0 0 0 0 1 0 #> 1918 0 1 0 1 0 0 0 0 #> 1919 0 1 0 1 0 0 0 0 #> 1920 0 0 0 0 0 2 2 0 #> 1921 0 0 0 0 0 0 0 0 #> 1922 0 0 0 0 5 6 1 0 #> 1923 0 1 0 1 1 3 0 0 #> 1924 1 1 0 1 0 0 0 0 #> 1925 0 1 0 1 2 3 0 0 #> 1926 0 2 1 1 2 4 3 0 #> 1927 0 1 0 1 2 3 5 0 #> 1928 0 1 1 0 7 8 6 0 #> 1929 0 0 0 0 0 3 0 0 #> 1930 0 0 0 0 0 0 1 1 #> 1931 2 1 0 1 0 0 0 0 #> 1932 1 0 0 0 1 2 0 0 #> 1933 0 1 0 1 2 2 0 0 #> 1934 1 0 0 0 0 1 0 0 #> 1935 0 1 0 1 0 0 0 0 #> 1936 1 1 0 1 0 0 0 0 #> 1937 2 0 0 0 0 1 1 0 #> 1938 0 0 0 0 0 0 0 0 #> 1939 2 1 0 1 0 0 0 0 #> 1940 0 0 0 0 1 3 2 0 #> 1941 0 0 0 0 2 4 1 0 #> 1942 2 1 0 1 0 1 1 0 #> 1943 0 0 0 0 0 1 0 0 #> 1944 0 0 0 0 0 0 0 0 #> 1945 0 2 1 1 1 3 2 0 #> 1946 3 2 0 2 2 3 0 0 #> 1947 0 1 1 0 0 0 2 0 #> 1948 2 1 0 1 0 2 0 0 #> 1949 0 0 0 0 0 0 0 0 #> 1950 1 1 0 1 1 1 0 0 #> 1951 0 1 0 1 0 1 1 0 #> 1952 1 2 0 2 2 4 2 0 #> 1953 0 0 0 0 3 8 1 0 #> 1954 1 4 0 4 3 6 2 0 #> 1955 1 2 1 1 1 2 6 0 #> 1956 0 0 0 0 3 5 14 0 #> 1957 1 1 0 1 2 7 6 0 #> 1958 0 0 0 0 0 0 3 0 #> 1959 0 0 0 0 0 0 2 0 #> 1960 0 0 0 0 0 0 0 0 #> 1961 0 0 0 0 0 0 0 0 #> 1962 1 0 0 0 2 3 1 0 #> 1963 1 1 0 1 1 3 4 0 #> 1964 1 0 0 0 2 2 2 0 #> 1965 0 0 0 0 0 3 1 0 #> 1966 0 0 0 0 0 0 0 0 #> 1967 1 2 0 2 1 1 2 0 #> 1968 0 0 0 0 0 0 0 0 #> 1969 1 1 0 1 2 10 5 0 #> 1970 0 2 1 1 4 4 11 0 #> 1971 1 2 1 1 1 3 7 0 #> 1972 0 0 0 0 0 0 0 0 #> 1973 0 0 0 0 1 1 1 0 #> 1974 0 0 0 0 0 0 0 0 #> 1975 2 0 0 0 0 0 0 0 #> 1976 1 0 0 0 0 1 0 0 #> 1977 1 1 0 1 1 2 1 0 #> 1978 1 0 0 0 1 3 0 0 #> 1979 0 0 0 0 2 4 1 0 #> 1980 0 0 0 0 0 2 0 0 #> 1981 0 0 0 0 0 0 1 0 #> 1982 1 2 1 1 0 3 4 0 #> 1983 0 0 0 0 3 5 7 0 #> 1984 1 0 0 0 1 2 2 0 #> 1985 0 2 2 0 3 5 3 0 #> 1986 0 0 0 0 0 0 0 0 #> 1987 0 1 0 1 0 0 0 0 #> 1988 0 0 0 0 0 1 0 0 #> 1989 1 2 0 2 0 1 0 0 #> 1990 0 1 0 1 2 4 0 0 #> 1991 0 1 0 1 0 0 0 0 #> 1992 0 2 1 1 1 3 2 0 #> 1993 0 2 2 0 0 0 1 0 #> 1994 0 2 0 2 1 3 1 0 #> 1995 1 0 0 0 2 2 0 0 #> 1996 0 1 0 1 1 4 1 0 #> 1997 1 0 0 0 1 2 7 0 #> 1998 1 1 0 1 2 8 3 1 #> 1999 4 1 0 1 0 3 0 0 #> 2000 0 1 0 1 0 0 0 0 #> 2001 1 1 0 1 0 2 2 0 #> 2002 0 0 0 0 0 0 0 0 #> 2003 1 0 0 0 0 0 0 0 #> 2004 2 1 0 1 1 4 5 0 #> 2005 3 5 0 5 0 1 2 0 #> 2006 0 1 0 1 1 2 2 0 #> 2007 0 0 0 0 0 2 0 0 #> 2008 0 1 0 1 3 4 3 0 #> 2009 0 3 0 3 2 5 1 0 #> 2010 0 1 1 0 1 2 3 0 #> 2011 0 4 3 1 2 5 8 0 #> 2012 2 1 0 1 1 3 5 0 #> 2013 0 1 1 0 0 1 0 0 #> 2014 0 1 0 1 0 0 1 0 #> 2015 0 1 0 1 0 0 1 0 #> 2016 1 0 0 0 1 1 0 0 #> 2017 0 1 0 1 0 3 1 0 #> 2018 0 1 0 1 0 0 0 0 #> 2019 0 1 1 0 3 3 0 0 #> 2020 0 0 0 0 0 0 1 0 #> 2021 0 2 2 0 1 2 3 0 #> 2022 0 0 0 0 1 3 3 0 #> 2023 0 2 0 2 0 2 3 0 #> 2024 0 1 1 0 1 4 5 0 #> 2025 0 0 0 0 0 0 1 0 #> 2026 1 0 0 0 1 5 4 0 #> 2027 0 2 0 2 1 4 5 0 #> 2028 0 0 0 0 0 0 0 0 #> 2029 0 1 0 1 0 0 0 0 #> 2030 0 0 0 0 0 0 0 0 #> 2031 0 1 0 1 1 2 0 0 #> 2032 1 0 0 0 0 0 0 0 #> 2033 0 0 0 0 0 0 0 0 #> 2034 0 0 0 0 1 1 1 0 #> 2035 0 0 0 0 1 2 0 0 #> 2036 0 0 0 0 1 1 0 0 #> 2037 1 0 0 0 0 3 0 0 #> 2038 0 1 1 0 2 3 1 0 #> 2039 0 0 0 0 2 3 4 0 #> 2040 0 1 0 1 1 1 6 0 #> Competition_Name Gender Country Tier Season_End_Year #> 1 La Liga M ESP 1st 2019 #> 2 La Liga M ESP 1st 2019 #> 3 La Liga M ESP 1st 2019 #> 4 La Liga M ESP 1st 2019 #> 5 La Liga M ESP 1st 2019 #> 6 La Liga M ESP 1st 2019 #> 7 La Liga M ESP 1st 2019 #> 8 La Liga M ESP 1st 2019 #> 9 La Liga M ESP 1st 2019 #> 10 La Liga M ESP 1st 2019 #> 11 La Liga M ESP 1st 2019 #> 12 La Liga M ESP 1st 2019 #> 13 La Liga M ESP 1st 2019 #> 14 La Liga M ESP 1st 2019 #> 15 La Liga M ESP 1st 2019 #> 16 La Liga M ESP 1st 2019 #> 17 La Liga M ESP 1st 2019 #> 18 La Liga M ESP 1st 2019 #> 19 La Liga M ESP 1st 2019 #> 20 La Liga M ESP 1st 2019 #> 21 La Liga M ESP 1st 2019 #> 22 La Liga M ESP 1st 2019 #> 23 La Liga M ESP 1st 2019 #> 24 La Liga M ESP 1st 2019 #> 25 La Liga M ESP 1st 2019 #> 26 La Liga M ESP 1st 2019 #> 27 La Liga M ESP 1st 2019 #> 28 La Liga M ESP 1st 2019 #> 29 La Liga M ESP 1st 2019 #> 30 La Liga M ESP 1st 2019 #> 31 La Liga M ESP 1st 2019 #> 32 La Liga M ESP 1st 2019 #> 33 La Liga M ESP 1st 2019 #> 34 La Liga M ESP 1st 2019 #> 35 La Liga M ESP 1st 2019 #> 36 La Liga M ESP 1st 2019 #> 37 La Liga M ESP 1st 2019 #> 38 La Liga M ESP 1st 2019 #> 39 La Liga M ESP 1st 2019 #> 40 La Liga M ESP 1st 2019 #> 41 La Liga M ESP 1st 2019 #> 42 La Liga M ESP 1st 2019 #> 43 La Liga M ESP 1st 2019 #> 44 La Liga M ESP 1st 2019 #> 45 La Liga M ESP 1st 2019 #> 46 La Liga M ESP 1st 2019 #> 47 La Liga M ESP 1st 2019 #> 48 La Liga M ESP 1st 2019 #> 49 La Liga M ESP 1st 2019 #> 50 La Liga M ESP 1st 2019 #> 51 La Liga M ESP 1st 2019 #> 52 La Liga M ESP 1st 2019 #> 53 La Liga M ESP 1st 2019 #> 54 La Liga M ESP 1st 2019 #> 55 La Liga M ESP 1st 2019 #> 56 La Liga M ESP 1st 2019 #> 57 La Liga M ESP 1st 2019 #> 58 La Liga M ESP 1st 2019 #> 59 La Liga M ESP 1st 2019 #> 60 La Liga M ESP 1st 2019 #> 61 La Liga M ESP 1st 2019 #> 62 La Liga M ESP 1st 2019 #> 63 La Liga M ESP 1st 2019 #> 64 La Liga M ESP 1st 2019 #> 65 La Liga M ESP 1st 2019 #> 66 La Liga M ESP 1st 2019 #> 67 La Liga M ESP 1st 2019 #> 68 La Liga M ESP 1st 2019 #> 69 La Liga M ESP 1st 2019 #> 70 La Liga M ESP 1st 2019 #> 71 La Liga M ESP 1st 2019 #> 72 La Liga M ESP 1st 2019 #> 73 La Liga M ESP 1st 2019 #> 74 La Liga M ESP 1st 2019 #> 75 La Liga M ESP 1st 2019 #> 76 La Liga M ESP 1st 2019 #> 77 La Liga M ESP 1st 2019 #> 78 La Liga M ESP 1st 2019 #> 79 La Liga M ESP 1st 2019 #> 80 La Liga M ESP 1st 2019 #> 81 La Liga M ESP 1st 2019 #> 82 La Liga M ESP 1st 2019 #> 83 La Liga M ESP 1st 2019 #> 84 La Liga M ESP 1st 2019 #> 85 La Liga M ESP 1st 2019 #> 86 La Liga M ESP 1st 2019 #> 87 La Liga M ESP 1st 2019 #> 88 La Liga M ESP 1st 2019 #> 89 La Liga M ESP 1st 2019 #> 90 La Liga M ESP 1st 2019 #> 91 La Liga M ESP 1st 2019 #> 92 La Liga M ESP 1st 2019 #> 93 La Liga M ESP 1st 2019 #> 94 La Liga M ESP 1st 2019 #> 95 La Liga M ESP 1st 2019 #> 96 La Liga M ESP 1st 2019 #> 97 La Liga M ESP 1st 2019 #> 98 La Liga M ESP 1st 2019 #> 99 La Liga M ESP 1st 2019 #> 100 La Liga M ESP 1st 2019 #> 101 La Liga M ESP 1st 2019 #> 102 La Liga M ESP 1st 2019 #> 103 La Liga M ESP 1st 2019 #> 104 La Liga M ESP 1st 2019 #> 105 La Liga M ESP 1st 2019 #> 106 La Liga M ESP 1st 2019 #> 107 La Liga M ESP 1st 2019 #> 108 La Liga M ESP 1st 2019 #> 109 La Liga M ESP 1st 2019 #> 110 La Liga M ESP 1st 2019 #> 111 La Liga M ESP 1st 2019 #> 112 La Liga M ESP 1st 2019 #> 113 La Liga M ESP 1st 2019 #> 114 La Liga M ESP 1st 2019 #> 115 La Liga M ESP 1st 2019 #> 116 La Liga M ESP 1st 2019 #> 117 La Liga M ESP 1st 2019 #> 118 La Liga M ESP 1st 2019 #> 119 La Liga M ESP 1st 2019 #> 120 La Liga M ESP 1st 2019 #> 121 La Liga M ESP 1st 2019 #> 122 La Liga M ESP 1st 2019 #> 123 La Liga M ESP 1st 2019 #> 124 La Liga M ESP 1st 2019 #> 125 La Liga M ESP 1st 2019 #> 126 La Liga M ESP 1st 2019 #> 127 La Liga M ESP 1st 2019 #> 128 La Liga M ESP 1st 2019 #> 129 La Liga M ESP 1st 2019 #> 130 La Liga M ESP 1st 2019 #> 131 La Liga M ESP 1st 2019 #> 132 La Liga M ESP 1st 2019 #> 133 La Liga M ESP 1st 2019 #> 134 La Liga M ESP 1st 2019 #> 135 La Liga M ESP 1st 2019 #> 136 La Liga M ESP 1st 2019 #> 137 La Liga M ESP 1st 2019 #> 138 La Liga M ESP 1st 2019 #> 139 La Liga M ESP 1st 2019 #> 140 La Liga M ESP 1st 2019 #> 141 La Liga M ESP 1st 2019 #> 142 La Liga M ESP 1st 2019 #> 143 La Liga M ESP 1st 2019 #> 144 La Liga M ESP 1st 2019 #> 145 La Liga M ESP 1st 2019 #> 146 La Liga M ESP 1st 2019 #> 147 La Liga M ESP 1st 2019 #> 148 La Liga M ESP 1st 2019 #> 149 La Liga M ESP 1st 2019 #> 150 La Liga M ESP 1st 2019 #> 151 La Liga M ESP 1st 2019 #> 152 La Liga M ESP 1st 2019 #> 153 La Liga M ESP 1st 2019 #> 154 La Liga M ESP 1st 2019 #> 155 La Liga M ESP 1st 2019 #> 156 La Liga M ESP 1st 2019 #> 157 La Liga M ESP 1st 2019 #> 158 La Liga M ESP 1st 2019 #> 159 La Liga M ESP 1st 2019 #> 160 La Liga M ESP 1st 2019 #> 161 La Liga M ESP 1st 2019 #> 162 La Liga M ESP 1st 2019 #> 163 La Liga M ESP 1st 2019 #> 164 La Liga M ESP 1st 2019 #> 165 La Liga M ESP 1st 2019 #> 166 La Liga M ESP 1st 2019 #> 167 La Liga M ESP 1st 2019 #> 168 La Liga M ESP 1st 2019 #> 169 La Liga M ESP 1st 2019 #> 170 La Liga M ESP 1st 2019 #> 171 La Liga M ESP 1st 2019 #> 172 La Liga M ESP 1st 2019 #> 173 La Liga M ESP 1st 2019 #> 174 La Liga M ESP 1st 2019 #> 175 La Liga M ESP 1st 2019 #> 176 La Liga M ESP 1st 2019 #> 177 La Liga M ESP 1st 2019 #> 178 La Liga M ESP 1st 2019 #> 179 La Liga M ESP 1st 2019 #> 180 La Liga M ESP 1st 2019 #> 181 La Liga M ESP 1st 2019 #> 182 La Liga M ESP 1st 2019 #> 183 La Liga M ESP 1st 2019 #> 184 La Liga M ESP 1st 2019 #> 185 La Liga M ESP 1st 2019 #> 186 La Liga M ESP 1st 2019 #> 187 La Liga M ESP 1st 2019 #> 188 La Liga M ESP 1st 2019 #> 189 La Liga M ESP 1st 2019 #> 190 La Liga M ESP 1st 2019 #> 191 La Liga M ESP 1st 2019 #> 192 La Liga M ESP 1st 2019 #> 193 La Liga M ESP 1st 2019 #> 194 La Liga M ESP 1st 2019 #> 195 La Liga M ESP 1st 2019 #> 196 La Liga M ESP 1st 2019 #> 197 La Liga M ESP 1st 2019 #> 198 La Liga M ESP 1st 2019 #> 199 La Liga M ESP 1st 2019 #> 200 La Liga M ESP 1st 2019 #> 201 La Liga M ESP 1st 2019 #> 202 La Liga M ESP 1st 2019 #> 203 La Liga M ESP 1st 2019 #> 204 La Liga M ESP 1st 2019 #> 205 La Liga M ESP 1st 2019 #> 206 La Liga M ESP 1st 2019 #> 207 La Liga M ESP 1st 2019 #> 208 La Liga M ESP 1st 2019 #> 209 La Liga M ESP 1st 2019 #> 210 La Liga M ESP 1st 2019 #> 211 La Liga M ESP 1st 2019 #> 212 La Liga M ESP 1st 2019 #> 213 La Liga M ESP 1st 2019 #> 214 La Liga M ESP 1st 2019 #> 215 La Liga M ESP 1st 2019 #> 216 La Liga M ESP 1st 2019 #> 217 La Liga M ESP 1st 2019 #> 218 La Liga M ESP 1st 2019 #> 219 La Liga M ESP 1st 2019 #> 220 La Liga M ESP 1st 2019 #> 221 La Liga M ESP 1st 2019 #> 222 La Liga M ESP 1st 2019 #> 223 La Liga M ESP 1st 2019 #> 224 La Liga M ESP 1st 2019 #> 225 La Liga M ESP 1st 2019 #> 226 La Liga M ESP 1st 2019 #> 227 La Liga M ESP 1st 2019 #> 228 La Liga M ESP 1st 2019 #> 229 La Liga M ESP 1st 2019 #> 230 La Liga M ESP 1st 2019 #> 231 La Liga M ESP 1st 2019 #> 232 La Liga M ESP 1st 2019 #> 233 La Liga M ESP 1st 2019 #> 234 La Liga M ESP 1st 2019 #> 235 La Liga M ESP 1st 2019 #> 236 La Liga M ESP 1st 2019 #> 237 La Liga M ESP 1st 2019 #> 238 La Liga M ESP 1st 2019 #> 239 La Liga M ESP 1st 2019 #> 240 La Liga M ESP 1st 2019 #> 241 La Liga M ESP 1st 2019 #> 242 La Liga M ESP 1st 2019 #> 243 La Liga M ESP 1st 2019 #> 244 La Liga M ESP 1st 2019 #> 245 La Liga M ESP 1st 2019 #> 246 La Liga M ESP 1st 2019 #> 247 La Liga M ESP 1st 2019 #> 248 La Liga M ESP 1st 2019 #> 249 La Liga M ESP 1st 2019 #> 250 La Liga M ESP 1st 2019 #> 251 La Liga M ESP 1st 2019 #> 252 La Liga M ESP 1st 2019 #> 253 La Liga M ESP 1st 2019 #> 254 La Liga M ESP 1st 2019 #> 255 La Liga M ESP 1st 2019 #> 256 La Liga M ESP 1st 2019 #> 257 La Liga M ESP 1st 2019 #> 258 La Liga M ESP 1st 2019 #> 259 La Liga M ESP 1st 2019 #> 260 La Liga M ESP 1st 2019 #> 261 La Liga M ESP 1st 2019 #> 262 La Liga M ESP 1st 2019 #> 263 La Liga M ESP 1st 2019 #> 264 La Liga M ESP 1st 2019 #> 265 La Liga M ESP 1st 2019 #> 266 La Liga M ESP 1st 2019 #> 267 La Liga M ESP 1st 2019 #> 268 La Liga M ESP 1st 2019 #> 269 La Liga M ESP 1st 2019 #> 270 La Liga M ESP 1st 2019 #> 271 La Liga M ESP 1st 2019 #> 272 La Liga M ESP 1st 2019 #> 273 La Liga M ESP 1st 2019 #> 274 La Liga M ESP 1st 2019 #> 275 La Liga M ESP 1st 2019 #> 276 La Liga M ESP 1st 2019 #> 277 La Liga M ESP 1st 2019 #> 278 La Liga M ESP 1st 2019 #> 279 La Liga M ESP 1st 2019 #> 280 La Liga M ESP 1st 2019 #> 281 La Liga M ESP 1st 2019 #> 282 La Liga M ESP 1st 2019 #> 283 La Liga M ESP 1st 2019 #> 284 La Liga M ESP 1st 2019 #> 285 La Liga M ESP 1st 2019 #> 286 La Liga M ESP 1st 2019 #> 287 La Liga M ESP 1st 2019 #> 288 La Liga M ESP 1st 2019 #> 289 La Liga M ESP 1st 2019 #> 290 La Liga M ESP 1st 2019 #> 291 La Liga M ESP 1st 2019 #> 292 La Liga M ESP 1st 2019 #> 293 La Liga M ESP 1st 2019 #> 294 La Liga M ESP 1st 2019 #> 295 La Liga M ESP 1st 2019 #> 296 La Liga M ESP 1st 2019 #> 297 La Liga M ESP 1st 2019 #> 298 La Liga M ESP 1st 2019 #> 299 La Liga M ESP 1st 2019 #> 300 La Liga M ESP 1st 2019 #> 301 La Liga M ESP 1st 2019 #> 302 La Liga M ESP 1st 2019 #> 303 La Liga M ESP 1st 2019 #> 304 La Liga M ESP 1st 2019 #> 305 La Liga M ESP 1st 2019 #> 306 La Liga M ESP 1st 2019 #> 307 La Liga M ESP 1st 2019 #> 308 La Liga M ESP 1st 2019 #> 309 La Liga M ESP 1st 2019 #> 310 La Liga M ESP 1st 2019 #> 311 La Liga M ESP 1st 2019 #> 312 La Liga M ESP 1st 2019 #> 313 La Liga M ESP 1st 2019 #> 314 La Liga M ESP 1st 2019 #> 315 La Liga M ESP 1st 2019 #> 316 La Liga M ESP 1st 2019 #> 317 La Liga M ESP 1st 2019 #> 318 La Liga M ESP 1st 2019 #> 319 La Liga M ESP 1st 2019 #> 320 La Liga M ESP 1st 2019 #> 321 La Liga M ESP 1st 2019 #> 322 La Liga M ESP 1st 2019 #> 323 La Liga M ESP 1st 2019 #> 324 La Liga M ESP 1st 2019 #> 325 La Liga M ESP 1st 2019 #> 326 La Liga M ESP 1st 2019 #> 327 La Liga M ESP 1st 2019 #> 328 La Liga M ESP 1st 2019 #> 329 La Liga M ESP 1st 2019 #> 330 La Liga M ESP 1st 2019 #> 331 La Liga M ESP 1st 2019 #> 332 La Liga M ESP 1st 2019 #> 333 La Liga M ESP 1st 2019 #> 334 La Liga M ESP 1st 2019 #> 335 La Liga M ESP 1st 2019 #> 336 La Liga M ESP 1st 2019 #> 337 La Liga M ESP 1st 2019 #> 338 La Liga M ESP 1st 2019 #> 339 La Liga M ESP 1st 2019 #> 340 La Liga M ESP 1st 2019 #> 341 La Liga M ESP 1st 2019 #> 342 La Liga M ESP 1st 2019 #> 343 La Liga M ESP 1st 2019 #> 344 La Liga M ESP 1st 2019 #> 345 La Liga M ESP 1st 2019 #> 346 La Liga M ESP 1st 2019 #> 347 La Liga M ESP 1st 2019 #> 348 La Liga M ESP 1st 2019 #> 349 La Liga M ESP 1st 2019 #> 350 La Liga M ESP 1st 2019 #> 351 La Liga M ESP 1st 2019 #> 352 La Liga M ESP 1st 2019 #> 353 La Liga M ESP 1st 2019 #> 354 La Liga M ESP 1st 2019 #> 355 La Liga M ESP 1st 2019 #> 356 La Liga M ESP 1st 2019 #> 357 La Liga M ESP 1st 2019 #> 358 La Liga M ESP 1st 2019 #> 359 La Liga M ESP 1st 2019 #> 360 La Liga M ESP 1st 2019 #> 361 La Liga M ESP 1st 2019 #> 362 La Liga M ESP 1st 2019 #> 363 La Liga M ESP 1st 2019 #> 364 La Liga M ESP 1st 2019 #> 365 La Liga M ESP 1st 2019 #> 366 La Liga M ESP 1st 2019 #> 367 La Liga M ESP 1st 2019 #> 368 La Liga M ESP 1st 2019 #> 369 La Liga M ESP 1st 2019 #> 370 La Liga M ESP 1st 2019 #> 371 La Liga M ESP 1st 2019 #> 372 La Liga M ESP 1st 2019 #> 373 La Liga M ESP 1st 2019 #> 374 La Liga M ESP 1st 2019 #> 375 La Liga M ESP 1st 2019 #> 376 La Liga M ESP 1st 2019 #> 377 La Liga M ESP 1st 2019 #> 378 La Liga M ESP 1st 2019 #> 379 La Liga M ESP 1st 2019 #> 380 La Liga M ESP 1st 2019 #> 381 La Liga M ESP 1st 2019 #> 382 La Liga M ESP 1st 2019 #> 383 La Liga M ESP 1st 2019 #> 384 La Liga M ESP 1st 2019 #> 385 La Liga M ESP 1st 2019 #> 386 La Liga M ESP 1st 2019 #> 387 La Liga M ESP 1st 2019 #> 388 La Liga M ESP 1st 2019 #> 389 La Liga M ESP 1st 2019 #> 390 La Liga M ESP 1st 2019 #> 391 La Liga M ESP 1st 2019 #> 392 La Liga M ESP 1st 2019 #> 393 La Liga M ESP 1st 2019 #> 394 La Liga M ESP 1st 2019 #> 395 La Liga M ESP 1st 2019 #> 396 La Liga M ESP 1st 2019 #> 397 La Liga M ESP 1st 2019 #> 398 La Liga M ESP 1st 2019 #> 399 La Liga M ESP 1st 2019 #> 400 La Liga M ESP 1st 2019 #> 401 La Liga M ESP 1st 2019 #> 402 La Liga M ESP 1st 2019 #> 403 La Liga M ESP 1st 2019 #> 404 La Liga M ESP 1st 2019 #> 405 La Liga M ESP 1st 2019 #> 406 La Liga M ESP 1st 2019 #> 407 La Liga M ESP 1st 2019 #> 408 La Liga M ESP 1st 2019 #> 409 La Liga M ESP 1st 2019 #> 410 La Liga M ESP 1st 2019 #> 411 La Liga M ESP 1st 2019 #> 412 La Liga M ESP 1st 2019 #> 413 La Liga M ESP 1st 2019 #> 414 La Liga M ESP 1st 2019 #> 415 La Liga M ESP 1st 2019 #> 416 La Liga M ESP 1st 2019 #> 417 La Liga M ESP 1st 2019 #> 418 La Liga M ESP 1st 2019 #> 419 La Liga M ESP 1st 2019 #> 420 La Liga M ESP 1st 2019 #> 421 La Liga M ESP 1st 2019 #> 422 La Liga M ESP 1st 2019 #> 423 La Liga M ESP 1st 2019 #> 424 La Liga M ESP 1st 2019 #> 425 La Liga M ESP 1st 2019 #> 426 La Liga M ESP 1st 2019 #> 427 La Liga M ESP 1st 2019 #> 428 La Liga M ESP 1st 2019 #> 429 La Liga M ESP 1st 2019 #> 430 La Liga M ESP 1st 2019 #> 431 La Liga M ESP 1st 2019 #> 432 La Liga M ESP 1st 2019 #> 433 La Liga M ESP 1st 2019 #> 434 La Liga M ESP 1st 2019 #> 435 La Liga M ESP 1st 2019 #> 436 La Liga M ESP 1st 2019 #> 437 La Liga M ESP 1st 2019 #> 438 La Liga M ESP 1st 2019 #> 439 La Liga M ESP 1st 2019 #> 440 La Liga M ESP 1st 2019 #> 441 La Liga M ESP 1st 2019 #> 442 La Liga M ESP 1st 2019 #> 443 La Liga M ESP 1st 2019 #> 444 La Liga M ESP 1st 2019 #> 445 La Liga M ESP 1st 2019 #> 446 La Liga M ESP 1st 2019 #> 447 La Liga M ESP 1st 2019 #> 448 La Liga M ESP 1st 2019 #> 449 La Liga M ESP 1st 2019 #> 450 La Liga M ESP 1st 2019 #> 451 La Liga M ESP 1st 2019 #> 452 La Liga M ESP 1st 2019 #> 453 La Liga M ESP 1st 2019 #> 454 La Liga M ESP 1st 2019 #> 455 La Liga M ESP 1st 2019 #> 456 La Liga M ESP 1st 2019 #> 457 La Liga M ESP 1st 2019 #> 458 La Liga M ESP 1st 2019 #> 459 La Liga M ESP 1st 2019 #> 460 La Liga M ESP 1st 2019 #> 461 La Liga M ESP 1st 2019 #> 462 La Liga M ESP 1st 2019 #> 463 La Liga M ESP 1st 2019 #> 464 La Liga M ESP 1st 2019 #> 465 La Liga M ESP 1st 2019 #> 466 La Liga M ESP 1st 2019 #> 467 La Liga M ESP 1st 2019 #> 468 La Liga M ESP 1st 2019 #> 469 La Liga M ESP 1st 2019 #> 470 La Liga M ESP 1st 2019 #> 471 La Liga M ESP 1st 2019 #> 472 La Liga M ESP 1st 2019 #> 473 La Liga M ESP 1st 2019 #> 474 La Liga M ESP 1st 2019 #> 475 La Liga M ESP 1st 2019 #> 476 La Liga M ESP 1st 2019 #> 477 La Liga M ESP 1st 2019 #> 478 La Liga M ESP 1st 2019 #> 479 La Liga M ESP 1st 2019 #> 480 La Liga M ESP 1st 2019 #> 481 La Liga M ESP 1st 2019 #> 482 La Liga M ESP 1st 2019 #> 483 La Liga M ESP 1st 2019 #> 484 La Liga M ESP 1st 2019 #> 485 La Liga M ESP 1st 2019 #> 486 La Liga M ESP 1st 2019 #> 487 La Liga M ESP 1st 2019 #> 488 La Liga M ESP 1st 2019 #> 489 La Liga M ESP 1st 2019 #> 490 La Liga M ESP 1st 2019 #> 491 La Liga M ESP 1st 2019 #> 492 La Liga M ESP 1st 2019 #> 493 La Liga M ESP 1st 2019 #> 494 La Liga M ESP 1st 2019 #> 495 La Liga M ESP 1st 2019 #> 496 La Liga M ESP 1st 2019 #> 497 La Liga M ESP 1st 2019 #> 498 La Liga M ESP 1st 2019 #> 499 La Liga M ESP 1st 2019 #> 500 La Liga M ESP 1st 2019 #> 501 La Liga M ESP 1st 2019 #> 502 La Liga M ESP 1st 2019 #> 503 La Liga M ESP 1st 2019 #> 504 La Liga M ESP 1st 2019 #> 505 La Liga M ESP 1st 2019 #> 506 La Liga M ESP 1st 2019 #> 507 La Liga M ESP 1st 2019 #> 508 La Liga M ESP 1st 2019 #> 509 La Liga M ESP 1st 2019 #> 510 La Liga M ESP 1st 2019 #> 511 La Liga M ESP 1st 2019 #> 512 La Liga M ESP 1st 2019 #> 513 La Liga M ESP 1st 2019 #> 514 La Liga M ESP 1st 2019 #> 515 La Liga M ESP 1st 2019 #> 516 La Liga M ESP 1st 2019 #> 517 La Liga M ESP 1st 2019 #> 518 La Liga M ESP 1st 2019 #> 519 La Liga M ESP 1st 2019 #> 520 La Liga M ESP 1st 2019 #> 521 La Liga M ESP 1st 2019 #> 522 La Liga M ESP 1st 2019 #> 523 La Liga M ESP 1st 2019 #> 524 La Liga M ESP 1st 2019 #> 525 La Liga M ESP 1st 2019 #> 526 La Liga M ESP 1st 2019 #> 527 La Liga M ESP 1st 2019 #> 528 La Liga M ESP 1st 2019 #> 529 La Liga M ESP 1st 2019 #> 530 La Liga M ESP 1st 2019 #> 531 La Liga M ESP 1st 2019 #> 532 La Liga M ESP 1st 2019 #> 533 La Liga M ESP 1st 2019 #> 534 La Liga M ESP 1st 2019 #> 535 La Liga M ESP 1st 2019 #> 536 La Liga M ESP 1st 2019 #> 537 La Liga M ESP 1st 2019 #> 538 La Liga M ESP 1st 2019 #> 539 La Liga M ESP 1st 2019 #> 540 La Liga M ESP 1st 2019 #> 541 La Liga M ESP 1st 2019 #> 542 La Liga M ESP 1st 2019 #> 543 La Liga M ESP 1st 2019 #> 544 La Liga M ESP 1st 2019 #> 545 La Liga M ESP 1st 2019 #> 546 La Liga M ESP 1st 2019 #> 547 La Liga M ESP 1st 2019 #> 548 La Liga M ESP 1st 2019 #> 549 La Liga M ESP 1st 2019 #> 550 La Liga M ESP 1st 2019 #> 551 La Liga M ESP 1st 2019 #> 552 La Liga M ESP 1st 2019 #> 553 La Liga M ESP 1st 2019 #> 554 La Liga M ESP 1st 2019 #> 555 La Liga M ESP 1st 2019 #> 556 La Liga M ESP 1st 2019 #> 557 La Liga M ESP 1st 2019 #> 558 La Liga M ESP 1st 2019 #> 559 La Liga M ESP 1st 2019 #> 560 La Liga M ESP 1st 2019 #> 561 La Liga M ESP 1st 2019 #> 562 La Liga M ESP 1st 2019 #> 563 La Liga M ESP 1st 2019 #> 564 La Liga M ESP 1st 2019 #> 565 La Liga M ESP 1st 2019 #> 566 La Liga M ESP 1st 2019 #> 567 La Liga M ESP 1st 2019 #> 568 La Liga M ESP 1st 2019 #> 569 La Liga M ESP 1st 2019 #> 570 La Liga M ESP 1st 2019 #> 571 La Liga M ESP 1st 2019 #> 572 La Liga M ESP 1st 2019 #> 573 La Liga M ESP 1st 2019 #> 574 La Liga M ESP 1st 2019 #> 575 La Liga M ESP 1st 2019 #> 576 La Liga M ESP 1st 2019 #> 577 La Liga M ESP 1st 2019 #> 578 La Liga M ESP 1st 2019 #> 579 La Liga M ESP 1st 2019 #> 580 La Liga M ESP 1st 2019 #> 581 La Liga M ESP 1st 2019 #> 582 La Liga M ESP 1st 2019 #> 583 La Liga M ESP 1st 2019 #> 584 La Liga M ESP 1st 2019 #> 585 La Liga M ESP 1st 2019 #> 586 La Liga M ESP 1st 2019 #> 587 La Liga M ESP 1st 2019 #> 588 La Liga M ESP 1st 2019 #> 589 La Liga M ESP 1st 2019 #> 590 La Liga M ESP 1st 2019 #> 591 La Liga M ESP 1st 2019 #> 592 La Liga M ESP 1st 2019 #> 593 La Liga M ESP 1st 2019 #> 594 La Liga M ESP 1st 2019 #> 595 La Liga M ESP 1st 2019 #> 596 La Liga M ESP 1st 2019 #> 597 La Liga M ESP 1st 2019 #> 598 La Liga M ESP 1st 2019 #> 599 La Liga M ESP 1st 2019 #> 600 La Liga M ESP 1st 2019 #> 601 La Liga M ESP 1st 2019 #> 602 La Liga M ESP 1st 2019 #> 603 La Liga M ESP 1st 2019 #> 604 La Liga M ESP 1st 2019 #> 605 La Liga M ESP 1st 2019 #> 606 La Liga M ESP 1st 2019 #> 607 La Liga M ESP 1st 2019 #> 608 La Liga M ESP 1st 2019 #> 609 La Liga M ESP 1st 2019 #> 610 La Liga M ESP 1st 2019 #> 611 La Liga M ESP 1st 2019 #> 612 La Liga M ESP 1st 2019 #> 613 La Liga M ESP 1st 2019 #> 614 La Liga M ESP 1st 2019 #> 615 La Liga M ESP 1st 2019 #> 616 La Liga M ESP 1st 2019 #> 617 La Liga M ESP 1st 2019 #> 618 La Liga M ESP 1st 2019 #> 619 La Liga M ESP 1st 2019 #> 620 La Liga M ESP 1st 2019 #> 621 La Liga M ESP 1st 2019 #> 622 La Liga M ESP 1st 2019 #> 623 La Liga M ESP 1st 2019 #> 624 La Liga M ESP 1st 2019 #> 625 La Liga M ESP 1st 2019 #> 626 La Liga M ESP 1st 2019 #> 627 La Liga M ESP 1st 2019 #> 628 La Liga M ESP 1st 2019 #> 629 La Liga M ESP 1st 2019 #> 630 La Liga M ESP 1st 2019 #> 631 La Liga M ESP 1st 2019 #> 632 La Liga M ESP 1st 2019 #> 633 La Liga M ESP 1st 2019 #> 634 La Liga M ESP 1st 2019 #> 635 La Liga M ESP 1st 2019 #> 636 La Liga M ESP 1st 2019 #> 637 La Liga M ESP 1st 2019 #> 638 La Liga M ESP 1st 2019 #> 639 La Liga M ESP 1st 2019 #> 640 La Liga M ESP 1st 2019 #> 641 La Liga M ESP 1st 2019 #> 642 La Liga M ESP 1st 2019 #> 643 La Liga M ESP 1st 2019 #> 644 La Liga M ESP 1st 2019 #> 645 La Liga M ESP 1st 2019 #> 646 La Liga M ESP 1st 2019 #> 647 La Liga M ESP 1st 2019 #> 648 La Liga M ESP 1st 2019 #> 649 La Liga M ESP 1st 2019 #> 650 La Liga M ESP 1st 2019 #> 651 La Liga M ESP 1st 2019 #> 652 La Liga M ESP 1st 2019 #> 653 La Liga M ESP 1st 2019 #> 654 La Liga M ESP 1st 2019 #> 655 La Liga M ESP 1st 2019 #> 656 La Liga M ESP 1st 2019 #> 657 La Liga M ESP 1st 2019 #> 658 La Liga M ESP 1st 2019 #> 659 La Liga M ESP 1st 2019 #> 660 La Liga M ESP 1st 2019 #> 661 La Liga M ESP 1st 2019 #> 662 La Liga M ESP 1st 2019 #> 663 La Liga M ESP 1st 2019 #> 664 La Liga M ESP 1st 2019 #> 665 La Liga M ESP 1st 2019 #> 666 La Liga M ESP 1st 2019 #> 667 La Liga M ESP 1st 2019 #> 668 La Liga M ESP 1st 2019 #> 669 La Liga M ESP 1st 2019 #> 670 La Liga M ESP 1st 2019 #> 671 La Liga M ESP 1st 2019 #> 672 La Liga M ESP 1st 2019 #> 673 La Liga M ESP 1st 2019 #> 674 La Liga M ESP 1st 2019 #> 675 La Liga M ESP 1st 2019 #> 676 La Liga M ESP 1st 2019 #> 677 La Liga M ESP 1st 2019 #> 678 La Liga M ESP 1st 2019 #> 679 La Liga M ESP 1st 2019 #> 680 La Liga M ESP 1st 2019 #> 681 La Liga M ESP 1st 2019 #> 682 La Liga M ESP 1st 2019 #> 683 La Liga M ESP 1st 2019 #> 684 La Liga M ESP 1st 2019 #> 685 La Liga M ESP 1st 2019 #> 686 La Liga M ESP 1st 2019 #> 687 La Liga M ESP 1st 2019 #> 688 La Liga M ESP 1st 2019 #> 689 La Liga M ESP 1st 2019 #> 690 La Liga M ESP 1st 2019 #> 691 La Liga M ESP 1st 2019 #> 692 La Liga M ESP 1st 2019 #> 693 La Liga M ESP 1st 2019 #> 694 La Liga M ESP 1st 2019 #> 695 La Liga M ESP 1st 2019 #> 696 La Liga M ESP 1st 2019 #> 697 La Liga M ESP 1st 2019 #> 698 La Liga M ESP 1st 2019 #> 699 La Liga M ESP 1st 2019 #> 700 La Liga M ESP 1st 2019 #> 701 La Liga M ESP 1st 2019 #> 702 La Liga M ESP 1st 2019 #> 703 La Liga M ESP 1st 2019 #> 704 La Liga M ESP 1st 2019 #> 705 La Liga M ESP 1st 2019 #> 706 La Liga M ESP 1st 2019 #> 707 La Liga M ESP 1st 2019 #> 708 La Liga M ESP 1st 2019 #> 709 La Liga M ESP 1st 2019 #> 710 La Liga M ESP 1st 2019 #> 711 La Liga M ESP 1st 2019 #> 712 La Liga M ESP 1st 2019 #> 713 La Liga M ESP 1st 2019 #> 714 La Liga M ESP 1st 2019 #> 715 La Liga M ESP 1st 2019 #> 716 La Liga M ESP 1st 2019 #> 717 La Liga M ESP 1st 2019 #> 718 La Liga M ESP 1st 2019 #> 719 La Liga M ESP 1st 2019 #> 720 La Liga M ESP 1st 2019 #> 721 La Liga M ESP 1st 2019 #> 722 La Liga M ESP 1st 2019 #> 723 La Liga M ESP 1st 2019 #> 724 La Liga M ESP 1st 2019 #> 725 La Liga M ESP 1st 2019 #> 726 La Liga M ESP 1st 2019 #> 727 La Liga M ESP 1st 2019 #> 728 La Liga M ESP 1st 2019 #> 729 La Liga M ESP 1st 2019 #> 730 La Liga M ESP 1st 2019 #> 731 La Liga M ESP 1st 2019 #> 732 La Liga M ESP 1st 2019 #> 733 La Liga M ESP 1st 2019 #> 734 La Liga M ESP 1st 2019 #> 735 La Liga M ESP 1st 2019 #> 736 La Liga M ESP 1st 2019 #> 737 La Liga M ESP 1st 2019 #> 738 La Liga M ESP 1st 2019 #> 739 La Liga M ESP 1st 2019 #> 740 La Liga M ESP 1st 2019 #> 741 La Liga M ESP 1st 2019 #> 742 La Liga M ESP 1st 2019 #> 743 La Liga M ESP 1st 2019 #> 744 La Liga M ESP 1st 2019 #> 745 La Liga M ESP 1st 2019 #> 746 La Liga M ESP 1st 2019 #> 747 La Liga M ESP 1st 2019 #> 748 La Liga M ESP 1st 2019 #> 749 La Liga M ESP 1st 2019 #> 750 La Liga M ESP 1st 2019 #> 751 La Liga M ESP 1st 2019 #> 752 La Liga M ESP 1st 2019 #> 753 La Liga M ESP 1st 2019 #> 754 La Liga M ESP 1st 2019 #> 755 La Liga M ESP 1st 2019 #> 756 La Liga M ESP 1st 2019 #> 757 La Liga M ESP 1st 2019 #> 758 La Liga M ESP 1st 2019 #> 759 La Liga M ESP 1st 2019 #> 760 La Liga M ESP 1st 2019 #> 761 La Liga M ESP 1st 2019 #> 762 La Liga M ESP 1st 2019 #> 763 La Liga M ESP 1st 2019 #> 764 La Liga M ESP 1st 2019 #> 765 La Liga M ESP 1st 2019 #> 766 La Liga M ESP 1st 2019 #> 767 La Liga M ESP 1st 2019 #> 768 La Liga M ESP 1st 2019 #> 769 La Liga M ESP 1st 2019 #> 770 La Liga M ESP 1st 2019 #> 771 La Liga M ESP 1st 2019 #> 772 La Liga M ESP 1st 2019 #> 773 La Liga M ESP 1st 2019 #> 774 La Liga M ESP 1st 2019 #> 775 La Liga M ESP 1st 2019 #> 776 La Liga M ESP 1st 2019 #> 777 La Liga M ESP 1st 2019 #> 778 La Liga M ESP 1st 2019 #> 779 La Liga M ESP 1st 2019 #> 780 La Liga M ESP 1st 2019 #> 781 La Liga M ESP 1st 2019 #> 782 La Liga M ESP 1st 2019 #> 783 La Liga M ESP 1st 2019 #> 784 La Liga M ESP 1st 2019 #> 785 La Liga M ESP 1st 2019 #> 786 La Liga M ESP 1st 2019 #> 787 La Liga M ESP 1st 2019 #> 788 La Liga M ESP 1st 2019 #> 789 La Liga M ESP 1st 2019 #> 790 La Liga M ESP 1st 2019 #> 791 La Liga M ESP 1st 2019 #> 792 La Liga M ESP 1st 2019 #> 793 La Liga M ESP 1st 2019 #> 794 La Liga M ESP 1st 2019 #> 795 La Liga M ESP 1st 2019 #> 796 La Liga M ESP 1st 2019 #> 797 La Liga M ESP 1st 2019 #> 798 La Liga M ESP 1st 2019 #> 799 La Liga M ESP 1st 2019 #> 800 La Liga M ESP 1st 2019 #> 801 La Liga M ESP 1st 2019 #> 802 La Liga M ESP 1st 2019 #> 803 La Liga M ESP 1st 2019 #> 804 La Liga M ESP 1st 2019 #> 805 La Liga M ESP 1st 2019 #> 806 La Liga M ESP 1st 2019 #> 807 La Liga M ESP 1st 2019 #> 808 La Liga M ESP 1st 2019 #> 809 La Liga M ESP 1st 2019 #> 810 La Liga M ESP 1st 2019 #> 811 La Liga M ESP 1st 2019 #> 812 La Liga M ESP 1st 2019 #> 813 La Liga M ESP 1st 2019 #> 814 La Liga M ESP 1st 2019 #> 815 La Liga M ESP 1st 2019 #> 816 La Liga M ESP 1st 2019 #> 817 La Liga M ESP 1st 2019 #> 818 La Liga M ESP 1st 2019 #> 819 La Liga M ESP 1st 2019 #> 820 La Liga M ESP 1st 2019 #> 821 La Liga M ESP 1st 2019 #> 822 La Liga M ESP 1st 2019 #> 823 La Liga M ESP 1st 2019 #> 824 La Liga M ESP 1st 2019 #> 825 La Liga M ESP 1st 2019 #> 826 La Liga M ESP 1st 2019 #> 827 La Liga M ESP 1st 2019 #> 828 La Liga M ESP 1st 2019 #> 829 La Liga M ESP 1st 2019 #> 830 La Liga M ESP 1st 2019 #> 831 La Liga M ESP 1st 2019 #> 832 La Liga M ESP 1st 2019 #> 833 La Liga M ESP 1st 2019 #> 834 La Liga M ESP 1st 2019 #> 835 La Liga M ESP 1st 2019 #> 836 La Liga M ESP 1st 2019 #> 837 La Liga M ESP 1st 2019 #> 838 La Liga M ESP 1st 2019 #> 839 La Liga M ESP 1st 2019 #> 840 La Liga M ESP 1st 2019 #> 841 La Liga M ESP 1st 2019 #> 842 La Liga M ESP 1st 2019 #> 843 La Liga M ESP 1st 2019 #> 844 La Liga M ESP 1st 2019 #> 845 La Liga M ESP 1st 2019 #> 846 La Liga M ESP 1st 2019 #> 847 La Liga M ESP 1st 2019 #> 848 La Liga M ESP 1st 2019 #> 849 La Liga M ESP 1st 2019 #> 850 La Liga M ESP 1st 2019 #> 851 La Liga M ESP 1st 2019 #> 852 La Liga M ESP 1st 2019 #> 853 La Liga M ESP 1st 2019 #> 854 La Liga M ESP 1st 2019 #> 855 La Liga M ESP 1st 2019 #> 856 La Liga M ESP 1st 2019 #> 857 La Liga M ESP 1st 2019 #> 858 La Liga M ESP 1st 2019 #> 859 La Liga M ESP 1st 2019 #> 860 La Liga M ESP 1st 2019 #> 861 La Liga M ESP 1st 2019 #> 862 La Liga M ESP 1st 2019 #> 863 La Liga M ESP 1st 2019 #> 864 La Liga M ESP 1st 2019 #> 865 La Liga M ESP 1st 2019 #> 866 La Liga M ESP 1st 2019 #> 867 La Liga M ESP 1st 2019 #> 868 La Liga M ESP 1st 2019 #> 869 La Liga M ESP 1st 2019 #> 870 La Liga M ESP 1st 2019 #> 871 La Liga M ESP 1st 2019 #> 872 La Liga M ESP 1st 2019 #> 873 La Liga M ESP 1st 2019 #> 874 La Liga M ESP 1st 2019 #> 875 La Liga M ESP 1st 2019 #> 876 La Liga M ESP 1st 2019 #> 877 La Liga M ESP 1st 2019 #> 878 La Liga M ESP 1st 2019 #> 879 La Liga M ESP 1st 2019 #> 880 La Liga M ESP 1st 2019 #> 881 La Liga M ESP 1st 2019 #> 882 La Liga M ESP 1st 2019 #> 883 La Liga M ESP 1st 2019 #> 884 La Liga M ESP 1st 2019 #> 885 La Liga M ESP 1st 2019 #> 886 La Liga M ESP 1st 2019 #> 887 La Liga M ESP 1st 2019 #> 888 La Liga M ESP 1st 2019 #> 889 La Liga M ESP 1st 2019 #> 890 La Liga M ESP 1st 2019 #> 891 La Liga M ESP 1st 2019 #> 892 La Liga M ESP 1st 2019 #> 893 La Liga M ESP 1st 2019 #> 894 La Liga M ESP 1st 2019 #> 895 La Liga M ESP 1st 2019 #> 896 La Liga M ESP 1st 2019 #> 897 La Liga M ESP 1st 2019 #> 898 La Liga M ESP 1st 2019 #> 899 La Liga M ESP 1st 2019 #> 900 La Liga M ESP 1st 2019 #> 901 La Liga M ESP 1st 2019 #> 902 La Liga M ESP 1st 2019 #> 903 La Liga M ESP 1st 2019 #> 904 La Liga M ESP 1st 2019 #> 905 La Liga M ESP 1st 2019 #> 906 La Liga M ESP 1st 2019 #> 907 La Liga M ESP 1st 2019 #> 908 La Liga M ESP 1st 2019 #> 909 La Liga M ESP 1st 2019 #> 910 La Liga M ESP 1st 2019 #> 911 La Liga M ESP 1st 2019 #> 912 La Liga M ESP 1st 2019 #> 913 La Liga M ESP 1st 2019 #> 914 La Liga M ESP 1st 2019 #> 915 La Liga M ESP 1st 2019 #> 916 La Liga M ESP 1st 2019 #> 917 La Liga M ESP 1st 2019 #> 918 La Liga M ESP 1st 2019 #> 919 La Liga M ESP 1st 2019 #> 920 La Liga M ESP 1st 2019 #> 921 La Liga M ESP 1st 2019 #> 922 La Liga M ESP 1st 2019 #> 923 La Liga M ESP 1st 2019 #> 924 La Liga M ESP 1st 2019 #> 925 La Liga M ESP 1st 2019 #> 926 La Liga M ESP 1st 2019 #> 927 La Liga M ESP 1st 2019 #> 928 La Liga M ESP 1st 2019 #> 929 La Liga M ESP 1st 2019 #> 930 La Liga M ESP 1st 2019 #> 931 La Liga M ESP 1st 2019 #> 932 La Liga M ESP 1st 2019 #> 933 La Liga M ESP 1st 2019 #> 934 La Liga M ESP 1st 2019 #> 935 La Liga M ESP 1st 2019 #> 936 La Liga M ESP 1st 2019 #> 937 La Liga M ESP 1st 2019 #> 938 La Liga M ESP 1st 2019 #> 939 La Liga M ESP 1st 2019 #> 940 La Liga M ESP 1st 2019 #> 941 La Liga M ESP 1st 2019 #> 942 La Liga M ESP 1st 2019 #> 943 La Liga M ESP 1st 2019 #> 944 La Liga M ESP 1st 2019 #> 945 La Liga M ESP 1st 2019 #> 946 La Liga M ESP 1st 2019 #> 947 La Liga M ESP 1st 2019 #> 948 La Liga M ESP 1st 2019 #> 949 La Liga M ESP 1st 2019 #> 950 La Liga M ESP 1st 2019 #> 951 La Liga M ESP 1st 2019 #> 952 La Liga M ESP 1st 2019 #> 953 La Liga M ESP 1st 2019 #> 954 La Liga M ESP 1st 2019 #> 955 La Liga M ESP 1st 2019 #> 956 La Liga M ESP 1st 2019 #> 957 La Liga M ESP 1st 2019 #> 958 La Liga M ESP 1st 2019 #> 959 La Liga M ESP 1st 2019 #> 960 La Liga M ESP 1st 2019 #> 961 La Liga M ESP 1st 2019 #> 962 La Liga M ESP 1st 2019 #> 963 La Liga M ESP 1st 2019 #> 964 La Liga M ESP 1st 2019 #> 965 La Liga M ESP 1st 2019 #> 966 La Liga M ESP 1st 2019 #> 967 La Liga M ESP 1st 2019 #> 968 La Liga M ESP 1st 2019 #> 969 La Liga M ESP 1st 2019 #> 970 La Liga M ESP 1st 2019 #> 971 La Liga M ESP 1st 2019 #> 972 La Liga M ESP 1st 2019 #> 973 La Liga M ESP 1st 2019 #> 974 La Liga M ESP 1st 2019 #> 975 La Liga M ESP 1st 2019 #> 976 La Liga M ESP 1st 2019 #> 977 La Liga M ESP 1st 2019 #> 978 La Liga M ESP 1st 2019 #> 979 La Liga M ESP 1st 2019 #> 980 La Liga M ESP 1st 2019 #> 981 La Liga M ESP 1st 2019 #> 982 La Liga M ESP 1st 2019 #> 983 La Liga M ESP 1st 2019 #> 984 La Liga M ESP 1st 2019 #> 985 La Liga M ESP 1st 2019 #> 986 La Liga M ESP 1st 2019 #> 987 La Liga M ESP 1st 2019 #> 988 La Liga M ESP 1st 2019 #> 989 La Liga M ESP 1st 2019 #> 990 La Liga M ESP 1st 2019 #> 991 La Liga M ESP 1st 2019 #> 992 La Liga M ESP 1st 2019 #> 993 La Liga M ESP 1st 2019 #> 994 La Liga M ESP 1st 2019 #> 995 La Liga M ESP 1st 2019 #> 996 La Liga M ESP 1st 2019 #> 997 La Liga M ESP 1st 2019 #> 998 La Liga M ESP 1st 2019 #> 999 La Liga M ESP 1st 2019 #> 1000 La Liga M ESP 1st 2019 #> 1001 La Liga M ESP 1st 2019 #> 1002 La Liga M ESP 1st 2019 #> 1003 La Liga M ESP 1st 2019 #> 1004 La Liga M ESP 1st 2019 #> 1005 La Liga M ESP 1st 2019 #> 1006 La Liga M ESP 1st 2019 #> 1007 La Liga M ESP 1st 2019 #> 1008 La Liga M ESP 1st 2019 #> 1009 La Liga M ESP 1st 2019 #> 1010 La Liga M ESP 1st 2019 #> 1011 La Liga M ESP 1st 2019 #> 1012 La Liga M ESP 1st 2019 #> 1013 La Liga M ESP 1st 2019 #> 1014 La Liga M ESP 1st 2019 #> 1015 La Liga M ESP 1st 2019 #> 1016 La Liga M ESP 1st 2019 #> 1017 La Liga M ESP 1st 2019 #> 1018 La Liga M ESP 1st 2019 #> 1019 La Liga M ESP 1st 2019 #> 1020 La Liga M ESP 1st 2019 #> 1021 La Liga M ESP 1st 2019 #> 1022 La Liga M ESP 1st 2019 #> 1023 La Liga M ESP 1st 2019 #> 1024 La Liga M ESP 1st 2019 #> 1025 La Liga M ESP 1st 2019 #> 1026 La Liga M ESP 1st 2019 #> 1027 La Liga M ESP 1st 2019 #> 1028 La Liga M ESP 1st 2019 #> 1029 La Liga M ESP 1st 2019 #> 1030 La Liga M ESP 1st 2019 #> 1031 La Liga M ESP 1st 2019 #> 1032 La Liga M ESP 1st 2019 #> 1033 La Liga M ESP 1st 2019 #> 1034 La Liga M ESP 1st 2019 #> 1035 La Liga M ESP 1st 2019 #> 1036 La Liga M ESP 1st 2019 #> 1037 La Liga M ESP 1st 2019 #> 1038 La Liga M ESP 1st 2019 #> 1039 La Liga M ESP 1st 2019 #> 1040 La Liga M ESP 1st 2019 #> 1041 La Liga M ESP 1st 2019 #> 1042 La Liga M ESP 1st 2019 #> 1043 La Liga M ESP 1st 2019 #> 1044 La Liga M ESP 1st 2019 #> 1045 La Liga M ESP 1st 2019 #> 1046 La Liga M ESP 1st 2019 #> 1047 La Liga M ESP 1st 2019 #> 1048 La Liga M ESP 1st 2019 #> 1049 La Liga M ESP 1st 2019 #> 1050 La Liga M ESP 1st 2019 #> 1051 La Liga M ESP 1st 2019 #> 1052 La Liga M ESP 1st 2019 #> 1053 La Liga M ESP 1st 2019 #> 1054 La Liga M ESP 1st 2019 #> 1055 La Liga M ESP 1st 2019 #> 1056 La Liga M ESP 1st 2019 #> 1057 La Liga M ESP 1st 2019 #> 1058 La Liga M ESP 1st 2019 #> 1059 La Liga M ESP 1st 2019 #> 1060 La Liga M ESP 1st 2019 #> 1061 La Liga M ESP 1st 2019 #> 1062 La Liga M ESP 1st 2019 #> 1063 La Liga M ESP 1st 2019 #> 1064 La Liga M ESP 1st 2019 #> 1065 La Liga M ESP 1st 2019 #> 1066 La Liga M ESP 1st 2019 #> 1067 La Liga M ESP 1st 2019 #> 1068 La Liga M ESP 1st 2019 #> 1069 La Liga M ESP 1st 2019 #> 1070 La Liga M ESP 1st 2019 #> 1071 La Liga M ESP 1st 2019 #> 1072 La Liga M ESP 1st 2019 #> 1073 La Liga M ESP 1st 2019 #> 1074 La Liga M ESP 1st 2019 #> 1075 La Liga M ESP 1st 2019 #> 1076 La Liga M ESP 1st 2019 #> 1077 La Liga M ESP 1st 2019 #> 1078 La Liga M ESP 1st 2019 #> 1079 La Liga M ESP 1st 2019 #> 1080 La Liga M ESP 1st 2019 #> 1081 La Liga M ESP 1st 2019 #> 1082 La Liga M ESP 1st 2019 #> 1083 La Liga M ESP 1st 2019 #> 1084 La Liga M ESP 1st 2019 #> 1085 La Liga M ESP 1st 2019 #> 1086 La Liga M ESP 1st 2019 #> 1087 La Liga M ESP 1st 2019 #> 1088 La Liga M ESP 1st 2019 #> 1089 La Liga M ESP 1st 2019 #> 1090 La Liga M ESP 1st 2019 #> 1091 La Liga M ESP 1st 2019 #> 1092 La Liga M ESP 1st 2019 #> 1093 La Liga M ESP 1st 2019 #> 1094 La Liga M ESP 1st 2019 #> 1095 La Liga M ESP 1st 2019 #> 1096 La Liga M ESP 1st 2019 #> 1097 La Liga M ESP 1st 2019 #> 1098 La Liga M ESP 1st 2019 #> 1099 La Liga M ESP 1st 2019 #> 1100 La Liga M ESP 1st 2019 #> 1101 La Liga M ESP 1st 2019 #> 1102 La Liga M ESP 1st 2019 #> 1103 La Liga M ESP 1st 2019 #> 1104 La Liga M ESP 1st 2019 #> 1105 La Liga M ESP 1st 2019 #> 1106 La Liga M ESP 1st 2019 #> 1107 La Liga M ESP 1st 2019 #> 1108 La Liga M ESP 1st 2019 #> 1109 La Liga M ESP 1st 2019 #> 1110 La Liga M ESP 1st 2019 #> 1111 La Liga M ESP 1st 2019 #> 1112 La Liga M ESP 1st 2019 #> 1113 La Liga M ESP 1st 2019 #> 1114 La Liga M ESP 1st 2019 #> 1115 La Liga M ESP 1st 2019 #> 1116 La Liga M ESP 1st 2019 #> 1117 La Liga M ESP 1st 2019 #> 1118 La Liga M ESP 1st 2019 #> 1119 La Liga M ESP 1st 2019 #> 1120 La Liga M ESP 1st 2019 #> 1121 La Liga M ESP 1st 2019 #> 1122 La Liga M ESP 1st 2019 #> 1123 La Liga M ESP 1st 2019 #> 1124 La Liga M ESP 1st 2019 #> 1125 La Liga M ESP 1st 2019 #> 1126 La Liga M ESP 1st 2019 #> 1127 La Liga M ESP 1st 2019 #> 1128 La Liga M ESP 1st 2019 #> 1129 La Liga M ESP 1st 2019 #> 1130 La Liga M ESP 1st 2019 #> 1131 La Liga M ESP 1st 2019 #> 1132 La Liga M ESP 1st 2019 #> 1133 La Liga M ESP 1st 2019 #> 1134 La Liga M ESP 1st 2019 #> 1135 La Liga M ESP 1st 2019 #> 1136 La Liga M ESP 1st 2019 #> 1137 La Liga M ESP 1st 2019 #> 1138 La Liga M ESP 1st 2019 #> 1139 La Liga M ESP 1st 2019 #> 1140 La Liga M ESP 1st 2019 #> 1141 La Liga M ESP 1st 2019 #> 1142 La Liga M ESP 1st 2019 #> 1143 La Liga M ESP 1st 2019 #> 1144 La Liga M ESP 1st 2019 #> 1145 La Liga M ESP 1st 2019 #> 1146 La Liga M ESP 1st 2019 #> 1147 La Liga M ESP 1st 2019 #> 1148 La Liga M ESP 1st 2019 #> 1149 La Liga M ESP 1st 2019 #> 1150 La Liga M ESP 1st 2019 #> 1151 La Liga M ESP 1st 2019 #> 1152 La Liga M ESP 1st 2019 #> 1153 La Liga M ESP 1st 2019 #> 1154 La Liga M ESP 1st 2019 #> 1155 La Liga M ESP 1st 2019 #> 1156 La Liga M ESP 1st 2019 #> 1157 La Liga M ESP 1st 2019 #> 1158 La Liga M ESP 1st 2019 #> 1159 La Liga M ESP 1st 2019 #> 1160 La Liga M ESP 1st 2019 #> 1161 La Liga M ESP 1st 2019 #> 1162 La Liga M ESP 1st 2019 #> 1163 La Liga M ESP 1st 2019 #> 1164 La Liga M ESP 1st 2019 #> 1165 La Liga M ESP 1st 2019 #> 1166 La Liga M ESP 1st 2019 #> 1167 La Liga M ESP 1st 2019 #> 1168 La Liga M ESP 1st 2019 #> 1169 La Liga M ESP 1st 2019 #> 1170 La Liga M ESP 1st 2019 #> 1171 La Liga M ESP 1st 2019 #> 1172 La Liga M ESP 1st 2019 #> 1173 La Liga M ESP 1st 2019 #> 1174 La Liga M ESP 1st 2019 #> 1175 La Liga M ESP 1st 2019 #> 1176 La Liga M ESP 1st 2019 #> 1177 La Liga M ESP 1st 2019 #> 1178 La Liga M ESP 1st 2019 #> 1179 La Liga M ESP 1st 2019 #> 1180 La Liga M ESP 1st 2019 #> 1181 La Liga M ESP 1st 2019 #> 1182 La Liga M ESP 1st 2019 #> 1183 La Liga M ESP 1st 2019 #> 1184 La Liga M ESP 1st 2019 #> 1185 La Liga M ESP 1st 2019 #> 1186 La Liga M ESP 1st 2019 #> 1187 La Liga M ESP 1st 2019 #> 1188 La Liga M ESP 1st 2019 #> 1189 La Liga M ESP 1st 2019 #> 1190 La Liga M ESP 1st 2019 #> 1191 La Liga M ESP 1st 2019 #> 1192 La Liga M ESP 1st 2019 #> 1193 La Liga M ESP 1st 2019 #> 1194 La Liga M ESP 1st 2019 #> 1195 La Liga M ESP 1st 2019 #> 1196 La Liga M ESP 1st 2019 #> 1197 La Liga M ESP 1st 2019 #> 1198 La Liga M ESP 1st 2019 #> 1199 La Liga M ESP 1st 2019 #> 1200 La Liga M ESP 1st 2019 #> 1201 La Liga M ESP 1st 2019 #> 1202 La Liga M ESP 1st 2019 #> 1203 La Liga M ESP 1st 2019 #> 1204 La Liga M ESP 1st 2019 #> 1205 La Liga M ESP 1st 2019 #> 1206 La Liga M ESP 1st 2019 #> 1207 La Liga M ESP 1st 2019 #> 1208 La Liga M ESP 1st 2019 #> 1209 La Liga M ESP 1st 2019 #> 1210 La Liga M ESP 1st 2019 #> 1211 La Liga M ESP 1st 2019 #> 1212 La Liga M ESP 1st 2019 #> 1213 La Liga M ESP 1st 2019 #> 1214 La Liga M ESP 1st 2019 #> 1215 La Liga M ESP 1st 2019 #> 1216 La Liga M ESP 1st 2019 #> 1217 La Liga M ESP 1st 2019 #> 1218 La Liga M ESP 1st 2019 #> 1219 La Liga M ESP 1st 2019 #> 1220 La Liga M ESP 1st 2019 #> 1221 La Liga M ESP 1st 2019 #> 1222 La Liga M ESP 1st 2019 #> 1223 La Liga M ESP 1st 2019 #> 1224 La Liga M ESP 1st 2019 #> 1225 La Liga M ESP 1st 2019 #> 1226 La Liga M ESP 1st 2019 #> 1227 La Liga M ESP 1st 2019 #> 1228 La Liga M ESP 1st 2019 #> 1229 La Liga M ESP 1st 2019 #> 1230 La Liga M ESP 1st 2019 #> 1231 La Liga M ESP 1st 2019 #> 1232 La Liga M ESP 1st 2019 #> 1233 La Liga M ESP 1st 2019 #> 1234 La Liga M ESP 1st 2019 #> 1235 La Liga M ESP 1st 2019 #> 1236 La Liga M ESP 1st 2019 #> 1237 La Liga M ESP 1st 2019 #> 1238 La Liga M ESP 1st 2019 #> 1239 La Liga M ESP 1st 2019 #> 1240 La Liga M ESP 1st 2019 #> 1241 La Liga M ESP 1st 2019 #> 1242 La Liga M ESP 1st 2019 #> 1243 La Liga M ESP 1st 2019 #> 1244 La Liga M ESP 1st 2019 #> 1245 La Liga M ESP 1st 2019 #> 1246 La Liga M ESP 1st 2019 #> 1247 La Liga M ESP 1st 2019 #> 1248 La Liga M ESP 1st 2019 #> 1249 La Liga M ESP 1st 2019 #> 1250 La Liga M ESP 1st 2019 #> 1251 La Liga M ESP 1st 2019 #> 1252 La Liga M ESP 1st 2019 #> 1253 La Liga M ESP 1st 2019 #> 1254 La Liga M ESP 1st 2019 #> 1255 La Liga M ESP 1st 2019 #> 1256 La Liga M ESP 1st 2019 #> 1257 La Liga M ESP 1st 2019 #> 1258 La Liga M ESP 1st 2019 #> 1259 La Liga M ESP 1st 2019 #> 1260 La Liga M ESP 1st 2019 #> 1261 La Liga M ESP 1st 2019 #> 1262 La Liga M ESP 1st 2019 #> 1263 La Liga M ESP 1st 2019 #> 1264 La Liga M ESP 1st 2019 #> 1265 La Liga M ESP 1st 2019 #> 1266 La Liga M ESP 1st 2019 #> 1267 La Liga M ESP 1st 2019 #> 1268 La Liga M ESP 1st 2019 #> 1269 La Liga M ESP 1st 2019 #> 1270 La Liga M ESP 1st 2019 #> 1271 La Liga M ESP 1st 2019 #> 1272 La Liga M ESP 1st 2019 #> 1273 La Liga M ESP 1st 2019 #> 1274 La Liga M ESP 1st 2019 #> 1275 La Liga M ESP 1st 2019 #> 1276 La Liga M ESP 1st 2019 #> 1277 La Liga M ESP 1st 2019 #> 1278 La Liga M ESP 1st 2019 #> 1279 La Liga M ESP 1st 2019 #> 1280 La Liga M ESP 1st 2019 #> 1281 La Liga M ESP 1st 2019 #> 1282 La Liga M ESP 1st 2019 #> 1283 La Liga M ESP 1st 2019 #> 1284 La Liga M ESP 1st 2019 #> 1285 La Liga M ESP 1st 2019 #> 1286 La Liga M ESP 1st 2019 #> 1287 La Liga M ESP 1st 2019 #> 1288 La Liga M ESP 1st 2019 #> 1289 La Liga M ESP 1st 2019 #> 1290 La Liga M ESP 1st 2019 #> 1291 La Liga M ESP 1st 2019 #> 1292 La Liga M ESP 1st 2019 #> 1293 La Liga M ESP 1st 2019 #> 1294 La Liga M ESP 1st 2019 #> 1295 La Liga M ESP 1st 2019 #> 1296 La Liga M ESP 1st 2019 #> 1297 La Liga M ESP 1st 2019 #> 1298 La Liga M ESP 1st 2019 #> 1299 La Liga M ESP 1st 2019 #> 1300 La Liga M ESP 1st 2019 #> 1301 La Liga M ESP 1st 2019 #> 1302 La Liga M ESP 1st 2019 #> 1303 La Liga M ESP 1st 2019 #> 1304 La Liga M ESP 1st 2019 #> 1305 La Liga M ESP 1st 2019 #> 1306 La Liga M ESP 1st 2019 #> 1307 La Liga M ESP 1st 2019 #> 1308 La Liga M ESP 1st 2019 #> 1309 La Liga M ESP 1st 2019 #> 1310 La Liga M ESP 1st 2019 #> 1311 La Liga M ESP 1st 2019 #> 1312 La Liga M ESP 1st 2019 #> 1313 La Liga M ESP 1st 2019 #> 1314 La Liga M ESP 1st 2019 #> 1315 La Liga M ESP 1st 2019 #> 1316 La Liga M ESP 1st 2019 #> 1317 La Liga M ESP 1st 2019 #> 1318 La Liga M ESP 1st 2019 #> 1319 La Liga M ESP 1st 2019 #> 1320 La Liga M ESP 1st 2019 #> 1321 La Liga M ESP 1st 2019 #> 1322 La Liga M ESP 1st 2019 #> 1323 La Liga M ESP 1st 2019 #> 1324 La Liga M ESP 1st 2019 #> 1325 La Liga M ESP 1st 2019 #> 1326 La Liga M ESP 1st 2019 #> 1327 La Liga M ESP 1st 2019 #> 1328 La Liga M ESP 1st 2019 #> 1329 La Liga M ESP 1st 2019 #> 1330 La Liga M ESP 1st 2019 #> 1331 La Liga M ESP 1st 2019 #> 1332 La Liga M ESP 1st 2019 #> 1333 La Liga M ESP 1st 2019 #> 1334 La Liga M ESP 1st 2019 #> 1335 La Liga M ESP 1st 2019 #> 1336 La Liga M ESP 1st 2019 #> 1337 La Liga M ESP 1st 2019 #> 1338 La Liga M ESP 1st 2019 #> 1339 La Liga M ESP 1st 2019 #> 1340 La Liga M ESP 1st 2019 #> 1341 La Liga M ESP 1st 2019 #> 1342 La Liga M ESP 1st 2019 #> 1343 La Liga M ESP 1st 2019 #> 1344 La Liga M ESP 1st 2019 #> 1345 La Liga M ESP 1st 2019 #> 1346 La Liga M ESP 1st 2019 #> 1347 La Liga M ESP 1st 2019 #> 1348 La Liga M ESP 1st 2019 #> 1349 La Liga M ESP 1st 2019 #> 1350 La Liga M ESP 1st 2019 #> 1351 La Liga M ESP 1st 2019 #> 1352 La Liga M ESP 1st 2019 #> 1353 La Liga M ESP 1st 2019 #> 1354 La Liga M ESP 1st 2019 #> 1355 La Liga M ESP 1st 2019 #> 1356 La Liga M ESP 1st 2019 #> 1357 La Liga M ESP 1st 2019 #> 1358 La Liga M ESP 1st 2019 #> 1359 La Liga M ESP 1st 2019 #> 1360 La Liga M ESP 1st 2019 #> 1361 La Liga M ESP 1st 2019 #> 1362 La Liga M ESP 1st 2019 #> 1363 La Liga M ESP 1st 2019 #> 1364 La Liga M ESP 1st 2019 #> 1365 La Liga M ESP 1st 2019 #> 1366 La Liga M ESP 1st 2019 #> 1367 La Liga M ESP 1st 2019 #> 1368 La Liga M ESP 1st 2019 #> 1369 La Liga M ESP 1st 2019 #> 1370 La Liga M ESP 1st 2019 #> 1371 La Liga M ESP 1st 2019 #> 1372 La Liga M ESP 1st 2019 #> 1373 La Liga M ESP 1st 2019 #> 1374 La Liga M ESP 1st 2019 #> 1375 La Liga M ESP 1st 2019 #> 1376 La Liga M ESP 1st 2019 #> 1377 La Liga M ESP 1st 2019 #> 1378 La Liga M ESP 1st 2019 #> 1379 La Liga M ESP 1st 2019 #> 1380 La Liga M ESP 1st 2019 #> 1381 La Liga M ESP 1st 2019 #> 1382 La Liga M ESP 1st 2019 #> 1383 La Liga M ESP 1st 2019 #> 1384 La Liga M ESP 1st 2019 #> 1385 La Liga M ESP 1st 2019 #> 1386 La Liga M ESP 1st 2019 #> 1387 La Liga M ESP 1st 2019 #> 1388 La Liga M ESP 1st 2019 #> 1389 La Liga M ESP 1st 2019 #> 1390 La Liga M ESP 1st 2019 #> 1391 La Liga M ESP 1st 2019 #> 1392 La Liga M ESP 1st 2019 #> 1393 La Liga M ESP 1st 2019 #> 1394 La Liga M ESP 1st 2019 #> 1395 La Liga M ESP 1st 2019 #> 1396 La Liga M ESP 1st 2019 #> 1397 La Liga M ESP 1st 2019 #> 1398 La Liga M ESP 1st 2019 #> 1399 La Liga M ESP 1st 2019 #> 1400 La Liga M ESP 1st 2019 #> 1401 La Liga M ESP 1st 2019 #> 1402 La Liga M ESP 1st 2019 #> 1403 La Liga M ESP 1st 2019 #> 1404 La Liga M ESP 1st 2019 #> 1405 La Liga M ESP 1st 2019 #> 1406 La Liga M ESP 1st 2019 #> 1407 La Liga M ESP 1st 2019 #> 1408 La Liga M ESP 1st 2019 #> 1409 La Liga M ESP 1st 2019 #> 1410 La Liga M ESP 1st 2019 #> 1411 La Liga M ESP 1st 2019 #> 1412 La Liga M ESP 1st 2019 #> 1413 La Liga M ESP 1st 2019 #> 1414 La Liga M ESP 1st 2019 #> 1415 La Liga M ESP 1st 2019 #> 1416 La Liga M ESP 1st 2019 #> 1417 La Liga M ESP 1st 2019 #> 1418 La Liga M ESP 1st 2019 #> 1419 La Liga M ESP 1st 2019 #> 1420 La Liga M ESP 1st 2019 #> 1421 La Liga M ESP 1st 2019 #> 1422 La Liga M ESP 1st 2019 #> 1423 La Liga M ESP 1st 2019 #> 1424 La Liga M ESP 1st 2019 #> 1425 La Liga M ESP 1st 2019 #> 1426 La Liga M ESP 1st 2019 #> 1427 La Liga M ESP 1st 2019 #> 1428 La Liga M ESP 1st 2019 #> 1429 La Liga M ESP 1st 2019 #> 1430 La Liga M ESP 1st 2019 #> 1431 La Liga M ESP 1st 2019 #> 1432 La Liga M ESP 1st 2019 #> 1433 La Liga M ESP 1st 2019 #> 1434 La Liga M ESP 1st 2019 #> 1435 La Liga M ESP 1st 2019 #> 1436 La Liga M ESP 1st 2019 #> 1437 La Liga M ESP 1st 2019 #> 1438 La Liga M ESP 1st 2019 #> 1439 La Liga M ESP 1st 2019 #> 1440 La Liga M ESP 1st 2019 #> 1441 La Liga M ESP 1st 2019 #> 1442 La Liga M ESP 1st 2019 #> 1443 La Liga M ESP 1st 2019 #> 1444 La Liga M ESP 1st 2019 #> 1445 La Liga M ESP 1st 2019 #> 1446 La Liga M ESP 1st 2019 #> 1447 La Liga M ESP 1st 2019 #> 1448 La Liga M ESP 1st 2019 #> 1449 La Liga M ESP 1st 2019 #> 1450 La Liga M ESP 1st 2019 #> 1451 La Liga M ESP 1st 2019 #> 1452 La Liga M ESP 1st 2019 #> 1453 La Liga M ESP 1st 2019 #> 1454 La Liga M ESP 1st 2019 #> 1455 La Liga M ESP 1st 2019 #> 1456 La Liga M ESP 1st 2019 #> 1457 La Liga M ESP 1st 2019 #> 1458 La Liga M ESP 1st 2019 #> 1459 La Liga M ESP 1st 2019 #> 1460 La Liga M ESP 1st 2019 #> 1461 La Liga M ESP 1st 2019 #> 1462 La Liga M ESP 1st 2019 #> 1463 La Liga M ESP 1st 2019 #> 1464 La Liga M ESP 1st 2019 #> 1465 La Liga M ESP 1st 2019 #> 1466 La Liga M ESP 1st 2019 #> 1467 La Liga M ESP 1st 2019 #> 1468 La Liga M ESP 1st 2019 #> 1469 La Liga M ESP 1st 2019 #> 1470 La Liga M ESP 1st 2019 #> 1471 La Liga M ESP 1st 2019 #> 1472 La Liga M ESP 1st 2019 #> 1473 La Liga M ESP 1st 2019 #> 1474 La Liga M ESP 1st 2019 #> 1475 La Liga M ESP 1st 2019 #> 1476 La Liga M ESP 1st 2019 #> 1477 La Liga M ESP 1st 2019 #> 1478 La Liga M ESP 1st 2019 #> 1479 La Liga M ESP 1st 2019 #> 1480 La Liga M ESP 1st 2019 #> 1481 La Liga M ESP 1st 2019 #> 1482 La Liga M ESP 1st 2019 #> 1483 La Liga M ESP 1st 2019 #> 1484 La Liga M ESP 1st 2019 #> 1485 La Liga M ESP 1st 2019 #> 1486 La Liga M ESP 1st 2019 #> 1487 La Liga M ESP 1st 2019 #> 1488 La Liga M ESP 1st 2019 #> 1489 La Liga M ESP 1st 2019 #> 1490 La Liga M ESP 1st 2019 #> 1491 La Liga M ESP 1st 2019 #> 1492 La Liga M ESP 1st 2019 #> 1493 La Liga M ESP 1st 2019 #> 1494 La Liga M ESP 1st 2019 #> 1495 La Liga M ESP 1st 2019 #> 1496 La Liga M ESP 1st 2019 #> 1497 La Liga M ESP 1st 2019 #> 1498 La Liga M ESP 1st 2019 #> 1499 La Liga M ESP 1st 2019 #> 1500 La Liga M ESP 1st 2019 #> 1501 La Liga M ESP 1st 2019 #> 1502 La Liga M ESP 1st 2019 #> 1503 La Liga M ESP 1st 2019 #> 1504 La Liga M ESP 1st 2019 #> 1505 La Liga M ESP 1st 2019 #> 1506 La Liga M ESP 1st 2019 #> 1507 La Liga M ESP 1st 2019 #> 1508 La Liga M ESP 1st 2019 #> 1509 La Liga M ESP 1st 2019 #> 1510 La Liga M ESP 1st 2019 #> 1511 La Liga M ESP 1st 2019 #> 1512 La Liga M ESP 1st 2019 #> 1513 La Liga M ESP 1st 2019 #> 1514 La Liga M ESP 1st 2019 #> 1515 La Liga M ESP 1st 2019 #> 1516 La Liga M ESP 1st 2019 #> 1517 La Liga M ESP 1st 2019 #> 1518 La Liga M ESP 1st 2019 #> 1519 La Liga M ESP 1st 2019 #> 1520 La Liga M ESP 1st 2019 #> 1521 La Liga M ESP 1st 2019 #> 1522 La Liga M ESP 1st 2019 #> 1523 La Liga M ESP 1st 2019 #> 1524 La Liga M ESP 1st 2019 #> 1525 La Liga M ESP 1st 2019 #> 1526 La Liga M ESP 1st 2019 #> 1527 La Liga M ESP 1st 2019 #> 1528 La Liga M ESP 1st 2019 #> 1529 La Liga M ESP 1st 2019 #> 1530 La Liga M ESP 1st 2019 #> 1531 La Liga M ESP 1st 2019 #> 1532 La Liga M ESP 1st 2019 #> 1533 La Liga M ESP 1st 2019 #> 1534 La Liga M ESP 1st 2019 #> 1535 La Liga M ESP 1st 2019 #> 1536 La Liga M ESP 1st 2019 #> 1537 La Liga M ESP 1st 2019 #> 1538 La Liga M ESP 1st 2019 #> 1539 La Liga M ESP 1st 2019 #> 1540 La Liga M ESP 1st 2019 #> 1541 La Liga M ESP 1st 2019 #> 1542 La Liga M ESP 1st 2019 #> 1543 La Liga M ESP 1st 2019 #> 1544 La Liga M ESP 1st 2019 #> 1545 La Liga M ESP 1st 2019 #> 1546 La Liga M ESP 1st 2019 #> 1547 La Liga M ESP 1st 2019 #> 1548 La Liga M ESP 1st 2019 #> 1549 La Liga M ESP 1st 2019 #> 1550 La Liga M ESP 1st 2019 #> 1551 La Liga M ESP 1st 2019 #> 1552 La Liga M ESP 1st 2019 #> 1553 La Liga M ESP 1st 2019 #> 1554 La Liga M ESP 1st 2019 #> 1555 La Liga M ESP 1st 2019 #> 1556 La Liga M ESP 1st 2019 #> 1557 La Liga M ESP 1st 2019 #> 1558 La Liga M ESP 1st 2019 #> 1559 La Liga M ESP 1st 2019 #> 1560 La Liga M ESP 1st 2019 #> 1561 La Liga M ESP 1st 2019 #> 1562 La Liga M ESP 1st 2019 #> 1563 La Liga M ESP 1st 2019 #> 1564 La Liga M ESP 1st 2019 #> 1565 La Liga M ESP 1st 2019 #> 1566 La Liga M ESP 1st 2019 #> 1567 La Liga M ESP 1st 2019 #> 1568 La Liga M ESP 1st 2019 #> 1569 La Liga M ESP 1st 2019 #> 1570 La Liga M ESP 1st 2019 #> 1571 La Liga M ESP 1st 2019 #> 1572 La Liga M ESP 1st 2019 #> 1573 La Liga M ESP 1st 2019 #> 1574 La Liga M ESP 1st 2019 #> 1575 La Liga M ESP 1st 2019 #> 1576 La Liga M ESP 1st 2019 #> 1577 La Liga M ESP 1st 2019 #> 1578 La Liga M ESP 1st 2019 #> 1579 La Liga M ESP 1st 2019 #> 1580 La Liga M ESP 1st 2019 #> 1581 La Liga M ESP 1st 2019 #> 1582 La Liga M ESP 1st 2019 #> 1583 La Liga M ESP 1st 2019 #> 1584 La Liga M ESP 1st 2019 #> 1585 La Liga M ESP 1st 2019 #> 1586 La Liga M ESP 1st 2019 #> 1587 La Liga M ESP 1st 2019 #> 1588 La Liga M ESP 1st 2019 #> 1589 La Liga M ESP 1st 2019 #> 1590 La Liga M ESP 1st 2019 #> 1591 La Liga M ESP 1st 2019 #> 1592 La Liga M ESP 1st 2019 #> 1593 La Liga M ESP 1st 2019 #> 1594 La Liga M ESP 1st 2019 #> 1595 La Liga M ESP 1st 2019 #> 1596 La Liga M ESP 1st 2019 #> 1597 La Liga M ESP 1st 2019 #> 1598 La Liga M ESP 1st 2019 #> 1599 La Liga M ESP 1st 2019 #> 1600 La Liga M ESP 1st 2019 #> 1601 La Liga M ESP 1st 2019 #> 1602 La Liga M ESP 1st 2019 #> 1603 La Liga M ESP 1st 2019 #> 1604 La Liga M ESP 1st 2019 #> 1605 La Liga M ESP 1st 2019 #> 1606 La Liga M ESP 1st 2019 #> 1607 La Liga M ESP 1st 2019 #> 1608 La Liga M ESP 1st 2019 #> 1609 La Liga M ESP 1st 2019 #> 1610 La Liga M ESP 1st 2019 #> 1611 La Liga M ESP 1st 2019 #> 1612 La Liga M ESP 1st 2019 #> 1613 La Liga M ESP 1st 2019 #> 1614 La Liga M ESP 1st 2019 #> 1615 La Liga M ESP 1st 2019 #> 1616 La Liga M ESP 1st 2019 #> 1617 La Liga M ESP 1st 2019 #> 1618 La Liga M ESP 1st 2019 #> 1619 La Liga M ESP 1st 2019 #> 1620 La Liga M ESP 1st 2019 #> 1621 La Liga M ESP 1st 2019 #> 1622 La Liga M ESP 1st 2019 #> 1623 La Liga M ESP 1st 2019 #> 1624 La Liga M ESP 1st 2019 #> 1625 La Liga M ESP 1st 2019 #> 1626 La Liga M ESP 1st 2019 #> 1627 La Liga M ESP 1st 2019 #> 1628 La Liga M ESP 1st 2019 #> 1629 La Liga M ESP 1st 2019 #> 1630 La Liga M ESP 1st 2019 #> 1631 La Liga M ESP 1st 2019 #> 1632 La Liga M ESP 1st 2019 #> 1633 La Liga M ESP 1st 2019 #> 1634 La Liga M ESP 1st 2019 #> 1635 La Liga M ESP 1st 2019 #> 1636 La Liga M ESP 1st 2019 #> 1637 La Liga M ESP 1st 2019 #> 1638 La Liga M ESP 1st 2019 #> 1639 La Liga M ESP 1st 2019 #> 1640 La Liga M ESP 1st 2019 #> 1641 La Liga M ESP 1st 2019 #> 1642 La Liga M ESP 1st 2019 #> 1643 La Liga M ESP 1st 2019 #> 1644 La Liga M ESP 1st 2019 #> 1645 La Liga M ESP 1st 2019 #> 1646 La Liga M ESP 1st 2019 #> 1647 La Liga M ESP 1st 2019 #> 1648 La Liga M ESP 1st 2019 #> 1649 La Liga M ESP 1st 2019 #> 1650 La Liga M ESP 1st 2019 #> 1651 La Liga M ESP 1st 2019 #> 1652 La Liga M ESP 1st 2019 #> 1653 La Liga M ESP 1st 2019 #> 1654 La Liga M ESP 1st 2019 #> 1655 La Liga M ESP 1st 2019 #> 1656 La Liga M ESP 1st 2019 #> 1657 La Liga M ESP 1st 2019 #> 1658 La Liga M ESP 1st 2019 #> 1659 La Liga M ESP 1st 2019 #> 1660 La Liga M ESP 1st 2019 #> 1661 La Liga M ESP 1st 2019 #> 1662 La Liga M ESP 1st 2019 #> 1663 La Liga M ESP 1st 2019 #> 1664 La Liga M ESP 1st 2019 #> 1665 La Liga M ESP 1st 2019 #> 1666 La Liga M ESP 1st 2019 #> 1667 La Liga M ESP 1st 2019 #> 1668 La Liga M ESP 1st 2019 #> 1669 La Liga M ESP 1st 2019 #> 1670 La Liga M ESP 1st 2019 #> 1671 La Liga M ESP 1st 2019 #> 1672 La Liga M ESP 1st 2019 #> 1673 La Liga M ESP 1st 2019 #> 1674 La Liga M ESP 1st 2019 #> 1675 La Liga M ESP 1st 2019 #> 1676 La Liga M ESP 1st 2019 #> 1677 La Liga M ESP 1st 2019 #> 1678 La Liga M ESP 1st 2019 #> 1679 La Liga M ESP 1st 2019 #> 1680 La Liga M ESP 1st 2019 #> 1681 La Liga M ESP 1st 2019 #> 1682 La Liga M ESP 1st 2019 #> 1683 La Liga M ESP 1st 2019 #> 1684 La Liga M ESP 1st 2019 #> 1685 La Liga M ESP 1st 2019 #> 1686 La Liga M ESP 1st 2019 #> 1687 La Liga M ESP 1st 2019 #> 1688 La Liga M ESP 1st 2019 #> 1689 La Liga M ESP 1st 2019 #> 1690 La Liga M ESP 1st 2019 #> 1691 La Liga M ESP 1st 2019 #> 1692 La Liga M ESP 1st 2019 #> 1693 La Liga M ESP 1st 2019 #> 1694 La Liga M ESP 1st 2019 #> 1695 La Liga M ESP 1st 2019 #> 1696 La Liga M ESP 1st 2019 #> 1697 La Liga M ESP 1st 2019 #> 1698 La Liga M ESP 1st 2019 #> 1699 La Liga M ESP 1st 2019 #> 1700 La Liga M ESP 1st 2019 #> 1701 La Liga M ESP 1st 2019 #> 1702 La Liga M ESP 1st 2019 #> 1703 La Liga M ESP 1st 2019 #> 1704 La Liga M ESP 1st 2019 #> 1705 La Liga M ESP 1st 2019 #> 1706 La Liga M ESP 1st 2019 #> 1707 La Liga M ESP 1st 2019 #> 1708 La Liga M ESP 1st 2019 #> 1709 La Liga M ESP 1st 2019 #> 1710 La Liga M ESP 1st 2019 #> 1711 La Liga M ESP 1st 2019 #> 1712 La Liga M ESP 1st 2019 #> 1713 La Liga M ESP 1st 2019 #> 1714 La Liga M ESP 1st 2019 #> 1715 La Liga M ESP 1st 2019 #> 1716 La Liga M ESP 1st 2019 #> 1717 La Liga M ESP 1st 2019 #> 1718 La Liga M ESP 1st 2019 #> 1719 La Liga M ESP 1st 2019 #> 1720 La Liga M ESP 1st 2019 #> 1721 La Liga M ESP 1st 2019 #> 1722 La Liga M ESP 1st 2019 #> 1723 La Liga M ESP 1st 2019 #> 1724 La Liga M ESP 1st 2019 #> 1725 La Liga M ESP 1st 2019 #> 1726 La Liga M ESP 1st 2019 #> 1727 La Liga M ESP 1st 2019 #> 1728 La Liga M ESP 1st 2019 #> 1729 La Liga M ESP 1st 2019 #> 1730 La Liga M ESP 1st 2019 #> 1731 La Liga M ESP 1st 2019 #> 1732 La Liga M ESP 1st 2019 #> 1733 La Liga M ESP 1st 2019 #> 1734 La Liga M ESP 1st 2019 #> 1735 La Liga M ESP 1st 2019 #> 1736 La Liga M ESP 1st 2019 #> 1737 La Liga M ESP 1st 2019 #> 1738 La Liga M ESP 1st 2019 #> 1739 La Liga M ESP 1st 2019 #> 1740 La Liga M ESP 1st 2019 #> 1741 La Liga M ESP 1st 2019 #> 1742 La Liga M ESP 1st 2019 #> 1743 La Liga M ESP 1st 2019 #> 1744 La Liga M ESP 1st 2019 #> 1745 La Liga M ESP 1st 2019 #> 1746 La Liga M ESP 1st 2019 #> 1747 La Liga M ESP 1st 2019 #> 1748 La Liga M ESP 1st 2019 #> 1749 La Liga M ESP 1st 2019 #> 1750 La Liga M ESP 1st 2019 #> 1751 La Liga M ESP 1st 2019 #> 1752 La Liga M ESP 1st 2019 #> 1753 La Liga M ESP 1st 2019 #> 1754 La Liga M ESP 1st 2019 #> 1755 La Liga M ESP 1st 2019 #> 1756 La Liga M ESP 1st 2019 #> 1757 La Liga M ESP 1st 2019 #> 1758 La Liga M ESP 1st 2019 #> 1759 La Liga M ESP 1st 2019 #> 1760 La Liga M ESP 1st 2019 #> 1761 La Liga M ESP 1st 2019 #> 1762 La Liga M ESP 1st 2019 #> 1763 La Liga M ESP 1st 2019 #> 1764 La Liga M ESP 1st 2019 #> 1765 La Liga M ESP 1st 2019 #> 1766 La Liga M ESP 1st 2019 #> 1767 La Liga M ESP 1st 2019 #> 1768 La Liga M ESP 1st 2019 #> 1769 La Liga M ESP 1st 2019 #> 1770 La Liga M ESP 1st 2019 #> 1771 La Liga M ESP 1st 2019 #> 1772 La Liga M ESP 1st 2019 #> 1773 La Liga M ESP 1st 2019 #> 1774 La Liga M ESP 1st 2019 #> 1775 La Liga M ESP 1st 2019 #> 1776 La Liga M ESP 1st 2019 #> 1777 La Liga M ESP 1st 2019 #> 1778 La Liga M ESP 1st 2019 #> 1779 La Liga M ESP 1st 2019 #> 1780 La Liga M ESP 1st 2019 #> 1781 La Liga M ESP 1st 2019 #> 1782 La Liga M ESP 1st 2019 #> 1783 La Liga M ESP 1st 2019 #> 1784 La Liga M ESP 1st 2019 #> 1785 La Liga M ESP 1st 2019 #> 1786 La Liga M ESP 1st 2019 #> 1787 La Liga M ESP 1st 2019 #> 1788 La Liga M ESP 1st 2019 #> 1789 La Liga M ESP 1st 2019 #> 1790 La Liga M ESP 1st 2019 #> 1791 La Liga M ESP 1st 2019 #> 1792 La Liga M ESP 1st 2019 #> 1793 La Liga M ESP 1st 2019 #> 1794 La Liga M ESP 1st 2019 #> 1795 La Liga M ESP 1st 2019 #> 1796 La Liga M ESP 1st 2019 #> 1797 La Liga M ESP 1st 2019 #> 1798 La Liga M ESP 1st 2019 #> 1799 La Liga M ESP 1st 2019 #> 1800 La Liga M ESP 1st 2019 #> 1801 La Liga M ESP 1st 2019 #> 1802 La Liga M ESP 1st 2019 #> 1803 La Liga M ESP 1st 2019 #> 1804 La Liga M ESP 1st 2019 #> 1805 La Liga M ESP 1st 2019 #> 1806 La Liga M ESP 1st 2019 #> 1807 La Liga M ESP 1st 2019 #> 1808 La Liga M ESP 1st 2019 #> 1809 La Liga M ESP 1st 2019 #> 1810 La Liga M ESP 1st 2019 #> 1811 La Liga M ESP 1st 2019 #> 1812 La Liga M ESP 1st 2019 #> 1813 La Liga M ESP 1st 2019 #> 1814 La Liga M ESP 1st 2019 #> 1815 La Liga M ESP 1st 2019 #> 1816 La Liga M ESP 1st 2019 #> 1817 La Liga M ESP 1st 2019 #> 1818 La Liga M ESP 1st 2019 #> 1819 La Liga M ESP 1st 2019 #> 1820 La Liga M ESP 1st 2019 #> 1821 La Liga M ESP 1st 2019 #> 1822 La Liga M ESP 1st 2019 #> 1823 La Liga M ESP 1st 2019 #> 1824 La Liga M ESP 1st 2019 #> 1825 La Liga M ESP 1st 2019 #> 1826 La Liga M ESP 1st 2019 #> 1827 La Liga M ESP 1st 2019 #> 1828 La Liga M ESP 1st 2019 #> 1829 La Liga M ESP 1st 2019 #> 1830 La Liga M ESP 1st 2019 #> 1831 La Liga M ESP 1st 2019 #> 1832 La Liga M ESP 1st 2019 #> 1833 La Liga M ESP 1st 2019 #> 1834 La Liga M ESP 1st 2019 #> 1835 La Liga M ESP 1st 2019 #> 1836 La Liga M ESP 1st 2019 #> 1837 La Liga M ESP 1st 2019 #> 1838 La Liga M ESP 1st 2019 #> 1839 La Liga M ESP 1st 2019 #> 1840 La Liga M ESP 1st 2019 #> 1841 La Liga M ESP 1st 2019 #> 1842 La Liga M ESP 1st 2019 #> 1843 La Liga M ESP 1st 2019 #> 1844 La Liga M ESP 1st 2019 #> 1845 La Liga M ESP 1st 2019 #> 1846 La Liga M ESP 1st 2019 #> 1847 La Liga M ESP 1st 2019 #> 1848 La Liga M ESP 1st 2019 #> 1849 La Liga M ESP 1st 2019 #> 1850 La Liga M ESP 1st 2019 #> 1851 La Liga M ESP 1st 2019 #> 1852 La Liga M ESP 1st 2019 #> 1853 La Liga M ESP 1st 2019 #> 1854 La Liga M ESP 1st 2019 #> 1855 La Liga M ESP 1st 2019 #> 1856 La Liga M ESP 1st 2019 #> 1857 La Liga M ESP 1st 2019 #> 1858 La Liga M ESP 1st 2019 #> 1859 La Liga M ESP 1st 2019 #> 1860 La Liga M ESP 1st 2019 #> 1861 La Liga M ESP 1st 2019 #> 1862 La Liga M ESP 1st 2019 #> 1863 La Liga M ESP 1st 2019 #> 1864 La Liga M ESP 1st 2019 #> 1865 La Liga M ESP 1st 2019 #> 1866 La Liga M ESP 1st 2019 #> 1867 La Liga M ESP 1st 2019 #> 1868 La Liga M ESP 1st 2019 #> 1869 La Liga M ESP 1st 2019 #> 1870 La Liga M ESP 1st 2019 #> 1871 La Liga M ESP 1st 2019 #> 1872 La Liga M ESP 1st 2019 #> 1873 La Liga M ESP 1st 2019 #> 1874 La Liga M ESP 1st 2019 #> 1875 La Liga M ESP 1st 2019 #> 1876 La Liga M ESP 1st 2019 #> 1877 La Liga M ESP 1st 2019 #> 1878 La Liga M ESP 1st 2019 #> 1879 La Liga M ESP 1st 2019 #> 1880 La Liga M ESP 1st 2019 #> 1881 La Liga M ESP 1st 2019 #> 1882 La Liga M ESP 1st 2019 #> 1883 La Liga M ESP 1st 2019 #> 1884 La Liga M ESP 1st 2019 #> 1885 La Liga M ESP 1st 2019 #> 1886 La Liga M ESP 1st 2019 #> 1887 La Liga M ESP 1st 2019 #> 1888 La Liga M ESP 1st 2019 #> 1889 La Liga M ESP 1st 2019 #> 1890 La Liga M ESP 1st 2019 #> 1891 La Liga M ESP 1st 2019 #> 1892 La Liga M ESP 1st 2019 #> 1893 La Liga M ESP 1st 2019 #> 1894 La Liga M ESP 1st 2019 #> 1895 La Liga M ESP 1st 2019 #> 1896 La Liga M ESP 1st 2019 #> 1897 La Liga M ESP 1st 2019 #> 1898 La Liga M ESP 1st 2019 #> 1899 La Liga M ESP 1st 2019 #> 1900 La Liga M ESP 1st 2019 #> 1901 La Liga M ESP 1st 2019 #> 1902 La Liga M ESP 1st 2019 #> 1903 La Liga M ESP 1st 2019 #> 1904 La Liga M ESP 1st 2019 #> 1905 La Liga M ESP 1st 2019 #> 1906 La Liga M ESP 1st 2019 #> 1907 La Liga M ESP 1st 2019 #> 1908 La Liga M ESP 1st 2019 #> 1909 La Liga M ESP 1st 2019 #> 1910 La Liga M ESP 1st 2019 #> 1911 La Liga M ESP 1st 2019 #> 1912 La Liga M ESP 1st 2019 #> 1913 La Liga M ESP 1st 2019 #> 1914 La Liga M ESP 1st 2019 #> 1915 La Liga M ESP 1st 2019 #> 1916 La Liga M ESP 1st 2019 #> 1917 La Liga M ESP 1st 2019 #> 1918 La Liga M ESP 1st 2019 #> 1919 La Liga M ESP 1st 2019 #> 1920 La Liga M ESP 1st 2019 #> 1921 La Liga M ESP 1st 2019 #> 1922 La Liga M ESP 1st 2019 #> 1923 La Liga M ESP 1st 2019 #> 1924 La Liga M ESP 1st 2019 #> 1925 La Liga M ESP 1st 2019 #> 1926 La Liga M ESP 1st 2019 #> 1927 La Liga M ESP 1st 2019 #> 1928 La Liga M ESP 1st 2019 #> 1929 La Liga M ESP 1st 2019 #> 1930 La Liga M ESP 1st 2019 #> 1931 La Liga M ESP 1st 2019 #> 1932 La Liga M ESP 1st 2019 #> 1933 La Liga M ESP 1st 2019 #> 1934 La Liga M ESP 1st 2019 #> 1935 La Liga M ESP 1st 2019 #> 1936 La Liga M ESP 1st 2019 #> 1937 La Liga M ESP 1st 2019 #> 1938 La Liga M ESP 1st 2019 #> 1939 La Liga M ESP 1st 2019 #> 1940 La Liga M ESP 1st 2019 #> 1941 La Liga M ESP 1st 2019 #> 1942 La Liga M ESP 1st 2019 #> 1943 La Liga M ESP 1st 2019 #> 1944 La Liga M ESP 1st 2019 #> 1945 La Liga M ESP 1st 2019 #> 1946 La Liga M ESP 1st 2019 #> 1947 La Liga M ESP 1st 2019 #> 1948 La Liga M ESP 1st 2019 #> 1949 La Liga M ESP 1st 2019 #> 1950 La Liga M ESP 1st 2019 #> 1951 La Liga M ESP 1st 2019 #> 1952 La Liga M ESP 1st 2019 #> 1953 La Liga M ESP 1st 2019 #> 1954 La Liga M ESP 1st 2019 #> 1955 La Liga M ESP 1st 2019 #> 1956 La Liga M ESP 1st 2019 #> 1957 La Liga M ESP 1st 2019 #> 1958 La Liga M ESP 1st 2019 #> 1959 La Liga M ESP 1st 2019 #> 1960 La Liga M ESP 1st 2019 #> 1961 La Liga M ESP 1st 2019 #> 1962 La Liga M ESP 1st 2019 #> 1963 La Liga M ESP 1st 2019 #> 1964 La Liga M ESP 1st 2019 #> 1965 La Liga M ESP 1st 2019 #> 1966 La Liga M ESP 1st 2019 #> 1967 La Liga M ESP 1st 2019 #> 1968 La Liga M ESP 1st 2019 #> 1969 La Liga M ESP 1st 2019 #> 1970 La Liga M ESP 1st 2019 #> 1971 La Liga M ESP 1st 2019 #> 1972 La Liga M ESP 1st 2019 #> 1973 La Liga M ESP 1st 2019 #> 1974 La Liga M ESP 1st 2019 #> 1975 La Liga M ESP 1st 2019 #> 1976 La Liga M ESP 1st 2019 #> 1977 La Liga M ESP 1st 2019 #> 1978 La Liga M ESP 1st 2019 #> 1979 La Liga M ESP 1st 2019 #> 1980 La Liga M ESP 1st 2019 #> 1981 La Liga M ESP 1st 2019 #> 1982 La Liga M ESP 1st 2019 #> 1983 La Liga M ESP 1st 2019 #> 1984 La Liga M ESP 1st 2019 #> 1985 La Liga M ESP 1st 2019 #> 1986 La Liga M ESP 1st 2019 #> 1987 La Liga M ESP 1st 2019 #> 1988 La Liga M ESP 1st 2019 #> 1989 La Liga M ESP 1st 2019 #> 1990 La Liga M ESP 1st 2019 #> 1991 La Liga M ESP 1st 2019 #> 1992 La Liga M ESP 1st 2019 #> 1993 La Liga M ESP 1st 2019 #> 1994 La Liga M ESP 1st 2019 #> 1995 La Liga M ESP 1st 2019 #> 1996 La Liga M ESP 1st 2019 #> 1997 La Liga M ESP 1st 2019 #> 1998 La Liga M ESP 1st 2019 #> 1999 La Liga M ESP 1st 2019 #> 2000 La Liga M ESP 1st 2019 #> 2001 La Liga M ESP 1st 2019 #> 2002 La Liga M ESP 1st 2019 #> 2003 La Liga M ESP 1st 2019 #> 2004 La Liga M ESP 1st 2019 #> 2005 La Liga M ESP 1st 2019 #> 2006 La Liga M ESP 1st 2019 #> 2007 La Liga M ESP 1st 2019 #> 2008 La Liga M ESP 1st 2019 #> 2009 La Liga M ESP 1st 2019 #> 2010 La Liga M ESP 1st 2019 #> 2011 La Liga M ESP 1st 2019 #> 2012 La Liga M ESP 1st 2019 #> 2013 La Liga M ESP 1st 2019 #> 2014 La Liga M ESP 1st 2019 #> 2015 La Liga M ESP 1st 2019 #> 2016 La Liga M ESP 1st 2019 #> 2017 La Liga M ESP 1st 2019 #> 2018 La Liga M ESP 1st 2019 #> 2019 La Liga M ESP 1st 2019 #> 2020 La Liga M ESP 1st 2019 #> 2021 La Liga M ESP 1st 2019 #> 2022 La Liga M ESP 1st 2019 #> 2023 La Liga M ESP 1st 2019 #> 2024 La Liga M ESP 1st 2019 #> 2025 La Liga M ESP 1st 2019 #> 2026 La Liga M ESP 1st 2019 #> 2027 La Liga M ESP 1st 2019 #> 2028 La Liga M ESP 1st 2019 #> 2029 La Liga M ESP 1st 2019 #> 2030 La Liga M ESP 1st 2019 #> 2031 La Liga M ESP 1st 2019 #> 2032 La Liga M ESP 1st 2019 #> 2033 La Liga M ESP 1st 2019 #> 2034 La Liga M ESP 1st 2019 #> 2035 La Liga M ESP 1st 2019 #> 2036 La Liga M ESP 1st 2019 #> 2037 La Liga M ESP 1st 2019 #> 2038 La Liga M ESP 1st 2019 #> 2039 La Liga M ESP 1st 2019 #> 2040 La Liga M ESP 1st 2019 #> [ reached 'max' / getOption(\"max.print\") -- omitted 8498 rows ]"},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-understat","dir":"Articles","previous_headings":"","what":"Load Understat","title":"Load Scraped Data Functions","text":"following section demonstrates different loading functions Understat data.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-league-shots","dir":"Articles","previous_headings":"Load Understat","what":"Load League Shots","title":"Load Scraped Data Functions","text":"able rapidly load pre-collected chooting locations whole leagues, load_understat_league_shots() functions now available. Supported leagues Understat : “EPL” “La liga” “Bundesliga” “Serie ” “Ligue 1” “RFPL” effectively loading equivalent understat_league_season_shots() function, however rather needing scraped season time, data loads rapidly seasons selected league since 2014/15 seasons.","code":"serie_a_shot_locations <- load_understat_league_shots(league = \"Serie A\") dplyr::glimpse(serie_a_shot_locations) #> Rows: 99,375 #> Columns: 22 #> $ league \"Serie_A\", \"Serie_A\", \"Serie_A\", \"Serie_A\", \"Serie_A\",… #> $ id 41439, 41444, 41445, 41446, 41451, 41452, 41461, 41462… #> $ minute 2, 5, 7, 8, 19, 24, 76, 76, 0, 3, 3, 3, 5, 10, 15, 15,… #> $ result \"MissedShots\", \"OwnGoal\", \"SavedShot\", \"MissedShots\", … #> $ X 0.845, 0.009, 0.896, 0.875, 0.813, 0.780, 0.780, 0.867… #> $ Y 0.641, 0.539, 0.373, 0.661, 0.180, 0.374, 0.499, 0.520… #> $ xG 0.009113184, 0.000000000, 0.019183254, 0.042726491, 0.… #> $ player \"Maxi López\", \"Cristiano Biraghi\", \"Ezequiel Schelotto… #> $ h_a \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"a\", \"a\", \"a\",… #> $ player_id 1188, 1164, 3873, 1188, 1336, 3873, 716, 1188, 3848, 1… #> $ situation \"OpenPlay\", \"FromCorner\", \"OpenPlay\", \"SetPiece\", \"Fro… #> $ season 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, … #> $ shotType \"Head\", \"OtherBodyPart\", \"Head\", \"RightFoot\", \"LeftFoo… #> $ match_id 5149, 5149, 5149, 5149, 5149, 5149, 5149, 5149, 5149, … #> $ home_team \"Chievo\", \"Chievo\", \"Chievo\", \"Chievo\", \"Chievo\", \"Chi… #> $ away_team \"Juventus\", \"Juventus\", \"Juventus\", \"Juventus\", \"Juven… #> $ home_goals 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, … #> $ away_goals 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, … #> $ date \"2014-08-30 17:00:00\", \"2014-08-30 17:00:00\", \"2014-08… #> $ player_assisted \"Cristiano Biraghi\", NA, \"Nicolas Frey\", \"Ezequiel Sch… #> $ lastAction \"Cross\", \"CrossNotClaimed\", \"Cross\", \"Pass\", \"Pass\", \"… #> $ home_away NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA…"},{"path":"https://jaseziv.github.io/worldfootballR/authors.html","id":null,"dir":"","previous_headings":"","what":"Authors","title":"Authors and Citation","text":"Jason Zivkovic. Author, maintainer, copyright holder. Tony ElHabr. Contributor. Tan Ho. Contributor. Samuel H. Contributor.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/authors.html","id":"citation","dir":"","previous_headings":"","what":"Citation","title":"Authors and Citation","text":"Zivkovic J (2024). worldfootballR: Extract Clean World Football (Soccer) Data. R package version 0.6.5.0004, https://github.com/JaseZiv/worldfootballR.","code":"@Manual{, title = {worldfootballR: Extract and Clean World Football (Soccer) Data}, author = {Jason Zivkovic}, year = {2024}, note = {R package version 0.6.5.0004}, url = {https://github.com/JaseZiv/worldfootballR}, }"},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"overview","dir":"","previous_headings":"","what":"Overview","title":"Extract and Clean World Football (Soccer) Data","text":"package designed allow users extract various world football results player statistics following popular football (soccer) data sites: FBref Transfermarkt Understat","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"installation","dir":"","previous_headings":"","what":"Installation","title":"Extract and Clean World Football (Soccer) Data","text":"can install CRAN version worldfootballR : can install released version worldfootballR GitHub :","code":"install.packages(\"worldfootballR\") # install.packages(\"devtools\") devtools::install_github(\"JaseZiv/worldfootballR\") library(worldfootballR)"},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"usage","dir":"","previous_headings":"","what":"Usage","title":"Extract and Clean World Football (Soccer) Data","text":"Package vignettes built help get started package. functions extract data FBref, see functions extract data Transfermarkt, see functions extract data Understat, see functions extract data international matches FBref, see functions load pre-scraped data, see ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"loading-data","dir":"","previous_headings":"Usage","what":"Loading Data","title":"Extract and Clean World Football (Soccer) Data","text":"Since release v0.5.3, library now supports rapid loading pre-collected data use load_ functions. data available loading stored worldfootballR_data repository. repo can found . Head vignette see examples data available rapid loading.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"news","dir":"","previous_headings":"","what":"News","title":"Extract and Clean World Football (Soccer) Data","text":"stay --date latest changes, see package change log Note fotmob data longer provided since release v0.6.4 due change terms service.","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"fbref","dir":"","previous_headings":"Leagues and Seasons","what":"FBref","title":"Extract and Clean World Football (Soccer) Data","text":"FBref.com data (match season data), list leagues seasons included package can found worldfootballR_data repository can found ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"transfermarkt","dir":"","previous_headings":"Leagues and Seasons","what":"Transfermarkt","title":"Extract and Clean World Football (Soccer) Data","text":"transfermarkt.com data (valuations transfers), list leagues seasons included package can found worldfootballR_data repository can found ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"understat","dir":"","previous_headings":"Leagues and Seasons","what":"Understat","title":"Extract and Clean World Football (Soccer) Data","text":"following leagues currently supported Understat (values can passed league arguments understat_ functions): “EPL” “La liga” “Bundesliga” “Serie ” “Ligue 1” “RFPL”","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"attribute-the-source","dir":"","previous_headings":"","what":"Attribute the Source","title":"Extract and Clean World Football (Soccer) Data","text":"using functions package, please ensure attribute source data based function use. Data providers listed : FBref partnered StatsPerform Opta Transfermarkt Understat","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"acknowledgements","dir":"","previous_headings":"Attribute the Source","what":"Acknowledgements","title":"Extract and Clean World Football (Soccer) Data","text":"Special mention goes Ewan Henderson’s awesome understatr library inspiration internal code understat_ functions contained package.","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"issues-and-improvements","dir":"","previous_headings":"Contributing","what":"Issues and Improvements","title":"Extract and Clean World Football (Soccer) Data","text":"creating issue, please include: Reproducible examples brief description expected results applicable, fbref.com, transfermarkt.com understat.com page observed behaviour occurring improvement suggestions, features requested purpose Feel free get touch via email twitter https://twitter.com/jaseziv aren’t able create issue.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"show-your-support","dir":"","previous_headings":"Contributing","what":"Show your support","title":"Extract and Clean World Football (Soccer) Data","text":"Follow Twitter (jaseziv) updates package helps , ask star repo. want show support contribute server time data storage costs, feel free send small donation link .","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_advanced_match_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref advanced match stats — fb_advanced_match_stats","title":"Get FBref advanced match stats — fb_advanced_match_stats","text":"Returns data frame selected statistics match, either whole team individual players. Multiple URLs can passed function, one `stat_type` can selected. Replaces deprecated function get_advanced_match_stats()","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_advanced_match_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref advanced match stats — fb_advanced_match_stats","text":"","code":"fb_advanced_match_stats(match_url, stat_type, team_or_player, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_advanced_match_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref advanced match stats — fb_advanced_match_stats","text":"match_url three character country code countries stat_type type team statistics user requires team_or_player result either summarised team, individual players time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"summary\", \"passing\", \"passing\"_types, \"defense\" , \"possession\", \"misc\", \"keeper\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_advanced_match_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref advanced match stats — fb_advanced_match_stats","text":"returns dataframe selected team statistic type selected match(es)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_advanced_match_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref advanced match stats — fb_advanced_match_stats","text":"","code":"if (FALSE) { try({ urls <- fb_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\") df <- fb_advanced_match_stats(match_url=urls,stat_type=\"possession\",team_or_player=\"player\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_big5_advanced_season_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Big 5 Euro League Season Stats — fb_big5_advanced_season_stats","title":"Big 5 Euro League Season Stats — fb_big5_advanced_season_stats","text":"Returns data frame selected statistics seasons big 5 Euro leagues, either whole team individual players. Multiple seasons can passed function, one `stat_type` can selected","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_big5_advanced_season_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Big 5 Euro League Season Stats — fb_big5_advanced_season_stats","text":"","code":"fb_big5_advanced_season_stats( season_end_year, stat_type, team_or_player, time_pause = 3 )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_big5_advanced_season_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Big 5 Euro League Season Stats — fb_big5_advanced_season_stats","text":"season_end_year year(s) season concludes stat_type type team statistics user requires team_or_player result either summarised team, individual players time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"standard\", \"shooting\", \"passing\", \"passing_types\", \"gca\", \"defense\", \"possession\", \"playing_time\", \"misc\", \"keepers\", \"keepers_adv\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_big5_advanced_season_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Big 5 Euro League Season Stats — fb_big5_advanced_season_stats","text":"returns dataframe selected team player statistic type selected season(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_big5_advanced_season_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Big 5 Euro League Season Stats — fb_big5_advanced_season_stats","text":"","code":"if (FALSE) { try({ fb_big5_advanced_season_stats(season_end_year=2021,stat_type=\"possession\",team_or_player=\"player\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref Team or Player Season Statistics for an Entire League — fb_league_stats","title":"Get FBref Team or Player Season Statistics for an Entire League — fb_league_stats","text":"Get season stats teams / players selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref Team or Player Season Statistics for an Entire League — fb_league_stats","text":"","code":"fb_league_stats( country, gender, season_end_year, tier = \"1st\", non_dom_league_url = NA, stat_type, team_or_player, time_pause = 3, rate = purrr::rate_backoff(max_times = 3) )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref Team or Player Season Statistics for an Entire League — fb_league_stats","text":"country three character country code gender gender competition, either \"M\" \"F\", season_end_year year season(s) concludes tier tier league, ie '1st' EPL '2nd' Championship non_dom_league_url URL Cups Competitions found https://fbref.com/en/comps/ stat_type type statistic required. Must one following: standard shooting passing passing_types gca defense possession playing_time misc keepers keepers_adv team_or_player result either summarised team, individual players time_pause wait time (seconds) page loads rate passed `purrr::insistently`. function can brittle, works second third try. parameter controls much function retry get result.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref Team or Player Season Statistics for an Entire League — fb_league_stats","text":"dataframe season stats teams / players league","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref Team or Player Season Statistics for an Entire League — fb_league_stats","text":"","code":"if (FALSE) { try({ fb_league_stats( country = \"ENG\", gender = \"M\", season_end_year = 2022, tier = \"1st\", stat_type = \"shooting\", team_or_player = \"player\" ) ## Non-domestic league ## Note that this is more likely to fail due to the volume of players fb_league_stats( country = NA_character_, gender = \"M\", season_end_year = 2023, tier = NA_character_, non_dom_league_url = \"https://fbref.com/en/comps/8/history/Champions-League-Seasons\", stat_type = \"standard\", team_or_player = \"player\" ) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get fbref League URLs — fb_league_urls","title":"Get fbref League URLs — fb_league_urls","text":"Returns URLs season leagues selected country","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get fbref League URLs — fb_league_urls","text":"","code":"fb_league_urls(country, gender, season_end_year, tier = \"1st\")"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get fbref League URLs — fb_league_urls","text":"country three character country code gender gender competition, either \"M\" \"F\" season_end_year year season(s) concludes (defaults available seasons) tier tier league, ie '1st' EPL '2nd' Championship ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get fbref League URLs — fb_league_urls","text":"returns character vector fbref league URLs selected country, season, gender tier","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_urls.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get fbref League URLs — fb_league_urls","text":"","code":"if (FALSE) { try({ fb_league_urls(country = \"ENG\", gender = \"M\", season_end_year = 2021, tier = '1st') }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_lineups.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref match lineups — fb_match_lineups","title":"Get FBref match lineups — fb_match_lineups","text":"Returns lineups home away teams selected match Replaces deprecated function get_match_lineups","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_lineups.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref match lineups — fb_match_lineups","text":"","code":"fb_match_lineups(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_lineups.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref match lineups — fb_match_lineups","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_lineups.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref match lineups — fb_match_lineups","text":"returns dataframe team lineups selected match","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_lineups.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref match lineups — fb_match_lineups","text":"","code":"if (FALSE) { try({ match <- fb_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\")[1] df <- fb_match_lineups(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_report.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref match report — fb_match_report","title":"Get FBref match report — fb_match_report","text":"Returns match report details selected matches. Replaces deprecated function get_match_report","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_report.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref match report — fb_match_report","text":"","code":"fb_match_report(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_report.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref match report — fb_match_report","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_report.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref match report — fb_match_report","text":"returns dataframe match details selected match","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_report.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref match report — fb_match_report","text":"","code":"if (FALSE) { try({ match <- fb_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\")[1] df <- fb_match_report(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_results.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref match results — fb_match_results","title":"Get FBref match results — fb_match_results","text":"Returns game results given league season(s) Replaces deprecated function get_match_results","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_results.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref match results — fb_match_results","text":"","code":"fb_match_results( country, gender, season_end_year, tier = \"1st\", non_dom_league_url = NA )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_results.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref match results — fb_match_results","text":"country three character country code gender gender competition, either \"M\" \"F\" season_end_year year(s) season concludes tier tier league, ie '1st' EPL '2nd' Championship non_dom_league_url URL Cups Competitions found https://fbref.com/en/comps/","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_results.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref match results — fb_match_results","text":"returns dataframe results competition, season gender","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_results.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref match results — fb_match_results","text":"","code":"if (FALSE) { try({ df <- fb_match_results(country = c(\"ITA\"), gender = \"M\", season_end_year = 2021) # for results from English Championship: df <- fb_match_results(country = \"ENG\", gender = \"M\", season_end_year = 2021, tier = \"2nd\") # for international friendlies: }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_shooting.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref match shooting event data — fb_match_shooting","title":"Get FBref match shooting event data — fb_match_shooting","text":"Returns detailed player shooting data home away teams selected match(es) Replaces deprecated function get_match_shooting","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_shooting.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref match shooting event data — fb_match_shooting","text":"","code":"fb_match_shooting(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_shooting.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref match shooting event data — fb_match_shooting","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_shooting.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref match shooting event data — fb_match_shooting","text":"returns dataframe","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_shooting.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref match shooting event data — fb_match_shooting","text":"","code":"if (FALSE) { try({ match <- \"https://fbref.com/en/matches/bf52349b/Fulham-Arsenal-September-12-2020-Premier-League\" df <- fb_match_shooting(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_summary.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref match summary — fb_match_summary","title":"Get FBref match summary — fb_match_summary","text":"Returns match summary data selected match URLs, including goals, subs cards Replaces deprecated function get_match_summary","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_summary.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref match summary — fb_match_summary","text":"","code":"fb_match_summary(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_summary.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref match summary — fb_match_summary","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_summary.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref match summary — fb_match_summary","text":"returns dataframe match events (goals, cards, subs) selected matches","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_summary.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref match summary — fb_match_summary","text":"","code":"if (FALSE) { try({ match <- fb_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\")[1] df <- fb_match_summary(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref match URLs — fb_match_urls","title":"Get FBref match URLs — fb_match_urls","text":"Returns URL match played given league season Replaces deprecated get_match_urls","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref match URLs — fb_match_urls","text":"","code":"fb_match_urls( country, gender, season_end_year, tier = \"1st\", non_dom_league_url = NA, time_pause = 3 )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref match URLs — fb_match_urls","text":"country three character country code gender gender competition, either \"M\" \"F\", season_end_year year season(s) concludes tier tier league, ie '1st' EPL '2nd' Championship non_dom_league_url URL Cups Competitions found https://fbref.com/en/comps/ time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref match URLs — fb_match_urls","text":"returns character vector fbref match URLs selected competition, season gender","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_urls.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref match URLs — fb_match_urls","text":"","code":"if (FALSE) { try({ fb_match_urls(country = \"ENG\", gender = \"M\", season_end_year = c(2019:2021), tier = \"1st\") non_dom <- \"https://fbref.com/en/comps/218/history/Friendlies-M-Seasons\" fb_match_urls(country = \"\", gender = \"M\", season_end_year = 2021, non_dom_league_url = non_dom) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_goal_logs.html","id":null,"dir":"Reference","previous_headings":"","what":"Get player goal logs — fb_player_goal_logs","title":"Get player goal logs — fb_player_goal_logs","text":"Returns player's career goal assist logs","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_goal_logs.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get player goal logs — fb_player_goal_logs","text":"","code":"fb_player_goal_logs(player_urls, time_pause = 3, goals_or_assists = \"goals\")"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_goal_logs.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get player goal logs — fb_player_goal_logs","text":"player_urls URL(s) player(s) time_pause wait time (seconds) page loads goals_or_assists select whether return data \"goals\" (default), \"assists\", \"\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_goal_logs.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get player goal logs — fb_player_goal_logs","text":"returns dataframe player's goals assists","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_goal_logs.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get player goal logs — fb_player_goal_logs","text":"","code":"if (FALSE) { try({ # for single players: jwp_url <- \"https://fbref.com/en/players/3515d404/\" fb_player_goal_logs(player_urls = jwp_url, goals_or_assists = \"goals\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_match_logs.html","id":null,"dir":"Reference","previous_headings":"","what":"Get fbref Player Match Logs — fb_player_match_logs","title":"Get fbref Player Match Logs — fb_player_match_logs","text":"Returns match logs selected player, season stat type","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_match_logs.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get fbref Player Match Logs — fb_player_match_logs","text":"","code":"fb_player_match_logs(player_url, season_end_year, stat_type, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_match_logs.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get fbref Player Match Logs — fb_player_match_logs","text":"player_url URL player (can come fb_player_urls()) season_end_year year season(s) concludes stat_type type statistic required time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"summary\", \"keepers\", \"passing\", \"passing_types\", \"gca\", \"defense\", \"possession\", \"misc\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_match_logs.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get fbref Player Match Logs — fb_player_match_logs","text":"returns dataframe player's match logs season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_match_logs.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get fbref Player Match Logs — fb_player_match_logs","text":"","code":"# \\donttest{ try({ fb_player_match_logs(\"https://fbref.com/en/players/3bb7b8b4/Ederson\", season_end_year = 2021, stat_type = 'summary') }) #> Player Season Date Day Comp Round Venue #> 1 Ederson 2020-2021 2020-09-21 Mon Premier League Matchweek 2 Away #> 2 Ederson 2020-2021 2020-09-27 Sun Premier League Matchweek 3 Home #> 3 Ederson 2020-2021 2020-09-30 Wed EFL Cup Fourth round Away #> 4 Ederson 2020-2021 2020-10-03 Sat Premier League Matchweek 4 Away #> 5 Ederson 2020-2021 2020-10-09 Fri WCQ WCQ — CONMEBOL (M) Home #> 6 Ederson 2020-2021 2020-10-13 Tue WCQ WCQ — CONMEBOL (M) Away #> 7 Ederson 2020-2021 2020-10-17 Sat Premier League Matchweek 5 Home #> 8 Ederson 2020-2021 2020-10-21 Wed Champions Lg Group stage Home #> 9 Ederson 2020-2021 2020-10-24 Sat Premier League Matchweek 6 Away #> 10 Ederson 2020-2021 2020-10-27 Tue Champions Lg Group stage Away #> 11 Ederson 2020-2021 2020-10-31 Sat Premier League Matchweek 7 Away #> 12 Ederson 2020-2021 2020-11-03 Tue Champions Lg Group stage Home #> 13 Ederson 2020-2021 2020-11-08 Sun Premier League Matchweek 8 Home #> 14 Ederson 2020-2021 2020-11-13 Fri WCQ WCQ — CONMEBOL (M) Home #> 15 Ederson 2020-2021 2020-11-17 Tue WCQ WCQ — CONMEBOL (M) Away #> 16 Ederson 2020-2021 2020-11-21 Sat Premier League Matchweek 9 Away #> 17 Ederson 2020-2021 2020-11-25 Wed Champions Lg Group stage Away #> 18 Ederson 2020-2021 2020-11-28 Sat Premier League Matchweek 10 Home #> 19 Ederson 2020-2021 2020-12-01 Tue Champions Lg Group stage Away #> 20 Ederson 2020-2021 2020-12-05 Sat Premier League Matchweek 11 Home #> 21 Ederson 2020-2021 2020-12-12 Sat Premier League Matchweek 12 Away #> 22 Ederson 2020-2021 2020-12-15 Tue Premier League Matchweek 13 Home #> 23 Ederson 2020-2021 2020-12-19 Sat Premier League Matchweek 14 Away #> 24 Ederson 2020-2021 2020-12-22 Tue EFL Cup Quarter-finals Away #> 25 Ederson 2020-2021 2020-12-26 Sat Premier League Matchweek 15 Home #> 26 Ederson 2020-2021 2021-01-10 Sun FA Cup Third round proper Home #> 27 Ederson 2020-2021 2021-01-13 Wed Premier League Matchweek 18 Home #> 28 Ederson 2020-2021 2021-01-17 Sun Premier League Matchweek 19 Home #> 29 Ederson 2020-2021 2021-01-20 Wed Premier League Matchweek 1 Home #> 30 Ederson 2020-2021 2021-01-23 Sat FA Cup Fourth round proper Away #> 31 Ederson 2020-2021 2021-01-26 Tue Premier League Matchweek 20 Away #> 32 Ederson 2020-2021 2021-01-30 Sat Premier League Matchweek 21 Home #> 33 Ederson 2020-2021 2021-02-03 Wed Premier League Matchweek 22 Away #> 34 Ederson 2020-2021 2021-02-07 Sun Premier League Matchweek 23 Away #> 35 Ederson 2020-2021 2021-02-10 Wed FA Cup Fifth round proper Away #> 36 Ederson 2020-2021 2021-02-13 Sat Premier League Matchweek 24 Home #> 37 Ederson 2020-2021 2021-02-17 Wed Premier League Matchweek 16 Away #> 38 Ederson 2020-2021 2021-02-21 Sun Premier League Matchweek 25 Away #> 39 Ederson 2020-2021 2021-02-24 Wed Champions Lg Round of 16 Neutral #> 40 Ederson 2020-2021 2021-02-27 Sat Premier League Matchweek 26 Home #> 41 Ederson 2020-2021 2021-03-02 Tue Premier League Matchweek 29 Home #> 42 Ederson 2020-2021 2021-03-07 Sun Premier League Matchweek 27 Home #> 43 Ederson 2020-2021 2021-03-10 Wed Premier League Matchweek 33 Home #> 44 Ederson 2020-2021 2021-03-13 Sat Premier League Matchweek 28 Away #> 45 Ederson 2020-2021 2021-03-16 Tue Champions Lg Round of 16 Neutral #> 46 Ederson 2020-2021 2021-03-20 Sat FA Cup Quarter-finals Away #> 47 Ederson 2020-2021 2021-04-03 Sat Premier League Matchweek 30 Away #> 48 Ederson 2020-2021 2021-04-06 Tue Champions Lg Quarter-finals Home #> 49 Ederson 2020-2021 2021-04-10 Sat Premier League Matchweek 31 Home #> 50 Ederson 2020-2021 2021-04-14 Wed Champions Lg Quarter-finals Away #> 51 Ederson 2020-2021 2021-04-17 Sat FA Cup Semi-finals Away #> 52 Ederson 2020-2021 2021-04-21 Wed Premier League Matchweek 32 Away #> 53 Ederson 2020-2021 2021-04-25 Sun EFL Cup Final Home #> 54 Ederson 2020-2021 2021-04-28 Wed Champions Lg Semi-finals Away #> 55 Ederson 2020-2021 2021-05-01 Sat Premier League Matchweek 34 Away #> 56 Ederson 2020-2021 2021-05-04 Tue Champions Lg Semi-finals Home #> 57 Ederson 2020-2021 2021-05-08 Sat Premier League Matchweek 35 Home #> 58 Ederson 2020-2021 2021-05-18 Tue Premier League Matchweek 37 Away #> 59 Ederson 2020-2021 2021-05-23 Sun Premier League Matchweek 38 Home #> 60 Ederson 2020-2021 2021-05-29 Sat Champions Lg Final Neutral #> 61 Ederson 2020-2021 2021-06-04 Fri WCQ WCQ — CONMEBOL (M) Home #> 62 Ederson 2020-2021 2021-06-08 Tue WCQ WCQ — CONMEBOL (M) Away #> 63 Ederson 2020-2021 2021-06-13 Sun Copa América Group stage Neutral #> 64 Ederson 2020-2021 2021-06-17 Thu Copa América Group stage Neutral #> 65 Ederson 2020-2021 2021-06-23 Wed Copa América Group stage Neutral #> 66 Ederson 2020-2021 2021-06-27 Sun Copa América Group stage Neutral #> Result Squad Opponent Start #> 1 W 3–1 Manchester City Wolves Y #> 2 L 2–5 Manchester City Leicester City Y #> 3 W 3–0 Manchester City Burnley N #> 4 D 1–1 Manchester City Leeds United Y #> 5 W 5–0 Brazil Bolivia N #> 6 W 4–2 Brazil Peru N #> 7 W 1–0 Manchester City Arsenal Y #> 8 W 3–1 Manchester City Porto Y #> 9 D 1–1 Manchester City West Ham Y #> 10 W 3–0 Manchester City Marseille Y #> 11 W 1–0 Manchester City Sheffield Utd Y #> 12 W 3–0 Manchester City Olympiacos Y #> 13 D 1–1 Manchester City Liverpool Y #> 14 W 1–0 Brazil Venezuela Y #> 15 W 2–0 Brazil Uruguay Y #> 16 L 0–2 Manchester City Tottenham Y #> 17 W 1–0 Manchester City Olympiacos Y #> 18 W 5–0 Manchester City Burnley Y #> 19 D 0–0 Manchester City Porto Y #> 20 W 2–0 Manchester City Fulham Y #> 21 D 0–0 Manchester City Manchester Utd Y #> 22 D 1–1 Manchester City West Brom Y #> 23 W 1–0 Manchester City Southampton Y #> 24 W 4–1 Manchester City Arsenal N #> 25 W 2–0 Manchester City Newcastle Utd Y #> 26 W 3–0 Manchester City Birmingham City N #> 27 W 1–0 Manchester City Brighton Y #> 28 W 4–0 Manchester City Crystal Palace Y #> 29 W 2–0 Manchester City Aston Villa Y #> 30 W 3–1 Manchester City Cheltenham N #> 31 W 5–0 Manchester City West Brom Y #> 32 W 1–0 Manchester City Sheffield Utd Y #> 33 W 2–0 Manchester City Burnley Y #> 34 W 4–1 Manchester City Liverpool Y #> 35 W 3–1 Manchester City Swansea City N #> 36 W 3–0 Manchester City Tottenham Y #> 37 W 3–1 Manchester City Everton Y #> 38 W 1–0 Manchester City Arsenal Y #> 39 W 2–0 Manchester City M'Gladbach Y #> 40 W 2–1 Manchester City West Ham Y #> 41 W 4–1 Manchester City Wolves Y #> 42 L 0–2 Manchester City Manchester Utd Y #> 43 W 5–2 Manchester City Southampton Y #> 44 W 3–0 Manchester City Fulham Y #> 45 W 2–0 Manchester City M'Gladbach Y #> 46 W 2–0 Manchester City Everton N #> 47 W 2–0 Manchester City Leicester City Y #> 48 W 2–1 Manchester City Dortmund Y #> 49 L 1–2 Manchester City Leeds United Y #> 50 W 2–1 Manchester City Dortmund Y #> 51 L 0–1 Manchester City Chelsea N #> 52 W 2–1 Manchester City Aston Villa Y #> 53 W 1–0 Manchester City Tottenham N #> 54 W 2–1 Manchester City Paris S-G Y #> 55 W 2–0 Manchester City Crystal Palace Y #> 56 W 2–0 Manchester City Paris S-G Y #> 57 L 1–2 Manchester City Chelsea Y #> 58 L 2–3 Manchester City Brighton Y #> 59 W 5–0 Manchester City Everton Y #> 60 L 0–1 Manchester City Chelsea Y #> 61 W 2–0 Brazil Ecuador N #> 62 W 2–0 Brazil Paraguay Y #> 63 W 3–0 Brazil Venezuela N #> 64 W 4–0 Brazil Peru Y #> 65 W 2–1 Brazil Colombia N #> 66 D 1–1 Brazil Ecuador N #> Pos Min Gls_Performance Ast_Performance #> 1 GK 90 0 0 #> 2 GK 90 0 0 #> 3 On matchday squad, but did not play NA NA NA #> 4 GK 90 0 0 #> 5 On matchday squad, but did not play NA NA NA #> 6 On matchday squad, but did not play NA NA NA #> 7 GK 90 0 0 #> 8 GK 90 0 0 #> 9 GK 90 0 0 #> 10 GK 90 0 0 #> 11 GK 90 0 0 #> 12 GK 90 0 0 #> 13 GK 90 0 0 #> 14 GK 90 0 0 #> 15 GK 90 0 0 #> 16 GK 90 0 0 #> 17 GK 90 0 0 #> 18 GK 90 0 0 #> 19 GK 90 0 0 #> 20 GK 90 0 0 #> 21 GK 90 0 0 #> 22 GK 90 0 0 #> 23 GK 90 0 0 #> 24 On matchday squad, but did not play NA NA NA #> 25 GK 90 0 0 #> 26 On matchday squad, but did not play NA NA NA #> 27 GK 90 0 0 #> 28 GK 90 0 0 #> 29 GK 90 0 0 #> 30 On matchday squad, but did not play NA NA NA #> 31 GK 90 0 0 #> 32 GK 90 0 0 #> 33 GK 90 0 0 #> 34 GK 90 0 0 #> 35 On matchday squad, but did not play NA NA NA #> 36 GK 90 0 1 #> 37 GK 90 0 0 #> 38 GK 90 0 0 #> 39 GK 90 0 0 #> 40 GK 90 0 0 #> 41 GK 90 0 0 #> 42 GK 90 0 0 #> 43 GK 90 0 0 #> 44 GK 90 0 0 #> 45 GK 90 0 0 #> 46 On matchday squad, but did not play NA NA NA #> 47 GK 90 0 0 #> 48 GK 90 0 0 #> 49 GK 90 0 0 #> 50 GK 90 0 0 #> 51 On matchday squad, but did not play NA NA NA #> 52 GK 90 0 0 #> 53 On matchday squad, but did not play NA NA NA #> 54 GK 90 0 0 #> 55 GK 90 0 0 #> 56 GK 90 0 0 #> 57 GK 90 0 0 #> 58 GK 90 0 0 #> 59 GK 90 0 0 #> 60 GK 90 0 0 #> 61 On matchday squad, but did not play NA NA NA #> 62 GK 90 0 0 #> 63 On matchday squad, but did not play NA NA NA #> 64 GK 90 0 0 #> 65 On matchday squad, but did not play NA NA NA #> 66 On matchday squad, but did not play NA NA NA #> PK_Performance PKatt_Performance Sh_Performance SoT_Performance #> 1 0 0 0 0 #> 2 0 0 0 0 #> 3 NA NA NA NA #> 4 0 0 0 0 #> 5 NA NA NA NA #> 6 NA NA NA NA #> 7 0 0 0 0 #> 8 0 0 0 0 #> 9 0 0 0 0 #> 10 0 0 0 0 #> 11 0 0 0 0 #> 12 0 0 0 0 #> 13 0 0 0 0 #> 14 0 0 0 0 #> 15 0 0 0 0 #> 16 0 0 0 0 #> 17 0 0 0 0 #> 18 0 0 0 0 #> 19 0 0 0 0 #> 20 0 0 0 0 #> 21 0 0 0 0 #> 22 0 0 0 0 #> 23 0 0 0 0 #> 24 NA NA NA NA #> 25 0 0 0 0 #> 26 NA NA NA NA #> 27 0 0 0 0 #> 28 0 0 0 0 #> 29 0 0 0 0 #> 30 NA NA NA NA #> 31 0 0 0 0 #> 32 0 0 0 0 #> 33 0 0 0 0 #> 34 0 0 0 0 #> 35 NA NA NA NA #> 36 0 0 0 0 #> 37 0 0 0 0 #> 38 0 0 0 0 #> 39 0 0 0 0 #> 40 0 0 0 0 #> 41 0 0 0 0 #> 42 0 0 0 0 #> 43 0 0 0 0 #> 44 0 0 0 0 #> 45 0 0 0 0 #> 46 NA NA NA NA #> 47 0 0 0 0 #> 48 0 0 0 0 #> 49 0 0 0 0 #> 50 0 0 0 0 #> 51 NA NA NA NA #> 52 0 0 0 0 #> 53 NA NA NA NA #> 54 0 0 0 0 #> 55 0 0 0 0 #> 56 0 0 0 0 #> 57 0 0 0 0 #> 58 0 0 0 0 #> 59 0 0 0 0 #> 60 0 0 0 0 #> 61 NA NA NA NA #> 62 0 0 0 0 #> 63 NA NA NA NA #> 64 0 0 0 0 #> 65 NA NA NA NA #> 66 NA NA NA NA #> CrdY_Performance CrdR_Performance Touches_Performance Tkl_Performance #> 1 0 0 39 0 #> 2 0 0 22 0 #> 3 NA NA NA NA #> 4 0 0 36 0 #> 5 NA NA NA NA #> 6 NA NA NA NA #> 7 0 0 49 0 #> 8 0 0 38 0 #> 9 0 0 26 0 #> 10 0 0 22 0 #> 11 0 0 37 0 #> 12 0 0 31 0 #> 13 0 0 41 1 #> 14 0 0 NA NA #> 15 0 0 NA NA #> 16 0 0 14 0 #> 17 0 0 22 0 #> 18 0 0 34 0 #> 19 0 0 23 0 #> 20 0 0 31 0 #> 21 0 0 34 0 #> 22 0 0 23 0 #> 23 1 0 36 0 #> 24 NA NA NA NA #> 25 0 0 34 0 #> 26 NA NA NA NA #> 27 0 0 39 0 #> 28 0 0 20 0 #> 29 0 0 25 0 #> 30 NA NA NA NA #> 31 0 0 25 0 #> 32 0 0 28 0 #> 33 1 0 38 0 #> 34 0 0 30 0 #> 35 NA NA NA NA #> 36 0 0 28 0 #> 37 0 0 29 0 #> 38 0 0 44 0 #> 39 0 0 40 0 #> 40 0 0 37 0 #> 41 0 0 32 0 #> 42 0 0 32 0 #> 43 0 0 50 0 #> 44 0 0 35 0 #> 45 0 0 38 0 #> 46 NA NA NA NA #> 47 1 0 24 0 #> 48 0 0 24 0 #> 49 0 0 20 1 #> 50 0 0 25 0 #> 51 NA NA NA NA #> 52 0 0 38 0 #> 53 NA NA NA NA #> 54 0 0 28 0 #> 55 0 0 26 0 #> 56 0 0 24 0 #> 57 0 0 37 0 #> 58 0 0 43 0 #> 59 0 0 38 1 #> 60 0 0 28 0 #> 61 NA NA NA NA #> 62 0 0 NA NA #> 63 NA NA NA NA #> 64 0 0 23 0 #> 65 NA NA NA NA #> 66 NA NA NA NA #> Int_Performance Blocks_Performance xG_Expected npxG_Expected xAG_Expected #> 1 0 0 0 0 0.0 #> 2 0 0 0 0 0.0 #> 3 NA NA NA NA NA #> 4 0 0 0 0 0.0 #> 5 NA NA NA NA NA #> 6 NA NA NA NA NA #> 7 0 0 0 0 0.0 #> 8 0 0 0 0 0.0 #> 9 0 0 0 0 0.0 #> 10 0 0 0 0 0.0 #> 11 0 0 0 0 0.0 #> 12 0 0 0 0 0.0 #> 13 0 0 0 0 0.0 #> 14 0 NA NA NA NA #> 15 0 NA NA NA NA #> 16 0 0 0 0 0.0 #> 17 0 0 0 0 0.0 #> 18 0 0 0 0 0.0 #> 19 0 0 0 0 0.0 #> 20 0 0 0 0 0.0 #> 21 0 0 0 0 0.0 #> 22 0 0 0 0 0.0 #> 23 0 0 0 0 0.0 #> 24 NA NA NA NA NA #> 25 0 0 0 0 0.0 #> 26 NA NA NA NA NA #> 27 0 0 0 0 0.0 #> 28 0 0 0 0 0.0 #> 29 0 0 0 0 0.0 #> 30 NA NA NA NA NA #> 31 0 0 0 0 0.0 #> 32 0 0 0 0 0.0 #> 33 0 0 0 0 0.0 #> 34 0 0 0 0 0.0 #> 35 NA NA NA NA NA #> 36 0 0 0 0 0.3 #> 37 0 0 0 0 0.0 #> 38 0 0 0 0 0.0 #> 39 0 0 0 0 0.0 #> 40 0 0 0 0 0.0 #> 41 0 0 0 0 0.0 #> 42 0 0 0 0 0.0 #> 43 0 0 0 0 0.0 #> 44 0 0 0 0 0.0 #> 45 0 0 0 0 0.0 #> 46 NA NA NA NA NA #> 47 0 0 0 0 0.0 #> 48 0 0 0 0 0.0 #> 49 0 0 0 0 0.0 #> 50 0 0 0 0 0.0 #> 51 NA NA NA NA NA #> 52 0 0 0 0 0.0 #> 53 NA NA NA NA NA #> 54 0 0 0 0 0.0 #> 55 0 0 0 0 0.0 #> 56 0 0 0 0 0.0 #> 57 0 0 0 0 0.0 #> 58 0 0 0 0 0.0 #> 59 0 0 0 0 0.0 #> 60 0 0 0 0 0.0 #> 61 NA NA NA NA NA #> 62 0 NA NA NA NA #> 63 NA NA NA NA NA #> 64 0 0 0 0 0.0 #> 65 NA NA NA NA NA #> 66 NA NA NA NA NA #> SCA_SCA GCA_SCA Cmp_Passes Att_Passes Cmp_percent_Passes PrgP_Passes #> 1 0 0 33 39 84.6 0 #> 2 0 0 15 15 100.0 0 #> 3 NA NA NA NA NA NA #> 4 0 0 25 31 80.6 0 #> 5 NA NA NA NA NA NA #> 6 NA NA NA NA NA NA #> 7 0 0 29 46 63.0 0 #> 8 0 0 31 38 81.6 0 #> 9 0 0 25 26 96.2 0 #> 10 0 0 19 21 90.5 0 #> 11 0 0 29 36 80.6 0 #> 12 0 0 27 31 87.1 0 #> 13 0 0 33 37 89.2 0 #> 14 NA NA NA NA NA NA #> 15 NA NA NA NA NA NA #> 16 0 0 12 14 85.7 0 #> 17 0 0 16 22 72.7 0 #> 18 0 0 29 33 87.9 0 #> 19 0 0 17 20 85.0 1 #> 20 0 0 26 30 86.7 0 #> 21 0 0 25 34 73.5 0 #> 22 1 0 22 22 100.0 0 #> 23 0 0 27 35 77.1 0 #> 24 NA NA NA NA NA NA #> 25 0 0 27 33 81.8 0 #> 26 NA NA NA NA NA NA #> 27 0 0 32 39 82.1 0 #> 28 0 0 18 20 90.0 0 #> 29 0 0 20 23 87.0 0 #> 30 NA NA NA NA NA NA #> 31 0 0 20 22 90.9 0 #> 32 0 0 25 28 89.3 0 #> 33 1 0 31 36 86.1 0 #> 34 0 0 22 28 78.6 0 #> 35 NA NA NA NA NA NA #> 36 1 1 24 27 88.9 0 #> 37 0 0 25 29 86.2 0 #> 38 0 0 30 44 68.2 0 #> 39 0 0 35 40 87.5 0 #> 40 0 0 29 37 78.4 0 #> 41 0 0 28 31 90.3 0 #> 42 0 0 27 30 90.0 0 #> 43 1 0 40 46 87.0 0 #> 44 0 0 32 35 91.4 0 #> 45 0 0 36 38 94.7 0 #> 46 NA NA NA NA NA NA #> 47 0 0 19 24 79.2 0 #> 48 0 0 20 23 87.0 0 #> 49 1 0 20 20 100.0 0 #> 50 0 0 21 25 84.0 0 #> 51 NA NA NA NA NA NA #> 52 0 0 32 38 84.2 1 #> 53 NA NA NA NA NA NA #> 54 0 0 22 24 91.7 0 #> 55 0 0 25 25 100.0 0 #> 56 1 0 20 23 87.0 0 #> 57 1 0 31 35 88.6 0 #> 58 0 0 22 41 53.7 0 #> 59 0 0 30 33 90.9 0 #> 60 1 0 23 28 82.1 0 #> 61 NA NA NA NA NA NA #> 62 NA NA NA NA NA NA #> 63 NA NA NA NA NA NA #> 64 0 0 21 23 91.3 0 #> 65 NA NA NA NA NA NA #> 66 NA NA NA NA NA NA #> Carries_Carries PrgC_Carries Att_Take_Ons Succ_Take_Ons #> 1 24 0 0 0 #> 2 11 0 0 0 #> 3 NA NA NA NA #> 4 19 0 0 0 #> 5 NA NA NA NA #> 6 NA NA NA NA #> 7 28 0 0 0 #> 8 23 0 0 0 #> 9 21 0 0 0 #> 10 15 0 0 0 #> 11 27 0 0 0 #> 12 22 0 0 0 #> 13 26 0 0 0 #> 14 NA NA NA NA #> 15 NA NA NA NA #> 16 7 0 0 0 #> 17 13 0 0 0 #> 18 18 0 0 0 #> 19 10 0 0 0 #> 20 14 0 0 0 #> 21 23 0 0 0 #> 22 14 0 0 0 #> 23 23 0 0 0 #> 24 NA NA NA NA #> 25 18 0 0 0 #> 26 NA NA NA NA #> 27 24 0 0 0 #> 28 16 0 0 0 #> 29 15 0 0 0 #> 30 NA NA NA NA #> 31 13 0 0 0 #> 32 21 0 0 0 #> 33 27 0 0 0 #> 34 23 0 0 0 #> 35 NA NA NA NA #> 36 23 0 0 0 #> 37 24 0 0 0 #> 38 23 0 0 0 #> 39 34 0 0 0 #> 40 28 0 0 0 #> 41 20 0 0 0 #> 42 25 0 0 0 #> 43 32 0 0 0 #> 44 25 0 0 0 #> 45 23 0 0 0 #> 46 NA NA NA NA #> 47 16 0 0 0 #> 48 17 0 0 0 #> 49 17 0 0 0 #> 50 18 0 0 0 #> 51 NA NA NA NA #> 52 24 0 0 0 #> 53 NA NA NA NA #> 54 12 0 0 0 #> 55 18 0 0 0 #> 56 15 0 0 0 #> 57 18 0 0 0 #> 58 23 0 0 0 #> 59 27 0 0 0 #> 60 16 0 0 0 #> 61 NA NA NA NA #> 62 NA NA NA NA #> 63 NA NA NA NA #> 64 18 0 0 0 #> 65 NA NA NA NA #> 66 NA NA NA NA # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_scouting_report.html","id":null,"dir":"Reference","previous_headings":"","what":"Get fbref Full Player Scouting Report — fb_player_scouting_report","title":"Get fbref Full Player Scouting Report — fb_player_scouting_report","text":"Returns scouting report selected player","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_scouting_report.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get fbref Full Player Scouting Report — fb_player_scouting_report","text":"","code":"fb_player_scouting_report( player_url, pos_versus, league_comp_name = NULL, time_pause = 3 )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_scouting_report.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get fbref Full Player Scouting Report — fb_player_scouting_report","text":"player_url URL player (can come fb_player_urls()) pos_versus either \"primary\" \"secondary\" fbref offer comparisons multiple positions league_comp_name league competition name(s) want scouting report . Defaults time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_scouting_report.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get fbref Full Player Scouting Report — fb_player_scouting_report","text":"returns dataframe player's full scouting information seasons available FBref","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_scouting_report.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get fbref Full Player Scouting Report — fb_player_scouting_report","text":"","code":"if (FALSE) { try({ fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"primary\") # to filter for the last 365 days: fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"primary\", league_comp_name = \"Last 365 Days Men's Big 5 Leagues, UCL, UEL\") # to get secondary positions fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"secondary\") # for the last 365 days and also the 2022 WC fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"secondary\", league_comp_name = c(\"Last 365 Days Men's Big 5 Leagues, UCL, UEL\", \"2022 World Cup\")) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_season_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get fbref Player Season Statistics — fb_player_season_stats","title":"Get fbref Player Season Statistics — fb_player_season_stats","text":"Returns historical season stats selected player(s) stat type","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_season_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get fbref Player Season Statistics — fb_player_season_stats","text":"","code":"fb_player_season_stats(player_url, stat_type, national = FALSE, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_season_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get fbref Player Season Statistics — fb_player_season_stats","text":"player_url URL(s) player(s) (can come fb_player_urls()) stat_type type statistic required national category required stats, FALSE Club Stats TRUE National Team Stats time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"standard\", \"shooting\", \"passing\", \"passing_types\", \"gca\", \"defense\", \"possession\" \"playing_time\", \"misc\", \"keeper\", \"keeper_adv\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_season_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get fbref Player Season Statistics — fb_player_season_stats","text":"returns dataframe player's historical season stats","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_season_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get fbref Player Season Statistics — fb_player_season_stats","text":"","code":"if (FALSE) { try({ standard_stats <- fb_player_season_stats( \"https://fbref.com/en/players/3bb7b8b4/Ederson\", stat_type = \"standard\" ) multiple_playing_time <- fb_player_season_stats( player_url = c( \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", \"https://fbref.com/en/players/dea698d9/Cristiano-Ronaldo\" ), stat_type = \"playing_time\" ) national_standard_stats <- fb_player_season_stats( \"https://fbref.com/en/players/3bb7b8b4/Ederson\", stat_type = \"standard\", national = TRUE ) multiple_national_playing_time <- fb_player_season_stats( player_url = c( \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", \"https://fbref.com/en/players/dea698d9/Cristiano-Ronaldo\" ), stat_type = \"playing_time\", national = TRUE ) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get fbref Player URLs — fb_player_urls","title":"Get fbref Player URLs — fb_player_urls","text":"Returns URLs players given team","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get fbref Player URLs — fb_player_urls","text":"","code":"fb_player_urls(team_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get fbref Player URLs — fb_player_urls","text":"team_url player's team URL (can fb_team_urls()) time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get fbref Player URLs — fb_player_urls","text":"returns character vector fbref player URLs selected team","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_urls.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get fbref Player URLs — fb_player_urls","text":"","code":"if (FALSE) { try({ fb_player_urls(\"https://fbref.com/en/squads/fd962109/Fulham-Stats\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_season_team_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref season team stats — fb_season_team_stats","title":"Get FBref season team stats — fb_season_team_stats","text":"Returns different team season statistics results given league season stat type Replaces deprecated function get_season_team_stats","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_season_team_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref season team stats — fb_season_team_stats","text":"","code":"fb_season_team_stats( country, gender, season_end_year, tier, stat_type, time_pause = 3 )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_season_team_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref season team stats — fb_season_team_stats","text":"country three character country code countries gender gender competition, either \"M\", \"F\" season_end_year year season(s) concludes tier tier league, ie '1st' EPL '2nd' Championship stat_type type team statistics user requires time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"league_table\", \"league_table_home_away\", \"standard\", \"keeper\", \"keeper_adv\", \"shooting\", \"passing\", \"passing_types\", \"goal_shot_creation\", \"defense\" , \"possession\", \"playing_time\", \"misc\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_season_team_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref season team stats — fb_season_team_stats","text":"returns dataframe selected team statistic type selected league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_season_team_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref season team stats — fb_season_team_stats","text":"","code":"if (FALSE) { try({ fb_season_team_stats(\"ITA\", \"M\", 2021, \"1st\", \"defense\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_squad_wages.html","id":null,"dir":"Reference","previous_headings":"","what":"Get team player wages — fb_squad_wages","title":"Get team player wages — fb_squad_wages","text":"Returns player wages FBref via Capology","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_squad_wages.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get team player wages — fb_squad_wages","text":"","code":"fb_squad_wages(team_urls, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_squad_wages.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get team player wages — fb_squad_wages","text":"team_urls URL(s) teams(s) (can come fb_teams_urls()) time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_squad_wages.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get team player wages — fb_squad_wages","text":"returns dataframe available estimated player wages selected team(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_squad_wages.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get team player wages — fb_squad_wages","text":"","code":"if (FALSE) { try({ # for single teams: man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" fb_squad_wages(team_urls = man_city_url) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_goal_logs.html","id":null,"dir":"Reference","previous_headings":"","what":"Get team goal logs — fb_team_goal_logs","title":"Get team goal logs — fb_team_goal_logs","text":"Returns team's season goal logs","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_goal_logs.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get team goal logs — fb_team_goal_logs","text":"","code":"fb_team_goal_logs(team_urls, time_pause = 3, for_or_against = \"for\")"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_goal_logs.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get team goal logs — fb_team_goal_logs","text":"team_urls URL(s) team(s) (can come fb_teams_urls()) time_pause wait time (seconds) page loads for_or_against select whether return data goals \"\" (default), goals \"\", \"\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_goal_logs.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get team goal logs — fb_team_goal_logs","text":"returns dataframe team's goals scored conceded season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_goal_logs.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get team goal logs — fb_team_goal_logs","text":"","code":"if (FALSE) { try({ # for single teams: man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" fb_team_goal_logs(team_urls = man_city_url, for_or_against = \"for\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_log_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get team match log stats — fb_team_match_log_stats","title":"Get team match log stats — fb_team_match_log_stats","text":"Returns match statistics team(s) given season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_log_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get team match log stats — fb_team_match_log_stats","text":"","code":"fb_team_match_log_stats(team_urls, stat_type, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_log_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get team match log stats — fb_team_match_log_stats","text":"team_urls URL(s) teams(s) (can come fb_teams_urls()) stat_type type statistic required time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"shooting\", \"keeper\", \"passing\", \"passing_types\", \"gca\", \"defense\", \"misc\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_log_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get team match log stats — fb_team_match_log_stats","text":"returns dataframe selected stat outputs games played selected team(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_log_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get team match log stats — fb_team_match_log_stats","text":"","code":"if (FALSE) { try({ # for single teams: man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" fb_team_match_log_stats(team_urls = man_city_url, stat_type = \"passing\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_results.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref team match results — fb_team_match_results","title":"Get FBref team match results — fb_team_match_results","text":"Returns game results team given season Replaces deprecated function get_team_match_results","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_results.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref team match results — fb_team_match_results","text":"","code":"fb_team_match_results(team_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_results.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref team match results — fb_team_match_results","text":"team_url URL team season time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_results.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref team match results — fb_team_match_results","text":"returns dataframe results games played selected team(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_results.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref team match results — fb_team_match_results","text":"","code":"if (FALSE) { try({ # for single teams: man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" fb_team_match_results(man_city_url) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref match team stats — fb_team_match_stats","title":"Get FBref match team stats — fb_team_match_stats","text":"Returns match team stats selected matches.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref match team stats — fb_team_match_stats","text":"","code":"fb_team_match_stats(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref match team stats — fb_team_match_stats","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref match team stats — fb_team_match_stats","text":"returns dataframe match team stats selected match","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref match team stats — fb_team_match_stats","text":"","code":"if (FALSE) { try({ match <- fb_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\")[1] df <- fb_team_match_stats(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_player_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get fbref Team's Player Season Statistics — fb_team_player_stats","title":"Get fbref Team's Player Season Statistics — fb_team_player_stats","text":"Returns team's players season stats selected team(s) stat type","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_player_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get fbref Team's Player Season Statistics — fb_team_player_stats","text":"","code":"fb_team_player_stats(team_urls, stat_type, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_player_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get fbref Team's Player Season Statistics — fb_team_player_stats","text":"team_urls URL(s) teams(s) (can come fb_teams_urls()) stat_type type statistic required time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"standard\", \"shooting\", \"passing\", \"passing_types\", \"gca\", \"defense\", \"possession\" \"playing_time\", \"misc\", \"keeper\", \"keeper_adv\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_player_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get fbref Team's Player Season Statistics — fb_team_player_stats","text":"returns dataframe players team's season stats","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_player_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get fbref Team's Player Season Statistics — fb_team_player_stats","text":"","code":"if (FALSE) { try({ fb_team_player_stats(\"https://fbref.com/en/squads/d6a369a2/Fleetwood-Town-Stats\", stat_type = 'standard') league_url <- fb_league_urls(country = \"ENG\", gender = \"M\", season_end_year = 2022, tier = \"3rd\") team_urls <- fb_teams_urls(league_url) multiple_playing_time <- fb_team_player_stats(team_urls, stat_type = \"playing_time\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_teams_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get fbref Team URLs — fb_teams_urls","title":"Get fbref Team URLs — fb_teams_urls","text":"Returns URLs teams given league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_teams_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get fbref Team URLs — fb_teams_urls","text":"","code":"fb_teams_urls(league_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_teams_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get fbref Team URLs — fb_teams_urls","text":"league_url league URL (can fb_league_urls()) time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_teams_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get fbref Team URLs — fb_teams_urls","text":"returns character vector fbref team URLs selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_teams_urls.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get fbref Team URLs — fb_teams_urls","text":"","code":"if (FALSE) { try({ fb_teams_urls(\"https://fbref.com/en/comps/9/Premier-League-Stats\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_advanced_match_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get advanced match stats — get_advanced_match_stats","title":"Get advanced match stats — get_advanced_match_stats","text":"Returns data frame selected statistics match, either whole team individual players. Multiple URLs can passed function, one `stat_type` can selected","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_advanced_match_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get advanced match stats — get_advanced_match_stats","text":"","code":"get_advanced_match_stats(match_url, stat_type, team_or_player, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_advanced_match_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get advanced match stats — get_advanced_match_stats","text":"match_url three character country code countries stat_type type team statistics user requires team_or_player result either summarised team, individual players time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"summary\", \"passing\", \"passing\"_types, \"defense\" , \"possession\", \"misc\", \"keeper\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_advanced_match_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get advanced match stats — get_advanced_match_stats","text":"returns dataframe selected team statistic type selected match(es)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_advanced_match_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get advanced match stats — get_advanced_match_stats","text":"","code":"if (FALSE) { try({ urls <- get_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\") df <- get_advanced_match_stats(match_url=urls,stat_type=\"possession\",team_or_player=\"player\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_lineups.html","id":null,"dir":"Reference","previous_headings":"","what":"Get match lineups — get_match_lineups","title":"Get match lineups — get_match_lineups","text":"Returns lineups home away teams selected match","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_lineups.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get match lineups — get_match_lineups","text":"","code":"get_match_lineups(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_lineups.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get match lineups — get_match_lineups","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_lineups.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get match lineups — get_match_lineups","text":"returns dataframe team lineups selected match","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_lineups.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get match lineups — get_match_lineups","text":"","code":"if (FALSE) { try({ match <- get_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\")[1] df <- get_match_lineups(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_report.html","id":null,"dir":"Reference","previous_headings":"","what":"Get match report — get_match_report","title":"Get match report — get_match_report","text":"Returns match report details selected matches","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_report.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get match report — get_match_report","text":"","code":"get_match_report(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_report.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get match report — get_match_report","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_report.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get match report — get_match_report","text":"returns dataframe match details selected match","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_report.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get match report — get_match_report","text":"","code":"if (FALSE) { try({ match <- get_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\")[1] df <- get_match_report(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_results.html","id":null,"dir":"Reference","previous_headings":"","what":"Get match results — get_match_results","title":"Get match results — get_match_results","text":"Returns game results given league season(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_results.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get match results — get_match_results","text":"","code":"get_match_results( country, gender, season_end_year, tier = \"1st\", non_dom_league_url = NA )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_results.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get match results — get_match_results","text":"country three character country code gender gender competition, either \"M\" \"F\" season_end_year year(s) season concludes tier tier league, ie '1st' EPL '2nd' Championship non_dom_league_url URL Cups Competitions found https://fbref.com/en/comps/","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_results.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get match results — get_match_results","text":"returns dataframe results competition, season gender","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_results.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get match results — get_match_results","text":"","code":"if (FALSE) { try({ df <- get_match_results(country = c(\"ITA\"), gender = \"M\", season_end_year = 2021) # for results from English Championship: df <- get_match_results(country = \"ENG\", gender = \"M\", season_end_year = 2021, tier = \"2nd\") # for international friendlies: }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_shooting.html","id":null,"dir":"Reference","previous_headings":"","what":"Get match shooting event data — get_match_shooting","title":"Get match shooting event data — get_match_shooting","text":"Returns detailed player shooting data home away teams selected match(es)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_shooting.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get match shooting event data — get_match_shooting","text":"","code":"get_match_shooting(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_shooting.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get match shooting event data — get_match_shooting","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_shooting.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get match shooting event data — get_match_shooting","text":"returns dataframe","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_shooting.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get match shooting event data — get_match_shooting","text":"","code":"if (FALSE) { try({ match <- \"https://fbref.com/en/matches/bf52349b/Fulham-Arsenal-September-12-2020-Premier-League\" df <- get_match_shooting(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_summary.html","id":null,"dir":"Reference","previous_headings":"","what":"Get match summary — get_match_summary","title":"Get match summary — get_match_summary","text":"Returns match summary data selected match URLs, including goals, subs cards","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_summary.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get match summary — get_match_summary","text":"","code":"get_match_summary(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_summary.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get match summary — get_match_summary","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_summary.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get match summary — get_match_summary","text":"returns dataframe match events (goals, cards, subs) selected matches","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_summary.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get match summary — get_match_summary","text":"","code":"if (FALSE) { try({ match <- get_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\")[1] df <- get_match_summary(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get match URLs — get_match_urls","title":"Get match URLs — get_match_urls","text":"Returns URL match played given league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get match URLs — get_match_urls","text":"","code":"get_match_urls( country, gender, season_end_year, tier = \"1st\", non_dom_league_url = NA, time_pause = 3 )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get match URLs — get_match_urls","text":"country three character country code gender gender competition, either \"M\" \"F\", season_end_year year season(s) concludes tier tier league, ie '1st' EPL '2nd' Championship non_dom_league_url URL Cups Competitions found https://fbref.com/en/comps/ time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get match URLs — get_match_urls","text":"returns character vector fbref match URLs selected competition, season gender","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_urls.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get match URLs — get_match_urls","text":"","code":"if (FALSE) { try({ get_match_urls(country = \"ENG\", gender = \"M\", season_end_year = c(2019:2021), tier = \"1st\") non_dom <- \"https://fbref.com/en/comps/218/history/Friendlies-M-Seasons\" get_match_urls(country = \"\", gender = \"M\", season_end_year = 2021, non_dom_league_url = non_dom) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_player_market_values.html","id":null,"dir":"Reference","previous_headings":"","what":"Get player market values — get_player_market_values","title":"Get player market values — get_player_market_values","text":"Returns data frame player valuations (Euros) transfermarkt.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_player_market_values.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get player market values — get_player_market_values","text":"","code":"get_player_market_values(country_name, start_year, league_url = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_player_market_values.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get player market values — get_player_market_values","text":"country_name country league's players start_year start year season (2020 20/21 season) league_url league url transfermarkt.com. used country_name available main function","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_player_market_values.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get player market values — get_player_market_values","text":"returns dataframe player valuations country/seasons","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_season_team_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get season team stats — get_season_team_stats","title":"Get season team stats — get_season_team_stats","text":"Returns different team season statistics results given league season stat type","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_season_team_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get season team stats — get_season_team_stats","text":"","code":"get_season_team_stats( country, gender, season_end_year, tier, stat_type, time_pause = 3 )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_season_team_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get season team stats — get_season_team_stats","text":"country three character country code countries gender gender competition, either \"M\", \"F\" season_end_year year season(s) concludes tier tier league, ie '1st' EPL '2nd' Championship stat_type type team statistics user requires time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"league_table\", \"league_table_home_away\", \"standard\", \"keeper\", \"keeper_adv\", \"shooting\", \"passing\", \"passing_types\", \"goal_shot_creation\", \"defense\" , \"possession\", \"playing_time\", \"misc\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_season_team_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get season team stats — get_season_team_stats","text":"returns dataframe selected team statistic type selected league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_season_team_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get season team stats — get_season_team_stats","text":"","code":"if (FALSE) { try({ get_season_team_stats(\"ITA\", \"M\", 2021, \"1st\", \"defense\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_team_match_results.html","id":null,"dir":"Reference","previous_headings":"","what":"Get team match results — get_team_match_results","title":"Get team match results — get_team_match_results","text":"Returns game results team given season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_team_match_results.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get team match results — get_team_match_results","text":"","code":"get_team_match_results(team_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_team_match_results.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get team match results — get_team_match_results","text":"team_url URL team season time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_team_match_results.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get team match results — get_team_match_results","text":"returns dataframe results games played selected team(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_team_match_results.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get team match results — get_team_match_results","text":"","code":"if (FALSE) { try({ # for single teams: man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" get_team_match_results(man_city_url) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_advanced_match_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Load pre-saved FBref match advanced stats — load_fb_advanced_match_stats","title":"Load pre-saved FBref match advanced stats — load_fb_advanced_match_stats","text":"Loading version fb_advanced_match_stats. leagues available.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_advanced_match_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Load pre-saved FBref match advanced stats — load_fb_advanced_match_stats","text":"","code":"load_fb_advanced_match_stats( country, gender, tier, stat_type, team_or_player, season_end_year = NA )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_advanced_match_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Load pre-saved FBref match advanced stats — load_fb_advanced_match_stats","text":"country three character country code gender gender competition, either \"M\" \"F\" tier tier league, ie '1st' EPL '2nd' Championship stat_type type team statistics user requires team_or_player result either summarised team, individual players season_end_year year(s) season concludes","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_advanced_match_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Load pre-saved FBref match advanced stats — load_fb_advanced_match_stats","text":"returns dataframe","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_advanced_match_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Load pre-saved FBref match advanced stats — load_fb_advanced_match_stats","text":"","code":"# \\donttest{ try({ load_fb_advanced_match_stats( country = \"ENG\", gender = \"M\", tier = \"1st\", stat_type = \"summary\", team_or_player = \"player\" ) load_fb_advanced_match_stats( country = c(\"ITA\", \"ESP\"), gender = \"M\", tier = \"1st\", season_end_year = 2023, stat_type = \"defense\", team_or_player = \"player\" ) }) #> → Data last updated 2024-05-07 18:36:11.7715599536896 UTC #> → Data last updated UTC #> MatchURL #> 1 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 2 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 3 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 4 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 5 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 6 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 7 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 8 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 9 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 10 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 11 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 12 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 13 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 14 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 15 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 16 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 17 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 18 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 19 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 20 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 21 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 22 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 23 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 24 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 25 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 26 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 27 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 28 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 29 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 30 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 31 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 32 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 33 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 34 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 35 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 36 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 37 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 38 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 39 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 40 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 41 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 42 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 43 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 44 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 45 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 46 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 47 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 48 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 49 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 50 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 51 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 52 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 53 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 54 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 55 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 56 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 57 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 58 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 59 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 60 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 61 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 62 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 63 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 64 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 65 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 66 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 67 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 68 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 69 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 70 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 71 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 72 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 73 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 74 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 75 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 76 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 77 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 78 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 79 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 80 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 81 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 82 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 83 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 84 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 85 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 86 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 87 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 88 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 89 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 90 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 91 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 92 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 93 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 94 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 95 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 96 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 97 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 98 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 99 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 100 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 101 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 102 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 103 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 104 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 105 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 106 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 107 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 108 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 109 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 110 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 111 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 112 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 113 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 114 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 115 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 116 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 117 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 118 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 119 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 120 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 121 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 122 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 123 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 124 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 125 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 126 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 127 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 128 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 129 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 130 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 131 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 132 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 133 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 134 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 135 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 136 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 137 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 138 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 139 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 140 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 141 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 142 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 143 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 144 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 145 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 146 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 147 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 148 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 149 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 150 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 151 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 152 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 153 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 154 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 155 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 156 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 157 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 158 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 159 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 160 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 161 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 162 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 163 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 164 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 165 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 166 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 167 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 168 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 169 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 170 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 171 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 172 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 173 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 174 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 175 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 176 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 177 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 178 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 179 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 180 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 181 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 182 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 183 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 184 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 185 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 186 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 187 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 188 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 189 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 190 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 191 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 192 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 193 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 194 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 195 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 196 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 197 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 198 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 199 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 200 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 201 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 202 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 203 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 204 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 205 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 206 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 207 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 208 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 209 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 210 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 211 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 212 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 213 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 214 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 215 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 216 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 217 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 218 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 219 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 220 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 221 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 222 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 223 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 224 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 225 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 226 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 227 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 228 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 229 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 230 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 231 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 232 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 233 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 234 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 235 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 236 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 237 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 238 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 239 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 240 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 241 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 242 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 243 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 244 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 245 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 246 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 247 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 248 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 249 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 250 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 251 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 252 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 253 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 254 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 255 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 256 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 257 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 258 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 259 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 260 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 261 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 262 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 263 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 264 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 265 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 266 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 267 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 268 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 269 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 270 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 271 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 272 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 273 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 274 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 275 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 276 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 277 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 278 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 279 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 280 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 281 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 282 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 283 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 284 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 285 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 286 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 287 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 288 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 289 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 290 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 291 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 292 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 293 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 294 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 295 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 296 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 297 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 298 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 299 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 300 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 301 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 302 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 303 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 304 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 305 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 306 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 307 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 308 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 309 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 310 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 311 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 312 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 313 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 314 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 315 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 316 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 317 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 318 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 319 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 320 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 321 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 322 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 323 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 324 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 325 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 326 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 327 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 328 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 329 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 330 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 331 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 332 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 333 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 334 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 335 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 336 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 337 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 338 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 339 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 340 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 341 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 342 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 343 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 344 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 345 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 346 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 347 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 348 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 349 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 350 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 351 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 352 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 353 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 354 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 355 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 356 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 357 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 358 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 359 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 360 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 361 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 362 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 363 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 364 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 365 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 366 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 367 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 368 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 369 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 370 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 371 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 372 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 373 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 374 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 375 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 376 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 377 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 378 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 379 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 380 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 381 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 382 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 383 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 384 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 385 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 386 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 387 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 388 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 389 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 390 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 391 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 392 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 393 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 394 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 395 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 396 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 397 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 398 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 399 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 400 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 401 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 402 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 403 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 404 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 405 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 406 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 407 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 408 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 409 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 410 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 411 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 412 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 413 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 414 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 415 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 416 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 417 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 418 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 419 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 420 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 421 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 422 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 423 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 424 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 425 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 426 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 427 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 428 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 429 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 430 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 431 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 432 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 433 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 434 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 435 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 436 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 437 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 438 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 439 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 440 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 441 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 442 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 443 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 444 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 445 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 446 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 447 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 448 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 449 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 450 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 451 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 452 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 453 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 454 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 455 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 456 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 457 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 458 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 459 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 460 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 461 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 462 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 463 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 464 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 465 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 466 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 467 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 468 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 469 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 470 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 471 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 472 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 473 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 474 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 475 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 476 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 477 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 478 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 479 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 480 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 481 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 482 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 483 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 484 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 485 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 486 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 487 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 488 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 489 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 490 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 491 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 492 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 493 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 494 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 495 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 496 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 497 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 498 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 499 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 500 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 501 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 502 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 503 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 504 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 505 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 506 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 507 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 508 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 509 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 510 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 511 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 512 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 513 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 514 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 515 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 516 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 517 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 518 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 519 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 520 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 521 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 522 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 523 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 524 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 525 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 526 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 527 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 528 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 529 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 530 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 531 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 532 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 533 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 534 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 535 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 536 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 537 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 538 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 539 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 540 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 541 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 542 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 543 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 544 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 545 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 546 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 547 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 548 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 549 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 550 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 551 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 552 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 553 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 554 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 555 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 556 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 557 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 558 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 559 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 560 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 561 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 562 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 563 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 564 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 565 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 566 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 567 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 568 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 569 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 570 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 571 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 572 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 573 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 574 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 575 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 576 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 577 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 578 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 579 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 580 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 581 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 582 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 583 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 584 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 585 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 586 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 587 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 588 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 589 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 590 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 591 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 592 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 593 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 594 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 595 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 596 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 597 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 598 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 599 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 600 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 601 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 602 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 603 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 604 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 605 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 606 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 607 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 608 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 609 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 610 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 611 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 612 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 613 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 614 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 615 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 616 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 617 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 618 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 619 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 620 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 621 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 622 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 623 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 624 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 625 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 626 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 627 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 628 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 629 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 630 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 631 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 632 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 633 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 634 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 635 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 636 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 637 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 638 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 639 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 640 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 641 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 642 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 643 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 644 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 645 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 646 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 647 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 648 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 649 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 650 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 651 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 652 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 653 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 654 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 655 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 656 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 657 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 658 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 659 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 660 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 661 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 662 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 663 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 664 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 665 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 666 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 667 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 668 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 669 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 670 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 671 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 672 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 673 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 674 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 675 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 676 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 677 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 678 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 679 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 680 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 681 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 682 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 683 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 684 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 685 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 686 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 687 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 688 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 689 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 690 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 691 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 692 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 693 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 694 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 695 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 696 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 697 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 698 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 699 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 700 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 701 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 702 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 703 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 704 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 705 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 706 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 707 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 708 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 709 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 710 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 711 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 712 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 713 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 714 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 715 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 716 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 717 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 718 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 719 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 720 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 721 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 722 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 723 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 724 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 725 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 726 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 727 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 728 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 729 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 730 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 731 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 732 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 733 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 734 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 735 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 736 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 737 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 738 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 739 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 740 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 741 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 742 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 743 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 744 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 745 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 746 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 747 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 748 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 749 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 750 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 751 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 752 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 753 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 754 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 755 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 756 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 757 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 758 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 759 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 760 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 761 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 762 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 763 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 764 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 765 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 766 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 767 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 768 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 769 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 770 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 771 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 772 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 773 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 774 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 775 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 776 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 777 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 778 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 779 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 780 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 781 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 782 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 783 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 784 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 785 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 786 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 787 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 788 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 789 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 790 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 791 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 792 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 793 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 794 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 795 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 796 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 797 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 798 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 799 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 800 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 801 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 802 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 803 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 804 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 805 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 806 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 807 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 808 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 809 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 810 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 811 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 812 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 813 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 814 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 815 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 816 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 817 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 818 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 819 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 820 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 821 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 822 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 823 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 824 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 825 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 826 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 827 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 828 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 829 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 830 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 831 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 832 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 833 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 834 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 835 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 836 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 837 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 838 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 839 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 840 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 841 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 842 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 843 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 844 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 845 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 846 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 847 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 848 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 849 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 850 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 851 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 852 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 853 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 854 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 855 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 856 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 857 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 858 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 859 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 860 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 861 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 862 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 863 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 864 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 865 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 866 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 867 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 868 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 869 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 870 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 871 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 872 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 873 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 874 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 875 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 876 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 877 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 878 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 879 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 880 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 881 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 882 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 883 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 884 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 885 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 886 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 887 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 888 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 889 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 890 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 891 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 892 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 893 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 894 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 895 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 896 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 897 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 898 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 899 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 900 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 901 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 902 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 903 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 904 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 905 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 906 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 907 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 908 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 909 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 910 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 911 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 912 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 913 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 914 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 915 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 916 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 917 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 918 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 919 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 920 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 921 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 922 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 923 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 924 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 925 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 926 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 927 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 928 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 929 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 930 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 931 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 932 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 933 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 934 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 935 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 936 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 937 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 938 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 939 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 940 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 941 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 942 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 943 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 944 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 945 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 946 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 947 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 948 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 949 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 950 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 951 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 952 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 953 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 954 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 955 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 956 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 957 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 958 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 959 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 960 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 961 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 962 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 963 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 964 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 965 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 966 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 967 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 968 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 969 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 970 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 971 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 972 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 973 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 974 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 975 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 976 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 977 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 978 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 979 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 980 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 981 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 982 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 983 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 984 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 985 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 986 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 987 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 988 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 989 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 990 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 991 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 992 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 993 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 994 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 995 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 996 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 997 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 998 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 999 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1000 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1001 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1002 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1003 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1004 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1005 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1006 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1007 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1008 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1009 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1010 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1011 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1012 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1013 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1014 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1015 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1016 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1017 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1018 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1019 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1020 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1021 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1022 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1023 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1024 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1025 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1026 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1027 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1028 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1029 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1030 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1031 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1032 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1033 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1034 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1035 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1036 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1037 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1038 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1039 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1040 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1041 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1042 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1043 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1044 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1045 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1046 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1047 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1048 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1049 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1050 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1051 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1052 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1053 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1054 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1055 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1056 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1057 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1058 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1059 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1060 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1061 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1062 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1063 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1064 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1065 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1066 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1067 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1068 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1069 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1070 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1071 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1072 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1073 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1074 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1075 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1076 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1077 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1078 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1079 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1080 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1081 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1082 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1083 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1084 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1085 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1086 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1087 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1088 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1089 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1090 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1091 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1092 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1093 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1094 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1095 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1096 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1097 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1098 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1099 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1100 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1101 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1102 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1103 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1104 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1105 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1106 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1107 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1108 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1109 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1110 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1111 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1112 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1113 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1114 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1115 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1116 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1117 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1118 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1119 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1120 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1121 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1122 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1123 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1124 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1125 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1126 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1127 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1128 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1129 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1130 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1131 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1132 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1133 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1134 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1135 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1136 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1137 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1138 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1139 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1140 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1141 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1142 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1143 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1144 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1145 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1146 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1147 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1148 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1149 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1150 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1151 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1152 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1153 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1154 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1155 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1156 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1157 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1158 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1159 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1160 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1161 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1162 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1163 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1164 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1165 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1166 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1167 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1168 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1169 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1170 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1171 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1172 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1173 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1174 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1175 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1176 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1177 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1178 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1179 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1180 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1181 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1182 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1183 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1184 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1185 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1186 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1187 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1188 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1189 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1190 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1191 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1192 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1193 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1194 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1195 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1196 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1197 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1198 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1199 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1200 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1201 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1202 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1203 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1204 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1205 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1206 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1207 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1208 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1209 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1210 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1211 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1212 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1213 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1214 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1215 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1216 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1217 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1218 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1219 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1220 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1221 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1222 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1223 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1224 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1225 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1226 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1227 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1228 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1229 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1230 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1231 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1232 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1233 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1234 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1235 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1236 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1237 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1238 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1239 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1240 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1241 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1242 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1243 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1244 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1245 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1246 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1247 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1248 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1249 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1250 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1251 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1252 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1253 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1254 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1255 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1256 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1257 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1258 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1259 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1260 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1261 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1262 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1263 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1264 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1265 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1266 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1267 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1268 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1269 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1270 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1271 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1272 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1273 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1274 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1275 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1276 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1277 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1278 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1279 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1280 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1281 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1282 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1283 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1284 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1285 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1286 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1287 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1288 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1289 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1290 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1291 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1292 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1293 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1294 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1295 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1296 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1297 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1298 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1299 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1300 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1301 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1302 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1303 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1304 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1305 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1306 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1307 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1308 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1309 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1310 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1311 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1312 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1313 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1314 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1315 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1316 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1317 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1318 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1319 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1320 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1321 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1322 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1323 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1324 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1325 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1326 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1327 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1328 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1329 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1330 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1331 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1332 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1333 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1334 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1335 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1336 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1337 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1338 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1339 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1340 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1341 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1342 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1343 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1344 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1345 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1346 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1347 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1348 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1349 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1350 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1351 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1352 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1353 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1354 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1355 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1356 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1357 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1358 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1359 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1360 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1361 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1362 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1363 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1364 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1365 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1366 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1367 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1368 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1369 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1370 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1371 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1372 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1373 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1374 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1375 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1376 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1377 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1378 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1379 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1380 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1381 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1382 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1383 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1384 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1385 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1386 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1387 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1388 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1389 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1390 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1391 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1392 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1393 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1394 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1395 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1396 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1397 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1398 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1399 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1400 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1401 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1402 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1403 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1404 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1405 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1406 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1407 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1408 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1409 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1410 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1411 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1412 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1413 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1414 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1415 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1416 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1417 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1418 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1419 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1420 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1421 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1422 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1423 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1424 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1425 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1426 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1427 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1428 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1429 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1430 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1431 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1432 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1433 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1434 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1435 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1436 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1437 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1438 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1439 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1440 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1441 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1442 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1443 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1444 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1445 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1446 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1447 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1448 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1449 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1450 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1451 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1452 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1453 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1454 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1455 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1456 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1457 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1458 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1459 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1460 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1461 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1462 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1463 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1464 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1465 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1466 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1467 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1468 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1469 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1470 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1471 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1472 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1473 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1474 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1475 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1476 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1477 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1478 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1479 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1480 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1481 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1482 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1483 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1484 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1485 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1486 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1487 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1488 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1489 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1490 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1491 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1492 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1493 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1494 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1495 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1496 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1497 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1498 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1499 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1500 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1501 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1502 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1503 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1504 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1505 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1506 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1507 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1508 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1509 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1510 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1511 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1512 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1513 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1514 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1515 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1516 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1517 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1518 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1519 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1520 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1521 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1522 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1523 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1524 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1525 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1526 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1527 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1528 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1529 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1530 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1531 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1532 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1533 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1534 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1535 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1536 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1537 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1538 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1539 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1540 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1541 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1542 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1543 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1544 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1545 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1546 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1547 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1548 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1549 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1550 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1551 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1552 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1553 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1554 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1555 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1556 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1557 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1558 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1559 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1560 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1561 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1562 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1563 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1564 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1565 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1566 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1567 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1568 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1569 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1570 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1571 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1572 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1573 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1574 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1575 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1576 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1577 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1578 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1579 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1580 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1581 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1582 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1583 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1584 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1585 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1586 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1587 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1588 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1589 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1590 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1591 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1592 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1593 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1594 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1595 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1596 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1597 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1598 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1599 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1600 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1601 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1602 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1603 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1604 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1605 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1606 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1607 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1608 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1609 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1610 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1611 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1612 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1613 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1614 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1615 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1616 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1617 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1618 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1619 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1620 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1621 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1622 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1623 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1624 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1625 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1626 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1627 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1628 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1629 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1630 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1631 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1632 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1633 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1634 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1635 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1636 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1637 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1638 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1639 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1640 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1641 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1642 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1643 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1644 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1645 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1646 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1647 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1648 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1649 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1650 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1651 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1652 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1653 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1654 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1655 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1656 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1657 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1658 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1659 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1660 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1661 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1662 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1663 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1664 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1665 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1666 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1667 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1668 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1669 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1670 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1671 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1672 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1673 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1674 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1675 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1676 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1677 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1678 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1679 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1680 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1681 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1682 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1683 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1684 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1685 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1686 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1687 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1688 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1689 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1690 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1691 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1692 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1693 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1694 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1695 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1696 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1697 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1698 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1699 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1700 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1701 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1702 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1703 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1704 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1705 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1706 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1707 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1708 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1709 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1710 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1711 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1712 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1713 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1714 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1715 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1716 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1717 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1718 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1719 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1720 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1721 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1722 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1723 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1724 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1725 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1726 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1727 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1728 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1729 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1730 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1731 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1732 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1733 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1734 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1735 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1736 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1737 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1738 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1739 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1740 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1741 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1742 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1743 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1744 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1745 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1746 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1747 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1748 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1749 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1750 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1751 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1752 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1753 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1754 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1755 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1756 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1757 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1758 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1759 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1760 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1761 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1762 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1763 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1764 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1765 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1766 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1767 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1768 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1769 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1770 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1771 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1772 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1773 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1774 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1775 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1776 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1777 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1778 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1779 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1780 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1781 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1782 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1783 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1784 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1785 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1786 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1787 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1788 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1789 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1790 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1791 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1792 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1793 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1794 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1795 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1796 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1797 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1798 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1799 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1800 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1801 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1802 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1803 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1804 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1805 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1806 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1807 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1808 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1809 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1810 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1811 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1812 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1813 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1814 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1815 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1816 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1817 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1818 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1819 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1820 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1821 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1822 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1823 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1824 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1825 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1826 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1827 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1828 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1829 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1830 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1831 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1832 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1833 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1834 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1835 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1836 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1837 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1838 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1839 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1840 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1841 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1842 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1843 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1844 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1845 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1846 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1847 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1848 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1849 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1850 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1851 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1852 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1853 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1854 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1855 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1856 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1857 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1858 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1859 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1860 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1861 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1862 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1863 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1864 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1865 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1866 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1867 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1868 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1869 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1870 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1871 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1872 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1873 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1874 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1875 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1876 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1877 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1878 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1879 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1880 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1881 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1882 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1883 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1884 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1885 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1886 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1887 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1888 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1889 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1890 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1891 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1892 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1893 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1894 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1895 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1896 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1897 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1898 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1899 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1900 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1901 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1902 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1903 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1904 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1905 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1906 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1907 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1908 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1909 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1910 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1911 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1912 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1913 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1914 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1915 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1916 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1917 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1918 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1919 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1920 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1921 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1922 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1923 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1924 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1925 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1926 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1927 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1928 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1929 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1930 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1931 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1932 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1933 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1934 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1935 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1936 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1937 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1938 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1939 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1940 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1941 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1942 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1943 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1944 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1945 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1946 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1947 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1948 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1949 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1950 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1951 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1952 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1953 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1954 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1955 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1956 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1957 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1958 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1959 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1960 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1961 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1962 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1963 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1964 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1965 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1966 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1967 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1968 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1969 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1970 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1971 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1972 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1973 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1974 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1975 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1976 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1977 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1978 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1979 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1980 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1981 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1982 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1983 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1984 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1985 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1986 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1987 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1988 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1989 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1990 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1991 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1992 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1993 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1994 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 1995 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 1996 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 1997 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 1998 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 1999 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2000 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2001 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2002 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2003 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2004 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2005 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2006 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2007 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2008 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2009 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2010 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2011 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2012 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2013 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2014 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2015 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2016 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2017 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2018 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2019 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2020 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2021 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2022 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2023 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2024 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2025 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2026 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2027 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2028 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2029 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2030 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2031 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2032 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2033 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2034 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2035 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2036 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2037 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2038 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2039 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2040 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> League Match_Date Matchweek Home_Team Home_Formation #> 1 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 2 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 3 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 4 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 5 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 6 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 7 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 8 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 9 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 10 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 11 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 12 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 13 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 14 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 15 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 16 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 17 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 18 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 19 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 20 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 21 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 22 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 23 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 24 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 25 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 26 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 27 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 28 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 29 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 30 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 31 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 32 La Liga 2022-08-12 La Liga (Matchweek 1) Osasuna 4-4-2 #> 33 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 34 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 35 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 36 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 37 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 38 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 39 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 40 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 41 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 42 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 43 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 44 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 45 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 46 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 47 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 48 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 49 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 50 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 51 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 52 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 53 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 54 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 55 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 56 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 57 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 58 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 59 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 60 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 61 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 62 La Liga 2022-08-13 La Liga (Matchweek 1) Celta Vigo 4-1-3-2 #> 63 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 64 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 65 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 66 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 67 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 68 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 69 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 70 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 71 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 72 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 73 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 74 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 75 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 76 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 77 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 78 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 79 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 80 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 81 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 82 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 83 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 84 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 85 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 86 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 87 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 88 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 89 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 90 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 91 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 92 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 93 La Liga 2022-08-13 La Liga (Matchweek 1) Valladolid 4-1-4-1 #> 94 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 95 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 96 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 97 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 98 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 99 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 100 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 101 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 102 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 103 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 104 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 105 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 106 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 107 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 108 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 109 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 110 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 111 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 112 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 113 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 114 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 115 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 116 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 117 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 118 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 119 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 120 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 121 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 122 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 123 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 124 La Liga 2022-08-13 La Liga (Matchweek 1) Barcelona 4-3-3 #> 125 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 126 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 127 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 128 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 129 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 130 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 131 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 132 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 133 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 134 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 135 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 136 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 137 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 138 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 139 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 140 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 141 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 142 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 143 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 144 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 145 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 146 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 147 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 148 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 149 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 150 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 151 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 152 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 153 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 154 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 155 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 156 La Liga 2022-08-14 La Liga (Matchweek 1) Cádiz 4-4-2 #> 157 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 158 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 159 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 160 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 161 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 162 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 163 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 164 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 165 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 166 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 167 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 168 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 169 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 170 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 171 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 172 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 173 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 174 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 175 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 176 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 177 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 178 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 179 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 180 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 181 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 182 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 183 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 184 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 185 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 186 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 187 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 188 La Liga 2022-08-14 La Liga (Matchweek 1) Valencia 4-3-3 #> 189 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 190 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 191 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 192 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 193 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 194 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 195 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 196 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 197 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 198 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 199 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 200 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 201 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 202 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 203 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 204 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 205 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 206 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 207 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 208 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 209 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 210 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 211 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 212 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 213 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 214 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 215 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 216 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 217 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 218 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 219 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 220 La Liga 2022-08-14 La Liga (Matchweek 1) Almería 5-3-2 #> 221 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 222 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 223 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 224 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 225 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 226 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 227 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 228 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 229 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 230 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 231 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 232 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 233 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 234 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 235 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 236 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 237 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 238 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 239 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 240 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 241 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 242 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 243 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 244 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 245 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 246 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 247 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 248 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 249 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 250 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 251 La Liga 2022-08-15 La Liga (Matchweek 1) Athletic Club 4-3-3 #> 252 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 253 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 254 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 255 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 256 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 257 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 258 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 259 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 260 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 261 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 262 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 263 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 264 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 265 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 266 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 267 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 268 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 269 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 270 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 271 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 272 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 273 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 274 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 275 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 276 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 277 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 278 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 279 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 280 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 281 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 282 La Liga 2022-08-15 La Liga (Matchweek 1) Getafe 5-3-2 #> 283 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 284 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 285 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 286 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 287 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 288 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 289 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 290 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 291 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 292 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 293 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 294 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 295 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 296 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 297 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 298 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 299 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 300 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 301 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 302 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 303 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 304 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 305 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 306 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 307 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 308 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 309 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 310 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 311 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 312 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 313 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 314 La Liga 2022-08-15 La Liga (Matchweek 1) Real Betis 4-2-3-1 #> 315 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 316 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 317 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 318 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 319 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 320 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 321 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 322 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 323 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 324 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 325 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 326 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 327 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 328 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 329 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 330 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 331 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 332 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 333 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 334 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 335 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 336 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 337 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 338 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 339 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 340 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 341 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 342 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 343 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 344 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 345 La Liga 2022-08-19 La Liga (Matchweek 2) Espanyol 4-3-3 #> 346 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 347 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 348 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 349 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 350 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 351 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 352 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 353 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 354 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 355 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 356 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 357 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 358 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 359 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 360 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 361 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 362 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 363 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 364 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 365 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 366 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 367 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 368 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 369 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 370 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 371 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 372 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 373 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 374 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 375 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 376 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 377 La Liga 2022-08-19 La Liga (Matchweek 2) Sevilla 4-3-3 #> 378 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 379 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 380 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 381 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 382 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 383 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 384 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 385 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 386 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 387 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 388 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 389 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 390 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 391 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 392 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 393 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 394 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 395 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 396 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 397 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 398 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 399 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 400 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 401 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 402 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 403 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 404 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 405 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 406 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 407 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 408 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 409 La Liga 2022-08-20 La Liga (Matchweek 2) Osasuna 4-4-2 #> 410 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 411 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 412 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 413 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 414 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 415 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 416 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 417 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 418 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 419 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 420 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 421 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 422 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 423 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 424 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 425 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 426 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 427 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 428 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 429 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 430 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 431 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 432 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 433 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 434 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 435 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 436 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 437 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 438 La Liga 2022-08-20 La Liga (Matchweek 2) Mallorca 5-3-2 #> 439 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 440 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 441 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 442 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 443 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 444 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 445 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 446 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 447 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 448 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 449 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 450 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 451 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 452 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 453 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 454 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 455 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 456 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 457 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 458 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 459 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 460 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 461 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 462 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 463 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 464 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 465 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 466 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 467 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 468 La Liga 2022-08-20 La Liga (Matchweek 2) Celta Vigo 4-1-3-2 #> 469 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 470 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 471 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 472 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 473 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 474 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 475 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 476 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 477 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 478 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 479 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 480 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 481 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 482 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 483 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 484 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 485 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 486 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 487 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 488 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 489 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 490 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 491 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 492 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 493 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 494 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 495 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 496 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 497 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 498 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 499 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 500 La Liga 2022-08-21 La Liga (Matchweek 2) Athletic Club 4-2-3-1 #> 501 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 502 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 503 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 504 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 505 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 506 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 507 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 508 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 509 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 510 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 511 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 512 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 513 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 514 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 515 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 516 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 517 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 518 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 519 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 520 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 521 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 522 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 523 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 524 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 525 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 526 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 527 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 528 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 529 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 530 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 531 La Liga 2022-08-21 La Liga (Matchweek 2) Atlético Madrid 3-1-4-2 #> 532 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 533 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 534 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 535 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 536 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 537 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 538 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 539 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 540 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 541 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 542 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 543 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 544 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 545 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 546 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 547 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 548 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 549 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 550 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 551 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 552 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 553 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 554 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 555 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 556 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 557 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 558 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 559 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 560 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 561 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 562 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 563 La Liga 2022-08-21 La Liga (Matchweek 2) Real Sociedad 4-1-2-1-2 #> 564 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 565 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 566 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 567 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 568 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 569 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 570 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 571 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 572 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 573 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 574 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 575 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 576 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 577 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 578 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 579 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 580 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 581 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 582 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 583 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 584 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 585 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 586 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 587 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 588 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 589 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 590 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 591 La Liga 2022-08-22 La Liga (Matchweek 2) Girona 3-1-4-2 #> 592 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 593 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 594 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 595 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 596 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 597 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 598 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 599 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 600 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 601 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 602 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 603 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 604 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 605 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 606 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 607 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 608 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 609 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 610 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 611 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 612 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 613 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 614 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 615 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 616 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 617 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 618 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 619 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 620 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 621 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 622 La Liga 2022-08-26 La Liga (Matchweek 3) Girona 4-4-2 #> 623 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 624 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 625 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 626 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 627 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 628 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 629 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 630 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 631 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 632 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 633 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 634 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 635 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 636 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 637 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 638 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 639 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 640 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 641 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 642 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 643 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 644 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 645 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 646 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 647 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 648 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 649 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 650 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 651 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 652 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 653 La Liga 2022-08-26 La Liga (Matchweek 3) Real Betis 4-2-3-1 #> 654 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 655 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 656 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 657 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 658 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 659 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 660 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 661 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 662 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 663 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 664 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 665 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 666 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 667 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 668 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 669 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 670 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 671 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 672 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 673 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 674 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 675 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 676 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 677 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 678 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 679 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 680 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 681 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 682 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 683 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 684 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 685 La Liga 2022-08-27 La Liga (Matchweek 3) Elche 4-4-2 #> 686 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 687 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 688 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 689 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 690 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 691 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 692 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 693 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 694 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 695 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 696 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 697 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 698 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 699 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 700 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 701 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 702 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 703 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 704 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 705 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 706 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 707 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 708 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 709 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 710 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 711 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 712 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 713 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 714 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 715 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 716 La Liga 2022-08-27 La Liga (Matchweek 3) Rayo Vallecano 4-2-3-1 #> 717 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 718 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 719 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 720 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 721 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 722 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 723 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 724 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 725 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 726 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 727 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 728 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 729 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 730 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 731 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 732 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 733 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 734 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 735 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 736 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 737 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 738 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 739 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 740 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 741 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 742 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 743 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 744 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 745 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 746 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 747 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 748 La Liga 2022-08-27 La Liga (Matchweek 3) Almería 3-4-1-2 #> 749 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 750 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 751 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 752 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 753 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 754 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 755 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 756 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 757 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 758 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 759 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 760 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 761 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 762 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 763 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 764 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 765 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 766 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 767 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 768 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 769 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 770 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 771 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 772 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 773 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 774 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 775 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 776 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 777 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 778 La Liga 2022-08-28 La Liga (Matchweek 3) Getafe 4-4-2 #> 779 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 780 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 781 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 782 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 783 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 784 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 785 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 786 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 787 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 788 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 789 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 790 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 791 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 792 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 793 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 794 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 795 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 796 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 797 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 798 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 799 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 800 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 801 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 802 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 803 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 804 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 805 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 806 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 807 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 808 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 809 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 810 La Liga 2022-08-28 La Liga (Matchweek 3) Barcelona 4-3-3 #> 811 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 812 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 813 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 814 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 815 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 816 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 817 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 818 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 819 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 820 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 821 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 822 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 823 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 824 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 825 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 826 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 827 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 828 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 829 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 830 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 831 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 832 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 833 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 834 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 835 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 836 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 837 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 838 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 839 La Liga 2022-08-28 La Liga (Matchweek 3) Espanyol 4-1-4-1 #> 840 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 841 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 842 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 843 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 844 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 845 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 846 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 847 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 848 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 849 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 850 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 851 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 852 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 853 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 854 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 855 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 856 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 857 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 858 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 859 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 860 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 861 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 862 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 863 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 864 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 865 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 866 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 867 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 868 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 869 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 870 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 871 La Liga 2022-08-29 La Liga (Matchweek 3) Cádiz 4-4-2 #> 872 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 873 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 874 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 875 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 876 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 877 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 878 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 879 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 880 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 881 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 882 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 883 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 884 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 885 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 886 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 887 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 888 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 889 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 890 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 891 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 892 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 893 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 894 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 895 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 896 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 897 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 898 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 899 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 900 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 901 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 902 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 903 La Liga 2022-08-29 La Liga (Matchweek 3) Valencia 4-2-3-1 #> 904 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 905 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 906 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 907 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 908 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 909 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 910 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 911 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 912 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 913 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 914 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 915 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 916 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 917 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 918 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 919 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 920 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 921 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 922 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 923 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 924 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 925 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 926 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 927 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 928 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 929 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 930 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 931 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 932 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 933 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 934 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 935 La Liga 2022-09-02 La Liga (Matchweek 4) Celta Vigo 4-1-3-2 #> 936 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 937 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 938 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 939 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 940 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 941 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 942 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 943 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 944 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 945 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 946 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 947 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 948 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 949 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 950 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 951 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 952 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 953 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 954 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 955 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 956 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 957 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 958 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 959 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 960 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 961 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 962 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 963 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 964 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 965 La Liga 2022-09-03 La Liga (Matchweek 4) Mallorca 5-3-2 #> 966 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 967 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 968 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 969 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 970 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 971 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 972 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 973 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 974 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 975 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 976 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 977 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 978 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 979 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 980 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 981 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 982 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 983 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 984 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 985 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 986 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 987 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 988 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 989 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 990 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 991 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 992 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 993 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 994 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 995 La Liga 2022-09-03 La Liga (Matchweek 4) Real Madrid 4-3-3 #> 996 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 997 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 998 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 999 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1000 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1001 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1002 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1003 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1004 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1005 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1006 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1007 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1008 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1009 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1010 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1011 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1012 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1013 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1014 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1015 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1016 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1017 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1018 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1019 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1020 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1021 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1022 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1023 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1024 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1025 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1026 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1027 La Liga 2022-09-03 La Liga (Matchweek 4) Real Sociedad 4-1-2-1-2 #> 1028 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1029 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1030 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1031 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1032 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1033 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1034 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1035 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1036 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1037 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1038 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1039 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1040 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1041 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1042 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1043 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1044 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1045 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1046 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1047 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1048 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1049 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1050 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1051 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1052 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1053 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1054 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1055 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1056 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1057 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1058 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1059 La Liga 2022-09-03 La Liga (Matchweek 4) Sevilla 4-3-3 #> 1060 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1061 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1062 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1063 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1064 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1065 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1066 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1067 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1068 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1069 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1070 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1071 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1072 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1073 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1074 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1075 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1076 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1077 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1078 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1079 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1080 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1081 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1082 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1083 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1084 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1085 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1086 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1087 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1088 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1089 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1090 La Liga 2022-09-04 La Liga (Matchweek 4) Osasuna 4-4-2 #> 1091 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1092 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1093 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1094 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1095 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1096 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1097 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1098 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1099 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1100 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1101 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1102 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1103 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1104 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1105 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1106 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1107 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1108 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1109 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1110 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1111 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1112 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1113 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1114 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1115 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1116 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1117 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1118 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1119 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1120 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1121 La Liga 2022-09-04 La Liga (Matchweek 4) Athletic Club 4-2-3-1 #> 1122 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1123 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1124 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1125 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1126 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1127 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1128 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1129 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1130 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1131 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1132 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1133 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1134 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1135 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1136 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1137 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1138 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1139 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1140 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1141 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1142 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1143 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1144 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1145 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1146 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1147 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1148 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1149 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1150 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1151 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1152 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1153 La Liga 2022-09-04 La Liga (Matchweek 4) Villarreal 4-4-2 #> 1154 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1155 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1156 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1157 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1158 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1159 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1160 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1161 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1162 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1163 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1164 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1165 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1166 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1167 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1168 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1169 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1170 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1171 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1172 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1173 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1174 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1175 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1176 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1177 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1178 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1179 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1180 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1181 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1182 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1183 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1184 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1185 La Liga 2022-09-04 La Liga (Matchweek 4) Valencia 4-3-3 #> 1186 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1187 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1188 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1189 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1190 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1191 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1192 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1193 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1194 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1195 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1196 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1197 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1198 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1199 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1200 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1201 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1202 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1203 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1204 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1205 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1206 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1207 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1208 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1209 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1210 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1211 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1212 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1213 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1214 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1215 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1216 La Liga 2022-09-05 La Liga (Matchweek 4) Valladolid 4-3-3 #> 1217 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1218 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1219 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1220 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1221 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1222 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1223 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1224 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1225 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1226 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1227 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1228 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1229 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1230 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1231 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1232 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1233 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1234 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1235 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1236 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1237 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1238 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1239 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1240 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1241 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1242 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1243 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1244 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1245 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1246 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1247 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1248 La Liga 2022-09-09 La Liga (Matchweek 5) Girona 3-4-3 #> 1249 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1250 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1251 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1252 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1253 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1254 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1255 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1256 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1257 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1258 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1259 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1260 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1261 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1262 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1263 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1264 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1265 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1266 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1267 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1268 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1269 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1270 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1271 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1272 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1273 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1274 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1275 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1276 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1277 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1278 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1279 La Liga 2022-09-10 La Liga (Matchweek 5) Rayo Vallecano 4-2-3-1 #> 1280 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1281 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1282 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1283 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1284 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1285 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1286 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1287 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1288 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1289 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1290 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1291 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1292 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1293 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1294 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1295 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1296 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1297 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1298 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1299 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1300 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1301 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1302 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1303 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1304 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1305 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1306 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1307 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1308 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1309 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1310 La Liga 2022-09-10 La Liga (Matchweek 5) Espanyol 4-2-3-1 #> 1311 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1312 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1313 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1314 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1315 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1316 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1317 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1318 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1319 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1320 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1321 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1322 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1323 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1324 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1325 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1326 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1327 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1328 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1329 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1330 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1331 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1332 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1333 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1334 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1335 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1336 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1337 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1338 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1339 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1340 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1341 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1342 La Liga 2022-09-10 La Liga (Matchweek 5) Cádiz 4-2-3-1 #> 1343 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1344 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1345 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1346 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1347 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1348 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1349 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1350 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1351 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1352 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1353 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1354 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1355 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1356 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1357 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1358 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1359 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1360 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1361 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1362 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1363 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1364 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1365 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1366 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1367 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1368 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1369 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1370 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1371 La Liga 2022-09-10 La Liga (Matchweek 5) Atlético Madrid 5-3-2 #> 1372 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1373 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1374 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1375 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1376 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1377 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1378 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1379 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1380 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1381 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1382 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1383 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1384 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1385 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1386 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1387 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1388 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1389 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1390 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1391 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1392 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1393 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1394 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1395 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1396 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1397 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1398 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1399 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1400 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1401 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1402 La Liga 2022-09-11 La Liga (Matchweek 5) Real Madrid 4-3-3 #> 1403 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1404 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1405 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1406 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1407 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1408 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1409 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1410 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1411 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1412 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1413 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1414 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1415 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1416 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1417 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1418 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1419 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1420 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1421 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1422 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1423 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1424 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1425 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1426 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1427 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1428 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1429 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1430 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1431 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1432 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1433 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1434 La Liga 2022-09-11 La Liga (Matchweek 5) Elche 4-2-3-1 #> 1435 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1436 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1437 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1438 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1439 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1440 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1441 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1442 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1443 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1444 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1445 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1446 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1447 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1448 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1449 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1450 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1451 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1452 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1453 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1454 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1455 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1456 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1457 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1458 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1459 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1460 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1461 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1462 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1463 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1464 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1465 La Liga 2022-09-11 La Liga (Matchweek 5) Getafe 5-3-2 #> 1466 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1467 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1468 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1469 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1470 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1471 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1472 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1473 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1474 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1475 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1476 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1477 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1478 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1479 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1480 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1481 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1482 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1483 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1484 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1485 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1486 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1487 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1488 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1489 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1490 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1491 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1492 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1493 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1494 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1495 La Liga 2022-09-11 La Liga (Matchweek 5) Real Betis 4-2-3-1 #> 1496 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1497 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1498 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1499 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1500 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1501 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1502 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1503 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1504 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1505 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1506 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1507 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1508 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1509 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1510 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1511 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1512 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1513 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1514 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1515 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1516 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1517 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1518 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1519 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1520 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1521 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1522 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1523 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1524 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1525 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1526 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1527 La Liga 2022-09-12 La Liga (Matchweek 5) Almería 4-3-3 #> 1528 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1529 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1530 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1531 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1532 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1533 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1534 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1535 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1536 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1537 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1538 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1539 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1540 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1541 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1542 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1543 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1544 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1545 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1546 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1547 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1548 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1549 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1550 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1551 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1552 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1553 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1554 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1555 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1556 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1557 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1558 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1559 La Liga 2022-09-16 La Liga (Matchweek 6) Valladolid 4-3-3 #> 1560 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1561 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1562 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1563 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1564 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1565 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1566 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1567 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1568 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1569 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1570 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1571 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1572 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1573 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1574 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1575 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1576 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1577 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1578 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1579 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1580 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1581 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1582 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1583 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1584 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1585 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1586 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1587 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1588 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1589 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1590 La Liga 2022-09-17 La Liga (Matchweek 6) Mallorca 5-3-2 #> 1591 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1592 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1593 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1594 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1595 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1596 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1597 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1598 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1599 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1600 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1601 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1602 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1603 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1604 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1605 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1606 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1607 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1608 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1609 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1610 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1611 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1612 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1613 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1614 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1615 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1616 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1617 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1618 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1619 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1620 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1621 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1622 La Liga 2022-09-17 La Liga (Matchweek 6) Barcelona 4-3-3 #> 1623 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1624 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1625 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1626 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1627 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1628 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1629 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1630 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1631 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1632 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1633 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1634 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1635 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1636 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1637 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1638 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1639 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1640 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1641 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1642 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1643 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1644 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1645 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1646 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1647 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1648 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1649 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1650 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1651 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1652 La Liga 2022-09-17 La Liga (Matchweek 6) Valencia 4-3-3 #> 1653 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1654 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1655 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1656 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1657 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1658 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1659 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1660 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1661 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1662 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1663 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1664 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1665 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1666 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1667 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1668 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1669 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1670 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1671 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1672 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1673 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1674 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1675 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1676 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1677 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1678 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1679 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1680 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1681 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1682 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1683 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1684 La Liga 2022-09-17 La Liga (Matchweek 6) Athletic Club 4-2-3-1 #> 1685 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1686 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1687 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1688 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1689 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1690 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1691 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1692 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1693 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1694 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1695 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1696 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1697 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1698 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1699 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1700 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1701 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1702 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1703 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1704 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1705 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1706 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1707 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1708 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1709 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1710 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1711 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1712 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1713 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1714 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1715 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1716 La Liga 2022-09-18 La Liga (Matchweek 6) Osasuna 4-2-3-1 #> 1717 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1718 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1719 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1720 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1721 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1722 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1723 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1724 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1725 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1726 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1727 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1728 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1729 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1730 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1731 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1732 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1733 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1734 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1735 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1736 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1737 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1738 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1739 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1740 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1741 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1742 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1743 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1744 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1745 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1746 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1747 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1748 La Liga 2022-09-18 La Liga (Matchweek 6) Villarreal 4-4-2 #> 1749 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1750 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1751 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1752 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1753 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1754 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1755 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1756 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1757 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1758 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1759 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1760 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1761 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1762 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1763 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1764 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1765 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1766 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1767 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1768 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1769 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1770 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1771 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1772 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1773 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1774 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1775 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1776 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1777 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1778 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1779 La Liga 2022-09-18 La Liga (Matchweek 6) Real Betis 4-2-3-1 #> 1780 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1781 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1782 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1783 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1784 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1785 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1786 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1787 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1788 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1789 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1790 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1791 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1792 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1793 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1794 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1795 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1796 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1797 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1798 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1799 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1800 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1801 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1802 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1803 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1804 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1805 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1806 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1807 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1808 La Liga 2022-09-18 La Liga (Matchweek 6) Real Sociedad 4-1-3-2 #> 1809 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1810 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1811 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1812 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1813 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1814 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1815 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1816 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1817 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1818 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1819 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1820 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1821 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1822 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1823 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1824 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1825 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1826 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1827 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1828 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1829 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1830 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1831 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1832 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1833 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1834 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1835 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1836 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1837 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1838 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1839 La Liga 2022-09-18 La Liga (Matchweek 6) Atlético Madrid 3-5-2 #> 1840 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1841 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1842 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1843 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1844 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1845 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1846 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1847 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1848 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1849 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1850 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1851 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1852 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1853 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1854 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1855 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1856 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1857 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1858 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1859 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1860 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1861 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1862 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1863 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1864 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1865 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1866 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1867 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1868 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1869 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1870 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1871 La Liga 2022-09-30 La Liga (Matchweek 7) Athletic Club 4-2-3-1 #> 1872 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1873 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1874 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1875 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1876 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1877 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1878 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1879 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1880 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1881 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1882 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1883 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1884 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1885 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1886 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1887 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1888 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1889 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1890 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1891 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1892 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1893 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1894 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1895 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1896 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1897 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1898 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1899 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1900 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1901 La Liga 2022-10-01 La Liga (Matchweek 7) Cádiz 4-4-2 #> 1902 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1903 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1904 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1905 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1906 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1907 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1908 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1909 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1910 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1911 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1912 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1913 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1914 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1915 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1916 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1917 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1918 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1919 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1920 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1921 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1922 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1923 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1924 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1925 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1926 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1927 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1928 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1929 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1930 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1931 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1932 La Liga 2022-10-01 La Liga (Matchweek 7) Getafe 5-3-2 #> 1933 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1934 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1935 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1936 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1937 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1938 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1939 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1940 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1941 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1942 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1943 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1944 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1945 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1946 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1947 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1948 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1949 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1950 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1951 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1952 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1953 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1954 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1955 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1956 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1957 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1958 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1959 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1960 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1961 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1962 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1963 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1964 La Liga 2022-10-01 La Liga (Matchweek 7) Sevilla 4-2-3-1 #> 1965 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1966 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1967 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1968 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1969 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1970 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1971 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1972 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1973 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1974 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1975 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1976 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1977 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1978 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1979 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1980 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1981 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1982 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1983 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1984 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1985 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1986 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1987 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1988 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1989 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1990 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1991 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1992 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1993 La Liga 2022-10-01 La Liga (Matchweek 7) Mallorca 5-4-1 #> 1994 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 1995 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 1996 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 1997 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 1998 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 1999 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2000 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2001 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2002 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2003 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2004 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2005 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2006 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2007 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2008 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2009 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2010 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2011 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2012 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2013 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2014 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2015 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2016 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2017 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2018 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2019 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2020 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2021 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2022 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2023 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2024 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2025 La Liga 2022-10-02 La Liga (Matchweek 7) Espanyol 4-2-3-1 #> 2026 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> 2027 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> 2028 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> 2029 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> 2030 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> 2031 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> 2032 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> 2033 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> 2034 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> 2035 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> 2036 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> 2037 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> 2038 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> 2039 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> 2040 La Liga 2022-10-02 La Liga (Matchweek 7) Celta Vigo 4-1-3-2 #> Home_Score Home_xG #> 1 2 1.5 #> 2 2 1.5 #> 3 2 1.5 #> 4 2 1.5 #> 5 2 1.5 #> 6 2 1.5 #> 7 2 1.5 #> 8 2 1.5 #> 9 2 1.5 #> 10 2 1.5 #> 11 2 1.5 #> 12 2 1.5 #> 13 2 1.5 #> 14 2 1.5 #> 15 2 1.5 #> 16 2 1.5 #> 17 2 1.5 #> 18 2 1.5 #> 19 2 1.5 #> 20 2 1.5 #> 21 2 1.5 #> 22 2 1.5 #> 23 2 1.5 #> 24 2 1.5 #> 25 2 1.5 #> 26 2 1.5 #> 27 2 1.5 #> 28 2 1.5 #> 29 2 1.5 #> 30 2 1.5 #> 31 2 1.5 #> 32 2 1.5 #> 33 2 0.4 #> 34 2 0.4 #> 35 2 0.4 #> 36 2 0.4 #> 37 2 0.4 #> 38 2 0.4 #> 39 2 0.4 #> 40 2 0.4 #> 41 2 0.4 #> 42 2 0.4 #> 43 2 0.4 #> 44 2 0.4 #> 45 2 0.4 #> 46 2 0.4 #> 47 2 0.4 #> 48 2 0.4 #> 49 2 0.4 #> 50 2 0.4 #> 51 2 0.4 #> 52 2 0.4 #> 53 2 0.4 #> 54 2 0.4 #> 55 2 0.4 #> 56 2 0.4 #> 57 2 0.4 #> 58 2 0.4 #> 59 2 0.4 #> 60 2 0.4 #> 61 2 0.4 #> 62 2 0.4 #> 63 0 1.0 #> 64 0 1.0 #> 65 0 1.0 #> 66 0 1.0 #> 67 0 1.0 #> 68 0 1.0 #> 69 0 1.0 #> 70 0 1.0 #> 71 0 1.0 #> 72 0 1.0 #> 73 0 1.0 #> 74 0 1.0 #> 75 0 1.0 #> 76 0 1.0 #> 77 0 1.0 #> 78 0 1.0 #> 79 0 1.0 #> 80 0 1.0 #> 81 0 1.0 #> 82 0 1.0 #> 83 0 1.0 #> 84 0 1.0 #> 85 0 1.0 #> 86 0 1.0 #> 87 0 1.0 #> 88 0 1.0 #> 89 0 1.0 #> 90 0 1.0 #> 91 0 1.0 #> 92 0 1.0 #> 93 0 1.0 #> 94 0 1.9 #> 95 0 1.9 #> 96 0 1.9 #> 97 0 1.9 #> 98 0 1.9 #> 99 0 1.9 #> 100 0 1.9 #> 101 0 1.9 #> 102 0 1.9 #> 103 0 1.9 #> 104 0 1.9 #> 105 0 1.9 #> 106 0 1.9 #> 107 0 1.9 #> 108 0 1.9 #> 109 0 1.9 #> 110 0 1.9 #> 111 0 1.9 #> 112 0 1.9 #> 113 0 1.9 #> 114 0 1.9 #> 115 0 1.9 #> 116 0 1.9 #> 117 0 1.9 #> 118 0 1.9 #> 119 0 1.9 #> 120 0 1.9 #> 121 0 1.9 #> 122 0 1.9 #> 123 0 1.9 #> 124 0 1.9 #> 125 0 0.2 #> 126 0 0.2 #> 127 0 0.2 #> 128 0 0.2 #> 129 0 0.2 #> 130 0 0.2 #> 131 0 0.2 #> 132 0 0.2 #> 133 0 0.2 #> 134 0 0.2 #> 135 0 0.2 #> 136 0 0.2 #> 137 0 0.2 #> 138 0 0.2 #> 139 0 0.2 #> 140 0 0.2 #> 141 0 0.2 #> 142 0 0.2 #> 143 0 0.2 #> 144 0 0.2 #> 145 0 0.2 #> 146 0 0.2 #> 147 0 0.2 #> 148 0 0.2 #> 149 0 0.2 #> 150 0 0.2 #> 151 0 0.2 #> 152 0 0.2 #> 153 0 0.2 #> 154 0 0.2 #> 155 0 0.2 #> 156 0 0.2 #> 157 1 1.6 #> 158 1 1.6 #> 159 1 1.6 #> 160 1 1.6 #> 161 1 1.6 #> 162 1 1.6 #> 163 1 1.6 #> 164 1 1.6 #> 165 1 1.6 #> 166 1 1.6 #> 167 1 1.6 #> 168 1 1.6 #> 169 1 1.6 #> 170 1 1.6 #> 171 1 1.6 #> 172 1 1.6 #> 173 1 1.6 #> 174 1 1.6 #> 175 1 1.6 #> 176 1 1.6 #> 177 1 1.6 #> 178 1 1.6 #> 179 1 1.6 #> 180 1 1.6 #> 181 1 1.6 #> 182 1 1.6 #> 183 1 1.6 #> 184 1 1.6 #> 185 1 1.6 #> 186 1 1.6 #> 187 1 1.6 #> 188 1 1.6 #> 189 1 0.7 #> 190 1 0.7 #> 191 1 0.7 #> 192 1 0.7 #> 193 1 0.7 #> 194 1 0.7 #> 195 1 0.7 #> 196 1 0.7 #> 197 1 0.7 #> 198 1 0.7 #> 199 1 0.7 #> 200 1 0.7 #> 201 1 0.7 #> 202 1 0.7 #> 203 1 0.7 #> 204 1 0.7 #> 205 1 0.7 #> 206 1 0.7 #> 207 1 0.7 #> 208 1 0.7 #> 209 1 0.7 #> 210 1 0.7 #> 211 1 0.7 #> 212 1 0.7 #> 213 1 0.7 #> 214 1 0.7 #> 215 1 0.7 #> 216 1 0.7 #> 217 1 0.7 #> 218 1 0.7 #> 219 1 0.7 #> 220 1 0.7 #> 221 0 1.6 #> 222 0 1.6 #> 223 0 1.6 #> 224 0 1.6 #> 225 0 1.6 #> 226 0 1.6 #> 227 0 1.6 #> 228 0 1.6 #> 229 0 1.6 #> 230 0 1.6 #> 231 0 1.6 #> 232 0 1.6 #> 233 0 1.6 #> 234 0 1.6 #> 235 0 1.6 #> 236 0 1.6 #> 237 0 1.6 #> 238 0 1.6 #> 239 0 1.6 #> 240 0 1.6 #> 241 0 1.6 #> 242 0 1.6 #> 243 0 1.6 #> 244 0 1.6 #> 245 0 1.6 #> 246 0 1.6 #> 247 0 1.6 #> 248 0 1.6 #> 249 0 1.6 #> 250 0 1.6 #> 251 0 1.6 #> 252 0 0.7 #> 253 0 0.7 #> 254 0 0.7 #> 255 0 0.7 #> 256 0 0.7 #> 257 0 0.7 #> 258 0 0.7 #> 259 0 0.7 #> 260 0 0.7 #> 261 0 0.7 #> 262 0 0.7 #> 263 0 0.7 #> 264 0 0.7 #> 265 0 0.7 #> 266 0 0.7 #> 267 0 0.7 #> 268 0 0.7 #> 269 0 0.7 #> 270 0 0.7 #> 271 0 0.7 #> 272 0 0.7 #> 273 0 0.7 #> 274 0 0.7 #> 275 0 0.7 #> 276 0 0.7 #> 277 0 0.7 #> 278 0 0.7 #> 279 0 0.7 #> 280 0 0.7 #> 281 0 0.7 #> 282 0 0.7 #> 283 3 3.1 #> 284 3 3.1 #> 285 3 3.1 #> 286 3 3.1 #> 287 3 3.1 #> 288 3 3.1 #> 289 3 3.1 #> 290 3 3.1 #> 291 3 3.1 #> 292 3 3.1 #> 293 3 3.1 #> 294 3 3.1 #> 295 3 3.1 #> 296 3 3.1 #> 297 3 3.1 #> 298 3 3.1 #> 299 3 3.1 #> 300 3 3.1 #> 301 3 3.1 #> 302 3 3.1 #> 303 3 3.1 #> 304 3 3.1 #> 305 3 3.1 #> 306 3 3.1 #> 307 3 3.1 #> 308 3 3.1 #> 309 3 3.1 #> 310 3 3.1 #> 311 3 3.1 #> 312 3 3.1 #> 313 3 3.1 #> 314 3 3.1 #> 315 0 0.8 #> 316 0 0.8 #> 317 0 0.8 #> 318 0 0.8 #> 319 0 0.8 #> 320 0 0.8 #> 321 0 0.8 #> 322 0 0.8 #> 323 0 0.8 #> 324 0 0.8 #> 325 0 0.8 #> 326 0 0.8 #> 327 0 0.8 #> 328 0 0.8 #> 329 0 0.8 #> 330 0 0.8 #> 331 0 0.8 #> 332 0 0.8 #> 333 0 0.8 #> 334 0 0.8 #> 335 0 0.8 #> 336 0 0.8 #> 337 0 0.8 #> 338 0 0.8 #> 339 0 0.8 #> 340 0 0.8 #> 341 0 0.8 #> 342 0 0.8 #> 343 0 0.8 #> 344 0 0.8 #> 345 0 0.8 #> 346 1 2.0 #> 347 1 2.0 #> 348 1 2.0 #> 349 1 2.0 #> 350 1 2.0 #> 351 1 2.0 #> 352 1 2.0 #> 353 1 2.0 #> 354 1 2.0 #> 355 1 2.0 #> 356 1 2.0 #> 357 1 2.0 #> 358 1 2.0 #> 359 1 2.0 #> 360 1 2.0 #> 361 1 2.0 #> 362 1 2.0 #> 363 1 2.0 #> 364 1 2.0 #> 365 1 2.0 #> 366 1 2.0 #> 367 1 2.0 #> 368 1 2.0 #> 369 1 2.0 #> 370 1 2.0 #> 371 1 2.0 #> 372 1 2.0 #> 373 1 2.0 #> 374 1 2.0 #> 375 1 2.0 #> 376 1 2.0 #> 377 1 2.0 #> 378 2 2.7 #> 379 2 2.7 #> 380 2 2.7 #> 381 2 2.7 #> 382 2 2.7 #> 383 2 2.7 #> 384 2 2.7 #> 385 2 2.7 #> 386 2 2.7 #> 387 2 2.7 #> 388 2 2.7 #> 389 2 2.7 #> 390 2 2.7 #> 391 2 2.7 #> 392 2 2.7 #> 393 2 2.7 #> 394 2 2.7 #> 395 2 2.7 #> 396 2 2.7 #> 397 2 2.7 #> 398 2 2.7 #> 399 2 2.7 #> 400 2 2.7 #> 401 2 2.7 #> 402 2 2.7 #> 403 2 2.7 #> 404 2 2.7 #> 405 2 2.7 #> 406 2 2.7 #> 407 2 2.7 #> 408 2 2.7 #> 409 2 2.7 #> 410 1 0.6 #> 411 1 0.6 #> 412 1 0.6 #> 413 1 0.6 #> 414 1 0.6 #> 415 1 0.6 #> 416 1 0.6 #> 417 1 0.6 #> 418 1 0.6 #> 419 1 0.6 #> 420 1 0.6 #> 421 1 0.6 #> 422 1 0.6 #> 423 1 0.6 #> 424 1 0.6 #> 425 1 0.6 #> 426 1 0.6 #> 427 1 0.6 #> 428 1 0.6 #> 429 1 0.6 #> 430 1 0.6 #> 431 1 0.6 #> 432 1 0.6 #> 433 1 0.6 #> 434 1 0.6 #> 435 1 0.6 #> 436 1 0.6 #> 437 1 0.6 #> 438 1 0.6 #> 439 1 1.4 #> 440 1 1.4 #> 441 1 1.4 #> 442 1 1.4 #> 443 1 1.4 #> 444 1 1.4 #> 445 1 1.4 #> 446 1 1.4 #> 447 1 1.4 #> 448 1 1.4 #> 449 1 1.4 #> 450 1 1.4 #> 451 1 1.4 #> 452 1 1.4 #> 453 1 1.4 #> 454 1 1.4 #> 455 1 1.4 #> 456 1 1.4 #> 457 1 1.4 #> 458 1 1.4 #> 459 1 1.4 #> 460 1 1.4 #> 461 1 1.4 #> 462 1 1.4 #> 463 1 1.4 #> 464 1 1.4 #> 465 1 1.4 #> 466 1 1.4 #> 467 1 1.4 #> 468 1 1.4 #> 469 1 1.0 #> 470 1 1.0 #> 471 1 1.0 #> 472 1 1.0 #> 473 1 1.0 #> 474 1 1.0 #> 475 1 1.0 #> 476 1 1.0 #> 477 1 1.0 #> 478 1 1.0 #> 479 1 1.0 #> 480 1 1.0 #> 481 1 1.0 #> 482 1 1.0 #> 483 1 1.0 #> 484 1 1.0 #> 485 1 1.0 #> 486 1 1.0 #> 487 1 1.0 #> 488 1 1.0 #> 489 1 1.0 #> 490 1 1.0 #> 491 1 1.0 #> 492 1 1.0 #> 493 1 1.0 #> 494 1 1.0 #> 495 1 1.0 #> 496 1 1.0 #> 497 1 1.0 #> 498 1 1.0 #> 499 1 1.0 #> 500 1 1.0 #> 501 0 1.6 #> 502 0 1.6 #> 503 0 1.6 #> 504 0 1.6 #> 505 0 1.6 #> 506 0 1.6 #> 507 0 1.6 #> 508 0 1.6 #> 509 0 1.6 #> 510 0 1.6 #> 511 0 1.6 #> 512 0 1.6 #> 513 0 1.6 #> 514 0 1.6 #> 515 0 1.6 #> 516 0 1.6 #> 517 0 1.6 #> 518 0 1.6 #> 519 0 1.6 #> 520 0 1.6 #> 521 0 1.6 #> 522 0 1.6 #> 523 0 1.6 #> 524 0 1.6 #> 525 0 1.6 #> 526 0 1.6 #> 527 0 1.6 #> 528 0 1.6 #> 529 0 1.6 #> 530 0 1.6 #> 531 0 1.6 #> 532 1 0.8 #> 533 1 0.8 #> 534 1 0.8 #> 535 1 0.8 #> 536 1 0.8 #> 537 1 0.8 #> 538 1 0.8 #> 539 1 0.8 #> 540 1 0.8 #> 541 1 0.8 #> 542 1 0.8 #> 543 1 0.8 #> 544 1 0.8 #> 545 1 0.8 #> 546 1 0.8 #> 547 1 0.8 #> 548 1 0.8 #> 549 1 0.8 #> 550 1 0.8 #> 551 1 0.8 #> 552 1 0.8 #> 553 1 0.8 #> 554 1 0.8 #> 555 1 0.8 #> 556 1 0.8 #> 557 1 0.8 #> 558 1 0.8 #> 559 1 0.8 #> 560 1 0.8 #> 561 1 0.8 #> 562 1 0.8 #> 563 1 0.8 #> 564 3 1.1 #> 565 3 1.1 #> 566 3 1.1 #> 567 3 1.1 #> 568 3 1.1 #> 569 3 1.1 #> 570 3 1.1 #> 571 3 1.1 #> 572 3 1.1 #> 573 3 1.1 #> 574 3 1.1 #> 575 3 1.1 #> 576 3 1.1 #> 577 3 1.1 #> 578 3 1.1 #> 579 3 1.1 #> 580 3 1.1 #> 581 3 1.1 #> 582 3 1.1 #> 583 3 1.1 #> 584 3 1.1 #> 585 3 1.1 #> 586 3 1.1 #> 587 3 1.1 #> 588 3 1.1 #> 589 3 1.1 #> 590 3 1.1 #> 591 3 1.1 #> 592 0 1.0 #> 593 0 1.0 #> 594 0 1.0 #> 595 0 1.0 #> 596 0 1.0 #> 597 0 1.0 #> 598 0 1.0 #> 599 0 1.0 #> 600 0 1.0 #> 601 0 1.0 #> 602 0 1.0 #> 603 0 1.0 #> 604 0 1.0 #> 605 0 1.0 #> 606 0 1.0 #> 607 0 1.0 #> 608 0 1.0 #> 609 0 1.0 #> 610 0 1.0 #> 611 0 1.0 #> 612 0 1.0 #> 613 0 1.0 #> 614 0 1.0 #> 615 0 1.0 #> 616 0 1.0 #> 617 0 1.0 #> 618 0 1.0 #> 619 0 1.0 #> 620 0 1.0 #> 621 0 1.0 #> 622 0 1.0 #> 623 1 0.5 #> 624 1 0.5 #> 625 1 0.5 #> 626 1 0.5 #> 627 1 0.5 #> 628 1 0.5 #> 629 1 0.5 #> 630 1 0.5 #> 631 1 0.5 #> 632 1 0.5 #> 633 1 0.5 #> 634 1 0.5 #> 635 1 0.5 #> 636 1 0.5 #> 637 1 0.5 #> 638 1 0.5 #> 639 1 0.5 #> 640 1 0.5 #> 641 1 0.5 #> 642 1 0.5 #> 643 1 0.5 #> 644 1 0.5 #> 645 1 0.5 #> 646 1 0.5 #> 647 1 0.5 #> 648 1 0.5 #> 649 1 0.5 #> 650 1 0.5 #> 651 1 0.5 #> 652 1 0.5 #> 653 1 0.5 #> 654 0 0.7 #> 655 0 0.7 #> 656 0 0.7 #> 657 0 0.7 #> 658 0 0.7 #> 659 0 0.7 #> 660 0 0.7 #> 661 0 0.7 #> 662 0 0.7 #> 663 0 0.7 #> 664 0 0.7 #> 665 0 0.7 #> 666 0 0.7 #> 667 0 0.7 #> 668 0 0.7 #> 669 0 0.7 #> 670 0 0.7 #> 671 0 0.7 #> 672 0 0.7 #> 673 0 0.7 #> 674 0 0.7 #> 675 0 0.7 #> 676 0 0.7 #> 677 0 0.7 #> 678 0 0.7 #> 679 0 0.7 #> 680 0 0.7 #> 681 0 0.7 #> 682 0 0.7 #> 683 0 0.7 #> 684 0 0.7 #> 685 0 0.7 #> 686 0 0.7 #> 687 0 0.7 #> 688 0 0.7 #> 689 0 0.7 #> 690 0 0.7 #> 691 0 0.7 #> 692 0 0.7 #> 693 0 0.7 #> 694 0 0.7 #> 695 0 0.7 #> 696 0 0.7 #> 697 0 0.7 #> 698 0 0.7 #> 699 0 0.7 #> 700 0 0.7 #> 701 0 0.7 #> 702 0 0.7 #> 703 0 0.7 #> 704 0 0.7 #> 705 0 0.7 #> 706 0 0.7 #> 707 0 0.7 #> 708 0 0.7 #> 709 0 0.7 #> 710 0 0.7 #> 711 0 0.7 #> 712 0 0.7 #> 713 0 0.7 #> 714 0 0.7 #> 715 0 0.7 #> 716 0 0.7 #> 717 2 2.3 #> 718 2 2.3 #> 719 2 2.3 #> 720 2 2.3 #> 721 2 2.3 #> 722 2 2.3 #> 723 2 2.3 #> 724 2 2.3 #> 725 2 2.3 #> 726 2 2.3 #> 727 2 2.3 #> 728 2 2.3 #> 729 2 2.3 #> 730 2 2.3 #> 731 2 2.3 #> 732 2 2.3 #> 733 2 2.3 #> 734 2 2.3 #> 735 2 2.3 #> 736 2 2.3 #> 737 2 2.3 #> 738 2 2.3 #> 739 2 2.3 #> 740 2 2.3 #> 741 2 2.3 #> 742 2 2.3 #> 743 2 2.3 #> 744 2 2.3 #> 745 2 2.3 #> 746 2 2.3 #> 747 2 2.3 #> 748 2 2.3 #> 749 0 0.3 #> 750 0 0.3 #> 751 0 0.3 #> 752 0 0.3 #> 753 0 0.3 #> 754 0 0.3 #> 755 0 0.3 #> 756 0 0.3 #> 757 0 0.3 #> 758 0 0.3 #> 759 0 0.3 #> 760 0 0.3 #> 761 0 0.3 #> 762 0 0.3 #> 763 0 0.3 #> 764 0 0.3 #> 765 0 0.3 #> 766 0 0.3 #> 767 0 0.3 #> 768 0 0.3 #> 769 0 0.3 #> 770 0 0.3 #> 771 0 0.3 #> 772 0 0.3 #> 773 0 0.3 #> 774 0 0.3 #> 775 0 0.3 #> 776 0 0.3 #> 777 0 0.3 #> 778 0 0.3 #> 779 4 2.6 #> 780 4 2.6 #> 781 4 2.6 #> 782 4 2.6 #> 783 4 2.6 #> 784 4 2.6 #> 785 4 2.6 #> 786 4 2.6 #> 787 4 2.6 #> 788 4 2.6 #> 789 4 2.6 #> 790 4 2.6 #> 791 4 2.6 #> 792 4 2.6 #> 793 4 2.6 #> 794 4 2.6 #> 795 4 2.6 #> 796 4 2.6 #> 797 4 2.6 #> 798 4 2.6 #> 799 4 2.6 #> 800 4 2.6 #> 801 4 2.6 #> 802 4 2.6 #> 803 4 2.6 #> 804 4 2.6 #> 805 4 2.6 #> 806 4 2.6 #> 807 4 2.6 #> 808 4 2.6 #> 809 4 2.6 #> 810 4 2.6 #> 811 1 1.3 #> 812 1 1.3 #> 813 1 1.3 #> 814 1 1.3 #> 815 1 1.3 #> 816 1 1.3 #> 817 1 1.3 #> 818 1 1.3 #> 819 1 1.3 #> 820 1 1.3 #> 821 1 1.3 #> 822 1 1.3 #> 823 1 1.3 #> 824 1 1.3 #> 825 1 1.3 #> 826 1 1.3 #> 827 1 1.3 #> 828 1 1.3 #> 829 1 1.3 #> 830 1 1.3 #> 831 1 1.3 #> 832 1 1.3 #> 833 1 1.3 #> 834 1 1.3 #> 835 1 1.3 #> 836 1 1.3 #> 837 1 1.3 #> 838 1 1.3 #> 839 1 1.3 #> 840 0 0.4 #> 841 0 0.4 #> 842 0 0.4 #> 843 0 0.4 #> 844 0 0.4 #> 845 0 0.4 #> 846 0 0.4 #> 847 0 0.4 #> 848 0 0.4 #> 849 0 0.4 #> 850 0 0.4 #> 851 0 0.4 #> 852 0 0.4 #> 853 0 0.4 #> 854 0 0.4 #> 855 0 0.4 #> 856 0 0.4 #> 857 0 0.4 #> 858 0 0.4 #> 859 0 0.4 #> 860 0 0.4 #> 861 0 0.4 #> 862 0 0.4 #> 863 0 0.4 #> 864 0 0.4 #> 865 0 0.4 #> 866 0 0.4 #> 867 0 0.4 #> 868 0 0.4 #> 869 0 0.4 #> 870 0 0.4 #> 871 0 0.4 #> 872 0 0.5 #> 873 0 0.5 #> 874 0 0.5 #> 875 0 0.5 #> 876 0 0.5 #> 877 0 0.5 #> 878 0 0.5 #> 879 0 0.5 #> 880 0 0.5 #> 881 0 0.5 #> 882 0 0.5 #> 883 0 0.5 #> 884 0 0.5 #> 885 0 0.5 #> 886 0 0.5 #> 887 0 0.5 #> 888 0 0.5 #> 889 0 0.5 #> 890 0 0.5 #> 891 0 0.5 #> 892 0 0.5 #> 893 0 0.5 #> 894 0 0.5 #> 895 0 0.5 #> 896 0 0.5 #> 897 0 0.5 #> 898 0 0.5 #> 899 0 0.5 #> 900 0 0.5 #> 901 0 0.5 #> 902 0 0.5 #> 903 0 0.5 #> 904 3 0.7 #> 905 3 0.7 #> 906 3 0.7 #> 907 3 0.7 #> 908 3 0.7 #> 909 3 0.7 #> 910 3 0.7 #> 911 3 0.7 #> 912 3 0.7 #> 913 3 0.7 #> 914 3 0.7 #> 915 3 0.7 #> 916 3 0.7 #> 917 3 0.7 #> 918 3 0.7 #> 919 3 0.7 #> 920 3 0.7 #> 921 3 0.7 #> 922 3 0.7 #> 923 3 0.7 #> 924 3 0.7 #> 925 3 0.7 #> 926 3 0.7 #> 927 3 0.7 #> 928 3 0.7 #> 929 3 0.7 #> 930 3 0.7 #> 931 3 0.7 #> 932 3 0.7 #> 933 3 0.7 #> 934 3 0.7 #> 935 3 0.7 #> 936 1 0.7 #> 937 1 0.7 #> 938 1 0.7 #> 939 1 0.7 #> 940 1 0.7 #> 941 1 0.7 #> 942 1 0.7 #> 943 1 0.7 #> 944 1 0.7 #> 945 1 0.7 #> 946 1 0.7 #> 947 1 0.7 #> 948 1 0.7 #> 949 1 0.7 #> 950 1 0.7 #> 951 1 0.7 #> 952 1 0.7 #> 953 1 0.7 #> 954 1 0.7 #> 955 1 0.7 #> 956 1 0.7 #> 957 1 0.7 #> 958 1 0.7 #> 959 1 0.7 #> 960 1 0.7 #> 961 1 0.7 #> 962 1 0.7 #> 963 1 0.7 #> 964 1 0.7 #> 965 1 0.7 #> 966 2 2.9 #> 967 2 2.9 #> 968 2 2.9 #> 969 2 2.9 #> 970 2 2.9 #> 971 2 2.9 #> 972 2 2.9 #> 973 2 2.9 #> 974 2 2.9 #> 975 2 2.9 #> 976 2 2.9 #> 977 2 2.9 #> 978 2 2.9 #> 979 2 2.9 #> 980 2 2.9 #> 981 2 2.9 #> 982 2 2.9 #> 983 2 2.9 #> 984 2 2.9 #> 985 2 2.9 #> 986 2 2.9 #> 987 2 2.9 #> 988 2 2.9 #> 989 2 2.9 #> 990 2 2.9 #> 991 2 2.9 #> 992 2 2.9 #> 993 2 2.9 #> 994 2 2.9 #> 995 2 2.9 #> 996 1 1.5 #> 997 1 1.5 #> 998 1 1.5 #> 999 1 1.5 #> 1000 1 1.5 #> 1001 1 1.5 #> 1002 1 1.5 #> 1003 1 1.5 #> 1004 1 1.5 #> 1005 1 1.5 #> 1006 1 1.5 #> 1007 1 1.5 #> 1008 1 1.5 #> 1009 1 1.5 #> 1010 1 1.5 #> 1011 1 1.5 #> 1012 1 1.5 #> 1013 1 1.5 #> 1014 1 1.5 #> 1015 1 1.5 #> 1016 1 1.5 #> 1017 1 1.5 #> 1018 1 1.5 #> 1019 1 1.5 #> 1020 1 1.5 #> 1021 1 1.5 #> 1022 1 1.5 #> 1023 1 1.5 #> 1024 1 1.5 #> 1025 1 1.5 #> 1026 1 1.5 #> 1027 1 1.5 #> 1028 0 1.0 #> 1029 0 1.0 #> 1030 0 1.0 #> 1031 0 1.0 #> 1032 0 1.0 #> 1033 0 1.0 #> 1034 0 1.0 #> 1035 0 1.0 #> 1036 0 1.0 #> 1037 0 1.0 #> 1038 0 1.0 #> 1039 0 1.0 #> 1040 0 1.0 #> 1041 0 1.0 #> 1042 0 1.0 #> 1043 0 1.0 #> 1044 0 1.0 #> 1045 0 1.0 #> 1046 0 1.0 #> 1047 0 1.0 #> 1048 0 1.0 #> 1049 0 1.0 #> 1050 0 1.0 #> 1051 0 1.0 #> 1052 0 1.0 #> 1053 0 1.0 #> 1054 0 1.0 #> 1055 0 1.0 #> 1056 0 1.0 #> 1057 0 1.0 #> 1058 0 1.0 #> 1059 0 1.0 #> 1060 2 2.0 #> 1061 2 2.0 #> 1062 2 2.0 #> 1063 2 2.0 #> 1064 2 2.0 #> 1065 2 2.0 #> 1066 2 2.0 #> 1067 2 2.0 #> 1068 2 2.0 #> 1069 2 2.0 #> 1070 2 2.0 #> 1071 2 2.0 #> 1072 2 2.0 #> 1073 2 2.0 #> 1074 2 2.0 #> 1075 2 2.0 #> 1076 2 2.0 #> 1077 2 2.0 #> 1078 2 2.0 #> 1079 2 2.0 #> 1080 2 2.0 #> 1081 2 2.0 #> 1082 2 2.0 #> 1083 2 2.0 #> 1084 2 2.0 #> 1085 2 2.0 #> 1086 2 2.0 #> 1087 2 2.0 #> 1088 2 2.0 #> 1089 2 2.0 #> 1090 2 2.0 #> 1091 0 1.2 #> 1092 0 1.2 #> 1093 0 1.2 #> 1094 0 1.2 #> 1095 0 1.2 #> 1096 0 1.2 #> 1097 0 1.2 #> 1098 0 1.2 #> 1099 0 1.2 #> 1100 0 1.2 #> 1101 0 1.2 #> 1102 0 1.2 #> 1103 0 1.2 #> 1104 0 1.2 #> 1105 0 1.2 #> 1106 0 1.2 #> 1107 0 1.2 #> 1108 0 1.2 #> 1109 0 1.2 #> 1110 0 1.2 #> 1111 0 1.2 #> 1112 0 1.2 #> 1113 0 1.2 #> 1114 0 1.2 #> 1115 0 1.2 #> 1116 0 1.2 #> 1117 0 1.2 #> 1118 0 1.2 #> 1119 0 1.2 #> 1120 0 1.2 #> 1121 0 1.2 #> 1122 4 3.4 #> 1123 4 3.4 #> 1124 4 3.4 #> 1125 4 3.4 #> 1126 4 3.4 #> 1127 4 3.4 #> 1128 4 3.4 #> 1129 4 3.4 #> 1130 4 3.4 #> 1131 4 3.4 #> 1132 4 3.4 #> 1133 4 3.4 #> 1134 4 3.4 #> 1135 4 3.4 #> 1136 4 3.4 #> 1137 4 3.4 #> 1138 4 3.4 #> 1139 4 3.4 #> 1140 4 3.4 #> 1141 4 3.4 #> 1142 4 3.4 #> 1143 4 3.4 #> 1144 4 3.4 #> 1145 4 3.4 #> 1146 4 3.4 #> 1147 4 3.4 #> 1148 4 3.4 #> 1149 4 3.4 #> 1150 4 3.4 #> 1151 4 3.4 #> 1152 4 3.4 #> 1153 4 3.4 #> 1154 5 2.3 #> 1155 5 2.3 #> 1156 5 2.3 #> 1157 5 2.3 #> 1158 5 2.3 #> 1159 5 2.3 #> 1160 5 2.3 #> 1161 5 2.3 #> 1162 5 2.3 #> 1163 5 2.3 #> 1164 5 2.3 #> 1165 5 2.3 #> 1166 5 2.3 #> 1167 5 2.3 #> 1168 5 2.3 #> 1169 5 2.3 #> 1170 5 2.3 #> 1171 5 2.3 #> 1172 5 2.3 #> 1173 5 2.3 #> 1174 5 2.3 #> 1175 5 2.3 #> 1176 5 2.3 #> 1177 5 2.3 #> 1178 5 2.3 #> 1179 5 2.3 #> 1180 5 2.3 #> 1181 5 2.3 #> 1182 5 2.3 #> 1183 5 2.3 #> 1184 5 2.3 #> 1185 5 2.3 #> 1186 1 1.2 #> 1187 1 1.2 #> 1188 1 1.2 #> 1189 1 1.2 #> 1190 1 1.2 #> 1191 1 1.2 #> 1192 1 1.2 #> 1193 1 1.2 #> 1194 1 1.2 #> 1195 1 1.2 #> 1196 1 1.2 #> 1197 1 1.2 #> 1198 1 1.2 #> 1199 1 1.2 #> 1200 1 1.2 #> 1201 1 1.2 #> 1202 1 1.2 #> 1203 1 1.2 #> 1204 1 1.2 #> 1205 1 1.2 #> 1206 1 1.2 #> 1207 1 1.2 #> 1208 1 1.2 #> 1209 1 1.2 #> 1210 1 1.2 #> 1211 1 1.2 #> 1212 1 1.2 #> 1213 1 1.2 #> 1214 1 1.2 #> 1215 1 1.2 #> 1216 1 1.2 #> 1217 2 1.7 #> 1218 2 1.7 #> 1219 2 1.7 #> 1220 2 1.7 #> 1221 2 1.7 #> 1222 2 1.7 #> 1223 2 1.7 #> 1224 2 1.7 #> 1225 2 1.7 #> 1226 2 1.7 #> 1227 2 1.7 #> 1228 2 1.7 #> 1229 2 1.7 #> 1230 2 1.7 #> 1231 2 1.7 #> 1232 2 1.7 #> 1233 2 1.7 #> 1234 2 1.7 #> 1235 2 1.7 #> 1236 2 1.7 #> 1237 2 1.7 #> 1238 2 1.7 #> 1239 2 1.7 #> 1240 2 1.7 #> 1241 2 1.7 #> 1242 2 1.7 #> 1243 2 1.7 #> 1244 2 1.7 #> 1245 2 1.7 #> 1246 2 1.7 #> 1247 2 1.7 #> 1248 2 1.7 #> 1249 2 1.7 #> 1250 2 1.7 #> 1251 2 1.7 #> 1252 2 1.7 #> 1253 2 1.7 #> 1254 2 1.7 #> 1255 2 1.7 #> 1256 2 1.7 #> 1257 2 1.7 #> 1258 2 1.7 #> 1259 2 1.7 #> 1260 2 1.7 #> 1261 2 1.7 #> 1262 2 1.7 #> 1263 2 1.7 #> 1264 2 1.7 #> 1265 2 1.7 #> 1266 2 1.7 #> 1267 2 1.7 #> 1268 2 1.7 #> 1269 2 1.7 #> 1270 2 1.7 #> 1271 2 1.7 #> 1272 2 1.7 #> 1273 2 1.7 #> 1274 2 1.7 #> 1275 2 1.7 #> 1276 2 1.7 #> 1277 2 1.7 #> 1278 2 1.7 #> 1279 2 1.7 #> 1280 2 2.5 #> 1281 2 2.5 #> 1282 2 2.5 #> 1283 2 2.5 #> 1284 2 2.5 #> 1285 2 2.5 #> 1286 2 2.5 #> 1287 2 2.5 #> 1288 2 2.5 #> 1289 2 2.5 #> 1290 2 2.5 #> 1291 2 2.5 #> 1292 2 2.5 #> 1293 2 2.5 #> 1294 2 2.5 #> 1295 2 2.5 #> 1296 2 2.5 #> 1297 2 2.5 #> 1298 2 2.5 #> 1299 2 2.5 #> 1300 2 2.5 #> 1301 2 2.5 #> 1302 2 2.5 #> 1303 2 2.5 #> 1304 2 2.5 #> 1305 2 2.5 #> 1306 2 2.5 #> 1307 2 2.5 #> 1308 2 2.5 #> 1309 2 2.5 #> 1310 2 2.5 #> 1311 0 0.4 #> 1312 0 0.4 #> 1313 0 0.4 #> 1314 0 0.4 #> 1315 0 0.4 #> 1316 0 0.4 #> 1317 0 0.4 #> 1318 0 0.4 #> 1319 0 0.4 #> 1320 0 0.4 #> 1321 0 0.4 #> 1322 0 0.4 #> 1323 0 0.4 #> 1324 0 0.4 #> 1325 0 0.4 #> 1326 0 0.4 #> 1327 0 0.4 #> 1328 0 0.4 #> 1329 0 0.4 #> 1330 0 0.4 #> 1331 0 0.4 #> 1332 0 0.4 #> 1333 0 0.4 #> 1334 0 0.4 #> 1335 0 0.4 #> 1336 0 0.4 #> 1337 0 0.4 #> 1338 0 0.4 #> 1339 0 0.4 #> 1340 0 0.4 #> 1341 0 0.4 #> 1342 0 0.4 #> 1343 4 0.7 #> 1344 4 0.7 #> 1345 4 0.7 #> 1346 4 0.7 #> 1347 4 0.7 #> 1348 4 0.7 #> 1349 4 0.7 #> 1350 4 0.7 #> 1351 4 0.7 #> 1352 4 0.7 #> 1353 4 0.7 #> 1354 4 0.7 #> 1355 4 0.7 #> 1356 4 0.7 #> 1357 4 0.7 #> 1358 4 0.7 #> 1359 4 0.7 #> 1360 4 0.7 #> 1361 4 0.7 #> 1362 4 0.7 #> 1363 4 0.7 #> 1364 4 0.7 #> 1365 4 0.7 #> 1366 4 0.7 #> 1367 4 0.7 #> 1368 4 0.7 #> 1369 4 0.7 #> 1370 4 0.7 #> 1371 4 0.7 #> 1372 4 2.3 #> 1373 4 2.3 #> 1374 4 2.3 #> 1375 4 2.3 #> 1376 4 2.3 #> 1377 4 2.3 #> 1378 4 2.3 #> 1379 4 2.3 #> 1380 4 2.3 #> 1381 4 2.3 #> 1382 4 2.3 #> 1383 4 2.3 #> 1384 4 2.3 #> 1385 4 2.3 #> 1386 4 2.3 #> 1387 4 2.3 #> 1388 4 2.3 #> 1389 4 2.3 #> 1390 4 2.3 #> 1391 4 2.3 #> 1392 4 2.3 #> 1393 4 2.3 #> 1394 4 2.3 #> 1395 4 2.3 #> 1396 4 2.3 #> 1397 4 2.3 #> 1398 4 2.3 #> 1399 4 2.3 #> 1400 4 2.3 #> 1401 4 2.3 #> 1402 4 2.3 #> 1403 1 0.9 #> 1404 1 0.9 #> 1405 1 0.9 #> 1406 1 0.9 #> 1407 1 0.9 #> 1408 1 0.9 #> 1409 1 0.9 #> 1410 1 0.9 #> 1411 1 0.9 #> 1412 1 0.9 #> 1413 1 0.9 #> 1414 1 0.9 #> 1415 1 0.9 #> 1416 1 0.9 #> 1417 1 0.9 #> 1418 1 0.9 #> 1419 1 0.9 #> 1420 1 0.9 #> 1421 1 0.9 #> 1422 1 0.9 #> 1423 1 0.9 #> 1424 1 0.9 #> 1425 1 0.9 #> 1426 1 0.9 #> 1427 1 0.9 #> 1428 1 0.9 #> 1429 1 0.9 #> 1430 1 0.9 #> 1431 1 0.9 #> 1432 1 0.9 #> 1433 1 0.9 #> 1434 1 0.9 #> 1435 2 1.1 #> 1436 2 1.1 #> 1437 2 1.1 #> 1438 2 1.1 #> 1439 2 1.1 #> 1440 2 1.1 #> 1441 2 1.1 #> 1442 2 1.1 #> 1443 2 1.1 #> 1444 2 1.1 #> 1445 2 1.1 #> 1446 2 1.1 #> 1447 2 1.1 #> 1448 2 1.1 #> 1449 2 1.1 #> 1450 2 1.1 #> 1451 2 1.1 #> 1452 2 1.1 #> 1453 2 1.1 #> 1454 2 1.1 #> 1455 2 1.1 #> 1456 2 1.1 #> 1457 2 1.1 #> 1458 2 1.1 #> 1459 2 1.1 #> 1460 2 1.1 #> 1461 2 1.1 #> 1462 2 1.1 #> 1463 2 1.1 #> 1464 2 1.1 #> 1465 2 1.1 #> 1466 1 1.9 #> 1467 1 1.9 #> 1468 1 1.9 #> 1469 1 1.9 #> 1470 1 1.9 #> 1471 1 1.9 #> 1472 1 1.9 #> 1473 1 1.9 #> 1474 1 1.9 #> 1475 1 1.9 #> 1476 1 1.9 #> 1477 1 1.9 #> 1478 1 1.9 #> 1479 1 1.9 #> 1480 1 1.9 #> 1481 1 1.9 #> 1482 1 1.9 #> 1483 1 1.9 #> 1484 1 1.9 #> 1485 1 1.9 #> 1486 1 1.9 #> 1487 1 1.9 #> 1488 1 1.9 #> 1489 1 1.9 #> 1490 1 1.9 #> 1491 1 1.9 #> 1492 1 1.9 #> 1493 1 1.9 #> 1494 1 1.9 #> 1495 1 1.9 #> 1496 0 0.2 #> 1497 0 0.2 #> 1498 0 0.2 #> 1499 0 0.2 #> 1500 0 0.2 #> 1501 0 0.2 #> 1502 0 0.2 #> 1503 0 0.2 #> 1504 0 0.2 #> 1505 0 0.2 #> 1506 0 0.2 #> 1507 0 0.2 #> 1508 0 0.2 #> 1509 0 0.2 #> 1510 0 0.2 #> 1511 0 0.2 #> 1512 0 0.2 #> 1513 0 0.2 #> 1514 0 0.2 #> 1515 0 0.2 #> 1516 0 0.2 #> 1517 0 0.2 #> 1518 0 0.2 #> 1519 0 0.2 #> 1520 0 0.2 #> 1521 0 0.2 #> 1522 0 0.2 #> 1523 0 0.2 #> 1524 0 0.2 #> 1525 0 0.2 #> 1526 0 0.2 #> 1527 0 0.2 #> 1528 0 1.5 #> 1529 0 1.5 #> 1530 0 1.5 #> 1531 0 1.5 #> 1532 0 1.5 #> 1533 0 1.5 #> 1534 0 1.5 #> 1535 0 1.5 #> 1536 0 1.5 #> 1537 0 1.5 #> 1538 0 1.5 #> 1539 0 1.5 #> 1540 0 1.5 #> 1541 0 1.5 #> 1542 0 1.5 #> 1543 0 1.5 #> 1544 0 1.5 #> 1545 0 1.5 #> 1546 0 1.5 #> 1547 0 1.5 #> 1548 0 1.5 #> 1549 0 1.5 #> 1550 0 1.5 #> 1551 0 1.5 #> 1552 0 1.5 #> 1553 0 1.5 #> 1554 0 1.5 #> 1555 0 1.5 #> 1556 0 1.5 #> 1557 0 1.5 #> 1558 0 1.5 #> 1559 0 1.5 #> 1560 1 0.6 #> 1561 1 0.6 #> 1562 1 0.6 #> 1563 1 0.6 #> 1564 1 0.6 #> 1565 1 0.6 #> 1566 1 0.6 #> 1567 1 0.6 #> 1568 1 0.6 #> 1569 1 0.6 #> 1570 1 0.6 #> 1571 1 0.6 #> 1572 1 0.6 #> 1573 1 0.6 #> 1574 1 0.6 #> 1575 1 0.6 #> 1576 1 0.6 #> 1577 1 0.6 #> 1578 1 0.6 #> 1579 1 0.6 #> 1580 1 0.6 #> 1581 1 0.6 #> 1582 1 0.6 #> 1583 1 0.6 #> 1584 1 0.6 #> 1585 1 0.6 #> 1586 1 0.6 #> 1587 1 0.6 #> 1588 1 0.6 #> 1589 1 0.6 #> 1590 1 0.6 #> 1591 3 3.9 #> 1592 3 3.9 #> 1593 3 3.9 #> 1594 3 3.9 #> 1595 3 3.9 #> 1596 3 3.9 #> 1597 3 3.9 #> 1598 3 3.9 #> 1599 3 3.9 #> 1600 3 3.9 #> 1601 3 3.9 #> 1602 3 3.9 #> 1603 3 3.9 #> 1604 3 3.9 #> 1605 3 3.9 #> 1606 3 3.9 #> 1607 3 3.9 #> 1608 3 3.9 #> 1609 3 3.9 #> 1610 3 3.9 #> 1611 3 3.9 #> 1612 3 3.9 #> 1613 3 3.9 #> 1614 3 3.9 #> 1615 3 3.9 #> 1616 3 3.9 #> 1617 3 3.9 #> 1618 3 3.9 #> 1619 3 3.9 #> 1620 3 3.9 #> 1621 3 3.9 #> 1622 3 3.9 #> 1623 3 1.7 #> 1624 3 1.7 #> 1625 3 1.7 #> 1626 3 1.7 #> 1627 3 1.7 #> 1628 3 1.7 #> 1629 3 1.7 #> 1630 3 1.7 #> 1631 3 1.7 #> 1632 3 1.7 #> 1633 3 1.7 #> 1634 3 1.7 #> 1635 3 1.7 #> 1636 3 1.7 #> 1637 3 1.7 #> 1638 3 1.7 #> 1639 3 1.7 #> 1640 3 1.7 #> 1641 3 1.7 #> 1642 3 1.7 #> 1643 3 1.7 #> 1644 3 1.7 #> 1645 3 1.7 #> 1646 3 1.7 #> 1647 3 1.7 #> 1648 3 1.7 #> 1649 3 1.7 #> 1650 3 1.7 #> 1651 3 1.7 #> 1652 3 1.7 #> 1653 3 1.9 #> 1654 3 1.9 #> 1655 3 1.9 #> 1656 3 1.9 #> 1657 3 1.9 #> 1658 3 1.9 #> 1659 3 1.9 #> 1660 3 1.9 #> 1661 3 1.9 #> 1662 3 1.9 #> 1663 3 1.9 #> 1664 3 1.9 #> 1665 3 1.9 #> 1666 3 1.9 #> 1667 3 1.9 #> 1668 3 1.9 #> 1669 3 1.9 #> 1670 3 1.9 #> 1671 3 1.9 #> 1672 3 1.9 #> 1673 3 1.9 #> 1674 3 1.9 #> 1675 3 1.9 #> 1676 3 1.9 #> 1677 3 1.9 #> 1678 3 1.9 #> 1679 3 1.9 #> 1680 3 1.9 #> 1681 3 1.9 #> 1682 3 1.9 #> 1683 3 1.9 #> 1684 3 1.9 #> 1685 0 0.5 #> 1686 0 0.5 #> 1687 0 0.5 #> 1688 0 0.5 #> 1689 0 0.5 #> 1690 0 0.5 #> 1691 0 0.5 #> 1692 0 0.5 #> 1693 0 0.5 #> 1694 0 0.5 #> 1695 0 0.5 #> 1696 0 0.5 #> 1697 0 0.5 #> 1698 0 0.5 #> 1699 0 0.5 #> 1700 0 0.5 #> 1701 0 0.5 #> 1702 0 0.5 #> 1703 0 0.5 #> 1704 0 0.5 #> 1705 0 0.5 #> 1706 0 0.5 #> 1707 0 0.5 #> 1708 0 0.5 #> 1709 0 0.5 #> 1710 0 0.5 #> 1711 0 0.5 #> 1712 0 0.5 #> 1713 0 0.5 #> 1714 0 0.5 #> 1715 0 0.5 #> 1716 0 0.5 #> 1717 1 1.5 #> 1718 1 1.5 #> 1719 1 1.5 #> 1720 1 1.5 #> 1721 1 1.5 #> 1722 1 1.5 #> 1723 1 1.5 #> 1724 1 1.5 #> 1725 1 1.5 #> 1726 1 1.5 #> 1727 1 1.5 #> 1728 1 1.5 #> 1729 1 1.5 #> 1730 1 1.5 #> 1731 1 1.5 #> 1732 1 1.5 #> 1733 1 1.5 #> 1734 1 1.5 #> 1735 1 1.5 #> 1736 1 1.5 #> 1737 1 1.5 #> 1738 1 1.5 #> 1739 1 1.5 #> 1740 1 1.5 #> 1741 1 1.5 #> 1742 1 1.5 #> 1743 1 1.5 #> 1744 1 1.5 #> 1745 1 1.5 #> 1746 1 1.5 #> 1747 1 1.5 #> 1748 1 1.5 #> 1749 2 1.6 #> 1750 2 1.6 #> 1751 2 1.6 #> 1752 2 1.6 #> 1753 2 1.6 #> 1754 2 1.6 #> 1755 2 1.6 #> 1756 2 1.6 #> 1757 2 1.6 #> 1758 2 1.6 #> 1759 2 1.6 #> 1760 2 1.6 #> 1761 2 1.6 #> 1762 2 1.6 #> 1763 2 1.6 #> 1764 2 1.6 #> 1765 2 1.6 #> 1766 2 1.6 #> 1767 2 1.6 #> 1768 2 1.6 #> 1769 2 1.6 #> 1770 2 1.6 #> 1771 2 1.6 #> 1772 2 1.6 #> 1773 2 1.6 #> 1774 2 1.6 #> 1775 2 1.6 #> 1776 2 1.6 #> 1777 2 1.6 #> 1778 2 1.6 #> 1779 2 1.6 #> 1780 2 1.9 #> 1781 2 1.9 #> 1782 2 1.9 #> 1783 2 1.9 #> 1784 2 1.9 #> 1785 2 1.9 #> 1786 2 1.9 #> 1787 2 1.9 #> 1788 2 1.9 #> 1789 2 1.9 #> 1790 2 1.9 #> 1791 2 1.9 #> 1792 2 1.9 #> 1793 2 1.9 #> 1794 2 1.9 #> 1795 2 1.9 #> 1796 2 1.9 #> 1797 2 1.9 #> 1798 2 1.9 #> 1799 2 1.9 #> 1800 2 1.9 #> 1801 2 1.9 #> 1802 2 1.9 #> 1803 2 1.9 #> 1804 2 1.9 #> 1805 2 1.9 #> 1806 2 1.9 #> 1807 2 1.9 #> 1808 2 1.9 #> 1809 1 1.0 #> 1810 1 1.0 #> 1811 1 1.0 #> 1812 1 1.0 #> 1813 1 1.0 #> 1814 1 1.0 #> 1815 1 1.0 #> 1816 1 1.0 #> 1817 1 1.0 #> 1818 1 1.0 #> 1819 1 1.0 #> 1820 1 1.0 #> 1821 1 1.0 #> 1822 1 1.0 #> 1823 1 1.0 #> 1824 1 1.0 #> 1825 1 1.0 #> 1826 1 1.0 #> 1827 1 1.0 #> 1828 1 1.0 #> 1829 1 1.0 #> 1830 1 1.0 #> 1831 1 1.0 #> 1832 1 1.0 #> 1833 1 1.0 #> 1834 1 1.0 #> 1835 1 1.0 #> 1836 1 1.0 #> 1837 1 1.0 #> 1838 1 1.0 #> 1839 1 1.0 #> 1840 4 2.1 #> 1841 4 2.1 #> 1842 4 2.1 #> 1843 4 2.1 #> 1844 4 2.1 #> 1845 4 2.1 #> 1846 4 2.1 #> 1847 4 2.1 #> 1848 4 2.1 #> 1849 4 2.1 #> 1850 4 2.1 #> 1851 4 2.1 #> 1852 4 2.1 #> 1853 4 2.1 #> 1854 4 2.1 #> 1855 4 2.1 #> 1856 4 2.1 #> 1857 4 2.1 #> 1858 4 2.1 #> 1859 4 2.1 #> 1860 4 2.1 #> 1861 4 2.1 #> 1862 4 2.1 #> 1863 4 2.1 #> 1864 4 2.1 #> 1865 4 2.1 #> 1866 4 2.1 #> 1867 4 2.1 #> 1868 4 2.1 #> 1869 4 2.1 #> 1870 4 2.1 #> 1871 4 2.1 #> 1872 0 0.7 #> 1873 0 0.7 #> 1874 0 0.7 #> 1875 0 0.7 #> 1876 0 0.7 #> 1877 0 0.7 #> 1878 0 0.7 #> 1879 0 0.7 #> 1880 0 0.7 #> 1881 0 0.7 #> 1882 0 0.7 #> 1883 0 0.7 #> 1884 0 0.7 #> 1885 0 0.7 #> 1886 0 0.7 #> 1887 0 0.7 #> 1888 0 0.7 #> 1889 0 0.7 #> 1890 0 0.7 #> 1891 0 0.7 #> 1892 0 0.7 #> 1893 0 0.7 #> 1894 0 0.7 #> 1895 0 0.7 #> 1896 0 0.7 #> 1897 0 0.7 #> 1898 0 0.7 #> 1899 0 0.7 #> 1900 0 0.7 #> 1901 0 0.7 #> 1902 2 2.8 #> 1903 2 2.8 #> 1904 2 2.8 #> 1905 2 2.8 #> 1906 2 2.8 #> 1907 2 2.8 #> 1908 2 2.8 #> 1909 2 2.8 #> 1910 2 2.8 #> 1911 2 2.8 #> 1912 2 2.8 #> 1913 2 2.8 #> 1914 2 2.8 #> 1915 2 2.8 #> 1916 2 2.8 #> 1917 2 2.8 #> 1918 2 2.8 #> 1919 2 2.8 #> 1920 2 2.8 #> 1921 2 2.8 #> 1922 2 2.8 #> 1923 2 2.8 #> 1924 2 2.8 #> 1925 2 2.8 #> 1926 2 2.8 #> 1927 2 2.8 #> 1928 2 2.8 #> 1929 2 2.8 #> 1930 2 2.8 #> 1931 2 2.8 #> 1932 2 2.8 #> 1933 0 0.5 #> 1934 0 0.5 #> 1935 0 0.5 #> 1936 0 0.5 #> 1937 0 0.5 #> 1938 0 0.5 #> 1939 0 0.5 #> 1940 0 0.5 #> 1941 0 0.5 #> 1942 0 0.5 #> 1943 0 0.5 #> 1944 0 0.5 #> 1945 0 0.5 #> 1946 0 0.5 #> 1947 0 0.5 #> 1948 0 0.5 #> 1949 0 0.5 #> 1950 0 0.5 #> 1951 0 0.5 #> 1952 0 0.5 #> 1953 0 0.5 #> 1954 0 0.5 #> 1955 0 0.5 #> 1956 0 0.5 #> 1957 0 0.5 #> 1958 0 0.5 #> 1959 0 0.5 #> 1960 0 0.5 #> 1961 0 0.5 #> 1962 0 0.5 #> 1963 0 0.5 #> 1964 0 0.5 #> 1965 0 1.2 #> 1966 0 1.2 #> 1967 0 1.2 #> 1968 0 1.2 #> 1969 0 1.2 #> 1970 0 1.2 #> 1971 0 1.2 #> 1972 0 1.2 #> 1973 0 1.2 #> 1974 0 1.2 #> 1975 0 1.2 #> 1976 0 1.2 #> 1977 0 1.2 #> 1978 0 1.2 #> 1979 0 1.2 #> 1980 0 1.2 #> 1981 0 1.2 #> 1982 0 1.2 #> 1983 0 1.2 #> 1984 0 1.2 #> 1985 0 1.2 #> 1986 0 1.2 #> 1987 0 1.2 #> 1988 0 1.2 #> 1989 0 1.2 #> 1990 0 1.2 #> 1991 0 1.2 #> 1992 0 1.2 #> 1993 0 1.2 #> 1994 2 0.8 #> 1995 2 0.8 #> 1996 2 0.8 #> 1997 2 0.8 #> 1998 2 0.8 #> 1999 2 0.8 #> 2000 2 0.8 #> 2001 2 0.8 #> 2002 2 0.8 #> 2003 2 0.8 #> 2004 2 0.8 #> 2005 2 0.8 #> 2006 2 0.8 #> 2007 2 0.8 #> 2008 2 0.8 #> 2009 2 0.8 #> 2010 2 0.8 #> 2011 2 0.8 #> 2012 2 0.8 #> 2013 2 0.8 #> 2014 2 0.8 #> 2015 2 0.8 #> 2016 2 0.8 #> 2017 2 0.8 #> 2018 2 0.8 #> 2019 2 0.8 #> 2020 2 0.8 #> 2021 2 0.8 #> 2022 2 0.8 #> 2023 2 0.8 #> 2024 2 0.8 #> 2025 2 0.8 #> 2026 1 0.9 #> 2027 1 0.9 #> 2028 1 0.9 #> 2029 1 0.9 #> 2030 1 0.9 #> 2031 1 0.9 #> 2032 1 0.9 #> 2033 1 0.9 #> 2034 1 0.9 #> 2035 1 0.9 #> 2036 1 0.9 #> 2037 1 0.9 #> 2038 1 0.9 #> 2039 1 0.9 #> 2040 1 0.9 #> Home_Goals #> 1 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 2 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 3 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 4 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 5 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 6 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 7 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 8 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 9 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 10 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 11 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 12 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 13 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 14 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 15 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 16 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 17 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 18 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 19 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 20 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 21 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 22 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 23 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 24 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 25 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 26 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 27 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 28 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 29 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 30 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 31 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 32 Ezequiel Ávila · 9’ Aimar Oroz (P) · 74’ #> 33 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 34 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 35 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 36 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 37 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 38 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 39 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 40 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 41 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 42 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 43 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 44 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 45 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 46 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 47 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 48 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 49 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 50 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 51 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 52 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 53 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 54 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 55 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 56 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 57 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 58 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 59 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 60 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 61 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 62 Iago Aspas · 45+2’ Gonçalo Paciência · 63’ #> 63 #> 64 #> 65 #> 66 #> 67 #> 68 #> 69 #> 70 #> 71 #> 72 #> 73 #> 74 #> 75 #> 76 #> 77 #> 78 #> 79 #> 80 #> 81 #> 82 #> 83 #> 84 #> 85 #> 86 #> 87 #> 88 #> 89 #> 90 #> 91 #> 92 #> 93 #> 94 Sergio Busquets · 90+3’ #> 95 Sergio Busquets · 90+3’ #> 96 Sergio Busquets · 90+3’ #> 97 Sergio Busquets · 90+3’ #> 98 Sergio Busquets · 90+3’ #> 99 Sergio Busquets · 90+3’ #> 100 Sergio Busquets · 90+3’ #> 101 Sergio Busquets · 90+3’ #> 102 Sergio Busquets · 90+3’ #> 103 Sergio Busquets · 90+3’ #> 104 Sergio Busquets · 90+3’ #> 105 Sergio Busquets · 90+3’ #> 106 Sergio Busquets · 90+3’ #> 107 Sergio Busquets · 90+3’ #> 108 Sergio Busquets · 90+3’ #> 109 Sergio Busquets · 90+3’ #> 110 Sergio Busquets · 90+3’ #> 111 Sergio Busquets · 90+3’ #> 112 Sergio Busquets · 90+3’ #> 113 Sergio Busquets · 90+3’ #> 114 Sergio Busquets · 90+3’ #> 115 Sergio Busquets · 90+3’ #> 116 Sergio Busquets · 90+3’ #> 117 Sergio Busquets · 90+3’ #> 118 Sergio Busquets · 90+3’ #> 119 Sergio Busquets · 90+3’ #> 120 Sergio Busquets · 90+3’ #> 121 Sergio Busquets · 90+3’ #> 122 Sergio Busquets · 90+3’ #> 123 Sergio Busquets · 90+3’ #> 124 Sergio Busquets · 90+3’ #> 125 #> 126 #> 127 #> 128 #> 129 #> 130 #> 131 #> 132 #> 133 #> 134 #> 135 #> 136 #> 137 #> 138 #> 139 #> 140 #> 141 #> 142 #> 143 #> 144 #> 145 #> 146 #> 147 #> 148 #> 149 #> 150 #> 151 #> 152 #> 153 #> 154 #> 155 #> 156 #> 157 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 158 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 159 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 160 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 161 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 162 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 163 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 164 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 165 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 166 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 167 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 168 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 169 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 170 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 171 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 172 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 173 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 174 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 175 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 176 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 177 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 178 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 179 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 180 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 181 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 182 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 183 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 184 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 185 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 186 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 187 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 188 Carlos Soler (P) · 45+1’ Eray Cömert · 52’ #> 189 Largie Ramazani · 6’ #> 190 Largie Ramazani · 6’ #> 191 Largie Ramazani · 6’ #> 192 Largie Ramazani · 6’ #> 193 Largie Ramazani · 6’ #> 194 Largie Ramazani · 6’ #> 195 Largie Ramazani · 6’ #> 196 Largie Ramazani · 6’ #> 197 Largie Ramazani · 6’ #> 198 Largie Ramazani · 6’ #> 199 Largie Ramazani · 6’ #> 200 Largie Ramazani · 6’ #> 201 Largie Ramazani · 6’ #> 202 Largie Ramazani · 6’ #> 203 Largie Ramazani · 6’ #> 204 Largie Ramazani · 6’ #> 205 Largie Ramazani · 6’ #> 206 Largie Ramazani · 6’ #> 207 Largie Ramazani · 6’ #> 208 Largie Ramazani · 6’ #> 209 Largie Ramazani · 6’ #> 210 Largie Ramazani · 6’ #> 211 Largie Ramazani · 6’ #> 212 Largie Ramazani · 6’ #> 213 Largie Ramazani · 6’ #> 214 Largie Ramazani · 6’ #> 215 Largie Ramazani · 6’ #> 216 Largie Ramazani · 6’ #> 217 Largie Ramazani · 6’ #> 218 Largie Ramazani · 6’ #> 219 Largie Ramazani · 6’ #> 220 Largie Ramazani · 6’ #> 221 #> 222 #> 223 #> 224 #> 225 #> 226 #> 227 #> 228 #> 229 #> 230 #> 231 #> 232 #> 233 #> 234 #> 235 #> 236 #> 237 #> 238 #> 239 #> 240 #> 241 #> 242 #> 243 #> 244 #> 245 #> 246 #> 247 #> 248 #> 249 #> 250 #> 251 #> 252 #> 253 #> 254 #> 255 #> 256 #> 257 #> 258 #> 259 #> 260 #> 261 #> 262 #> 263 #> 264 #> 265 #> 266 #> 267 #> 268 #> 269 #> 270 #> 271 #> 272 #> 273 #> 274 #> 275 #> 276 #> 277 #> 278 #> 279 #> 280 #> 281 #> 282 #> 283 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 284 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 285 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 286 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 287 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 288 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 289 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 290 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 291 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 292 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 293 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 294 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 295 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 296 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 297 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 298 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 299 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 300 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 301 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 302 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 303 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 304 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 305 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 306 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 307 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 308 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 309 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 310 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 311 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 312 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 313 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 314 Borja Iglesias · 28’ Juanmi · 39’ Juanmi · 60’ #> 315 Sergi Gómez · 30’ #> 316 Sergi Gómez · 30’ #> 317 Sergi Gómez · 30’ #> 318 Sergi Gómez · 30’ #> 319 Sergi Gómez · 30’ #> 320 Sergi Gómez · 30’ #> 321 Sergi Gómez · 30’ #> 322 Sergi Gómez · 30’ #> 323 Sergi Gómez · 30’ #> 324 Sergi Gómez · 30’ #> 325 Sergi Gómez · 30’ #> 326 Sergi Gómez · 30’ #> 327 Sergi Gómez · 30’ #> 328 Sergi Gómez · 30’ #> 329 Sergi Gómez · 30’ #> 330 Sergi Gómez · 30’ #> 331 Sergi Gómez · 30’ #> 332 Sergi Gómez · 30’ #> 333 Sergi Gómez · 30’ #> 334 Sergi Gómez · 30’ #> 335 Sergi Gómez · 30’ #> 336 Sergi Gómez · 30’ #> 337 Sergi Gómez · 30’ #> 338 Sergi Gómez · 30’ #> 339 Sergi Gómez · 30’ #> 340 Sergi Gómez · 30’ #> 341 Sergi Gómez · 30’ #> 342 Sergi Gómez · 30’ #> 343 Sergi Gómez · 30’ #> 344 Sergi Gómez · 30’ #> 345 Sergi Gómez · 30’ #> 346 Karim Rekik · 86’ Marcos Acuña · 88’ #> 347 Karim Rekik · 86’ Marcos Acuña · 88’ #> 348 Karim Rekik · 86’ Marcos Acuña · 88’ #> 349 Karim Rekik · 86’ Marcos Acuña · 88’ #> 350 Karim Rekik · 86’ Marcos Acuña · 88’ #> 351 Karim Rekik · 86’ Marcos Acuña · 88’ #> 352 Karim Rekik · 86’ Marcos Acuña · 88’ #> 353 Karim Rekik · 86’ Marcos Acuña · 88’ #> 354 Karim Rekik · 86’ Marcos Acuña · 88’ #> 355 Karim Rekik · 86’ Marcos Acuña · 88’ #> 356 Karim Rekik · 86’ Marcos Acuña · 88’ #> 357 Karim Rekik · 86’ Marcos Acuña · 88’ #> 358 Karim Rekik · 86’ Marcos Acuña · 88’ #> 359 Karim Rekik · 86’ Marcos Acuña · 88’ #> 360 Karim Rekik · 86’ Marcos Acuña · 88’ #> 361 Karim Rekik · 86’ Marcos Acuña · 88’ #> 362 Karim Rekik · 86’ Marcos Acuña · 88’ #> 363 Karim Rekik · 86’ Marcos Acuña · 88’ #> 364 Karim Rekik · 86’ Marcos Acuña · 88’ #> 365 Karim Rekik · 86’ Marcos Acuña · 88’ #> 366 Karim Rekik · 86’ Marcos Acuña · 88’ #> 367 Karim Rekik · 86’ Marcos Acuña · 88’ #> 368 Karim Rekik · 86’ Marcos Acuña · 88’ #> 369 Karim Rekik · 86’ Marcos Acuña · 88’ #> 370 Karim Rekik · 86’ Marcos Acuña · 88’ #> 371 Karim Rekik · 86’ Marcos Acuña · 88’ #> 372 Karim Rekik · 86’ Marcos Acuña · 88’ #> 373 Karim Rekik · 86’ Marcos Acuña · 88’ #> 374 Karim Rekik · 86’ Marcos Acuña · 88’ #> 375 Karim Rekik · 86’ Marcos Acuña · 88’ #> 376 Karim Rekik · 86’ Marcos Acuña · 88’ #> 377 Karim Rekik · 86’ Marcos Acuña · 88’ #> 378 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 379 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 380 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 381 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 382 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 383 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 384 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 385 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 386 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 387 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 388 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 389 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 390 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 391 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 392 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 393 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 394 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 395 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 396 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 397 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 398 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 399 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 400 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 401 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 402 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 403 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 404 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 405 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 406 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 407 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 408 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 409 Ezequiel Ávila (P) · 37’ Kiké (P) · 79’ #> 410 Vedat Muriqi · 56’ #> 411 Vedat Muriqi · 56’ #> 412 Vedat Muriqi · 56’ #> 413 Vedat Muriqi · 56’ #> 414 Vedat Muriqi · 56’ #> 415 Vedat Muriqi · 56’ #> 416 Vedat Muriqi · 56’ #> 417 Vedat Muriqi · 56’ #> 418 Vedat Muriqi · 56’ #> 419 Vedat Muriqi · 56’ #> 420 Vedat Muriqi · 56’ #> 421 Vedat Muriqi · 56’ #> 422 Vedat Muriqi · 56’ #> 423 Vedat Muriqi · 56’ #> 424 Vedat Muriqi · 56’ #> 425 Vedat Muriqi · 56’ #> 426 Vedat Muriqi · 56’ #> 427 Vedat Muriqi · 56’ #> 428 Vedat Muriqi · 56’ #> 429 Vedat Muriqi · 56’ #> 430 Vedat Muriqi · 56’ #> 431 Vedat Muriqi · 56’ #> 432 Vedat Muriqi · 56’ #> 433 Vedat Muriqi · 56’ #> 434 Vedat Muriqi · 56’ #> 435 Vedat Muriqi · 56’ #> 436 Vedat Muriqi · 56’ #> 437 Vedat Muriqi · 56’ #> 438 Vedat Muriqi · 56’ #> 439 Iago Aspas (P) · 23’ #> 440 Iago Aspas (P) · 23’ #> 441 Iago Aspas (P) · 23’ #> 442 Iago Aspas (P) · 23’ #> 443 Iago Aspas (P) · 23’ #> 444 Iago Aspas (P) · 23’ #> 445 Iago Aspas (P) · 23’ #> 446 Iago Aspas (P) · 23’ #> 447 Iago Aspas (P) · 23’ #> 448 Iago Aspas (P) · 23’ #> 449 Iago Aspas (P) · 23’ #> 450 Iago Aspas (P) · 23’ #> 451 Iago Aspas (P) · 23’ #> 452 Iago Aspas (P) · 23’ #> 453 Iago Aspas (P) · 23’ #> 454 Iago Aspas (P) · 23’ #> 455 Iago Aspas (P) · 23’ #> 456 Iago Aspas (P) · 23’ #> 457 Iago Aspas (P) · 23’ #> 458 Iago Aspas (P) · 23’ #> 459 Iago Aspas (P) · 23’ #> 460 Iago Aspas (P) · 23’ #> 461 Iago Aspas (P) · 23’ #> 462 Iago Aspas (P) · 23’ #> 463 Iago Aspas (P) · 23’ #> 464 Iago Aspas (P) · 23’ #> 465 Iago Aspas (P) · 23’ #> 466 Iago Aspas (P) · 23’ #> 467 Iago Aspas (P) · 23’ #> 468 Iago Aspas (P) · 23’ #> 469 Álex Berenguer · 42’ #> 470 Álex Berenguer · 42’ #> 471 Álex Berenguer · 42’ #> 472 Álex Berenguer · 42’ #> 473 Álex Berenguer · 42’ #> 474 Álex Berenguer · 42’ #> 475 Álex Berenguer · 42’ #> 476 Álex Berenguer · 42’ #> 477 Álex Berenguer · 42’ #> 478 Álex Berenguer · 42’ #> 479 Álex Berenguer · 42’ #> 480 Álex Berenguer · 42’ #> 481 Álex Berenguer · 42’ #> 482 Álex Berenguer · 42’ #> 483 Álex Berenguer · 42’ #> 484 Álex Berenguer · 42’ #> 485 Álex Berenguer · 42’ #> 486 Álex Berenguer · 42’ #> 487 Álex Berenguer · 42’ #> 488 Álex Berenguer · 42’ #> 489 Álex Berenguer · 42’ #> 490 Álex Berenguer · 42’ #> 491 Álex Berenguer · 42’ #> 492 Álex Berenguer · 42’ #> 493 Álex Berenguer · 42’ #> 494 Álex Berenguer · 42’ #> 495 Álex Berenguer · 42’ #> 496 Álex Berenguer · 42’ #> 497 Álex Berenguer · 42’ #> 498 Álex Berenguer · 42’ #> 499 Álex Berenguer · 42’ #> 500 Álex Berenguer · 42’ #> 501 Nahuel Molina · 90+4’ #> 502 Nahuel Molina · 90+4’ #> 503 Nahuel Molina · 90+4’ #> 504 Nahuel Molina · 90+4’ #> 505 Nahuel Molina · 90+4’ #> 506 Nahuel Molina · 90+4’ #> 507 Nahuel Molina · 90+4’ #> 508 Nahuel Molina · 90+4’ #> 509 Nahuel Molina · 90+4’ #> 510 Nahuel Molina · 90+4’ #> 511 Nahuel Molina · 90+4’ #> 512 Nahuel Molina · 90+4’ #> 513 Nahuel Molina · 90+4’ #> 514 Nahuel Molina · 90+4’ #> 515 Nahuel Molina · 90+4’ #> 516 Nahuel Molina · 90+4’ #> 517 Nahuel Molina · 90+4’ #> 518 Nahuel Molina · 90+4’ #> 519 Nahuel Molina · 90+4’ #> 520 Nahuel Molina · 90+4’ #> 521 Nahuel Molina · 90+4’ #> 522 Nahuel Molina · 90+4’ #> 523 Nahuel Molina · 90+4’ #> 524 Nahuel Molina · 90+4’ #> 525 Nahuel Molina · 90+4’ #> 526 Nahuel Molina · 90+4’ #> 527 Nahuel Molina · 90+4’ #> 528 Nahuel Molina · 90+4’ #> 529 Nahuel Molina · 90+4’ #> 530 Nahuel Molina · 90+4’ #> 531 Nahuel Molina · 90+4’ #> 532 Alexander Isak · 6’ #> 533 Alexander Isak · 6’ #> 534 Alexander Isak · 6’ #> 535 Alexander Isak · 6’ #> 536 Alexander Isak · 6’ #> 537 Alexander Isak · 6’ #> 538 Alexander Isak · 6’ #> 539 Alexander Isak · 6’ #> 540 Alexander Isak · 6’ #> 541 Alexander Isak · 6’ #> 542 Alexander Isak · 6’ #> 543 Alexander Isak · 6’ #> 544 Alexander Isak · 6’ #> 545 Alexander Isak · 6’ #> 546 Alexander Isak · 6’ #> 547 Alexander Isak · 6’ #> 548 Alexander Isak · 6’ #> 549 Alexander Isak · 6’ #> 550 Alexander Isak · 6’ #> 551 Alexander Isak · 6’ #> 552 Alexander Isak · 6’ #> 553 Alexander Isak · 6’ #> 554 Alexander Isak · 6’ #> 555 Alexander Isak · 6’ #> 556 Alexander Isak · 6’ #> 557 Alexander Isak · 6’ #> 558 Alexander Isak · 6’ #> 559 Alexander Isak · 6’ #> 560 Alexander Isak · 6’ #> 561 Alexander Isak · 6’ #> 562 Alexander Isak · 6’ #> 563 Alexander Isak · 6’ #> 564 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 565 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 566 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 567 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 568 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 569 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 570 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 571 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 572 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 573 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 574 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 575 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 576 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 577 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 578 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 579 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 580 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 581 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 582 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 583 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 584 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 585 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 586 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 587 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 588 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 589 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 590 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 591 Cristhian Stuani · 42’ Domingos Duarte (OG) · 47’ Valentín Castellanos · 64’ #> 592 #> 593 #> 594 #> 595 #> 596 #> 597 #> 598 #> 599 #> 600 #> 601 #> 602 #> 603 #> 604 #> 605 #> 606 #> 607 #> 608 #> 609 #> 610 #> 611 #> 612 #> 613 #> 614 #> 615 #> 616 #> 617 #> 618 #> 619 #> 620 #> 621 #> 622 #> 623 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 624 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 625 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 626 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 627 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 628 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 629 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 630 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 631 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 632 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 633 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 634 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 635 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 636 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 637 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 638 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 639 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 640 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 641 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 642 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 643 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 644 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 645 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 646 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 647 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 648 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 649 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 650 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 651 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 652 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 653 Borja Iglesias · 34’ Germán Pezzella · 73’ #> 654 #> 655 #> 656 #> 657 #> 658 #> 659 #> 660 #> 661 #> 662 #> 663 #> 664 #> 665 #> 666 #> 667 #> 668 #> 669 #> 670 #> 671 #> 672 #> 673 #> 674 #> 675 #> 676 #> 677 #> 678 #> 679 #> 680 #> 681 #> 682 #> 683 #> 684 #> 685 #> 686 #> 687 #> 688 #> 689 #> 690 #> 691 #> 692 #> 693 #> 694 #> 695 #> 696 #> 697 #> 698 #> 699 #> 700 #> 701 #> 702 #> 703 #> 704 #> 705 #> 706 #> 707 #> 708 #> 709 #> 710 #> 711 #> 712 #> 713 #> 714 #> 715 #> 716 #> 717 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 718 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 719 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 720 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 721 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 722 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 723 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 724 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 725 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 726 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 727 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 728 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 729 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 730 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 731 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 732 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 733 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 734 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 735 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 736 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 737 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 738 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 739 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 740 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 741 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 742 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 743 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 744 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 745 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 746 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 747 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 748 Largie Ramazani · 42’ Umar Sadiq · 55’ #> 749 #> 750 #> 751 #> 752 #> 753 #> 754 #> 755 #> 756 #> 757 #> 758 #> 759 #> 760 #> 761 #> 762 #> 763 #> 764 #> 765 #> 766 #> 767 #> 768 #> 769 #> 770 #> 771 #> 772 #> 773 #> 774 #> 775 #> 776 #> 777 #> 778 #> 779 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 780 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 781 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 782 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 783 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 784 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 785 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 786 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 787 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 788 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 789 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 790 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 791 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 792 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 793 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 794 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 795 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 796 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 797 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 798 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 799 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 800 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 801 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 802 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 803 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 804 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 805 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 806 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 807 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 808 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 809 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 810 Robert Lewandowski · 24’ Pedri · 43’ Robert Lewandowski · 64’ Sergi Roberto · 90+2’ #> 811 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 812 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 813 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 814 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 815 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 816 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 817 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 818 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 819 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 820 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 821 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 822 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 823 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 824 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 825 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 826 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 827 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 828 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 829 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 830 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 831 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 832 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 833 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 834 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 835 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 836 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 837 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 838 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 839 Joselu · 43’ Benjamin Lecomte · 90+6’ #> 840 #> 841 #> 842 #> 843 #> 844 #> 845 #> 846 #> 847 #> 848 #> 849 #> 850 #> 851 #> 852 #> 853 #> 854 #> 855 #> 856 #> 857 #> 858 #> 859 #> 860 #> 861 #> 862 #> 863 #> 864 #> 865 #> 866 #> 867 #> 868 #> 869 #> 870 #> 871 #> 872 #> 873 #> 874 #> 875 #> 876 #> 877 #> 878 #> 879 #> 880 #> 881 #> 882 #> 883 #> 884 #> 885 #> 886 #> 887 #> 888 #> 889 #> 890 #> 891 #> 892 #> 893 #> 894 #> 895 #> 896 #> 897 #> 898 #> 899 #> 900 #> 901 #> 902 #> 903 #> 904 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 905 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 906 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 907 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 908 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 909 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 910 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 911 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 912 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 913 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 914 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 915 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 916 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 917 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 918 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 919 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 920 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 921 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 922 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 923 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 924 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 925 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 926 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 927 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 928 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 929 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 930 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 931 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 932 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 933 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 934 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 935 Iago Aspas · 56’ Óscar Rodríguez Arnaiz · 62’ Iago Aspas · 75’ #> 936 Antonio Raillo · 87’ #> 937 Antonio Raillo · 87’ #> 938 Antonio Raillo · 87’ #> 939 Antonio Raillo · 87’ #> 940 Antonio Raillo · 87’ #> 941 Antonio Raillo · 87’ #> 942 Antonio Raillo · 87’ #> 943 Antonio Raillo · 87’ #> 944 Antonio Raillo · 87’ #> 945 Antonio Raillo · 87’ #> 946 Antonio Raillo · 87’ #> 947 Antonio Raillo · 87’ #> 948 Antonio Raillo · 87’ #> 949 Antonio Raillo · 87’ #> 950 Antonio Raillo · 87’ #> 951 Antonio Raillo · 87’ #> 952 Antonio Raillo · 87’ #> 953 Antonio Raillo · 87’ #> 954 Antonio Raillo · 87’ #> 955 Antonio Raillo · 87’ #> 956 Antonio Raillo · 87’ #> 957 Antonio Raillo · 87’ #> 958 Antonio Raillo · 87’ #> 959 Antonio Raillo · 87’ #> 960 Antonio Raillo · 87’ #> 961 Antonio Raillo · 87’ #> 962 Antonio Raillo · 87’ #> 963 Antonio Raillo · 87’ #> 964 Antonio Raillo · 87’ #> 965 Antonio Raillo · 87’ #> 966 Vinicius Júnior · 9’ Rodrygo · 65’ #> 967 Vinicius Júnior · 9’ Rodrygo · 65’ #> 968 Vinicius Júnior · 9’ Rodrygo · 65’ #> 969 Vinicius Júnior · 9’ Rodrygo · 65’ #> 970 Vinicius Júnior · 9’ Rodrygo · 65’ #> 971 Vinicius Júnior · 9’ Rodrygo · 65’ #> 972 Vinicius Júnior · 9’ Rodrygo · 65’ #> 973 Vinicius Júnior · 9’ Rodrygo · 65’ #> 974 Vinicius Júnior · 9’ Rodrygo · 65’ #> 975 Vinicius Júnior · 9’ Rodrygo · 65’ #> 976 Vinicius Júnior · 9’ Rodrygo · 65’ #> 977 Vinicius Júnior · 9’ Rodrygo · 65’ #> 978 Vinicius Júnior · 9’ Rodrygo · 65’ #> 979 Vinicius Júnior · 9’ Rodrygo · 65’ #> 980 Vinicius Júnior · 9’ Rodrygo · 65’ #> 981 Vinicius Júnior · 9’ Rodrygo · 65’ #> 982 Vinicius Júnior · 9’ Rodrygo · 65’ #> 983 Vinicius Júnior · 9’ Rodrygo · 65’ #> 984 Vinicius Júnior · 9’ Rodrygo · 65’ #> 985 Vinicius Júnior · 9’ Rodrygo · 65’ #> 986 Vinicius Júnior · 9’ Rodrygo · 65’ #> 987 Vinicius Júnior · 9’ Rodrygo · 65’ #> 988 Vinicius Júnior · 9’ Rodrygo · 65’ #> 989 Vinicius Júnior · 9’ Rodrygo · 65’ #> 990 Vinicius Júnior · 9’ Rodrygo · 65’ #> 991 Vinicius Júnior · 9’ Rodrygo · 65’ #> 992 Vinicius Júnior · 9’ Rodrygo · 65’ #> 993 Vinicius Júnior · 9’ Rodrygo · 65’ #> 994 Vinicius Júnior · 9’ Rodrygo · 65’ #> 995 Vinicius Júnior · 9’ Rodrygo · 65’ #> 996 Umar Sadiq · 55’ #> 997 Umar Sadiq · 55’ #> 998 Umar Sadiq · 55’ #> 999 Umar Sadiq · 55’ #> 1000 Umar Sadiq · 55’ #> 1001 Umar Sadiq · 55’ #> 1002 Umar Sadiq · 55’ #> 1003 Umar Sadiq · 55’ #> 1004 Umar Sadiq · 55’ #> 1005 Umar Sadiq · 55’ #> 1006 Umar Sadiq · 55’ #> 1007 Umar Sadiq · 55’ #> 1008 Umar Sadiq · 55’ #> 1009 Umar Sadiq · 55’ #> 1010 Umar Sadiq · 55’ #> 1011 Umar Sadiq · 55’ #> 1012 Umar Sadiq · 55’ #> 1013 Umar Sadiq · 55’ #> 1014 Umar Sadiq · 55’ #> 1015 Umar Sadiq · 55’ #> 1016 Umar Sadiq · 55’ #> 1017 Umar Sadiq · 55’ #> 1018 Umar Sadiq · 55’ #> 1019 Umar Sadiq · 55’ #> 1020 Umar Sadiq · 55’ #> 1021 Umar Sadiq · 55’ #> 1022 Umar Sadiq · 55’ #> 1023 Umar Sadiq · 55’ #> 1024 Umar Sadiq · 55’ #> 1025 Umar Sadiq · 55’ #> 1026 Umar Sadiq · 55’ #> 1027 Umar Sadiq · 55’ #> 1028 #> 1029 #> 1030 #> 1031 #> 1032 #> 1033 #> 1034 #> 1035 #> 1036 #> 1037 #> 1038 #> 1039 #> 1040 #> 1041 #> 1042 #> 1043 #> 1044 #> 1045 #> 1046 #> 1047 #> 1048 #> 1049 #> 1050 #> 1051 #> 1052 #> 1053 #> 1054 #> 1055 #> 1056 #> 1057 #> 1058 #> 1059 #> 1060 Aimar Oroz · 54’ Rubén García · 90’ #> 1061 Aimar Oroz · 54’ Rubén García · 90’ #> 1062 Aimar Oroz · 54’ Rubén García · 90’ #> 1063 Aimar Oroz · 54’ Rubén García · 90’ #> 1064 Aimar Oroz · 54’ Rubén García · 90’ #> 1065 Aimar Oroz · 54’ Rubén García · 90’ #> 1066 Aimar Oroz · 54’ Rubén García · 90’ #> 1067 Aimar Oroz · 54’ Rubén García · 90’ #> 1068 Aimar Oroz · 54’ Rubén García · 90’ #> 1069 Aimar Oroz · 54’ Rubén García · 90’ #> 1070 Aimar Oroz · 54’ Rubén García · 90’ #> 1071 Aimar Oroz · 54’ Rubén García · 90’ #> 1072 Aimar Oroz · 54’ Rubén García · 90’ #> 1073 Aimar Oroz · 54’ Rubén García · 90’ #> 1074 Aimar Oroz · 54’ Rubén García · 90’ #> 1075 Aimar Oroz · 54’ Rubén García · 90’ #> 1076 Aimar Oroz · 54’ Rubén García · 90’ #> 1077 Aimar Oroz · 54’ Rubén García · 90’ #> 1078 Aimar Oroz · 54’ Rubén García · 90’ #> 1079 Aimar Oroz · 54’ Rubén García · 90’ #> 1080 Aimar Oroz · 54’ Rubén García · 90’ #> 1081 Aimar Oroz · 54’ Rubén García · 90’ #> 1082 Aimar Oroz · 54’ Rubén García · 90’ #> 1083 Aimar Oroz · 54’ Rubén García · 90’ #> 1084 Aimar Oroz · 54’ Rubén García · 90’ #> 1085 Aimar Oroz · 54’ Rubén García · 90’ #> 1086 Aimar Oroz · 54’ Rubén García · 90’ #> 1087 Aimar Oroz · 54’ Rubén García · 90’ #> 1088 Aimar Oroz · 54’ Rubén García · 90’ #> 1089 Aimar Oroz · 54’ Rubén García · 90’ #> 1090 Aimar Oroz · 54’ Rubén García · 90’ #> 1091 #> 1092 #> 1093 #> 1094 #> 1095 #> 1096 #> 1097 #> 1098 #> 1099 #> 1100 #> 1101 #> 1102 #> 1103 #> 1104 #> 1105 #> 1106 #> 1107 #> 1108 #> 1109 #> 1110 #> 1111 #> 1112 #> 1113 #> 1114 #> 1115 #> 1116 #> 1117 #> 1118 #> 1119 #> 1120 #> 1121 #> 1122 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1123 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1124 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1125 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1126 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1127 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1128 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1129 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1130 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1131 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1132 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1133 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1134 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1135 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1136 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1137 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1138 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1139 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1140 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1141 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1142 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1143 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1144 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1145 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1146 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1147 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1148 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1149 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1150 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1151 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1152 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1153 Gerard Moreno · 26’ Giovani Lo Celso · 36’ Francis Coquelin · 89’ José Luis Morales · 90+3’ #> 1154 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1155 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1156 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1157 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1158 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1159 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1160 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1161 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1162 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1163 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1164 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1165 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1166 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1167 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1168 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1169 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1170 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1171 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1172 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1173 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1174 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1175 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1176 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1177 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1178 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1179 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1180 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1181 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1182 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1183 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1184 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1185 Toni Lato · 7’ Samuel · 14’ Samu Castillejo · 16’ Nicolás González · 65’ Hugo Duro · 68’ Ilaix Moriba · 88’ #> 1186 Shon Weissman · 90+3’ #> 1187 Shon Weissman · 90+3’ #> 1188 Shon Weissman · 90+3’ #> 1189 Shon Weissman · 90+3’ #> 1190 Shon Weissman · 90+3’ #> 1191 Shon Weissman · 90+3’ #> 1192 Shon Weissman · 90+3’ #> 1193 Shon Weissman · 90+3’ #> 1194 Shon Weissman · 90+3’ #> 1195 Shon Weissman · 90+3’ #> 1196 Shon Weissman · 90+3’ #> 1197 Shon Weissman · 90+3’ #> 1198 Shon Weissman · 90+3’ #> 1199 Shon Weissman · 90+3’ #> 1200 Shon Weissman · 90+3’ #> 1201 Shon Weissman · 90+3’ #> 1202 Shon Weissman · 90+3’ #> 1203 Shon Weissman · 90+3’ #> 1204 Shon Weissman · 90+3’ #> 1205 Shon Weissman · 90+3’ #> 1206 Shon Weissman · 90+3’ #> 1207 Shon Weissman · 90+3’ #> 1208 Shon Weissman · 90+3’ #> 1209 Shon Weissman · 90+3’ #> 1210 Shon Weissman · 90+3’ #> 1211 Shon Weissman · 90+3’ #> 1212 Shon Weissman · 90+3’ #> 1213 Shon Weissman · 90+3’ #> 1214 Shon Weissman · 90+3’ #> 1215 Shon Weissman · 90+3’ #> 1216 Shon Weissman · 90+3’ #> 1217 Reinier · 21’ Oriol Romeu · 88’ #> 1218 Reinier · 21’ Oriol Romeu · 88’ #> 1219 Reinier · 21’ Oriol Romeu · 88’ #> 1220 Reinier · 21’ Oriol Romeu · 88’ #> 1221 Reinier · 21’ Oriol Romeu · 88’ #> 1222 Reinier · 21’ Oriol Romeu · 88’ #> 1223 Reinier · 21’ Oriol Romeu · 88’ #> 1224 Reinier · 21’ Oriol Romeu · 88’ #> 1225 Reinier · 21’ Oriol Romeu · 88’ #> 1226 Reinier · 21’ Oriol Romeu · 88’ #> 1227 Reinier · 21’ Oriol Romeu · 88’ #> 1228 Reinier · 21’ Oriol Romeu · 88’ #> 1229 Reinier · 21’ Oriol Romeu · 88’ #> 1230 Reinier · 21’ Oriol Romeu · 88’ #> 1231 Reinier · 21’ Oriol Romeu · 88’ #> 1232 Reinier · 21’ Oriol Romeu · 88’ #> 1233 Reinier · 21’ Oriol Romeu · 88’ #> 1234 Reinier · 21’ Oriol Romeu · 88’ #> 1235 Reinier · 21’ Oriol Romeu · 88’ #> 1236 Reinier · 21’ Oriol Romeu · 88’ #> 1237 Reinier · 21’ Oriol Romeu · 88’ #> 1238 Reinier · 21’ Oriol Romeu · 88’ #> 1239 Reinier · 21’ Oriol Romeu · 88’ #> 1240 Reinier · 21’ Oriol Romeu · 88’ #> 1241 Reinier · 21’ Oriol Romeu · 88’ #> 1242 Reinier · 21’ Oriol Romeu · 88’ #> 1243 Reinier · 21’ Oriol Romeu · 88’ #> 1244 Reinier · 21’ Oriol Romeu · 88’ #> 1245 Reinier · 21’ Oriol Romeu · 88’ #> 1246 Reinier · 21’ Oriol Romeu · 88’ #> 1247 Reinier · 21’ Oriol Romeu · 88’ #> 1248 Reinier · 21’ Oriol Romeu · 88’ #> 1249 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1250 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1251 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1252 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1253 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1254 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1255 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1256 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1257 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1258 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1259 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1260 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1261 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1262 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1263 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1264 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1265 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1266 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1267 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1268 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1269 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1270 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1271 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1272 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1273 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1274 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1275 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1276 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1277 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1278 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1279 Isaac Palazón Camacho · 5’ Nicolás González (OG) · 52’ #> 1280 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1281 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1282 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1283 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1284 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1285 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1286 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1287 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1288 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1289 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1290 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1291 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1292 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1293 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1294 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1295 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1296 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1297 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1298 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1299 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1300 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1301 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1302 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1303 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1304 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1305 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1306 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1307 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1308 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1309 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1310 Joselu (P) · 45+4’ Martin Braithwaite · 62’ #> 1311 #> 1312 #> 1313 #> 1314 #> 1315 #> 1316 #> 1317 #> 1318 #> 1319 #> 1320 #> 1321 #> 1322 #> 1323 #> 1324 #> 1325 #> 1326 #> 1327 #> 1328 #> 1329 #> 1330 #> 1331 #> 1332 #> 1333 #> 1334 #> 1335 #> 1336 #> 1337 #> 1338 #> 1339 #> 1340 #> 1341 #> 1342 #> 1343 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1344 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1345 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1346 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1347 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1348 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1349 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1350 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1351 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1352 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1353 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1354 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1355 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1356 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1357 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1358 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1359 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1360 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1361 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1362 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1363 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1364 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1365 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1366 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1367 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1368 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1369 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1370 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1371 Ángel Correa · 9’ Rodrigo De Paul · 50’ Yannick Carrasco · 66’ Unai Núñez (OG) · 82’ #> 1372 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1373 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1374 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1375 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1376 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1377 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1378 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1379 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1380 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1381 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1382 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1383 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1384 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1385 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1386 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1387 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1388 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1389 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1390 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1391 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1392 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1393 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1394 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1395 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1396 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1397 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1398 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1399 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1400 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1401 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1402 Federico Valverde · 45+3’ Vinicius Júnior · 72’ Rodrygo · 89’ Antonio Rüdiger · 90+3’ #> 1403 Ezequiel Ponce · 59’ #> 1404 Ezequiel Ponce · 59’ #> 1405 Ezequiel Ponce · 59’ #> 1406 Ezequiel Ponce · 59’ #> 1407 Ezequiel Ponce · 59’ #> 1408 Ezequiel Ponce · 59’ #> 1409 Ezequiel Ponce · 59’ #> 1410 Ezequiel Ponce · 59’ #> 1411 Ezequiel Ponce · 59’ #> 1412 Ezequiel Ponce · 59’ #> 1413 Ezequiel Ponce · 59’ #> 1414 Ezequiel Ponce · 59’ #> 1415 Ezequiel Ponce · 59’ #> 1416 Ezequiel Ponce · 59’ #> 1417 Ezequiel Ponce · 59’ #> 1418 Ezequiel Ponce · 59’ #> 1419 Ezequiel Ponce · 59’ #> 1420 Ezequiel Ponce · 59’ #> 1421 Ezequiel Ponce · 59’ #> 1422 Ezequiel Ponce · 59’ #> 1423 Ezequiel Ponce · 59’ #> 1424 Ezequiel Ponce · 59’ #> 1425 Ezequiel Ponce · 59’ #> 1426 Ezequiel Ponce · 59’ #> 1427 Ezequiel Ponce · 59’ #> 1428 Ezequiel Ponce · 59’ #> 1429 Ezequiel Ponce · 59’ #> 1430 Ezequiel Ponce · 59’ #> 1431 Ezequiel Ponce · 59’ #> 1432 Ezequiel Ponce · 59’ #> 1433 Ezequiel Ponce · 59’ #> 1434 Ezequiel Ponce · 59’ #> 1435 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1436 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1437 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1438 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1439 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1440 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1441 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1442 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1443 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1444 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1445 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1446 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1447 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1448 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1449 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1450 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1451 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1452 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1453 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1454 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1455 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1456 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1457 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1458 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1459 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1460 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1461 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1462 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1463 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1464 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1465 Enes Ünal · 45+5’ Carles Aleñá · 48’ #> 1466 Rodri · 61’ #> 1467 Rodri · 61’ #> 1468 Rodri · 61’ #> 1469 Rodri · 61’ #> 1470 Rodri · 61’ #> 1471 Rodri · 61’ #> 1472 Rodri · 61’ #> 1473 Rodri · 61’ #> 1474 Rodri · 61’ #> 1475 Rodri · 61’ #> 1476 Rodri · 61’ #> 1477 Rodri · 61’ #> 1478 Rodri · 61’ #> 1479 Rodri · 61’ #> 1480 Rodri · 61’ #> 1481 Rodri · 61’ #> 1482 Rodri · 61’ #> 1483 Rodri · 61’ #> 1484 Rodri · 61’ #> 1485 Rodri · 61’ #> 1486 Rodri · 61’ #> 1487 Rodri · 61’ #> 1488 Rodri · 61’ #> 1489 Rodri · 61’ #> 1490 Rodri · 61’ #> 1491 Rodri · 61’ #> 1492 Rodri · 61’ #> 1493 Rodri · 61’ #> 1494 Rodri · 61’ #> 1495 Rodri · 61’ #> 1496 #> 1497 #> 1498 #> 1499 #> 1500 #> 1501 #> 1502 #> 1503 #> 1504 #> 1505 #> 1506 #> 1507 #> 1508 #> 1509 #> 1510 #> 1511 #> 1512 #> 1513 #> 1514 #> 1515 #> 1516 #> 1517 #> 1518 #> 1519 #> 1520 #> 1521 #> 1522 #> 1523 #> 1524 #> 1525 #> 1526 #> 1527 #> 1528 #> 1529 #> 1530 #> 1531 #> 1532 #> 1533 #> 1534 #> 1535 #> 1536 #> 1537 #> 1538 #> 1539 #> 1540 #> 1541 #> 1542 #> 1543 #> 1544 #> 1545 #> 1546 #> 1547 #> 1548 #> 1549 #> 1550 #> 1551 #> 1552 #> 1553 #> 1554 #> 1555 #> 1556 #> 1557 #> 1558 #> 1559 #> 1560 Pablo Maffeo · 25’ #> 1561 Pablo Maffeo · 25’ #> 1562 Pablo Maffeo · 25’ #> 1563 Pablo Maffeo · 25’ #> 1564 Pablo Maffeo · 25’ #> 1565 Pablo Maffeo · 25’ #> 1566 Pablo Maffeo · 25’ #> 1567 Pablo Maffeo · 25’ #> 1568 Pablo Maffeo · 25’ #> 1569 Pablo Maffeo · 25’ #> 1570 Pablo Maffeo · 25’ #> 1571 Pablo Maffeo · 25’ #> 1572 Pablo Maffeo · 25’ #> 1573 Pablo Maffeo · 25’ #> 1574 Pablo Maffeo · 25’ #> 1575 Pablo Maffeo · 25’ #> 1576 Pablo Maffeo · 25’ #> 1577 Pablo Maffeo · 25’ #> 1578 Pablo Maffeo · 25’ #> 1579 Pablo Maffeo · 25’ #> 1580 Pablo Maffeo · 25’ #> 1581 Pablo Maffeo · 25’ #> 1582 Pablo Maffeo · 25’ #> 1583 Pablo Maffeo · 25’ #> 1584 Pablo Maffeo · 25’ #> 1585 Pablo Maffeo · 25’ #> 1586 Pablo Maffeo · 25’ #> 1587 Pablo Maffeo · 25’ #> 1588 Pablo Maffeo · 25’ #> 1589 Pablo Maffeo · 25’ #> 1590 Pablo Maffeo · 25’ #> 1591 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1592 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1593 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1594 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1595 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1596 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1597 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1598 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1599 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1600 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1601 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1602 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1603 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1604 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1605 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1606 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1607 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1608 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1609 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1610 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1611 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1612 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1613 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1614 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1615 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1616 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1617 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1618 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1619 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1620 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1621 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1622 Robert Lewandowski · 34’ Memphis · 41’ Robert Lewandowski · 48’ #> 1623 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1624 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1625 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1626 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1627 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1628 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1629 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1630 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1631 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1632 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1633 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1634 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1635 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1636 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1637 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1638 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1639 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1640 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1641 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1642 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1643 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1644 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1645 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1646 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1647 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1648 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1649 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1650 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1651 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1652 Samu Castillejo · 37’ Marcos André · 82’ Domingos André Ribeiro Almeida · 90+3’ #> 1653 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1654 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1655 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1656 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1657 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1658 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1659 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1660 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1661 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1662 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1663 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1664 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1665 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1666 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1667 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1668 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1669 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1670 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1671 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1672 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1673 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1674 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1675 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1676 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1677 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1678 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1679 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1680 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1681 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1682 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1683 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1684 Iñaki Williams · 14’ Oihan Sancet · 28’ Nico Williams · 33’ #> 1685 Ezequiel Ávila · 43’ #> 1686 Ezequiel Ávila · 43’ #> 1687 Ezequiel Ávila · 43’ #> 1688 Ezequiel Ávila · 43’ #> 1689 Ezequiel Ávila · 43’ #> 1690 Ezequiel Ávila · 43’ #> 1691 Ezequiel Ávila · 43’ #> 1692 Ezequiel Ávila · 43’ #> 1693 Ezequiel Ávila · 43’ #> 1694 Ezequiel Ávila · 43’ #> 1695 Ezequiel Ávila · 43’ #> 1696 Ezequiel Ávila · 43’ #> 1697 Ezequiel Ávila · 43’ #> 1698 Ezequiel Ávila · 43’ #> 1699 Ezequiel Ávila · 43’ #> 1700 Ezequiel Ávila · 43’ #> 1701 Ezequiel Ávila · 43’ #> 1702 Ezequiel Ávila · 43’ #> 1703 Ezequiel Ávila · 43’ #> 1704 Ezequiel Ávila · 43’ #> 1705 Ezequiel Ávila · 43’ #> 1706 Ezequiel Ávila · 43’ #> 1707 Ezequiel Ávila · 43’ #> 1708 Ezequiel Ávila · 43’ #> 1709 Ezequiel Ávila · 43’ #> 1710 Ezequiel Ávila · 43’ #> 1711 Ezequiel Ávila · 43’ #> 1712 Ezequiel Ávila · 43’ #> 1713 Ezequiel Ávila · 43’ #> 1714 Ezequiel Ávila · 43’ #> 1715 Ezequiel Ávila · 43’ #> 1716 Ezequiel Ávila · 43’ #> 1717 Alex Baena · 51’ #> 1718 Alex Baena · 51’ #> 1719 Alex Baena · 51’ #> 1720 Alex Baena · 51’ #> 1721 Alex Baena · 51’ #> 1722 Alex Baena · 51’ #> 1723 Alex Baena · 51’ #> 1724 Alex Baena · 51’ #> 1725 Alex Baena · 51’ #> 1726 Alex Baena · 51’ #> 1727 Alex Baena · 51’ #> 1728 Alex Baena · 51’ #> 1729 Alex Baena · 51’ #> 1730 Alex Baena · 51’ #> 1731 Alex Baena · 51’ #> 1732 Alex Baena · 51’ #> 1733 Alex Baena · 51’ #> 1734 Alex Baena · 51’ #> 1735 Alex Baena · 51’ #> 1736 Alex Baena · 51’ #> 1737 Alex Baena · 51’ #> 1738 Alex Baena · 51’ #> 1739 Alex Baena · 51’ #> 1740 Alex Baena · 51’ #> 1741 Alex Baena · 51’ #> 1742 Alex Baena · 51’ #> 1743 Alex Baena · 51’ #> 1744 Alex Baena · 51’ #> 1745 Alex Baena · 51’ #> 1746 Alex Baena · 51’ #> 1747 Alex Baena · 51’ #> 1748 Alex Baena · 51’ #> 1749 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1750 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1751 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1752 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1753 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1754 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1755 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1756 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1757 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1758 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1759 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1760 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1761 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1762 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1763 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1764 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1765 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1766 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1767 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1768 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1769 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1770 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1771 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1772 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1773 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1774 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1775 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1776 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1777 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1778 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1779 Borja Iglesias (P) · 15’ Borja Iglesias · 71’ #> 1780 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1781 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1782 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1783 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1784 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1785 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1786 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1787 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1788 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1789 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1790 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1791 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1792 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1793 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1794 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1795 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1796 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1797 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1798 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1799 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1800 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1801 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1802 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1803 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1804 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1805 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1806 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1807 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1808 Alexander Sørloth · 17’ Brais Méndez · 29’ #> 1809 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1810 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1811 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1812 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1813 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1814 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1815 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1816 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1817 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1818 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1819 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1820 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1821 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1822 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1823 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1824 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1825 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1826 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1827 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1828 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1829 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1830 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1831 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1832 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1833 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1834 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1835 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1836 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1837 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1838 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1839 Mario Hermoso · 83’ Mario Hermoso · 90+1’ #> 1840 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1841 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1842 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1843 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1844 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1845 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1846 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1847 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1848 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1849 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1850 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1851 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1852 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1853 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1854 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1855 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1856 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1857 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1858 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1859 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1860 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1861 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1862 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1863 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1864 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1865 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1866 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1867 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1868 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1869 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1870 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1871 Iñaki Williams · 10’ Oihan Sancet · 17’ Nico Williams · 62’ Mikel Vesga (P) · 84’ #> 1872 Isaac Carcelen · 90+3’ #> 1873 Isaac Carcelen · 90+3’ #> 1874 Isaac Carcelen · 90+3’ #> 1875 Isaac Carcelen · 90+3’ #> 1876 Isaac Carcelen · 90+3’ #> 1877 Isaac Carcelen · 90+3’ #> 1878 Isaac Carcelen · 90+3’ #> 1879 Isaac Carcelen · 90+3’ #> 1880 Isaac Carcelen · 90+3’ #> 1881 Isaac Carcelen · 90+3’ #> 1882 Isaac Carcelen · 90+3’ #> 1883 Isaac Carcelen · 90+3’ #> 1884 Isaac Carcelen · 90+3’ #> 1885 Isaac Carcelen · 90+3’ #> 1886 Isaac Carcelen · 90+3’ #> 1887 Isaac Carcelen · 90+3’ #> 1888 Isaac Carcelen · 90+3’ #> 1889 Isaac Carcelen · 90+3’ #> 1890 Isaac Carcelen · 90+3’ #> 1891 Isaac Carcelen · 90+3’ #> 1892 Isaac Carcelen · 90+3’ #> 1893 Isaac Carcelen · 90+3’ #> 1894 Isaac Carcelen · 90+3’ #> 1895 Isaac Carcelen · 90+3’ #> 1896 Isaac Carcelen · 90+3’ #> 1897 Isaac Carcelen · 90+3’ #> 1898 Isaac Carcelen · 90+3’ #> 1899 Isaac Carcelen · 90+3’ #> 1900 Isaac Carcelen · 90+3’ #> 1901 Isaac Carcelen · 90+3’ #> 1902 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1903 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1904 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1905 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1906 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1907 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1908 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1909 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1910 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1911 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1912 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1913 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1914 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1915 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1916 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1917 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1918 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1919 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1920 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1921 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1922 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1923 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1924 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1925 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1926 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1927 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1928 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1929 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1930 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1931 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1932 Borja Mayoral · 29’ Damián Suárez · 31’ #> 1933 #> 1934 #> 1935 #> 1936 #> 1937 #> 1938 #> 1939 #> 1940 #> 1941 #> 1942 #> 1943 #> 1944 #> 1945 #> 1946 #> 1947 #> 1948 #> 1949 #> 1950 #> 1951 #> 1952 #> 1953 #> 1954 #> 1955 #> 1956 #> 1957 #> 1958 #> 1959 #> 1960 #> 1961 #> 1962 #> 1963 #> 1964 #> 1965 #> 1966 #> 1967 #> 1968 #> 1969 #> 1970 #> 1971 #> 1972 #> 1973 #> 1974 #> 1975 #> 1976 #> 1977 #> 1978 #> 1979 #> 1980 #> 1981 #> 1982 #> 1983 #> 1984 #> 1985 #> 1986 #> 1987 #> 1988 #> 1989 #> 1990 #> 1991 #> 1992 #> 1993 #> 1994 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 1995 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 1996 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 1997 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 1998 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 1999 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2000 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2001 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2002 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2003 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2004 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2005 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2006 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2007 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2008 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2009 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2010 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2011 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2012 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2013 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2014 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2015 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2016 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2017 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2018 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2019 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2020 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2021 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2022 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2023 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2024 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2025 Joselu · 56’ Sergi Darder · 83’ Martin Braithwaite · 90+2’ #> 2026 Gabriel Veiga · 9’ #> 2027 Gabriel Veiga · 9’ #> 2028 Gabriel Veiga · 9’ #> 2029 Gabriel Veiga · 9’ #> 2030 Gabriel Veiga · 9’ #> 2031 Gabriel Veiga · 9’ #> 2032 Gabriel Veiga · 9’ #> 2033 Gabriel Veiga · 9’ #> 2034 Gabriel Veiga · 9’ #> 2035 Gabriel Veiga · 9’ #> 2036 Gabriel Veiga · 9’ #> 2037 Gabriel Veiga · 9’ #> 2038 Gabriel Veiga · 9’ #> 2039 Gabriel Veiga · 9’ #> 2040 Gabriel Veiga · 9’ #> Home_Yellow_Cards Home_Red_Cards Away_Team Away_Formation Away_Score #> 1 5 0 Sevilla 4-2-3-1 1 #> 2 5 0 Sevilla 4-2-3-1 1 #> 3 5 0 Sevilla 4-2-3-1 1 #> 4 5 0 Sevilla 4-2-3-1 1 #> 5 5 0 Sevilla 4-2-3-1 1 #> 6 5 0 Sevilla 4-2-3-1 1 #> 7 5 0 Sevilla 4-2-3-1 1 #> 8 5 0 Sevilla 4-2-3-1 1 #> 9 5 0 Sevilla 4-2-3-1 1 #> 10 5 0 Sevilla 4-2-3-1 1 #> 11 5 0 Sevilla 4-2-3-1 1 #> 12 5 0 Sevilla 4-2-3-1 1 #> 13 5 0 Sevilla 4-2-3-1 1 #> 14 5 0 Sevilla 4-2-3-1 1 #> 15 5 0 Sevilla 4-2-3-1 1 #> 16 5 0 Sevilla 4-2-3-1 1 #> 17 5 0 Sevilla 4-2-3-1 1 #> 18 5 0 Sevilla 4-2-3-1 1 #> 19 5 0 Sevilla 4-2-3-1 1 #> 20 5 0 Sevilla 4-2-3-1 1 #> 21 5 0 Sevilla 4-2-3-1 1 #> 22 5 0 Sevilla 4-2-3-1 1 #> 23 5 0 Sevilla 4-2-3-1 1 #> 24 5 0 Sevilla 4-2-3-1 1 #> 25 5 0 Sevilla 4-2-3-1 1 #> 26 5 0 Sevilla 4-2-3-1 1 #> 27 5 0 Sevilla 4-2-3-1 1 #> 28 5 0 Sevilla 4-2-3-1 1 #> 29 5 0 Sevilla 4-2-3-1 1 #> 30 5 0 Sevilla 4-2-3-1 1 #> 31 5 0 Sevilla 4-2-3-1 1 #> 32 5 0 Sevilla 4-2-3-1 1 #> 33 5 0 Espanyol 4-3-3 2 #> 34 5 0 Espanyol 4-3-3 2 #> 35 5 0 Espanyol 4-3-3 2 #> 36 5 0 Espanyol 4-3-3 2 #> 37 5 0 Espanyol 4-3-3 2 #> 38 5 0 Espanyol 4-3-3 2 #> 39 5 0 Espanyol 4-3-3 2 #> 40 5 0 Espanyol 4-3-3 2 #> 41 5 0 Espanyol 4-3-3 2 #> 42 5 0 Espanyol 4-3-3 2 #> 43 5 0 Espanyol 4-3-3 2 #> 44 5 0 Espanyol 4-3-3 2 #> 45 5 0 Espanyol 4-3-3 2 #> 46 5 0 Espanyol 4-3-3 2 #> 47 5 0 Espanyol 4-3-3 2 #> 48 5 0 Espanyol 4-3-3 2 #> 49 5 0 Espanyol 4-3-3 2 #> 50 5 0 Espanyol 4-3-3 2 #> 51 5 0 Espanyol 4-3-3 2 #> 52 5 0 Espanyol 4-3-3 2 #> 53 5 0 Espanyol 4-3-3 2 #> 54 5 0 Espanyol 4-3-3 2 #> 55 5 0 Espanyol 4-3-3 2 #> 56 5 0 Espanyol 4-3-3 2 #> 57 5 0 Espanyol 4-3-3 2 #> 58 5 0 Espanyol 4-3-3 2 #> 59 5 0 Espanyol 4-3-3 2 #> 60 5 0 Espanyol 4-3-3 2 #> 61 5 0 Espanyol 4-3-3 2 #> 62 5 0 Espanyol 4-3-3 2 #> 63 1 0 Villarreal 4-4-2 3 #> 64 1 0 Villarreal 4-4-2 3 #> 65 1 0 Villarreal 4-4-2 3 #> 66 1 0 Villarreal 4-4-2 3 #> 67 1 0 Villarreal 4-4-2 3 #> 68 1 0 Villarreal 4-4-2 3 #> 69 1 0 Villarreal 4-4-2 3 #> 70 1 0 Villarreal 4-4-2 3 #> 71 1 0 Villarreal 4-4-2 3 #> 72 1 0 Villarreal 4-4-2 3 #> 73 1 0 Villarreal 4-4-2 3 #> 74 1 0 Villarreal 4-4-2 3 #> 75 1 0 Villarreal 4-4-2 3 #> 76 1 0 Villarreal 4-4-2 3 #> 77 1 0 Villarreal 4-4-2 3 #> 78 1 0 Villarreal 4-4-2 3 #> 79 1 0 Villarreal 4-4-2 3 #> 80 1 0 Villarreal 4-4-2 3 #> 81 1 0 Villarreal 4-4-2 3 #> 82 1 0 Villarreal 4-4-2 3 #> 83 1 0 Villarreal 4-4-2 3 #> 84 1 0 Villarreal 4-4-2 3 #> 85 1 0 Villarreal 4-4-2 3 #> 86 1 0 Villarreal 4-4-2 3 #> 87 1 0 Villarreal 4-4-2 3 #> 88 1 0 Villarreal 4-4-2 3 #> 89 1 0 Villarreal 4-4-2 3 #> 90 1 0 Villarreal 4-4-2 3 #> 91 1 0 Villarreal 4-4-2 3 #> 92 1 0 Villarreal 4-4-2 3 #> 93 1 0 Villarreal 4-4-2 3 #> 94 4 1 Rayo Vallecano 4-2-3-1 0 #> 95 4 1 Rayo Vallecano 4-2-3-1 0 #> 96 4 1 Rayo Vallecano 4-2-3-1 0 #> 97 4 1 Rayo Vallecano 4-2-3-1 0 #> 98 4 1 Rayo Vallecano 4-2-3-1 0 #> 99 4 1 Rayo Vallecano 4-2-3-1 0 #> 100 4 1 Rayo Vallecano 4-2-3-1 0 #> 101 4 1 Rayo Vallecano 4-2-3-1 0 #> 102 4 1 Rayo Vallecano 4-2-3-1 0 #> 103 4 1 Rayo Vallecano 4-2-3-1 0 #> 104 4 1 Rayo Vallecano 4-2-3-1 0 #> 105 4 1 Rayo Vallecano 4-2-3-1 0 #> 106 4 1 Rayo Vallecano 4-2-3-1 0 #> 107 4 1 Rayo Vallecano 4-2-3-1 0 #> 108 4 1 Rayo Vallecano 4-2-3-1 0 #> 109 4 1 Rayo Vallecano 4-2-3-1 0 #> 110 4 1 Rayo Vallecano 4-2-3-1 0 #> 111 4 1 Rayo Vallecano 4-2-3-1 0 #> 112 4 1 Rayo Vallecano 4-2-3-1 0 #> 113 4 1 Rayo Vallecano 4-2-3-1 0 #> 114 4 1 Rayo Vallecano 4-2-3-1 0 #> 115 4 1 Rayo Vallecano 4-2-3-1 0 #> 116 4 1 Rayo Vallecano 4-2-3-1 0 #> 117 4 1 Rayo Vallecano 4-2-3-1 0 #> 118 4 1 Rayo Vallecano 4-2-3-1 0 #> 119 4 1 Rayo Vallecano 4-2-3-1 0 #> 120 4 1 Rayo Vallecano 4-2-3-1 0 #> 121 4 1 Rayo Vallecano 4-2-3-1 0 #> 122 4 1 Rayo Vallecano 4-2-3-1 0 #> 123 4 1 Rayo Vallecano 4-2-3-1 0 #> 124 4 1 Rayo Vallecano 4-2-3-1 0 #> 125 4 0 Real Sociedad 4-1-2-1-2 1 #> 126 4 0 Real Sociedad 4-1-2-1-2 1 #> 127 4 0 Real Sociedad 4-1-2-1-2 1 #> 128 4 0 Real Sociedad 4-1-2-1-2 1 #> 129 4 0 Real Sociedad 4-1-2-1-2 1 #> 130 4 0 Real Sociedad 4-1-2-1-2 1 #> 131 4 0 Real Sociedad 4-1-2-1-2 1 #> 132 4 0 Real Sociedad 4-1-2-1-2 1 #> 133 4 0 Real Sociedad 4-1-2-1-2 1 #> 134 4 0 Real Sociedad 4-1-2-1-2 1 #> 135 4 0 Real Sociedad 4-1-2-1-2 1 #> 136 4 0 Real Sociedad 4-1-2-1-2 1 #> 137 4 0 Real Sociedad 4-1-2-1-2 1 #> 138 4 0 Real Sociedad 4-1-2-1-2 1 #> 139 4 0 Real Sociedad 4-1-2-1-2 1 #> 140 4 0 Real Sociedad 4-1-2-1-2 1 #> 141 4 0 Real Sociedad 4-1-2-1-2 1 #> 142 4 0 Real Sociedad 4-1-2-1-2 1 #> 143 4 0 Real Sociedad 4-1-2-1-2 1 #> 144 4 0 Real Sociedad 4-1-2-1-2 1 #> 145 4 0 Real Sociedad 4-1-2-1-2 1 #> 146 4 0 Real Sociedad 4-1-2-1-2 1 #> 147 4 0 Real Sociedad 4-1-2-1-2 1 #> 148 4 0 Real Sociedad 4-1-2-1-2 1 #> 149 4 0 Real Sociedad 4-1-2-1-2 1 #> 150 4 0 Real Sociedad 4-1-2-1-2 1 #> 151 4 0 Real Sociedad 4-1-2-1-2 1 #> 152 4 0 Real Sociedad 4-1-2-1-2 1 #> 153 4 0 Real Sociedad 4-1-2-1-2 1 #> 154 4 0 Real Sociedad 4-1-2-1-2 1 #> 155 4 0 Real Sociedad 4-1-2-1-2 1 #> 156 4 0 Real Sociedad 4-1-2-1-2 1 #> 157 2 1 Girona 3-4-3 0 #> 158 2 1 Girona 3-4-3 0 #> 159 2 1 Girona 3-4-3 0 #> 160 2 1 Girona 3-4-3 0 #> 161 2 1 Girona 3-4-3 0 #> 162 2 1 Girona 3-4-3 0 #> 163 2 1 Girona 3-4-3 0 #> 164 2 1 Girona 3-4-3 0 #> 165 2 1 Girona 3-4-3 0 #> 166 2 1 Girona 3-4-3 0 #> 167 2 1 Girona 3-4-3 0 #> 168 2 1 Girona 3-4-3 0 #> 169 2 1 Girona 3-4-3 0 #> 170 2 1 Girona 3-4-3 0 #> 171 2 1 Girona 3-4-3 0 #> 172 2 1 Girona 3-4-3 0 #> 173 2 1 Girona 3-4-3 0 #> 174 2 1 Girona 3-4-3 0 #> 175 2 1 Girona 3-4-3 0 #> 176 2 1 Girona 3-4-3 0 #> 177 2 1 Girona 3-4-3 0 #> 178 2 1 Girona 3-4-3 0 #> 179 2 1 Girona 3-4-3 0 #> 180 2 1 Girona 3-4-3 0 #> 181 2 1 Girona 3-4-3 0 #> 182 2 1 Girona 3-4-3 0 #> 183 2 1 Girona 3-4-3 0 #> 184 2 1 Girona 3-4-3 0 #> 185 2 1 Girona 3-4-3 0 #> 186 2 1 Girona 3-4-3 0 #> 187 2 1 Girona 3-4-3 0 #> 188 2 1 Girona 3-4-3 0 #> 189 3 0 Real Madrid 4-3-3 2 #> 190 3 0 Real Madrid 4-3-3 2 #> 191 3 0 Real Madrid 4-3-3 2 #> 192 3 0 Real Madrid 4-3-3 2 #> 193 3 0 Real Madrid 4-3-3 2 #> 194 3 0 Real Madrid 4-3-3 2 #> 195 3 0 Real Madrid 4-3-3 2 #> 196 3 0 Real Madrid 4-3-3 2 #> 197 3 0 Real Madrid 4-3-3 2 #> 198 3 0 Real Madrid 4-3-3 2 #> 199 3 0 Real Madrid 4-3-3 2 #> 200 3 0 Real Madrid 4-3-3 2 #> 201 3 0 Real Madrid 4-3-3 2 #> 202 3 0 Real Madrid 4-3-3 2 #> 203 3 0 Real Madrid 4-3-3 2 #> 204 3 0 Real Madrid 4-3-3 2 #> 205 3 0 Real Madrid 4-3-3 2 #> 206 3 0 Real Madrid 4-3-3 2 #> 207 3 0 Real Madrid 4-3-3 2 #> 208 3 0 Real Madrid 4-3-3 2 #> 209 3 0 Real Madrid 4-3-3 2 #> 210 3 0 Real Madrid 4-3-3 2 #> 211 3 0 Real Madrid 4-3-3 2 #> 212 3 0 Real Madrid 4-3-3 2 #> 213 3 0 Real Madrid 4-3-3 2 #> 214 3 0 Real Madrid 4-3-3 2 #> 215 3 0 Real Madrid 4-3-3 2 #> 216 3 0 Real Madrid 4-3-3 2 #> 217 3 0 Real Madrid 4-3-3 2 #> 218 3 0 Real Madrid 4-3-3 2 #> 219 3 0 Real Madrid 4-3-3 2 #> 220 3 0 Real Madrid 4-3-3 2 #> 221 0 0 Mallorca 5-4-1 0 #> 222 0 0 Mallorca 5-4-1 0 #> 223 0 0 Mallorca 5-4-1 0 #> 224 0 0 Mallorca 5-4-1 0 #> 225 0 0 Mallorca 5-4-1 0 #> 226 0 0 Mallorca 5-4-1 0 #> 227 0 0 Mallorca 5-4-1 0 #> 228 0 0 Mallorca 5-4-1 0 #> 229 0 0 Mallorca 5-4-1 0 #> 230 0 0 Mallorca 5-4-1 0 #> 231 0 0 Mallorca 5-4-1 0 #> 232 0 0 Mallorca 5-4-1 0 #> 233 0 0 Mallorca 5-4-1 0 #> 234 0 0 Mallorca 5-4-1 0 #> 235 0 0 Mallorca 5-4-1 0 #> 236 0 0 Mallorca 5-4-1 0 #> 237 0 0 Mallorca 5-4-1 0 #> 238 0 0 Mallorca 5-4-1 0 #> 239 0 0 Mallorca 5-4-1 0 #> 240 0 0 Mallorca 5-4-1 0 #> 241 0 0 Mallorca 5-4-1 0 #> 242 0 0 Mallorca 5-4-1 0 #> 243 0 0 Mallorca 5-4-1 0 #> 244 0 0 Mallorca 5-4-1 0 #> 245 0 0 Mallorca 5-4-1 0 #> 246 0 0 Mallorca 5-4-1 0 #> 247 0 0 Mallorca 5-4-1 0 #> 248 0 0 Mallorca 5-4-1 0 #> 249 0 0 Mallorca 5-4-1 0 #> 250 0 0 Mallorca 5-4-1 0 #> 251 0 0 Mallorca 5-4-1 0 #> 252 2 0 Atlético Madrid 5-3-2 3 #> 253 2 0 Atlético Madrid 5-3-2 3 #> 254 2 0 Atlético Madrid 5-3-2 3 #> 255 2 0 Atlético Madrid 5-3-2 3 #> 256 2 0 Atlético Madrid 5-3-2 3 #> 257 2 0 Atlético Madrid 5-3-2 3 #> 258 2 0 Atlético Madrid 5-3-2 3 #> 259 2 0 Atlético Madrid 5-3-2 3 #> 260 2 0 Atlético Madrid 5-3-2 3 #> 261 2 0 Atlético Madrid 5-3-2 3 #> 262 2 0 Atlético Madrid 5-3-2 3 #> 263 2 0 Atlético Madrid 5-3-2 3 #> 264 2 0 Atlético Madrid 5-3-2 3 #> 265 2 0 Atlético Madrid 5-3-2 3 #> 266 2 0 Atlético Madrid 5-3-2 3 #> 267 2 0 Atlético Madrid 5-3-2 3 #> 268 2 0 Atlético Madrid 5-3-2 3 #> 269 2 0 Atlético Madrid 5-3-2 3 #> 270 2 0 Atlético Madrid 5-3-2 3 #> 271 2 0 Atlético Madrid 5-3-2 3 #> 272 2 0 Atlético Madrid 5-3-2 3 #> 273 2 0 Atlético Madrid 5-3-2 3 #> 274 2 0 Atlético Madrid 5-3-2 3 #> 275 2 0 Atlético Madrid 5-3-2 3 #> 276 2 0 Atlético Madrid 5-3-2 3 #> 277 2 0 Atlético Madrid 5-3-2 3 #> 278 2 0 Atlético Madrid 5-3-2 3 #> 279 2 0 Atlético Madrid 5-3-2 3 #> 280 2 0 Atlético Madrid 5-3-2 3 #> 281 2 0 Atlético Madrid 5-3-2 3 #> 282 2 0 Atlético Madrid 5-3-2 3 #> 283 3 0 Elche 3-4-3 0 #> 284 3 0 Elche 3-4-3 0 #> 285 3 0 Elche 3-4-3 0 #> 286 3 0 Elche 3-4-3 0 #> 287 3 0 Elche 3-4-3 0 #> 288 3 0 Elche 3-4-3 0 #> 289 3 0 Elche 3-4-3 0 #> 290 3 0 Elche 3-4-3 0 #> 291 3 0 Elche 3-4-3 0 #> 292 3 0 Elche 3-4-3 0 #> 293 3 0 Elche 3-4-3 0 #> 294 3 0 Elche 3-4-3 0 #> 295 3 0 Elche 3-4-3 0 #> 296 3 0 Elche 3-4-3 0 #> 297 3 0 Elche 3-4-3 0 #> 298 3 0 Elche 3-4-3 0 #> 299 3 0 Elche 3-4-3 0 #> 300 3 0 Elche 3-4-3 0 #> 301 3 0 Elche 3-4-3 0 #> 302 3 0 Elche 3-4-3 0 #> 303 3 0 Elche 3-4-3 0 #> 304 3 0 Elche 3-4-3 0 #> 305 3 0 Elche 3-4-3 0 #> 306 3 0 Elche 3-4-3 0 #> 307 3 0 Elche 3-4-3 0 #> 308 3 0 Elche 3-4-3 0 #> 309 3 0 Elche 3-4-3 0 #> 310 3 0 Elche 3-4-3 0 #> 311 3 0 Elche 3-4-3 0 #> 312 3 0 Elche 3-4-3 0 #> 313 3 0 Elche 3-4-3 0 #> 314 3 0 Elche 3-4-3 0 #> 315 2 1 Rayo Vallecano 4-2-3-1 2 #> 316 2 1 Rayo Vallecano 4-2-3-1 2 #> 317 2 1 Rayo Vallecano 4-2-3-1 2 #> 318 2 1 Rayo Vallecano 4-2-3-1 2 #> 319 2 1 Rayo Vallecano 4-2-3-1 2 #> 320 2 1 Rayo Vallecano 4-2-3-1 2 #> 321 2 1 Rayo Vallecano 4-2-3-1 2 #> 322 2 1 Rayo Vallecano 4-2-3-1 2 #> 323 2 1 Rayo Vallecano 4-2-3-1 2 #> 324 2 1 Rayo Vallecano 4-2-3-1 2 #> 325 2 1 Rayo Vallecano 4-2-3-1 2 #> 326 2 1 Rayo Vallecano 4-2-3-1 2 #> 327 2 1 Rayo Vallecano 4-2-3-1 2 #> 328 2 1 Rayo Vallecano 4-2-3-1 2 #> 329 2 1 Rayo Vallecano 4-2-3-1 2 #> 330 2 1 Rayo Vallecano 4-2-3-1 2 #> 331 2 1 Rayo Vallecano 4-2-3-1 2 #> 332 2 1 Rayo Vallecano 4-2-3-1 2 #> 333 2 1 Rayo Vallecano 4-2-3-1 2 #> 334 2 1 Rayo Vallecano 4-2-3-1 2 #> 335 2 1 Rayo Vallecano 4-2-3-1 2 #> 336 2 1 Rayo Vallecano 4-2-3-1 2 #> 337 2 1 Rayo Vallecano 4-2-3-1 2 #> 338 2 1 Rayo Vallecano 4-2-3-1 2 #> 339 2 1 Rayo Vallecano 4-2-3-1 2 #> 340 2 1 Rayo Vallecano 4-2-3-1 2 #> 341 2 1 Rayo Vallecano 4-2-3-1 2 #> 342 2 1 Rayo Vallecano 4-2-3-1 2 #> 343 2 1 Rayo Vallecano 4-2-3-1 2 #> 344 2 1 Rayo Vallecano 4-2-3-1 2 #> 345 2 1 Rayo Vallecano 4-2-3-1 2 #> 346 3 1 Valladolid 4-3-3 1 #> 347 3 1 Valladolid 4-3-3 1 #> 348 3 1 Valladolid 4-3-3 1 #> 349 3 1 Valladolid 4-3-3 1 #> 350 3 1 Valladolid 4-3-3 1 #> 351 3 1 Valladolid 4-3-3 1 #> 352 3 1 Valladolid 4-3-3 1 #> 353 3 1 Valladolid 4-3-3 1 #> 354 3 1 Valladolid 4-3-3 1 #> 355 3 1 Valladolid 4-3-3 1 #> 356 3 1 Valladolid 4-3-3 1 #> 357 3 1 Valladolid 4-3-3 1 #> 358 3 1 Valladolid 4-3-3 1 #> 359 3 1 Valladolid 4-3-3 1 #> 360 3 1 Valladolid 4-3-3 1 #> 361 3 1 Valladolid 4-3-3 1 #> 362 3 1 Valladolid 4-3-3 1 #> 363 3 1 Valladolid 4-3-3 1 #> 364 3 1 Valladolid 4-3-3 1 #> 365 3 1 Valladolid 4-3-3 1 #> 366 3 1 Valladolid 4-3-3 1 #> 367 3 1 Valladolid 4-3-3 1 #> 368 3 1 Valladolid 4-3-3 1 #> 369 3 1 Valladolid 4-3-3 1 #> 370 3 1 Valladolid 4-3-3 1 #> 371 3 1 Valladolid 4-3-3 1 #> 372 3 1 Valladolid 4-3-3 1 #> 373 3 1 Valladolid 4-3-3 1 #> 374 3 1 Valladolid 4-3-3 1 #> 375 3 1 Valladolid 4-3-3 1 #> 376 3 1 Valladolid 4-3-3 1 #> 377 3 1 Valladolid 4-3-3 1 #> 378 2 0 Cádiz 4-4-2 0 #> 379 2 0 Cádiz 4-4-2 0 #> 380 2 0 Cádiz 4-4-2 0 #> 381 2 0 Cádiz 4-4-2 0 #> 382 2 0 Cádiz 4-4-2 0 #> 383 2 0 Cádiz 4-4-2 0 #> 384 2 0 Cádiz 4-4-2 0 #> 385 2 0 Cádiz 4-4-2 0 #> 386 2 0 Cádiz 4-4-2 0 #> 387 2 0 Cádiz 4-4-2 0 #> 388 2 0 Cádiz 4-4-2 0 #> 389 2 0 Cádiz 4-4-2 0 #> 390 2 0 Cádiz 4-4-2 0 #> 391 2 0 Cádiz 4-4-2 0 #> 392 2 0 Cádiz 4-4-2 0 #> 393 2 0 Cádiz 4-4-2 0 #> 394 2 0 Cádiz 4-4-2 0 #> 395 2 0 Cádiz 4-4-2 0 #> 396 2 0 Cádiz 4-4-2 0 #> 397 2 0 Cádiz 4-4-2 0 #> 398 2 0 Cádiz 4-4-2 0 #> 399 2 0 Cádiz 4-4-2 0 #> 400 2 0 Cádiz 4-4-2 0 #> 401 2 0 Cádiz 4-4-2 0 #> 402 2 0 Cádiz 4-4-2 0 #> 403 2 0 Cádiz 4-4-2 0 #> 404 2 0 Cádiz 4-4-2 0 #> 405 2 0 Cádiz 4-4-2 0 #> 406 2 0 Cádiz 4-4-2 0 #> 407 2 0 Cádiz 4-4-2 0 #> 408 2 0 Cádiz 4-4-2 0 #> 409 2 0 Cádiz 4-4-2 0 #> 410 7 0 Real Betis 4-2-3-1 2 #> 411 7 0 Real Betis 4-2-3-1 2 #> 412 7 0 Real Betis 4-2-3-1 2 #> 413 7 0 Real Betis 4-2-3-1 2 #> 414 7 0 Real Betis 4-2-3-1 2 #> 415 7 0 Real Betis 4-2-3-1 2 #> 416 7 0 Real Betis 4-2-3-1 2 #> 417 7 0 Real Betis 4-2-3-1 2 #> 418 7 0 Real Betis 4-2-3-1 2 #> 419 7 0 Real Betis 4-2-3-1 2 #> 420 7 0 Real Betis 4-2-3-1 2 #> 421 7 0 Real Betis 4-2-3-1 2 #> 422 7 0 Real Betis 4-2-3-1 2 #> 423 7 0 Real Betis 4-2-3-1 2 #> 424 7 0 Real Betis 4-2-3-1 2 #> 425 7 0 Real Betis 4-2-3-1 2 #> 426 7 0 Real Betis 4-2-3-1 2 #> 427 7 0 Real Betis 4-2-3-1 2 #> 428 7 0 Real Betis 4-2-3-1 2 #> 429 7 0 Real Betis 4-2-3-1 2 #> 430 7 0 Real Betis 4-2-3-1 2 #> 431 7 0 Real Betis 4-2-3-1 2 #> 432 7 0 Real Betis 4-2-3-1 2 #> 433 7 0 Real Betis 4-2-3-1 2 #> 434 7 0 Real Betis 4-2-3-1 2 #> 435 7 0 Real Betis 4-2-3-1 2 #> 436 7 0 Real Betis 4-2-3-1 2 #> 437 7 0 Real Betis 4-2-3-1 2 #> 438 7 0 Real Betis 4-2-3-1 2 #> 439 2 0 Real Madrid 4-3-3 4 #> 440 2 0 Real Madrid 4-3-3 4 #> 441 2 0 Real Madrid 4-3-3 4 #> 442 2 0 Real Madrid 4-3-3 4 #> 443 2 0 Real Madrid 4-3-3 4 #> 444 2 0 Real Madrid 4-3-3 4 #> 445 2 0 Real Madrid 4-3-3 4 #> 446 2 0 Real Madrid 4-3-3 4 #> 447 2 0 Real Madrid 4-3-3 4 #> 448 2 0 Real Madrid 4-3-3 4 #> 449 2 0 Real Madrid 4-3-3 4 #> 450 2 0 Real Madrid 4-3-3 4 #> 451 2 0 Real Madrid 4-3-3 4 #> 452 2 0 Real Madrid 4-3-3 4 #> 453 2 0 Real Madrid 4-3-3 4 #> 454 2 0 Real Madrid 4-3-3 4 #> 455 2 0 Real Madrid 4-3-3 4 #> 456 2 0 Real Madrid 4-3-3 4 #> 457 2 0 Real Madrid 4-3-3 4 #> 458 2 0 Real Madrid 4-3-3 4 #> 459 2 0 Real Madrid 4-3-3 4 #> 460 2 0 Real Madrid 4-3-3 4 #> 461 2 0 Real Madrid 4-3-3 4 #> 462 2 0 Real Madrid 4-3-3 4 #> 463 2 0 Real Madrid 4-3-3 4 #> 464 2 0 Real Madrid 4-3-3 4 #> 465 2 0 Real Madrid 4-3-3 4 #> 466 2 0 Real Madrid 4-3-3 4 #> 467 2 0 Real Madrid 4-3-3 4 #> 468 2 0 Real Madrid 4-3-3 4 #> 469 5 0 Valencia 4-3-3 0 #> 470 5 0 Valencia 4-3-3 0 #> 471 5 0 Valencia 4-3-3 0 #> 472 5 0 Valencia 4-3-3 0 #> 473 5 0 Valencia 4-3-3 0 #> 474 5 0 Valencia 4-3-3 0 #> 475 5 0 Valencia 4-3-3 0 #> 476 5 0 Valencia 4-3-3 0 #> 477 5 0 Valencia 4-3-3 0 #> 478 5 0 Valencia 4-3-3 0 #> 479 5 0 Valencia 4-3-3 0 #> 480 5 0 Valencia 4-3-3 0 #> 481 5 0 Valencia 4-3-3 0 #> 482 5 0 Valencia 4-3-3 0 #> 483 5 0 Valencia 4-3-3 0 #> 484 5 0 Valencia 4-3-3 0 #> 485 5 0 Valencia 4-3-3 0 #> 486 5 0 Valencia 4-3-3 0 #> 487 5 0 Valencia 4-3-3 0 #> 488 5 0 Valencia 4-3-3 0 #> 489 5 0 Valencia 4-3-3 0 #> 490 5 0 Valencia 4-3-3 0 #> 491 5 0 Valencia 4-3-3 0 #> 492 5 0 Valencia 4-3-3 0 #> 493 5 0 Valencia 4-3-3 0 #> 494 5 0 Valencia 4-3-3 0 #> 495 5 0 Valencia 4-3-3 0 #> 496 5 0 Valencia 4-3-3 0 #> 497 5 0 Valencia 4-3-3 0 #> 498 5 0 Valencia 4-3-3 0 #> 499 5 0 Valencia 4-3-3 0 #> 500 5 0 Valencia 4-3-3 0 #> 501 2 1 Villarreal 4-4-2 2 #> 502 2 1 Villarreal 4-4-2 2 #> 503 2 1 Villarreal 4-4-2 2 #> 504 2 1 Villarreal 4-4-2 2 #> 505 2 1 Villarreal 4-4-2 2 #> 506 2 1 Villarreal 4-4-2 2 #> 507 2 1 Villarreal 4-4-2 2 #> 508 2 1 Villarreal 4-4-2 2 #> 509 2 1 Villarreal 4-4-2 2 #> 510 2 1 Villarreal 4-4-2 2 #> 511 2 1 Villarreal 4-4-2 2 #> 512 2 1 Villarreal 4-4-2 2 #> 513 2 1 Villarreal 4-4-2 2 #> 514 2 1 Villarreal 4-4-2 2 #> 515 2 1 Villarreal 4-4-2 2 #> 516 2 1 Villarreal 4-4-2 2 #> 517 2 1 Villarreal 4-4-2 2 #> 518 2 1 Villarreal 4-4-2 2 #> 519 2 1 Villarreal 4-4-2 2 #> 520 2 1 Villarreal 4-4-2 2 #> 521 2 1 Villarreal 4-4-2 2 #> 522 2 1 Villarreal 4-4-2 2 #> 523 2 1 Villarreal 4-4-2 2 #> 524 2 1 Villarreal 4-4-2 2 #> 525 2 1 Villarreal 4-4-2 2 #> 526 2 1 Villarreal 4-4-2 2 #> 527 2 1 Villarreal 4-4-2 2 #> 528 2 1 Villarreal 4-4-2 2 #> 529 2 1 Villarreal 4-4-2 2 #> 530 2 1 Villarreal 4-4-2 2 #> 531 2 1 Villarreal 4-4-2 2 #> 532 2 0 Barcelona 3-2-4-1 4 #> 533 2 0 Barcelona 3-2-4-1 4 #> 534 2 0 Barcelona 3-2-4-1 4 #> 535 2 0 Barcelona 3-2-4-1 4 #> 536 2 0 Barcelona 3-2-4-1 4 #> 537 2 0 Barcelona 3-2-4-1 4 #> 538 2 0 Barcelona 3-2-4-1 4 #> 539 2 0 Barcelona 3-2-4-1 4 #> 540 2 0 Barcelona 3-2-4-1 4 #> 541 2 0 Barcelona 3-2-4-1 4 #> 542 2 0 Barcelona 3-2-4-1 4 #> 543 2 0 Barcelona 3-2-4-1 4 #> 544 2 0 Barcelona 3-2-4-1 4 #> 545 2 0 Barcelona 3-2-4-1 4 #> 546 2 0 Barcelona 3-2-4-1 4 #> 547 2 0 Barcelona 3-2-4-1 4 #> 548 2 0 Barcelona 3-2-4-1 4 #> 549 2 0 Barcelona 3-2-4-1 4 #> 550 2 0 Barcelona 3-2-4-1 4 #> 551 2 0 Barcelona 3-2-4-1 4 #> 552 2 0 Barcelona 3-2-4-1 4 #> 553 2 0 Barcelona 3-2-4-1 4 #> 554 2 0 Barcelona 3-2-4-1 4 #> 555 2 0 Barcelona 3-2-4-1 4 #> 556 2 0 Barcelona 3-2-4-1 4 #> 557 2 0 Barcelona 3-2-4-1 4 #> 558 2 0 Barcelona 3-2-4-1 4 #> 559 2 0 Barcelona 3-2-4-1 4 #> 560 2 0 Barcelona 3-2-4-1 4 #> 561 2 0 Barcelona 3-2-4-1 4 #> 562 2 0 Barcelona 3-2-4-1 4 #> 563 2 0 Barcelona 3-2-4-1 4 #> 564 2 0 Getafe 5-3-2 1 #> 565 2 0 Getafe 5-3-2 1 #> 566 2 0 Getafe 5-3-2 1 #> 567 2 0 Getafe 5-3-2 1 #> 568 2 0 Getafe 5-3-2 1 #> 569 2 0 Getafe 5-3-2 1 #> 570 2 0 Getafe 5-3-2 1 #> 571 2 0 Getafe 5-3-2 1 #> 572 2 0 Getafe 5-3-2 1 #> 573 2 0 Getafe 5-3-2 1 #> 574 2 0 Getafe 5-3-2 1 #> 575 2 0 Getafe 5-3-2 1 #> 576 2 0 Getafe 5-3-2 1 #> 577 2 0 Getafe 5-3-2 1 #> 578 2 0 Getafe 5-3-2 1 #> 579 2 0 Getafe 5-3-2 1 #> 580 2 0 Getafe 5-3-2 1 #> 581 2 0 Getafe 5-3-2 1 #> 582 2 0 Getafe 5-3-2 1 #> 583 2 0 Getafe 5-3-2 1 #> 584 2 0 Getafe 5-3-2 1 #> 585 2 0 Getafe 5-3-2 1 #> 586 2 0 Getafe 5-3-2 1 #> 587 2 0 Getafe 5-3-2 1 #> 588 2 0 Getafe 5-3-2 1 #> 589 2 0 Getafe 5-3-2 1 #> 590 2 0 Getafe 5-3-2 1 #> 591 2 0 Getafe 5-3-2 1 #> 592 2 0 Celta Vigo 4-1-3-2 1 #> 593 2 0 Celta Vigo 4-1-3-2 1 #> 594 2 0 Celta Vigo 4-1-3-2 1 #> 595 2 0 Celta Vigo 4-1-3-2 1 #> 596 2 0 Celta Vigo 4-1-3-2 1 #> 597 2 0 Celta Vigo 4-1-3-2 1 #> 598 2 0 Celta Vigo 4-1-3-2 1 #> 599 2 0 Celta Vigo 4-1-3-2 1 #> 600 2 0 Celta Vigo 4-1-3-2 1 #> 601 2 0 Celta Vigo 4-1-3-2 1 #> 602 2 0 Celta Vigo 4-1-3-2 1 #> 603 2 0 Celta Vigo 4-1-3-2 1 #> 604 2 0 Celta Vigo 4-1-3-2 1 #> 605 2 0 Celta Vigo 4-1-3-2 1 #> 606 2 0 Celta Vigo 4-1-3-2 1 #> 607 2 0 Celta Vigo 4-1-3-2 1 #> 608 2 0 Celta Vigo 4-1-3-2 1 #> 609 2 0 Celta Vigo 4-1-3-2 1 #> 610 2 0 Celta Vigo 4-1-3-2 1 #> 611 2 0 Celta Vigo 4-1-3-2 1 #> 612 2 0 Celta Vigo 4-1-3-2 1 #> 613 2 0 Celta Vigo 4-1-3-2 1 #> 614 2 0 Celta Vigo 4-1-3-2 1 #> 615 2 0 Celta Vigo 4-1-3-2 1 #> 616 2 0 Celta Vigo 4-1-3-2 1 #> 617 2 0 Celta Vigo 4-1-3-2 1 #> 618 2 0 Celta Vigo 4-1-3-2 1 #> 619 2 0 Celta Vigo 4-1-3-2 1 #> 620 2 0 Celta Vigo 4-1-3-2 1 #> 621 2 0 Celta Vigo 4-1-3-2 1 #> 622 2 0 Celta Vigo 4-1-3-2 1 #> 623 0 1 Osasuna 4-4-1-1 0 #> 624 0 1 Osasuna 4-4-1-1 0 #> 625 0 1 Osasuna 4-4-1-1 0 #> 626 0 1 Osasuna 4-4-1-1 0 #> 627 0 1 Osasuna 4-4-1-1 0 #> 628 0 1 Osasuna 4-4-1-1 0 #> 629 0 1 Osasuna 4-4-1-1 0 #> 630 0 1 Osasuna 4-4-1-1 0 #> 631 0 1 Osasuna 4-4-1-1 0 #> 632 0 1 Osasuna 4-4-1-1 0 #> 633 0 1 Osasuna 4-4-1-1 0 #> 634 0 1 Osasuna 4-4-1-1 0 #> 635 0 1 Osasuna 4-4-1-1 0 #> 636 0 1 Osasuna 4-4-1-1 0 #> 637 0 1 Osasuna 4-4-1-1 0 #> 638 0 1 Osasuna 4-4-1-1 0 #> 639 0 1 Osasuna 4-4-1-1 0 #> 640 0 1 Osasuna 4-4-1-1 0 #> 641 0 1 Osasuna 4-4-1-1 0 #> 642 0 1 Osasuna 4-4-1-1 0 #> 643 0 1 Osasuna 4-4-1-1 0 #> 644 0 1 Osasuna 4-4-1-1 0 #> 645 0 1 Osasuna 4-4-1-1 0 #> 646 0 1 Osasuna 4-4-1-1 0 #> 647 0 1 Osasuna 4-4-1-1 0 #> 648 0 1 Osasuna 4-4-1-1 0 #> 649 0 1 Osasuna 4-4-1-1 0 #> 650 0 1 Osasuna 4-4-1-1 0 #> 651 0 1 Osasuna 4-4-1-1 0 #> 652 0 1 Osasuna 4-4-1-1 0 #> 653 0 1 Osasuna 4-4-1-1 0 #> 654 3 0 Real Sociedad 4-1-2-1-2 1 #> 655 3 0 Real Sociedad 4-1-2-1-2 1 #> 656 3 0 Real Sociedad 4-1-2-1-2 1 #> 657 3 0 Real Sociedad 4-1-2-1-2 1 #> 658 3 0 Real Sociedad 4-1-2-1-2 1 #> 659 3 0 Real Sociedad 4-1-2-1-2 1 #> 660 3 0 Real Sociedad 4-1-2-1-2 1 #> 661 3 0 Real Sociedad 4-1-2-1-2 1 #> 662 3 0 Real Sociedad 4-1-2-1-2 1 #> 663 3 0 Real Sociedad 4-1-2-1-2 1 #> 664 3 0 Real Sociedad 4-1-2-1-2 1 #> 665 3 0 Real Sociedad 4-1-2-1-2 1 #> 666 3 0 Real Sociedad 4-1-2-1-2 1 #> 667 3 0 Real Sociedad 4-1-2-1-2 1 #> 668 3 0 Real Sociedad 4-1-2-1-2 1 #> 669 3 0 Real Sociedad 4-1-2-1-2 1 #> 670 3 0 Real Sociedad 4-1-2-1-2 1 #> 671 3 0 Real Sociedad 4-1-2-1-2 1 #> 672 3 0 Real Sociedad 4-1-2-1-2 1 #> 673 3 0 Real Sociedad 4-1-2-1-2 1 #> 674 3 0 Real Sociedad 4-1-2-1-2 1 #> 675 3 0 Real Sociedad 4-1-2-1-2 1 #> 676 3 0 Real Sociedad 4-1-2-1-2 1 #> 677 3 0 Real Sociedad 4-1-2-1-2 1 #> 678 3 0 Real Sociedad 4-1-2-1-2 1 #> 679 3 0 Real Sociedad 4-1-2-1-2 1 #> 680 3 0 Real Sociedad 4-1-2-1-2 1 #> 681 3 0 Real Sociedad 4-1-2-1-2 1 #> 682 3 0 Real Sociedad 4-1-2-1-2 1 #> 683 3 0 Real Sociedad 4-1-2-1-2 1 #> 684 3 0 Real Sociedad 4-1-2-1-2 1 #> 685 3 0 Real Sociedad 4-1-2-1-2 1 #> 686 1 0 Mallorca 5-3-2 2 #> 687 1 0 Mallorca 5-3-2 2 #> 688 1 0 Mallorca 5-3-2 2 #> 689 1 0 Mallorca 5-3-2 2 #> 690 1 0 Mallorca 5-3-2 2 #> 691 1 0 Mallorca 5-3-2 2 #> 692 1 0 Mallorca 5-3-2 2 #> 693 1 0 Mallorca 5-3-2 2 #> 694 1 0 Mallorca 5-3-2 2 #> 695 1 0 Mallorca 5-3-2 2 #> 696 1 0 Mallorca 5-3-2 2 #> 697 1 0 Mallorca 5-3-2 2 #> 698 1 0 Mallorca 5-3-2 2 #> 699 1 0 Mallorca 5-3-2 2 #> 700 1 0 Mallorca 5-3-2 2 #> 701 1 0 Mallorca 5-3-2 2 #> 702 1 0 Mallorca 5-3-2 2 #> 703 1 0 Mallorca 5-3-2 2 #> 704 1 0 Mallorca 5-3-2 2 #> 705 1 0 Mallorca 5-3-2 2 #> 706 1 0 Mallorca 5-3-2 2 #> 707 1 0 Mallorca 5-3-2 2 #> 708 1 0 Mallorca 5-3-2 2 #> 709 1 0 Mallorca 5-3-2 2 #> 710 1 0 Mallorca 5-3-2 2 #> 711 1 0 Mallorca 5-3-2 2 #> 712 1 0 Mallorca 5-3-2 2 #> 713 1 0 Mallorca 5-3-2 2 #> 714 1 0 Mallorca 5-3-2 2 #> 715 1 0 Mallorca 5-3-2 2 #> 716 1 0 Mallorca 5-3-2 2 #> 717 5 0 Sevilla 4-2-2-2 1 #> 718 5 0 Sevilla 4-2-2-2 1 #> 719 5 0 Sevilla 4-2-2-2 1 #> 720 5 0 Sevilla 4-2-2-2 1 #> 721 5 0 Sevilla 4-2-2-2 1 #> 722 5 0 Sevilla 4-2-2-2 1 #> 723 5 0 Sevilla 4-2-2-2 1 #> 724 5 0 Sevilla 4-2-2-2 1 #> 725 5 0 Sevilla 4-2-2-2 1 #> 726 5 0 Sevilla 4-2-2-2 1 #> 727 5 0 Sevilla 4-2-2-2 1 #> 728 5 0 Sevilla 4-2-2-2 1 #> 729 5 0 Sevilla 4-2-2-2 1 #> 730 5 0 Sevilla 4-2-2-2 1 #> 731 5 0 Sevilla 4-2-2-2 1 #> 732 5 0 Sevilla 4-2-2-2 1 #> 733 5 0 Sevilla 4-2-2-2 1 #> 734 5 0 Sevilla 4-2-2-2 1 #> 735 5 0 Sevilla 4-2-2-2 1 #> 736 5 0 Sevilla 4-2-2-2 1 #> 737 5 0 Sevilla 4-2-2-2 1 #> 738 5 0 Sevilla 4-2-2-2 1 #> 739 5 0 Sevilla 4-2-2-2 1 #> 740 5 0 Sevilla 4-2-2-2 1 #> 741 5 0 Sevilla 4-2-2-2 1 #> 742 5 0 Sevilla 4-2-2-2 1 #> 743 5 0 Sevilla 4-2-2-2 1 #> 744 5 0 Sevilla 4-2-2-2 1 #> 745 5 0 Sevilla 4-2-2-2 1 #> 746 5 0 Sevilla 4-2-2-2 1 #> 747 5 0 Sevilla 4-2-2-2 1 #> 748 5 0 Sevilla 4-2-2-2 1 #> 749 1 0 Villarreal 4-4-2 0 #> 750 1 0 Villarreal 4-4-2 0 #> 751 1 0 Villarreal 4-4-2 0 #> 752 1 0 Villarreal 4-4-2 0 #> 753 1 0 Villarreal 4-4-2 0 #> 754 1 0 Villarreal 4-4-2 0 #> 755 1 0 Villarreal 4-4-2 0 #> 756 1 0 Villarreal 4-4-2 0 #> 757 1 0 Villarreal 4-4-2 0 #> 758 1 0 Villarreal 4-4-2 0 #> 759 1 0 Villarreal 4-4-2 0 #> 760 1 0 Villarreal 4-4-2 0 #> 761 1 0 Villarreal 4-4-2 0 #> 762 1 0 Villarreal 4-4-2 0 #> 763 1 0 Villarreal 4-4-2 0 #> 764 1 0 Villarreal 4-4-2 0 #> 765 1 0 Villarreal 4-4-2 0 #> 766 1 0 Villarreal 4-4-2 0 #> 767 1 0 Villarreal 4-4-2 0 #> 768 1 0 Villarreal 4-4-2 0 #> 769 1 0 Villarreal 4-4-2 0 #> 770 1 0 Villarreal 4-4-2 0 #> 771 1 0 Villarreal 4-4-2 0 #> 772 1 0 Villarreal 4-4-2 0 #> 773 1 0 Villarreal 4-4-2 0 #> 774 1 0 Villarreal 4-4-2 0 #> 775 1 0 Villarreal 4-4-2 0 #> 776 1 0 Villarreal 4-4-2 0 #> 777 1 0 Villarreal 4-4-2 0 #> 778 1 0 Villarreal 4-4-2 0 #> 779 0 0 Valladolid 4-1-4-1 0 #> 780 0 0 Valladolid 4-1-4-1 0 #> 781 0 0 Valladolid 4-1-4-1 0 #> 782 0 0 Valladolid 4-1-4-1 0 #> 783 0 0 Valladolid 4-1-4-1 0 #> 784 0 0 Valladolid 4-1-4-1 0 #> 785 0 0 Valladolid 4-1-4-1 0 #> 786 0 0 Valladolid 4-1-4-1 0 #> 787 0 0 Valladolid 4-1-4-1 0 #> 788 0 0 Valladolid 4-1-4-1 0 #> 789 0 0 Valladolid 4-1-4-1 0 #> 790 0 0 Valladolid 4-1-4-1 0 #> 791 0 0 Valladolid 4-1-4-1 0 #> 792 0 0 Valladolid 4-1-4-1 0 #> 793 0 0 Valladolid 4-1-4-1 0 #> 794 0 0 Valladolid 4-1-4-1 0 #> 795 0 0 Valladolid 4-1-4-1 0 #> 796 0 0 Valladolid 4-1-4-1 0 #> 797 0 0 Valladolid 4-1-4-1 0 #> 798 0 0 Valladolid 4-1-4-1 0 #> 799 0 0 Valladolid 4-1-4-1 0 #> 800 0 0 Valladolid 4-1-4-1 0 #> 801 0 0 Valladolid 4-1-4-1 0 #> 802 0 0 Valladolid 4-1-4-1 0 #> 803 0 0 Valladolid 4-1-4-1 0 #> 804 0 0 Valladolid 4-1-4-1 0 #> 805 0 0 Valladolid 4-1-4-1 0 #> 806 0 0 Valladolid 4-1-4-1 0 #> 807 0 0 Valladolid 4-1-4-1 0 #> 808 0 0 Valladolid 4-1-4-1 0 #> 809 0 0 Valladolid 4-1-4-1 0 #> 810 0 0 Valladolid 4-1-4-1 0 #> 811 0 1 Real Madrid 4-3-3 3 #> 812 0 1 Real Madrid 4-3-3 3 #> 813 0 1 Real Madrid 4-3-3 3 #> 814 0 1 Real Madrid 4-3-3 3 #> 815 0 1 Real Madrid 4-3-3 3 #> 816 0 1 Real Madrid 4-3-3 3 #> 817 0 1 Real Madrid 4-3-3 3 #> 818 0 1 Real Madrid 4-3-3 3 #> 819 0 1 Real Madrid 4-3-3 3 #> 820 0 1 Real Madrid 4-3-3 3 #> 821 0 1 Real Madrid 4-3-3 3 #> 822 0 1 Real Madrid 4-3-3 3 #> 823 0 1 Real Madrid 4-3-3 3 #> 824 0 1 Real Madrid 4-3-3 3 #> 825 0 1 Real Madrid 4-3-3 3 #> 826 0 1 Real Madrid 4-3-3 3 #> 827 0 1 Real Madrid 4-3-3 3 #> 828 0 1 Real Madrid 4-3-3 3 #> 829 0 1 Real Madrid 4-3-3 3 #> 830 0 1 Real Madrid 4-3-3 3 #> 831 0 1 Real Madrid 4-3-3 3 #> 832 0 1 Real Madrid 4-3-3 3 #> 833 0 1 Real Madrid 4-3-3 3 #> 834 0 1 Real Madrid 4-3-3 3 #> 835 0 1 Real Madrid 4-3-3 3 #> 836 0 1 Real Madrid 4-3-3 3 #> 837 0 1 Real Madrid 4-3-3 3 #> 838 0 1 Real Madrid 4-3-3 3 #> 839 0 1 Real Madrid 4-3-3 3 #> 840 2 0 Athletic Club 4-2-3-1 4 #> 841 2 0 Athletic Club 4-2-3-1 4 #> 842 2 0 Athletic Club 4-2-3-1 4 #> 843 2 0 Athletic Club 4-2-3-1 4 #> 844 2 0 Athletic Club 4-2-3-1 4 #> 845 2 0 Athletic Club 4-2-3-1 4 #> 846 2 0 Athletic Club 4-2-3-1 4 #> 847 2 0 Athletic Club 4-2-3-1 4 #> 848 2 0 Athletic Club 4-2-3-1 4 #> 849 2 0 Athletic Club 4-2-3-1 4 #> 850 2 0 Athletic Club 4-2-3-1 4 #> 851 2 0 Athletic Club 4-2-3-1 4 #> 852 2 0 Athletic Club 4-2-3-1 4 #> 853 2 0 Athletic Club 4-2-3-1 4 #> 854 2 0 Athletic Club 4-2-3-1 4 #> 855 2 0 Athletic Club 4-2-3-1 4 #> 856 2 0 Athletic Club 4-2-3-1 4 #> 857 2 0 Athletic Club 4-2-3-1 4 #> 858 2 0 Athletic Club 4-2-3-1 4 #> 859 2 0 Athletic Club 4-2-3-1 4 #> 860 2 0 Athletic Club 4-2-3-1 4 #> 861 2 0 Athletic Club 4-2-3-1 4 #> 862 2 0 Athletic Club 4-2-3-1 4 #> 863 2 0 Athletic Club 4-2-3-1 4 #> 864 2 0 Athletic Club 4-2-3-1 4 #> 865 2 0 Athletic Club 4-2-3-1 4 #> 866 2 0 Athletic Club 4-2-3-1 4 #> 867 2 0 Athletic Club 4-2-3-1 4 #> 868 2 0 Athletic Club 4-2-3-1 4 #> 869 2 0 Athletic Club 4-2-3-1 4 #> 870 2 0 Athletic Club 4-2-3-1 4 #> 871 2 0 Athletic Club 4-2-3-1 4 #> 872 4 0 Atlético Madrid 5-3-2 1 #> 873 4 0 Atlético Madrid 5-3-2 1 #> 874 4 0 Atlético Madrid 5-3-2 1 #> 875 4 0 Atlético Madrid 5-3-2 1 #> 876 4 0 Atlético Madrid 5-3-2 1 #> 877 4 0 Atlético Madrid 5-3-2 1 #> 878 4 0 Atlético Madrid 5-3-2 1 #> 879 4 0 Atlético Madrid 5-3-2 1 #> 880 4 0 Atlético Madrid 5-3-2 1 #> 881 4 0 Atlético Madrid 5-3-2 1 #> 882 4 0 Atlético Madrid 5-3-2 1 #> 883 4 0 Atlético Madrid 5-3-2 1 #> 884 4 0 Atlético Madrid 5-3-2 1 #> 885 4 0 Atlético Madrid 5-3-2 1 #> 886 4 0 Atlético Madrid 5-3-2 1 #> 887 4 0 Atlético Madrid 5-3-2 1 #> 888 4 0 Atlético Madrid 5-3-2 1 #> 889 4 0 Atlético Madrid 5-3-2 1 #> 890 4 0 Atlético Madrid 5-3-2 1 #> 891 4 0 Atlético Madrid 5-3-2 1 #> 892 4 0 Atlético Madrid 5-3-2 1 #> 893 4 0 Atlético Madrid 5-3-2 1 #> 894 4 0 Atlético Madrid 5-3-2 1 #> 895 4 0 Atlético Madrid 5-3-2 1 #> 896 4 0 Atlético Madrid 5-3-2 1 #> 897 4 0 Atlético Madrid 5-3-2 1 #> 898 4 0 Atlético Madrid 5-3-2 1 #> 899 4 0 Atlético Madrid 5-3-2 1 #> 900 4 0 Atlético Madrid 5-3-2 1 #> 901 4 0 Atlético Madrid 5-3-2 1 #> 902 4 0 Atlético Madrid 5-3-2 1 #> 903 4 0 Atlético Madrid 5-3-2 1 #> 904 1 0 Cádiz 4-1-4-1 0 #> 905 1 0 Cádiz 4-1-4-1 0 #> 906 1 0 Cádiz 4-1-4-1 0 #> 907 1 0 Cádiz 4-1-4-1 0 #> 908 1 0 Cádiz 4-1-4-1 0 #> 909 1 0 Cádiz 4-1-4-1 0 #> 910 1 0 Cádiz 4-1-4-1 0 #> 911 1 0 Cádiz 4-1-4-1 0 #> 912 1 0 Cádiz 4-1-4-1 0 #> 913 1 0 Cádiz 4-1-4-1 0 #> 914 1 0 Cádiz 4-1-4-1 0 #> 915 1 0 Cádiz 4-1-4-1 0 #> 916 1 0 Cádiz 4-1-4-1 0 #> 917 1 0 Cádiz 4-1-4-1 0 #> 918 1 0 Cádiz 4-1-4-1 0 #> 919 1 0 Cádiz 4-1-4-1 0 #> 920 1 0 Cádiz 4-1-4-1 0 #> 921 1 0 Cádiz 4-1-4-1 0 #> 922 1 0 Cádiz 4-1-4-1 0 #> 923 1 0 Cádiz 4-1-4-1 0 #> 924 1 0 Cádiz 4-1-4-1 0 #> 925 1 0 Cádiz 4-1-4-1 0 #> 926 1 0 Cádiz 4-1-4-1 0 #> 927 1 0 Cádiz 4-1-4-1 0 #> 928 1 0 Cádiz 4-1-4-1 0 #> 929 1 0 Cádiz 4-1-4-1 0 #> 930 1 0 Cádiz 4-1-4-1 0 #> 931 1 0 Cádiz 4-1-4-1 0 #> 932 1 0 Cádiz 4-1-4-1 0 #> 933 1 0 Cádiz 4-1-4-1 0 #> 934 1 0 Cádiz 4-1-4-1 0 #> 935 1 0 Cádiz 4-1-4-1 0 #> 936 4 0 Girona 3-4-3 1 #> 937 4 0 Girona 3-4-3 1 #> 938 4 0 Girona 3-4-3 1 #> 939 4 0 Girona 3-4-3 1 #> 940 4 0 Girona 3-4-3 1 #> 941 4 0 Girona 3-4-3 1 #> 942 4 0 Girona 3-4-3 1 #> 943 4 0 Girona 3-4-3 1 #> 944 4 0 Girona 3-4-3 1 #> 945 4 0 Girona 3-4-3 1 #> 946 4 0 Girona 3-4-3 1 #> 947 4 0 Girona 3-4-3 1 #> 948 4 0 Girona 3-4-3 1 #> 949 4 0 Girona 3-4-3 1 #> 950 4 0 Girona 3-4-3 1 #> 951 4 0 Girona 3-4-3 1 #> 952 4 0 Girona 3-4-3 1 #> 953 4 0 Girona 3-4-3 1 #> 954 4 0 Girona 3-4-3 1 #> 955 4 0 Girona 3-4-3 1 #> 956 4 0 Girona 3-4-3 1 #> 957 4 0 Girona 3-4-3 1 #> 958 4 0 Girona 3-4-3 1 #> 959 4 0 Girona 3-4-3 1 #> 960 4 0 Girona 3-4-3 1 #> 961 4 0 Girona 3-4-3 1 #> 962 4 0 Girona 3-4-3 1 #> 963 4 0 Girona 3-4-3 1 #> 964 4 0 Girona 3-4-3 1 #> 965 4 0 Girona 3-4-3 1 #> 966 0 0 Real Betis 4-2-3-1 1 #> 967 0 0 Real Betis 4-2-3-1 1 #> 968 0 0 Real Betis 4-2-3-1 1 #> 969 0 0 Real Betis 4-2-3-1 1 #> 970 0 0 Real Betis 4-2-3-1 1 #> 971 0 0 Real Betis 4-2-3-1 1 #> 972 0 0 Real Betis 4-2-3-1 1 #> 973 0 0 Real Betis 4-2-3-1 1 #> 974 0 0 Real Betis 4-2-3-1 1 #> 975 0 0 Real Betis 4-2-3-1 1 #> 976 0 0 Real Betis 4-2-3-1 1 #> 977 0 0 Real Betis 4-2-3-1 1 #> 978 0 0 Real Betis 4-2-3-1 1 #> 979 0 0 Real Betis 4-2-3-1 1 #> 980 0 0 Real Betis 4-2-3-1 1 #> 981 0 0 Real Betis 4-2-3-1 1 #> 982 0 0 Real Betis 4-2-3-1 1 #> 983 0 0 Real Betis 4-2-3-1 1 #> 984 0 0 Real Betis 4-2-3-1 1 #> 985 0 0 Real Betis 4-2-3-1 1 #> 986 0 0 Real Betis 4-2-3-1 1 #> 987 0 0 Real Betis 4-2-3-1 1 #> 988 0 0 Real Betis 4-2-3-1 1 #> 989 0 0 Real Betis 4-2-3-1 1 #> 990 0 0 Real Betis 4-2-3-1 1 #> 991 0 0 Real Betis 4-2-3-1 1 #> 992 0 0 Real Betis 4-2-3-1 1 #> 993 0 0 Real Betis 4-2-3-1 1 #> 994 0 0 Real Betis 4-2-3-1 1 #> 995 0 0 Real Betis 4-2-3-1 1 #> 996 5 0 Atlético Madrid 3-1-4-2 1 #> 997 5 0 Atlético Madrid 3-1-4-2 1 #> 998 5 0 Atlético Madrid 3-1-4-2 1 #> 999 5 0 Atlético Madrid 3-1-4-2 1 #> 1000 5 0 Atlético Madrid 3-1-4-2 1 #> 1001 5 0 Atlético Madrid 3-1-4-2 1 #> 1002 5 0 Atlético Madrid 3-1-4-2 1 #> 1003 5 0 Atlético Madrid 3-1-4-2 1 #> 1004 5 0 Atlético Madrid 3-1-4-2 1 #> 1005 5 0 Atlético Madrid 3-1-4-2 1 #> 1006 5 0 Atlético Madrid 3-1-4-2 1 #> 1007 5 0 Atlético Madrid 3-1-4-2 1 #> 1008 5 0 Atlético Madrid 3-1-4-2 1 #> 1009 5 0 Atlético Madrid 3-1-4-2 1 #> 1010 5 0 Atlético Madrid 3-1-4-2 1 #> 1011 5 0 Atlético Madrid 3-1-4-2 1 #> 1012 5 0 Atlético Madrid 3-1-4-2 1 #> 1013 5 0 Atlético Madrid 3-1-4-2 1 #> 1014 5 0 Atlético Madrid 3-1-4-2 1 #> 1015 5 0 Atlético Madrid 3-1-4-2 1 #> 1016 5 0 Atlético Madrid 3-1-4-2 1 #> 1017 5 0 Atlético Madrid 3-1-4-2 1 #> 1018 5 0 Atlético Madrid 3-1-4-2 1 #> 1019 5 0 Atlético Madrid 3-1-4-2 1 #> 1020 5 0 Atlético Madrid 3-1-4-2 1 #> 1021 5 0 Atlético Madrid 3-1-4-2 1 #> 1022 5 0 Atlético Madrid 3-1-4-2 1 #> 1023 5 0 Atlético Madrid 3-1-4-2 1 #> 1024 5 0 Atlético Madrid 3-1-4-2 1 #> 1025 5 0 Atlético Madrid 3-1-4-2 1 #> 1026 5 0 Atlético Madrid 3-1-4-2 1 #> 1027 5 0 Atlético Madrid 3-1-4-2 1 #> 1028 2 0 Barcelona 4-3-3 3 #> 1029 2 0 Barcelona 4-3-3 3 #> 1030 2 0 Barcelona 4-3-3 3 #> 1031 2 0 Barcelona 4-3-3 3 #> 1032 2 0 Barcelona 4-3-3 3 #> 1033 2 0 Barcelona 4-3-3 3 #> 1034 2 0 Barcelona 4-3-3 3 #> 1035 2 0 Barcelona 4-3-3 3 #> 1036 2 0 Barcelona 4-3-3 3 #> 1037 2 0 Barcelona 4-3-3 3 #> 1038 2 0 Barcelona 4-3-3 3 #> 1039 2 0 Barcelona 4-3-3 3 #> 1040 2 0 Barcelona 4-3-3 3 #> 1041 2 0 Barcelona 4-3-3 3 #> 1042 2 0 Barcelona 4-3-3 3 #> 1043 2 0 Barcelona 4-3-3 3 #> 1044 2 0 Barcelona 4-3-3 3 #> 1045 2 0 Barcelona 4-3-3 3 #> 1046 2 0 Barcelona 4-3-3 3 #> 1047 2 0 Barcelona 4-3-3 3 #> 1048 2 0 Barcelona 4-3-3 3 #> 1049 2 0 Barcelona 4-3-3 3 #> 1050 2 0 Barcelona 4-3-3 3 #> 1051 2 0 Barcelona 4-3-3 3 #> 1052 2 0 Barcelona 4-3-3 3 #> 1053 2 0 Barcelona 4-3-3 3 #> 1054 2 0 Barcelona 4-3-3 3 #> 1055 2 0 Barcelona 4-3-3 3 #> 1056 2 0 Barcelona 4-3-3 3 #> 1057 2 0 Barcelona 4-3-3 3 #> 1058 2 0 Barcelona 4-3-3 3 #> 1059 2 0 Barcelona 4-3-3 3 #> 1060 2 0 Rayo Vallecano 4-2-3-1 1 #> 1061 2 0 Rayo Vallecano 4-2-3-1 1 #> 1062 2 0 Rayo Vallecano 4-2-3-1 1 #> 1063 2 0 Rayo Vallecano 4-2-3-1 1 #> 1064 2 0 Rayo Vallecano 4-2-3-1 1 #> 1065 2 0 Rayo Vallecano 4-2-3-1 1 #> 1066 2 0 Rayo Vallecano 4-2-3-1 1 #> 1067 2 0 Rayo Vallecano 4-2-3-1 1 #> 1068 2 0 Rayo Vallecano 4-2-3-1 1 #> 1069 2 0 Rayo Vallecano 4-2-3-1 1 #> 1070 2 0 Rayo Vallecano 4-2-3-1 1 #> 1071 2 0 Rayo Vallecano 4-2-3-1 1 #> 1072 2 0 Rayo Vallecano 4-2-3-1 1 #> 1073 2 0 Rayo Vallecano 4-2-3-1 1 #> 1074 2 0 Rayo Vallecano 4-2-3-1 1 #> 1075 2 0 Rayo Vallecano 4-2-3-1 1 #> 1076 2 0 Rayo Vallecano 4-2-3-1 1 #> 1077 2 0 Rayo Vallecano 4-2-3-1 1 #> 1078 2 0 Rayo Vallecano 4-2-3-1 1 #> 1079 2 0 Rayo Vallecano 4-2-3-1 1 #> 1080 2 0 Rayo Vallecano 4-2-3-1 1 #> 1081 2 0 Rayo Vallecano 4-2-3-1 1 #> 1082 2 0 Rayo Vallecano 4-2-3-1 1 #> 1083 2 0 Rayo Vallecano 4-2-3-1 1 #> 1084 2 0 Rayo Vallecano 4-2-3-1 1 #> 1085 2 0 Rayo Vallecano 4-2-3-1 1 #> 1086 2 0 Rayo Vallecano 4-2-3-1 1 #> 1087 2 0 Rayo Vallecano 4-2-3-1 1 #> 1088 2 0 Rayo Vallecano 4-2-3-1 1 #> 1089 2 0 Rayo Vallecano 4-2-3-1 1 #> 1090 2 0 Rayo Vallecano 4-2-3-1 1 #> 1091 3 0 Espanyol 4-3-3 1 #> 1092 3 0 Espanyol 4-3-3 1 #> 1093 3 0 Espanyol 4-3-3 1 #> 1094 3 0 Espanyol 4-3-3 1 #> 1095 3 0 Espanyol 4-3-3 1 #> 1096 3 0 Espanyol 4-3-3 1 #> 1097 3 0 Espanyol 4-3-3 1 #> 1098 3 0 Espanyol 4-3-3 1 #> 1099 3 0 Espanyol 4-3-3 1 #> 1100 3 0 Espanyol 4-3-3 1 #> 1101 3 0 Espanyol 4-3-3 1 #> 1102 3 0 Espanyol 4-3-3 1 #> 1103 3 0 Espanyol 4-3-3 1 #> 1104 3 0 Espanyol 4-3-3 1 #> 1105 3 0 Espanyol 4-3-3 1 #> 1106 3 0 Espanyol 4-3-3 1 #> 1107 3 0 Espanyol 4-3-3 1 #> 1108 3 0 Espanyol 4-3-3 1 #> 1109 3 0 Espanyol 4-3-3 1 #> 1110 3 0 Espanyol 4-3-3 1 #> 1111 3 0 Espanyol 4-3-3 1 #> 1112 3 0 Espanyol 4-3-3 1 #> 1113 3 0 Espanyol 4-3-3 1 #> 1114 3 0 Espanyol 4-3-3 1 #> 1115 3 0 Espanyol 4-3-3 1 #> 1116 3 0 Espanyol 4-3-3 1 #> 1117 3 0 Espanyol 4-3-3 1 #> 1118 3 0 Espanyol 4-3-3 1 #> 1119 3 0 Espanyol 4-3-3 1 #> 1120 3 0 Espanyol 4-3-3 1 #> 1121 3 0 Espanyol 4-3-3 1 #> 1122 1 0 Elche 4-4-2 0 #> 1123 1 0 Elche 4-4-2 0 #> 1124 1 0 Elche 4-4-2 0 #> 1125 1 0 Elche 4-4-2 0 #> 1126 1 0 Elche 4-4-2 0 #> 1127 1 0 Elche 4-4-2 0 #> 1128 1 0 Elche 4-4-2 0 #> 1129 1 0 Elche 4-4-2 0 #> 1130 1 0 Elche 4-4-2 0 #> 1131 1 0 Elche 4-4-2 0 #> 1132 1 0 Elche 4-4-2 0 #> 1133 1 0 Elche 4-4-2 0 #> 1134 1 0 Elche 4-4-2 0 #> 1135 1 0 Elche 4-4-2 0 #> 1136 1 0 Elche 4-4-2 0 #> 1137 1 0 Elche 4-4-2 0 #> 1138 1 0 Elche 4-4-2 0 #> 1139 1 0 Elche 4-4-2 0 #> 1140 1 0 Elche 4-4-2 0 #> 1141 1 0 Elche 4-4-2 0 #> 1142 1 0 Elche 4-4-2 0 #> 1143 1 0 Elche 4-4-2 0 #> 1144 1 0 Elche 4-4-2 0 #> 1145 1 0 Elche 4-4-2 0 #> 1146 1 0 Elche 4-4-2 0 #> 1147 1 0 Elche 4-4-2 0 #> 1148 1 0 Elche 4-4-2 0 #> 1149 1 0 Elche 4-4-2 0 #> 1150 1 0 Elche 4-4-2 0 #> 1151 1 0 Elche 4-4-2 0 #> 1152 1 0 Elche 4-4-2 0 #> 1153 1 0 Elche 4-4-2 0 #> 1154 4 1 Getafe 4-4-2 1 #> 1155 4 1 Getafe 4-4-2 1 #> 1156 4 1 Getafe 4-4-2 1 #> 1157 4 1 Getafe 4-4-2 1 #> 1158 4 1 Getafe 4-4-2 1 #> 1159 4 1 Getafe 4-4-2 1 #> 1160 4 1 Getafe 4-4-2 1 #> 1161 4 1 Getafe 4-4-2 1 #> 1162 4 1 Getafe 4-4-2 1 #> 1163 4 1 Getafe 4-4-2 1 #> 1164 4 1 Getafe 4-4-2 1 #> 1165 4 1 Getafe 4-4-2 1 #> 1166 4 1 Getafe 4-4-2 1 #> 1167 4 1 Getafe 4-4-2 1 #> 1168 4 1 Getafe 4-4-2 1 #> 1169 4 1 Getafe 4-4-2 1 #> 1170 4 1 Getafe 4-4-2 1 #> 1171 4 1 Getafe 4-4-2 1 #> 1172 4 1 Getafe 4-4-2 1 #> 1173 4 1 Getafe 4-4-2 1 #> 1174 4 1 Getafe 4-4-2 1 #> 1175 4 1 Getafe 4-4-2 1 #> 1176 4 1 Getafe 4-4-2 1 #> 1177 4 1 Getafe 4-4-2 1 #> 1178 4 1 Getafe 4-4-2 1 #> 1179 4 1 Getafe 4-4-2 1 #> 1180 4 1 Getafe 4-4-2 1 #> 1181 4 1 Getafe 4-4-2 1 #> 1182 4 1 Getafe 4-4-2 1 #> 1183 4 1 Getafe 4-4-2 1 #> 1184 4 1 Getafe 4-4-2 1 #> 1185 4 1 Getafe 4-4-2 1 #> 1186 1 0 Almería 4-2-3-1 0 #> 1187 1 0 Almería 4-2-3-1 0 #> 1188 1 0 Almería 4-2-3-1 0 #> 1189 1 0 Almería 4-2-3-1 0 #> 1190 1 0 Almería 4-2-3-1 0 #> 1191 1 0 Almería 4-2-3-1 0 #> 1192 1 0 Almería 4-2-3-1 0 #> 1193 1 0 Almería 4-2-3-1 0 #> 1194 1 0 Almería 4-2-3-1 0 #> 1195 1 0 Almería 4-2-3-1 0 #> 1196 1 0 Almería 4-2-3-1 0 #> 1197 1 0 Almería 4-2-3-1 0 #> 1198 1 0 Almería 4-2-3-1 0 #> 1199 1 0 Almería 4-2-3-1 0 #> 1200 1 0 Almería 4-2-3-1 0 #> 1201 1 0 Almería 4-2-3-1 0 #> 1202 1 0 Almería 4-2-3-1 0 #> 1203 1 0 Almería 4-2-3-1 0 #> 1204 1 0 Almería 4-2-3-1 0 #> 1205 1 0 Almería 4-2-3-1 0 #> 1206 1 0 Almería 4-2-3-1 0 #> 1207 1 0 Almería 4-2-3-1 0 #> 1208 1 0 Almería 4-2-3-1 0 #> 1209 1 0 Almería 4-2-3-1 0 #> 1210 1 0 Almería 4-2-3-1 0 #> 1211 1 0 Almería 4-2-3-1 0 #> 1212 1 0 Almería 4-2-3-1 0 #> 1213 1 0 Almería 4-2-3-1 0 #> 1214 1 0 Almería 4-2-3-1 0 #> 1215 1 0 Almería 4-2-3-1 0 #> 1216 1 0 Almería 4-2-3-1 0 #> 1217 0 0 Valladolid 4-1-4-1 1 #> 1218 0 0 Valladolid 4-1-4-1 1 #> 1219 0 0 Valladolid 4-1-4-1 1 #> 1220 0 0 Valladolid 4-1-4-1 1 #> 1221 0 0 Valladolid 4-1-4-1 1 #> 1222 0 0 Valladolid 4-1-4-1 1 #> 1223 0 0 Valladolid 4-1-4-1 1 #> 1224 0 0 Valladolid 4-1-4-1 1 #> 1225 0 0 Valladolid 4-1-4-1 1 #> 1226 0 0 Valladolid 4-1-4-1 1 #> 1227 0 0 Valladolid 4-1-4-1 1 #> 1228 0 0 Valladolid 4-1-4-1 1 #> 1229 0 0 Valladolid 4-1-4-1 1 #> 1230 0 0 Valladolid 4-1-4-1 1 #> 1231 0 0 Valladolid 4-1-4-1 1 #> 1232 0 0 Valladolid 4-1-4-1 1 #> 1233 0 0 Valladolid 4-1-4-1 1 #> 1234 0 0 Valladolid 4-1-4-1 1 #> 1235 0 0 Valladolid 4-1-4-1 1 #> 1236 0 0 Valladolid 4-1-4-1 1 #> 1237 0 0 Valladolid 4-1-4-1 1 #> 1238 0 0 Valladolid 4-1-4-1 1 #> 1239 0 0 Valladolid 4-1-4-1 1 #> 1240 0 0 Valladolid 4-1-4-1 1 #> 1241 0 0 Valladolid 4-1-4-1 1 #> 1242 0 0 Valladolid 4-1-4-1 1 #> 1243 0 0 Valladolid 4-1-4-1 1 #> 1244 0 0 Valladolid 4-1-4-1 1 #> 1245 0 0 Valladolid 4-1-4-1 1 #> 1246 0 0 Valladolid 4-1-4-1 1 #> 1247 0 0 Valladolid 4-1-4-1 1 #> 1248 0 0 Valladolid 4-1-4-1 1 #> 1249 5 0 Valencia 4-2-3-1 1 #> 1250 5 0 Valencia 4-2-3-1 1 #> 1251 5 0 Valencia 4-2-3-1 1 #> 1252 5 0 Valencia 4-2-3-1 1 #> 1253 5 0 Valencia 4-2-3-1 1 #> 1254 5 0 Valencia 4-2-3-1 1 #> 1255 5 0 Valencia 4-2-3-1 1 #> 1256 5 0 Valencia 4-2-3-1 1 #> 1257 5 0 Valencia 4-2-3-1 1 #> 1258 5 0 Valencia 4-2-3-1 1 #> 1259 5 0 Valencia 4-2-3-1 1 #> 1260 5 0 Valencia 4-2-3-1 1 #> 1261 5 0 Valencia 4-2-3-1 1 #> 1262 5 0 Valencia 4-2-3-1 1 #> 1263 5 0 Valencia 4-2-3-1 1 #> 1264 5 0 Valencia 4-2-3-1 1 #> 1265 5 0 Valencia 4-2-3-1 1 #> 1266 5 0 Valencia 4-2-3-1 1 #> 1267 5 0 Valencia 4-2-3-1 1 #> 1268 5 0 Valencia 4-2-3-1 1 #> 1269 5 0 Valencia 4-2-3-1 1 #> 1270 5 0 Valencia 4-2-3-1 1 #> 1271 5 0 Valencia 4-2-3-1 1 #> 1272 5 0 Valencia 4-2-3-1 1 #> 1273 5 0 Valencia 4-2-3-1 1 #> 1274 5 0 Valencia 4-2-3-1 1 #> 1275 5 0 Valencia 4-2-3-1 1 #> 1276 5 0 Valencia 4-2-3-1 1 #> 1277 5 0 Valencia 4-2-3-1 1 #> 1278 5 0 Valencia 4-2-3-1 1 #> 1279 5 0 Valencia 4-2-3-1 1 #> 1280 4 0 Sevilla 4-2-3-1 3 #> 1281 4 0 Sevilla 4-2-3-1 3 #> 1282 4 0 Sevilla 4-2-3-1 3 #> 1283 4 0 Sevilla 4-2-3-1 3 #> 1284 4 0 Sevilla 4-2-3-1 3 #> 1285 4 0 Sevilla 4-2-3-1 3 #> 1286 4 0 Sevilla 4-2-3-1 3 #> 1287 4 0 Sevilla 4-2-3-1 3 #> 1288 4 0 Sevilla 4-2-3-1 3 #> 1289 4 0 Sevilla 4-2-3-1 3 #> 1290 4 0 Sevilla 4-2-3-1 3 #> 1291 4 0 Sevilla 4-2-3-1 3 #> 1292 4 0 Sevilla 4-2-3-1 3 #> 1293 4 0 Sevilla 4-2-3-1 3 #> 1294 4 0 Sevilla 4-2-3-1 3 #> 1295 4 0 Sevilla 4-2-3-1 3 #> 1296 4 0 Sevilla 4-2-3-1 3 #> 1297 4 0 Sevilla 4-2-3-1 3 #> 1298 4 0 Sevilla 4-2-3-1 3 #> 1299 4 0 Sevilla 4-2-3-1 3 #> 1300 4 0 Sevilla 4-2-3-1 3 #> 1301 4 0 Sevilla 4-2-3-1 3 #> 1302 4 0 Sevilla 4-2-3-1 3 #> 1303 4 0 Sevilla 4-2-3-1 3 #> 1304 4 0 Sevilla 4-2-3-1 3 #> 1305 4 0 Sevilla 4-2-3-1 3 #> 1306 4 0 Sevilla 4-2-3-1 3 #> 1307 4 0 Sevilla 4-2-3-1 3 #> 1308 4 0 Sevilla 4-2-3-1 3 #> 1309 4 0 Sevilla 4-2-3-1 3 #> 1310 4 0 Sevilla 4-2-3-1 3 #> 1311 1 0 Barcelona 4-3-3 4 #> 1312 1 0 Barcelona 4-3-3 4 #> 1313 1 0 Barcelona 4-3-3 4 #> 1314 1 0 Barcelona 4-3-3 4 #> 1315 1 0 Barcelona 4-3-3 4 #> 1316 1 0 Barcelona 4-3-3 4 #> 1317 1 0 Barcelona 4-3-3 4 #> 1318 1 0 Barcelona 4-3-3 4 #> 1319 1 0 Barcelona 4-3-3 4 #> 1320 1 0 Barcelona 4-3-3 4 #> 1321 1 0 Barcelona 4-3-3 4 #> 1322 1 0 Barcelona 4-3-3 4 #> 1323 1 0 Barcelona 4-3-3 4 #> 1324 1 0 Barcelona 4-3-3 4 #> 1325 1 0 Barcelona 4-3-3 4 #> 1326 1 0 Barcelona 4-3-3 4 #> 1327 1 0 Barcelona 4-3-3 4 #> 1328 1 0 Barcelona 4-3-3 4 #> 1329 1 0 Barcelona 4-3-3 4 #> 1330 1 0 Barcelona 4-3-3 4 #> 1331 1 0 Barcelona 4-3-3 4 #> 1332 1 0 Barcelona 4-3-3 4 #> 1333 1 0 Barcelona 4-3-3 4 #> 1334 1 0 Barcelona 4-3-3 4 #> 1335 1 0 Barcelona 4-3-3 4 #> 1336 1 0 Barcelona 4-3-3 4 #> 1337 1 0 Barcelona 4-3-3 4 #> 1338 1 0 Barcelona 4-3-3 4 #> 1339 1 0 Barcelona 4-3-3 4 #> 1340 1 0 Barcelona 4-3-3 4 #> 1341 1 0 Barcelona 4-3-3 4 #> 1342 1 0 Barcelona 4-3-3 4 #> 1343 2 0 Celta Vigo 4-1-3-2 1 #> 1344 2 0 Celta Vigo 4-1-3-2 1 #> 1345 2 0 Celta Vigo 4-1-3-2 1 #> 1346 2 0 Celta Vigo 4-1-3-2 1 #> 1347 2 0 Celta Vigo 4-1-3-2 1 #> 1348 2 0 Celta Vigo 4-1-3-2 1 #> 1349 2 0 Celta Vigo 4-1-3-2 1 #> 1350 2 0 Celta Vigo 4-1-3-2 1 #> 1351 2 0 Celta Vigo 4-1-3-2 1 #> 1352 2 0 Celta Vigo 4-1-3-2 1 #> 1353 2 0 Celta Vigo 4-1-3-2 1 #> 1354 2 0 Celta Vigo 4-1-3-2 1 #> 1355 2 0 Celta Vigo 4-1-3-2 1 #> 1356 2 0 Celta Vigo 4-1-3-2 1 #> 1357 2 0 Celta Vigo 4-1-3-2 1 #> 1358 2 0 Celta Vigo 4-1-3-2 1 #> 1359 2 0 Celta Vigo 4-1-3-2 1 #> 1360 2 0 Celta Vigo 4-1-3-2 1 #> 1361 2 0 Celta Vigo 4-1-3-2 1 #> 1362 2 0 Celta Vigo 4-1-3-2 1 #> 1363 2 0 Celta Vigo 4-1-3-2 1 #> 1364 2 0 Celta Vigo 4-1-3-2 1 #> 1365 2 0 Celta Vigo 4-1-3-2 1 #> 1366 2 0 Celta Vigo 4-1-3-2 1 #> 1367 2 0 Celta Vigo 4-1-3-2 1 #> 1368 2 0 Celta Vigo 4-1-3-2 1 #> 1369 2 0 Celta Vigo 4-1-3-2 1 #> 1370 2 0 Celta Vigo 4-1-3-2 1 #> 1371 2 0 Celta Vigo 4-1-3-2 1 #> 1372 3 0 Mallorca 5-3-2 1 #> 1373 3 0 Mallorca 5-3-2 1 #> 1374 3 0 Mallorca 5-3-2 1 #> 1375 3 0 Mallorca 5-3-2 1 #> 1376 3 0 Mallorca 5-3-2 1 #> 1377 3 0 Mallorca 5-3-2 1 #> 1378 3 0 Mallorca 5-3-2 1 #> 1379 3 0 Mallorca 5-3-2 1 #> 1380 3 0 Mallorca 5-3-2 1 #> 1381 3 0 Mallorca 5-3-2 1 #> 1382 3 0 Mallorca 5-3-2 1 #> 1383 3 0 Mallorca 5-3-2 1 #> 1384 3 0 Mallorca 5-3-2 1 #> 1385 3 0 Mallorca 5-3-2 1 #> 1386 3 0 Mallorca 5-3-2 1 #> 1387 3 0 Mallorca 5-3-2 1 #> 1388 3 0 Mallorca 5-3-2 1 #> 1389 3 0 Mallorca 5-3-2 1 #> 1390 3 0 Mallorca 5-3-2 1 #> 1391 3 0 Mallorca 5-3-2 1 #> 1392 3 0 Mallorca 5-3-2 1 #> 1393 3 0 Mallorca 5-3-2 1 #> 1394 3 0 Mallorca 5-3-2 1 #> 1395 3 0 Mallorca 5-3-2 1 #> 1396 3 0 Mallorca 5-3-2 1 #> 1397 3 0 Mallorca 5-3-2 1 #> 1398 3 0 Mallorca 5-3-2 1 #> 1399 3 0 Mallorca 5-3-2 1 #> 1400 3 0 Mallorca 5-3-2 1 #> 1401 3 0 Mallorca 5-3-2 1 #> 1402 3 0 Mallorca 5-3-2 1 #> 1403 3 0 Athletic Club 4-2-3-1 4 #> 1404 3 0 Athletic Club 4-2-3-1 4 #> 1405 3 0 Athletic Club 4-2-3-1 4 #> 1406 3 0 Athletic Club 4-2-3-1 4 #> 1407 3 0 Athletic Club 4-2-3-1 4 #> 1408 3 0 Athletic Club 4-2-3-1 4 #> 1409 3 0 Athletic Club 4-2-3-1 4 #> 1410 3 0 Athletic Club 4-2-3-1 4 #> 1411 3 0 Athletic Club 4-2-3-1 4 #> 1412 3 0 Athletic Club 4-2-3-1 4 #> 1413 3 0 Athletic Club 4-2-3-1 4 #> 1414 3 0 Athletic Club 4-2-3-1 4 #> 1415 3 0 Athletic Club 4-2-3-1 4 #> 1416 3 0 Athletic Club 4-2-3-1 4 #> 1417 3 0 Athletic Club 4-2-3-1 4 #> 1418 3 0 Athletic Club 4-2-3-1 4 #> 1419 3 0 Athletic Club 4-2-3-1 4 #> 1420 3 0 Athletic Club 4-2-3-1 4 #> 1421 3 0 Athletic Club 4-2-3-1 4 #> 1422 3 0 Athletic Club 4-2-3-1 4 #> 1423 3 0 Athletic Club 4-2-3-1 4 #> 1424 3 0 Athletic Club 4-2-3-1 4 #> 1425 3 0 Athletic Club 4-2-3-1 4 #> 1426 3 0 Athletic Club 4-2-3-1 4 #> 1427 3 0 Athletic Club 4-2-3-1 4 #> 1428 3 0 Athletic Club 4-2-3-1 4 #> 1429 3 0 Athletic Club 4-2-3-1 4 #> 1430 3 0 Athletic Club 4-2-3-1 4 #> 1431 3 0 Athletic Club 4-2-3-1 4 #> 1432 3 0 Athletic Club 4-2-3-1 4 #> 1433 3 0 Athletic Club 4-2-3-1 4 #> 1434 3 0 Athletic Club 4-2-3-1 4 #> 1435 4 0 Real Sociedad 4-1-2-1-2 1 #> 1436 4 0 Real Sociedad 4-1-2-1-2 1 #> 1437 4 0 Real Sociedad 4-1-2-1-2 1 #> 1438 4 0 Real Sociedad 4-1-2-1-2 1 #> 1439 4 0 Real Sociedad 4-1-2-1-2 1 #> 1440 4 0 Real Sociedad 4-1-2-1-2 1 #> 1441 4 0 Real Sociedad 4-1-2-1-2 1 #> 1442 4 0 Real Sociedad 4-1-2-1-2 1 #> 1443 4 0 Real Sociedad 4-1-2-1-2 1 #> 1444 4 0 Real Sociedad 4-1-2-1-2 1 #> 1445 4 0 Real Sociedad 4-1-2-1-2 1 #> 1446 4 0 Real Sociedad 4-1-2-1-2 1 #> 1447 4 0 Real Sociedad 4-1-2-1-2 1 #> 1448 4 0 Real Sociedad 4-1-2-1-2 1 #> 1449 4 0 Real Sociedad 4-1-2-1-2 1 #> 1450 4 0 Real Sociedad 4-1-2-1-2 1 #> 1451 4 0 Real Sociedad 4-1-2-1-2 1 #> 1452 4 0 Real Sociedad 4-1-2-1-2 1 #> 1453 4 0 Real Sociedad 4-1-2-1-2 1 #> 1454 4 0 Real Sociedad 4-1-2-1-2 1 #> 1455 4 0 Real Sociedad 4-1-2-1-2 1 #> 1456 4 0 Real Sociedad 4-1-2-1-2 1 #> 1457 4 0 Real Sociedad 4-1-2-1-2 1 #> 1458 4 0 Real Sociedad 4-1-2-1-2 1 #> 1459 4 0 Real Sociedad 4-1-2-1-2 1 #> 1460 4 0 Real Sociedad 4-1-2-1-2 1 #> 1461 4 0 Real Sociedad 4-1-2-1-2 1 #> 1462 4 0 Real Sociedad 4-1-2-1-2 1 #> 1463 4 0 Real Sociedad 4-1-2-1-2 1 #> 1464 4 0 Real Sociedad 4-1-2-1-2 1 #> 1465 4 0 Real Sociedad 4-1-2-1-2 1 #> 1466 1 0 Villarreal 4-4-2 0 #> 1467 1 0 Villarreal 4-4-2 0 #> 1468 1 0 Villarreal 4-4-2 0 #> 1469 1 0 Villarreal 4-4-2 0 #> 1470 1 0 Villarreal 4-4-2 0 #> 1471 1 0 Villarreal 4-4-2 0 #> 1472 1 0 Villarreal 4-4-2 0 #> 1473 1 0 Villarreal 4-4-2 0 #> 1474 1 0 Villarreal 4-4-2 0 #> 1475 1 0 Villarreal 4-4-2 0 #> 1476 1 0 Villarreal 4-4-2 0 #> 1477 1 0 Villarreal 4-4-2 0 #> 1478 1 0 Villarreal 4-4-2 0 #> 1479 1 0 Villarreal 4-4-2 0 #> 1480 1 0 Villarreal 4-4-2 0 #> 1481 1 0 Villarreal 4-4-2 0 #> 1482 1 0 Villarreal 4-4-2 0 #> 1483 1 0 Villarreal 4-4-2 0 #> 1484 1 0 Villarreal 4-4-2 0 #> 1485 1 0 Villarreal 4-4-2 0 #> 1486 1 0 Villarreal 4-4-2 0 #> 1487 1 0 Villarreal 4-4-2 0 #> 1488 1 0 Villarreal 4-4-2 0 #> 1489 1 0 Villarreal 4-4-2 0 #> 1490 1 0 Villarreal 4-4-2 0 #> 1491 1 0 Villarreal 4-4-2 0 #> 1492 1 0 Villarreal 4-4-2 0 #> 1493 1 0 Villarreal 4-4-2 0 #> 1494 1 0 Villarreal 4-4-2 0 #> 1495 1 0 Villarreal 4-4-2 0 #> 1496 0 0 Osasuna 4-2-3-1 1 #> 1497 0 0 Osasuna 4-2-3-1 1 #> 1498 0 0 Osasuna 4-2-3-1 1 #> 1499 0 0 Osasuna 4-2-3-1 1 #> 1500 0 0 Osasuna 4-2-3-1 1 #> 1501 0 0 Osasuna 4-2-3-1 1 #> 1502 0 0 Osasuna 4-2-3-1 1 #> 1503 0 0 Osasuna 4-2-3-1 1 #> 1504 0 0 Osasuna 4-2-3-1 1 #> 1505 0 0 Osasuna 4-2-3-1 1 #> 1506 0 0 Osasuna 4-2-3-1 1 #> 1507 0 0 Osasuna 4-2-3-1 1 #> 1508 0 0 Osasuna 4-2-3-1 1 #> 1509 0 0 Osasuna 4-2-3-1 1 #> 1510 0 0 Osasuna 4-2-3-1 1 #> 1511 0 0 Osasuna 4-2-3-1 1 #> 1512 0 0 Osasuna 4-2-3-1 1 #> 1513 0 0 Osasuna 4-2-3-1 1 #> 1514 0 0 Osasuna 4-2-3-1 1 #> 1515 0 0 Osasuna 4-2-3-1 1 #> 1516 0 0 Osasuna 4-2-3-1 1 #> 1517 0 0 Osasuna 4-2-3-1 1 #> 1518 0 0 Osasuna 4-2-3-1 1 #> 1519 0 0 Osasuna 4-2-3-1 1 #> 1520 0 0 Osasuna 4-2-3-1 1 #> 1521 0 0 Osasuna 4-2-3-1 1 #> 1522 0 0 Osasuna 4-2-3-1 1 #> 1523 0 0 Osasuna 4-2-3-1 1 #> 1524 0 0 Osasuna 4-2-3-1 1 #> 1525 0 0 Osasuna 4-2-3-1 1 #> 1526 0 0 Osasuna 4-2-3-1 1 #> 1527 0 0 Osasuna 4-2-3-1 1 #> 1528 1 0 Cádiz 4-2-3-1 1 #> 1529 1 0 Cádiz 4-2-3-1 1 #> 1530 1 0 Cádiz 4-2-3-1 1 #> 1531 1 0 Cádiz 4-2-3-1 1 #> 1532 1 0 Cádiz 4-2-3-1 1 #> 1533 1 0 Cádiz 4-2-3-1 1 #> 1534 1 0 Cádiz 4-2-3-1 1 #> 1535 1 0 Cádiz 4-2-3-1 1 #> 1536 1 0 Cádiz 4-2-3-1 1 #> 1537 1 0 Cádiz 4-2-3-1 1 #> 1538 1 0 Cádiz 4-2-3-1 1 #> 1539 1 0 Cádiz 4-2-3-1 1 #> 1540 1 0 Cádiz 4-2-3-1 1 #> 1541 1 0 Cádiz 4-2-3-1 1 #> 1542 1 0 Cádiz 4-2-3-1 1 #> 1543 1 0 Cádiz 4-2-3-1 1 #> 1544 1 0 Cádiz 4-2-3-1 1 #> 1545 1 0 Cádiz 4-2-3-1 1 #> 1546 1 0 Cádiz 4-2-3-1 1 #> 1547 1 0 Cádiz 4-2-3-1 1 #> 1548 1 0 Cádiz 4-2-3-1 1 #> 1549 1 0 Cádiz 4-2-3-1 1 #> 1550 1 0 Cádiz 4-2-3-1 1 #> 1551 1 0 Cádiz 4-2-3-1 1 #> 1552 1 0 Cádiz 4-2-3-1 1 #> 1553 1 0 Cádiz 4-2-3-1 1 #> 1554 1 0 Cádiz 4-2-3-1 1 #> 1555 1 0 Cádiz 4-2-3-1 1 #> 1556 1 0 Cádiz 4-2-3-1 1 #> 1557 1 0 Cádiz 4-2-3-1 1 #> 1558 1 0 Cádiz 4-2-3-1 1 #> 1559 1 0 Cádiz 4-2-3-1 1 #> 1560 3 0 Almería 5-3-2 0 #> 1561 3 0 Almería 5-3-2 0 #> 1562 3 0 Almería 5-3-2 0 #> 1563 3 0 Almería 5-3-2 0 #> 1564 3 0 Almería 5-3-2 0 #> 1565 3 0 Almería 5-3-2 0 #> 1566 3 0 Almería 5-3-2 0 #> 1567 3 0 Almería 5-3-2 0 #> 1568 3 0 Almería 5-3-2 0 #> 1569 3 0 Almería 5-3-2 0 #> 1570 3 0 Almería 5-3-2 0 #> 1571 3 0 Almería 5-3-2 0 #> 1572 3 0 Almería 5-3-2 0 #> 1573 3 0 Almería 5-3-2 0 #> 1574 3 0 Almería 5-3-2 0 #> 1575 3 0 Almería 5-3-2 0 #> 1576 3 0 Almería 5-3-2 0 #> 1577 3 0 Almería 5-3-2 0 #> 1578 3 0 Almería 5-3-2 0 #> 1579 3 0 Almería 5-3-2 0 #> 1580 3 0 Almería 5-3-2 0 #> 1581 3 0 Almería 5-3-2 0 #> 1582 3 0 Almería 5-3-2 0 #> 1583 3 0 Almería 5-3-2 0 #> 1584 3 0 Almería 5-3-2 0 #> 1585 3 0 Almería 5-3-2 0 #> 1586 3 0 Almería 5-3-2 0 #> 1587 3 0 Almería 5-3-2 0 #> 1588 3 0 Almería 5-3-2 0 #> 1589 3 0 Almería 5-3-2 0 #> 1590 3 0 Almería 5-3-2 0 #> 1591 2 0 Elche 5-4-1 0 #> 1592 2 0 Elche 5-4-1 0 #> 1593 2 0 Elche 5-4-1 0 #> 1594 2 0 Elche 5-4-1 0 #> 1595 2 0 Elche 5-4-1 0 #> 1596 2 0 Elche 5-4-1 0 #> 1597 2 0 Elche 5-4-1 0 #> 1598 2 0 Elche 5-4-1 0 #> 1599 2 0 Elche 5-4-1 0 #> 1600 2 0 Elche 5-4-1 0 #> 1601 2 0 Elche 5-4-1 0 #> 1602 2 0 Elche 5-4-1 0 #> 1603 2 0 Elche 5-4-1 0 #> 1604 2 0 Elche 5-4-1 0 #> 1605 2 0 Elche 5-4-1 0 #> 1606 2 0 Elche 5-4-1 0 #> 1607 2 0 Elche 5-4-1 0 #> 1608 2 0 Elche 5-4-1 0 #> 1609 2 0 Elche 5-4-1 0 #> 1610 2 0 Elche 5-4-1 0 #> 1611 2 0 Elche 5-4-1 0 #> 1612 2 0 Elche 5-4-1 0 #> 1613 2 0 Elche 5-4-1 0 #> 1614 2 0 Elche 5-4-1 0 #> 1615 2 0 Elche 5-4-1 0 #> 1616 2 0 Elche 5-4-1 0 #> 1617 2 0 Elche 5-4-1 0 #> 1618 2 0 Elche 5-4-1 0 #> 1619 2 0 Elche 5-4-1 0 #> 1620 2 0 Elche 5-4-1 0 #> 1621 2 0 Elche 5-4-1 0 #> 1622 2 0 Elche 5-4-1 0 #> 1623 3 0 Celta Vigo 4-1-3-2 0 #> 1624 3 0 Celta Vigo 4-1-3-2 0 #> 1625 3 0 Celta Vigo 4-1-3-2 0 #> 1626 3 0 Celta Vigo 4-1-3-2 0 #> 1627 3 0 Celta Vigo 4-1-3-2 0 #> 1628 3 0 Celta Vigo 4-1-3-2 0 #> 1629 3 0 Celta Vigo 4-1-3-2 0 #> 1630 3 0 Celta Vigo 4-1-3-2 0 #> 1631 3 0 Celta Vigo 4-1-3-2 0 #> 1632 3 0 Celta Vigo 4-1-3-2 0 #> 1633 3 0 Celta Vigo 4-1-3-2 0 #> 1634 3 0 Celta Vigo 4-1-3-2 0 #> 1635 3 0 Celta Vigo 4-1-3-2 0 #> 1636 3 0 Celta Vigo 4-1-3-2 0 #> 1637 3 0 Celta Vigo 4-1-3-2 0 #> 1638 3 0 Celta Vigo 4-1-3-2 0 #> 1639 3 0 Celta Vigo 4-1-3-2 0 #> 1640 3 0 Celta Vigo 4-1-3-2 0 #> 1641 3 0 Celta Vigo 4-1-3-2 0 #> 1642 3 0 Celta Vigo 4-1-3-2 0 #> 1643 3 0 Celta Vigo 4-1-3-2 0 #> 1644 3 0 Celta Vigo 4-1-3-2 0 #> 1645 3 0 Celta Vigo 4-1-3-2 0 #> 1646 3 0 Celta Vigo 4-1-3-2 0 #> 1647 3 0 Celta Vigo 4-1-3-2 0 #> 1648 3 0 Celta Vigo 4-1-3-2 0 #> 1649 3 0 Celta Vigo 4-1-3-2 0 #> 1650 3 0 Celta Vigo 4-1-3-2 0 #> 1651 3 0 Celta Vigo 4-1-3-2 0 #> 1652 3 0 Celta Vigo 4-1-3-2 0 #> 1653 1 0 Rayo Vallecano 4-2-3-1 2 #> 1654 1 0 Rayo Vallecano 4-2-3-1 2 #> 1655 1 0 Rayo Vallecano 4-2-3-1 2 #> 1656 1 0 Rayo Vallecano 4-2-3-1 2 #> 1657 1 0 Rayo Vallecano 4-2-3-1 2 #> 1658 1 0 Rayo Vallecano 4-2-3-1 2 #> 1659 1 0 Rayo Vallecano 4-2-3-1 2 #> 1660 1 0 Rayo Vallecano 4-2-3-1 2 #> 1661 1 0 Rayo Vallecano 4-2-3-1 2 #> 1662 1 0 Rayo Vallecano 4-2-3-1 2 #> 1663 1 0 Rayo Vallecano 4-2-3-1 2 #> 1664 1 0 Rayo Vallecano 4-2-3-1 2 #> 1665 1 0 Rayo Vallecano 4-2-3-1 2 #> 1666 1 0 Rayo Vallecano 4-2-3-1 2 #> 1667 1 0 Rayo Vallecano 4-2-3-1 2 #> 1668 1 0 Rayo Vallecano 4-2-3-1 2 #> 1669 1 0 Rayo Vallecano 4-2-3-1 2 #> 1670 1 0 Rayo Vallecano 4-2-3-1 2 #> 1671 1 0 Rayo Vallecano 4-2-3-1 2 #> 1672 1 0 Rayo Vallecano 4-2-3-1 2 #> 1673 1 0 Rayo Vallecano 4-2-3-1 2 #> 1674 1 0 Rayo Vallecano 4-2-3-1 2 #> 1675 1 0 Rayo Vallecano 4-2-3-1 2 #> 1676 1 0 Rayo Vallecano 4-2-3-1 2 #> 1677 1 0 Rayo Vallecano 4-2-3-1 2 #> 1678 1 0 Rayo Vallecano 4-2-3-1 2 #> 1679 1 0 Rayo Vallecano 4-2-3-1 2 #> 1680 1 0 Rayo Vallecano 4-2-3-1 2 #> 1681 1 0 Rayo Vallecano 4-2-3-1 2 #> 1682 1 0 Rayo Vallecano 4-2-3-1 2 #> 1683 1 0 Rayo Vallecano 4-2-3-1 2 #> 1684 1 0 Rayo Vallecano 4-2-3-1 2 #> 1685 7 1 Getafe 5-3-2 2 #> 1686 7 1 Getafe 5-3-2 2 #> 1687 7 1 Getafe 5-3-2 2 #> 1688 7 1 Getafe 5-3-2 2 #> 1689 7 1 Getafe 5-3-2 2 #> 1690 7 1 Getafe 5-3-2 2 #> 1691 7 1 Getafe 5-3-2 2 #> 1692 7 1 Getafe 5-3-2 2 #> 1693 7 1 Getafe 5-3-2 2 #> 1694 7 1 Getafe 5-3-2 2 #> 1695 7 1 Getafe 5-3-2 2 #> 1696 7 1 Getafe 5-3-2 2 #> 1697 7 1 Getafe 5-3-2 2 #> 1698 7 1 Getafe 5-3-2 2 #> 1699 7 1 Getafe 5-3-2 2 #> 1700 7 1 Getafe 5-3-2 2 #> 1701 7 1 Getafe 5-3-2 2 #> 1702 7 1 Getafe 5-3-2 2 #> 1703 7 1 Getafe 5-3-2 2 #> 1704 7 1 Getafe 5-3-2 2 #> 1705 7 1 Getafe 5-3-2 2 #> 1706 7 1 Getafe 5-3-2 2 #> 1707 7 1 Getafe 5-3-2 2 #> 1708 7 1 Getafe 5-3-2 2 #> 1709 7 1 Getafe 5-3-2 2 #> 1710 7 1 Getafe 5-3-2 2 #> 1711 7 1 Getafe 5-3-2 2 #> 1712 7 1 Getafe 5-3-2 2 #> 1713 7 1 Getafe 5-3-2 2 #> 1714 7 1 Getafe 5-3-2 2 #> 1715 7 1 Getafe 5-3-2 2 #> 1716 7 1 Getafe 5-3-2 2 #> 1717 1 0 Sevilla 4-2-3-1 1 #> 1718 1 0 Sevilla 4-2-3-1 1 #> 1719 1 0 Sevilla 4-2-3-1 1 #> 1720 1 0 Sevilla 4-2-3-1 1 #> 1721 1 0 Sevilla 4-2-3-1 1 #> 1722 1 0 Sevilla 4-2-3-1 1 #> 1723 1 0 Sevilla 4-2-3-1 1 #> 1724 1 0 Sevilla 4-2-3-1 1 #> 1725 1 0 Sevilla 4-2-3-1 1 #> 1726 1 0 Sevilla 4-2-3-1 1 #> 1727 1 0 Sevilla 4-2-3-1 1 #> 1728 1 0 Sevilla 4-2-3-1 1 #> 1729 1 0 Sevilla 4-2-3-1 1 #> 1730 1 0 Sevilla 4-2-3-1 1 #> 1731 1 0 Sevilla 4-2-3-1 1 #> 1732 1 0 Sevilla 4-2-3-1 1 #> 1733 1 0 Sevilla 4-2-3-1 1 #> 1734 1 0 Sevilla 4-2-3-1 1 #> 1735 1 0 Sevilla 4-2-3-1 1 #> 1736 1 0 Sevilla 4-2-3-1 1 #> 1737 1 0 Sevilla 4-2-3-1 1 #> 1738 1 0 Sevilla 4-2-3-1 1 #> 1739 1 0 Sevilla 4-2-3-1 1 #> 1740 1 0 Sevilla 4-2-3-1 1 #> 1741 1 0 Sevilla 4-2-3-1 1 #> 1742 1 0 Sevilla 4-2-3-1 1 #> 1743 1 0 Sevilla 4-2-3-1 1 #> 1744 1 0 Sevilla 4-2-3-1 1 #> 1745 1 0 Sevilla 4-2-3-1 1 #> 1746 1 0 Sevilla 4-2-3-1 1 #> 1747 1 0 Sevilla 4-2-3-1 1 #> 1748 1 0 Sevilla 4-2-3-1 1 #> 1749 0 0 Girona 3-4-3 1 #> 1750 0 0 Girona 3-4-3 1 #> 1751 0 0 Girona 3-4-3 1 #> 1752 0 0 Girona 3-4-3 1 #> 1753 0 0 Girona 3-4-3 1 #> 1754 0 0 Girona 3-4-3 1 #> 1755 0 0 Girona 3-4-3 1 #> 1756 0 0 Girona 3-4-3 1 #> 1757 0 0 Girona 3-4-3 1 #> 1758 0 0 Girona 3-4-3 1 #> 1759 0 0 Girona 3-4-3 1 #> 1760 0 0 Girona 3-4-3 1 #> 1761 0 0 Girona 3-4-3 1 #> 1762 0 0 Girona 3-4-3 1 #> 1763 0 0 Girona 3-4-3 1 #> 1764 0 0 Girona 3-4-3 1 #> 1765 0 0 Girona 3-4-3 1 #> 1766 0 0 Girona 3-4-3 1 #> 1767 0 0 Girona 3-4-3 1 #> 1768 0 0 Girona 3-4-3 1 #> 1769 0 0 Girona 3-4-3 1 #> 1770 0 0 Girona 3-4-3 1 #> 1771 0 0 Girona 3-4-3 1 #> 1772 0 0 Girona 3-4-3 1 #> 1773 0 0 Girona 3-4-3 1 #> 1774 0 0 Girona 3-4-3 1 #> 1775 0 0 Girona 3-4-3 1 #> 1776 0 0 Girona 3-4-3 1 #> 1777 0 0 Girona 3-4-3 1 #> 1778 0 0 Girona 3-4-3 1 #> 1779 0 0 Girona 3-4-3 1 #> 1780 3 0 Espanyol 5-3-2 1 #> 1781 3 0 Espanyol 5-3-2 1 #> 1782 3 0 Espanyol 5-3-2 1 #> 1783 3 0 Espanyol 5-3-2 1 #> 1784 3 0 Espanyol 5-3-2 1 #> 1785 3 0 Espanyol 5-3-2 1 #> 1786 3 0 Espanyol 5-3-2 1 #> 1787 3 0 Espanyol 5-3-2 1 #> 1788 3 0 Espanyol 5-3-2 1 #> 1789 3 0 Espanyol 5-3-2 1 #> 1790 3 0 Espanyol 5-3-2 1 #> 1791 3 0 Espanyol 5-3-2 1 #> 1792 3 0 Espanyol 5-3-2 1 #> 1793 3 0 Espanyol 5-3-2 1 #> 1794 3 0 Espanyol 5-3-2 1 #> 1795 3 0 Espanyol 5-3-2 1 #> 1796 3 0 Espanyol 5-3-2 1 #> 1797 3 0 Espanyol 5-3-2 1 #> 1798 3 0 Espanyol 5-3-2 1 #> 1799 3 0 Espanyol 5-3-2 1 #> 1800 3 0 Espanyol 5-3-2 1 #> 1801 3 0 Espanyol 5-3-2 1 #> 1802 3 0 Espanyol 5-3-2 1 #> 1803 3 0 Espanyol 5-3-2 1 #> 1804 3 0 Espanyol 5-3-2 1 #> 1805 3 0 Espanyol 5-3-2 1 #> 1806 3 0 Espanyol 5-3-2 1 #> 1807 3 0 Espanyol 5-3-2 1 #> 1808 3 0 Espanyol 5-3-2 1 #> 1809 5 1 Real Madrid 4-3-3 2 #> 1810 5 1 Real Madrid 4-3-3 2 #> 1811 5 1 Real Madrid 4-3-3 2 #> 1812 5 1 Real Madrid 4-3-3 2 #> 1813 5 1 Real Madrid 4-3-3 2 #> 1814 5 1 Real Madrid 4-3-3 2 #> 1815 5 1 Real Madrid 4-3-3 2 #> 1816 5 1 Real Madrid 4-3-3 2 #> 1817 5 1 Real Madrid 4-3-3 2 #> 1818 5 1 Real Madrid 4-3-3 2 #> 1819 5 1 Real Madrid 4-3-3 2 #> 1820 5 1 Real Madrid 4-3-3 2 #> 1821 5 1 Real Madrid 4-3-3 2 #> 1822 5 1 Real Madrid 4-3-3 2 #> 1823 5 1 Real Madrid 4-3-3 2 #> 1824 5 1 Real Madrid 4-3-3 2 #> 1825 5 1 Real Madrid 4-3-3 2 #> 1826 5 1 Real Madrid 4-3-3 2 #> 1827 5 1 Real Madrid 4-3-3 2 #> 1828 5 1 Real Madrid 4-3-3 2 #> 1829 5 1 Real Madrid 4-3-3 2 #> 1830 5 1 Real Madrid 4-3-3 2 #> 1831 5 1 Real Madrid 4-3-3 2 #> 1832 5 1 Real Madrid 4-3-3 2 #> 1833 5 1 Real Madrid 4-3-3 2 #> 1834 5 1 Real Madrid 4-3-3 2 #> 1835 5 1 Real Madrid 4-3-3 2 #> 1836 5 1 Real Madrid 4-3-3 2 #> 1837 5 1 Real Madrid 4-3-3 2 #> 1838 5 1 Real Madrid 4-3-3 2 #> 1839 5 1 Real Madrid 4-3-3 2 #> 1840 1 0 Almería 5-3-2 0 #> 1841 1 0 Almería 5-3-2 0 #> 1842 1 0 Almería 5-3-2 0 #> 1843 1 0 Almería 5-3-2 0 #> 1844 1 0 Almería 5-3-2 0 #> 1845 1 0 Almería 5-3-2 0 #> 1846 1 0 Almería 5-3-2 0 #> 1847 1 0 Almería 5-3-2 0 #> 1848 1 0 Almería 5-3-2 0 #> 1849 1 0 Almería 5-3-2 0 #> 1850 1 0 Almería 5-3-2 0 #> 1851 1 0 Almería 5-3-2 0 #> 1852 1 0 Almería 5-3-2 0 #> 1853 1 0 Almería 5-3-2 0 #> 1854 1 0 Almería 5-3-2 0 #> 1855 1 0 Almería 5-3-2 0 #> 1856 1 0 Almería 5-3-2 0 #> 1857 1 0 Almería 5-3-2 0 #> 1858 1 0 Almería 5-3-2 0 #> 1859 1 0 Almería 5-3-2 0 #> 1860 1 0 Almería 5-3-2 0 #> 1861 1 0 Almería 5-3-2 0 #> 1862 1 0 Almería 5-3-2 0 #> 1863 1 0 Almería 5-3-2 0 #> 1864 1 0 Almería 5-3-2 0 #> 1865 1 0 Almería 5-3-2 0 #> 1866 1 0 Almería 5-3-2 0 #> 1867 1 0 Almería 5-3-2 0 #> 1868 1 0 Almería 5-3-2 0 #> 1869 1 0 Almería 5-3-2 0 #> 1870 1 0 Almería 5-3-2 0 #> 1871 1 0 Almería 5-3-2 0 #> 1872 2 1 Villarreal 4-4-2 0 #> 1873 2 1 Villarreal 4-4-2 0 #> 1874 2 1 Villarreal 4-4-2 0 #> 1875 2 1 Villarreal 4-4-2 0 #> 1876 2 1 Villarreal 4-4-2 0 #> 1877 2 1 Villarreal 4-4-2 0 #> 1878 2 1 Villarreal 4-4-2 0 #> 1879 2 1 Villarreal 4-4-2 0 #> 1880 2 1 Villarreal 4-4-2 0 #> 1881 2 1 Villarreal 4-4-2 0 #> 1882 2 1 Villarreal 4-4-2 0 #> 1883 2 1 Villarreal 4-4-2 0 #> 1884 2 1 Villarreal 4-4-2 0 #> 1885 2 1 Villarreal 4-4-2 0 #> 1886 2 1 Villarreal 4-4-2 0 #> 1887 2 1 Villarreal 4-4-2 0 #> 1888 2 1 Villarreal 4-4-2 0 #> 1889 2 1 Villarreal 4-4-2 0 #> 1890 2 1 Villarreal 4-4-2 0 #> 1891 2 1 Villarreal 4-4-2 0 #> 1892 2 1 Villarreal 4-4-2 0 #> 1893 2 1 Villarreal 4-4-2 0 #> 1894 2 1 Villarreal 4-4-2 0 #> 1895 2 1 Villarreal 4-4-2 0 #> 1896 2 1 Villarreal 4-4-2 0 #> 1897 2 1 Villarreal 4-4-2 0 #> 1898 2 1 Villarreal 4-4-2 0 #> 1899 2 1 Villarreal 4-4-2 0 #> 1900 2 1 Villarreal 4-4-2 0 #> 1901 2 1 Villarreal 4-4-2 0 #> 1902 2 0 Valladolid 4-3-3 3 #> 1903 2 0 Valladolid 4-3-3 3 #> 1904 2 0 Valladolid 4-3-3 3 #> 1905 2 0 Valladolid 4-3-3 3 #> 1906 2 0 Valladolid 4-3-3 3 #> 1907 2 0 Valladolid 4-3-3 3 #> 1908 2 0 Valladolid 4-3-3 3 #> 1909 2 0 Valladolid 4-3-3 3 #> 1910 2 0 Valladolid 4-3-3 3 #> 1911 2 0 Valladolid 4-3-3 3 #> 1912 2 0 Valladolid 4-3-3 3 #> 1913 2 0 Valladolid 4-3-3 3 #> 1914 2 0 Valladolid 4-3-3 3 #> 1915 2 0 Valladolid 4-3-3 3 #> 1916 2 0 Valladolid 4-3-3 3 #> 1917 2 0 Valladolid 4-3-3 3 #> 1918 2 0 Valladolid 4-3-3 3 #> 1919 2 0 Valladolid 4-3-3 3 #> 1920 2 0 Valladolid 4-3-3 3 #> 1921 2 0 Valladolid 4-3-3 3 #> 1922 2 0 Valladolid 4-3-3 3 #> 1923 2 0 Valladolid 4-3-3 3 #> 1924 2 0 Valladolid 4-3-3 3 #> 1925 2 0 Valladolid 4-3-3 3 #> 1926 2 0 Valladolid 4-3-3 3 #> 1927 2 0 Valladolid 4-3-3 3 #> 1928 2 0 Valladolid 4-3-3 3 #> 1929 2 0 Valladolid 4-3-3 3 #> 1930 2 0 Valladolid 4-3-3 3 #> 1931 2 0 Valladolid 4-3-3 3 #> 1932 2 0 Valladolid 4-3-3 3 #> 1933 3 0 Atlético Madrid 4-1-4-1 2 #> 1934 3 0 Atlético Madrid 4-1-4-1 2 #> 1935 3 0 Atlético Madrid 4-1-4-1 2 #> 1936 3 0 Atlético Madrid 4-1-4-1 2 #> 1937 3 0 Atlético Madrid 4-1-4-1 2 #> 1938 3 0 Atlético Madrid 4-1-4-1 2 #> 1939 3 0 Atlético Madrid 4-1-4-1 2 #> 1940 3 0 Atlético Madrid 4-1-4-1 2 #> 1941 3 0 Atlético Madrid 4-1-4-1 2 #> 1942 3 0 Atlético Madrid 4-1-4-1 2 #> 1943 3 0 Atlético Madrid 4-1-4-1 2 #> 1944 3 0 Atlético Madrid 4-1-4-1 2 #> 1945 3 0 Atlético Madrid 4-1-4-1 2 #> 1946 3 0 Atlético Madrid 4-1-4-1 2 #> 1947 3 0 Atlético Madrid 4-1-4-1 2 #> 1948 3 0 Atlético Madrid 4-1-4-1 2 #> 1949 3 0 Atlético Madrid 4-1-4-1 2 #> 1950 3 0 Atlético Madrid 4-1-4-1 2 #> 1951 3 0 Atlético Madrid 4-1-4-1 2 #> 1952 3 0 Atlético Madrid 4-1-4-1 2 #> 1953 3 0 Atlético Madrid 4-1-4-1 2 #> 1954 3 0 Atlético Madrid 4-1-4-1 2 #> 1955 3 0 Atlético Madrid 4-1-4-1 2 #> 1956 3 0 Atlético Madrid 4-1-4-1 2 #> 1957 3 0 Atlético Madrid 4-1-4-1 2 #> 1958 3 0 Atlético Madrid 4-1-4-1 2 #> 1959 3 0 Atlético Madrid 4-1-4-1 2 #> 1960 3 0 Atlético Madrid 4-1-4-1 2 #> 1961 3 0 Atlético Madrid 4-1-4-1 2 #> 1962 3 0 Atlético Madrid 4-1-4-1 2 #> 1963 3 0 Atlético Madrid 4-1-4-1 2 #> 1964 3 0 Atlético Madrid 4-1-4-1 2 #> 1965 2 0 Barcelona 4-3-3 1 #> 1966 2 0 Barcelona 4-3-3 1 #> 1967 2 0 Barcelona 4-3-3 1 #> 1968 2 0 Barcelona 4-3-3 1 #> 1969 2 0 Barcelona 4-3-3 1 #> 1970 2 0 Barcelona 4-3-3 1 #> 1971 2 0 Barcelona 4-3-3 1 #> 1972 2 0 Barcelona 4-3-3 1 #> 1973 2 0 Barcelona 4-3-3 1 #> 1974 2 0 Barcelona 4-3-3 1 #> 1975 2 0 Barcelona 4-3-3 1 #> 1976 2 0 Barcelona 4-3-3 1 #> 1977 2 0 Barcelona 4-3-3 1 #> 1978 2 0 Barcelona 4-3-3 1 #> 1979 2 0 Barcelona 4-3-3 1 #> 1980 2 0 Barcelona 4-3-3 1 #> 1981 2 0 Barcelona 4-3-3 1 #> 1982 2 0 Barcelona 4-3-3 1 #> 1983 2 0 Barcelona 4-3-3 1 #> 1984 2 0 Barcelona 4-3-3 1 #> 1985 2 0 Barcelona 4-3-3 1 #> 1986 2 0 Barcelona 4-3-3 1 #> 1987 2 0 Barcelona 4-3-3 1 #> 1988 2 0 Barcelona 4-3-3 1 #> 1989 2 0 Barcelona 4-3-3 1 #> 1990 2 0 Barcelona 4-3-3 1 #> 1991 2 0 Barcelona 4-3-3 1 #> 1992 2 0 Barcelona 4-3-3 1 #> 1993 2 0 Barcelona 4-3-3 1 #> 1994 2 1 Valencia 4-3-3 2 #> 1995 2 1 Valencia 4-3-3 2 #> 1996 2 1 Valencia 4-3-3 2 #> 1997 2 1 Valencia 4-3-3 2 #> 1998 2 1 Valencia 4-3-3 2 #> 1999 2 1 Valencia 4-3-3 2 #> 2000 2 1 Valencia 4-3-3 2 #> 2001 2 1 Valencia 4-3-3 2 #> 2002 2 1 Valencia 4-3-3 2 #> 2003 2 1 Valencia 4-3-3 2 #> 2004 2 1 Valencia 4-3-3 2 #> 2005 2 1 Valencia 4-3-3 2 #> 2006 2 1 Valencia 4-3-3 2 #> 2007 2 1 Valencia 4-3-3 2 #> 2008 2 1 Valencia 4-3-3 2 #> 2009 2 1 Valencia 4-3-3 2 #> 2010 2 1 Valencia 4-3-3 2 #> 2011 2 1 Valencia 4-3-3 2 #> 2012 2 1 Valencia 4-3-3 2 #> 2013 2 1 Valencia 4-3-3 2 #> 2014 2 1 Valencia 4-3-3 2 #> 2015 2 1 Valencia 4-3-3 2 #> 2016 2 1 Valencia 4-3-3 2 #> 2017 2 1 Valencia 4-3-3 2 #> 2018 2 1 Valencia 4-3-3 2 #> 2019 2 1 Valencia 4-3-3 2 #> 2020 2 1 Valencia 4-3-3 2 #> 2021 2 1 Valencia 4-3-3 2 #> 2022 2 1 Valencia 4-3-3 2 #> 2023 2 1 Valencia 4-3-3 2 #> 2024 2 1 Valencia 4-3-3 2 #> 2025 2 1 Valencia 4-3-3 2 #> 2026 4 0 Real Betis 4-2-3-1 0 #> 2027 4 0 Real Betis 4-2-3-1 0 #> 2028 4 0 Real Betis 4-2-3-1 0 #> 2029 4 0 Real Betis 4-2-3-1 0 #> 2030 4 0 Real Betis 4-2-3-1 0 #> 2031 4 0 Real Betis 4-2-3-1 0 #> 2032 4 0 Real Betis 4-2-3-1 0 #> 2033 4 0 Real Betis 4-2-3-1 0 #> 2034 4 0 Real Betis 4-2-3-1 0 #> 2035 4 0 Real Betis 4-2-3-1 0 #> 2036 4 0 Real Betis 4-2-3-1 0 #> 2037 4 0 Real Betis 4-2-3-1 0 #> 2038 4 0 Real Betis 4-2-3-1 0 #> 2039 4 0 Real Betis 4-2-3-1 0 #> 2040 4 0 Real Betis 4-2-3-1 0 #> Away_xG #> 1 0.9 #> 2 0.9 #> 3 0.9 #> 4 0.9 #> 5 0.9 #> 6 0.9 #> 7 0.9 #> 8 0.9 #> 9 0.9 #> 10 0.9 #> 11 0.9 #> 12 0.9 #> 13 0.9 #> 14 0.9 #> 15 0.9 #> 16 0.9 #> 17 0.9 #> 18 0.9 #> 19 0.9 #> 20 0.9 #> 21 0.9 #> 22 0.9 #> 23 0.9 #> 24 0.9 #> 25 0.9 #> 26 0.9 #> 27 0.9 #> 28 0.9 #> 29 0.9 #> 30 0.9 #> 31 0.9 #> 32 0.9 #> 33 1.1 #> 34 1.1 #> 35 1.1 #> 36 1.1 #> 37 1.1 #> 38 1.1 #> 39 1.1 #> 40 1.1 #> 41 1.1 #> 42 1.1 #> 43 1.1 #> 44 1.1 #> 45 1.1 #> 46 1.1 #> 47 1.1 #> 48 1.1 #> 49 1.1 #> 50 1.1 #> 51 1.1 #> 52 1.1 #> 53 1.1 #> 54 1.1 #> 55 1.1 #> 56 1.1 #> 57 1.1 #> 58 1.1 #> 59 1.1 #> 60 1.1 #> 61 1.1 #> 62 1.1 #> 63 1.5 #> 64 1.5 #> 65 1.5 #> 66 1.5 #> 67 1.5 #> 68 1.5 #> 69 1.5 #> 70 1.5 #> 71 1.5 #> 72 1.5 #> 73 1.5 #> 74 1.5 #> 75 1.5 #> 76 1.5 #> 77 1.5 #> 78 1.5 #> 79 1.5 #> 80 1.5 #> 81 1.5 #> 82 1.5 #> 83 1.5 #> 84 1.5 #> 85 1.5 #> 86 1.5 #> 87 1.5 #> 88 1.5 #> 89 1.5 #> 90 1.5 #> 91 1.5 #> 92 1.5 #> 93 1.5 #> 94 0.5 #> 95 0.5 #> 96 0.5 #> 97 0.5 #> 98 0.5 #> 99 0.5 #> 100 0.5 #> 101 0.5 #> 102 0.5 #> 103 0.5 #> 104 0.5 #> 105 0.5 #> 106 0.5 #> 107 0.5 #> 108 0.5 #> 109 0.5 #> 110 0.5 #> 111 0.5 #> 112 0.5 #> 113 0.5 #> 114 0.5 #> 115 0.5 #> 116 0.5 #> 117 0.5 #> 118 0.5 #> 119 0.5 #> 120 0.5 #> 121 0.5 #> 122 0.5 #> 123 0.5 #> 124 0.5 #> 125 1.5 #> 126 1.5 #> 127 1.5 #> 128 1.5 #> 129 1.5 #> 130 1.5 #> 131 1.5 #> 132 1.5 #> 133 1.5 #> 134 1.5 #> 135 1.5 #> 136 1.5 #> 137 1.5 #> 138 1.5 #> 139 1.5 #> 140 1.5 #> 141 1.5 #> 142 1.5 #> 143 1.5 #> 144 1.5 #> 145 1.5 #> 146 1.5 #> 147 1.5 #> 148 1.5 #> 149 1.5 #> 150 1.5 #> 151 1.5 #> 152 1.5 #> 153 1.5 #> 154 1.5 #> 155 1.5 #> 156 1.5 #> 157 0.1 #> 158 0.1 #> 159 0.1 #> 160 0.1 #> 161 0.1 #> 162 0.1 #> 163 0.1 #> 164 0.1 #> 165 0.1 #> 166 0.1 #> 167 0.1 #> 168 0.1 #> 169 0.1 #> 170 0.1 #> 171 0.1 #> 172 0.1 #> 173 0.1 #> 174 0.1 #> 175 0.1 #> 176 0.1 #> 177 0.1 #> 178 0.1 #> 179 0.1 #> 180 0.1 #> 181 0.1 #> 182 0.1 #> 183 0.1 #> 184 0.1 #> 185 0.1 #> 186 0.1 #> 187 0.1 #> 188 0.1 #> 189 2.1 #> 190 2.1 #> 191 2.1 #> 192 2.1 #> 193 2.1 #> 194 2.1 #> 195 2.1 #> 196 2.1 #> 197 2.1 #> 198 2.1 #> 199 2.1 #> 200 2.1 #> 201 2.1 #> 202 2.1 #> 203 2.1 #> 204 2.1 #> 205 2.1 #> 206 2.1 #> 207 2.1 #> 208 2.1 #> 209 2.1 #> 210 2.1 #> 211 2.1 #> 212 2.1 #> 213 2.1 #> 214 2.1 #> 215 2.1 #> 216 2.1 #> 217 2.1 #> 218 2.1 #> 219 2.1 #> 220 2.1 #> 221 0.4 #> 222 0.4 #> 223 0.4 #> 224 0.4 #> 225 0.4 #> 226 0.4 #> 227 0.4 #> 228 0.4 #> 229 0.4 #> 230 0.4 #> 231 0.4 #> 232 0.4 #> 233 0.4 #> 234 0.4 #> 235 0.4 #> 236 0.4 #> 237 0.4 #> 238 0.4 #> 239 0.4 #> 240 0.4 #> 241 0.4 #> 242 0.4 #> 243 0.4 #> 244 0.4 #> 245 0.4 #> 246 0.4 #> 247 0.4 #> 248 0.4 #> 249 0.4 #> 250 0.4 #> 251 0.4 #> 252 1.2 #> 253 1.2 #> 254 1.2 #> 255 1.2 #> 256 1.2 #> 257 1.2 #> 258 1.2 #> 259 1.2 #> 260 1.2 #> 261 1.2 #> 262 1.2 #> 263 1.2 #> 264 1.2 #> 265 1.2 #> 266 1.2 #> 267 1.2 #> 268 1.2 #> 269 1.2 #> 270 1.2 #> 271 1.2 #> 272 1.2 #> 273 1.2 #> 274 1.2 #> 275 1.2 #> 276 1.2 #> 277 1.2 #> 278 1.2 #> 279 1.2 #> 280 1.2 #> 281 1.2 #> 282 1.2 #> 283 0.4 #> 284 0.4 #> 285 0.4 #> 286 0.4 #> 287 0.4 #> 288 0.4 #> 289 0.4 #> 290 0.4 #> 291 0.4 #> 292 0.4 #> 293 0.4 #> 294 0.4 #> 295 0.4 #> 296 0.4 #> 297 0.4 #> 298 0.4 #> 299 0.4 #> 300 0.4 #> 301 0.4 #> 302 0.4 #> 303 0.4 #> 304 0.4 #> 305 0.4 #> 306 0.4 #> 307 0.4 #> 308 0.4 #> 309 0.4 #> 310 0.4 #> 311 0.4 #> 312 0.4 #> 313 0.4 #> 314 0.4 #> 315 1.4 #> 316 1.4 #> 317 1.4 #> 318 1.4 #> 319 1.4 #> 320 1.4 #> 321 1.4 #> 322 1.4 #> 323 1.4 #> 324 1.4 #> 325 1.4 #> 326 1.4 #> 327 1.4 #> 328 1.4 #> 329 1.4 #> 330 1.4 #> 331 1.4 #> 332 1.4 #> 333 1.4 #> 334 1.4 #> 335 1.4 #> 336 1.4 #> 337 1.4 #> 338 1.4 #> 339 1.4 #> 340 1.4 #> 341 1.4 #> 342 1.4 #> 343 1.4 #> 344 1.4 #> 345 1.4 #> 346 0.5 #> 347 0.5 #> 348 0.5 #> 349 0.5 #> 350 0.5 #> 351 0.5 #> 352 0.5 #> 353 0.5 #> 354 0.5 #> 355 0.5 #> 356 0.5 #> 357 0.5 #> 358 0.5 #> 359 0.5 #> 360 0.5 #> 361 0.5 #> 362 0.5 #> 363 0.5 #> 364 0.5 #> 365 0.5 #> 366 0.5 #> 367 0.5 #> 368 0.5 #> 369 0.5 #> 370 0.5 #> 371 0.5 #> 372 0.5 #> 373 0.5 #> 374 0.5 #> 375 0.5 #> 376 0.5 #> 377 0.5 #> 378 1.0 #> 379 1.0 #> 380 1.0 #> 381 1.0 #> 382 1.0 #> 383 1.0 #> 384 1.0 #> 385 1.0 #> 386 1.0 #> 387 1.0 #> 388 1.0 #> 389 1.0 #> 390 1.0 #> 391 1.0 #> 392 1.0 #> 393 1.0 #> 394 1.0 #> 395 1.0 #> 396 1.0 #> 397 1.0 #> 398 1.0 #> 399 1.0 #> 400 1.0 #> 401 1.0 #> 402 1.0 #> 403 1.0 #> 404 1.0 #> 405 1.0 #> 406 1.0 #> 407 1.0 #> 408 1.0 #> 409 1.0 #> 410 2.1 #> 411 2.1 #> 412 2.1 #> 413 2.1 #> 414 2.1 #> 415 2.1 #> 416 2.1 #> 417 2.1 #> 418 2.1 #> 419 2.1 #> 420 2.1 #> 421 2.1 #> 422 2.1 #> 423 2.1 #> 424 2.1 #> 425 2.1 #> 426 2.1 #> 427 2.1 #> 428 2.1 #> 429 2.1 #> 430 2.1 #> 431 2.1 #> 432 2.1 #> 433 2.1 #> 434 2.1 #> 435 2.1 #> 436 2.1 #> 437 2.1 #> 438 2.1 #> 439 3.7 #> 440 3.7 #> 441 3.7 #> 442 3.7 #> 443 3.7 #> 444 3.7 #> 445 3.7 #> 446 3.7 #> 447 3.7 #> 448 3.7 #> 449 3.7 #> 450 3.7 #> 451 3.7 #> 452 3.7 #> 453 3.7 #> 454 3.7 #> 455 3.7 #> 456 3.7 #> 457 3.7 #> 458 3.7 #> 459 3.7 #> 460 3.7 #> 461 3.7 #> 462 3.7 #> 463 3.7 #> 464 3.7 #> 465 3.7 #> 466 3.7 #> 467 3.7 #> 468 3.7 #> 469 0.7 #> 470 0.7 #> 471 0.7 #> 472 0.7 #> 473 0.7 #> 474 0.7 #> 475 0.7 #> 476 0.7 #> 477 0.7 #> 478 0.7 #> 479 0.7 #> 480 0.7 #> 481 0.7 #> 482 0.7 #> 483 0.7 #> 484 0.7 #> 485 0.7 #> 486 0.7 #> 487 0.7 #> 488 0.7 #> 489 0.7 #> 490 0.7 #> 491 0.7 #> 492 0.7 #> 493 0.7 #> 494 0.7 #> 495 0.7 #> 496 0.7 #> 497 0.7 #> 498 0.7 #> 499 0.7 #> 500 0.7 #> 501 1.8 #> 502 1.8 #> 503 1.8 #> 504 1.8 #> 505 1.8 #> 506 1.8 #> 507 1.8 #> 508 1.8 #> 509 1.8 #> 510 1.8 #> 511 1.8 #> 512 1.8 #> 513 1.8 #> 514 1.8 #> 515 1.8 #> 516 1.8 #> 517 1.8 #> 518 1.8 #> 519 1.8 #> 520 1.8 #> 521 1.8 #> 522 1.8 #> 523 1.8 #> 524 1.8 #> 525 1.8 #> 526 1.8 #> 527 1.8 #> 528 1.8 #> 529 1.8 #> 530 1.8 #> 531 1.8 #> 532 2.1 #> 533 2.1 #> 534 2.1 #> 535 2.1 #> 536 2.1 #> 537 2.1 #> 538 2.1 #> 539 2.1 #> 540 2.1 #> 541 2.1 #> 542 2.1 #> 543 2.1 #> 544 2.1 #> 545 2.1 #> 546 2.1 #> 547 2.1 #> 548 2.1 #> 549 2.1 #> 550 2.1 #> 551 2.1 #> 552 2.1 #> 553 2.1 #> 554 2.1 #> 555 2.1 #> 556 2.1 #> 557 2.1 #> 558 2.1 #> 559 2.1 #> 560 2.1 #> 561 2.1 #> 562 2.1 #> 563 2.1 #> 564 0.6 #> 565 0.6 #> 566 0.6 #> 567 0.6 #> 568 0.6 #> 569 0.6 #> 570 0.6 #> 571 0.6 #> 572 0.6 #> 573 0.6 #> 574 0.6 #> 575 0.6 #> 576 0.6 #> 577 0.6 #> 578 0.6 #> 579 0.6 #> 580 0.6 #> 581 0.6 #> 582 0.6 #> 583 0.6 #> 584 0.6 #> 585 0.6 #> 586 0.6 #> 587 0.6 #> 588 0.6 #> 589 0.6 #> 590 0.6 #> 591 0.6 #> 592 1.0 #> 593 1.0 #> 594 1.0 #> 595 1.0 #> 596 1.0 #> 597 1.0 #> 598 1.0 #> 599 1.0 #> 600 1.0 #> 601 1.0 #> 602 1.0 #> 603 1.0 #> 604 1.0 #> 605 1.0 #> 606 1.0 #> 607 1.0 #> 608 1.0 #> 609 1.0 #> 610 1.0 #> 611 1.0 #> 612 1.0 #> 613 1.0 #> 614 1.0 #> 615 1.0 #> 616 1.0 #> 617 1.0 #> 618 1.0 #> 619 1.0 #> 620 1.0 #> 621 1.0 #> 622 1.0 #> 623 1.3 #> 624 1.3 #> 625 1.3 #> 626 1.3 #> 627 1.3 #> 628 1.3 #> 629 1.3 #> 630 1.3 #> 631 1.3 #> 632 1.3 #> 633 1.3 #> 634 1.3 #> 635 1.3 #> 636 1.3 #> 637 1.3 #> 638 1.3 #> 639 1.3 #> 640 1.3 #> 641 1.3 #> 642 1.3 #> 643 1.3 #> 644 1.3 #> 645 1.3 #> 646 1.3 #> 647 1.3 #> 648 1.3 #> 649 1.3 #> 650 1.3 #> 651 1.3 #> 652 1.3 #> 653 1.3 #> 654 1.8 #> 655 1.8 #> 656 1.8 #> 657 1.8 #> 658 1.8 #> 659 1.8 #> 660 1.8 #> 661 1.8 #> 662 1.8 #> 663 1.8 #> 664 1.8 #> 665 1.8 #> 666 1.8 #> 667 1.8 #> 668 1.8 #> 669 1.8 #> 670 1.8 #> 671 1.8 #> 672 1.8 #> 673 1.8 #> 674 1.8 #> 675 1.8 #> 676 1.8 #> 677 1.8 #> 678 1.8 #> 679 1.8 #> 680 1.8 #> 681 1.8 #> 682 1.8 #> 683 1.8 #> 684 1.8 #> 685 1.8 #> 686 0.8 #> 687 0.8 #> 688 0.8 #> 689 0.8 #> 690 0.8 #> 691 0.8 #> 692 0.8 #> 693 0.8 #> 694 0.8 #> 695 0.8 #> 696 0.8 #> 697 0.8 #> 698 0.8 #> 699 0.8 #> 700 0.8 #> 701 0.8 #> 702 0.8 #> 703 0.8 #> 704 0.8 #> 705 0.8 #> 706 0.8 #> 707 0.8 #> 708 0.8 #> 709 0.8 #> 710 0.8 #> 711 0.8 #> 712 0.8 #> 713 0.8 #> 714 0.8 #> 715 0.8 #> 716 0.8 #> 717 1.0 #> 718 1.0 #> 719 1.0 #> 720 1.0 #> 721 1.0 #> 722 1.0 #> 723 1.0 #> 724 1.0 #> 725 1.0 #> 726 1.0 #> 727 1.0 #> 728 1.0 #> 729 1.0 #> 730 1.0 #> 731 1.0 #> 732 1.0 #> 733 1.0 #> 734 1.0 #> 735 1.0 #> 736 1.0 #> 737 1.0 #> 738 1.0 #> 739 1.0 #> 740 1.0 #> 741 1.0 #> 742 1.0 #> 743 1.0 #> 744 1.0 #> 745 1.0 #> 746 1.0 #> 747 1.0 #> 748 1.0 #> 749 1.1 #> 750 1.1 #> 751 1.1 #> 752 1.1 #> 753 1.1 #> 754 1.1 #> 755 1.1 #> 756 1.1 #> 757 1.1 #> 758 1.1 #> 759 1.1 #> 760 1.1 #> 761 1.1 #> 762 1.1 #> 763 1.1 #> 764 1.1 #> 765 1.1 #> 766 1.1 #> 767 1.1 #> 768 1.1 #> 769 1.1 #> 770 1.1 #> 771 1.1 #> 772 1.1 #> 773 1.1 #> 774 1.1 #> 775 1.1 #> 776 1.1 #> 777 1.1 #> 778 1.1 #> 779 0.8 #> 780 0.8 #> 781 0.8 #> 782 0.8 #> 783 0.8 #> 784 0.8 #> 785 0.8 #> 786 0.8 #> 787 0.8 #> 788 0.8 #> 789 0.8 #> 790 0.8 #> 791 0.8 #> 792 0.8 #> 793 0.8 #> 794 0.8 #> 795 0.8 #> 796 0.8 #> 797 0.8 #> 798 0.8 #> 799 0.8 #> 800 0.8 #> 801 0.8 #> 802 0.8 #> 803 0.8 #> 804 0.8 #> 805 0.8 #> 806 0.8 #> 807 0.8 #> 808 0.8 #> 809 0.8 #> 810 0.8 #> 811 2.1 #> 812 2.1 #> 813 2.1 #> 814 2.1 #> 815 2.1 #> 816 2.1 #> 817 2.1 #> 818 2.1 #> 819 2.1 #> 820 2.1 #> 821 2.1 #> 822 2.1 #> 823 2.1 #> 824 2.1 #> 825 2.1 #> 826 2.1 #> 827 2.1 #> 828 2.1 #> 829 2.1 #> 830 2.1 #> 831 2.1 #> 832 2.1 #> 833 2.1 #> 834 2.1 #> 835 2.1 #> 836 2.1 #> 837 2.1 #> 838 2.1 #> 839 2.1 #> 840 2.4 #> 841 2.4 #> 842 2.4 #> 843 2.4 #> 844 2.4 #> 845 2.4 #> 846 2.4 #> 847 2.4 #> 848 2.4 #> 849 2.4 #> 850 2.4 #> 851 2.4 #> 852 2.4 #> 853 2.4 #> 854 2.4 #> 855 2.4 #> 856 2.4 #> 857 2.4 #> 858 2.4 #> 859 2.4 #> 860 2.4 #> 861 2.4 #> 862 2.4 #> 863 2.4 #> 864 2.4 #> 865 2.4 #> 866 2.4 #> 867 2.4 #> 868 2.4 #> 869 2.4 #> 870 2.4 #> 871 2.4 #> 872 1.5 #> 873 1.5 #> 874 1.5 #> 875 1.5 #> 876 1.5 #> 877 1.5 #> 878 1.5 #> 879 1.5 #> 880 1.5 #> 881 1.5 #> 882 1.5 #> 883 1.5 #> 884 1.5 #> 885 1.5 #> 886 1.5 #> 887 1.5 #> 888 1.5 #> 889 1.5 #> 890 1.5 #> 891 1.5 #> 892 1.5 #> 893 1.5 #> 894 1.5 #> 895 1.5 #> 896 1.5 #> 897 1.5 #> 898 1.5 #> 899 1.5 #> 900 1.5 #> 901 1.5 #> 902 1.5 #> 903 1.5 #> 904 0.3 #> 905 0.3 #> 906 0.3 #> 907 0.3 #> 908 0.3 #> 909 0.3 #> 910 0.3 #> 911 0.3 #> 912 0.3 #> 913 0.3 #> 914 0.3 #> 915 0.3 #> 916 0.3 #> 917 0.3 #> 918 0.3 #> 919 0.3 #> 920 0.3 #> 921 0.3 #> 922 0.3 #> 923 0.3 #> 924 0.3 #> 925 0.3 #> 926 0.3 #> 927 0.3 #> 928 0.3 #> 929 0.3 #> 930 0.3 #> 931 0.3 #> 932 0.3 #> 933 0.3 #> 934 0.3 #> 935 0.3 #> 936 1.2 #> 937 1.2 #> 938 1.2 #> 939 1.2 #> 940 1.2 #> 941 1.2 #> 942 1.2 #> 943 1.2 #> 944 1.2 #> 945 1.2 #> 946 1.2 #> 947 1.2 #> 948 1.2 #> 949 1.2 #> 950 1.2 #> 951 1.2 #> 952 1.2 #> 953 1.2 #> 954 1.2 #> 955 1.2 #> 956 1.2 #> 957 1.2 #> 958 1.2 #> 959 1.2 #> 960 1.2 #> 961 1.2 #> 962 1.2 #> 963 1.2 #> 964 1.2 #> 965 1.2 #> 966 0.5 #> 967 0.5 #> 968 0.5 #> 969 0.5 #> 970 0.5 #> 971 0.5 #> 972 0.5 #> 973 0.5 #> 974 0.5 #> 975 0.5 #> 976 0.5 #> 977 0.5 #> 978 0.5 #> 979 0.5 #> 980 0.5 #> 981 0.5 #> 982 0.5 #> 983 0.5 #> 984 0.5 #> 985 0.5 #> 986 0.5 #> 987 0.5 #> 988 0.5 #> 989 0.5 #> 990 0.5 #> 991 0.5 #> 992 0.5 #> 993 0.5 #> 994 0.5 #> 995 0.5 #> 996 1.4 #> 997 1.4 #> 998 1.4 #> 999 1.4 #> 1000 1.4 #> 1001 1.4 #> 1002 1.4 #> 1003 1.4 #> 1004 1.4 #> 1005 1.4 #> 1006 1.4 #> 1007 1.4 #> 1008 1.4 #> 1009 1.4 #> 1010 1.4 #> 1011 1.4 #> 1012 1.4 #> 1013 1.4 #> 1014 1.4 #> 1015 1.4 #> 1016 1.4 #> 1017 1.4 #> 1018 1.4 #> 1019 1.4 #> 1020 1.4 #> 1021 1.4 #> 1022 1.4 #> 1023 1.4 #> 1024 1.4 #> 1025 1.4 #> 1026 1.4 #> 1027 1.4 #> 1028 4.0 #> 1029 4.0 #> 1030 4.0 #> 1031 4.0 #> 1032 4.0 #> 1033 4.0 #> 1034 4.0 #> 1035 4.0 #> 1036 4.0 #> 1037 4.0 #> 1038 4.0 #> 1039 4.0 #> 1040 4.0 #> 1041 4.0 #> 1042 4.0 #> 1043 4.0 #> 1044 4.0 #> 1045 4.0 #> 1046 4.0 #> 1047 4.0 #> 1048 4.0 #> 1049 4.0 #> 1050 4.0 #> 1051 4.0 #> 1052 4.0 #> 1053 4.0 #> 1054 4.0 #> 1055 4.0 #> 1056 4.0 #> 1057 4.0 #> 1058 4.0 #> 1059 4.0 #> 1060 0.2 #> 1061 0.2 #> 1062 0.2 #> 1063 0.2 #> 1064 0.2 #> 1065 0.2 #> 1066 0.2 #> 1067 0.2 #> 1068 0.2 #> 1069 0.2 #> 1070 0.2 #> 1071 0.2 #> 1072 0.2 #> 1073 0.2 #> 1074 0.2 #> 1075 0.2 #> 1076 0.2 #> 1077 0.2 #> 1078 0.2 #> 1079 0.2 #> 1080 0.2 #> 1081 0.2 #> 1082 0.2 #> 1083 0.2 #> 1084 0.2 #> 1085 0.2 #> 1086 0.2 #> 1087 0.2 #> 1088 0.2 #> 1089 0.2 #> 1090 0.2 #> 1091 0.6 #> 1092 0.6 #> 1093 0.6 #> 1094 0.6 #> 1095 0.6 #> 1096 0.6 #> 1097 0.6 #> 1098 0.6 #> 1099 0.6 #> 1100 0.6 #> 1101 0.6 #> 1102 0.6 #> 1103 0.6 #> 1104 0.6 #> 1105 0.6 #> 1106 0.6 #> 1107 0.6 #> 1108 0.6 #> 1109 0.6 #> 1110 0.6 #> 1111 0.6 #> 1112 0.6 #> 1113 0.6 #> 1114 0.6 #> 1115 0.6 #> 1116 0.6 #> 1117 0.6 #> 1118 0.6 #> 1119 0.6 #> 1120 0.6 #> 1121 0.6 #> 1122 0.6 #> 1123 0.6 #> 1124 0.6 #> 1125 0.6 #> 1126 0.6 #> 1127 0.6 #> 1128 0.6 #> 1129 0.6 #> 1130 0.6 #> 1131 0.6 #> 1132 0.6 #> 1133 0.6 #> 1134 0.6 #> 1135 0.6 #> 1136 0.6 #> 1137 0.6 #> 1138 0.6 #> 1139 0.6 #> 1140 0.6 #> 1141 0.6 #> 1142 0.6 #> 1143 0.6 #> 1144 0.6 #> 1145 0.6 #> 1146 0.6 #> 1147 0.6 #> 1148 0.6 #> 1149 0.6 #> 1150 0.6 #> 1151 0.6 #> 1152 0.6 #> 1153 0.6 #> 1154 0.2 #> 1155 0.2 #> 1156 0.2 #> 1157 0.2 #> 1158 0.2 #> 1159 0.2 #> 1160 0.2 #> 1161 0.2 #> 1162 0.2 #> 1163 0.2 #> 1164 0.2 #> 1165 0.2 #> 1166 0.2 #> 1167 0.2 #> 1168 0.2 #> 1169 0.2 #> 1170 0.2 #> 1171 0.2 #> 1172 0.2 #> 1173 0.2 #> 1174 0.2 #> 1175 0.2 #> 1176 0.2 #> 1177 0.2 #> 1178 0.2 #> 1179 0.2 #> 1180 0.2 #> 1181 0.2 #> 1182 0.2 #> 1183 0.2 #> 1184 0.2 #> 1185 0.2 #> 1186 0.5 #> 1187 0.5 #> 1188 0.5 #> 1189 0.5 #> 1190 0.5 #> 1191 0.5 #> 1192 0.5 #> 1193 0.5 #> 1194 0.5 #> 1195 0.5 #> 1196 0.5 #> 1197 0.5 #> 1198 0.5 #> 1199 0.5 #> 1200 0.5 #> 1201 0.5 #> 1202 0.5 #> 1203 0.5 #> 1204 0.5 #> 1205 0.5 #> 1206 0.5 #> 1207 0.5 #> 1208 0.5 #> 1209 0.5 #> 1210 0.5 #> 1211 0.5 #> 1212 0.5 #> 1213 0.5 #> 1214 0.5 #> 1215 0.5 #> 1216 0.5 #> 1217 0.6 #> 1218 0.6 #> 1219 0.6 #> 1220 0.6 #> 1221 0.6 #> 1222 0.6 #> 1223 0.6 #> 1224 0.6 #> 1225 0.6 #> 1226 0.6 #> 1227 0.6 #> 1228 0.6 #> 1229 0.6 #> 1230 0.6 #> 1231 0.6 #> 1232 0.6 #> 1233 0.6 #> 1234 0.6 #> 1235 0.6 #> 1236 0.6 #> 1237 0.6 #> 1238 0.6 #> 1239 0.6 #> 1240 0.6 #> 1241 0.6 #> 1242 0.6 #> 1243 0.6 #> 1244 0.6 #> 1245 0.6 #> 1246 0.6 #> 1247 0.6 #> 1248 0.6 #> 1249 1.7 #> 1250 1.7 #> 1251 1.7 #> 1252 1.7 #> 1253 1.7 #> 1254 1.7 #> 1255 1.7 #> 1256 1.7 #> 1257 1.7 #> 1258 1.7 #> 1259 1.7 #> 1260 1.7 #> 1261 1.7 #> 1262 1.7 #> 1263 1.7 #> 1264 1.7 #> 1265 1.7 #> 1266 1.7 #> 1267 1.7 #> 1268 1.7 #> 1269 1.7 #> 1270 1.7 #> 1271 1.7 #> 1272 1.7 #> 1273 1.7 #> 1274 1.7 #> 1275 1.7 #> 1276 1.7 #> 1277 1.7 #> 1278 1.7 #> 1279 1.7 #> 1280 2.0 #> 1281 2.0 #> 1282 2.0 #> 1283 2.0 #> 1284 2.0 #> 1285 2.0 #> 1286 2.0 #> 1287 2.0 #> 1288 2.0 #> 1289 2.0 #> 1290 2.0 #> 1291 2.0 #> 1292 2.0 #> 1293 2.0 #> 1294 2.0 #> 1295 2.0 #> 1296 2.0 #> 1297 2.0 #> 1298 2.0 #> 1299 2.0 #> 1300 2.0 #> 1301 2.0 #> 1302 2.0 #> 1303 2.0 #> 1304 2.0 #> 1305 2.0 #> 1306 2.0 #> 1307 2.0 #> 1308 2.0 #> 1309 2.0 #> 1310 2.0 #> 1311 3.4 #> 1312 3.4 #> 1313 3.4 #> 1314 3.4 #> 1315 3.4 #> 1316 3.4 #> 1317 3.4 #> 1318 3.4 #> 1319 3.4 #> 1320 3.4 #> 1321 3.4 #> 1322 3.4 #> 1323 3.4 #> 1324 3.4 #> 1325 3.4 #> 1326 3.4 #> 1327 3.4 #> 1328 3.4 #> 1329 3.4 #> 1330 3.4 #> 1331 3.4 #> 1332 3.4 #> 1333 3.4 #> 1334 3.4 #> 1335 3.4 #> 1336 3.4 #> 1337 3.4 #> 1338 3.4 #> 1339 3.4 #> 1340 3.4 #> 1341 3.4 #> 1342 3.4 #> 1343 1.7 #> 1344 1.7 #> 1345 1.7 #> 1346 1.7 #> 1347 1.7 #> 1348 1.7 #> 1349 1.7 #> 1350 1.7 #> 1351 1.7 #> 1352 1.7 #> 1353 1.7 #> 1354 1.7 #> 1355 1.7 #> 1356 1.7 #> 1357 1.7 #> 1358 1.7 #> 1359 1.7 #> 1360 1.7 #> 1361 1.7 #> 1362 1.7 #> 1363 1.7 #> 1364 1.7 #> 1365 1.7 #> 1366 1.7 #> 1367 1.7 #> 1368 1.7 #> 1369 1.7 #> 1370 1.7 #> 1371 1.7 #> 1372 0.5 #> 1373 0.5 #> 1374 0.5 #> 1375 0.5 #> 1376 0.5 #> 1377 0.5 #> 1378 0.5 #> 1379 0.5 #> 1380 0.5 #> 1381 0.5 #> 1382 0.5 #> 1383 0.5 #> 1384 0.5 #> 1385 0.5 #> 1386 0.5 #> 1387 0.5 #> 1388 0.5 #> 1389 0.5 #> 1390 0.5 #> 1391 0.5 #> 1392 0.5 #> 1393 0.5 #> 1394 0.5 #> 1395 0.5 #> 1396 0.5 #> 1397 0.5 #> 1398 0.5 #> 1399 0.5 #> 1400 0.5 #> 1401 0.5 #> 1402 0.5 #> 1403 2.7 #> 1404 2.7 #> 1405 2.7 #> 1406 2.7 #> 1407 2.7 #> 1408 2.7 #> 1409 2.7 #> 1410 2.7 #> 1411 2.7 #> 1412 2.7 #> 1413 2.7 #> 1414 2.7 #> 1415 2.7 #> 1416 2.7 #> 1417 2.7 #> 1418 2.7 #> 1419 2.7 #> 1420 2.7 #> 1421 2.7 #> 1422 2.7 #> 1423 2.7 #> 1424 2.7 #> 1425 2.7 #> 1426 2.7 #> 1427 2.7 #> 1428 2.7 #> 1429 2.7 #> 1430 2.7 #> 1431 2.7 #> 1432 2.7 #> 1433 2.7 #> 1434 2.7 #> 1435 1.2 #> 1436 1.2 #> 1437 1.2 #> 1438 1.2 #> 1439 1.2 #> 1440 1.2 #> 1441 1.2 #> 1442 1.2 #> 1443 1.2 #> 1444 1.2 #> 1445 1.2 #> 1446 1.2 #> 1447 1.2 #> 1448 1.2 #> 1449 1.2 #> 1450 1.2 #> 1451 1.2 #> 1452 1.2 #> 1453 1.2 #> 1454 1.2 #> 1455 1.2 #> 1456 1.2 #> 1457 1.2 #> 1458 1.2 #> 1459 1.2 #> 1460 1.2 #> 1461 1.2 #> 1462 1.2 #> 1463 1.2 #> 1464 1.2 #> 1465 1.2 #> 1466 1.7 #> 1467 1.7 #> 1468 1.7 #> 1469 1.7 #> 1470 1.7 #> 1471 1.7 #> 1472 1.7 #> 1473 1.7 #> 1474 1.7 #> 1475 1.7 #> 1476 1.7 #> 1477 1.7 #> 1478 1.7 #> 1479 1.7 #> 1480 1.7 #> 1481 1.7 #> 1482 1.7 #> 1483 1.7 #> 1484 1.7 #> 1485 1.7 #> 1486 1.7 #> 1487 1.7 #> 1488 1.7 #> 1489 1.7 #> 1490 1.7 #> 1491 1.7 #> 1492 1.7 #> 1493 1.7 #> 1494 1.7 #> 1495 1.7 #> 1496 2.0 #> 1497 2.0 #> 1498 2.0 #> 1499 2.0 #> 1500 2.0 #> 1501 2.0 #> 1502 2.0 #> 1503 2.0 #> 1504 2.0 #> 1505 2.0 #> 1506 2.0 #> 1507 2.0 #> 1508 2.0 #> 1509 2.0 #> 1510 2.0 #> 1511 2.0 #> 1512 2.0 #> 1513 2.0 #> 1514 2.0 #> 1515 2.0 #> 1516 2.0 #> 1517 2.0 #> 1518 2.0 #> 1519 2.0 #> 1520 2.0 #> 1521 2.0 #> 1522 2.0 #> 1523 2.0 #> 1524 2.0 #> 1525 2.0 #> 1526 2.0 #> 1527 2.0 #> 1528 0.3 #> 1529 0.3 #> 1530 0.3 #> 1531 0.3 #> 1532 0.3 #> 1533 0.3 #> 1534 0.3 #> 1535 0.3 #> 1536 0.3 #> 1537 0.3 #> 1538 0.3 #> 1539 0.3 #> 1540 0.3 #> 1541 0.3 #> 1542 0.3 #> 1543 0.3 #> 1544 0.3 #> 1545 0.3 #> 1546 0.3 #> 1547 0.3 #> 1548 0.3 #> 1549 0.3 #> 1550 0.3 #> 1551 0.3 #> 1552 0.3 #> 1553 0.3 #> 1554 0.3 #> 1555 0.3 #> 1556 0.3 #> 1557 0.3 #> 1558 0.3 #> 1559 0.3 #> 1560 0.4 #> 1561 0.4 #> 1562 0.4 #> 1563 0.4 #> 1564 0.4 #> 1565 0.4 #> 1566 0.4 #> 1567 0.4 #> 1568 0.4 #> 1569 0.4 #> 1570 0.4 #> 1571 0.4 #> 1572 0.4 #> 1573 0.4 #> 1574 0.4 #> 1575 0.4 #> 1576 0.4 #> 1577 0.4 #> 1578 0.4 #> 1579 0.4 #> 1580 0.4 #> 1581 0.4 #> 1582 0.4 #> 1583 0.4 #> 1584 0.4 #> 1585 0.4 #> 1586 0.4 #> 1587 0.4 #> 1588 0.4 #> 1589 0.4 #> 1590 0.4 #> 1591 0.0 #> 1592 0.0 #> 1593 0.0 #> 1594 0.0 #> 1595 0.0 #> 1596 0.0 #> 1597 0.0 #> 1598 0.0 #> 1599 0.0 #> 1600 0.0 #> 1601 0.0 #> 1602 0.0 #> 1603 0.0 #> 1604 0.0 #> 1605 0.0 #> 1606 0.0 #> 1607 0.0 #> 1608 0.0 #> 1609 0.0 #> 1610 0.0 #> 1611 0.0 #> 1612 0.0 #> 1613 0.0 #> 1614 0.0 #> 1615 0.0 #> 1616 0.0 #> 1617 0.0 #> 1618 0.0 #> 1619 0.0 #> 1620 0.0 #> 1621 0.0 #> 1622 0.0 #> 1623 0.5 #> 1624 0.5 #> 1625 0.5 #> 1626 0.5 #> 1627 0.5 #> 1628 0.5 #> 1629 0.5 #> 1630 0.5 #> 1631 0.5 #> 1632 0.5 #> 1633 0.5 #> 1634 0.5 #> 1635 0.5 #> 1636 0.5 #> 1637 0.5 #> 1638 0.5 #> 1639 0.5 #> 1640 0.5 #> 1641 0.5 #> 1642 0.5 #> 1643 0.5 #> 1644 0.5 #> 1645 0.5 #> 1646 0.5 #> 1647 0.5 #> 1648 0.5 #> 1649 0.5 #> 1650 0.5 #> 1651 0.5 #> 1652 0.5 #> 1653 0.7 #> 1654 0.7 #> 1655 0.7 #> 1656 0.7 #> 1657 0.7 #> 1658 0.7 #> 1659 0.7 #> 1660 0.7 #> 1661 0.7 #> 1662 0.7 #> 1663 0.7 #> 1664 0.7 #> 1665 0.7 #> 1666 0.7 #> 1667 0.7 #> 1668 0.7 #> 1669 0.7 #> 1670 0.7 #> 1671 0.7 #> 1672 0.7 #> 1673 0.7 #> 1674 0.7 #> 1675 0.7 #> 1676 0.7 #> 1677 0.7 #> 1678 0.7 #> 1679 0.7 #> 1680 0.7 #> 1681 0.7 #> 1682 0.7 #> 1683 0.7 #> 1684 0.7 #> 1685 0.8 #> 1686 0.8 #> 1687 0.8 #> 1688 0.8 #> 1689 0.8 #> 1690 0.8 #> 1691 0.8 #> 1692 0.8 #> 1693 0.8 #> 1694 0.8 #> 1695 0.8 #> 1696 0.8 #> 1697 0.8 #> 1698 0.8 #> 1699 0.8 #> 1700 0.8 #> 1701 0.8 #> 1702 0.8 #> 1703 0.8 #> 1704 0.8 #> 1705 0.8 #> 1706 0.8 #> 1707 0.8 #> 1708 0.8 #> 1709 0.8 #> 1710 0.8 #> 1711 0.8 #> 1712 0.8 #> 1713 0.8 #> 1714 0.8 #> 1715 0.8 #> 1716 0.8 #> 1717 0.6 #> 1718 0.6 #> 1719 0.6 #> 1720 0.6 #> 1721 0.6 #> 1722 0.6 #> 1723 0.6 #> 1724 0.6 #> 1725 0.6 #> 1726 0.6 #> 1727 0.6 #> 1728 0.6 #> 1729 0.6 #> 1730 0.6 #> 1731 0.6 #> 1732 0.6 #> 1733 0.6 #> 1734 0.6 #> 1735 0.6 #> 1736 0.6 #> 1737 0.6 #> 1738 0.6 #> 1739 0.6 #> 1740 0.6 #> 1741 0.6 #> 1742 0.6 #> 1743 0.6 #> 1744 0.6 #> 1745 0.6 #> 1746 0.6 #> 1747 0.6 #> 1748 0.6 #> 1749 1.3 #> 1750 1.3 #> 1751 1.3 #> 1752 1.3 #> 1753 1.3 #> 1754 1.3 #> 1755 1.3 #> 1756 1.3 #> 1757 1.3 #> 1758 1.3 #> 1759 1.3 #> 1760 1.3 #> 1761 1.3 #> 1762 1.3 #> 1763 1.3 #> 1764 1.3 #> 1765 1.3 #> 1766 1.3 #> 1767 1.3 #> 1768 1.3 #> 1769 1.3 #> 1770 1.3 #> 1771 1.3 #> 1772 1.3 #> 1773 1.3 #> 1774 1.3 #> 1775 1.3 #> 1776 1.3 #> 1777 1.3 #> 1778 1.3 #> 1779 1.3 #> 1780 0.8 #> 1781 0.8 #> 1782 0.8 #> 1783 0.8 #> 1784 0.8 #> 1785 0.8 #> 1786 0.8 #> 1787 0.8 #> 1788 0.8 #> 1789 0.8 #> 1790 0.8 #> 1791 0.8 #> 1792 0.8 #> 1793 0.8 #> 1794 0.8 #> 1795 0.8 #> 1796 0.8 #> 1797 0.8 #> 1798 0.8 #> 1799 0.8 #> 1800 0.8 #> 1801 0.8 #> 1802 0.8 #> 1803 0.8 #> 1804 0.8 #> 1805 0.8 #> 1806 0.8 #> 1807 0.8 #> 1808 0.8 #> 1809 0.9 #> 1810 0.9 #> 1811 0.9 #> 1812 0.9 #> 1813 0.9 #> 1814 0.9 #> 1815 0.9 #> 1816 0.9 #> 1817 0.9 #> 1818 0.9 #> 1819 0.9 #> 1820 0.9 #> 1821 0.9 #> 1822 0.9 #> 1823 0.9 #> 1824 0.9 #> 1825 0.9 #> 1826 0.9 #> 1827 0.9 #> 1828 0.9 #> 1829 0.9 #> 1830 0.9 #> 1831 0.9 #> 1832 0.9 #> 1833 0.9 #> 1834 0.9 #> 1835 0.9 #> 1836 0.9 #> 1837 0.9 #> 1838 0.9 #> 1839 0.9 #> 1840 0.7 #> 1841 0.7 #> 1842 0.7 #> 1843 0.7 #> 1844 0.7 #> 1845 0.7 #> 1846 0.7 #> 1847 0.7 #> 1848 0.7 #> 1849 0.7 #> 1850 0.7 #> 1851 0.7 #> 1852 0.7 #> 1853 0.7 #> 1854 0.7 #> 1855 0.7 #> 1856 0.7 #> 1857 0.7 #> 1858 0.7 #> 1859 0.7 #> 1860 0.7 #> 1861 0.7 #> 1862 0.7 #> 1863 0.7 #> 1864 0.7 #> 1865 0.7 #> 1866 0.7 #> 1867 0.7 #> 1868 0.7 #> 1869 0.7 #> 1870 0.7 #> 1871 0.7 #> 1872 1.6 #> 1873 1.6 #> 1874 1.6 #> 1875 1.6 #> 1876 1.6 #> 1877 1.6 #> 1878 1.6 #> 1879 1.6 #> 1880 1.6 #> 1881 1.6 #> 1882 1.6 #> 1883 1.6 #> 1884 1.6 #> 1885 1.6 #> 1886 1.6 #> 1887 1.6 #> 1888 1.6 #> 1889 1.6 #> 1890 1.6 #> 1891 1.6 #> 1892 1.6 #> 1893 1.6 #> 1894 1.6 #> 1895 1.6 #> 1896 1.6 #> 1897 1.6 #> 1898 1.6 #> 1899 1.6 #> 1900 1.6 #> 1901 1.6 #> 1902 1.6 #> 1903 1.6 #> 1904 1.6 #> 1905 1.6 #> 1906 1.6 #> 1907 1.6 #> 1908 1.6 #> 1909 1.6 #> 1910 1.6 #> 1911 1.6 #> 1912 1.6 #> 1913 1.6 #> 1914 1.6 #> 1915 1.6 #> 1916 1.6 #> 1917 1.6 #> 1918 1.6 #> 1919 1.6 #> 1920 1.6 #> 1921 1.6 #> 1922 1.6 #> 1923 1.6 #> 1924 1.6 #> 1925 1.6 #> 1926 1.6 #> 1927 1.6 #> 1928 1.6 #> 1929 1.6 #> 1930 1.6 #> 1931 1.6 #> 1932 1.6 #> 1933 2.2 #> 1934 2.2 #> 1935 2.2 #> 1936 2.2 #> 1937 2.2 #> 1938 2.2 #> 1939 2.2 #> 1940 2.2 #> 1941 2.2 #> 1942 2.2 #> 1943 2.2 #> 1944 2.2 #> 1945 2.2 #> 1946 2.2 #> 1947 2.2 #> 1948 2.2 #> 1949 2.2 #> 1950 2.2 #> 1951 2.2 #> 1952 2.2 #> 1953 2.2 #> 1954 2.2 #> 1955 2.2 #> 1956 2.2 #> 1957 2.2 #> 1958 2.2 #> 1959 2.2 #> 1960 2.2 #> 1961 2.2 #> 1962 2.2 #> 1963 2.2 #> 1964 2.2 #> 1965 0.7 #> 1966 0.7 #> 1967 0.7 #> 1968 0.7 #> 1969 0.7 #> 1970 0.7 #> 1971 0.7 #> 1972 0.7 #> 1973 0.7 #> 1974 0.7 #> 1975 0.7 #> 1976 0.7 #> 1977 0.7 #> 1978 0.7 #> 1979 0.7 #> 1980 0.7 #> 1981 0.7 #> 1982 0.7 #> 1983 0.7 #> 1984 0.7 #> 1985 0.7 #> 1986 0.7 #> 1987 0.7 #> 1988 0.7 #> 1989 0.7 #> 1990 0.7 #> 1991 0.7 #> 1992 0.7 #> 1993 0.7 #> 1994 1.1 #> 1995 1.1 #> 1996 1.1 #> 1997 1.1 #> 1998 1.1 #> 1999 1.1 #> 2000 1.1 #> 2001 1.1 #> 2002 1.1 #> 2003 1.1 #> 2004 1.1 #> 2005 1.1 #> 2006 1.1 #> 2007 1.1 #> 2008 1.1 #> 2009 1.1 #> 2010 1.1 #> 2011 1.1 #> 2012 1.1 #> 2013 1.1 #> 2014 1.1 #> 2015 1.1 #> 2016 1.1 #> 2017 1.1 #> 2018 1.1 #> 2019 1.1 #> 2020 1.1 #> 2021 1.1 #> 2022 1.1 #> 2023 1.1 #> 2024 1.1 #> 2025 1.1 #> 2026 0.9 #> 2027 0.9 #> 2028 0.9 #> 2029 0.9 #> 2030 0.9 #> 2031 0.9 #> 2032 0.9 #> 2033 0.9 #> 2034 0.9 #> 2035 0.9 #> 2036 0.9 #> 2037 0.9 #> 2038 0.9 #> 2039 0.9 #> 2040 0.9 #> Away_Goals #> 1 Rafa Mir · 11’ #> 2 Rafa Mir · 11’ #> 3 Rafa Mir · 11’ #> 4 Rafa Mir · 11’ #> 5 Rafa Mir · 11’ #> 6 Rafa Mir · 11’ #> 7 Rafa Mir · 11’ #> 8 Rafa Mir · 11’ #> 9 Rafa Mir · 11’ #> 10 Rafa Mir · 11’ #> 11 Rafa Mir · 11’ #> 12 Rafa Mir · 11’ #> 13 Rafa Mir · 11’ #> 14 Rafa Mir · 11’ #> 15 Rafa Mir · 11’ #> 16 Rafa Mir · 11’ #> 17 Rafa Mir · 11’ #> 18 Rafa Mir · 11’ #> 19 Rafa Mir · 11’ #> 20 Rafa Mir · 11’ #> 21 Rafa Mir · 11’ #> 22 Rafa Mir · 11’ #> 23 Rafa Mir · 11’ #> 24 Rafa Mir · 11’ #> 25 Rafa Mir · 11’ #> 26 Rafa Mir · 11’ #> 27 Rafa Mir · 11’ #> 28 Rafa Mir · 11’ #> 29 Rafa Mir · 11’ #> 30 Rafa Mir · 11’ #> 31 Rafa Mir · 11’ #> 32 Rafa Mir · 11’ #> 33 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 34 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 35 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 36 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 37 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 38 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 39 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 40 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 41 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 42 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 43 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 44 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 45 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 46 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 47 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 48 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 49 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 50 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 51 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 52 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 53 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 54 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 55 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 56 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 57 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 58 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 59 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 60 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 61 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 62 Edu Expósito · 72’ Joselu (P) · 90+8’ #> 63 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 64 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 65 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 66 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 67 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 68 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 69 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 70 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 71 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 72 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 73 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 74 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 75 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 76 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 77 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 78 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 79 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 80 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 81 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 82 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 83 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 84 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 85 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 86 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 87 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 88 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 89 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 90 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 91 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 92 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 93 Nicolas Jackson · 49’ Alex Baena · 81’ Alex Baena · 90’ #> 94 #> 95 #> 96 #> 97 #> 98 #> 99 #> 100 #> 101 #> 102 #> 103 #> 104 #> 105 #> 106 #> 107 #> 108 #> 109 #> 110 #> 111 #> 112 #> 113 #> 114 #> 115 #> 116 #> 117 #> 118 #> 119 #> 120 #> 121 #> 122 #> 123 #> 124 #> 125 Takefusa Kubo · 24’ #> 126 Takefusa Kubo · 24’ #> 127 Takefusa Kubo · 24’ #> 128 Takefusa Kubo · 24’ #> 129 Takefusa Kubo · 24’ #> 130 Takefusa Kubo · 24’ #> 131 Takefusa Kubo · 24’ #> 132 Takefusa Kubo · 24’ #> 133 Takefusa Kubo · 24’ #> 134 Takefusa Kubo · 24’ #> 135 Takefusa Kubo · 24’ #> 136 Takefusa Kubo · 24’ #> 137 Takefusa Kubo · 24’ #> 138 Takefusa Kubo · 24’ #> 139 Takefusa Kubo · 24’ #> 140 Takefusa Kubo · 24’ #> 141 Takefusa Kubo · 24’ #> 142 Takefusa Kubo · 24’ #> 143 Takefusa Kubo · 24’ #> 144 Takefusa Kubo · 24’ #> 145 Takefusa Kubo · 24’ #> 146 Takefusa Kubo · 24’ #> 147 Takefusa Kubo · 24’ #> 148 Takefusa Kubo · 24’ #> 149 Takefusa Kubo · 24’ #> 150 Takefusa Kubo · 24’ #> 151 Takefusa Kubo · 24’ #> 152 Takefusa Kubo · 24’ #> 153 Takefusa Kubo · 24’ #> 154 Takefusa Kubo · 24’ #> 155 Takefusa Kubo · 24’ #> 156 Takefusa Kubo · 24’ #> 157 #> 158 #> 159 #> 160 #> 161 #> 162 #> 163 #> 164 #> 165 #> 166 #> 167 #> 168 #> 169 #> 170 #> 171 #> 172 #> 173 #> 174 #> 175 #> 176 #> 177 #> 178 #> 179 #> 180 #> 181 #> 182 #> 183 #> 184 #> 185 #> 186 #> 187 #> 188 #> 189 Lucas Vázquez · 61’ David Alaba · 75’ #> 190 Lucas Vázquez · 61’ David Alaba · 75’ #> 191 Lucas Vázquez · 61’ David Alaba · 75’ #> 192 Lucas Vázquez · 61’ David Alaba · 75’ #> 193 Lucas Vázquez · 61’ David Alaba · 75’ #> 194 Lucas Vázquez · 61’ David Alaba · 75’ #> 195 Lucas Vázquez · 61’ David Alaba · 75’ #> 196 Lucas Vázquez · 61’ David Alaba · 75’ #> 197 Lucas Vázquez · 61’ David Alaba · 75’ #> 198 Lucas Vázquez · 61’ David Alaba · 75’ #> 199 Lucas Vázquez · 61’ David Alaba · 75’ #> 200 Lucas Vázquez · 61’ David Alaba · 75’ #> 201 Lucas Vázquez · 61’ David Alaba · 75’ #> 202 Lucas Vázquez · 61’ David Alaba · 75’ #> 203 Lucas Vázquez · 61’ David Alaba · 75’ #> 204 Lucas Vázquez · 61’ David Alaba · 75’ #> 205 Lucas Vázquez · 61’ David Alaba · 75’ #> 206 Lucas Vázquez · 61’ David Alaba · 75’ #> 207 Lucas Vázquez · 61’ David Alaba · 75’ #> 208 Lucas Vázquez · 61’ David Alaba · 75’ #> 209 Lucas Vázquez · 61’ David Alaba · 75’ #> 210 Lucas Vázquez · 61’ David Alaba · 75’ #> 211 Lucas Vázquez · 61’ David Alaba · 75’ #> 212 Lucas Vázquez · 61’ David Alaba · 75’ #> 213 Lucas Vázquez · 61’ David Alaba · 75’ #> 214 Lucas Vázquez · 61’ David Alaba · 75’ #> 215 Lucas Vázquez · 61’ David Alaba · 75’ #> 216 Lucas Vázquez · 61’ David Alaba · 75’ #> 217 Lucas Vázquez · 61’ David Alaba · 75’ #> 218 Lucas Vázquez · 61’ David Alaba · 75’ #> 219 Lucas Vázquez · 61’ David Alaba · 75’ #> 220 Lucas Vázquez · 61’ David Alaba · 75’ #> 221 #> 222 #> 223 #> 224 #> 225 #> 226 #> 227 #> 228 #> 229 #> 230 #> 231 #> 232 #> 233 #> 234 #> 235 #> 236 #> 237 #> 238 #> 239 #> 240 #> 241 #> 242 #> 243 #> 244 #> 245 #> 246 #> 247 #> 248 #> 249 #> 250 #> 251 #> 252 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 253 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 254 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 255 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 256 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 257 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 258 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 259 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 260 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 261 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 262 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 263 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 264 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 265 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 266 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 267 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 268 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 269 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 270 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 271 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 272 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 273 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 274 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 275 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 276 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 277 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 278 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 279 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 280 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 281 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 282 Álvaro Morata · 15’ Álvaro Morata · 59’ Antoine Griezmann · 75’ #> 283 John Donald · 16’ #> 284 John Donald · 16’ #> 285 John Donald · 16’ #> 286 John Donald · 16’ #> 287 John Donald · 16’ #> 288 John Donald · 16’ #> 289 John Donald · 16’ #> 290 John Donald · 16’ #> 291 John Donald · 16’ #> 292 John Donald · 16’ #> 293 John Donald · 16’ #> 294 John Donald · 16’ #> 295 John Donald · 16’ #> 296 John Donald · 16’ #> 297 John Donald · 16’ #> 298 John Donald · 16’ #> 299 John Donald · 16’ #> 300 John Donald · 16’ #> 301 John Donald · 16’ #> 302 John Donald · 16’ #> 303 John Donald · 16’ #> 304 John Donald · 16’ #> 305 John Donald · 16’ #> 306 John Donald · 16’ #> 307 John Donald · 16’ #> 308 John Donald · 16’ #> 309 John Donald · 16’ #> 310 John Donald · 16’ #> 311 John Donald · 16’ #> 312 John Donald · 16’ #> 313 John Donald · 16’ #> 314 John Donald · 16’ #> 315 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 316 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 317 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 318 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 319 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 320 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 321 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 322 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 323 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 324 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 325 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 326 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 327 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 328 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 329 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 330 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 331 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 332 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 333 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 334 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 335 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 336 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 337 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 338 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 339 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 340 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 341 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 342 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 343 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 344 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 345 Florian Lejeune · 16’ Isaac Palazón Camacho · 40’ Pathé Ciss · 59’ #> 346 Anuar · 80’ Jawad El Yamiq · 88’ #> 347 Anuar · 80’ Jawad El Yamiq · 88’ #> 348 Anuar · 80’ Jawad El Yamiq · 88’ #> 349 Anuar · 80’ Jawad El Yamiq · 88’ #> 350 Anuar · 80’ Jawad El Yamiq · 88’ #> 351 Anuar · 80’ Jawad El Yamiq · 88’ #> 352 Anuar · 80’ Jawad El Yamiq · 88’ #> 353 Anuar · 80’ Jawad El Yamiq · 88’ #> 354 Anuar · 80’ Jawad El Yamiq · 88’ #> 355 Anuar · 80’ Jawad El Yamiq · 88’ #> 356 Anuar · 80’ Jawad El Yamiq · 88’ #> 357 Anuar · 80’ Jawad El Yamiq · 88’ #> 358 Anuar · 80’ Jawad El Yamiq · 88’ #> 359 Anuar · 80’ Jawad El Yamiq · 88’ #> 360 Anuar · 80’ Jawad El Yamiq · 88’ #> 361 Anuar · 80’ Jawad El Yamiq · 88’ #> 362 Anuar · 80’ Jawad El Yamiq · 88’ #> 363 Anuar · 80’ Jawad El Yamiq · 88’ #> 364 Anuar · 80’ Jawad El Yamiq · 88’ #> 365 Anuar · 80’ Jawad El Yamiq · 88’ #> 366 Anuar · 80’ Jawad El Yamiq · 88’ #> 367 Anuar · 80’ Jawad El Yamiq · 88’ #> 368 Anuar · 80’ Jawad El Yamiq · 88’ #> 369 Anuar · 80’ Jawad El Yamiq · 88’ #> 370 Anuar · 80’ Jawad El Yamiq · 88’ #> 371 Anuar · 80’ Jawad El Yamiq · 88’ #> 372 Anuar · 80’ Jawad El Yamiq · 88’ #> 373 Anuar · 80’ Jawad El Yamiq · 88’ #> 374 Anuar · 80’ Jawad El Yamiq · 88’ #> 375 Anuar · 80’ Jawad El Yamiq · 88’ #> 376 Anuar · 80’ Jawad El Yamiq · 88’ #> 377 Anuar · 80’ Jawad El Yamiq · 88’ #> 378 Tomás Alarcón · 76’ #> 379 Tomás Alarcón · 76’ #> 380 Tomás Alarcón · 76’ #> 381 Tomás Alarcón · 76’ #> 382 Tomás Alarcón · 76’ #> 383 Tomás Alarcón · 76’ #> 384 Tomás Alarcón · 76’ #> 385 Tomás Alarcón · 76’ #> 386 Tomás Alarcón · 76’ #> 387 Tomás Alarcón · 76’ #> 388 Tomás Alarcón · 76’ #> 389 Tomás Alarcón · 76’ #> 390 Tomás Alarcón · 76’ #> 391 Tomás Alarcón · 76’ #> 392 Tomás Alarcón · 76’ #> 393 Tomás Alarcón · 76’ #> 394 Tomás Alarcón · 76’ #> 395 Tomás Alarcón · 76’ #> 396 Tomás Alarcón · 76’ #> 397 Tomás Alarcón · 76’ #> 398 Tomás Alarcón · 76’ #> 399 Tomás Alarcón · 76’ #> 400 Tomás Alarcón · 76’ #> 401 Tomás Alarcón · 76’ #> 402 Tomás Alarcón · 76’ #> 403 Tomás Alarcón · 76’ #> 404 Tomás Alarcón · 76’ #> 405 Tomás Alarcón · 76’ #> 406 Tomás Alarcón · 76’ #> 407 Tomás Alarcón · 76’ #> 408 Tomás Alarcón · 76’ #> 409 Tomás Alarcón · 76’ #> 410 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 411 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 412 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 413 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 414 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 415 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 416 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 417 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 418 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 419 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 420 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 421 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 422 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 423 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 424 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 425 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 426 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 427 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 428 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 429 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 430 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 431 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 432 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 433 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 434 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 435 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 436 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 437 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 438 Borja Iglesias (P) · 9’ Borja Iglesias (P) · 73’ #> 439 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 440 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 441 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 442 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 443 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 444 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 445 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 446 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 447 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 448 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 449 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 450 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 451 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 452 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 453 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 454 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 455 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 456 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 457 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 458 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 459 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 460 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 461 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 462 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 463 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 464 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 465 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 466 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 467 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 468 Karim Benzema (P) · 14’ Luka Modrić · 41’ Vinicius Júnior · 56’ Federico Valverde · 66’ #> 469 #> 470 #> 471 #> 472 #> 473 #> 474 #> 475 #> 476 #> 477 #> 478 #> 479 #> 480 #> 481 #> 482 #> 483 #> 484 #> 485 #> 486 #> 487 #> 488 #> 489 #> 490 #> 491 #> 492 #> 493 #> 494 #> 495 #> 496 #> 497 #> 498 #> 499 #> 500 #> 501 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 502 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 503 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 504 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 505 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 506 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 507 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 508 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 509 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 510 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 511 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 512 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 513 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 514 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 515 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 516 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 517 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 518 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 519 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 520 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 521 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 522 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 523 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 524 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 525 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 526 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 527 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 528 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 529 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 530 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 531 Yeremi Pino · 73’ Gerard Moreno · 90+7’ #> 532 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 533 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 534 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 535 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 536 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 537 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 538 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 539 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 540 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 541 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 542 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 543 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 544 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 545 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 546 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 547 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 548 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 549 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 550 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 551 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 552 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 553 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 554 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 555 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 556 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 557 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 558 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 559 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 560 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 561 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 562 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 563 Robert Lewandowski · 1’ Ousmane Dembélé · 66’ Robert Lewandowski · 68’ Ansu Fati · 79’ #> 564 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 565 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 566 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 567 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 568 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 569 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 570 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 571 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 572 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 573 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 574 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 575 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 576 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 577 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 578 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 579 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 580 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 581 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 582 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 583 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 584 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 585 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 586 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 587 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 588 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 589 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 590 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 591 Enes Ünal · 73’ Fabrizio Angileri · 90+7’ #> 592 Iago Aspas · 49’ #> 593 Iago Aspas · 49’ #> 594 Iago Aspas · 49’ #> 595 Iago Aspas · 49’ #> 596 Iago Aspas · 49’ #> 597 Iago Aspas · 49’ #> 598 Iago Aspas · 49’ #> 599 Iago Aspas · 49’ #> 600 Iago Aspas · 49’ #> 601 Iago Aspas · 49’ #> 602 Iago Aspas · 49’ #> 603 Iago Aspas · 49’ #> 604 Iago Aspas · 49’ #> 605 Iago Aspas · 49’ #> 606 Iago Aspas · 49’ #> 607 Iago Aspas · 49’ #> 608 Iago Aspas · 49’ #> 609 Iago Aspas · 49’ #> 610 Iago Aspas · 49’ #> 611 Iago Aspas · 49’ #> 612 Iago Aspas · 49’ #> 613 Iago Aspas · 49’ #> 614 Iago Aspas · 49’ #> 615 Iago Aspas · 49’ #> 616 Iago Aspas · 49’ #> 617 Iago Aspas · 49’ #> 618 Iago Aspas · 49’ #> 619 Iago Aspas · 49’ #> 620 Iago Aspas · 49’ #> 621 Iago Aspas · 49’ #> 622 Iago Aspas · 49’ #> 623 #> 624 #> 625 #> 626 #> 627 #> 628 #> 629 #> 630 #> 631 #> 632 #> 633 #> 634 #> 635 #> 636 #> 637 #> 638 #> 639 #> 640 #> 641 #> 642 #> 643 #> 644 #> 645 #> 646 #> 647 #> 648 #> 649 #> 650 #> 651 #> 652 #> 653 #> 654 Brais Méndez · 20’ #> 655 Brais Méndez · 20’ #> 656 Brais Méndez · 20’ #> 657 Brais Méndez · 20’ #> 658 Brais Méndez · 20’ #> 659 Brais Méndez · 20’ #> 660 Brais Méndez · 20’ #> 661 Brais Méndez · 20’ #> 662 Brais Méndez · 20’ #> 663 Brais Méndez · 20’ #> 664 Brais Méndez · 20’ #> 665 Brais Méndez · 20’ #> 666 Brais Méndez · 20’ #> 667 Brais Méndez · 20’ #> 668 Brais Méndez · 20’ #> 669 Brais Méndez · 20’ #> 670 Brais Méndez · 20’ #> 671 Brais Méndez · 20’ #> 672 Brais Méndez · 20’ #> 673 Brais Méndez · 20’ #> 674 Brais Méndez · 20’ #> 675 Brais Méndez · 20’ #> 676 Brais Méndez · 20’ #> 677 Brais Méndez · 20’ #> 678 Brais Méndez · 20’ #> 679 Brais Méndez · 20’ #> 680 Brais Méndez · 20’ #> 681 Brais Méndez · 20’ #> 682 Brais Méndez · 20’ #> 683 Brais Méndez · 20’ #> 684 Brais Méndez · 20’ #> 685 Brais Méndez · 20’ #> 686 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 687 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 688 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 689 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 690 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 691 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 692 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 693 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 694 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 695 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 696 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 697 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 698 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 699 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 700 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 701 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 702 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 703 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 704 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 705 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 706 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 707 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 708 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 709 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 710 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 711 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 712 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 713 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 714 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 715 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 716 Vedat Muriqi · 13’ Lee Kang-in · 64’ #> 717 Óliver Torres · 30’ #> 718 Óliver Torres · 30’ #> 719 Óliver Torres · 30’ #> 720 Óliver Torres · 30’ #> 721 Óliver Torres · 30’ #> 722 Óliver Torres · 30’ #> 723 Óliver Torres · 30’ #> 724 Óliver Torres · 30’ #> 725 Óliver Torres · 30’ #> 726 Óliver Torres · 30’ #> 727 Óliver Torres · 30’ #> 728 Óliver Torres · 30’ #> 729 Óliver Torres · 30’ #> 730 Óliver Torres · 30’ #> 731 Óliver Torres · 30’ #> 732 Óliver Torres · 30’ #> 733 Óliver Torres · 30’ #> 734 Óliver Torres · 30’ #> 735 Óliver Torres · 30’ #> 736 Óliver Torres · 30’ #> 737 Óliver Torres · 30’ #> 738 Óliver Torres · 30’ #> 739 Óliver Torres · 30’ #> 740 Óliver Torres · 30’ #> 741 Óliver Torres · 30’ #> 742 Óliver Torres · 30’ #> 743 Óliver Torres · 30’ #> 744 Óliver Torres · 30’ #> 745 Óliver Torres · 30’ #> 746 Óliver Torres · 30’ #> 747 Óliver Torres · 30’ #> 748 Óliver Torres · 30’ #> 749 #> 750 #> 751 #> 752 #> 753 #> 754 #> 755 #> 756 #> 757 #> 758 #> 759 #> 760 #> 761 #> 762 #> 763 #> 764 #> 765 #> 766 #> 767 #> 768 #> 769 #> 770 #> 771 #> 772 #> 773 #> 774 #> 775 #> 776 #> 777 #> 778 #> 779 #> 780 #> 781 #> 782 #> 783 #> 784 #> 785 #> 786 #> 787 #> 788 #> 789 #> 790 #> 791 #> 792 #> 793 #> 794 #> 795 #> 796 #> 797 #> 798 #> 799 #> 800 #> 801 #> 802 #> 803 #> 804 #> 805 #> 806 #> 807 #> 808 #> 809 #> 810 #> 811 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 812 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 813 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 814 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 815 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 816 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 817 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 818 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 819 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 820 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 821 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 822 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 823 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 824 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 825 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 826 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 827 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 828 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 829 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 830 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 831 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 832 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 833 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 834 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 835 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 836 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 837 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 838 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 839 Vinicius Júnior · 12’ Karim Benzema · 88’ Karim Benzema · 90+10’ #> 840 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 841 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 842 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 843 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 844 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 845 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 846 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 847 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 848 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 849 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 850 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 851 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 852 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 853 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 854 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 855 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 856 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 857 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 858 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 859 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 860 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 861 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 862 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 863 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 864 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 865 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 866 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 867 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 868 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 869 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 870 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 871 Iñaki Williams · 24’ Gorka Guruzeta · 56’ Álex Berenguer · 78’ Gorka Guruzeta · 90+3’ #> 872 Antoine Griezmann · 66’ #> 873 Antoine Griezmann · 66’ #> 874 Antoine Griezmann · 66’ #> 875 Antoine Griezmann · 66’ #> 876 Antoine Griezmann · 66’ #> 877 Antoine Griezmann · 66’ #> 878 Antoine Griezmann · 66’ #> 879 Antoine Griezmann · 66’ #> 880 Antoine Griezmann · 66’ #> 881 Antoine Griezmann · 66’ #> 882 Antoine Griezmann · 66’ #> 883 Antoine Griezmann · 66’ #> 884 Antoine Griezmann · 66’ #> 885 Antoine Griezmann · 66’ #> 886 Antoine Griezmann · 66’ #> 887 Antoine Griezmann · 66’ #> 888 Antoine Griezmann · 66’ #> 889 Antoine Griezmann · 66’ #> 890 Antoine Griezmann · 66’ #> 891 Antoine Griezmann · 66’ #> 892 Antoine Griezmann · 66’ #> 893 Antoine Griezmann · 66’ #> 894 Antoine Griezmann · 66’ #> 895 Antoine Griezmann · 66’ #> 896 Antoine Griezmann · 66’ #> 897 Antoine Griezmann · 66’ #> 898 Antoine Griezmann · 66’ #> 899 Antoine Griezmann · 66’ #> 900 Antoine Griezmann · 66’ #> 901 Antoine Griezmann · 66’ #> 902 Antoine Griezmann · 66’ #> 903 Antoine Griezmann · 66’ #> 904 #> 905 #> 906 #> 907 #> 908 #> 909 #> 910 #> 911 #> 912 #> 913 #> 914 #> 915 #> 916 #> 917 #> 918 #> 919 #> 920 #> 921 #> 922 #> 923 #> 924 #> 925 #> 926 #> 927 #> 928 #> 929 #> 930 #> 931 #> 932 #> 933 #> 934 #> 935 #> 936 Samuel Sáiz (P) · 90+2’ #> 937 Samuel Sáiz (P) · 90+2’ #> 938 Samuel Sáiz (P) · 90+2’ #> 939 Samuel Sáiz (P) · 90+2’ #> 940 Samuel Sáiz (P) · 90+2’ #> 941 Samuel Sáiz (P) · 90+2’ #> 942 Samuel Sáiz (P) · 90+2’ #> 943 Samuel Sáiz (P) · 90+2’ #> 944 Samuel Sáiz (P) · 90+2’ #> 945 Samuel Sáiz (P) · 90+2’ #> 946 Samuel Sáiz (P) · 90+2’ #> 947 Samuel Sáiz (P) · 90+2’ #> 948 Samuel Sáiz (P) · 90+2’ #> 949 Samuel Sáiz (P) · 90+2’ #> 950 Samuel Sáiz (P) · 90+2’ #> 951 Samuel Sáiz (P) · 90+2’ #> 952 Samuel Sáiz (P) · 90+2’ #> 953 Samuel Sáiz (P) · 90+2’ #> 954 Samuel Sáiz (P) · 90+2’ #> 955 Samuel Sáiz (P) · 90+2’ #> 956 Samuel Sáiz (P) · 90+2’ #> 957 Samuel Sáiz (P) · 90+2’ #> 958 Samuel Sáiz (P) · 90+2’ #> 959 Samuel Sáiz (P) · 90+2’ #> 960 Samuel Sáiz (P) · 90+2’ #> 961 Samuel Sáiz (P) · 90+2’ #> 962 Samuel Sáiz (P) · 90+2’ #> 963 Samuel Sáiz (P) · 90+2’ #> 964 Samuel Sáiz (P) · 90+2’ #> 965 Samuel Sáiz (P) · 90+2’ #> 966 Sergio Canales · 17’ #> 967 Sergio Canales · 17’ #> 968 Sergio Canales · 17’ #> 969 Sergio Canales · 17’ #> 970 Sergio Canales · 17’ #> 971 Sergio Canales · 17’ #> 972 Sergio Canales · 17’ #> 973 Sergio Canales · 17’ #> 974 Sergio Canales · 17’ #> 975 Sergio Canales · 17’ #> 976 Sergio Canales · 17’ #> 977 Sergio Canales · 17’ #> 978 Sergio Canales · 17’ #> 979 Sergio Canales · 17’ #> 980 Sergio Canales · 17’ #> 981 Sergio Canales · 17’ #> 982 Sergio Canales · 17’ #> 983 Sergio Canales · 17’ #> 984 Sergio Canales · 17’ #> 985 Sergio Canales · 17’ #> 986 Sergio Canales · 17’ #> 987 Sergio Canales · 17’ #> 988 Sergio Canales · 17’ #> 989 Sergio Canales · 17’ #> 990 Sergio Canales · 17’ #> 991 Sergio Canales · 17’ #> 992 Sergio Canales · 17’ #> 993 Sergio Canales · 17’ #> 994 Sergio Canales · 17’ #> 995 Sergio Canales · 17’ #> 996 Álvaro Morata · 5’ #> 997 Álvaro Morata · 5’ #> 998 Álvaro Morata · 5’ #> 999 Álvaro Morata · 5’ #> 1000 Álvaro Morata · 5’ #> 1001 Álvaro Morata · 5’ #> 1002 Álvaro Morata · 5’ #> 1003 Álvaro Morata · 5’ #> 1004 Álvaro Morata · 5’ #> 1005 Álvaro Morata · 5’ #> 1006 Álvaro Morata · 5’ #> 1007 Álvaro Morata · 5’ #> 1008 Álvaro Morata · 5’ #> 1009 Álvaro Morata · 5’ #> 1010 Álvaro Morata · 5’ #> 1011 Álvaro Morata · 5’ #> 1012 Álvaro Morata · 5’ #> 1013 Álvaro Morata · 5’ #> 1014 Álvaro Morata · 5’ #> 1015 Álvaro Morata · 5’ #> 1016 Álvaro Morata · 5’ #> 1017 Álvaro Morata · 5’ #> 1018 Álvaro Morata · 5’ #> 1019 Álvaro Morata · 5’ #> 1020 Álvaro Morata · 5’ #> 1021 Álvaro Morata · 5’ #> 1022 Álvaro Morata · 5’ #> 1023 Álvaro Morata · 5’ #> 1024 Álvaro Morata · 5’ #> 1025 Álvaro Morata · 5’ #> 1026 Álvaro Morata · 5’ #> 1027 Álvaro Morata · 5’ #> 1028 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1029 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1030 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1031 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1032 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1033 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1034 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1035 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1036 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1037 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1038 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1039 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1040 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1041 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1042 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1043 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1044 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1045 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1046 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1047 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1048 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1049 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1050 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1051 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1052 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1053 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1054 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1055 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1056 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1057 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1058 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1059 Raphinha · 21’ Robert Lewandowski · 36’ Eric García · 50’ #> 1060 Florian Lejeune · 75’ #> 1061 Florian Lejeune · 75’ #> 1062 Florian Lejeune · 75’ #> 1063 Florian Lejeune · 75’ #> 1064 Florian Lejeune · 75’ #> 1065 Florian Lejeune · 75’ #> 1066 Florian Lejeune · 75’ #> 1067 Florian Lejeune · 75’ #> 1068 Florian Lejeune · 75’ #> 1069 Florian Lejeune · 75’ #> 1070 Florian Lejeune · 75’ #> 1071 Florian Lejeune · 75’ #> 1072 Florian Lejeune · 75’ #> 1073 Florian Lejeune · 75’ #> 1074 Florian Lejeune · 75’ #> 1075 Florian Lejeune · 75’ #> 1076 Florian Lejeune · 75’ #> 1077 Florian Lejeune · 75’ #> 1078 Florian Lejeune · 75’ #> 1079 Florian Lejeune · 75’ #> 1080 Florian Lejeune · 75’ #> 1081 Florian Lejeune · 75’ #> 1082 Florian Lejeune · 75’ #> 1083 Florian Lejeune · 75’ #> 1084 Florian Lejeune · 75’ #> 1085 Florian Lejeune · 75’ #> 1086 Florian Lejeune · 75’ #> 1087 Florian Lejeune · 75’ #> 1088 Florian Lejeune · 75’ #> 1089 Florian Lejeune · 75’ #> 1090 Florian Lejeune · 75’ #> 1091 Martin Braithwaite · 83’ #> 1092 Martin Braithwaite · 83’ #> 1093 Martin Braithwaite · 83’ #> 1094 Martin Braithwaite · 83’ #> 1095 Martin Braithwaite · 83’ #> 1096 Martin Braithwaite · 83’ #> 1097 Martin Braithwaite · 83’ #> 1098 Martin Braithwaite · 83’ #> 1099 Martin Braithwaite · 83’ #> 1100 Martin Braithwaite · 83’ #> 1101 Martin Braithwaite · 83’ #> 1102 Martin Braithwaite · 83’ #> 1103 Martin Braithwaite · 83’ #> 1104 Martin Braithwaite · 83’ #> 1105 Martin Braithwaite · 83’ #> 1106 Martin Braithwaite · 83’ #> 1107 Martin Braithwaite · 83’ #> 1108 Martin Braithwaite · 83’ #> 1109 Martin Braithwaite · 83’ #> 1110 Martin Braithwaite · 83’ #> 1111 Martin Braithwaite · 83’ #> 1112 Martin Braithwaite · 83’ #> 1113 Martin Braithwaite · 83’ #> 1114 Martin Braithwaite · 83’ #> 1115 Martin Braithwaite · 83’ #> 1116 Martin Braithwaite · 83’ #> 1117 Martin Braithwaite · 83’ #> 1118 Martin Braithwaite · 83’ #> 1119 Martin Braithwaite · 83’ #> 1120 Martin Braithwaite · 83’ #> 1121 Martin Braithwaite · 83’ #> 1122 #> 1123 #> 1124 #> 1125 #> 1126 #> 1127 #> 1128 #> 1129 #> 1130 #> 1131 #> 1132 #> 1133 #> 1134 #> 1135 #> 1136 #> 1137 #> 1138 #> 1139 #> 1140 #> 1141 #> 1142 #> 1143 #> 1144 #> 1145 #> 1146 #> 1147 #> 1148 #> 1149 #> 1150 #> 1151 #> 1152 #> 1153 #> 1154 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1155 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1156 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1157 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1158 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1159 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1160 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1161 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1162 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1163 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1164 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1165 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1166 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1167 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1168 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1169 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1170 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1171 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1172 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1173 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1174 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1175 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1176 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1177 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1178 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1179 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1180 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1181 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1182 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1183 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1184 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1185 Gastón Álvarez · 78’ Mauro Arambarri · 90+5’ #> 1186 #> 1187 #> 1188 #> 1189 #> 1190 #> 1191 #> 1192 #> 1193 #> 1194 #> 1195 #> 1196 #> 1197 #> 1198 #> 1199 #> 1200 #> 1201 #> 1202 #> 1203 #> 1204 #> 1205 #> 1206 #> 1207 #> 1208 #> 1209 #> 1210 #> 1211 #> 1212 #> 1213 #> 1214 #> 1215 #> 1216 #> 1217 Monchu · 38’ #> 1218 Monchu · 38’ #> 1219 Monchu · 38’ #> 1220 Monchu · 38’ #> 1221 Monchu · 38’ #> 1222 Monchu · 38’ #> 1223 Monchu · 38’ #> 1224 Monchu · 38’ #> 1225 Monchu · 38’ #> 1226 Monchu · 38’ #> 1227 Monchu · 38’ #> 1228 Monchu · 38’ #> 1229 Monchu · 38’ #> 1230 Monchu · 38’ #> 1231 Monchu · 38’ #> 1232 Monchu · 38’ #> 1233 Monchu · 38’ #> 1234 Monchu · 38’ #> 1235 Monchu · 38’ #> 1236 Monchu · 38’ #> 1237 Monchu · 38’ #> 1238 Monchu · 38’ #> 1239 Monchu · 38’ #> 1240 Monchu · 38’ #> 1241 Monchu · 38’ #> 1242 Monchu · 38’ #> 1243 Monchu · 38’ #> 1244 Monchu · 38’ #> 1245 Monchu · 38’ #> 1246 Monchu · 38’ #> 1247 Monchu · 38’ #> 1248 Monchu · 38’ #> 1249 Mouctar Diakhaby · 90+3’ #> 1250 Mouctar Diakhaby · 90+3’ #> 1251 Mouctar Diakhaby · 90+3’ #> 1252 Mouctar Diakhaby · 90+3’ #> 1253 Mouctar Diakhaby · 90+3’ #> 1254 Mouctar Diakhaby · 90+3’ #> 1255 Mouctar Diakhaby · 90+3’ #> 1256 Mouctar Diakhaby · 90+3’ #> 1257 Mouctar Diakhaby · 90+3’ #> 1258 Mouctar Diakhaby · 90+3’ #> 1259 Mouctar Diakhaby · 90+3’ #> 1260 Mouctar Diakhaby · 90+3’ #> 1261 Mouctar Diakhaby · 90+3’ #> 1262 Mouctar Diakhaby · 90+3’ #> 1263 Mouctar Diakhaby · 90+3’ #> 1264 Mouctar Diakhaby · 90+3’ #> 1265 Mouctar Diakhaby · 90+3’ #> 1266 Mouctar Diakhaby · 90+3’ #> 1267 Mouctar Diakhaby · 90+3’ #> 1268 Mouctar Diakhaby · 90+3’ #> 1269 Mouctar Diakhaby · 90+3’ #> 1270 Mouctar Diakhaby · 90+3’ #> 1271 Mouctar Diakhaby · 90+3’ #> 1272 Mouctar Diakhaby · 90+3’ #> 1273 Mouctar Diakhaby · 90+3’ #> 1274 Mouctar Diakhaby · 90+3’ #> 1275 Mouctar Diakhaby · 90+3’ #> 1276 Mouctar Diakhaby · 90+3’ #> 1277 Mouctar Diakhaby · 90+3’ #> 1278 Mouctar Diakhaby · 90+3’ #> 1279 Mouctar Diakhaby · 90+3’ #> 1280 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1281 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1282 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1283 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1284 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1285 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1286 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1287 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1288 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1289 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1290 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1291 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1292 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1293 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1294 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1295 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1296 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1297 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1298 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1299 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1300 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1301 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1302 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1303 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1304 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1305 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1306 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1307 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1308 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1309 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1310 Érik Lamela · 1’ Carmona · 26’ Carmona · 45’ Érik Lamela · 84’ #> 1311 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1312 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1313 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1314 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1315 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1316 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1317 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1318 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1319 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1320 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1321 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1322 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1323 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1324 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1325 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1326 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1327 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1328 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1329 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1330 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1331 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1332 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1333 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1334 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1335 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1336 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1337 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1338 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1339 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1340 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1341 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1342 Frenkie de Jong · 55’ Robert Lewandowski · 65’ Ansu Fati · 86’ Ousmane Dembélé · 90+2’ #> 1343 Gabriel Veiga · 71’ #> 1344 Gabriel Veiga · 71’ #> 1345 Gabriel Veiga · 71’ #> 1346 Gabriel Veiga · 71’ #> 1347 Gabriel Veiga · 71’ #> 1348 Gabriel Veiga · 71’ #> 1349 Gabriel Veiga · 71’ #> 1350 Gabriel Veiga · 71’ #> 1351 Gabriel Veiga · 71’ #> 1352 Gabriel Veiga · 71’ #> 1353 Gabriel Veiga · 71’ #> 1354 Gabriel Veiga · 71’ #> 1355 Gabriel Veiga · 71’ #> 1356 Gabriel Veiga · 71’ #> 1357 Gabriel Veiga · 71’ #> 1358 Gabriel Veiga · 71’ #> 1359 Gabriel Veiga · 71’ #> 1360 Gabriel Veiga · 71’ #> 1361 Gabriel Veiga · 71’ #> 1362 Gabriel Veiga · 71’ #> 1363 Gabriel Veiga · 71’ #> 1364 Gabriel Veiga · 71’ #> 1365 Gabriel Veiga · 71’ #> 1366 Gabriel Veiga · 71’ #> 1367 Gabriel Veiga · 71’ #> 1368 Gabriel Veiga · 71’ #> 1369 Gabriel Veiga · 71’ #> 1370 Gabriel Veiga · 71’ #> 1371 Gabriel Veiga · 71’ #> 1372 Vedat Muriqi · 35’ #> 1373 Vedat Muriqi · 35’ #> 1374 Vedat Muriqi · 35’ #> 1375 Vedat Muriqi · 35’ #> 1376 Vedat Muriqi · 35’ #> 1377 Vedat Muriqi · 35’ #> 1378 Vedat Muriqi · 35’ #> 1379 Vedat Muriqi · 35’ #> 1380 Vedat Muriqi · 35’ #> 1381 Vedat Muriqi · 35’ #> 1382 Vedat Muriqi · 35’ #> 1383 Vedat Muriqi · 35’ #> 1384 Vedat Muriqi · 35’ #> 1385 Vedat Muriqi · 35’ #> 1386 Vedat Muriqi · 35’ #> 1387 Vedat Muriqi · 35’ #> 1388 Vedat Muriqi · 35’ #> 1389 Vedat Muriqi · 35’ #> 1390 Vedat Muriqi · 35’ #> 1391 Vedat Muriqi · 35’ #> 1392 Vedat Muriqi · 35’ #> 1393 Vedat Muriqi · 35’ #> 1394 Vedat Muriqi · 35’ #> 1395 Vedat Muriqi · 35’ #> 1396 Vedat Muriqi · 35’ #> 1397 Vedat Muriqi · 35’ #> 1398 Vedat Muriqi · 35’ #> 1399 Vedat Muriqi · 35’ #> 1400 Vedat Muriqi · 35’ #> 1401 Vedat Muriqi · 35’ #> 1402 Vedat Muriqi · 35’ #> 1403 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1404 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1405 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1406 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1407 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1408 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1409 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1410 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1411 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1412 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1413 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1414 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1415 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1416 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1417 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1418 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1419 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1420 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1421 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1422 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1423 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1424 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1425 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1426 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1427 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1428 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1429 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1430 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1431 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1432 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1433 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1434 Nicolás Ezequiel Fernández (OG) · 9’ Oihan Sancet (P) · 14’ Nico Williams · 22’ Álex Berenguer · 44’ #> 1435 Brais Méndez · 50’ #> 1436 Brais Méndez · 50’ #> 1437 Brais Méndez · 50’ #> 1438 Brais Méndez · 50’ #> 1439 Brais Méndez · 50’ #> 1440 Brais Méndez · 50’ #> 1441 Brais Méndez · 50’ #> 1442 Brais Méndez · 50’ #> 1443 Brais Méndez · 50’ #> 1444 Brais Méndez · 50’ #> 1445 Brais Méndez · 50’ #> 1446 Brais Méndez · 50’ #> 1447 Brais Méndez · 50’ #> 1448 Brais Méndez · 50’ #> 1449 Brais Méndez · 50’ #> 1450 Brais Méndez · 50’ #> 1451 Brais Méndez · 50’ #> 1452 Brais Méndez · 50’ #> 1453 Brais Méndez · 50’ #> 1454 Brais Méndez · 50’ #> 1455 Brais Méndez · 50’ #> 1456 Brais Méndez · 50’ #> 1457 Brais Méndez · 50’ #> 1458 Brais Méndez · 50’ #> 1459 Brais Méndez · 50’ #> 1460 Brais Méndez · 50’ #> 1461 Brais Méndez · 50’ #> 1462 Brais Méndez · 50’ #> 1463 Brais Méndez · 50’ #> 1464 Brais Méndez · 50’ #> 1465 Brais Méndez · 50’ #> 1466 #> 1467 #> 1468 #> 1469 #> 1470 #> 1471 #> 1472 #> 1473 #> 1474 #> 1475 #> 1476 #> 1477 #> 1478 #> 1479 #> 1480 #> 1481 #> 1482 #> 1483 #> 1484 #> 1485 #> 1486 #> 1487 #> 1488 #> 1489 #> 1490 #> 1491 #> 1492 #> 1493 #> 1494 #> 1495 #> 1496 Ezequiel Ávila · 28’ #> 1497 Ezequiel Ávila · 28’ #> 1498 Ezequiel Ávila · 28’ #> 1499 Ezequiel Ávila · 28’ #> 1500 Ezequiel Ávila · 28’ #> 1501 Ezequiel Ávila · 28’ #> 1502 Ezequiel Ávila · 28’ #> 1503 Ezequiel Ávila · 28’ #> 1504 Ezequiel Ávila · 28’ #> 1505 Ezequiel Ávila · 28’ #> 1506 Ezequiel Ávila · 28’ #> 1507 Ezequiel Ávila · 28’ #> 1508 Ezequiel Ávila · 28’ #> 1509 Ezequiel Ávila · 28’ #> 1510 Ezequiel Ávila · 28’ #> 1511 Ezequiel Ávila · 28’ #> 1512 Ezequiel Ávila · 28’ #> 1513 Ezequiel Ávila · 28’ #> 1514 Ezequiel Ávila · 28’ #> 1515 Ezequiel Ávila · 28’ #> 1516 Ezequiel Ávila · 28’ #> 1517 Ezequiel Ávila · 28’ #> 1518 Ezequiel Ávila · 28’ #> 1519 Ezequiel Ávila · 28’ #> 1520 Ezequiel Ávila · 28’ #> 1521 Ezequiel Ávila · 28’ #> 1522 Ezequiel Ávila · 28’ #> 1523 Ezequiel Ávila · 28’ #> 1524 Ezequiel Ávila · 28’ #> 1525 Ezequiel Ávila · 28’ #> 1526 Ezequiel Ávila · 28’ #> 1527 Ezequiel Ávila · 28’ #> 1528 Álvaro Negredo · 90+2’ #> 1529 Álvaro Negredo · 90+2’ #> 1530 Álvaro Negredo · 90+2’ #> 1531 Álvaro Negredo · 90+2’ #> 1532 Álvaro Negredo · 90+2’ #> 1533 Álvaro Negredo · 90+2’ #> 1534 Álvaro Negredo · 90+2’ #> 1535 Álvaro Negredo · 90+2’ #> 1536 Álvaro Negredo · 90+2’ #> 1537 Álvaro Negredo · 90+2’ #> 1538 Álvaro Negredo · 90+2’ #> 1539 Álvaro Negredo · 90+2’ #> 1540 Álvaro Negredo · 90+2’ #> 1541 Álvaro Negredo · 90+2’ #> 1542 Álvaro Negredo · 90+2’ #> 1543 Álvaro Negredo · 90+2’ #> 1544 Álvaro Negredo · 90+2’ #> 1545 Álvaro Negredo · 90+2’ #> 1546 Álvaro Negredo · 90+2’ #> 1547 Álvaro Negredo · 90+2’ #> 1548 Álvaro Negredo · 90+2’ #> 1549 Álvaro Negredo · 90+2’ #> 1550 Álvaro Negredo · 90+2’ #> 1551 Álvaro Negredo · 90+2’ #> 1552 Álvaro Negredo · 90+2’ #> 1553 Álvaro Negredo · 90+2’ #> 1554 Álvaro Negredo · 90+2’ #> 1555 Álvaro Negredo · 90+2’ #> 1556 Álvaro Negredo · 90+2’ #> 1557 Álvaro Negredo · 90+2’ #> 1558 Álvaro Negredo · 90+2’ #> 1559 Álvaro Negredo · 90+2’ #> 1560 #> 1561 #> 1562 #> 1563 #> 1564 #> 1565 #> 1566 #> 1567 #> 1568 #> 1569 #> 1570 #> 1571 #> 1572 #> 1573 #> 1574 #> 1575 #> 1576 #> 1577 #> 1578 #> 1579 #> 1580 #> 1581 #> 1582 #> 1583 #> 1584 #> 1585 #> 1586 #> 1587 #> 1588 #> 1589 #> 1590 #> 1591 Gonzalo Verdú · 14’ #> 1592 Gonzalo Verdú · 14’ #> 1593 Gonzalo Verdú · 14’ #> 1594 Gonzalo Verdú · 14’ #> 1595 Gonzalo Verdú · 14’ #> 1596 Gonzalo Verdú · 14’ #> 1597 Gonzalo Verdú · 14’ #> 1598 Gonzalo Verdú · 14’ #> 1599 Gonzalo Verdú · 14’ #> 1600 Gonzalo Verdú · 14’ #> 1601 Gonzalo Verdú · 14’ #> 1602 Gonzalo Verdú · 14’ #> 1603 Gonzalo Verdú · 14’ #> 1604 Gonzalo Verdú · 14’ #> 1605 Gonzalo Verdú · 14’ #> 1606 Gonzalo Verdú · 14’ #> 1607 Gonzalo Verdú · 14’ #> 1608 Gonzalo Verdú · 14’ #> 1609 Gonzalo Verdú · 14’ #> 1610 Gonzalo Verdú · 14’ #> 1611 Gonzalo Verdú · 14’ #> 1612 Gonzalo Verdú · 14’ #> 1613 Gonzalo Verdú · 14’ #> 1614 Gonzalo Verdú · 14’ #> 1615 Gonzalo Verdú · 14’ #> 1616 Gonzalo Verdú · 14’ #> 1617 Gonzalo Verdú · 14’ #> 1618 Gonzalo Verdú · 14’ #> 1619 Gonzalo Verdú · 14’ #> 1620 Gonzalo Verdú · 14’ #> 1621 Gonzalo Verdú · 14’ #> 1622 Gonzalo Verdú · 14’ #> 1623 Franco Cervi · 59’ #> 1624 Franco Cervi · 59’ #> 1625 Franco Cervi · 59’ #> 1626 Franco Cervi · 59’ #> 1627 Franco Cervi · 59’ #> 1628 Franco Cervi · 59’ #> 1629 Franco Cervi · 59’ #> 1630 Franco Cervi · 59’ #> 1631 Franco Cervi · 59’ #> 1632 Franco Cervi · 59’ #> 1633 Franco Cervi · 59’ #> 1634 Franco Cervi · 59’ #> 1635 Franco Cervi · 59’ #> 1636 Franco Cervi · 59’ #> 1637 Franco Cervi · 59’ #> 1638 Franco Cervi · 59’ #> 1639 Franco Cervi · 59’ #> 1640 Franco Cervi · 59’ #> 1641 Franco Cervi · 59’ #> 1642 Franco Cervi · 59’ #> 1643 Franco Cervi · 59’ #> 1644 Franco Cervi · 59’ #> 1645 Franco Cervi · 59’ #> 1646 Franco Cervi · 59’ #> 1647 Franco Cervi · 59’ #> 1648 Franco Cervi · 59’ #> 1649 Franco Cervi · 59’ #> 1650 Franco Cervi · 59’ #> 1651 Franco Cervi · 59’ #> 1652 Franco Cervi · 59’ #> 1653 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1654 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1655 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1656 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1657 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1658 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1659 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1660 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1661 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1662 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1663 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1664 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1665 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1666 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1667 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1668 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1669 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1670 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1671 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1672 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1673 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1674 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1675 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1676 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1677 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1678 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1679 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1680 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1681 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1682 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1683 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1684 Óscar Trejo · 5’ Radamel Falcao · 80’ #> 1685 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1686 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1687 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1688 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1689 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1690 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1691 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1692 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1693 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1694 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1695 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1696 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1697 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1698 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1699 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1700 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1701 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1702 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1703 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1704 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1705 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1706 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1707 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1708 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1709 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1710 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1711 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1712 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1713 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1714 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1715 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1716 Iglesias · 30’ Gastón Álvarez · 76’ Luis Milla · 90+1’ #> 1717 Óliver Torres · 8’ #> 1718 Óliver Torres · 8’ #> 1719 Óliver Torres · 8’ #> 1720 Óliver Torres · 8’ #> 1721 Óliver Torres · 8’ #> 1722 Óliver Torres · 8’ #> 1723 Óliver Torres · 8’ #> 1724 Óliver Torres · 8’ #> 1725 Óliver Torres · 8’ #> 1726 Óliver Torres · 8’ #> 1727 Óliver Torres · 8’ #> 1728 Óliver Torres · 8’ #> 1729 Óliver Torres · 8’ #> 1730 Óliver Torres · 8’ #> 1731 Óliver Torres · 8’ #> 1732 Óliver Torres · 8’ #> 1733 Óliver Torres · 8’ #> 1734 Óliver Torres · 8’ #> 1735 Óliver Torres · 8’ #> 1736 Óliver Torres · 8’ #> 1737 Óliver Torres · 8’ #> 1738 Óliver Torres · 8’ #> 1739 Óliver Torres · 8’ #> 1740 Óliver Torres · 8’ #> 1741 Óliver Torres · 8’ #> 1742 Óliver Torres · 8’ #> 1743 Óliver Torres · 8’ #> 1744 Óliver Torres · 8’ #> 1745 Óliver Torres · 8’ #> 1746 Óliver Torres · 8’ #> 1747 Óliver Torres · 8’ #> 1748 Óliver Torres · 8’ #> 1749 Arnau Martinez · 7’ #> 1750 Arnau Martinez · 7’ #> 1751 Arnau Martinez · 7’ #> 1752 Arnau Martinez · 7’ #> 1753 Arnau Martinez · 7’ #> 1754 Arnau Martinez · 7’ #> 1755 Arnau Martinez · 7’ #> 1756 Arnau Martinez · 7’ #> 1757 Arnau Martinez · 7’ #> 1758 Arnau Martinez · 7’ #> 1759 Arnau Martinez · 7’ #> 1760 Arnau Martinez · 7’ #> 1761 Arnau Martinez · 7’ #> 1762 Arnau Martinez · 7’ #> 1763 Arnau Martinez · 7’ #> 1764 Arnau Martinez · 7’ #> 1765 Arnau Martinez · 7’ #> 1766 Arnau Martinez · 7’ #> 1767 Arnau Martinez · 7’ #> 1768 Arnau Martinez · 7’ #> 1769 Arnau Martinez · 7’ #> 1770 Arnau Martinez · 7’ #> 1771 Arnau Martinez · 7’ #> 1772 Arnau Martinez · 7’ #> 1773 Arnau Martinez · 7’ #> 1774 Arnau Martinez · 7’ #> 1775 Arnau Martinez · 7’ #> 1776 Arnau Martinez · 7’ #> 1777 Arnau Martinez · 7’ #> 1778 Arnau Martinez · 7’ #> 1779 Arnau Martinez · 7’ #> 1780 Edu Expósito · 19’ #> 1781 Edu Expósito · 19’ #> 1782 Edu Expósito · 19’ #> 1783 Edu Expósito · 19’ #> 1784 Edu Expósito · 19’ #> 1785 Edu Expósito · 19’ #> 1786 Edu Expósito · 19’ #> 1787 Edu Expósito · 19’ #> 1788 Edu Expósito · 19’ #> 1789 Edu Expósito · 19’ #> 1790 Edu Expósito · 19’ #> 1791 Edu Expósito · 19’ #> 1792 Edu Expósito · 19’ #> 1793 Edu Expósito · 19’ #> 1794 Edu Expósito · 19’ #> 1795 Edu Expósito · 19’ #> 1796 Edu Expósito · 19’ #> 1797 Edu Expósito · 19’ #> 1798 Edu Expósito · 19’ #> 1799 Edu Expósito · 19’ #> 1800 Edu Expósito · 19’ #> 1801 Edu Expósito · 19’ #> 1802 Edu Expósito · 19’ #> 1803 Edu Expósito · 19’ #> 1804 Edu Expósito · 19’ #> 1805 Edu Expósito · 19’ #> 1806 Edu Expósito · 19’ #> 1807 Edu Expósito · 19’ #> 1808 Edu Expósito · 19’ #> 1809 Rodrygo · 18’ Federico Valverde · 36’ #> 1810 Rodrygo · 18’ Federico Valverde · 36’ #> 1811 Rodrygo · 18’ Federico Valverde · 36’ #> 1812 Rodrygo · 18’ Federico Valverde · 36’ #> 1813 Rodrygo · 18’ Federico Valverde · 36’ #> 1814 Rodrygo · 18’ Federico Valverde · 36’ #> 1815 Rodrygo · 18’ Federico Valverde · 36’ #> 1816 Rodrygo · 18’ Federico Valverde · 36’ #> 1817 Rodrygo · 18’ Federico Valverde · 36’ #> 1818 Rodrygo · 18’ Federico Valverde · 36’ #> 1819 Rodrygo · 18’ Federico Valverde · 36’ #> 1820 Rodrygo · 18’ Federico Valverde · 36’ #> 1821 Rodrygo · 18’ Federico Valverde · 36’ #> 1822 Rodrygo · 18’ Federico Valverde · 36’ #> 1823 Rodrygo · 18’ Federico Valverde · 36’ #> 1824 Rodrygo · 18’ Federico Valverde · 36’ #> 1825 Rodrygo · 18’ Federico Valverde · 36’ #> 1826 Rodrygo · 18’ Federico Valverde · 36’ #> 1827 Rodrygo · 18’ Federico Valverde · 36’ #> 1828 Rodrygo · 18’ Federico Valverde · 36’ #> 1829 Rodrygo · 18’ Federico Valverde · 36’ #> 1830 Rodrygo · 18’ Federico Valverde · 36’ #> 1831 Rodrygo · 18’ Federico Valverde · 36’ #> 1832 Rodrygo · 18’ Federico Valverde · 36’ #> 1833 Rodrygo · 18’ Federico Valverde · 36’ #> 1834 Rodrygo · 18’ Federico Valverde · 36’ #> 1835 Rodrygo · 18’ Federico Valverde · 36’ #> 1836 Rodrygo · 18’ Federico Valverde · 36’ #> 1837 Rodrygo · 18’ Federico Valverde · 36’ #> 1838 Rodrygo · 18’ Federico Valverde · 36’ #> 1839 Rodrygo · 18’ Federico Valverde · 36’ #> 1840 #> 1841 #> 1842 #> 1843 #> 1844 #> 1845 #> 1846 #> 1847 #> 1848 #> 1849 #> 1850 #> 1851 #> 1852 #> 1853 #> 1854 #> 1855 #> 1856 #> 1857 #> 1858 #> 1859 #> 1860 #> 1861 #> 1862 #> 1863 #> 1864 #> 1865 #> 1866 #> 1867 #> 1868 #> 1869 #> 1870 #> 1871 #> 1872 #> 1873 #> 1874 #> 1875 #> 1876 #> 1877 #> 1878 #> 1879 #> 1880 #> 1881 #> 1882 #> 1883 #> 1884 #> 1885 #> 1886 #> 1887 #> 1888 #> 1889 #> 1890 #> 1891 #> 1892 #> 1893 #> 1894 #> 1895 #> 1896 #> 1897 #> 1898 #> 1899 #> 1900 #> 1901 #> 1902 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1903 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1904 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1905 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1906 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1907 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1908 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1909 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1910 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1911 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1912 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1913 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1914 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1915 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1916 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1917 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1918 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1919 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1920 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1921 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1922 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1923 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1924 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1925 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1926 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1927 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1928 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1929 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1930 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1931 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1932 Sergio León (P) · 20’ Sergio León · 37’ Óscar Plano · 49’ #> 1933 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1934 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1935 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1936 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1937 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1938 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1939 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1940 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1941 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1942 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1943 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1944 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1945 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1946 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1947 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1948 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1949 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1950 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1951 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1952 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1953 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1954 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1955 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1956 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1957 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1958 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1959 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1960 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1961 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1962 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1963 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1964 Marcos Llorente · 29’ Álvaro Morata · 57’ #> 1965 Robert Lewandowski · 20’ #> 1966 Robert Lewandowski · 20’ #> 1967 Robert Lewandowski · 20’ #> 1968 Robert Lewandowski · 20’ #> 1969 Robert Lewandowski · 20’ #> 1970 Robert Lewandowski · 20’ #> 1971 Robert Lewandowski · 20’ #> 1972 Robert Lewandowski · 20’ #> 1973 Robert Lewandowski · 20’ #> 1974 Robert Lewandowski · 20’ #> 1975 Robert Lewandowski · 20’ #> 1976 Robert Lewandowski · 20’ #> 1977 Robert Lewandowski · 20’ #> 1978 Robert Lewandowski · 20’ #> 1979 Robert Lewandowski · 20’ #> 1980 Robert Lewandowski · 20’ #> 1981 Robert Lewandowski · 20’ #> 1982 Robert Lewandowski · 20’ #> 1983 Robert Lewandowski · 20’ #> 1984 Robert Lewandowski · 20’ #> 1985 Robert Lewandowski · 20’ #> 1986 Robert Lewandowski · 20’ #> 1987 Robert Lewandowski · 20’ #> 1988 Robert Lewandowski · 20’ #> 1989 Robert Lewandowski · 20’ #> 1990 Robert Lewandowski · 20’ #> 1991 Robert Lewandowski · 20’ #> 1992 Robert Lewandowski · 20’ #> 1993 Robert Lewandowski · 20’ #> 1994 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 1995 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 1996 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 1997 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 1998 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 1999 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2000 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2001 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2002 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2003 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2004 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2005 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2006 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2007 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2008 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2009 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2010 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2011 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2012 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2013 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2014 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2015 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2016 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2017 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2018 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2019 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2020 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2021 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2022 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2023 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2024 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2025 Gabriel Paulista · 53’ Marcos André · 85’ Eray Cömert · 90+6’ #> 2026 Luiz Felipe · 20’ #> 2027 Luiz Felipe · 20’ #> 2028 Luiz Felipe · 20’ #> 2029 Luiz Felipe · 20’ #> 2030 Luiz Felipe · 20’ #> 2031 Luiz Felipe · 20’ #> 2032 Luiz Felipe · 20’ #> 2033 Luiz Felipe · 20’ #> 2034 Luiz Felipe · 20’ #> 2035 Luiz Felipe · 20’ #> 2036 Luiz Felipe · 20’ #> 2037 Luiz Felipe · 20’ #> 2038 Luiz Felipe · 20’ #> 2039 Luiz Felipe · 20’ #> 2040 Luiz Felipe · 20’ #> Away_Yellow_Cards Away_Red_Cards #> 1 3 0 #> 2 3 0 #> 3 3 0 #> 4 3 0 #> 5 3 0 #> 6 3 0 #> 7 3 0 #> 8 3 0 #> 9 3 0 #> 10 3 0 #> 11 3 0 #> 12 3 0 #> 13 3 0 #> 14 3 0 #> 15 3 0 #> 16 3 0 #> 17 3 0 #> 18 3 0 #> 19 3 0 #> 20 3 0 #> 21 3 0 #> 22 3 0 #> 23 3 0 #> 24 3 0 #> 25 3 0 #> 26 3 0 #> 27 3 0 #> 28 3 0 #> 29 3 0 #> 30 3 0 #> 31 3 0 #> 32 3 0 #> 33 2 0 #> 34 2 0 #> 35 2 0 #> 36 2 0 #> 37 2 0 #> 38 2 0 #> 39 2 0 #> 40 2 0 #> 41 2 0 #> 42 2 0 #> 43 2 0 #> 44 2 0 #> 45 2 0 #> 46 2 0 #> 47 2 0 #> 48 2 0 #> 49 2 0 #> 50 2 0 #> 51 2 0 #> 52 2 0 #> 53 2 0 #> 54 2 0 #> 55 2 0 #> 56 2 0 #> 57 2 0 #> 58 2 0 #> 59 2 0 #> 60 2 0 #> 61 2 0 #> 62 2 0 #> 63 0 0 #> 64 0 0 #> 65 0 0 #> 66 0 0 #> 67 0 0 #> 68 0 0 #> 69 0 0 #> 70 0 0 #> 71 0 0 #> 72 0 0 #> 73 0 0 #> 74 0 0 #> 75 0 0 #> 76 0 0 #> 77 0 0 #> 78 0 0 #> 79 0 0 #> 80 0 0 #> 81 0 0 #> 82 0 0 #> 83 0 0 #> 84 0 0 #> 85 0 0 #> 86 0 0 #> 87 0 0 #> 88 0 0 #> 89 0 0 #> 90 0 0 #> 91 0 0 #> 92 0 0 #> 93 0 0 #> 94 6 0 #> 95 6 0 #> 96 6 0 #> 97 6 0 #> 98 6 0 #> 99 6 0 #> 100 6 0 #> 101 6 0 #> 102 6 0 #> 103 6 0 #> 104 6 0 #> 105 6 0 #> 106 6 0 #> 107 6 0 #> 108 6 0 #> 109 6 0 #> 110 6 0 #> 111 6 0 #> 112 6 0 #> 113 6 0 #> 114 6 0 #> 115 6 0 #> 116 6 0 #> 117 6 0 #> 118 6 0 #> 119 6 0 #> 120 6 0 #> 121 6 0 #> 122 6 0 #> 123 6 0 #> 124 6 0 #> 125 2 0 #> 126 2 0 #> 127 2 0 #> 128 2 0 #> 129 2 0 #> 130 2 0 #> 131 2 0 #> 132 2 0 #> 133 2 0 #> 134 2 0 #> 135 2 0 #> 136 2 0 #> 137 2 0 #> 138 2 0 #> 139 2 0 #> 140 2 0 #> 141 2 0 #> 142 2 0 #> 143 2 0 #> 144 2 0 #> 145 2 0 #> 146 2 0 #> 147 2 0 #> 148 2 0 #> 149 2 0 #> 150 2 0 #> 151 2 0 #> 152 2 0 #> 153 2 0 #> 154 2 0 #> 155 2 0 #> 156 2 0 #> 157 3 0 #> 158 3 0 #> 159 3 0 #> 160 3 0 #> 161 3 0 #> 162 3 0 #> 163 3 0 #> 164 3 0 #> 165 3 0 #> 166 3 0 #> 167 3 0 #> 168 3 0 #> 169 3 0 #> 170 3 0 #> 171 3 0 #> 172 3 0 #> 173 3 0 #> 174 3 0 #> 175 3 0 #> 176 3 0 #> 177 3 0 #> 178 3 0 #> 179 3 0 #> 180 3 0 #> 181 3 0 #> 182 3 0 #> 183 3 0 #> 184 3 0 #> 185 3 0 #> 186 3 0 #> 187 3 0 #> 188 3 0 #> 189 1 0 #> 190 1 0 #> 191 1 0 #> 192 1 0 #> 193 1 0 #> 194 1 0 #> 195 1 0 #> 196 1 0 #> 197 1 0 #> 198 1 0 #> 199 1 0 #> 200 1 0 #> 201 1 0 #> 202 1 0 #> 203 1 0 #> 204 1 0 #> 205 1 0 #> 206 1 0 #> 207 1 0 #> 208 1 0 #> 209 1 0 #> 210 1 0 #> 211 1 0 #> 212 1 0 #> 213 1 0 #> 214 1 0 #> 215 1 0 #> 216 1 0 #> 217 1 0 #> 218 1 0 #> 219 1 0 #> 220 1 0 #> 221 6 0 #> 222 6 0 #> 223 6 0 #> 224 6 0 #> 225 6 0 #> 226 6 0 #> 227 6 0 #> 228 6 0 #> 229 6 0 #> 230 6 0 #> 231 6 0 #> 232 6 0 #> 233 6 0 #> 234 6 0 #> 235 6 0 #> 236 6 0 #> 237 6 0 #> 238 6 0 #> 239 6 0 #> 240 6 0 #> 241 6 0 #> 242 6 0 #> 243 6 0 #> 244 6 0 #> 245 6 0 #> 246 6 0 #> 247 6 0 #> 248 6 0 #> 249 6 0 #> 250 6 0 #> 251 6 0 #> 252 1 0 #> 253 1 0 #> 254 1 0 #> 255 1 0 #> 256 1 0 #> 257 1 0 #> 258 1 0 #> 259 1 0 #> 260 1 0 #> 261 1 0 #> 262 1 0 #> 263 1 0 #> 264 1 0 #> 265 1 0 #> 266 1 0 #> 267 1 0 #> 268 1 0 #> 269 1 0 #> 270 1 0 #> 271 1 0 #> 272 1 0 #> 273 1 0 #> 274 1 0 #> 275 1 0 #> 276 1 0 #> 277 1 0 #> 278 1 0 #> 279 1 0 #> 280 1 0 #> 281 1 0 #> 282 1 0 #> 283 6 1 #> 284 6 1 #> 285 6 1 #> 286 6 1 #> 287 6 1 #> 288 6 1 #> 289 6 1 #> 290 6 1 #> 291 6 1 #> 292 6 1 #> 293 6 1 #> 294 6 1 #> 295 6 1 #> 296 6 1 #> 297 6 1 #> 298 6 1 #> 299 6 1 #> 300 6 1 #> 301 6 1 #> 302 6 1 #> 303 6 1 #> 304 6 1 #> 305 6 1 #> 306 6 1 #> 307 6 1 #> 308 6 1 #> 309 6 1 #> 310 6 1 #> 311 6 1 #> 312 6 1 #> 313 6 1 #> 314 6 1 #> 315 6 1 #> 316 6 1 #> 317 6 1 #> 318 6 1 #> 319 6 1 #> 320 6 1 #> 321 6 1 #> 322 6 1 #> 323 6 1 #> 324 6 1 #> 325 6 1 #> 326 6 1 #> 327 6 1 #> 328 6 1 #> 329 6 1 #> 330 6 1 #> 331 6 1 #> 332 6 1 #> 333 6 1 #> 334 6 1 #> 335 6 1 #> 336 6 1 #> 337 6 1 #> 338 6 1 #> 339 6 1 #> 340 6 1 #> 341 6 1 #> 342 6 1 #> 343 6 1 #> 344 6 1 #> 345 6 1 #> 346 2 1 #> 347 2 1 #> 348 2 1 #> 349 2 1 #> 350 2 1 #> 351 2 1 #> 352 2 1 #> 353 2 1 #> 354 2 1 #> 355 2 1 #> 356 2 1 #> 357 2 1 #> 358 2 1 #> 359 2 1 #> 360 2 1 #> 361 2 1 #> 362 2 1 #> 363 2 1 #> 364 2 1 #> 365 2 1 #> 366 2 1 #> 367 2 1 #> 368 2 1 #> 369 2 1 #> 370 2 1 #> 371 2 1 #> 372 2 1 #> 373 2 1 #> 374 2 1 #> 375 2 1 #> 376 2 1 #> 377 2 1 #> 378 6 1 #> 379 6 1 #> 380 6 1 #> 381 6 1 #> 382 6 1 #> 383 6 1 #> 384 6 1 #> 385 6 1 #> 386 6 1 #> 387 6 1 #> 388 6 1 #> 389 6 1 #> 390 6 1 #> 391 6 1 #> 392 6 1 #> 393 6 1 #> 394 6 1 #> 395 6 1 #> 396 6 1 #> 397 6 1 #> 398 6 1 #> 399 6 1 #> 400 6 1 #> 401 6 1 #> 402 6 1 #> 403 6 1 #> 404 6 1 #> 405 6 1 #> 406 6 1 #> 407 6 1 #> 408 6 1 #> 409 6 1 #> 410 8 0 #> 411 8 0 #> 412 8 0 #> 413 8 0 #> 414 8 0 #> 415 8 0 #> 416 8 0 #> 417 8 0 #> 418 8 0 #> 419 8 0 #> 420 8 0 #> 421 8 0 #> 422 8 0 #> 423 8 0 #> 424 8 0 #> 425 8 0 #> 426 8 0 #> 427 8 0 #> 428 8 0 #> 429 8 0 #> 430 8 0 #> 431 8 0 #> 432 8 0 #> 433 8 0 #> 434 8 0 #> 435 8 0 #> 436 8 0 #> 437 8 0 #> 438 8 0 #> 439 2 0 #> 440 2 0 #> 441 2 0 #> 442 2 0 #> 443 2 0 #> 444 2 0 #> 445 2 0 #> 446 2 0 #> 447 2 0 #> 448 2 0 #> 449 2 0 #> 450 2 0 #> 451 2 0 #> 452 2 0 #> 453 2 0 #> 454 2 0 #> 455 2 0 #> 456 2 0 #> 457 2 0 #> 458 2 0 #> 459 2 0 #> 460 2 0 #> 461 2 0 #> 462 2 0 #> 463 2 0 #> 464 2 0 #> 465 2 0 #> 466 2 0 #> 467 2 0 #> 468 2 0 #> 469 2 0 #> 470 2 0 #> 471 2 0 #> 472 2 0 #> 473 2 0 #> 474 2 0 #> 475 2 0 #> 476 2 0 #> 477 2 0 #> 478 2 0 #> 479 2 0 #> 480 2 0 #> 481 2 0 #> 482 2 0 #> 483 2 0 #> 484 2 0 #> 485 2 0 #> 486 2 0 #> 487 2 0 #> 488 2 0 #> 489 2 0 #> 490 2 0 #> 491 2 0 #> 492 2 0 #> 493 2 0 #> 494 2 0 #> 495 2 0 #> 496 2 0 #> 497 2 0 #> 498 2 0 #> 499 2 0 #> 500 2 0 #> 501 3 0 #> 502 3 0 #> 503 3 0 #> 504 3 0 #> 505 3 0 #> 506 3 0 #> 507 3 0 #> 508 3 0 #> 509 3 0 #> 510 3 0 #> 511 3 0 #> 512 3 0 #> 513 3 0 #> 514 3 0 #> 515 3 0 #> 516 3 0 #> 517 3 0 #> 518 3 0 #> 519 3 0 #> 520 3 0 #> 521 3 0 #> 522 3 0 #> 523 3 0 #> 524 3 0 #> 525 3 0 #> 526 3 0 #> 527 3 0 #> 528 3 0 #> 529 3 0 #> 530 3 0 #> 531 3 0 #> 532 1 0 #> 533 1 0 #> 534 1 0 #> 535 1 0 #> 536 1 0 #> 537 1 0 #> 538 1 0 #> 539 1 0 #> 540 1 0 #> 541 1 0 #> 542 1 0 #> 543 1 0 #> 544 1 0 #> 545 1 0 #> 546 1 0 #> 547 1 0 #> 548 1 0 #> 549 1 0 #> 550 1 0 #> 551 1 0 #> 552 1 0 #> 553 1 0 #> 554 1 0 #> 555 1 0 #> 556 1 0 #> 557 1 0 #> 558 1 0 #> 559 1 0 #> 560 1 0 #> 561 1 0 #> 562 1 0 #> 563 1 0 #> 564 6 1 #> 565 6 1 #> 566 6 1 #> 567 6 1 #> 568 6 1 #> 569 6 1 #> 570 6 1 #> 571 6 1 #> 572 6 1 #> 573 6 1 #> 574 6 1 #> 575 6 1 #> 576 6 1 #> 577 6 1 #> 578 6 1 #> 579 6 1 #> 580 6 1 #> 581 6 1 #> 582 6 1 #> 583 6 1 #> 584 6 1 #> 585 6 1 #> 586 6 1 #> 587 6 1 #> 588 6 1 #> 589 6 1 #> 590 6 1 #> 591 6 1 #> 592 1 0 #> 593 1 0 #> 594 1 0 #> 595 1 0 #> 596 1 0 #> 597 1 0 #> 598 1 0 #> 599 1 0 #> 600 1 0 #> 601 1 0 #> 602 1 0 #> 603 1 0 #> 604 1 0 #> 605 1 0 #> 606 1 0 #> 607 1 0 #> 608 1 0 #> 609 1 0 #> 610 1 0 #> 611 1 0 #> 612 1 0 #> 613 1 0 #> 614 1 0 #> 615 1 0 #> 616 1 0 #> 617 1 0 #> 618 1 0 #> 619 1 0 #> 620 1 0 #> 621 1 0 #> 622 1 0 #> 623 3 0 #> 624 3 0 #> 625 3 0 #> 626 3 0 #> 627 3 0 #> 628 3 0 #> 629 3 0 #> 630 3 0 #> 631 3 0 #> 632 3 0 #> 633 3 0 #> 634 3 0 #> 635 3 0 #> 636 3 0 #> 637 3 0 #> 638 3 0 #> 639 3 0 #> 640 3 0 #> 641 3 0 #> 642 3 0 #> 643 3 0 #> 644 3 0 #> 645 3 0 #> 646 3 0 #> 647 3 0 #> 648 3 0 #> 649 3 0 #> 650 3 0 #> 651 3 0 #> 652 3 0 #> 653 3 0 #> 654 3 0 #> 655 3 0 #> 656 3 0 #> 657 3 0 #> 658 3 0 #> 659 3 0 #> 660 3 0 #> 661 3 0 #> 662 3 0 #> 663 3 0 #> 664 3 0 #> 665 3 0 #> 666 3 0 #> 667 3 0 #> 668 3 0 #> 669 3 0 #> 670 3 0 #> 671 3 0 #> 672 3 0 #> 673 3 0 #> 674 3 0 #> 675 3 0 #> 676 3 0 #> 677 3 0 #> 678 3 0 #> 679 3 0 #> 680 3 0 #> 681 3 0 #> 682 3 0 #> 683 3 0 #> 684 3 0 #> 685 3 0 #> 686 3 0 #> 687 3 0 #> 688 3 0 #> 689 3 0 #> 690 3 0 #> 691 3 0 #> 692 3 0 #> 693 3 0 #> 694 3 0 #> 695 3 0 #> 696 3 0 #> 697 3 0 #> 698 3 0 #> 699 3 0 #> 700 3 0 #> 701 3 0 #> 702 3 0 #> 703 3 0 #> 704 3 0 #> 705 3 0 #> 706 3 0 #> 707 3 0 #> 708 3 0 #> 709 3 0 #> 710 3 0 #> 711 3 0 #> 712 3 0 #> 713 3 0 #> 714 3 0 #> 715 3 0 #> 716 3 0 #> 717 8 0 #> 718 8 0 #> 719 8 0 #> 720 8 0 #> 721 8 0 #> 722 8 0 #> 723 8 0 #> 724 8 0 #> 725 8 0 #> 726 8 0 #> 727 8 0 #> 728 8 0 #> 729 8 0 #> 730 8 0 #> 731 8 0 #> 732 8 0 #> 733 8 0 #> 734 8 0 #> 735 8 0 #> 736 8 0 #> 737 8 0 #> 738 8 0 #> 739 8 0 #> 740 8 0 #> 741 8 0 #> 742 8 0 #> 743 8 0 #> 744 8 0 #> 745 8 0 #> 746 8 0 #> 747 8 0 #> 748 8 0 #> 749 5 0 #> 750 5 0 #> 751 5 0 #> 752 5 0 #> 753 5 0 #> 754 5 0 #> 755 5 0 #> 756 5 0 #> 757 5 0 #> 758 5 0 #> 759 5 0 #> 760 5 0 #> 761 5 0 #> 762 5 0 #> 763 5 0 #> 764 5 0 #> 765 5 0 #> 766 5 0 #> 767 5 0 #> 768 5 0 #> 769 5 0 #> 770 5 0 #> 771 5 0 #> 772 5 0 #> 773 5 0 #> 774 5 0 #> 775 5 0 #> 776 5 0 #> 777 5 0 #> 778 5 0 #> 779 3 0 #> 780 3 0 #> 781 3 0 #> 782 3 0 #> 783 3 0 #> 784 3 0 #> 785 3 0 #> 786 3 0 #> 787 3 0 #> 788 3 0 #> 789 3 0 #> 790 3 0 #> 791 3 0 #> 792 3 0 #> 793 3 0 #> 794 3 0 #> 795 3 0 #> 796 3 0 #> 797 3 0 #> 798 3 0 #> 799 3 0 #> 800 3 0 #> 801 3 0 #> 802 3 0 #> 803 3 0 #> 804 3 0 #> 805 3 0 #> 806 3 0 #> 807 3 0 #> 808 3 0 #> 809 3 0 #> 810 3 0 #> 811 0 0 #> 812 0 0 #> 813 0 0 #> 814 0 0 #> 815 0 0 #> 816 0 0 #> 817 0 0 #> 818 0 0 #> 819 0 0 #> 820 0 0 #> 821 0 0 #> 822 0 0 #> 823 0 0 #> 824 0 0 #> 825 0 0 #> 826 0 0 #> 827 0 0 #> 828 0 0 #> 829 0 0 #> 830 0 0 #> 831 0 0 #> 832 0 0 #> 833 0 0 #> 834 0 0 #> 835 0 0 #> 836 0 0 #> 837 0 0 #> 838 0 0 #> 839 0 0 #> 840 1 0 #> 841 1 0 #> 842 1 0 #> 843 1 0 #> 844 1 0 #> 845 1 0 #> 846 1 0 #> 847 1 0 #> 848 1 0 #> 849 1 0 #> 850 1 0 #> 851 1 0 #> 852 1 0 #> 853 1 0 #> 854 1 0 #> 855 1 0 #> 856 1 0 #> 857 1 0 #> 858 1 0 #> 859 1 0 #> 860 1 0 #> 861 1 0 #> 862 1 0 #> 863 1 0 #> 864 1 0 #> 865 1 0 #> 866 1 0 #> 867 1 0 #> 868 1 0 #> 869 1 0 #> 870 1 0 #> 871 1 0 #> 872 3 0 #> 873 3 0 #> 874 3 0 #> 875 3 0 #> 876 3 0 #> 877 3 0 #> 878 3 0 #> 879 3 0 #> 880 3 0 #> 881 3 0 #> 882 3 0 #> 883 3 0 #> 884 3 0 #> 885 3 0 #> 886 3 0 #> 887 3 0 #> 888 3 0 #> 889 3 0 #> 890 3 0 #> 891 3 0 #> 892 3 0 #> 893 3 0 #> 894 3 0 #> 895 3 0 #> 896 3 0 #> 897 3 0 #> 898 3 0 #> 899 3 0 #> 900 3 0 #> 901 3 0 #> 902 3 0 #> 903 3 0 #> 904 2 0 #> 905 2 0 #> 906 2 0 #> 907 2 0 #> 908 2 0 #> 909 2 0 #> 910 2 0 #> 911 2 0 #> 912 2 0 #> 913 2 0 #> 914 2 0 #> 915 2 0 #> 916 2 0 #> 917 2 0 #> 918 2 0 #> 919 2 0 #> 920 2 0 #> 921 2 0 #> 922 2 0 #> 923 2 0 #> 924 2 0 #> 925 2 0 #> 926 2 0 #> 927 2 0 #> 928 2 0 #> 929 2 0 #> 930 2 0 #> 931 2 0 #> 932 2 0 #> 933 2 0 #> 934 2 0 #> 935 2 0 #> 936 2 0 #> 937 2 0 #> 938 2 0 #> 939 2 0 #> 940 2 0 #> 941 2 0 #> 942 2 0 #> 943 2 0 #> 944 2 0 #> 945 2 0 #> 946 2 0 #> 947 2 0 #> 948 2 0 #> 949 2 0 #> 950 2 0 #> 951 2 0 #> 952 2 0 #> 953 2 0 #> 954 2 0 #> 955 2 0 #> 956 2 0 #> 957 2 0 #> 958 2 0 #> 959 2 0 #> 960 2 0 #> 961 2 0 #> 962 2 0 #> 963 2 0 #> 964 2 0 #> 965 2 0 #> 966 1 0 #> 967 1 0 #> 968 1 0 #> 969 1 0 #> 970 1 0 #> 971 1 0 #> 972 1 0 #> 973 1 0 #> 974 1 0 #> 975 1 0 #> 976 1 0 #> 977 1 0 #> 978 1 0 #> 979 1 0 #> 980 1 0 #> 981 1 0 #> 982 1 0 #> 983 1 0 #> 984 1 0 #> 985 1 0 #> 986 1 0 #> 987 1 0 #> 988 1 0 #> 989 1 0 #> 990 1 0 #> 991 1 0 #> 992 1 0 #> 993 1 0 #> 994 1 0 #> 995 1 0 #> 996 4 0 #> 997 4 0 #> 998 4 0 #> 999 4 0 #> 1000 4 0 #> 1001 4 0 #> 1002 4 0 #> 1003 4 0 #> 1004 4 0 #> 1005 4 0 #> 1006 4 0 #> 1007 4 0 #> 1008 4 0 #> 1009 4 0 #> 1010 4 0 #> 1011 4 0 #> 1012 4 0 #> 1013 4 0 #> 1014 4 0 #> 1015 4 0 #> 1016 4 0 #> 1017 4 0 #> 1018 4 0 #> 1019 4 0 #> 1020 4 0 #> 1021 4 0 #> 1022 4 0 #> 1023 4 0 #> 1024 4 0 #> 1025 4 0 #> 1026 4 0 #> 1027 4 0 #> 1028 4 0 #> 1029 4 0 #> 1030 4 0 #> 1031 4 0 #> 1032 4 0 #> 1033 4 0 #> 1034 4 0 #> 1035 4 0 #> 1036 4 0 #> 1037 4 0 #> 1038 4 0 #> 1039 4 0 #> 1040 4 0 #> 1041 4 0 #> 1042 4 0 #> 1043 4 0 #> 1044 4 0 #> 1045 4 0 #> 1046 4 0 #> 1047 4 0 #> 1048 4 0 #> 1049 4 0 #> 1050 4 0 #> 1051 4 0 #> 1052 4 0 #> 1053 4 0 #> 1054 4 0 #> 1055 4 0 #> 1056 4 0 #> 1057 4 0 #> 1058 4 0 #> 1059 4 0 #> 1060 2 0 #> 1061 2 0 #> 1062 2 0 #> 1063 2 0 #> 1064 2 0 #> 1065 2 0 #> 1066 2 0 #> 1067 2 0 #> 1068 2 0 #> 1069 2 0 #> 1070 2 0 #> 1071 2 0 #> 1072 2 0 #> 1073 2 0 #> 1074 2 0 #> 1075 2 0 #> 1076 2 0 #> 1077 2 0 #> 1078 2 0 #> 1079 2 0 #> 1080 2 0 #> 1081 2 0 #> 1082 2 0 #> 1083 2 0 #> 1084 2 0 #> 1085 2 0 #> 1086 2 0 #> 1087 2 0 #> 1088 2 0 #> 1089 2 0 #> 1090 2 0 #> 1091 2 0 #> 1092 2 0 #> 1093 2 0 #> 1094 2 0 #> 1095 2 0 #> 1096 2 0 #> 1097 2 0 #> 1098 2 0 #> 1099 2 0 #> 1100 2 0 #> 1101 2 0 #> 1102 2 0 #> 1103 2 0 #> 1104 2 0 #> 1105 2 0 #> 1106 2 0 #> 1107 2 0 #> 1108 2 0 #> 1109 2 0 #> 1110 2 0 #> 1111 2 0 #> 1112 2 0 #> 1113 2 0 #> 1114 2 0 #> 1115 2 0 #> 1116 2 0 #> 1117 2 0 #> 1118 2 0 #> 1119 2 0 #> 1120 2 0 #> 1121 2 0 #> 1122 3 0 #> 1123 3 0 #> 1124 3 0 #> 1125 3 0 #> 1126 3 0 #> 1127 3 0 #> 1128 3 0 #> 1129 3 0 #> 1130 3 0 #> 1131 3 0 #> 1132 3 0 #> 1133 3 0 #> 1134 3 0 #> 1135 3 0 #> 1136 3 0 #> 1137 3 0 #> 1138 3 0 #> 1139 3 0 #> 1140 3 0 #> 1141 3 0 #> 1142 3 0 #> 1143 3 0 #> 1144 3 0 #> 1145 3 0 #> 1146 3 0 #> 1147 3 0 #> 1148 3 0 #> 1149 3 0 #> 1150 3 0 #> 1151 3 0 #> 1152 3 0 #> 1153 3 0 #> 1154 7 1 #> 1155 7 1 #> 1156 7 1 #> 1157 7 1 #> 1158 7 1 #> 1159 7 1 #> 1160 7 1 #> 1161 7 1 #> 1162 7 1 #> 1163 7 1 #> 1164 7 1 #> 1165 7 1 #> 1166 7 1 #> 1167 7 1 #> 1168 7 1 #> 1169 7 1 #> 1170 7 1 #> 1171 7 1 #> 1172 7 1 #> 1173 7 1 #> 1174 7 1 #> 1175 7 1 #> 1176 7 1 #> 1177 7 1 #> 1178 7 1 #> 1179 7 1 #> 1180 7 1 #> 1181 7 1 #> 1182 7 1 #> 1183 7 1 #> 1184 7 1 #> 1185 7 1 #> 1186 6 0 #> 1187 6 0 #> 1188 6 0 #> 1189 6 0 #> 1190 6 0 #> 1191 6 0 #> 1192 6 0 #> 1193 6 0 #> 1194 6 0 #> 1195 6 0 #> 1196 6 0 #> 1197 6 0 #> 1198 6 0 #> 1199 6 0 #> 1200 6 0 #> 1201 6 0 #> 1202 6 0 #> 1203 6 0 #> 1204 6 0 #> 1205 6 0 #> 1206 6 0 #> 1207 6 0 #> 1208 6 0 #> 1209 6 0 #> 1210 6 0 #> 1211 6 0 #> 1212 6 0 #> 1213 6 0 #> 1214 6 0 #> 1215 6 0 #> 1216 6 0 #> 1217 2 0 #> 1218 2 0 #> 1219 2 0 #> 1220 2 0 #> 1221 2 0 #> 1222 2 0 #> 1223 2 0 #> 1224 2 0 #> 1225 2 0 #> 1226 2 0 #> 1227 2 0 #> 1228 2 0 #> 1229 2 0 #> 1230 2 0 #> 1231 2 0 #> 1232 2 0 #> 1233 2 0 #> 1234 2 0 #> 1235 2 0 #> 1236 2 0 #> 1237 2 0 #> 1238 2 0 #> 1239 2 0 #> 1240 2 0 #> 1241 2 0 #> 1242 2 0 #> 1243 2 0 #> 1244 2 0 #> 1245 2 0 #> 1246 2 0 #> 1247 2 0 #> 1248 2 0 #> 1249 2 0 #> 1250 2 0 #> 1251 2 0 #> 1252 2 0 #> 1253 2 0 #> 1254 2 0 #> 1255 2 0 #> 1256 2 0 #> 1257 2 0 #> 1258 2 0 #> 1259 2 0 #> 1260 2 0 #> 1261 2 0 #> 1262 2 0 #> 1263 2 0 #> 1264 2 0 #> 1265 2 0 #> 1266 2 0 #> 1267 2 0 #> 1268 2 0 #> 1269 2 0 #> 1270 2 0 #> 1271 2 0 #> 1272 2 0 #> 1273 2 0 #> 1274 2 0 #> 1275 2 0 #> 1276 2 0 #> 1277 2 0 #> 1278 2 0 #> 1279 2 0 #> 1280 6 1 #> 1281 6 1 #> 1282 6 1 #> 1283 6 1 #> 1284 6 1 #> 1285 6 1 #> 1286 6 1 #> 1287 6 1 #> 1288 6 1 #> 1289 6 1 #> 1290 6 1 #> 1291 6 1 #> 1292 6 1 #> 1293 6 1 #> 1294 6 1 #> 1295 6 1 #> 1296 6 1 #> 1297 6 1 #> 1298 6 1 #> 1299 6 1 #> 1300 6 1 #> 1301 6 1 #> 1302 6 1 #> 1303 6 1 #> 1304 6 1 #> 1305 6 1 #> 1306 6 1 #> 1307 6 1 #> 1308 6 1 #> 1309 6 1 #> 1310 6 1 #> 1311 2 0 #> 1312 2 0 #> 1313 2 0 #> 1314 2 0 #> 1315 2 0 #> 1316 2 0 #> 1317 2 0 #> 1318 2 0 #> 1319 2 0 #> 1320 2 0 #> 1321 2 0 #> 1322 2 0 #> 1323 2 0 #> 1324 2 0 #> 1325 2 0 #> 1326 2 0 #> 1327 2 0 #> 1328 2 0 #> 1329 2 0 #> 1330 2 0 #> 1331 2 0 #> 1332 2 0 #> 1333 2 0 #> 1334 2 0 #> 1335 2 0 #> 1336 2 0 #> 1337 2 0 #> 1338 2 0 #> 1339 2 0 #> 1340 2 0 #> 1341 2 0 #> 1342 2 0 #> 1343 3 0 #> 1344 3 0 #> 1345 3 0 #> 1346 3 0 #> 1347 3 0 #> 1348 3 0 #> 1349 3 0 #> 1350 3 0 #> 1351 3 0 #> 1352 3 0 #> 1353 3 0 #> 1354 3 0 #> 1355 3 0 #> 1356 3 0 #> 1357 3 0 #> 1358 3 0 #> 1359 3 0 #> 1360 3 0 #> 1361 3 0 #> 1362 3 0 #> 1363 3 0 #> 1364 3 0 #> 1365 3 0 #> 1366 3 0 #> 1367 3 0 #> 1368 3 0 #> 1369 3 0 #> 1370 3 0 #> 1371 3 0 #> 1372 5 0 #> 1373 5 0 #> 1374 5 0 #> 1375 5 0 #> 1376 5 0 #> 1377 5 0 #> 1378 5 0 #> 1379 5 0 #> 1380 5 0 #> 1381 5 0 #> 1382 5 0 #> 1383 5 0 #> 1384 5 0 #> 1385 5 0 #> 1386 5 0 #> 1387 5 0 #> 1388 5 0 #> 1389 5 0 #> 1390 5 0 #> 1391 5 0 #> 1392 5 0 #> 1393 5 0 #> 1394 5 0 #> 1395 5 0 #> 1396 5 0 #> 1397 5 0 #> 1398 5 0 #> 1399 5 0 #> 1400 5 0 #> 1401 5 0 #> 1402 5 0 #> 1403 0 0 #> 1404 0 0 #> 1405 0 0 #> 1406 0 0 #> 1407 0 0 #> 1408 0 0 #> 1409 0 0 #> 1410 0 0 #> 1411 0 0 #> 1412 0 0 #> 1413 0 0 #> 1414 0 0 #> 1415 0 0 #> 1416 0 0 #> 1417 0 0 #> 1418 0 0 #> 1419 0 0 #> 1420 0 0 #> 1421 0 0 #> 1422 0 0 #> 1423 0 0 #> 1424 0 0 #> 1425 0 0 #> 1426 0 0 #> 1427 0 0 #> 1428 0 0 #> 1429 0 0 #> 1430 0 0 #> 1431 0 0 #> 1432 0 0 #> 1433 0 0 #> 1434 0 0 #> 1435 1 0 #> 1436 1 0 #> 1437 1 0 #> 1438 1 0 #> 1439 1 0 #> 1440 1 0 #> 1441 1 0 #> 1442 1 0 #> 1443 1 0 #> 1444 1 0 #> 1445 1 0 #> 1446 1 0 #> 1447 1 0 #> 1448 1 0 #> 1449 1 0 #> 1450 1 0 #> 1451 1 0 #> 1452 1 0 #> 1453 1 0 #> 1454 1 0 #> 1455 1 0 #> 1456 1 0 #> 1457 1 0 #> 1458 1 0 #> 1459 1 0 #> 1460 1 0 #> 1461 1 0 #> 1462 1 0 #> 1463 1 0 #> 1464 1 0 #> 1465 1 0 #> 1466 1 0 #> 1467 1 0 #> 1468 1 0 #> 1469 1 0 #> 1470 1 0 #> 1471 1 0 #> 1472 1 0 #> 1473 1 0 #> 1474 1 0 #> 1475 1 0 #> 1476 1 0 #> 1477 1 0 #> 1478 1 0 #> 1479 1 0 #> 1480 1 0 #> 1481 1 0 #> 1482 1 0 #> 1483 1 0 #> 1484 1 0 #> 1485 1 0 #> 1486 1 0 #> 1487 1 0 #> 1488 1 0 #> 1489 1 0 #> 1490 1 0 #> 1491 1 0 #> 1492 1 0 #> 1493 1 0 #> 1494 1 0 #> 1495 1 0 #> 1496 2 0 #> 1497 2 0 #> 1498 2 0 #> 1499 2 0 #> 1500 2 0 #> 1501 2 0 #> 1502 2 0 #> 1503 2 0 #> 1504 2 0 #> 1505 2 0 #> 1506 2 0 #> 1507 2 0 #> 1508 2 0 #> 1509 2 0 #> 1510 2 0 #> 1511 2 0 #> 1512 2 0 #> 1513 2 0 #> 1514 2 0 #> 1515 2 0 #> 1516 2 0 #> 1517 2 0 #> 1518 2 0 #> 1519 2 0 #> 1520 2 0 #> 1521 2 0 #> 1522 2 0 #> 1523 2 0 #> 1524 2 0 #> 1525 2 0 #> 1526 2 0 #> 1527 2 0 #> 1528 4 0 #> 1529 4 0 #> 1530 4 0 #> 1531 4 0 #> 1532 4 0 #> 1533 4 0 #> 1534 4 0 #> 1535 4 0 #> 1536 4 0 #> 1537 4 0 #> 1538 4 0 #> 1539 4 0 #> 1540 4 0 #> 1541 4 0 #> 1542 4 0 #> 1543 4 0 #> 1544 4 0 #> 1545 4 0 #> 1546 4 0 #> 1547 4 0 #> 1548 4 0 #> 1549 4 0 #> 1550 4 0 #> 1551 4 0 #> 1552 4 0 #> 1553 4 0 #> 1554 4 0 #> 1555 4 0 #> 1556 4 0 #> 1557 4 0 #> 1558 4 0 #> 1559 4 0 #> 1560 6 0 #> 1561 6 0 #> 1562 6 0 #> 1563 6 0 #> 1564 6 0 #> 1565 6 0 #> 1566 6 0 #> 1567 6 0 #> 1568 6 0 #> 1569 6 0 #> 1570 6 0 #> 1571 6 0 #> 1572 6 0 #> 1573 6 0 #> 1574 6 0 #> 1575 6 0 #> 1576 6 0 #> 1577 6 0 #> 1578 6 0 #> 1579 6 0 #> 1580 6 0 #> 1581 6 0 #> 1582 6 0 #> 1583 6 0 #> 1584 6 0 #> 1585 6 0 #> 1586 6 0 #> 1587 6 0 #> 1588 6 0 #> 1589 6 0 #> 1590 6 0 #> 1591 2 1 #> 1592 2 1 #> 1593 2 1 #> 1594 2 1 #> 1595 2 1 #> 1596 2 1 #> 1597 2 1 #> 1598 2 1 #> 1599 2 1 #> 1600 2 1 #> 1601 2 1 #> 1602 2 1 #> 1603 2 1 #> 1604 2 1 #> 1605 2 1 #> 1606 2 1 #> 1607 2 1 #> 1608 2 1 #> 1609 2 1 #> 1610 2 1 #> 1611 2 1 #> 1612 2 1 #> 1613 2 1 #> 1614 2 1 #> 1615 2 1 #> 1616 2 1 #> 1617 2 1 #> 1618 2 1 #> 1619 2 1 #> 1620 2 1 #> 1621 2 1 #> 1622 2 1 #> 1623 2 1 #> 1624 2 1 #> 1625 2 1 #> 1626 2 1 #> 1627 2 1 #> 1628 2 1 #> 1629 2 1 #> 1630 2 1 #> 1631 2 1 #> 1632 2 1 #> 1633 2 1 #> 1634 2 1 #> 1635 2 1 #> 1636 2 1 #> 1637 2 1 #> 1638 2 1 #> 1639 2 1 #> 1640 2 1 #> 1641 2 1 #> 1642 2 1 #> 1643 2 1 #> 1644 2 1 #> 1645 2 1 #> 1646 2 1 #> 1647 2 1 #> 1648 2 1 #> 1649 2 1 #> 1650 2 1 #> 1651 2 1 #> 1652 2 1 #> 1653 2 0 #> 1654 2 0 #> 1655 2 0 #> 1656 2 0 #> 1657 2 0 #> 1658 2 0 #> 1659 2 0 #> 1660 2 0 #> 1661 2 0 #> 1662 2 0 #> 1663 2 0 #> 1664 2 0 #> 1665 2 0 #> 1666 2 0 #> 1667 2 0 #> 1668 2 0 #> 1669 2 0 #> 1670 2 0 #> 1671 2 0 #> 1672 2 0 #> 1673 2 0 #> 1674 2 0 #> 1675 2 0 #> 1676 2 0 #> 1677 2 0 #> 1678 2 0 #> 1679 2 0 #> 1680 2 0 #> 1681 2 0 #> 1682 2 0 #> 1683 2 0 #> 1684 2 0 #> 1685 4 1 #> 1686 4 1 #> 1687 4 1 #> 1688 4 1 #> 1689 4 1 #> 1690 4 1 #> 1691 4 1 #> 1692 4 1 #> 1693 4 1 #> 1694 4 1 #> 1695 4 1 #> 1696 4 1 #> 1697 4 1 #> 1698 4 1 #> 1699 4 1 #> 1700 4 1 #> 1701 4 1 #> 1702 4 1 #> 1703 4 1 #> 1704 4 1 #> 1705 4 1 #> 1706 4 1 #> 1707 4 1 #> 1708 4 1 #> 1709 4 1 #> 1710 4 1 #> 1711 4 1 #> 1712 4 1 #> 1713 4 1 #> 1714 4 1 #> 1715 4 1 #> 1716 4 1 #> 1717 5 0 #> 1718 5 0 #> 1719 5 0 #> 1720 5 0 #> 1721 5 0 #> 1722 5 0 #> 1723 5 0 #> 1724 5 0 #> 1725 5 0 #> 1726 5 0 #> 1727 5 0 #> 1728 5 0 #> 1729 5 0 #> 1730 5 0 #> 1731 5 0 #> 1732 5 0 #> 1733 5 0 #> 1734 5 0 #> 1735 5 0 #> 1736 5 0 #> 1737 5 0 #> 1738 5 0 #> 1739 5 0 #> 1740 5 0 #> 1741 5 0 #> 1742 5 0 #> 1743 5 0 #> 1744 5 0 #> 1745 5 0 #> 1746 5 0 #> 1747 5 0 #> 1748 5 0 #> 1749 3 0 #> 1750 3 0 #> 1751 3 0 #> 1752 3 0 #> 1753 3 0 #> 1754 3 0 #> 1755 3 0 #> 1756 3 0 #> 1757 3 0 #> 1758 3 0 #> 1759 3 0 #> 1760 3 0 #> 1761 3 0 #> 1762 3 0 #> 1763 3 0 #> 1764 3 0 #> 1765 3 0 #> 1766 3 0 #> 1767 3 0 #> 1768 3 0 #> 1769 3 0 #> 1770 3 0 #> 1771 3 0 #> 1772 3 0 #> 1773 3 0 #> 1774 3 0 #> 1775 3 0 #> 1776 3 0 #> 1777 3 0 #> 1778 3 0 #> 1779 3 0 #> 1780 0 0 #> 1781 0 0 #> 1782 0 0 #> 1783 0 0 #> 1784 0 0 #> 1785 0 0 #> 1786 0 0 #> 1787 0 0 #> 1788 0 0 #> 1789 0 0 #> 1790 0 0 #> 1791 0 0 #> 1792 0 0 #> 1793 0 0 #> 1794 0 0 #> 1795 0 0 #> 1796 0 0 #> 1797 0 0 #> 1798 0 0 #> 1799 0 0 #> 1800 0 0 #> 1801 0 0 #> 1802 0 0 #> 1803 0 0 #> 1804 0 0 #> 1805 0 0 #> 1806 0 0 #> 1807 0 0 #> 1808 0 0 #> 1809 2 0 #> 1810 2 0 #> 1811 2 0 #> 1812 2 0 #> 1813 2 0 #> 1814 2 0 #> 1815 2 0 #> 1816 2 0 #> 1817 2 0 #> 1818 2 0 #> 1819 2 0 #> 1820 2 0 #> 1821 2 0 #> 1822 2 0 #> 1823 2 0 #> 1824 2 0 #> 1825 2 0 #> 1826 2 0 #> 1827 2 0 #> 1828 2 0 #> 1829 2 0 #> 1830 2 0 #> 1831 2 0 #> 1832 2 0 #> 1833 2 0 #> 1834 2 0 #> 1835 2 0 #> 1836 2 0 #> 1837 2 0 #> 1838 2 0 #> 1839 2 0 #> 1840 3 0 #> 1841 3 0 #> 1842 3 0 #> 1843 3 0 #> 1844 3 0 #> 1845 3 0 #> 1846 3 0 #> 1847 3 0 #> 1848 3 0 #> 1849 3 0 #> 1850 3 0 #> 1851 3 0 #> 1852 3 0 #> 1853 3 0 #> 1854 3 0 #> 1855 3 0 #> 1856 3 0 #> 1857 3 0 #> 1858 3 0 #> 1859 3 0 #> 1860 3 0 #> 1861 3 0 #> 1862 3 0 #> 1863 3 0 #> 1864 3 0 #> 1865 3 0 #> 1866 3 0 #> 1867 3 0 #> 1868 3 0 #> 1869 3 0 #> 1870 3 0 #> 1871 3 0 #> 1872 3 0 #> 1873 3 0 #> 1874 3 0 #> 1875 3 0 #> 1876 3 0 #> 1877 3 0 #> 1878 3 0 #> 1879 3 0 #> 1880 3 0 #> 1881 3 0 #> 1882 3 0 #> 1883 3 0 #> 1884 3 0 #> 1885 3 0 #> 1886 3 0 #> 1887 3 0 #> 1888 3 0 #> 1889 3 0 #> 1890 3 0 #> 1891 3 0 #> 1892 3 0 #> 1893 3 0 #> 1894 3 0 #> 1895 3 0 #> 1896 3 0 #> 1897 3 0 #> 1898 3 0 #> 1899 3 0 #> 1900 3 0 #> 1901 3 0 #> 1902 5 0 #> 1903 5 0 #> 1904 5 0 #> 1905 5 0 #> 1906 5 0 #> 1907 5 0 #> 1908 5 0 #> 1909 5 0 #> 1910 5 0 #> 1911 5 0 #> 1912 5 0 #> 1913 5 0 #> 1914 5 0 #> 1915 5 0 #> 1916 5 0 #> 1917 5 0 #> 1918 5 0 #> 1919 5 0 #> 1920 5 0 #> 1921 5 0 #> 1922 5 0 #> 1923 5 0 #> 1924 5 0 #> 1925 5 0 #> 1926 5 0 #> 1927 5 0 #> 1928 5 0 #> 1929 5 0 #> 1930 5 0 #> 1931 5 0 #> 1932 5 0 #> 1933 2 0 #> 1934 2 0 #> 1935 2 0 #> 1936 2 0 #> 1937 2 0 #> 1938 2 0 #> 1939 2 0 #> 1940 2 0 #> 1941 2 0 #> 1942 2 0 #> 1943 2 0 #> 1944 2 0 #> 1945 2 0 #> 1946 2 0 #> 1947 2 0 #> 1948 2 0 #> 1949 2 0 #> 1950 2 0 #> 1951 2 0 #> 1952 2 0 #> 1953 2 0 #> 1954 2 0 #> 1955 2 0 #> 1956 2 0 #> 1957 2 0 #> 1958 2 0 #> 1959 2 0 #> 1960 2 0 #> 1961 2 0 #> 1962 2 0 #> 1963 2 0 #> 1964 2 0 #> 1965 4 0 #> 1966 4 0 #> 1967 4 0 #> 1968 4 0 #> 1969 4 0 #> 1970 4 0 #> 1971 4 0 #> 1972 4 0 #> 1973 4 0 #> 1974 4 0 #> 1975 4 0 #> 1976 4 0 #> 1977 4 0 #> 1978 4 0 #> 1979 4 0 #> 1980 4 0 #> 1981 4 0 #> 1982 4 0 #> 1983 4 0 #> 1984 4 0 #> 1985 4 0 #> 1986 4 0 #> 1987 4 0 #> 1988 4 0 #> 1989 4 0 #> 1990 4 0 #> 1991 4 0 #> 1992 4 0 #> 1993 4 0 #> 1994 1 1 #> 1995 1 1 #> 1996 1 1 #> 1997 1 1 #> 1998 1 1 #> 1999 1 1 #> 2000 1 1 #> 2001 1 1 #> 2002 1 1 #> 2003 1 1 #> 2004 1 1 #> 2005 1 1 #> 2006 1 1 #> 2007 1 1 #> 2008 1 1 #> 2009 1 1 #> 2010 1 1 #> 2011 1 1 #> 2012 1 1 #> 2013 1 1 #> 2014 1 1 #> 2015 1 1 #> 2016 1 1 #> 2017 1 1 #> 2018 1 1 #> 2019 1 1 #> 2020 1 1 #> 2021 1 1 #> 2022 1 1 #> 2023 1 1 #> 2024 1 1 #> 2025 1 1 #> 2026 3 1 #> 2027 3 1 #> 2028 3 1 #> 2029 3 1 #> 2030 3 1 #> 2031 3 1 #> 2032 3 1 #> 2033 3 1 #> 2034 3 1 #> 2035 3 1 #> 2036 3 1 #> 2037 3 1 #> 2038 3 1 #> 2039 3 1 #> 2040 3 1 #> Game_URL #> 1 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 2 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 3 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 4 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 5 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 6 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 7 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 8 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 9 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 10 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 11 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 12 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 13 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 14 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 15 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 16 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 17 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 18 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 19 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 20 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 21 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 22 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 23 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 24 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 25 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 26 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 27 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 28 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 29 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 30 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 31 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 32 https://fbref.com/en/matches/1edcbf7a/Osasuna-Sevilla-August-12-2022-La-Liga #> 33 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 34 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 35 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 36 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 37 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 38 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 39 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 40 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 41 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 42 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 43 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 44 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 45 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 46 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 47 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 48 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 49 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 50 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 51 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 52 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 53 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 54 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 55 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 56 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 57 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 58 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 59 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 60 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 61 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 62 https://fbref.com/en/matches/73b529f2/Celta-Vigo-Espanyol-August-13-2022-La-Liga #> 63 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 64 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 65 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 66 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 67 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 68 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 69 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 70 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 71 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 72 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 73 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 74 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 75 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 76 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 77 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 78 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 79 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 80 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 81 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 82 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 83 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 84 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 85 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 86 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 87 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 88 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 89 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 90 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 91 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 92 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 93 https://fbref.com/en/matches/be7e4222/Valladolid-Villarreal-August-13-2022-La-Liga #> 94 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 95 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 96 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 97 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 98 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 99 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 100 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 101 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 102 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 103 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 104 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 105 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 106 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 107 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 108 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 109 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 110 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 111 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 112 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 113 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 114 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 115 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 116 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 117 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 118 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 119 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 120 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 121 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 122 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 123 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 124 https://fbref.com/en/matches/cbe0a303/Barcelona-Rayo-Vallecano-August-13-2022-La-Liga #> 125 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 126 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 127 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 128 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 129 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 130 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 131 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 132 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 133 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 134 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 135 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 136 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 137 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 138 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 139 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 140 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 141 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 142 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 143 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 144 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 145 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 146 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 147 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 148 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 149 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 150 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 151 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 152 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 153 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 154 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 155 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 156 https://fbref.com/en/matches/7fbde755/Cadiz-Real-Sociedad-August-14-2022-La-Liga #> 157 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 158 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 159 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 160 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 161 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 162 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 163 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 164 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 165 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 166 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 167 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 168 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 169 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 170 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 171 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 172 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 173 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 174 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 175 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 176 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 177 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 178 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 179 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 180 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 181 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 182 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 183 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 184 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 185 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 186 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 187 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 188 https://fbref.com/en/matches/aaab7ab9/Valencia-Girona-August-14-2022-La-Liga #> 189 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 190 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 191 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 192 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 193 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 194 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 195 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 196 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 197 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 198 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 199 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 200 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 201 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 202 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 203 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 204 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 205 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 206 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 207 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 208 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 209 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 210 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 211 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 212 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 213 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 214 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 215 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 216 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 217 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 218 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 219 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 220 https://fbref.com/en/matches/c1e42359/Almeria-Real-Madrid-August-14-2022-La-Liga #> 221 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 222 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 223 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 224 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 225 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 226 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 227 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 228 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 229 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 230 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 231 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 232 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 233 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 234 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 235 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 236 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 237 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 238 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 239 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 240 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 241 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 242 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 243 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 244 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 245 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 246 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 247 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 248 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 249 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 250 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 251 https://fbref.com/en/matches/ab058eb9/Athletic-Club-Mallorca-August-15-2022-La-Liga #> 252 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 253 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 254 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 255 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 256 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 257 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 258 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 259 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 260 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 261 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 262 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 263 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 264 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 265 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 266 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 267 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 268 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 269 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 270 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 271 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 272 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 273 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 274 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 275 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 276 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 277 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 278 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 279 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 280 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 281 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 282 https://fbref.com/en/matches/9993b01a/Getafe-Atletico-Madrid-August-15-2022-La-Liga #> 283 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 284 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 285 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 286 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 287 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 288 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 289 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 290 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 291 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 292 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 293 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 294 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 295 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 296 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 297 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 298 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 299 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 300 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 301 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 302 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 303 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 304 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 305 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 306 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 307 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 308 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 309 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 310 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 311 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 312 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 313 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 314 https://fbref.com/en/matches/1f998adf/Real-Betis-Elche-August-15-2022-La-Liga #> 315 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 316 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 317 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 318 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 319 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 320 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 321 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 322 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 323 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 324 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 325 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 326 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 327 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 328 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 329 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 330 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 331 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 332 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 333 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 334 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 335 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 336 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 337 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 338 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 339 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 340 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 341 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 342 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 343 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 344 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 345 https://fbref.com/en/matches/cb92acb9/Espanyol-Rayo-Vallecano-August-19-2022-La-Liga #> 346 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 347 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 348 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 349 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 350 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 351 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 352 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 353 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 354 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 355 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 356 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 357 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 358 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 359 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 360 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 361 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 362 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 363 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 364 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 365 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 366 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 367 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 368 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 369 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 370 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 371 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 372 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 373 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 374 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 375 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 376 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 377 https://fbref.com/en/matches/bc5ec3c6/Sevilla-Valladolid-August-19-2022-La-Liga #> 378 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 379 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 380 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 381 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 382 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 383 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 384 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 385 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 386 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 387 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 388 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 389 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 390 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 391 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 392 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 393 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 394 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 395 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 396 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 397 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 398 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 399 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 400 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 401 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 402 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 403 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 404 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 405 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 406 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 407 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 408 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 409 https://fbref.com/en/matches/39d72386/Osasuna-Cadiz-August-20-2022-La-Liga #> 410 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 411 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 412 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 413 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 414 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 415 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 416 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 417 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 418 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 419 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 420 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 421 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 422 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 423 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 424 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 425 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 426 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 427 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 428 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 429 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 430 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 431 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 432 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 433 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 434 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 435 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 436 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 437 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 438 https://fbref.com/en/matches/f06f275b/Mallorca-Real-Betis-August-20-2022-La-Liga #> 439 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 440 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 441 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 442 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 443 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 444 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 445 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 446 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 447 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 448 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 449 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 450 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 451 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 452 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 453 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 454 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 455 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 456 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 457 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 458 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 459 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 460 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 461 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 462 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 463 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 464 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 465 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 466 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 467 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 468 https://fbref.com/en/matches/65ccc663/Celta-Vigo-Real-Madrid-August-20-2022-La-Liga #> 469 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 470 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 471 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 472 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 473 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 474 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 475 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 476 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 477 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 478 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 479 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 480 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 481 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 482 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 483 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 484 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 485 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 486 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 487 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 488 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 489 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 490 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 491 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 492 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 493 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 494 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 495 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 496 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 497 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 498 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 499 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 500 https://fbref.com/en/matches/615ccfb0/Athletic-Club-Valencia-August-21-2022-La-Liga #> 501 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 502 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 503 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 504 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 505 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 506 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 507 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 508 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 509 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 510 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 511 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 512 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 513 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 514 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 515 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 516 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 517 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 518 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 519 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 520 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 521 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 522 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 523 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 524 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 525 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 526 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 527 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 528 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 529 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 530 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 531 https://fbref.com/en/matches/ebb32848/Atletico-Madrid-Villarreal-August-21-2022-La-Liga #> 532 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 533 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 534 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 535 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 536 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 537 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 538 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 539 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 540 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 541 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 542 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 543 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 544 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 545 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 546 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 547 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 548 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 549 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 550 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 551 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 552 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 553 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 554 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 555 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 556 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 557 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 558 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 559 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 560 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 561 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 562 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 563 https://fbref.com/en/matches/9a5e0f15/Real-Sociedad-Barcelona-August-21-2022-La-Liga #> 564 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 565 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 566 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 567 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 568 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 569 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 570 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 571 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 572 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 573 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 574 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 575 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 576 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 577 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 578 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 579 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 580 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 581 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 582 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 583 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 584 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 585 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 586 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 587 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 588 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 589 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 590 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 591 https://fbref.com/en/matches/1253bef2/Girona-Getafe-August-22-2022-La-Liga #> 592 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 593 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 594 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 595 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 596 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 597 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 598 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 599 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 600 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 601 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 602 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 603 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 604 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 605 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 606 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 607 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 608 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 609 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 610 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 611 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 612 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 613 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 614 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 615 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 616 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 617 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 618 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 619 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 620 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 621 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 622 https://fbref.com/en/matches/3cce40a3/Girona-Celta-Vigo-August-26-2022-La-Liga #> 623 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 624 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 625 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 626 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 627 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 628 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 629 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 630 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 631 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 632 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 633 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 634 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 635 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 636 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 637 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 638 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 639 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 640 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 641 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 642 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 643 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 644 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 645 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 646 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 647 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 648 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 649 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 650 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 651 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 652 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 653 https://fbref.com/en/matches/8ed0d2b7/Real-Betis-Osasuna-August-26-2022-La-Liga #> 654 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 655 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 656 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 657 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 658 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 659 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 660 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 661 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 662 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 663 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 664 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 665 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 666 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 667 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 668 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 669 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 670 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 671 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 672 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 673 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 674 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 675 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 676 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 677 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 678 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 679 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 680 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 681 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 682 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 683 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 684 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 685 https://fbref.com/en/matches/0839f02f/Elche-Real-Sociedad-August-27-2022-La-Liga #> 686 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 687 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 688 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 689 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 690 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 691 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 692 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 693 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 694 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 695 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 696 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 697 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 698 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 699 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 700 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 701 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 702 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 703 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 704 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 705 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 706 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 707 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 708 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 709 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 710 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 711 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 712 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 713 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 714 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 715 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 716 https://fbref.com/en/matches/21b1f2fd/Rayo-Vallecano-Mallorca-August-27-2022-La-Liga #> 717 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 718 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 719 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 720 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 721 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 722 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 723 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 724 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 725 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 726 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 727 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 728 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 729 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 730 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 731 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 732 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 733 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 734 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 735 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 736 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 737 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 738 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 739 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 740 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 741 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 742 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 743 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 744 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 745 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 746 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 747 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 748 https://fbref.com/en/matches/ef9a3cb4/Almeria-Sevilla-August-27-2022-La-Liga #> 749 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 750 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 751 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 752 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 753 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 754 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 755 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 756 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 757 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 758 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 759 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 760 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 761 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 762 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 763 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 764 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 765 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 766 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 767 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 768 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 769 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 770 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 771 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 772 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 773 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 774 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 775 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 776 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 777 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 778 https://fbref.com/en/matches/834124a1/Getafe-Villarreal-August-28-2022-La-Liga #> 779 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 780 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 781 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 782 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 783 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 784 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 785 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 786 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 787 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 788 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 789 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 790 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 791 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 792 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 793 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 794 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 795 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 796 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 797 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 798 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 799 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 800 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 801 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 802 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 803 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 804 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 805 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 806 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 807 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 808 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 809 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 810 https://fbref.com/en/matches/4ed9f64b/Barcelona-Valladolid-August-28-2022-La-Liga #> 811 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 812 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 813 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 814 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 815 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 816 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 817 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 818 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 819 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 820 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 821 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 822 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 823 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 824 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 825 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 826 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 827 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 828 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 829 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 830 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 831 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 832 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 833 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 834 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 835 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 836 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 837 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 838 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 839 https://fbref.com/en/matches/36d21a47/Espanyol-Real-Madrid-August-28-2022-La-Liga #> 840 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 841 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 842 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 843 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 844 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 845 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 846 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 847 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 848 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 849 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 850 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 851 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 852 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 853 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 854 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 855 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 856 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 857 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 858 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 859 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 860 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 861 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 862 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 863 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 864 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 865 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 866 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 867 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 868 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 869 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 870 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 871 https://fbref.com/en/matches/af336b4a/Cadiz-Athletic-Club-August-29-2022-La-Liga #> 872 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 873 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 874 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 875 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 876 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 877 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 878 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 879 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 880 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 881 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 882 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 883 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 884 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 885 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 886 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 887 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 888 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 889 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 890 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 891 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 892 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 893 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 894 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 895 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 896 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 897 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 898 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 899 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 900 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 901 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 902 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 903 https://fbref.com/en/matches/da3b5ed5/Valencia-Atletico-Madrid-August-29-2022-La-Liga #> 904 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 905 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 906 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 907 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 908 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 909 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 910 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 911 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 912 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 913 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 914 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 915 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 916 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 917 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 918 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 919 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 920 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 921 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 922 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 923 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 924 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 925 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 926 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 927 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 928 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 929 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 930 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 931 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 932 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 933 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 934 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 935 https://fbref.com/en/matches/66ac20bd/Celta-Vigo-Cadiz-September-2-2022-La-Liga #> 936 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 937 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 938 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 939 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 940 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 941 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 942 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 943 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 944 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 945 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 946 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 947 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 948 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 949 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 950 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 951 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 952 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 953 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 954 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 955 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 956 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 957 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 958 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 959 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 960 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 961 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 962 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 963 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 964 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 965 https://fbref.com/en/matches/5d51fa0c/Mallorca-Girona-September-3-2022-La-Liga #> 966 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 967 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 968 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 969 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 970 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 971 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 972 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 973 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 974 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 975 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 976 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 977 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 978 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 979 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 980 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 981 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 982 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 983 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 984 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 985 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 986 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 987 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 988 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 989 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 990 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 991 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 992 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 993 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 994 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 995 https://fbref.com/en/matches/7f84388c/Real-Madrid-Real-Betis-September-3-2022-La-Liga #> 996 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 997 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 998 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 999 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1000 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1001 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1002 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1003 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1004 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1005 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1006 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1007 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1008 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1009 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1010 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1011 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1012 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1013 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1014 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1015 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1016 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1017 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1018 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1019 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1020 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1021 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1022 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1023 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1024 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1025 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1026 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1027 https://fbref.com/en/matches/ccb89898/Real-Sociedad-Atletico-Madrid-September-3-2022-La-Liga #> 1028 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1029 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1030 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1031 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1032 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1033 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1034 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1035 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1036 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1037 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1038 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1039 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1040 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1041 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1042 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1043 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1044 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1045 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1046 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1047 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1048 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1049 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1050 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1051 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1052 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1053 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1054 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1055 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1056 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1057 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1058 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1059 https://fbref.com/en/matches/7952eab7/Sevilla-Barcelona-September-3-2022-La-Liga #> 1060 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1061 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1062 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1063 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1064 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1065 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1066 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1067 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1068 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1069 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1070 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1071 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1072 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1073 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1074 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1075 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1076 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1077 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1078 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1079 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1080 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1081 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1082 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1083 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1084 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1085 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1086 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1087 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1088 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1089 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1090 https://fbref.com/en/matches/ef71bc61/Osasuna-Rayo-Vallecano-September-4-2022-La-Liga #> 1091 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1092 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1093 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1094 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1095 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1096 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1097 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1098 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1099 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1100 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1101 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1102 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1103 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1104 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1105 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1106 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1107 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1108 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1109 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1110 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1111 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1112 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1113 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1114 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1115 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1116 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1117 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1118 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1119 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1120 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1121 https://fbref.com/en/matches/9c491e2b/Athletic-Club-Espanyol-September-4-2022-La-Liga #> 1122 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1123 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1124 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1125 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1126 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1127 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1128 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1129 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1130 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1131 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1132 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1133 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1134 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1135 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1136 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1137 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1138 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1139 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1140 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1141 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1142 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1143 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1144 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1145 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1146 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1147 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1148 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1149 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1150 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1151 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1152 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1153 https://fbref.com/en/matches/1c460149/Villarreal-Elche-September-4-2022-La-Liga #> 1154 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1155 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1156 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1157 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1158 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1159 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1160 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1161 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1162 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1163 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1164 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1165 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1166 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1167 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1168 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1169 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1170 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1171 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1172 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1173 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1174 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1175 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1176 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1177 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1178 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1179 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1180 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1181 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1182 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1183 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1184 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1185 https://fbref.com/en/matches/65797851/Valencia-Getafe-September-4-2022-La-Liga #> 1186 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1187 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1188 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1189 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1190 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1191 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1192 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1193 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1194 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1195 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1196 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1197 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1198 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1199 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1200 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1201 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1202 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1203 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1204 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1205 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1206 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1207 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1208 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1209 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1210 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1211 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1212 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1213 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1214 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1215 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1216 https://fbref.com/en/matches/33b0a63b/Valladolid-Almeria-September-5-2022-La-Liga #> 1217 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1218 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1219 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1220 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1221 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1222 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1223 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1224 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1225 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1226 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1227 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1228 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1229 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1230 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1231 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1232 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1233 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1234 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1235 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1236 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1237 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1238 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1239 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1240 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1241 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1242 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1243 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1244 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1245 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1246 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1247 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1248 https://fbref.com/en/matches/67a548bd/Girona-Valladolid-September-9-2022-La-Liga #> 1249 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1250 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1251 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1252 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1253 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1254 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1255 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1256 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1257 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1258 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1259 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1260 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1261 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1262 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1263 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1264 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1265 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1266 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1267 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1268 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1269 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1270 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1271 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1272 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1273 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1274 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1275 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1276 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1277 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1278 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1279 https://fbref.com/en/matches/c159b9d8/Rayo-Vallecano-Valencia-September-10-2022-La-Liga #> 1280 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1281 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1282 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1283 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1284 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1285 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1286 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1287 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1288 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1289 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1290 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1291 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1292 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1293 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1294 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1295 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1296 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1297 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1298 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1299 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1300 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1301 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1302 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1303 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1304 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1305 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1306 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1307 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1308 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1309 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1310 https://fbref.com/en/matches/2705dc41/Espanyol-Sevilla-September-10-2022-La-Liga #> 1311 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1312 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1313 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1314 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1315 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1316 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1317 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1318 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1319 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1320 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1321 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1322 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1323 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1324 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1325 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1326 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1327 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1328 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1329 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1330 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1331 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1332 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1333 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1334 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1335 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1336 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1337 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1338 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1339 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1340 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1341 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1342 https://fbref.com/en/matches/50a0b6b9/Cadiz-Barcelona-September-10-2022-La-Liga #> 1343 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1344 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1345 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1346 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1347 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1348 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1349 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1350 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1351 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1352 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1353 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1354 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1355 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1356 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1357 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1358 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1359 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1360 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1361 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1362 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1363 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1364 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1365 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1366 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1367 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1368 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1369 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1370 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1371 https://fbref.com/en/matches/cc61d2ba/Atletico-Madrid-Celta-Vigo-September-10-2022-La-Liga #> 1372 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1373 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1374 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1375 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1376 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1377 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1378 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1379 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1380 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1381 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1382 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1383 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1384 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1385 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1386 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1387 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1388 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1389 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1390 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1391 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1392 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1393 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1394 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1395 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1396 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1397 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1398 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1399 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1400 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1401 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1402 https://fbref.com/en/matches/6cf98669/Real-Madrid-Mallorca-September-11-2022-La-Liga #> 1403 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1404 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1405 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1406 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1407 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1408 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1409 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1410 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1411 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1412 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1413 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1414 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1415 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1416 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1417 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1418 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1419 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1420 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1421 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1422 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1423 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1424 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1425 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1426 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1427 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1428 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1429 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1430 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1431 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1432 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1433 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1434 https://fbref.com/en/matches/ab2a8ab6/Elche-Athletic-Club-September-11-2022-La-Liga #> 1435 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1436 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1437 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1438 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1439 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1440 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1441 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1442 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1443 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1444 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1445 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1446 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1447 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1448 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1449 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1450 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1451 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1452 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1453 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1454 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1455 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1456 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1457 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1458 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1459 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1460 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1461 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1462 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1463 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1464 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1465 https://fbref.com/en/matches/3e47416b/Getafe-Real-Sociedad-September-11-2022-La-Liga #> 1466 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1467 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1468 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1469 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1470 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1471 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1472 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1473 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1474 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1475 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1476 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1477 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1478 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1479 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1480 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1481 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1482 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1483 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1484 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1485 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1486 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1487 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1488 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1489 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1490 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1491 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1492 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1493 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1494 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1495 https://fbref.com/en/matches/287c6564/Real-Betis-Villarreal-September-11-2022-La-Liga #> 1496 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1497 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1498 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1499 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1500 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1501 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1502 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1503 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1504 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1505 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1506 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1507 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1508 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1509 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1510 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1511 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1512 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1513 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1514 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1515 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1516 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1517 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1518 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1519 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1520 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1521 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1522 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1523 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1524 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1525 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1526 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1527 https://fbref.com/en/matches/12e36761/Almeria-Osasuna-September-12-2022-La-Liga #> 1528 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1529 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1530 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1531 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1532 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1533 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1534 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1535 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1536 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1537 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1538 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1539 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1540 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1541 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1542 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1543 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1544 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1545 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1546 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1547 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1548 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1549 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1550 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1551 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1552 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1553 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1554 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1555 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1556 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1557 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1558 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1559 https://fbref.com/en/matches/ec90c2fe/Valladolid-Cadiz-September-16-2022-La-Liga #> 1560 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1561 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1562 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1563 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1564 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1565 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1566 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1567 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1568 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1569 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1570 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1571 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1572 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1573 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1574 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1575 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1576 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1577 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1578 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1579 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1580 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1581 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1582 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1583 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1584 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1585 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1586 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1587 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1588 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1589 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1590 https://fbref.com/en/matches/8d5bc7c7/Mallorca-Almeria-September-17-2022-La-Liga #> 1591 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1592 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1593 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1594 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1595 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1596 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1597 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1598 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1599 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1600 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1601 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1602 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1603 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1604 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1605 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1606 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1607 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1608 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1609 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1610 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1611 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1612 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1613 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1614 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1615 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1616 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1617 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1618 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1619 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1620 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1621 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1622 https://fbref.com/en/matches/edcc3e7a/Barcelona-Elche-September-17-2022-La-Liga #> 1623 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1624 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1625 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1626 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1627 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1628 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1629 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1630 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1631 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1632 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1633 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1634 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1635 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1636 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1637 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1638 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1639 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1640 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1641 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1642 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1643 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1644 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1645 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1646 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1647 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1648 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1649 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1650 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1651 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1652 https://fbref.com/en/matches/5b51dc48/Valencia-Celta-Vigo-September-17-2022-La-Liga #> 1653 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1654 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1655 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1656 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1657 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1658 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1659 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1660 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1661 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1662 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1663 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1664 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1665 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1666 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1667 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1668 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1669 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1670 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1671 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1672 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1673 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1674 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1675 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1676 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1677 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1678 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1679 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1680 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1681 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1682 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1683 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1684 https://fbref.com/en/matches/dd04c982/Athletic-Club-Rayo-Vallecano-September-17-2022-La-Liga #> 1685 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1686 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1687 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1688 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1689 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1690 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1691 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1692 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1693 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1694 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1695 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1696 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1697 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1698 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1699 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1700 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1701 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1702 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1703 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1704 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1705 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1706 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1707 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1708 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1709 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1710 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1711 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1712 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1713 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1714 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1715 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1716 https://fbref.com/en/matches/c6483087/Osasuna-Getafe-September-18-2022-La-Liga #> 1717 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1718 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1719 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1720 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1721 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1722 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1723 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1724 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1725 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1726 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1727 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1728 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1729 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1730 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1731 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1732 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1733 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1734 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1735 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1736 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1737 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1738 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1739 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1740 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1741 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1742 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1743 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1744 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1745 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1746 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1747 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1748 https://fbref.com/en/matches/28815113/Villarreal-Sevilla-September-18-2022-La-Liga #> 1749 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1750 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1751 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1752 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1753 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1754 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1755 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1756 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1757 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1758 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1759 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1760 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1761 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1762 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1763 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1764 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1765 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1766 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1767 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1768 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1769 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1770 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1771 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1772 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1773 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1774 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1775 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1776 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1777 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1778 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1779 https://fbref.com/en/matches/cb6bce1d/Real-Betis-Girona-September-18-2022-La-Liga #> 1780 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1781 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1782 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1783 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1784 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1785 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1786 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1787 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1788 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1789 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1790 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1791 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1792 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1793 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1794 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1795 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1796 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1797 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1798 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1799 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1800 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1801 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1802 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1803 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1804 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1805 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1806 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1807 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1808 https://fbref.com/en/matches/ee1f906d/Real-Sociedad-Espanyol-September-18-2022-La-Liga #> 1809 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1810 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1811 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1812 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1813 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1814 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1815 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1816 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1817 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1818 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1819 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1820 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1821 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1822 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1823 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1824 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1825 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1826 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1827 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1828 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1829 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1830 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1831 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1832 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1833 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1834 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1835 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1836 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1837 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1838 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1839 https://fbref.com/en/matches/c554c5ac/El-Derbi-Madrileno-Atletico-Madrid-Real-Madrid-September-18-2022-La-Liga #> 1840 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1841 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1842 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1843 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1844 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1845 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1846 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1847 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1848 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1849 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1850 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1851 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1852 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1853 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1854 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1855 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1856 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1857 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1858 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1859 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1860 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1861 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1862 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1863 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1864 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1865 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1866 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1867 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1868 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1869 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1870 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1871 https://fbref.com/en/matches/54d6b3fc/Athletic-Club-Almeria-September-30-2022-La-Liga #> 1872 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1873 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1874 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1875 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1876 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1877 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1878 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1879 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1880 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1881 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1882 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1883 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1884 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1885 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1886 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1887 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1888 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1889 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1890 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1891 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1892 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1893 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1894 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1895 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1896 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1897 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1898 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1899 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1900 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1901 https://fbref.com/en/matches/c0d557e1/Cadiz-Villarreal-October-1-2022-La-Liga #> 1902 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1903 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1904 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1905 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1906 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1907 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1908 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1909 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1910 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1911 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1912 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1913 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1914 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1915 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1916 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1917 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1918 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1919 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1920 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1921 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1922 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1923 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1924 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1925 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1926 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1927 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1928 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1929 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1930 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1931 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1932 https://fbref.com/en/matches/09f36184/Getafe-Valladolid-October-1-2022-La-Liga #> 1933 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1934 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1935 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1936 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1937 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1938 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1939 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1940 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1941 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1942 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1943 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1944 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1945 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1946 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1947 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1948 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1949 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1950 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1951 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1952 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1953 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1954 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1955 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1956 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1957 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1958 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1959 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1960 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1961 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1962 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1963 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1964 https://fbref.com/en/matches/069f9f40/Sevilla-Atletico-Madrid-October-1-2022-La-Liga #> 1965 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1966 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1967 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1968 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1969 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1970 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1971 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1972 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1973 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1974 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1975 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1976 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1977 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1978 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1979 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1980 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1981 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1982 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1983 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1984 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1985 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1986 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1987 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1988 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1989 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1990 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1991 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1992 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1993 https://fbref.com/en/matches/5e73ad1a/Mallorca-Barcelona-October-1-2022-La-Liga #> 1994 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 1995 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 1996 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 1997 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 1998 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 1999 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2000 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2001 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2002 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2003 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2004 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2005 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2006 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2007 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2008 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2009 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2010 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2011 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2012 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2013 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2014 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2015 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2016 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2017 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2018 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2019 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2020 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2021 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2022 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2023 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2024 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2025 https://fbref.com/en/matches/841d1e2c/Espanyol-Valencia-October-2-2022-La-Liga #> 2026 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2027 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2028 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2029 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2030 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2031 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2032 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2033 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2034 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2035 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2036 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2037 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2038 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2039 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> 2040 https://fbref.com/en/matches/849eee87/Celta-Vigo-Real-Betis-October-2-2022-La-Liga #> Team Home_Away Player #> 1 Osasuna Home Aimar Oroz #> 2 Osasuna Home Pablo Ibáñez #> 3 Osasuna Home Ezequiel Ávila #> 4 Osasuna Home Kiké #> 5 Osasuna Home Moi Gómez #> 6 Osasuna Home Lucas Torró #> 7 Osasuna Home Jon Moncayola #> 8 Osasuna Home Kike Barja #> 9 Osasuna Home Nacho Vidal #> 10 Osasuna Home Juan Cruz Armada #> 11 Osasuna Home David García #> 12 Osasuna Home Unai García #> 13 Osasuna Home Manu Sánchez #> 14 Osasuna Home Rubén Peña #> 15 Osasuna Home Darko Brašanac #> 16 Osasuna Home Sergio Herrera #> 17 Sevilla Away Rafa Mir #> 18 Sevilla Away Youssef En-Nesyri #> 19 Sevilla Away Lucas Ocampos #> 20 Sevilla Away Alex Telles #> 21 Sevilla Away Jesús Corona #> 22 Sevilla Away Érik Lamela #> 23 Sevilla Away Papu Gómez #> 24 Sevilla Away Iván Romero #> 25 Sevilla Away Thomas Delaney #> 26 Sevilla Away Ivan Rakitić #> 27 Sevilla Away Fernando #> 28 Sevilla Away Marcos Acuña #> 29 Sevilla Away Karim Rekik #> 30 Sevilla Away Nemanja Gudelj #> 31 Sevilla Away Jesús Navas #> 32 Sevilla Away Yassine Bounou #> 33 Celta Vigo Home Gonçalo Paciência #> 34 Celta Vigo Home Carles Pérez #> 35 Celta Vigo Home Iago Aspas #> 36 Celta Vigo Home Franco Cervi #> 37 Celta Vigo Home Óscar Mingueza #> 38 Celta Vigo Home Óscar Rodríguez Arnaiz #> 39 Celta Vigo Home Gabriel Veiga #> 40 Celta Vigo Home Augusto Solari #> 41 Celta Vigo Home Renato Tapia #> 42 Celta Vigo Home Fran Beltrán #> 43 Celta Vigo Home Javi Galán #> 44 Celta Vigo Home Unai Núñez #> 45 Celta Vigo Home Joseph Aidoo #> 46 Celta Vigo Home Hugo Mallo #> 47 Celta Vigo Home Agustín Marchesín #> 48 Espanyol Away Joselu #> 49 Espanyol Away Nico Ribaudo #> 50 Espanyol Away Adri Embarba #> 51 Espanyol Away Rubén #> 52 Espanyol Away Luca Koleosho #> 53 Espanyol Away Sergi Darder #> 54 Espanyol Away Fernando Calero #> 55 Espanyol Away Edu Expósito #> 56 Espanyol Away Vinicius Souza #> 57 Espanyol Away Nabil Touaizi #> 58 Espanyol Away Brian Oliván #> 59 Espanyol Away Leandro Cabrera #> 60 Espanyol Away Sergi Gómez #> 61 Espanyol Away Óscar Gil #> 62 Espanyol Away Benjamin Lecomte #> 63 Valladolid Home Sergio León #> 64 Valladolid Home Sékou Gassama #> 65 Valladolid Home Toni Villa #> 66 Valladolid Home Óscar Plano #> 67 Valladolid Home Álvaro Aguado #> 68 Valladolid Home Roque Mesa #> 69 Valladolid Home Kike Pérez #> 70 Valladolid Home Gonzalo Plata #> 71 Valladolid Home Iván Sánchez #> 72 Valladolid Home Monchu #> 73 Valladolid Home Sergio Escudero #> 74 Valladolid Home Lucas Olaza #> 75 Valladolid Home Jawad El Yamiq #> 76 Valladolid Home Joaquín Fernández #> 77 Valladolid Home Luis Pérez #> 78 Valladolid Home Sergio Asenjo #> 79 Villarreal Away Nicolas Jackson #> 80 Villarreal Away Gerard Moreno #> 81 Villarreal Away José Luis Morales #> 82 Villarreal Away Francis Coquelin #> 83 Villarreal Away Samuel Chukwueze #> 84 Villarreal Away Daniel Parejo #> 85 Villarreal Away Étienne Capoue #> 86 Villarreal Away Yeremi Pino #> 87 Villarreal Away Alex Baena #> 88 Villarreal Away Alfonso Pedraza #> 89 Villarreal Away Pau Torres #> 90 Villarreal Away Raúl Albiol #> 91 Villarreal Away Juan Foyth #> 92 Villarreal Away Aïssa Mandi #> 93 Villarreal Away Gerónimo Rulli #> 94 Barcelona Home Robert Lewandowski #> 95 Barcelona Home Ousmane Dembélé #> 96 Barcelona Home Raphinha #> 97 Barcelona Home Ansu Fati #> 98 Barcelona Home Pedri #> 99 Barcelona Home Franck Kessié #> 100 Barcelona Home Sergio Busquets #> 101 Barcelona Home Gavi #> 102 Barcelona Home Frenkie de Jong #> 103 Barcelona Home Jordi Alba #> 104 Barcelona Home Pierre-Emerick Aubameyang #> 105 Barcelona Home Eric García #> 106 Barcelona Home Andreas Christensen #> 107 Barcelona Home Sergi Roberto #> 108 Barcelona Home Ronald Araújo #> 109 Barcelona Home Marc-André ter Stegen #> 110 Rayo Vallecano Away Sergio Camello #> 111 Rayo Vallecano Away Radamel Falcao #> 112 Rayo Vallecano Away Álvaro García #> 113 Rayo Vallecano Away Isaac Palazón Camacho #> 114 Rayo Vallecano Away Salvi #> 115 Rayo Vallecano Away Óscar Trejo #> 116 Rayo Vallecano Away José Pozo #> 117 Rayo Vallecano Away Pathé Ciss #> 118 Rayo Vallecano Away Unai López #> 119 Rayo Vallecano Away Óscar Valentín #> 120 Rayo Vallecano Away Fran Garcia #> 121 Rayo Vallecano Away Catena #> 122 Rayo Vallecano Away Florian Lejeune #> 123 Rayo Vallecano Away Iván Balliu #> 124 Rayo Vallecano Away Stole Dimitrievski #> 125 Cádiz Home Anthony Lozano #> 126 Cádiz Home Lucas Pérez #> 127 Cádiz Home Álvaro Negredo #> 128 Cádiz Home Santiago Arzamendia #> 129 Cádiz Home Iván Alejo #> 130 Cádiz Home José Mari #> 131 Cádiz Home Tomás Alarcón #> 132 Cádiz Home Fali #> 133 Cádiz Home Alberto Perea #> 134 Cádiz Home Awer Mabil #> 135 Cádiz Home Alfonso Espino #> 136 Cádiz Home Víctor Chust #> 137 Cádiz Home Luis Hernández #> 138 Cádiz Home Joseba Zaldúa #> 139 Cádiz Home Mamady Diarra #> 140 Cádiz Home Jeremías Ledesma #> 141 Real Sociedad Away Takefusa Kubo #> 142 Real Sociedad Away Mohamed Ali Cho #> 143 Real Sociedad Away Alexander Isak #> 144 Real Sociedad Away Jon Karrikaburu #> 145 Real Sociedad Away David Silva #> 146 Real Sociedad Away Ander Barrenetxea #> 147 Real Sociedad Away Mikel Merino #> 148 Real Sociedad Away Asier Illarramendi #> 149 Real Sociedad Away Brais Méndez #> 150 Real Sociedad Away Martín Zubimendi #> 151 Real Sociedad Away Diego Rico #> 152 Real Sociedad Away Aihen Muñoz #> 153 Real Sociedad Away Robin Le Normand #> 154 Real Sociedad Away Igor Zubeldia #> 155 Real Sociedad Away Aritz Elustondo #> 156 Real Sociedad Away Álex Remiro #> 157 Valencia Home Hugo Duro #> 158 Valencia Home Cristhian Mosquera #> 159 Valencia Home Samuel #> 160 Valencia Home Maxi Gómez #> 161 Valencia Home Samu Castillejo #> 162 Valencia Home Nicolás González #> 163 Valencia Home Carlos Soler #> 164 Valencia Home Dimitri Foulquier #> 165 Valencia Home Hugo Guillamón #> 166 Valencia Home Yunus Musah #> 167 Valencia Home Jesus Vazquez #> 168 Valencia Home Toni Lato #> 169 Valencia Home Mouctar Diakhaby #> 170 Valencia Home Eray Cömert #> 171 Valencia Home Thierry Correia #> 172 Valencia Home Giorgi Mamardashvili #> 173 Girona Away Valentín Castellanos #> 174 Girona Away Samuel Sáiz #> 175 Girona Away Oscar Ureña #> 176 Girona Away Rodrigo Riquelme #> 177 Girona Away Aleix García #> 178 Girona Away Ramón Terrats #> 179 Girona Away Yangel Herrera #> 180 Girona Away Valery Fernández #> 181 Girona Away Miguel Gutiérrez #> 182 Girona Away Yan Couto #> 183 Girona Away Arnau Martinez #> 184 Girona Away Juanpe #> 185 Girona Away David López #> 186 Girona Away Cristhian Stuani #> 187 Girona Away Santiago Bueno #> 188 Girona Away Juan Carlos #> 189 Almería Home Umar Sadiq #> 190 Almería Home Dyego Sousa #> 191 Almería Home Largie Ramazani #> 192 Almería Home José Carlos Lazo #> 193 Almería Home Samu Costa #> 194 Almería Home Íñigo Eguaras #> 195 Almería Home Francisco Portillo #> 196 Almería Home Lucas Robertone #> 197 Almería Home Curro #> 198 Almería Home Sergio Akieme #> 199 Almería Home Srđan Babić #> 200 Almería Home Rodrigo Ely #> 201 Almería Home Kaiky #> 202 Almería Home Arnau Puigmal #> 203 Almería Home Juan Brandáriz #> 204 Almería Home Fernando #> 205 Real Madrid Away Karim Benzema #> 206 Real Madrid Away Vinicius Júnior #> 207 Real Madrid Away Dani Ceballos #> 208 Real Madrid Away Federico Valverde #> 209 Real Madrid Away Toni Kroos #> 210 Real Madrid Away Casemiro #> 211 Real Madrid Away Aurélien Tchouaméni #> 212 Real Madrid Away Eden Hazard #> 213 Real Madrid Away Eduardo Camavinga #> 214 Real Madrid Away Luka Modrić #> 215 Real Madrid Away Ferland Mendy #> 216 Real Madrid Away David Alaba #> 217 Real Madrid Away Nacho #> 218 Real Madrid Away Antonio Rüdiger #> 219 Real Madrid Away Lucas Vázquez #> 220 Real Madrid Away Thibaut Courtois #> 221 Athletic Club Home Asier Villalibre #> 222 Athletic Club Home Raúl García #> 223 Athletic Club Home Álex Berenguer #> 224 Athletic Club Home Nico Williams #> 225 Athletic Club Home Iñaki Williams #> 226 Athletic Club Home Adu Ares #> 227 Athletic Club Home Iker Muniain #> 228 Athletic Club Home Gorka Guruzeta #> 229 Athletic Club Home Mikel Vesga #> 230 Athletic Club Home Oihan Sancet #> 231 Athletic Club Home Oier Zarraga #> 232 Athletic Club Home Yuri Berchiche #> 233 Athletic Club Home Yeray Álvarez #> 234 Athletic Club Home Daniel Vivian #> 235 Athletic Club Home Óscar de Marcos #> 236 Athletic Club Home Unai Simón #> 237 Mallorca Away Vedat Muriqi #> 238 Mallorca Away Abdón Prats #> 239 Mallorca Away Dani Rodríguez #> 240 Mallorca Away Antonio Sánchez #> 241 Mallorca Away Rodrigo Battaglia #> 242 Mallorca Away Clément Grenier #> 243 Mallorca Away Iddrisu Baba #> 244 Mallorca Away Lee Kang-in #> 245 Mallorca Away Lago Junior #> 246 Mallorca Away Jaume Costa #> 247 Mallorca Away Copete #> 248 Mallorca Away Antonio Raillo #> 249 Mallorca Away Martin Valjent #> 250 Mallorca Away Pablo Maffeo #> 251 Mallorca Away Predrag Rajković #> 252 Getafe Home Enes Ünal #> 253 Getafe Home Jaime Mata #> 254 Getafe Home Borja Mayoral #> 255 Getafe Home Moises Parra Gutierrez #> 256 Getafe Home Nemanja Maksimović #> 257 Getafe Home Jaime Seoane #> 258 Getafe Home Mauro Arambarri #> 259 Getafe Home Carles Aleñá #> 260 Getafe Home Portu #> 261 Getafe Home Fabrizio Angileri #> 262 Getafe Home Domingos Duarte #> 263 Getafe Home Stefan Mitrović #> 264 Getafe Home Djené #> 265 Getafe Home Iglesias #> 266 Getafe Home David Soria #> 267 Atlético Madrid Away João Félix #> 268 Atlético Madrid Away Ángel Correa #> 269 Atlético Madrid Away Álvaro Morata #> 270 Atlético Madrid Away Matheus Cunha #> 271 Atlético Madrid Away Thomas Lemar #> 272 Atlético Madrid Away Antoine Griezmann #> 273 Atlético Madrid Away Koke #> 274 Atlético Madrid Away Marcos Llorente #> 275 Atlético Madrid Away Rodrigo De Paul #> 276 Atlético Madrid Away Saúl Ñíguez #> 277 Atlético Madrid Away Yannick Carrasco #> 278 Atlético Madrid Away Reinildo Mandava #> 279 Atlético Madrid Away Axel Witsel #> 280 Atlético Madrid Away Stefan Savić #> 281 Atlético Madrid Away Nahuel Molina #> 282 Atlético Madrid Away Jan Oblak #> 283 Real Betis Home Borja Iglesias #> 284 Real Betis Home Loren Morón #> 285 Real Betis Home Juanmi #> 286 Real Betis Home Rodri #> 287 Real Betis Home Juan Miranda #> 288 Real Betis Home Nabil Fekir #> 289 Real Betis Home Roberto González #> 290 Real Betis Home William Carvalho #> 291 Real Betis Home Guido Rodríguez #> 292 Real Betis Home Paul Akouokou #> 293 Real Betis Home Álex Moreno #> 294 Real Betis Home Édgar González #> 295 Real Betis Home Germán Pezzella #> 296 Real Betis Home Aitor Ruibal #> 297 Real Betis Home Fran Delgado #> 298 Real Betis Home Rui Silva #> 299 Elche Away Roger Martí #> 300 Elche Away Ezequiel Ponce #> 301 Elche Away Fidel #> 302 Elche Away Tete Morente #> 303 Elche Away Pere Milla #> 304 Elche Away Josan #> 305 Elche Away Johan Mojica #> 306 Elche Away Gerard Gumbau #> 307 Elche Away Alejandro Alfaro #> 308 Elche Away Omar Mascarell #> 309 Elche Away Helibelton Palacios #> 310 Elche Away Pedro Bigas #> 311 Elche Away Enzo Roco #> 312 Elche Away Diego González #> 313 Elche Away John Donald #> 314 Elche Away Édgar Badía #> 315 Espanyol Home Joselu #> 316 Espanyol Home Nico Ribaudo #> 317 Espanyol Home Fernando Calero #> 318 Espanyol Home Rubén #> 319 Espanyol Home Javi Puado #> 320 Espanyol Home Sergi Darder #> 321 Espanyol Home Vinicius Souza #> 322 Espanyol Home Edu Expósito #> 323 Espanyol Home Keidi Bare #> 324 Espanyol Home Brian Oliván #> 325 Espanyol Home Luca Koleosho #> 326 Espanyol Home Leandro Cabrera #> 327 Espanyol Home Sergi Gómez #> 328 Espanyol Home Óscar Gil #> 329 Espanyol Home Benjamin Lecomte #> 330 Rayo Vallecano Away Sergio Camello #> 331 Rayo Vallecano Away Radamel Falcao #> 332 Rayo Vallecano Away Álvaro García #> 333 Rayo Vallecano Away Randy Ntekja #> 334 Rayo Vallecano Away Isaac Palazón Camacho #> 335 Rayo Vallecano Away Salvi #> 336 Rayo Vallecano Away Óscar Trejo #> 337 Rayo Vallecano Away Óscar Valentín #> 338 Rayo Vallecano Away Pathé Ciss #> 339 Rayo Vallecano Away Unai López #> 340 Rayo Vallecano Away Mario Suárez #> 341 Rayo Vallecano Away Fran Garcia #> 342 Rayo Vallecano Away Catena #> 343 Rayo Vallecano Away Florian Lejeune #> 344 Rayo Vallecano Away Iván Balliu #> 345 Rayo Vallecano Away Stole Dimitrievski #> 346 Sevilla Home Rafa Mir #> 347 Sevilla Home Youssef En-Nesyri #> 348 Sevilla Home Papu Gómez #> 349 Sevilla Home Isco #> 350 Sevilla Home Érik Lamela #> 351 Sevilla Home Óliver Torres #> 352 Sevilla Home Ivan Rakitić #> 353 Sevilla Home Fernando #> 354 Sevilla Home Joan Jordán #> 355 Sevilla Home Lucas Ocampos #> 356 Sevilla Home Marcos Acuña #> 357 Sevilla Home Alex Telles #> 358 Sevilla Home Karim Rekik #> 359 Sevilla Home Tanguy Nianzou #> 360 Sevilla Home Gonzalo Montiel #> 361 Sevilla Home Yassine Bounou #> 362 Valladolid Away Sergi Guardiola #> 363 Valladolid Away Monchu #> 364 Valladolid Away Anuar #> 365 Valladolid Away Iván Sánchez #> 366 Valladolid Away Sergio León #> 367 Valladolid Away Kike Pérez #> 368 Valladolid Away Roque Mesa #> 369 Valladolid Away Óscar Plano #> 370 Valladolid Away Álvaro Aguado #> 371 Valladolid Away Sergio Escudero #> 372 Valladolid Away Lucas Olaza #> 373 Valladolid Away Jawad El Yamiq #> 374 Valladolid Away Joaquín Fernández #> 375 Valladolid Away Javi Sánchez #> 376 Valladolid Away Luis Pérez #> 377 Valladolid Away Sergio Asenjo #> 378 Osasuna Home Aimar Oroz #> 379 Osasuna Home Roberto Torres #> 380 Osasuna Home Ante Budimir #> 381 Osasuna Home Kiké #> 382 Osasuna Home Moi Gómez #> 383 Osasuna Home Lucas Torró #> 384 Osasuna Home Jon Moncayola #> 385 Osasuna Home Darko Brašanac #> 386 Osasuna Home Ezequiel Ávila #> 387 Osasuna Home Rubén García #> 388 Osasuna Home Juan Cruz Armada #> 389 Osasuna Home David García #> 390 Osasuna Home Unai García #> 391 Osasuna Home Rubén Peña #> 392 Osasuna Home Nacho Vidal #> 393 Osasuna Home Sergio Herrera #> 394 Cádiz Away Anthony Lozano #> 395 Cádiz Away Lucas Pérez #> 396 Cádiz Away Fede San Emeterio #> 397 Cádiz Away Awer Mabil #> 398 Cádiz Away José Mari #> 399 Cádiz Away Tomás Alarcón #> 400 Cádiz Away Fali #> 401 Cádiz Away Santiago Arzamendia #> 402 Cádiz Away Mamady Diarra #> 403 Cádiz Away Iván Alejo #> 404 Cádiz Away Alfonso Espino #> 405 Cádiz Away Álvaro Negredo #> 406 Cádiz Away Víctor Chust #> 407 Cádiz Away Luis Hernández #> 408 Cádiz Away Joseba Zaldúa #> 409 Cádiz Away Jeremías Ledesma #> 410 Mallorca Home Vedat Muriqi #> 411 Mallorca Home Lee Kang-in #> 412 Mallorca Home Dani Rodríguez #> 413 Mallorca Home Abdón Prats #> 414 Mallorca Home Rodrigo Battaglia #> 415 Mallorca Home Iddrisu Baba #> 416 Mallorca Home Clément Grenier #> 417 Mallorca Home Antonio Sánchez #> 418 Mallorca Home Jaume Costa #> 419 Mallorca Home Copete #> 420 Mallorca Home Lago Junior #> 421 Mallorca Home Antonio Raillo #> 422 Mallorca Home Martin Valjent #> 423 Mallorca Home Pablo Maffeo #> 424 Mallorca Home Predrag Rajković #> 425 Real Betis Away Borja Iglesias #> 426 Real Betis Away Paul Akouokou #> 427 Real Betis Away Juanmi #> 428 Real Betis Away Rodri #> 429 Real Betis Away Roberto González #> 430 Real Betis Away Nabil Fekir #> 431 Real Betis Away William Carvalho #> 432 Real Betis Away Loren Morón #> 433 Real Betis Away Guido Rodríguez #> 434 Real Betis Away Álex Moreno #> 435 Real Betis Away Édgar González #> 436 Real Betis Away Germán Pezzella #> 437 Real Betis Away Aitor Ruibal #> 438 Real Betis Away Rui Silva #> 439 Celta Vigo Home Gonçalo Paciência #> 440 Celta Vigo Home Carles Pérez #> 441 Celta Vigo Home Iago Aspas #> 442 Celta Vigo Home Óscar Rodríguez Arnaiz #> 443 Celta Vigo Home Gabriel Veiga #> 444 Celta Vigo Home Fran Beltrán #> 445 Celta Vigo Home Franco Cervi #> 446 Celta Vigo Home Renato Tapia #> 447 Celta Vigo Home Luca de la Torre #> 448 Celta Vigo Home Javi Galán #> 449 Celta Vigo Home Unai Núñez #> 450 Celta Vigo Home Joseph Aidoo #> 451 Celta Vigo Home Hugo Mallo #> 452 Celta Vigo Home Agustín Marchesín #> 453 Real Madrid Away Karim Benzema #> 454 Real Madrid Away Vinicius Júnior #> 455 Real Madrid Away Eden Hazard #> 456 Real Madrid Away Federico Valverde #> 457 Real Madrid Away Eduardo Camavinga #> 458 Real Madrid Away Marco Asensio #> 459 Real Madrid Away Aurélien Tchouaméni #> 460 Real Madrid Away Luka Modrić #> 461 Real Madrid Away Dani Ceballos #> 462 Real Madrid Away Ferland Mendy #> 463 Real Madrid Away David Alaba #> 464 Real Madrid Away Lucas Vázquez #> 465 Real Madrid Away Éder Militão #> 466 Real Madrid Away Dani Carvajal #> 467 Real Madrid Away Antonio Rüdiger #> 468 Real Madrid Away Thibaut Courtois #> 469 Athletic Club Home Iñaki Williams #> 470 Athletic Club Home Jon Morcillo #> 471 Athletic Club Home Álex Berenguer #> 472 Athletic Club Home Oier Zarraga #> 473 Athletic Club Home Nico Williams #> 474 Athletic Club Home Ander Capa #> 475 Athletic Club Home Iker Muniain #> 476 Athletic Club Home Raúl García #> 477 Athletic Club Home Mikel Vesga #> 478 Athletic Club Home Oihan Sancet #> 479 Athletic Club Home Unai Vencedor Paris #> 480 Athletic Club Home Yuri Berchiche #> 481 Athletic Club Home Yeray Álvarez #> 482 Athletic Club Home Daniel Vivian #> 483 Athletic Club Home Óscar de Marcos #> 484 Athletic Club Home Unai Simón #> 485 Valencia Away Hugo Duro #> 486 Valencia Away Maxi Gómez #> 487 Valencia Away Samuel #> 488 Valencia Away Samu Castillejo #> 489 Valencia Away Carlos Soler #> 490 Valencia Away Hugo Guillamón #> 491 Valencia Away Marcos André #> 492 Valencia Away Yunus Musah #> 493 Valencia Away Nicolás González #> 494 Valencia Away Jesus Vazquez #> 495 Valencia Away Toni Lato #> 496 Valencia Away Mouctar Diakhaby #> 497 Valencia Away Gabriel Paulista #> 498 Valencia Away Thierry Correia #> 499 Valencia Away Dimitri Foulquier #> 500 Valencia Away Giorgi Mamardashvili #> 501 Atlético Madrid Home João Félix #> 502 Atlético Madrid Home Ángel Correa #> 503 Atlético Madrid Home Álvaro Morata #> 504 Atlético Madrid Home Matheus Cunha #> 505 Atlético Madrid Home Yannick Carrasco #> 506 Atlético Madrid Home Nahuel Molina #> 507 Atlético Madrid Home Thomas Lemar #> 508 Atlético Madrid Home Rodrigo De Paul #> 509 Atlético Madrid Home Marcos Llorente #> 510 Atlético Madrid Home Antoine Griezmann #> 511 Atlético Madrid Home Koke #> 512 Atlético Madrid Home Reinildo Mandava #> 513 Atlético Madrid Home Axel Witsel #> 514 Atlético Madrid Home Stefan Savić #> 515 Atlético Madrid Home José María Giménez #> 516 Atlético Madrid Home Jan Oblak #> 517 Villarreal Away Nicolas Jackson #> 518 Villarreal Away José Luis Morales #> 519 Villarreal Away Gerard Moreno #> 520 Villarreal Away Giovani Lo Celso #> 521 Villarreal Away Alex Baena #> 522 Villarreal Away Daniel Parejo #> 523 Villarreal Away Étienne Capoue #> 524 Villarreal Away Francis Coquelin #> 525 Villarreal Away Yeremi Pino #> 526 Villarreal Away Samuel Chukwueze #> 527 Villarreal Away Alfonso Pedraza #> 528 Villarreal Away Pau Torres #> 529 Villarreal Away Raúl Albiol #> 530 Villarreal Away Juan Foyth #> 531 Villarreal Away Gerónimo Rulli #> 532 Real Sociedad Home Takefusa Kubo #> 533 Real Sociedad Home Mohamed Ali Cho #> 534 Real Sociedad Home Alexander Isak #> 535 Real Sociedad Home Roberto Navarro #> 536 Real Sociedad Home David Silva #> 537 Real Sociedad Home Beñat Turrientes #> 538 Real Sociedad Home Mikel Merino #> 539 Real Sociedad Home Jon Karrikaburu #> 540 Real Sociedad Home Brais Méndez #> 541 Real Sociedad Home Martín Zubimendi #> 542 Real Sociedad Home Aihen Muñoz #> 543 Real Sociedad Home Robin Le Normand #> 544 Real Sociedad Home Igor Zubeldia #> 545 Real Sociedad Home Aritz Elustondo #> 546 Real Sociedad Home Andoni Gorosabel #> 547 Real Sociedad Home Álex Remiro #> 548 Barcelona Away Robert Lewandowski #> 549 Barcelona Away Alejandro Balde #> 550 Barcelona Away Raphinha #> 551 Barcelona Away Ousmane Dembélé #> 552 Barcelona Away Jordi Alba #> 553 Barcelona Away Ferrán Torres #> 554 Barcelona Away Ansu Fati #> 555 Barcelona Away Pedri #> 556 Barcelona Away Gavi #> 557 Barcelona Away Franck Kessié #> 558 Barcelona Away Frenkie de Jong #> 559 Barcelona Away Sergi Roberto #> 560 Barcelona Away Eric García #> 561 Barcelona Away Andreas Christensen #> 562 Barcelona Away Ronald Araújo #> 563 Barcelona Away Marc-André ter Stegen #> 564 Girona Home Valentín Castellanos #> 565 Girona Home Ramón Terrats #> 566 Girona Home Cristhian Stuani #> 567 Girona Home Reinier #> 568 Girona Home Miguel Gutiérrez #> 569 Girona Home Javi Hernández #> 570 Girona Home Yan Couto #> 571 Girona Home Rodrigo Riquelme #> 572 Girona Home Samuel Sáiz #> 573 Girona Home Yangel Herrera #> 574 Girona Home Aleix García #> 575 Girona Home Juanpe #> 576 Girona Home David López #> 577 Girona Home Santiago Bueno #> 578 Girona Home Juan Carlos #> 579 Getafe Away Borja Mayoral #> 580 Getafe Away Enes Ünal #> 581 Getafe Away Nemanja Maksimović #> 582 Getafe Away Jaime Seoane #> 583 Getafe Away Mauro Arambarri #> 584 Getafe Away Carles Aleñá #> 585 Getafe Away Fabrizio Angileri #> 586 Getafe Away Domingos Duarte #> 587 Getafe Away Stefan Mitrović #> 588 Getafe Away Portu #> 589 Getafe Away Djené #> 590 Getafe Away Iglesias #> 591 Getafe Away David Soria #> 592 Girona Home Cristhian Stuani #> 593 Girona Home Valentín Castellanos #> 594 Girona Home Joel Roca #> 595 Girona Home Oscar Ureña #> 596 Girona Home Reinier #> 597 Girona Home David López #> 598 Girona Home Aleix García #> 599 Girona Home Yangel Herrera #> 600 Girona Home Ramón Terrats #> 601 Girona Home Samuel Sáiz #> 602 Girona Home Miguel Gutiérrez #> 603 Girona Home Javi Hernández #> 604 Girona Home Juanpe #> 605 Girona Home Santiago Bueno #> 606 Girona Home Yan Couto #> 607 Girona Home Juan Carlos #> 608 Celta Vigo Away Carles Pérez #> 609 Celta Vigo Away Augusto Solari #> 610 Celta Vigo Away Iago Aspas #> 611 Celta Vigo Away Franco Cervi #> 612 Celta Vigo Away Carlos Dominguez #> 613 Celta Vigo Away Fran Beltrán #> 614 Celta Vigo Away Óscar Rodríguez Arnaiz #> 615 Celta Vigo Away Gonçalo Paciência #> 616 Celta Vigo Away Renato Tapia #> 617 Celta Vigo Away Gabriel Veiga #> 618 Celta Vigo Away Javi Galán #> 619 Celta Vigo Away Unai Núñez #> 620 Celta Vigo Away Joseph Aidoo #> 621 Celta Vigo Away Hugo Mallo #> 622 Celta Vigo Away Agustín Marchesín #> 623 Real Betis Home Borja Iglesias #> 624 Real Betis Home Luiz Felipe #> 625 Real Betis Home Juanmi #> 626 Real Betis Home Luiz Henrique #> 627 Real Betis Home Rodri #> 628 Real Betis Home Sergio Canales #> 629 Real Betis Home Nabil Fekir #> 630 Real Betis Home Andrés Guardado #> 631 Real Betis Home William Carvalho #> 632 Real Betis Home Guido Rodríguez #> 633 Real Betis Home Álex Moreno #> 634 Real Betis Home Édgar González #> 635 Real Betis Home Germán Pezzella #> 636 Real Betis Home Aitor Ruibal #> 637 Real Betis Home Rui Silva #> 638 Osasuna Away Ezequiel Ávila #> 639 Osasuna Away Ante Budimir #> 640 Osasuna Away Aimar Oroz #> 641 Osasuna Away Kiké #> 642 Osasuna Away Moi Gómez #> 643 Osasuna Away Lucas Torró #> 644 Osasuna Away Rubén García #> 645 Osasuna Away Jon Moncayola #> 646 Osasuna Away Rubén Peña #> 647 Osasuna Away Kike Barja #> 648 Osasuna Away Juan Cruz Armada #> 649 Osasuna Away David García #> 650 Osasuna Away Unai García #> 651 Osasuna Away Manu Sánchez #> 652 Osasuna Away Nacho Vidal #> 653 Osasuna Away Sergio Herrera #> 654 Elche Home Ezequiel Ponce #> 655 Elche Home Lucas Boyé #> 656 Elche Home Roger Martí #> 657 Elche Home Pere Milla #> 658 Elche Home Tete Morente #> 659 Elche Home Gerard Gumbau #> 660 Elche Home Raúl Guti #> 661 Elche Home Omar Mascarell #> 662 Elche Home Domingos Quina #> 663 Elche Home Álex Collado #> 664 Elche Home Johan Mojica #> 665 Elche Home Pedro Bigas #> 666 Elche Home Enzo Roco #> 667 Elche Home Pol Lirola #> 668 Elche Home Helibelton Palacios #> 669 Elche Home Édgar Badía #> 670 Real Sociedad Away Mohamed Ali Cho #> 671 Real Sociedad Away Jon Karrikaburu #> 672 Real Sociedad Away Takefusa Kubo #> 673 Real Sociedad Away Ander Barrenetxea #> 674 Real Sociedad Away David Silva #> 675 Real Sociedad Away Asier Illarramendi #> 676 Real Sociedad Away Mikel Merino #> 677 Real Sociedad Away Brais Méndez #> 678 Real Sociedad Away Martín Zubimendi #> 679 Real Sociedad Away Aihen Muñoz #> 680 Real Sociedad Away Robin Le Normand #> 681 Real Sociedad Away Igor Zubeldia #> 682 Real Sociedad Away Aritz Elustondo #> 683 Real Sociedad Away Andoni Gorosabel #> 684 Real Sociedad Away Jon Pacheco #> 685 Real Sociedad Away Álex Remiro #> 686 Rayo Vallecano Home Radamel Falcao #> 687 Rayo Vallecano Home Randy Ntekja #> 688 Rayo Vallecano Home Álvaro García #> 689 Rayo Vallecano Home Salvi #> 690 Rayo Vallecano Home Bebé #> 691 Rayo Vallecano Home Óscar Trejo #> 692 Rayo Vallecano Home Santi Comesaña #> 693 Rayo Vallecano Home Unai López #> 694 Rayo Vallecano Home Sergio Camello #> 695 Rayo Vallecano Home Óscar Valentín #> 696 Rayo Vallecano Home José Pozo #> 697 Rayo Vallecano Home Fran Garcia #> 698 Rayo Vallecano Home Catena #> 699 Rayo Vallecano Home Pathé Ciss #> 700 Rayo Vallecano Home Iván Balliu #> 701 Rayo Vallecano Home Stole Dimitrievski #> 702 Mallorca Away Vedat Muriqi #> 703 Mallorca Away Abdón Prats #> 704 Mallorca Away Lee Kang-in #> 705 Mallorca Away Javier Llabrés #> 706 Mallorca Away Dani Rodríguez #> 707 Mallorca Away Iñigo Ruiz de Galarreta #> 708 Mallorca Away Rodrigo Battaglia #> 709 Mallorca Away Clément Grenier #> 710 Mallorca Away Antonio Sánchez #> 711 Mallorca Away Jaume Costa #> 712 Mallorca Away Copete #> 713 Mallorca Away Antonio Raillo #> 714 Mallorca Away Martin Valjent #> 715 Mallorca Away Pablo Maffeo #> 716 Mallorca Away Predrag Rajković #> 717 Almería Home Umar Sadiq #> 718 Almería Home Largie Ramazani #> 719 Almería Home Léo Baptistão #> 720 Almería Home Lucas Robertone #> 721 Almería Home Curro #> 722 Almería Home Samu Costa #> 723 Almería Home Íñigo Eguaras #> 724 Almería Home César de la Hoz #> 725 Almería Home Sergio Akieme #> 726 Almería Home Alejandro Pozo Pozo #> 727 Almería Home Houboulang Mendes #> 728 Almería Home Srđan Babić #> 729 Almería Home Rodrigo Ely #> 730 Almería Home Kaiky #> 731 Almería Home Juan Brandáriz #> 732 Almería Home Fernando #> 733 Sevilla Away Érik Lamela #> 734 Sevilla Away Youssef En-Nesyri #> 735 Sevilla Away Rafa Mir #> 736 Sevilla Away Óliver Torres #> 737 Sevilla Away Thomas Delaney #> 738 Sevilla Away Papu Gómez #> 739 Sevilla Away Fernando #> 740 Sevilla Away Joan Jordán #> 741 Sevilla Away Isco #> 742 Sevilla Away Alex Telles #> 743 Sevilla Away Karim Rekik #> 744 Sevilla Away Carmona #> 745 Sevilla Away Tanguy Nianzou #> 746 Sevilla Away Jesús Navas #> 747 Sevilla Away Lucas Ocampos #> 748 Sevilla Away Yassine Bounou #> 749 Getafe Home Borja Mayoral #> 750 Getafe Home Juanmi Latasa #> 751 Getafe Home Enes Ünal #> 752 Getafe Home Jaime Mata #> 753 Getafe Home Portu #> 754 Getafe Home Mauro Arambarri #> 755 Getafe Home Jaime Seoane #> 756 Getafe Home Nemanja Maksimović #> 757 Getafe Home Carles Aleñá #> 758 Getafe Home Gastón Álvarez #> 759 Getafe Home Djené #> 760 Getafe Home Domingos Duarte #> 761 Getafe Home Iglesias #> 762 Getafe Home David Soria #> 763 Villarreal Away José Luis Morales #> 764 Villarreal Away Nicolas Jackson #> 765 Villarreal Away Gerard Moreno #> 766 Villarreal Away Giovani Lo Celso #> 767 Villarreal Away Alex Baena #> 768 Villarreal Away Daniel Parejo #> 769 Villarreal Away Francis Coquelin #> 770 Villarreal Away Étienne Capoue #> 771 Villarreal Away Yeremi Pino #> 772 Villarreal Away Samuel Chukwueze #> 773 Villarreal Away Alfonso Pedraza #> 774 Villarreal Away Pau Torres #> 775 Villarreal Away Raúl Albiol #> 776 Villarreal Away Juan Foyth #> 777 Villarreal Away Kiko Femenía #> 778 Villarreal Away Gerónimo Rulli #> 779 Barcelona Home Robert Lewandowski #> 780 Barcelona Home Ousmane Dembélé #> 781 Barcelona Home Ferrán Torres #> 782 Barcelona Home Raphinha #> 783 Barcelona Home Ansu Fati #> 784 Barcelona Home Pedri #> 785 Barcelona Home Sergio Busquets #> 786 Barcelona Home Franck Kessié #> 787 Barcelona Home Gavi #> 788 Barcelona Home Frenkie de Jong #> 789 Barcelona Home Alejandro Balde #> 790 Barcelona Home Eric García #> 791 Barcelona Home Ronald Araújo #> 792 Barcelona Home Sergi Roberto #> 793 Barcelona Home Jules Koundé #> 794 Barcelona Home Marc-André ter Stegen #> 795 Valladolid Away Sergi Guardiola #> 796 Valladolid Away Sergio León #> 797 Valladolid Away Anuar #> 798 Valladolid Away Roberto Arroyo #> 799 Valladolid Away Álvaro Aguado #> 800 Valladolid Away Roque Mesa #> 801 Valladolid Away Kike Pérez #> 802 Valladolid Away Iván Sánchez #> 803 Valladolid Away Toni Villa #> 804 Valladolid Away Monchu #> 805 Valladolid Away Óscar Plano #> 806 Valladolid Away Sergio Escudero #> 807 Valladolid Away Javi Sánchez #> 808 Valladolid Away Joaquín Fernández #> 809 Valladolid Away Luis Pérez #> 810 Valladolid Away Jordi Masip #> 811 Espanyol Home Joselu #> 812 Espanyol Home Javi Puado #> 813 Espanyol Home Nico Ribaudo #> 814 Espanyol Home Sergi Darder #> 815 Espanyol Home Edu Expósito #> 816 Espanyol Home Dani Gómez #> 817 Espanyol Home Rubén #> 818 Espanyol Home Vinicius Souza #> 819 Espanyol Home Keidi Bare #> 820 Espanyol Home Brian Oliván #> 821 Espanyol Home Leandro Cabrera #> 822 Espanyol Home Fernando Calero #> 823 Espanyol Home Óscar Gil #> 824 Espanyol Home Benjamin Lecomte #> 825 Real Madrid Away Karim Benzema #> 826 Real Madrid Away Vinicius Júnior #> 827 Real Madrid Away Federico Valverde #> 828 Real Madrid Away Rodrygo #> 829 Real Madrid Away Toni Kroos #> 830 Real Madrid Away Dani Ceballos #> 831 Real Madrid Away Aurélien Tchouaméni #> 832 Real Madrid Away Luka Modrić #> 833 Real Madrid Away Eduardo Camavinga #> 834 Real Madrid Away David Alaba #> 835 Real Madrid Away Antonio Rüdiger #> 836 Real Madrid Away Éder Militão #> 837 Real Madrid Away Lucas Vázquez #> 838 Real Madrid Away Dani Carvajal #> 839 Real Madrid Away Thibaut Courtois #> 840 Cádiz Home Álvaro Negredo #> 841 Cádiz Home Anthony Lozano #> 842 Cádiz Home Lucas Pérez #> 843 Cádiz Home Santiago Arzamendia #> 844 Cádiz Home José Mari #> 845 Cádiz Home Fede San Emeterio #> 846 Cádiz Home Blanco #> 847 Cádiz Home Álex Fernández #> 848 Cádiz Home Iván Alejo #> 849 Cádiz Home Alfonso Espino #> 850 Cádiz Home Awer Mabil #> 851 Cádiz Home Fali #> 852 Cádiz Home Víctor Chust #> 853 Cádiz Home Luis Hernández #> 854 Cádiz Home Joseba Zaldúa #> 855 Cádiz Home Jeremías Ledesma #> 856 Athletic Club Away Iñaki Williams #> 857 Athletic Club Away Gorka Guruzeta #> 858 Athletic Club Away Álex Berenguer #> 859 Athletic Club Away Jon Morcillo #> 860 Athletic Club Away Nico Williams #> 861 Athletic Club Away Raúl García #> 862 Athletic Club Away Iker Muniain #> 863 Athletic Club Away Mikel Vesga #> 864 Athletic Club Away Oihan Sancet #> 865 Athletic Club Away Dani García #> 866 Athletic Club Away Iñigo Lekue #> 867 Athletic Club Away Aitor Paredes #> 868 Athletic Club Away Yeray Álvarez #> 869 Athletic Club Away Daniel Vivian #> 870 Athletic Club Away Óscar de Marcos #> 871 Athletic Club Away Unai Simón #> 872 Valencia Home Marcos André #> 873 Valencia Home Maxi Gómez #> 874 Valencia Home Samuel #> 875 Valencia Home Samu Castillejo #> 876 Valencia Home Francisco Perez #> 877 Valencia Home Carlos Soler #> 878 Valencia Home Hugo Guillamón #> 879 Valencia Home Nicolás González #> 880 Valencia Home Yunus Musah #> 881 Valencia Home Toni Lato #> 882 Valencia Home Diego López #> 883 Valencia Home Mouctar Diakhaby #> 884 Valencia Home Eray Cömert #> 885 Valencia Home Thierry Correia #> 886 Valencia Home Dimitri Foulquier #> 887 Valencia Home Giorgi Mamardashvili #> 888 Atlético Madrid Away João Félix #> 889 Atlético Madrid Away Matheus Cunha #> 890 Atlético Madrid Away Álvaro Morata #> 891 Atlético Madrid Away Ángel Correa #> 892 Atlético Madrid Away Koke #> 893 Atlético Madrid Away Geoffrey Kondogbia #> 894 Atlético Madrid Away Antoine Griezmann #> 895 Atlético Madrid Away Rodrigo De Paul #> 896 Atlético Madrid Away Thomas Lemar #> 897 Atlético Madrid Away Saúl Ñíguez #> 898 Atlético Madrid Away Yannick Carrasco #> 899 Atlético Madrid Away Reinildo Mandava #> 900 Atlético Madrid Away Axel Witsel #> 901 Atlético Madrid Away José María Giménez #> 902 Atlético Madrid Away Marcos Llorente #> 903 Atlético Madrid Away Jan Oblak #> 904 Celta Vigo Home Iago Aspas #> 905 Celta Vigo Home Carles Pérez #> 906 Celta Vigo Home Jørgen Strand Larsen #> 907 Celta Vigo Home Óscar Rodríguez Arnaiz #> 908 Celta Vigo Home Augusto Solari #> 909 Celta Vigo Home Fran Beltrán #> 910 Celta Vigo Home Luca de la Torre #> 911 Celta Vigo Home Franco Cervi #> 912 Celta Vigo Home Renato Tapia #> 913 Celta Vigo Home Gabriel Veiga #> 914 Celta Vigo Home Javi Galán #> 915 Celta Vigo Home Unai Núñez #> 916 Celta Vigo Home Joseph Aidoo #> 917 Celta Vigo Home Hugo Mallo #> 918 Celta Vigo Home Óscar Mingueza #> 919 Celta Vigo Home Agustín Marchesín #> 920 Cádiz Away Anthony Lozano #> 921 Cádiz Away Lucas Pérez #> 922 Cádiz Away Blanco #> 923 Cádiz Away Álvaro Giménez #> 924 Cádiz Away Brian Ocampo #> 925 Cádiz Away Álex Fernández #> 926 Cádiz Away Tomás Alarcón #> 927 Cádiz Away Iván Alejo #> 928 Cádiz Away Rubén Sobrino #> 929 Cádiz Away Fede San Emeterio #> 930 Cádiz Away Theo Bongonda #> 931 Cádiz Away Alfonso Espino #> 932 Cádiz Away Víctor Chust #> 933 Cádiz Away Luis Hernández #> 934 Cádiz Away Joseba Zaldúa #> 935 Cádiz Away Jeremías Ledesma #> 936 Mallorca Home Vedat Muriqi #> 937 Mallorca Home Lee Kang-in #> 938 Mallorca Home Dani Rodríguez #> 939 Mallorca Home Abdón Prats #> 940 Mallorca Home Rodrigo Battaglia #> 941 Mallorca Home Iñigo Ruiz de Galarreta #> 942 Mallorca Home Antonio Sánchez #> 943 Mallorca Home Clément Grenier #> 944 Mallorca Home Jaume Costa #> 945 Mallorca Home Copete #> 946 Mallorca Home Antonio Raillo #> 947 Mallorca Home Martin Valjent #> 948 Mallorca Home Pablo Maffeo #> 949 Mallorca Home Predrag Rajković #> 950 Girona Away Valentín Castellanos #> 951 Girona Away Manu Vallejo #> 952 Girona Away Rodrigo Riquelme #> 953 Girona Away Samuel Sáiz #> 954 Girona Away Reinier #> 955 Girona Away Toni Villa #> 956 Girona Away Miguel Gutiérrez #> 957 Girona Away Bernardo Espinosa #> 958 Girona Away Aleix García #> 959 Girona Away Oriol Romeu #> 960 Girona Away Arnau Martinez #> 961 Girona Away Juanpe #> 962 Girona Away David López #> 963 Girona Away Javi Hernández #> 964 Girona Away Santiago Bueno #> 965 Girona Away Juan Carlos #> 966 Real Madrid Home Karim Benzema #> 967 Real Madrid Home Vinicius Júnior #> 968 Real Madrid Home Rodrygo #> 969 Real Madrid Home Dani Ceballos #> 970 Real Madrid Home Eduardo Camavinga #> 971 Real Madrid Home Federico Valverde #> 972 Real Madrid Home Aurélien Tchouaméni #> 973 Real Madrid Home Luka Modrić #> 974 Real Madrid Home Toni Kroos #> 975 Real Madrid Home Ferland Mendy #> 976 Real Madrid Home David Alaba #> 977 Real Madrid Home Éder Militão #> 978 Real Madrid Home Dani Carvajal #> 979 Real Madrid Home Antonio Rüdiger #> 980 Real Madrid Home Thibaut Courtois #> 981 Real Betis Away Borja Iglesias #> 982 Real Betis Away Juanmi #> 983 Real Betis Away Joaquín #> 984 Real Betis Away Sergio Canales #> 985 Real Betis Away Nabil Fekir #> 986 Real Betis Away Luiz Henrique #> 987 Real Betis Away Andrés Guardado #> 988 Real Betis Away Willian José #> 989 Real Betis Away Guido Rodríguez #> 990 Real Betis Away Álex Moreno #> 991 Real Betis Away Édgar González #> 992 Real Betis Away Luiz Felipe #> 993 Real Betis Away Youssouf Sabaly #> 994 Real Betis Away Aitor Ruibal #> 995 Real Betis Away Rui Silva #> 996 Real Sociedad Home Alexander Sørloth #> 997 Real Sociedad Home Umar Sadiq #> 998 Real Sociedad Home Mohamed Ali Cho #> 999 Real Sociedad Home Ander Barrenetxea #> 1000 Real Sociedad Home David Silva #> 1001 Real Sociedad Home Takefusa Kubo #> 1002 Real Sociedad Home Mikel Merino #> 1003 Real Sociedad Home Brais Méndez #> 1004 Real Sociedad Home Martín Zubimendi #> 1005 Real Sociedad Home Aihen Muñoz #> 1006 Real Sociedad Home Robin Le Normand #> 1007 Real Sociedad Home Igor Zubeldia #> 1008 Real Sociedad Home Aritz Elustondo #> 1009 Real Sociedad Home Andoni Gorosabel #> 1010 Real Sociedad Home Alex Sola #> 1011 Real Sociedad Home Álex Remiro #> 1012 Atlético Madrid Away João Félix #> 1013 Atlético Madrid Away Álvaro Morata #> 1014 Atlético Madrid Away Ángel Correa #> 1015 Atlético Madrid Away Yannick Carrasco #> 1016 Atlético Madrid Away Mario Hermoso #> 1017 Atlético Madrid Away Marcos Llorente #> 1018 Atlético Madrid Away Saúl Ñíguez #> 1019 Atlético Madrid Away Geoffrey Kondogbia #> 1020 Atlético Madrid Away Rodrigo De Paul #> 1021 Atlético Madrid Away Antoine Griezmann #> 1022 Atlético Madrid Away Koke #> 1023 Atlético Madrid Away Reinildo Mandava #> 1024 Atlético Madrid Away Axel Witsel #> 1025 Atlético Madrid Away José María Giménez #> 1026 Atlético Madrid Away Jan Oblak #> 1027 Atlético Madrid Away Ivo Grbić #> 1028 Sevilla Home Youssef En-Nesyri #> 1029 Sevilla Home Kasper Dolberg #> 1030 Sevilla Home Isco #> 1031 Sevilla Home Papu Gómez #> 1032 Sevilla Home Érik Lamela #> 1033 Sevilla Home Ivan Rakitić #> 1034 Sevilla Home Nemanja Gudelj #> 1035 Sevilla Home Carmona #> 1036 Sevilla Home Joan Jordán #> 1037 Sevilla Home Thomas Delaney #> 1038 Sevilla Home Marcos Acuña #> 1039 Sevilla Home Tanguy Nianzou #> 1040 Sevilla Home Fernando #> 1041 Sevilla Home Gonzalo Montiel #> 1042 Sevilla Home Suso #> 1043 Sevilla Home Yassine Bounou #> 1044 Barcelona Away Robert Lewandowski #> 1045 Barcelona Away Ansu Fati #> 1046 Barcelona Away Ousmane Dembélé #> 1047 Barcelona Away Ferrán Torres #> 1048 Barcelona Away Raphinha #> 1049 Barcelona Away Pedri #> 1050 Barcelona Away Frenkie de Jong #> 1051 Barcelona Away Sergio Busquets #> 1052 Barcelona Away Gavi #> 1053 Barcelona Away Alejandro Balde #> 1054 Barcelona Away Jordi Alba #> 1055 Barcelona Away Eric García #> 1056 Barcelona Away Sergi Roberto #> 1057 Barcelona Away Ronald Araújo #> 1058 Barcelona Away Jules Koundé #> 1059 Barcelona Away Marc-André ter Stegen #> 1060 Osasuna Home Ante Budimir #> 1061 Osasuna Home Kiké #> 1062 Osasuna Home Aimar Oroz #> 1063 Osasuna Home Moi Gómez #> 1064 Osasuna Home Pablo Ibáñez #> 1065 Osasuna Home Lucas Torró #> 1066 Osasuna Home Darko Brašanac #> 1067 Osasuna Home Jon Moncayola #> 1068 Osasuna Home Abdessamad Ezzalzouli #> 1069 Osasuna Home Ezequiel Ávila #> 1070 Osasuna Home Rubén García #> 1071 Osasuna Home Juan Cruz Armada #> 1072 Osasuna Home David García #> 1073 Osasuna Home Unai García #> 1074 Osasuna Home Nacho Vidal #> 1075 Osasuna Home Sergio Herrera #> 1076 Rayo Vallecano Away Sergio Camello #> 1077 Rayo Vallecano Away Radamel Falcao #> 1078 Rayo Vallecano Away Álvaro García #> 1079 Rayo Vallecano Away Salvi #> 1080 Rayo Vallecano Away Isaac Palazón Camacho #> 1081 Rayo Vallecano Away Óscar Trejo #> 1082 Rayo Vallecano Away Óscar Valentín #> 1083 Rayo Vallecano Away Santi Comesaña #> 1084 Rayo Vallecano Away Pathé Ciss #> 1085 Rayo Vallecano Away Fran Garcia #> 1086 Rayo Vallecano Away Pep Chavarría #> 1087 Rayo Vallecano Away Catena #> 1088 Rayo Vallecano Away Florian Lejeune #> 1089 Rayo Vallecano Away Iván Balliu #> 1090 Rayo Vallecano Away Stole Dimitrievski #> 1091 Athletic Club Home Iñaki Williams #> 1092 Athletic Club Home Raúl García #> 1093 Athletic Club Home Álex Berenguer #> 1094 Athletic Club Home Nico Williams #> 1095 Athletic Club Home Gorka Guruzeta #> 1096 Athletic Club Home Iker Muniain #> 1097 Athletic Club Home Mikel Vesga #> 1098 Athletic Club Home Oihan Sancet #> 1099 Athletic Club Home Unai Vencedor Paris #> 1100 Athletic Club Home Iñigo Lekue #> 1101 Athletic Club Home Jon Morcillo #> 1102 Athletic Club Home Yeray Álvarez #> 1103 Athletic Club Home Daniel Vivian #> 1104 Athletic Club Home Óscar de Marcos #> 1105 Athletic Club Home Unai Simón #> 1106 Espanyol Away Joselu #> 1107 Espanyol Away Martin Braithwaite #> 1108 Espanyol Away Dani Gómez #> 1109 Espanyol Away Javi Puado #> 1110 Espanyol Away José Carlos Lazo #> 1111 Espanyol Away Sergi Darder #> 1112 Espanyol Away Edu Expósito #> 1113 Espanyol Away Keidi Bare #> 1114 Espanyol Away Simo #> 1115 Espanyol Away Vinicius Souza #> 1116 Espanyol Away Brian Oliván #> 1117 Espanyol Away Leandro Cabrera #> 1118 Espanyol Away Fernando Calero #> 1119 Espanyol Away Omar El Hilali #> 1120 Espanyol Away Óscar Gil #> 1121 Espanyol Away Álvaro Fernández #> 1122 Villarreal Home Nicolas Jackson #> 1123 Villarreal Home José Luis Morales #> 1124 Villarreal Home Gerard Moreno #> 1125 Villarreal Home Alex Baena #> 1126 Villarreal Home Giovani Lo Celso #> 1127 Villarreal Home Francis Coquelin #> 1128 Villarreal Home Daniel Parejo #> 1129 Villarreal Home Étienne Capoue #> 1130 Villarreal Home Yeremi Pino #> 1131 Villarreal Home Samuel Chukwueze #> 1132 Villarreal Home Alfonso Pedraza #> 1133 Villarreal Home Pau Torres #> 1134 Villarreal Home Raúl Albiol #> 1135 Villarreal Home Kiko Femenía #> 1136 Villarreal Home Aïssa Mandi #> 1137 Villarreal Home Gerónimo Rulli #> 1138 Elche Away Ezequiel Ponce #> 1139 Elche Away Roger Martí #> 1140 Elche Away Lucas Boyé #> 1141 Elche Away Pere Milla #> 1142 Elche Away Álex Collado #> 1143 Elche Away Domingos Quina #> 1144 Elche Away Raúl Guti #> 1145 Elche Away Gerard Gumbau #> 1146 Elche Away Omar Mascarell #> 1147 Elche Away Tete Morente #> 1148 Elche Away Josan #> 1149 Elche Away Carlos Clerc #> 1150 Elche Away Pedro Bigas #> 1151 Elche Away Enzo Roco #> 1152 Elche Away Helibelton Palacios #> 1153 Elche Away Édgar Badía #> 1154 Valencia Home Marcos André #> 1155 Valencia Home Hugo Duro #> 1156 Valencia Home Samuel #> 1157 Valencia Home Samu Castillejo #> 1158 Valencia Home Ilaix Moriba #> 1159 Valencia Home Nicolás González #> 1160 Valencia Home Domingos André Ribeiro Almeida #> 1161 Valencia Home Hugo Guillamón #> 1162 Valencia Home Yunus Musah #> 1163 Valencia Home Toni Lato #> 1164 Valencia Home Dimitri Foulquier #> 1165 Valencia Home Mouctar Diakhaby #> 1166 Valencia Home Cristhian Mosquera #> 1167 Valencia Home Eray Cömert #> 1168 Valencia Home Thierry Correia #> 1169 Valencia Home Giorgi Mamardashvili #> 1170 Getafe Away Borja Mayoral #> 1171 Getafe Away Enes Ünal #> 1172 Getafe Away Jaime Mata #> 1173 Getafe Away Portu #> 1174 Getafe Away Nemanja Maksimović #> 1175 Getafe Away Jaime Seoane #> 1176 Getafe Away Gastón Álvarez #> 1177 Getafe Away Mauro Arambarri #> 1178 Getafe Away Carles Aleñá #> 1179 Getafe Away Munir El Haddadi #> 1180 Getafe Away Fabrizio Angileri #> 1181 Getafe Away Domingos Duarte #> 1182 Getafe Away Djené #> 1183 Getafe Away Stefan Mitrović #> 1184 Getafe Away Iglesias #> 1185 Getafe Away David Soria #> 1186 Valladolid Home Sergi Guardiola #> 1187 Valladolid Home Shon Weissman #> 1188 Valladolid Home Óscar Plano #> 1189 Valladolid Home Gonzalo Plata #> 1190 Valladolid Home Iván Sánchez #> 1191 Valladolid Home Sergio León #> 1192 Valladolid Home Kike Pérez #> 1193 Valladolid Home Roque Mesa #> 1194 Valladolid Home Juanjo Narváez #> 1195 Valladolid Home Álvaro Aguado #> 1196 Valladolid Home Monchu #> 1197 Valladolid Home Sergio Escudero #> 1198 Valladolid Home Javi Sánchez #> 1199 Valladolid Home Joaquín Fernández #> 1200 Valladolid Home Luis Pérez #> 1201 Valladolid Home Sergio Asenjo #> 1202 Almería Away Dyego Sousa #> 1203 Almería Away Adri Embarba #> 1204 Almería Away Largie Ramazani #> 1205 Almería Away Francisco Portillo #> 1206 Almería Away Léo Baptistão #> 1207 Almería Away Marko Milovanović #> 1208 Almería Away Lucas Robertone #> 1209 Almería Away Samu Costa #> 1210 Almería Away César de la Hoz #> 1211 Almería Away Kaiky #> 1212 Almería Away Sergio Akieme #> 1213 Almería Away Srđan Babić #> 1214 Almería Away Rodrigo Ely #> 1215 Almería Away Alejandro Pozo Pozo #> 1216 Almería Away Fernando #> 1217 Girona Home Valentín Castellanos #> 1218 Girona Home Javi Hernández #> 1219 Girona Home Reinier #> 1220 Girona Home Toni Villa #> 1221 Girona Home Rodrigo Riquelme #> 1222 Girona Home Samuel Sáiz #> 1223 Girona Home Aleix García #> 1224 Girona Home Oriol Romeu #> 1225 Girona Home Miguel Gutiérrez #> 1226 Girona Home Arnau Martinez #> 1227 Girona Home Yan Couto #> 1228 Girona Home Juanpe #> 1229 Girona Home Bernardo Espinosa #> 1230 Girona Home Manu Vallejo #> 1231 Girona Home Santiago Bueno #> 1232 Girona Home Juan Carlos #> 1233 Valladolid Away Sergi Guardiola #> 1234 Valladolid Away Shon Weissman #> 1235 Valladolid Away Anuar #> 1236 Valladolid Away Óscar Plano #> 1237 Valladolid Away Monchu #> 1238 Valladolid Away Kike Pérez #> 1239 Valladolid Away Álvaro Aguado #> 1240 Valladolid Away Gonzalo Plata #> 1241 Valladolid Away Kenedy #> 1242 Valladolid Away Roque Mesa #> 1243 Valladolid Away Lucas Olaza #> 1244 Valladolid Away Javi Sánchez #> 1245 Valladolid Away Joaquín Fernández #> 1246 Valladolid Away Luis Pérez #> 1247 Valladolid Away Iván Fresneda #> 1248 Valladolid Away Sergio Asenjo #> 1249 Rayo Vallecano Home Sergio Camello #> 1250 Rayo Vallecano Home Pathé Ciss #> 1251 Rayo Vallecano Home Álvaro García #> 1252 Rayo Vallecano Home Isaac Palazón Camacho #> 1253 Rayo Vallecano Home Randy Ntekja #> 1254 Rayo Vallecano Home Óscar Trejo #> 1255 Rayo Vallecano Home Unai López #> 1256 Rayo Vallecano Home Óscar Valentín #> 1257 Rayo Vallecano Home José Pozo #> 1258 Rayo Vallecano Home Santi Comesaña #> 1259 Rayo Vallecano Home Radamel Falcao #> 1260 Rayo Vallecano Home Fran Garcia #> 1261 Rayo Vallecano Home Catena #> 1262 Rayo Vallecano Home Florian Lejeune #> 1263 Rayo Vallecano Home Iván Balliu #> 1264 Rayo Vallecano Home Stole Dimitrievski #> 1265 Valencia Away Hugo Duro #> 1266 Valencia Away Justin Kluivert #> 1267 Valencia Away Samuel #> 1268 Valencia Away Samu Castillejo #> 1269 Valencia Away Yunus Musah #> 1270 Valencia Away Nicolás González #> 1271 Valencia Away Marcos André #> 1272 Valencia Away Hugo Guillamón #> 1273 Valencia Away Domingos André Ribeiro Almeida #> 1274 Valencia Away José Luis Gayà #> 1275 Valencia Away Toni Lato #> 1276 Valencia Away Mouctar Diakhaby #> 1277 Valencia Away Gabriel Paulista #> 1278 Valencia Away Thierry Correia #> 1279 Valencia Away Giorgi Mamardashvili #> 1280 Espanyol Home Joselu #> 1281 Espanyol Home Martin Braithwaite #> 1282 Espanyol Home Javi Puado #> 1283 Espanyol Home Nico Ribaudo #> 1284 Espanyol Home Sergi Darder #> 1285 Espanyol Home Vinicius Souza #> 1286 Espanyol Home Edu Expósito #> 1287 Espanyol Home Dani Gómez #> 1288 Espanyol Home Brian Oliván #> 1289 Espanyol Home Leandro Cabrera #> 1290 Espanyol Home Sergi Gómez #> 1291 Espanyol Home Óscar Gil #> 1292 Espanyol Home Rubén #> 1293 Espanyol Home Omar El Hilali #> 1294 Espanyol Home Álvaro Fernández #> 1295 Sevilla Away Érik Lamela #> 1296 Sevilla Away Óliver Torres #> 1297 Sevilla Away Tanguy Nianzou #> 1298 Sevilla Away Youssef En-Nesyri #> 1299 Sevilla Away Isco #> 1300 Sevilla Away Fernando #> 1301 Sevilla Away Joan Jordán #> 1302 Sevilla Away Ivan Rakitić #> 1303 Sevilla Away Marcos Acuña #> 1304 Sevilla Away Alex Telles #> 1305 Sevilla Away Kike Salas #> 1306 Sevilla Away Karim Rekik #> 1307 Sevilla Away Nemanja Gudelj #> 1308 Sevilla Away Carmona #> 1309 Sevilla Away Jesús Navas #> 1310 Sevilla Away Yassine Bounou #> 1311 Cádiz Home Lucas Pérez #> 1312 Cádiz Home Awer Mabil #> 1313 Cádiz Home Brian Ocampo #> 1314 Cádiz Home Iván Alejo #> 1315 Cádiz Home Theo Bongonda #> 1316 Cádiz Home Rubén Sobrino #> 1317 Cádiz Home Álvaro Negredo #> 1318 Cádiz Home Fede San Emeterio #> 1319 Cádiz Home Rubén Alcaraz #> 1320 Cádiz Home Álex Fernández #> 1321 Cádiz Home Tomás Alarcón #> 1322 Cádiz Home Alfonso Espino #> 1323 Cádiz Home Mamadou Mbaye #> 1324 Cádiz Home Luis Hernández #> 1325 Cádiz Home Joseba Zaldúa #> 1326 Cádiz Home Jeremías Ledesma #> 1327 Barcelona Away Memphis #> 1328 Barcelona Away Robert Lewandowski #> 1329 Barcelona Away Ferrán Torres #> 1330 Barcelona Away Ousmane Dembélé #> 1331 Barcelona Away Raphinha #> 1332 Barcelona Away Ansu Fati #> 1333 Barcelona Away Gavi #> 1334 Barcelona Away Pedri #> 1335 Barcelona Away Sergio Busquets #> 1336 Barcelona Away Frenkie de Jong #> 1337 Barcelona Away Alejandro Balde #> 1338 Barcelona Away Marcos Alonso #> 1339 Barcelona Away Gerard Piqué #> 1340 Barcelona Away Ronald Araújo #> 1341 Barcelona Away Héctor Bellerín #> 1342 Barcelona Away Marc-André ter Stegen #> 1343 Atlético Madrid Home Álvaro Morata #> 1344 Atlético Madrid Home Antoine Griezmann #> 1345 Atlético Madrid Home Ángel Correa #> 1346 Atlético Madrid Home João Félix #> 1347 Atlético Madrid Home Thomas Lemar #> 1348 Atlético Madrid Home Koke #> 1349 Atlético Madrid Home Geoffrey Kondogbia #> 1350 Atlético Madrid Home Rodrigo De Paul #> 1351 Atlético Madrid Home Matheus Cunha #> 1352 Atlético Madrid Home Yannick Carrasco #> 1353 Atlético Madrid Home Saúl Ñíguez #> 1354 Atlético Madrid Home Reinildo Mandava #> 1355 Atlético Madrid Home Mario Hermoso #> 1356 Atlético Madrid Home Axel Witsel #> 1357 Atlético Madrid Home Nahuel Molina #> 1358 Atlético Madrid Home Ivo Grbić #> 1359 Celta Vigo Away Jørgen Strand Larsen #> 1360 Celta Vigo Away Iago Aspas #> 1361 Celta Vigo Away Franco Cervi #> 1362 Celta Vigo Away Fran Beltrán #> 1363 Celta Vigo Away Carles Pérez #> 1364 Celta Vigo Away Gabriel Veiga #> 1365 Celta Vigo Away Renato Tapia #> 1366 Celta Vigo Away Augusto Solari #> 1367 Celta Vigo Away Javi Galán #> 1368 Celta Vigo Away Unai Núñez #> 1369 Celta Vigo Away Joseph Aidoo #> 1370 Celta Vigo Away Hugo Mallo #> 1371 Celta Vigo Away Agustín Marchesín #> 1372 Real Madrid Home Eden Hazard #> 1373 Real Madrid Home Luka Modrić #> 1374 Real Madrid Home Vinicius Júnior #> 1375 Real Madrid Home Rodrygo #> 1376 Real Madrid Home Dani Ceballos #> 1377 Real Madrid Home Eduardo Camavinga #> 1378 Real Madrid Home Toni Kroos #> 1379 Real Madrid Home Federico Valverde #> 1380 Real Madrid Home Ferland Mendy #> 1381 Real Madrid Home Nacho #> 1382 Real Madrid Home David Alaba #> 1383 Real Madrid Home Antonio Rüdiger #> 1384 Real Madrid Home Lucas Vázquez #> 1385 Real Madrid Home Dani Carvajal #> 1386 Real Madrid Home Thibaut Courtois #> 1387 Mallorca Away Lee Kang-in #> 1388 Mallorca Away Lago Junior #> 1389 Mallorca Away Vedat Muriqi #> 1390 Mallorca Away Abdón Prats #> 1391 Mallorca Away Iñigo Ruiz de Galarreta #> 1392 Mallorca Away Antonio Sánchez #> 1393 Mallorca Away Rodrigo Battaglia #> 1394 Mallorca Away Iddrisu Baba #> 1395 Mallorca Away Dani Rodríguez #> 1396 Mallorca Away Clément Grenier #> 1397 Mallorca Away Jaume Costa #> 1398 Mallorca Away Matija Nastasić #> 1399 Mallorca Away Antonio Raillo #> 1400 Mallorca Away Martin Valjent #> 1401 Mallorca Away Pablo Maffeo #> 1402 Mallorca Away Predrag Rajković #> 1403 Elche Home Lucas Boyé #> 1404 Elche Home Pere Milla #> 1405 Elche Home Álex Collado #> 1406 Elche Home Fidel #> 1407 Elche Home Domingos Quina #> 1408 Elche Home Gerard Gumbau #> 1409 Elche Home Raúl Guti #> 1410 Elche Home Omar Mascarell #> 1411 Elche Home Ezequiel Ponce #> 1412 Elche Home Nicolás Ezequiel Fernández #> 1413 Elche Home Pedro Bigas #> 1414 Elche Home Enzo Roco #> 1415 Elche Home John Donald #> 1416 Elche Home Pol Lirola #> 1417 Elche Home Josan #> 1418 Elche Home Édgar Badía #> 1419 Athletic Club Away Iñaki Williams #> 1420 Athletic Club Away Jon Morcillo #> 1421 Athletic Club Away Álex Berenguer #> 1422 Athletic Club Away Nico Williams #> 1423 Athletic Club Away Oier Zarraga #> 1424 Athletic Club Away Iker Muniain #> 1425 Athletic Club Away Gorka Guruzeta #> 1426 Athletic Club Away Dani García #> 1427 Athletic Club Away Mikel Vesga #> 1428 Athletic Club Away Oihan Sancet #> 1429 Athletic Club Away Raúl García #> 1430 Athletic Club Away Iñigo Lekue #> 1431 Athletic Club Away Iñigo Martínez #> 1432 Athletic Club Away Daniel Vivian #> 1433 Athletic Club Away Óscar de Marcos #> 1434 Athletic Club Away Unai Simón #> 1435 Getafe Home Borja Mayoral #> 1436 Getafe Home Munir El Haddadi #> 1437 Getafe Home Enes Ünal #> 1438 Getafe Home Nemanja Maksimović #> 1439 Getafe Home Ángel Algobia #> 1440 Getafe Home Jaime Seoane #> 1441 Getafe Home Carles Aleñá #> 1442 Getafe Home Portu #> 1443 Getafe Home Fabrizio Angileri #> 1444 Getafe Home Iglesias #> 1445 Getafe Home Gastón Álvarez #> 1446 Getafe Home Stefan Mitrović #> 1447 Getafe Home Domingos Duarte #> 1448 Getafe Home Damián Suárez #> 1449 Getafe Home David Soria #> 1450 Real Sociedad Away Alexander Sørloth #> 1451 Real Sociedad Away Jon Karrikaburu #> 1452 Real Sociedad Away Umar Sadiq #> 1453 Real Sociedad Away Mohamed Ali Cho #> 1454 Real Sociedad Away Takefusa Kubo #> 1455 Real Sociedad Away Brais Méndez #> 1456 Real Sociedad Away Beñat Turrientes #> 1457 Real Sociedad Away David Silva #> 1458 Real Sociedad Away Mikel Merino #> 1459 Real Sociedad Away Martín Zubimendi #> 1460 Real Sociedad Away Aihen Muñoz #> 1461 Real Sociedad Away Jon Pacheco #> 1462 Real Sociedad Away Igor Zubeldia #> 1463 Real Sociedad Away Alex Sola #> 1464 Real Sociedad Away Andoni Gorosabel #> 1465 Real Sociedad Away Álex Remiro #> 1466 Real Betis Home Borja Iglesias #> 1467 Real Betis Home Willian José #> 1468 Real Betis Home Rodri #> 1469 Real Betis Home Aitor Ruibal #> 1470 Real Betis Home Luiz Henrique #> 1471 Real Betis Home Andrés Guardado #> 1472 Real Betis Home Sergio Canales #> 1473 Real Betis Home William Carvalho #> 1474 Real Betis Home Guido Rodríguez #> 1475 Real Betis Home Álex Moreno #> 1476 Real Betis Home Luiz Felipe #> 1477 Real Betis Home Germán Pezzella #> 1478 Real Betis Home Youssouf Sabaly #> 1479 Real Betis Home Rui Silva #> 1480 Villarreal Away Nicolas Jackson #> 1481 Villarreal Away José Luis Morales #> 1482 Villarreal Away Gerard Moreno #> 1483 Villarreal Away Alex Baena #> 1484 Villarreal Away Giovani Lo Celso #> 1485 Villarreal Away Daniel Parejo #> 1486 Villarreal Away Étienne Capoue #> 1487 Villarreal Away Francis Coquelin #> 1488 Villarreal Away Yeremi Pino #> 1489 Villarreal Away Samuel Chukwueze #> 1490 Villarreal Away Alfonso Pedraza #> 1491 Villarreal Away Johan Mojica #> 1492 Villarreal Away Pau Torres #> 1493 Villarreal Away Raúl Albiol #> 1494 Villarreal Away Kiko Femenía #> 1495 Villarreal Away Gerónimo Rulli #> 1496 Almería Home Dyego Sousa #> 1497 Almería Home El Bilal Touré #> 1498 Almería Home Adri Embarba #> 1499 Almería Home Arnau Puigmal #> 1500 Almería Home Largie Ramazani #> 1501 Almería Home Marko Milovanović #> 1502 Almería Home Samu Costa #> 1503 Almería Home Íñigo Eguaras #> 1504 Almería Home Francisco Portillo #> 1505 Almería Home Lucas Robertone #> 1506 Almería Home Lázaro #> 1507 Almería Home Sergio Akieme #> 1508 Almería Home Srđan Babić #> 1509 Almería Home Rodrigo Ely #> 1510 Almería Home Alejandro Pozo Pozo #> 1511 Almería Home Fernando #> 1512 Osasuna Away Ante Budimir #> 1513 Osasuna Away Abdessamad Ezzalzouli #> 1514 Osasuna Away Moi Gómez #> 1515 Osasuna Away Kike Barja #> 1516 Osasuna Away Ezequiel Ávila #> 1517 Osasuna Away Kiké #> 1518 Osasuna Away Rubén García #> 1519 Osasuna Away Jon Moncayola #> 1520 Osasuna Away Darko Brašanac #> 1521 Osasuna Away Pablo Ibáñez #> 1522 Osasuna Away Lucas Torró #> 1523 Osasuna Away Juan Cruz Armada #> 1524 Osasuna Away David García #> 1525 Osasuna Away Unai García #> 1526 Osasuna Away Nacho Vidal #> 1527 Osasuna Away Sergio Herrera #> 1528 Valladolid Home Shon Weissman #> 1529 Valladolid Home Sergi Guardiola #> 1530 Valladolid Home Óscar Plano #> 1531 Valladolid Home Juanjo Narváez #> 1532 Valladolid Home Gonzalo Plata #> 1533 Valladolid Home Sergio León #> 1534 Valladolid Home Kike Pérez #> 1535 Valladolid Home Roque Mesa #> 1536 Valladolid Home Mickael Malsa #> 1537 Valladolid Home Monchu #> 1538 Valladolid Home Iván Sánchez #> 1539 Valladolid Home Lucas Olaza #> 1540 Valladolid Home Javi Sánchez #> 1541 Valladolid Home Joaquín Fernández #> 1542 Valladolid Home Iván Fresneda #> 1543 Valladolid Home Sergio Asenjo #> 1544 Cádiz Away Lucas Pérez #> 1545 Cádiz Away Brian Ocampo #> 1546 Cádiz Away Rubén Alcaraz #> 1547 Cádiz Away Iván Alejo #> 1548 Cádiz Away Álvaro Negredo #> 1549 Cádiz Away Rubén Sobrino #> 1550 Cádiz Away Álex Fernández #> 1551 Cádiz Away Theo Bongonda #> 1552 Cádiz Away Fede San Emeterio #> 1553 Cádiz Away José Mari #> 1554 Cádiz Away Alfonso Espino #> 1555 Cádiz Away Víctor Chust #> 1556 Cádiz Away Luis Hernández #> 1557 Cádiz Away Isaac Carcelen #> 1558 Cádiz Away Joseba Zaldúa #> 1559 Cádiz Away Jeremías Ledesma #> 1560 Mallorca Home Vedat Muriqi #> 1561 Mallorca Home Ángel Rodríguez #> 1562 Mallorca Home Lee Kang-in #> 1563 Mallorca Home Clément Grenier #> 1564 Mallorca Home Iddrisu Baba #> 1565 Mallorca Home Iñigo Ruiz de Galarreta #> 1566 Mallorca Home Abdón Prats #> 1567 Mallorca Home Antonio Sánchez #> 1568 Mallorca Home Dani Rodríguez #> 1569 Mallorca Home Jaume Costa #> 1570 Mallorca Home Copete #> 1571 Mallorca Home Antonio Raillo #> 1572 Mallorca Home Martin Valjent #> 1573 Mallorca Home Pablo Maffeo #> 1574 Mallorca Home Predrag Rajković #> 1575 Almería Away Largie Ramazani #> 1576 Almería Away El Bilal Touré #> 1577 Almería Away Dyego Sousa #> 1578 Almería Away Lázaro #> 1579 Almería Away Gonzalo Melero #> 1580 Almería Away Samu Costa #> 1581 Almería Away Lucas Robertone #> 1582 Almería Away Francisco Portillo #> 1583 Almería Away Sergio Akieme #> 1584 Almería Away Srđan Babić #> 1585 Almería Away Rodrigo Ely #> 1586 Almería Away Juan Brandáriz #> 1587 Almería Away Adri Embarba #> 1588 Almería Away Alejandro Pozo Pozo #> 1589 Almería Away Arnau Puigmal #> 1590 Almería Away Fernando #> 1591 Barcelona Home Robert Lewandowski #> 1592 Barcelona Home Ferrán Torres #> 1593 Barcelona Home Memphis #> 1594 Barcelona Home Ansu Fati #> 1595 Barcelona Home Ousmane Dembélé #> 1596 Barcelona Home Raphinha #> 1597 Barcelona Home Pedri #> 1598 Barcelona Home Frenkie de Jong #> 1599 Barcelona Home Franck Kessié #> 1600 Barcelona Home Gavi #> 1601 Barcelona Home Alejandro Balde #> 1602 Barcelona Home Eric García #> 1603 Barcelona Home Héctor Bellerín #> 1604 Barcelona Home Ronald Araújo #> 1605 Barcelona Home Jules Koundé #> 1606 Barcelona Home Marc-André ter Stegen #> 1607 Elche Away Lucas Boyé #> 1608 Elche Away Josan #> 1609 Elche Away Fidel #> 1610 Elche Away Domingos Quina #> 1611 Elche Away Gerard Gumbau #> 1612 Elche Away Raúl Guti #> 1613 Elche Away Nicolás Ezequiel Fernández #> 1614 Elche Away Tete Morente #> 1615 Elche Away Ezequiel Ponce #> 1616 Elche Away Carlos Clerc #> 1617 Elche Away Pedro Bigas #> 1618 Elche Away Diego González #> 1619 Elche Away Gonzalo Verdú #> 1620 Elche Away John Donald #> 1621 Elche Away Helibelton Palacios #> 1622 Elche Away Édgar Badía #> 1623 Valencia Home Edinson Cavani #> 1624 Valencia Home Justin Kluivert #> 1625 Valencia Home Samuel #> 1626 Valencia Home Samu Castillejo #> 1627 Valencia Home Marcos André #> 1628 Valencia Home Ilaix Moriba #> 1629 Valencia Home Nicolás González #> 1630 Valencia Home Hugo Guillamón #> 1631 Valencia Home Domingos André Ribeiro Almeida #> 1632 Valencia Home José Luis Gayà #> 1633 Valencia Home Toni Lato #> 1634 Valencia Home Mouctar Diakhaby #> 1635 Valencia Home Eray Cömert #> 1636 Valencia Home Gabriel Paulista #> 1637 Valencia Home Thierry Correia #> 1638 Valencia Home Giorgi Mamardashvili #> 1639 Celta Vigo Away Jørgen Strand Larsen #> 1640 Celta Vigo Away Luca de la Torre #> 1641 Celta Vigo Away Iago Aspas #> 1642 Celta Vigo Away Franco Cervi #> 1643 Celta Vigo Away Fran Beltrán #> 1644 Celta Vigo Away Carles Pérez #> 1645 Celta Vigo Away Óscar Rodríguez Arnaiz #> 1646 Celta Vigo Away Gabriel Veiga #> 1647 Celta Vigo Away Renato Tapia #> 1648 Celta Vigo Away Javi Galán #> 1649 Celta Vigo Away Unai Núñez #> 1650 Celta Vigo Away Joseph Aidoo #> 1651 Celta Vigo Away Hugo Mallo #> 1652 Celta Vigo Away Agustín Marchesín #> 1653 Athletic Club Home Iñaki Williams #> 1654 Athletic Club Home Raúl García #> 1655 Athletic Club Home Álex Berenguer #> 1656 Athletic Club Home Aitor Paredes #> 1657 Athletic Club Home Nico Williams #> 1658 Athletic Club Home Oier Zarraga #> 1659 Athletic Club Home Iker Muniain #> 1660 Athletic Club Home Jon Morcillo #> 1661 Athletic Club Home Dani García #> 1662 Athletic Club Home Oihan Sancet #> 1663 Athletic Club Home Ander Herrera #> 1664 Athletic Club Home Iñigo Lekue #> 1665 Athletic Club Home Iñigo Martínez #> 1666 Athletic Club Home Yeray Álvarez #> 1667 Athletic Club Home Óscar de Marcos #> 1668 Athletic Club Home Unai Simón #> 1669 Rayo Vallecano Away Sergio Camello #> 1670 Rayo Vallecano Away Radamel Falcao #> 1671 Rayo Vallecano Away Álvaro García #> 1672 Rayo Vallecano Away Isaac Palazón Camacho #> 1673 Rayo Vallecano Away Óscar Trejo #> 1674 Rayo Vallecano Away Bebé #> 1675 Rayo Vallecano Away Santi Comesaña #> 1676 Rayo Vallecano Away Unai López #> 1677 Rayo Vallecano Away Óscar Valentín #> 1678 Rayo Vallecano Away Pathé Ciss #> 1679 Rayo Vallecano Away Fran Garcia #> 1680 Rayo Vallecano Away Catena #> 1681 Rayo Vallecano Away Florian Lejeune #> 1682 Rayo Vallecano Away Abdul Mumin #> 1683 Rayo Vallecano Away Iván Balliu #> 1684 Rayo Vallecano Away Stole Dimitrievski #> 1685 Osasuna Home Ante Budimir #> 1686 Osasuna Home Kiké #> 1687 Osasuna Home Moi Gómez #> 1688 Osasuna Home Ezequiel Ávila #> 1689 Osasuna Home Rubén García #> 1690 Osasuna Home Abdessamad Ezzalzouli #> 1691 Osasuna Home Darko Brašanac #> 1692 Osasuna Home Jon Moncayola #> 1693 Osasuna Home Lucas Torró #> 1694 Osasuna Home Juan Cruz Armada #> 1695 Osasuna Home David García #> 1696 Osasuna Home Manu Sánchez #> 1697 Osasuna Home Unai García #> 1698 Osasuna Home Nacho Vidal #> 1699 Osasuna Home Rubén Peña #> 1700 Osasuna Home Sergio Herrera #> 1701 Getafe Away Enes Ünal #> 1702 Getafe Away Jaime Mata #> 1703 Getafe Away Borja Mayoral #> 1704 Getafe Away Munir El Haddadi #> 1705 Getafe Away Nemanja Maksimović #> 1706 Getafe Away Luis Milla #> 1707 Getafe Away Mauro Arambarri #> 1708 Getafe Away Carles Aleñá #> 1709 Getafe Away Jaime Seoane #> 1710 Getafe Away Iglesias #> 1711 Getafe Away Gastón Álvarez #> 1712 Getafe Away Alejandro Revuelta Montero #> 1713 Getafe Away Stefan Mitrović #> 1714 Getafe Away Domingos Duarte #> 1715 Getafe Away Damián Suárez #> 1716 Getafe Away David Soria #> 1717 Villarreal Home Nicolas Jackson #> 1718 Villarreal Home José Luis Morales #> 1719 Villarreal Home Giovani Lo Celso #> 1720 Villarreal Home Alex Baena #> 1721 Villarreal Home Francis Coquelin #> 1722 Villarreal Home Arnaut Danjuma #> 1723 Villarreal Home Daniel Parejo #> 1724 Villarreal Home Étienne Capoue #> 1725 Villarreal Home Samuel Chukwueze #> 1726 Villarreal Home Yeremi Pino #> 1727 Villarreal Home Alfonso Pedraza #> 1728 Villarreal Home Johan Mojica #> 1729 Villarreal Home Pau Torres #> 1730 Villarreal Home Raúl Albiol #> 1731 Villarreal Home Kiko Femenía #> 1732 Villarreal Home Gerónimo Rulli #> 1733 Sevilla Away Rafa Mir #> 1734 Sevilla Away Óliver Torres #> 1735 Sevilla Away Papu Gómez #> 1736 Sevilla Away Jesús Navas #> 1737 Sevilla Away Isco #> 1738 Sevilla Away Fernando #> 1739 Sevilla Away Tanguy Nianzou #> 1740 Sevilla Away Joan Jordán #> 1741 Sevilla Away Marcos Acuña #> 1742 Sevilla Away Alex Telles #> 1743 Sevilla Away Kike Salas #> 1744 Sevilla Away Nemanja Gudelj #> 1745 Sevilla Away Carmona #> 1746 Sevilla Away Suso #> 1747 Sevilla Away Yassine Bounou #> 1748 Sevilla Away Marko Dmitrović #> 1749 Real Betis Home Borja Iglesias #> 1750 Real Betis Home Rodri #> 1751 Real Betis Home Luiz Henrique #> 1752 Real Betis Home Willian José #> 1753 Real Betis Home Sergio Canales #> 1754 Real Betis Home Paul Akouokou #> 1755 Real Betis Home William Carvalho #> 1756 Real Betis Home Guido Rodríguez #> 1757 Real Betis Home Álex Moreno #> 1758 Real Betis Home Luiz Felipe #> 1759 Real Betis Home Germán Pezzella #> 1760 Real Betis Home Édgar González #> 1761 Real Betis Home Martín Montoya #> 1762 Real Betis Home Aitor Ruibal #> 1763 Real Betis Home Rui Silva #> 1764 Girona Away Valentín Castellanos #> 1765 Girona Away Manu Vallejo #> 1766 Girona Away Rodrigo Riquelme #> 1767 Girona Away Samuel Sáiz #> 1768 Girona Away Reinier #> 1769 Girona Away Aleix García #> 1770 Girona Away Joel Roca #> 1771 Girona Away Oriol Romeu #> 1772 Girona Away Miguel Gutiérrez #> 1773 Girona Away Arnau Martinez #> 1774 Girona Away Yan Couto #> 1775 Girona Away Juanpe #> 1776 Girona Away Bernardo Espinosa #> 1777 Girona Away Toni Villa #> 1778 Girona Away Santiago Bueno #> 1779 Girona Away Juan Carlos #> 1780 Real Sociedad Home Takefusa Kubo #> 1781 Real Sociedad Home Beñat Turrientes #> 1782 Real Sociedad Home Alexander Sørloth #> 1783 Real Sociedad Home Mikel Merino #> 1784 Real Sociedad Home David Silva #> 1785 Real Sociedad Home Mohamed Ali Cho #> 1786 Real Sociedad Home Brais Méndez #> 1787 Real Sociedad Home Igor Zubeldia #> 1788 Real Sociedad Home Martín Zubimendi #> 1789 Real Sociedad Home Aihen Muñoz #> 1790 Real Sociedad Home Jon Pacheco #> 1791 Real Sociedad Home Aritz Elustondo #> 1792 Real Sociedad Home Andoni Gorosabel #> 1793 Real Sociedad Home Álex Remiro #> 1794 Espanyol Away Martin Braithwaite #> 1795 Espanyol Away Joselu #> 1796 Espanyol Away Edu Expósito #> 1797 Espanyol Away Dani Gómez #> 1798 Espanyol Away Vinicius Souza #> 1799 Espanyol Away Pol Lozano #> 1800 Espanyol Away Sergi Darder #> 1801 Espanyol Away Brian Oliván #> 1802 Espanyol Away Leandro Cabrera #> 1803 Espanyol Away Sergi Gómez #> 1804 Espanyol Away Fernando Calero #> 1805 Espanyol Away Aleix Vidal #> 1806 Espanyol Away Omar El Hilali #> 1807 Espanyol Away Javi Puado #> 1808 Espanyol Away Álvaro Fernández #> 1809 Atlético Madrid Home João Félix #> 1810 Atlético Madrid Home Matheus Cunha #> 1811 Atlético Madrid Home Antoine Griezmann #> 1812 Atlético Madrid Home Koke #> 1813 Atlético Madrid Home Ángel Correa #> 1814 Atlético Madrid Home Geoffrey Kondogbia #> 1815 Atlético Madrid Home Saúl Ñíguez #> 1816 Atlético Madrid Home Rodrigo De Paul #> 1817 Atlético Madrid Home Álvaro Morata #> 1818 Atlético Madrid Home Yannick Carrasco #> 1819 Atlético Madrid Home Mario Hermoso #> 1820 Atlético Madrid Home Marcos Llorente #> 1821 Atlético Madrid Home Reinildo Mandava #> 1822 Atlético Madrid Home Axel Witsel #> 1823 Atlético Madrid Home Felipe #> 1824 Atlético Madrid Home Jan Oblak #> 1825 Real Madrid Away Rodrygo #> 1826 Real Madrid Away Dani Ceballos #> 1827 Real Madrid Away Vinicius Júnior #> 1828 Real Madrid Away Federico Valverde #> 1829 Real Madrid Away Toni Kroos #> 1830 Real Madrid Away Marco Asensio #> 1831 Real Madrid Away Aurélien Tchouaméni #> 1832 Real Madrid Away Luka Modrić #> 1833 Real Madrid Away Eduardo Camavinga #> 1834 Real Madrid Away Ferland Mendy #> 1835 Real Madrid Away Antonio Rüdiger #> 1836 Real Madrid Away David Alaba #> 1837 Real Madrid Away Éder Militão #> 1838 Real Madrid Away Dani Carvajal #> 1839 Real Madrid Away Thibaut Courtois #> 1840 Athletic Club Home Iñaki Williams #> 1841 Athletic Club Home Álex Berenguer #> 1842 Athletic Club Home Mikel Vesga #> 1843 Athletic Club Home Nico Williams #> 1844 Athletic Club Home Iker Muniain #> 1845 Athletic Club Home Asier Villalibre #> 1846 Athletic Club Home Dani García #> 1847 Athletic Club Home Oier Zarraga #> 1848 Athletic Club Home Oihan Sancet #> 1849 Athletic Club Home Ander Herrera #> 1850 Athletic Club Home Iñigo Lekue #> 1851 Athletic Club Home Iñigo Martínez #> 1852 Athletic Club Home Yeray Álvarez #> 1853 Athletic Club Home Aitor Paredes #> 1854 Athletic Club Home Óscar de Marcos #> 1855 Athletic Club Home Unai Simón #> 1856 Almería Away Lázaro #> 1857 Almería Away Adri Embarba #> 1858 Almería Away Largie Ramazani #> 1859 Almería Away Dyego Sousa #> 1860 Almería Away Samu Costa #> 1861 Almería Away Íñigo Eguaras #> 1862 Almería Away Lucas Robertone #> 1863 Almería Away Arnau Puigmal #> 1864 Almería Away Francisco Portillo #> 1865 Almería Away Léo Baptistão #> 1866 Almería Away Sergio Akieme #> 1867 Almería Away Srđan Babić #> 1868 Almería Away Rodrigo Ely #> 1869 Almería Away Kaiky #> 1870 Almería Away Houboulang Mendes #> 1871 Almería Away Fernando #> 1872 Cádiz Home Álvaro Negredo #> 1873 Cádiz Home Álex Fernández #> 1874 Cádiz Home Rubén Sobrino #> 1875 Cádiz Home Theo Bongonda #> 1876 Cádiz Home Anthony Lozano #> 1877 Cádiz Home Rubén Alcaraz #> 1878 Cádiz Home José Mari #> 1879 Cádiz Home Fede San Emeterio #> 1880 Cádiz Home Lucas Pérez #> 1881 Cádiz Home Iván Alejo #> 1882 Cádiz Home Joseba Zaldúa #> 1883 Cádiz Home Alfonso Espino #> 1884 Cádiz Home Víctor Chust #> 1885 Cádiz Home Luis Hernández #> 1886 Cádiz Home Isaac Carcelen #> 1887 Cádiz Home Jeremías Ledesma #> 1888 Villarreal Away Nicolas Jackson #> 1889 Villarreal Away Samuel Chukwueze #> 1890 Villarreal Away Alex Baena #> 1891 Villarreal Away Francis Coquelin #> 1892 Villarreal Away Arnaut Danjuma #> 1893 Villarreal Away Daniel Parejo #> 1894 Villarreal Away Étienne Capoue #> 1895 Villarreal Away Giovani Lo Celso #> 1896 Villarreal Away José Luis Morales #> 1897 Villarreal Away Alfonso Pedraza #> 1898 Villarreal Away Pau Torres #> 1899 Villarreal Away Raúl Albiol #> 1900 Villarreal Away Kiko Femenía #> 1901 Villarreal Away Gerónimo Rulli #> 1902 Getafe Home Borja Mayoral #> 1903 Getafe Home Enes Ünal #> 1904 Getafe Home Ángel Algobia #> 1905 Getafe Home Jaime Seoane #> 1906 Getafe Home Stefan Mitrović #> 1907 Getafe Home Mauro Arambarri #> 1908 Getafe Home Munir El Haddadi #> 1909 Getafe Home Carles Aleñá #> 1910 Getafe Home Iglesias #> 1911 Getafe Home Juanmi Latasa #> 1912 Getafe Home Gastón Álvarez #> 1913 Getafe Home Domingos Duarte #> 1914 Getafe Home Djené #> 1915 Getafe Home Damián Suárez #> 1916 Getafe Home David Soria #> 1917 Valladolid Away Sergio León #> 1918 Valladolid Away Shon Weissman #> 1919 Valladolid Away Óscar Plano #> 1920 Valladolid Away Iván Sánchez #> 1921 Valladolid Away Gonzalo Plata #> 1922 Valladolid Away Álvaro Aguado #> 1923 Valladolid Away Roque Mesa #> 1924 Valladolid Away Mickael Malsa #> 1925 Valladolid Away Kike Pérez #> 1926 Valladolid Away Sergio Escudero #> 1927 Valladolid Away Javi Sánchez #> 1928 Valladolid Away Joaquín Fernández #> 1929 Valladolid Away Jawad El Yamiq #> 1930 Valladolid Away Zouhair Feddal #> 1931 Valladolid Away Iván Fresneda #> 1932 Valladolid Away Jordi Masip #> 1933 Sevilla Home Kasper Dolberg #> 1934 Sevilla Home Isco #> 1935 Sevilla Home Érik Lamela #> 1936 Sevilla Home Óliver Torres #> 1937 Sevilla Home Papu Gómez #> 1938 Sevilla Home Thomas Delaney #> 1939 Sevilla Home Ivan Rakitić #> 1940 Sevilla Home Nemanja Gudelj #> 1941 Sevilla Home Karim Rekik #> 1942 Sevilla Home Alex Telles #> 1943 Sevilla Home Kike Salas #> 1944 Sevilla Home Jesús Navas #> 1945 Sevilla Home Tanguy Nianzou #> 1946 Sevilla Home Youssef En-Nesyri #> 1947 Sevilla Home Carmona #> 1948 Sevilla Home Yassine Bounou #> 1949 Atlético Madrid Away Álvaro Morata #> 1950 Atlético Madrid Away Antoine Griezmann #> 1951 Atlético Madrid Away Matheus Cunha #> 1952 Atlético Madrid Away Ángel Correa #> 1953 Atlético Madrid Away Saúl Ñíguez #> 1954 Atlético Madrid Away Yannick Carrasco #> 1955 Atlético Madrid Away Koke #> 1956 Atlético Madrid Away Geoffrey Kondogbia #> 1957 Atlético Madrid Away Marcos Llorente #> 1958 Atlético Madrid Away Axel Witsel #> 1959 Atlético Madrid Away Reinildo Mandava #> 1960 Atlético Madrid Away José María Giménez #> 1961 Atlético Madrid Away Stefan Savić #> 1962 Atlético Madrid Away Nahuel Molina #> 1963 Atlético Madrid Away João Félix #> 1964 Atlético Madrid Away Jan Oblak #> 1965 Mallorca Home Vedat Muriqi #> 1966 Mallorca Home Lee Kang-in #> 1967 Mallorca Home Iddrisu Baba #> 1968 Mallorca Home Iñigo Ruiz de Galarreta #> 1969 Mallorca Home Lago Junior #> 1970 Mallorca Home Antonio Sánchez #> 1971 Mallorca Home Dani Rodríguez #> 1972 Mallorca Home Jaume Costa #> 1973 Mallorca Home Braian Cufré #> 1974 Mallorca Home Copete #> 1975 Mallorca Home Antonio Raillo #> 1976 Mallorca Home Martin Valjent #> 1977 Mallorca Home Pablo Maffeo #> 1978 Mallorca Home Predrag Rajković #> 1979 Barcelona Away Robert Lewandowski #> 1980 Barcelona Away Ansu Fati #> 1981 Barcelona Away Raphinha #> 1982 Barcelona Away Ousmane Dembélé #> 1983 Barcelona Away Ferrán Torres #> 1984 Barcelona Away Gavi #> 1985 Barcelona Away Sergio Busquets #> 1986 Barcelona Away Franck Kessié #> 1987 Barcelona Away Pedri #> 1988 Barcelona Away Jordi Alba #> 1989 Barcelona Away Sergi Roberto #> 1990 Barcelona Away Andreas Christensen #> 1991 Barcelona Away Gerard Piqué #> 1992 Barcelona Away Alejandro Balde #> 1993 Barcelona Away Marc-André ter Stegen #> 1994 Espanyol Home Joselu #> 1995 Espanyol Home Martin Braithwaite #> 1996 Espanyol Home Javi Puado #> 1997 Espanyol Home Aleix Vidal #> 1998 Espanyol Home Edu Expósito #> 1999 Espanyol Home Keidi Bare #> 2000 Espanyol Home Vinicius Souza #> 2001 Espanyol Home Pol Lozano #> 2002 Espanyol Home Sergi Darder #> 2003 Espanyol Home Simo #> 2004 Espanyol Home Brian Oliván #> 2005 Espanyol Home Leandro Cabrera #> 2006 Espanyol Home Sergi Gómez #> 2007 Espanyol Home Fernando Calero #> 2008 Espanyol Home Nico Ribaudo #> 2009 Espanyol Home Álvaro Fernández #> 2010 Valencia Away Edinson Cavani #> 2011 Valencia Away Marcos André #> 2012 Valencia Away Samuel #> 2013 Valencia Away Samu Castillejo #> 2014 Valencia Away Justin Kluivert #> 2015 Valencia Away Ilaix Moriba #> 2016 Valencia Away Hugo Duro #> 2017 Valencia Away Hugo Guillamón #> 2018 Valencia Away Domingos André Ribeiro Almeida #> 2019 Valencia Away Nicolás González #> 2020 Valencia Away José Luis Gayà #> 2021 Valencia Away Mouctar Diakhaby #> 2022 Valencia Away Gabriel Paulista #> 2023 Valencia Away Eray Cömert #> 2024 Valencia Away Thierry Correia #> 2025 Valencia Away Giorgi Mamardashvili #> 2026 Celta Vigo Home Jørgen Strand Larsen #> 2027 Celta Vigo Home Gonçalo Paciência #> 2028 Celta Vigo Home Carles Pérez #> 2029 Celta Vigo Home Iago Aspas #> 2030 Celta Vigo Home Óscar Rodríguez Arnaiz #> 2031 Celta Vigo Home Gabriel Veiga #> 2032 Celta Vigo Home Luca de la Torre #> 2033 Celta Vigo Home Augusto Solari #> 2034 Celta Vigo Home Renato Tapia #> 2035 Celta Vigo Home Fran Beltrán #> 2036 Celta Vigo Home Javi Galán #> 2037 Celta Vigo Home Unai Núñez #> 2038 Celta Vigo Home Joseph Aidoo #> 2039 Celta Vigo Home Hugo Mallo #> 2040 Celta Vigo Home Óscar Mingueza #> Player_Href Player_Num Nation #> 1 /en/players/7c363088/Aimar-Oroz 29 ESP #> 2 /en/players/3701906c/Pablo-Ibanez 19 ESP #> 3 /en/players/253a06b9/Ezequiel-Avila 9 ARG #> 4 /en/players/e897d8ba/Kike 18 ESP #> 5 /en/players/5a626448/Moi-Gomez 16 ESP #> 6 /en/players/0e4fef6e/Lucas-Torro 6 ESP #> 7 /en/players/9939e168/Jon-Moncayola 7 ESP #> 8 /en/players/aad53e64/Kike-Barja 11 ESP #> 9 /en/players/3a9c4b7b/Nacho-Vidal 2 ESP #> 10 /en/players/a56da3ba/Juan-Cruz-Armada 3 ESP #> 11 /en/players/3e42f707/David-Garcia 5 ESP #> 12 /en/players/4a633cfe/Unai-Garcia 4 ESP #> 13 /en/players/ffacd3d5/Manu-Sanchez 20 ESP #> 14 /en/players/1f079188/Ruben-Pena 15 ESP #> 15 /en/players/4accb7e0/Darko-Brasanac 8 SRB #> 16 /en/players/a4995f48/Sergio-Herrera 1 ESP #> 17 /en/players/bbf5c11b/Rafa-Mir 12 ESP #> 18 /en/players/04e17fd5/Youssef-En-Nesyri 15 MAR #> 19 /en/players/a08b974a/Lucas-Ocampos 5 ARG #> 20 /en/players/e73c9bb2/Alex-Telles 3 BRA #> 21 /en/players/fb938d24/Jesus-Corona 9 MEX #> 22 /en/players/abe66106/Erik-Lamela 17 ARG #> 23 /en/players/6e4df551/Papu-Gomez 24 ARG #> 24 /en/players/2fbe6af0/Ivan-Romero 36 ESP #> 25 /en/players/fe641c1a/Thomas-Delaney 18 DEN #> 26 /en/players/89f951b5/Ivan-Rakitic 10 CRO #> 27 /en/players/41f32541/Fernando 20 BRA #> 28 /en/players/81442ecb/Marcos-Acuna 19 ARG #> 29 /en/players/3376a776/Karim-Rekik 4 NED #> 30 /en/players/0076ab7f/Nemanja-Gudelj 6 SRB #> 31 /en/players/3f10bd22/Jesus-Navas 16 ESP #> 32 /en/players/f6798fc3/Yassine-Bounou 13 MAR #> 33 /en/players/962e54cb/Goncalo-Paciencia 9 POR #> 34 /en/players/a8f21b9f/Carles-Perez 7 ESP #> 35 /en/players/7dcf86f6/Iago-Aspas 10 ESP #> 36 /en/players/5e1028e5/Franco-Cervi 11 ARG #> 37 /en/players/056269d7/Oscar-Mingueza 3 ESP #> 38 /en/players/19709006/Oscar-Rodriguez-Arnaiz 5 ESP #> 39 /en/players/35a6e5c7/Gabriel-Veiga 28 ESP #> 40 /en/players/3ca6106c/Augusto-Solari 21 ARG #> 41 /en/players/34269bdf/Renato-Tapia 14 PER #> 42 /en/players/ed5c5fa3/Fran-Beltran 8 ESP #> 43 /en/players/a4b00319/Javi-Galan 17 ESP #> 44 /en/players/be170419/Unai-Nunez 4 ESP #> 45 /en/players/18abe173/Joseph-Aidoo 15 GHA #> 46 /en/players/cb574619/Hugo-Mallo 2 ESP #> 47 /en/players/853b7c48/Agustin-Marchesin 1 ARG #> 48 /en/players/6265208f/Joselu 9 ESP #> 49 /en/players/ce8039aa/Nico-Ribaudo 21 ESP #> 50 /en/players/db8f0eba/Adri-Embarba 23 ESP #> 51 /en/players/35d4f151/Ruben 27 ESP #> 52 /en/players/fc076f78/Luca-Koleosho 30 ITA #> 53 /en/players/070a3904/Sergi-Darder 10 ESP #> 54 /en/players/41b3069f/Fernando-Calero 5 ESP #> 55 /en/players/283c7121/Edu-Exposito 20 ESP #> 56 /en/players/6a8a7af8/Vinicius-Souza 12 BRA #> 57 /en/players/e96b2583/Nabil-Touaizi 32 MAR #> 58 /en/players/a3e4bf46/Brian-Olivan 14 ESP #> 59 /en/players/69cbc8b6/Leandro-Cabrera 4 URU #> 60 /en/players/bc6f5f06/Sergi-Gomez 24 ESP #> 61 /en/players/6652cf96/Oscar-Gil 2 ESP #> 62 /en/players/2fa2a875/Benjamin-Lecomte 13 FRA #> 63 /en/players/0a0cc13c/Sergio-Leon 7 ESP #> 64 /en/players/475a738b/Sekou-Gassama 22 SEN #> 65 /en/players/636eae97/Toni-Villa 19 ESP #> 66 /en/players/7c388b20/Oscar-Plano 10 ESP #> 67 /en/players/014aa7bd/Alvaro-Aguado 6 ESP #> 68 /en/players/7c4243d4/Roque-Mesa 17 ESP #> 69 /en/players/237a3851/Kike-Perez 4 ESP #> 70 /en/players/54bcdeb0/Gonzalo-Plata 11 ECU #> 71 /en/players/70107d4d/Ivan-Sanchez 21 ESP #> 72 /en/players/8ac501f5/Monchu 8 ESP #> 73 /en/players/b0616e3d/Sergio-Escudero 18 ESP #> 74 /en/players/4cee5954/Lucas-Olaza 12 URU #> 75 /en/players/f6f6b6e8/Jawad-El-Yamiq 15 MAR #> 76 /en/players/b86a64b2/Joaquin-Fernandez 24 ESP #> 77 /en/players/b7c04927/Luis-Perez 2 ESP #> 78 /en/players/9f0ea33f/Sergio-Asenjo 25 ESP #> 79 /en/players/9c36ed83/Nicolas-Jackson 26 SEN #> 80 /en/players/81f0781e/Gerard-Moreno 7 ESP #> 81 /en/players/4a478107/Jose-Luis-Morales 22 ESP #> 82 /en/players/a6951bf8/Francis-Coquelin 19 FRA #> 83 /en/players/b8a642fc/Samuel-Chukwueze 11 NGA #> 84 /en/players/7460ca0d/Daniel-Parejo 10 ESP #> 85 /en/players/5acc4a10/Etienne-Capoue 6 FRA #> 86 /en/players/540ec57b/Yeremi-Pino 21 ESP #> 87 /en/players/518f2234/Alex-Baena 30 ESP #> 88 /en/players/63f04c6c/Alfonso-Pedraza 24 ESP #> 89 /en/players/532e1e4f/Pau-Torres 4 ESP #> 90 /en/players/4bd414c1/Raul-Albiol 3 ESP #> 91 /en/players/6c7762c3/Juan-Foyth 8 ARG #> 92 /en/players/fbd6378b/Aissa-Mandi 23 ALG #> 93 /en/players/625c144a/Geronimo-Rulli 13 ARG #> 94 /en/players/8d78e732/Robert-Lewandowski 9 POL #> 95 /en/players/b19db005/Ousmane-Dembele 7 FRA #> 96 /en/players/3423f250/Raphinha 22 BRA #> 97 /en/players/0ba976e4/Ansu-Fati 10 ESP #> 98 /en/players/0d9b2d31/Pedri 8 ESP #> 99 /en/players/05e19d6a/Franck-Kessie 19 CIV #> 100 /en/players/5ab0ea87/Sergio-Busquets 5 ESP #> 101 /en/players/19cae58d/Gavi 30 ESP #> 102 /en/players/1bacc518/Frenkie-de-Jong 21 NED #> 103 /en/players/4601e194/Jordi-Alba 18 ESP #> 104 /en/players/d5dd5f1f/Pierre-Emerick-Aubameyang 17 GAB #> 105 /en/players/2bed3eab/Eric-Garcia 24 ESP #> 106 /en/players/1cb49278/Andreas-Christensen 15 DEN #> 107 /en/players/335fa267/Sergi-Roberto 20 ESP #> 108 /en/players/2bef2bca/Ronald-Araujo 4 URU #> 109 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER #> 110 /en/players/873619c6/Sergio-Camello 34 ESP #> 111 /en/players/66116290/Radamel-Falcao 9 COL #> 112 /en/players/90bbd822/Alvaro-Garcia 18 ESP #> 113 /en/players/49dbab27/Isaac-Palazon-Camacho 7 ESP #> 114 /en/players/405f267a/Salvi 14 ESP #> 115 /en/players/fc647b34/Oscar-Trejo 8 ARG #> 116 /en/players/fc8b614b/Jose-Pozo 22 ESP #> 117 /en/players/9a0408b6/Pathe-Ciss 21 SEN #> 118 /en/players/88050721/Unai-Lopez 17 ESP #> 119 /en/players/592f3158/Oscar-Valentin 23 ESP #> 120 /en/players/7226539b/Fran-Garcia 3 ESP #> 121 /en/players/274ab13c/Catena 5 ESP #> 122 /en/players/6eaed4eb/Florian-Lejeune 19 FRA #> 123 /en/players/cee88597/Ivan-Balliu 20 ALB #> 124 /en/players/fc70e345/Stole-Dimitrievski 1 MKD #> 125 /en/players/38699c72/Anthony-Lozano 9 HON #> 126 /en/players/a300ac7e/Lucas-Perez 15 ESP #> 127 /en/players/63b0ca6b/Alvaro-Negredo 18 ESP #> 128 /en/players/759d8dd7/Santiago-Arzamendia 21 PAR #> 129 /en/players/3d7e48ce/Ivan-Alejo 11 ESP #> 130 /en/players/6f4c734d/Jose-Mari 6 ESP #> 131 /en/players/99ea2ddd/Tomas-Alarcon 12 CHI #> 132 /en/players/72a84002/Fali 3 ESP #> 133 /en/players/5496cc91/Alberto-Perea 10 ESP #> 134 /en/players/922da988/Awer-Mabil 17 AUS #> 135 /en/players/db001fa9/Alfonso-Espino 22 URU #> 136 /en/players/ec1a731e/Victor-Chust 32 ESP #> 137 /en/players/02d2c436/Luis-Hernandez 23 ESP #> 138 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP #> 139 /en/players/80211dc5/Mamady-Diarra 29 MLI #> 140 /en/players/6c4776b1/Jeremias-Ledesma 1 ARG #> 141 /en/players/16aa3654/Takefusa-Kubo 14 JPN #> 142 /en/players/f8405304/Mohamed-Ali-Cho 11 FRA #> 143 /en/players/8e92be30/Alexander-Isak 19 SWE #> 144 /en/players/211589b8/Jon-Karrikaburu 33 ESP #> 145 /en/players/e2716bd0/David-Silva 21 ESP #> 146 /en/players/200e89e1/Ander-Barrenetxea 7 ESP #> 147 /en/players/d080ed5e/Mikel-Merino 8 ESP #> 148 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP #> 149 /en/players/c9e39d91/Brais-Mendez 23 ESP #> 150 /en/players/3ee0dd59/Martin-Zubimendi 3 ESP #> 151 /en/players/d9ba39fc/Diego-Rico 15 ESP #> 152 /en/players/228b0d9d/Aihen-Munoz 12 ESP #> 153 /en/players/9a64e67e/Robin-Le-Normand 24 ESP #> 154 /en/players/5c7845f6/Igor-Zubeldia 5 ESP #> 155 /en/players/f7dc2ae5/Aritz-Elustondo 6 ESP #> 156 /en/players/374ee424/Alex-Remiro 1 ESP #> 157 /en/players/37e103f8/Hugo-Duro 19 ESP #> 158 /en/players/dc1ce4f5/Cristhian-Mosquera 33 COL #> 159 /en/players/2a295d33/Samuel 16 BRA #> 160 /en/players/4c2e9442/Maxi-Gomez 9 URU #> 161 /en/players/130a7a3f/Samu-Castillejo 11 ESP #> 162 /en/players/2c56a792/Nicolas-Gonzalez 17 ESP #> 163 /en/players/fed17f5a/Carlos-Soler 10 ESP #> 164 /en/players/45e17712/Dimitri-Foulquier 20 FRA #> 165 /en/players/45d96179/Hugo-Guillamon 6 #> 166 /en/players/b51b1b9c/Yunus-Musah 4 USA #> 167 /en/players/106c142c/Jesus-Vazquez 32 ESP #> 168 /en/players/8e088e04/Toni-Lato 3 ESP #> 169 /en/players/d2110326/Mouctar-Diakhaby 12 GUI #> 170 /en/players/15937e17/Eray-Comert 24 SUI #> 171 /en/players/c78b352d/Thierry-Correia 2 POR #> 172 /en/players/d4b73232/Giorgi-Mamardashvili 28 GEO #> 173 /en/players/da76bab4/Valentin-Castellanos 9 ARG #> 174 /en/players/13e0eb29/Samuel-Saiz 10 ESP #> 175 /en/players/2dd7e29d/Oscar-Urena 32 ESP #> 176 /en/players/65154df0/Rodrigo-Riquelme 17 ESP #> 177 /en/players/a10361d2/Aleix-Garcia 14 ESP #> 178 /en/players/f36016a5/Ramon-Terrats 8 ESP #> 179 /en/players/5083a734/Yangel-Herrera 21 VEN #> 180 /en/players/4acd733a/Valery-Fernandez 11 ESP #> 181 /en/players/7e98cff1/Miguel-Gutierrez 3 ESP #> 182 /en/players/1944818c/Yan-Couto 20 BRA #> 183 /en/players/c3e66ffe/Arnau-Martinez 4 ESP #> 184 /en/players/1633fc8a/Juanpe 15 ESP #> 185 /en/players/f03f284b/David-Lopez 5 ESP #> 186 /en/players/220c11f1/Cristhian-Stuani 7 URU #> 187 /en/players/edc98fac/Santiago-Bueno 22 URU #> 188 /en/players/688b96e3/Juan-Carlos 1 ESP #> 189 /en/players/686cbe7d/Umar-Sadiq 9 NGA #> 190 /en/players/e4738e91/Dyego-Sousa 11 POR #> 191 /en/players/cc9256ef/Largie-Ramazani 7 BEL #> 192 /en/players/5b93209a/Jose-Carlos-Lazo 16 ESP #> 193 /en/players/76c2a023/Samu-Costa 23 POR #> 194 /en/players/3e93f8cf/Inigo-Eguaras 4 ESP #> 195 /en/players/8e010ff4/Francisco-Portillo 8 ESP #> 196 /en/players/a8981944/Lucas-Robertone 5 ARG #> 197 /en/players/f9a225f5/Curro 10 ESP #> 198 /en/players/06efa9dc/Sergio-Akieme 15 ESP #> 199 /en/players/075fe5a3/Srdjan-Babic 22 SRB #> 200 /en/players/fd47b4f2/Rodrigo-Ely 19 BRA #> 201 /en/players/55634fb8/Kaiky 2 BRA #> 202 /en/players/39352da2/Arnau-Puigmal 18 ESP #> 203 /en/players/2475cf9b/Juan-Brandariz 21 ESP #> 204 /en/players/dabb2827/Fernando 13 ESP #> 205 /en/players/70d74ece/Karim-Benzema 9 FRA #> 206 /en/players/7111d552/Vinicius-Junior 20 BRA #> 207 /en/players/c0617e2b/Dani-Ceballos 19 ESP #> 208 /en/players/0959c2a2/Federico-Valverde 15 URU #> 209 /en/players/6ce1f46f/Toni-Kroos 8 GER #> 210 /en/players/4d224fe8/Casemiro 14 BRA #> 211 /en/players/4f255115/Aurelien-Tchouameni 18 FRA #> 212 /en/players/a39bb753/Eden-Hazard 7 BEL #> 213 /en/players/7b9c2d84/Eduardo-Camavinga 12 FRA #> 214 /en/players/6025fab1/Luka-Modric 10 CRO #> 215 /en/players/3cefcaef/Ferland-Mendy 23 FRA #> 216 /en/players/05439de2/David-Alaba 4 AUT #> 217 /en/players/2946f9a1/Nacho 6 ESP #> 218 /en/players/18b896d6/Antonio-Rudiger 22 GER #> 219 /en/players/fd51b456/Lucas-Vazquez 17 ESP #> 220 /en/players/1840e36d/Thibaut-Courtois 1 BEL #> 221 /en/players/57be54ec/Asier-Villalibre 20 ESP #> 222 /en/players/b418dbd4/Raul-Garcia 22 ESP #> 223 /en/players/dc1c2fce/Alex-Berenguer 7 ESP #> 224 /en/players/afdc14d7/Nico-Williams 11 ESP #> 225 /en/players/6a99e0b1/Inaki-Williams 9 GHA #> 226 /en/players/a461f098/Adu-Ares 29 ESP #> 227 /en/players/c05dfb74/Iker-Muniain 10 ESP #> 228 /en/players/6b5ea2f4/Gorka-Guruzeta 12 ESP #> 229 /en/players/b0fce72c/Mikel-Vesga 6 ESP #> 230 /en/players/bdb624a3/Oihan-Sancet 8 ESP #> 231 /en/players/968a1c2f/Oier-Zarraga 19 ESP #> 232 /en/players/b6e50615/Yuri-Berchiche 17 ESP #> 233 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP #> 234 /en/players/ab7bf91d/Daniel-Vivian 3 ESP #> 235 /en/players/9f323c71/Oscar-de-Marcos 18 ESP #> 236 /en/players/5dcf3e90/Unai-Simon 1 ESP #> 237 /en/players/0cadc46d/Vedat-Muriqi 7 KVX #> 238 /en/players/d1b060e2/Abdon-Prats 9 ESP #> 239 /en/players/70f8e0bd/Dani-Rodriguez 14 ESP #> 240 /en/players/a254bbe0/Antonio-Sanchez 10 ESP #> 241 /en/players/d637fc22/Rodrigo-Battaglia 16 ARG #> 242 /en/players/8b298f56/Clement-Grenier 8 FRA #> 243 /en/players/bfd381b3/Iddrisu-Baba 12 GHA #> 244 /en/players/8455ad90/Lee-Kang-in 19 KOR #> 245 /en/players/360d70f8/Lago-Junior 11 CIV #> 246 /en/players/808d48f3/Jaume-Costa 18 ESP #> 247 /en/players/0f26ffd7/Copete 6 ESP #> 248 /en/players/b857bd29/Antonio-Raillo 21 ESP #> 249 /en/players/f2c6ac01/Martin-Valjent 24 SVK #> 250 /en/players/5db04597/Pablo-Maffeo 15 ESP #> 251 /en/players/58ad9383/Predrag-Rajkovic 1 SRB #> 252 /en/players/f8eca1b6/Enes-Unal 10 TUR #> 253 /en/players/02319ad7/Jaime-Mata 7 ESP #> 254 /en/players/64e8ed6d/Borja-Mayoral 19 ESP #> 255 /en/players/e2dcc60e/Moises-Parra-Gutierrez 30 ESP #> 256 /en/players/00b28772/Nemanja-Maksimovic 20 SRB #> 257 /en/players/a62b4888/Jaime-Seoane 8 ESP #> 258 /en/players/58afe001/Mauro-Arambarri 18 URU #> 259 /en/players/6c811eb7/Carles-Alena 11 ESP #> 260 /en/players/1bda5842/Portu 9 ESP #> 261 /en/players/fdd26d71/Fabrizio-Angileri 3 ARG #> 262 /en/players/93090f69/Domingos-Duarte 6 POR #> 263 /en/players/e6777e6b/Stefan-Mitrovic 23 SRB #> 264 /en/players/a4971d84/Djene 2 TOG #> 265 /en/players/974322dc/Iglesias 21 ESP #> 266 /en/players/8f8c6934/David-Soria 13 ESP #> 267 /en/players/8aafd64f/Joao-Felix 7 POR #> 268 /en/players/01eb744d/Angel-Correa 10 ARG #> 269 /en/players/129af0db/Alvaro-Morata 19 ESP #> 270 /en/players/dc62b55d/Matheus-Cunha 9 BRA #> 271 /en/players/4dbd0916/Thomas-Lemar 11 FRA #> 272 /en/players/df69b544/Antoine-Griezmann 8 FRA #> 273 /en/players/55126f3b/Koke 6 ESP #> 274 /en/players/02c15616/Marcos-Llorente 14 ESP #> 275 /en/players/162efffd/Rodrigo-De-Paul 5 ARG #> 276 /en/players/c14bc029/Saul-Niguez 17 ESP #> 277 /en/players/de39485a/Yannick-Carrasco 21 BEL #> 278 /en/players/c20bdcd7/Reinildo-Mandava 23 MOZ #> 279 /en/players/5dfc6ad5/Axel-Witsel 20 BEL #> 280 /en/players/f6ac68c1/Stefan-Savic 15 MNE #> 281 /en/players/23610943/Nahuel-Molina 16 ARG #> 282 /en/players/ee8508c0/Jan-Oblak 13 SVN #> 283 /en/players/75645f0e/Borja-Iglesias 9 ESP #> 284 /en/players/3aa4a3be/Loren-Moron 21 ESP #> 285 /en/players/84399660/Juanmi 7 ESP #> 286 /en/players/85bed4ee/Rodri 28 ESP #> 287 /en/players/ead61f73/Juan-Miranda 33 ESP #> 288 /en/players/bece776f/Nabil-Fekir 8 FRA #> 289 /en/players/56545648/Roberto-Gonzalez 27 ESP #> 290 /en/players/dee86451/William-Carvalho 14 POR #> 291 /en/players/34e393f2/Guido-Rodriguez 5 ARG #> 292 /en/players/31f5b89b/Paul-Akouokou 4 CIV #> 293 /en/players/16e9d0ea/Alex-Moreno 15 ESP #> 294 /en/players/49d028db/Edgar-Gonzalez 3 ESP #> 295 /en/players/8c725b43/German-Pezzella 16 ARG #> 296 /en/players/a55d8df5/Aitor-Ruibal 24 ESP #> 297 /en/players/e7d2a50b/Fran-Delgado 32 ESP #> 298 /en/players/ea83bfa6/Rui-Silva 13 POR #> 299 /en/players/0ae4e09a/Roger-Marti 18 ESP #> 300 /en/players/ccbbe661/Ezequiel-Ponce 19 ARG #> 301 /en/players/eb82b6f1/Fidel 16 ESP #> 302 /en/players/004d185e/Tete-Morente 11 ESP #> 303 /en/players/335039a2/Pere-Milla 10 ESP #> 304 /en/players/5b28b2f6/Josan 17 ESP #> 305 /en/players/608f2092/Johan-Mojica 22 COL #> 306 /en/players/ac454a4f/Gerard-Gumbau 20 ESP #> 307 /en/players/b907d169/Alejandro-Alfaro 32 ESP #> 308 /en/players/11fd2b75/Omar-Mascarell 21 ESP #> 309 /en/players/ac8b2421/Helibelton-Palacios 14 COL #> 310 /en/players/697295b1/Pedro-Bigas 6 ESP #> 311 /en/players/37f827ec/Enzo-Roco 3 CHI #> 312 /en/players/4ac7608e/Diego-Gonzalez 4 ESP #> 313 /en/players/5e95c000/John-Donald 26 ESP #> 314 /en/players/e4346678/Edgar-Badia 13 ESP #> 315 /en/players/6265208f/Joselu 9 ESP #> 316 /en/players/ce8039aa/Nico-Ribaudo 21 ESP #> 317 /en/players/41b3069f/Fernando-Calero 5 ESP #> 318 /en/players/35d4f151/Ruben 27 ESP #> 319 /en/players/2683eda7/Javi-Puado 7 ESP #> 320 /en/players/070a3904/Sergi-Darder 10 ESP #> 321 /en/players/6a8a7af8/Vinicius-Souza 12 BRA #> 322 /en/players/283c7121/Edu-Exposito 20 ESP #> 323 /en/players/03049c8c/Keidi-Bare 8 ALB #> 324 /en/players/a3e4bf46/Brian-Olivan 14 ESP #> 325 /en/players/fc076f78/Luca-Koleosho 30 ITA #> 326 /en/players/69cbc8b6/Leandro-Cabrera 4 URU #> 327 /en/players/bc6f5f06/Sergi-Gomez 24 ESP #> 328 /en/players/6652cf96/Oscar-Gil 2 ESP #> 329 /en/players/2fa2a875/Benjamin-Lecomte 13 FRA #> 330 /en/players/873619c6/Sergio-Camello 34 ESP #> 331 /en/players/66116290/Radamel-Falcao 9 COL #> 332 /en/players/90bbd822/Alvaro-Garcia 18 ESP #> 333 /en/players/a6103274/Randy-Ntekja 11 FRA #> 334 /en/players/49dbab27/Isaac-Palazon-Camacho 7 ESP #> 335 /en/players/405f267a/Salvi 14 ESP #> 336 /en/players/fc647b34/Oscar-Trejo 8 ARG #> 337 /en/players/592f3158/Oscar-Valentin 23 ESP #> 338 /en/players/9a0408b6/Pathe-Ciss 21 SEN #> 339 /en/players/88050721/Unai-Lopez 17 ESP #> 340 /en/players/7106f0a0/Mario-Suarez 4 ESP #> 341 /en/players/7226539b/Fran-Garcia 3 ESP #> 342 /en/players/274ab13c/Catena 5 ESP #> 343 /en/players/6eaed4eb/Florian-Lejeune 19 FRA #> 344 /en/players/cee88597/Ivan-Balliu 20 ALB #> 345 /en/players/fc70e345/Stole-Dimitrievski 1 MKD #> 346 /en/players/bbf5c11b/Rafa-Mir 12 ESP #> 347 /en/players/04e17fd5/Youssef-En-Nesyri 15 MAR #> 348 /en/players/6e4df551/Papu-Gomez 24 ARG #> 349 /en/players/a0b4bb3e/Isco 22 ESP #> 350 /en/players/abe66106/Erik-Lamela 17 ARG #> 351 /en/players/58a9a4d9/Oliver-Torres 21 ESP #> 352 /en/players/89f951b5/Ivan-Rakitic 10 CRO #> 353 /en/players/41f32541/Fernando 20 BRA #> 354 /en/players/2a0c8ba4/Joan-Jordan 8 ESP #> 355 /en/players/a08b974a/Lucas-Ocampos 5 ARG #> 356 /en/players/81442ecb/Marcos-Acuna 19 ARG #> 357 /en/players/e73c9bb2/Alex-Telles 3 BRA #> 358 /en/players/3376a776/Karim-Rekik 4 NED #> 359 /en/players/5853ac44/Tanguy-Nianzou 14 FRA #> 360 /en/players/374d5158/Gonzalo-Montiel 2 ARG #> 361 /en/players/f6798fc3/Yassine-Bounou 13 MAR #> 362 /en/players/32974271/Sergi-Guardiola 16 ESP #> 363 /en/players/8ac501f5/Monchu 8 ESP #> 364 /en/players/c93231dc/Anuar 23 MAR #> 365 /en/players/70107d4d/Ivan-Sanchez 21 ESP #> 366 /en/players/0a0cc13c/Sergio-Leon 7 ESP #> 367 /en/players/237a3851/Kike-Perez 4 ESP #> 368 /en/players/7c4243d4/Roque-Mesa 17 ESP #> 369 /en/players/7c388b20/Oscar-Plano 10 ESP #> 370 /en/players/014aa7bd/Alvaro-Aguado 6 ESP #> 371 /en/players/b0616e3d/Sergio-Escudero 18 ESP #> 372 /en/players/4cee5954/Lucas-Olaza 12 URU #> 373 /en/players/f6f6b6e8/Jawad-El-Yamiq 15 MAR #> 374 /en/players/b86a64b2/Joaquin-Fernandez 24 ESP #> 375 /en/players/60359288/Javi-Sanchez 5 ESP #> 376 /en/players/b7c04927/Luis-Perez 2 ESP #> 377 /en/players/9f0ea33f/Sergio-Asenjo 25 ESP #> 378 /en/players/7c363088/Aimar-Oroz 29 ESP #> 379 /en/players/d733aa38/Roberto-Torres 10 ESP #> 380 /en/players/8f3565b3/Ante-Budimir 17 CRO #> 381 /en/players/e897d8ba/Kike 18 ESP #> 382 /en/players/5a626448/Moi-Gomez 16 ESP #> 383 /en/players/0e4fef6e/Lucas-Torro 6 ESP #> 384 /en/players/9939e168/Jon-Moncayola 7 ESP #> 385 /en/players/4accb7e0/Darko-Brasanac 8 SRB #> 386 /en/players/253a06b9/Ezequiel-Avila 9 ARG #> 387 /en/players/5c96b017/Ruben-Garcia 14 ESP #> 388 /en/players/a56da3ba/Juan-Cruz-Armada 3 ESP #> 389 /en/players/3e42f707/David-Garcia 5 ESP #> 390 /en/players/4a633cfe/Unai-Garcia 4 ESP #> 391 /en/players/1f079188/Ruben-Pena 15 ESP #> 392 /en/players/3a9c4b7b/Nacho-Vidal 2 ESP #> 393 /en/players/a4995f48/Sergio-Herrera 1 ESP #> 394 /en/players/38699c72/Anthony-Lozano 9 HON #> 395 /en/players/a300ac7e/Lucas-Perez 15 ESP #> 396 /en/players/efecd633/Fede-San-Emeterio 24 ESP #> 397 /en/players/922da988/Awer-Mabil 17 AUS #> 398 /en/players/6f4c734d/Jose-Mari 6 ESP #> 399 /en/players/99ea2ddd/Tomas-Alarcon 12 CHI #> 400 /en/players/72a84002/Fali 3 ESP #> 401 /en/players/759d8dd7/Santiago-Arzamendia 21 PAR #> 402 /en/players/80211dc5/Mamady-Diarra 29 MLI #> 403 /en/players/3d7e48ce/Ivan-Alejo 11 ESP #> 404 /en/players/db001fa9/Alfonso-Espino 22 URU #> 405 /en/players/63b0ca6b/Alvaro-Negredo 18 ESP #> 406 /en/players/ec1a731e/Victor-Chust 32 ESP #> 407 /en/players/02d2c436/Luis-Hernandez 23 ESP #> 408 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP #> 409 /en/players/6c4776b1/Jeremias-Ledesma 1 ARG #> 410 /en/players/0cadc46d/Vedat-Muriqi 7 KVX #> 411 /en/players/8455ad90/Lee-Kang-in 19 KOR #> 412 /en/players/70f8e0bd/Dani-Rodriguez 14 ESP #> 413 /en/players/d1b060e2/Abdon-Prats 9 ESP #> 414 /en/players/d637fc22/Rodrigo-Battaglia 16 ARG #> 415 /en/players/bfd381b3/Iddrisu-Baba 12 GHA #> 416 /en/players/8b298f56/Clement-Grenier 8 FRA #> 417 /en/players/a254bbe0/Antonio-Sanchez 10 ESP #> 418 /en/players/808d48f3/Jaume-Costa 18 ESP #> 419 /en/players/0f26ffd7/Copete 6 ESP #> 420 /en/players/360d70f8/Lago-Junior 11 CIV #> 421 /en/players/b857bd29/Antonio-Raillo 21 ESP #> 422 /en/players/f2c6ac01/Martin-Valjent 24 SVK #> 423 /en/players/5db04597/Pablo-Maffeo 15 ESP #> 424 /en/players/58ad9383/Predrag-Rajkovic 1 SRB #> 425 /en/players/75645f0e/Borja-Iglesias 9 ESP #> 426 /en/players/31f5b89b/Paul-Akouokou 4 CIV #> 427 /en/players/84399660/Juanmi 7 ESP #> 428 /en/players/85bed4ee/Rodri 28 ESP #> 429 /en/players/56545648/Roberto-Gonzalez 27 ESP #> 430 /en/players/bece776f/Nabil-Fekir 8 FRA #> 431 /en/players/dee86451/William-Carvalho 14 POR #> 432 /en/players/3aa4a3be/Loren-Moron 21 ESP #> 433 /en/players/34e393f2/Guido-Rodriguez 5 ARG #> 434 /en/players/16e9d0ea/Alex-Moreno 15 ESP #> 435 /en/players/49d028db/Edgar-Gonzalez 3 ESP #> 436 /en/players/8c725b43/German-Pezzella 16 ARG #> 437 /en/players/a55d8df5/Aitor-Ruibal 24 ESP #> 438 /en/players/ea83bfa6/Rui-Silva 13 POR #> 439 /en/players/962e54cb/Goncalo-Paciencia 9 POR #> 440 /en/players/a8f21b9f/Carles-Perez 7 ESP #> 441 /en/players/7dcf86f6/Iago-Aspas 10 ESP #> 442 /en/players/19709006/Oscar-Rodriguez-Arnaiz 5 ESP #> 443 /en/players/35a6e5c7/Gabriel-Veiga 28 ESP #> 444 /en/players/ed5c5fa3/Fran-Beltran 8 ESP #> 445 /en/players/5e1028e5/Franco-Cervi 11 ARG #> 446 /en/players/34269bdf/Renato-Tapia 14 PER #> 447 /en/players/e9241b40/Luca-de-la-Torre 23 USA #> 448 /en/players/a4b00319/Javi-Galan 17 ESP #> 449 /en/players/be170419/Unai-Nunez 4 ESP #> 450 /en/players/18abe173/Joseph-Aidoo 15 GHA #> 451 /en/players/cb574619/Hugo-Mallo 2 ESP #> 452 /en/players/853b7c48/Agustin-Marchesin 1 ARG #> 453 /en/players/70d74ece/Karim-Benzema 9 FRA #> 454 /en/players/7111d552/Vinicius-Junior 20 BRA #> 455 /en/players/a39bb753/Eden-Hazard 7 BEL #> 456 /en/players/0959c2a2/Federico-Valverde 15 URU #> 457 /en/players/7b9c2d84/Eduardo-Camavinga 12 FRA #> 458 /en/players/45af8a54/Marco-Asensio 11 ESP #> 459 /en/players/4f255115/Aurelien-Tchouameni 18 FRA #> 460 /en/players/6025fab1/Luka-Modric 10 CRO #> 461 /en/players/c0617e2b/Dani-Ceballos 19 ESP #> 462 /en/players/3cefcaef/Ferland-Mendy 23 FRA #> 463 /en/players/05439de2/David-Alaba 4 AUT #> 464 /en/players/fd51b456/Lucas-Vazquez 17 ESP #> 465 /en/players/2784f898/Eder-Militao 3 BRA #> 466 /en/players/4958bfb2/Dani-Carvajal 2 ESP #> 467 /en/players/18b896d6/Antonio-Rudiger 22 GER #> 468 /en/players/1840e36d/Thibaut-Courtois 1 BEL #> 469 /en/players/6a99e0b1/Inaki-Williams 9 GHA #> 470 /en/players/b7d7f3bf/Jon-Morcillo 2 ESP #> 471 /en/players/dc1c2fce/Alex-Berenguer 7 ESP #> 472 /en/players/968a1c2f/Oier-Zarraga 19 ESP #> 473 /en/players/afdc14d7/Nico-Williams 11 ESP #> 474 /en/players/37f1cf47/Ander-Capa 21 ESP #> 475 /en/players/c05dfb74/Iker-Muniain 10 ESP #> 476 /en/players/b418dbd4/Raul-Garcia 22 ESP #> 477 /en/players/b0fce72c/Mikel-Vesga 6 ESP #> 478 /en/players/bdb624a3/Oihan-Sancet 8 ESP #> 479 /en/players/4112ace5/Unai-Vencedor-Paris 16 ESP #> 480 /en/players/b6e50615/Yuri-Berchiche 17 ESP #> 481 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP #> 482 /en/players/ab7bf91d/Daniel-Vivian 3 ESP #> 483 /en/players/9f323c71/Oscar-de-Marcos 18 ESP #> 484 /en/players/5dcf3e90/Unai-Simon 1 ESP #> 485 /en/players/37e103f8/Hugo-Duro 19 ESP #> 486 /en/players/4c2e9442/Maxi-Gomez 9 URU #> 487 /en/players/2a295d33/Samuel 16 BRA #> 488 /en/players/130a7a3f/Samu-Castillejo 11 ESP #> 489 /en/players/fed17f5a/Carlos-Soler 10 ESP #> 490 /en/players/45d96179/Hugo-Guillamon 6 #> 491 /en/players/ae86d473/Marcos-Andre 22 BRA #> 492 /en/players/b51b1b9c/Yunus-Musah 4 USA #> 493 /en/players/2c56a792/Nicolas-Gonzalez 17 ESP #> 494 /en/players/106c142c/Jesus-Vazquez 32 ESP #> 495 /en/players/8e088e04/Toni-Lato 3 ESP #> 496 /en/players/d2110326/Mouctar-Diakhaby 12 GUI #> 497 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA #> 498 /en/players/c78b352d/Thierry-Correia 2 POR #> 499 /en/players/45e17712/Dimitri-Foulquier 20 FRA #> 500 /en/players/d4b73232/Giorgi-Mamardashvili 28 GEO #> 501 /en/players/8aafd64f/Joao-Felix 7 POR #> 502 /en/players/01eb744d/Angel-Correa 10 ARG #> 503 /en/players/129af0db/Alvaro-Morata 19 ESP #> 504 /en/players/dc62b55d/Matheus-Cunha 9 BRA #> 505 /en/players/de39485a/Yannick-Carrasco 21 BEL #> 506 /en/players/23610943/Nahuel-Molina 16 ARG #> 507 /en/players/4dbd0916/Thomas-Lemar 11 FRA #> 508 /en/players/162efffd/Rodrigo-De-Paul 5 ARG #> 509 /en/players/02c15616/Marcos-Llorente 14 ESP #> 510 /en/players/df69b544/Antoine-Griezmann 8 FRA #> 511 /en/players/55126f3b/Koke 6 ESP #> 512 /en/players/c20bdcd7/Reinildo-Mandava 23 MOZ #> 513 /en/players/5dfc6ad5/Axel-Witsel 20 BEL #> 514 /en/players/f6ac68c1/Stefan-Savic 15 MNE #> 515 /en/players/f0da930c/Jose-Maria-Gimenez 2 URU #> 516 /en/players/ee8508c0/Jan-Oblak 13 SVN #> 517 /en/players/9c36ed83/Nicolas-Jackson 26 SEN #> 518 /en/players/4a478107/Jose-Luis-Morales 22 ESP #> 519 /en/players/81f0781e/Gerard-Moreno 7 ESP #> 520 /en/players/d7553721/Giovani-Lo-Celso 17 ARG #> 521 /en/players/518f2234/Alex-Baena 30 ESP #> 522 /en/players/7460ca0d/Daniel-Parejo 10 ESP #> 523 /en/players/5acc4a10/Etienne-Capoue 6 FRA #> 524 /en/players/a6951bf8/Francis-Coquelin 19 FRA #> 525 /en/players/540ec57b/Yeremi-Pino 21 ESP #> 526 /en/players/b8a642fc/Samuel-Chukwueze 11 NGA #> 527 /en/players/63f04c6c/Alfonso-Pedraza 24 ESP #> 528 /en/players/532e1e4f/Pau-Torres 4 ESP #> 529 /en/players/4bd414c1/Raul-Albiol 3 ESP #> 530 /en/players/6c7762c3/Juan-Foyth 8 ARG #> 531 /en/players/625c144a/Geronimo-Rulli 13 ARG #> 532 /en/players/16aa3654/Takefusa-Kubo 14 JPN #> 533 /en/players/f8405304/Mohamed-Ali-Cho 11 FRA #> 534 /en/players/8e92be30/Alexander-Isak 19 SWE #> 535 /en/players/c997b942/Roberto-Navarro 29 ESP #> 536 /en/players/e2716bd0/David-Silva 21 ESP #> 537 /en/players/068f4dec/Benat-Turrientes 27 ESP #> 538 /en/players/d080ed5e/Mikel-Merino 8 ESP #> 539 /en/players/211589b8/Jon-Karrikaburu 33 ESP #> 540 /en/players/c9e39d91/Brais-Mendez 23 ESP #> 541 /en/players/3ee0dd59/Martin-Zubimendi 3 ESP #> 542 /en/players/228b0d9d/Aihen-Munoz 12 ESP #> 543 /en/players/9a64e67e/Robin-Le-Normand 24 ESP #> 544 /en/players/5c7845f6/Igor-Zubeldia 5 ESP #> 545 /en/players/f7dc2ae5/Aritz-Elustondo 6 ESP #> 546 /en/players/6f5f82c0/Andoni-Gorosabel 18 ESP #> 547 /en/players/374ee424/Alex-Remiro 1 ESP #> 548 /en/players/8d78e732/Robert-Lewandowski 9 POL #> 549 /en/players/5ccc9672/Alejandro-Balde 28 ESP #> 550 /en/players/3423f250/Raphinha 22 BRA #> 551 /en/players/b19db005/Ousmane-Dembele 7 FRA #> 552 /en/players/4601e194/Jordi-Alba 18 ESP #> 553 /en/players/9e1035f8/Ferran-Torres 11 ESP #> 554 /en/players/0ba976e4/Ansu-Fati 10 ESP #> 555 /en/players/0d9b2d31/Pedri 8 ESP #> 556 /en/players/19cae58d/Gavi 30 ESP #> 557 /en/players/05e19d6a/Franck-Kessie 19 CIV #> 558 /en/players/1bacc518/Frenkie-de-Jong 21 NED #> 559 /en/players/335fa267/Sergi-Roberto 20 ESP #> 560 /en/players/2bed3eab/Eric-Garcia 24 ESP #> 561 /en/players/1cb49278/Andreas-Christensen 15 DEN #> 562 /en/players/2bef2bca/Ronald-Araujo 4 URU #> 563 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER #> 564 /en/players/da76bab4/Valentin-Castellanos 9 ARG #> 565 /en/players/f36016a5/Ramon-Terrats 8 ESP #> 566 /en/players/220c11f1/Cristhian-Stuani 7 URU #> 567 /en/players/6b21b7b5/Reinier 19 BRA #> 568 /en/players/7e98cff1/Miguel-Gutierrez 3 ESP #> 569 /en/players/9a76c2e9/Javi-Hernandez 16 ESP #> 570 /en/players/1944818c/Yan-Couto 20 BRA #> 571 /en/players/65154df0/Rodrigo-Riquelme 17 ESP #> 572 /en/players/13e0eb29/Samuel-Saiz 10 ESP #> 573 /en/players/5083a734/Yangel-Herrera 21 VEN #> 574 /en/players/a10361d2/Aleix-Garcia 14 ESP #> 575 /en/players/1633fc8a/Juanpe 15 ESP #> 576 /en/players/f03f284b/David-Lopez 5 ESP #> 577 /en/players/edc98fac/Santiago-Bueno 22 URU #> 578 /en/players/688b96e3/Juan-Carlos 1 ESP #> 579 /en/players/64e8ed6d/Borja-Mayoral 19 ESP #> 580 /en/players/f8eca1b6/Enes-Unal 10 TUR #> 581 /en/players/00b28772/Nemanja-Maksimovic 20 SRB #> 582 /en/players/a62b4888/Jaime-Seoane 8 ESP #> 583 /en/players/58afe001/Mauro-Arambarri 18 URU #> 584 /en/players/6c811eb7/Carles-Alena 11 ESP #> 585 /en/players/fdd26d71/Fabrizio-Angileri 3 ARG #> 586 /en/players/93090f69/Domingos-Duarte 6 POR #> 587 /en/players/e6777e6b/Stefan-Mitrovic 23 SRB #> 588 /en/players/1bda5842/Portu 9 ESP #> 589 /en/players/a4971d84/Djene 2 TOG #> 590 /en/players/974322dc/Iglesias 21 ESP #> 591 /en/players/8f8c6934/David-Soria 13 ESP #> 592 /en/players/220c11f1/Cristhian-Stuani 7 URU #> 593 /en/players/da76bab4/Valentin-Castellanos 9 ARG #> 594 /en/players/5f21b94c/Joel-Roca 33 ESP #> 595 /en/players/2dd7e29d/Oscar-Urena 32 ESP #> 596 /en/players/6b21b7b5/Reinier 19 BRA #> 597 /en/players/f03f284b/David-Lopez 5 ESP #> 598 /en/players/a10361d2/Aleix-Garcia 14 ESP #> 599 /en/players/5083a734/Yangel-Herrera 21 VEN #> 600 /en/players/f36016a5/Ramon-Terrats 8 ESP #> 601 /en/players/13e0eb29/Samuel-Saiz 10 ESP #> 602 /en/players/7e98cff1/Miguel-Gutierrez 3 ESP #> 603 /en/players/9a76c2e9/Javi-Hernandez 16 ESP #> 604 /en/players/1633fc8a/Juanpe 15 ESP #> 605 /en/players/edc98fac/Santiago-Bueno 22 URU #> 606 /en/players/1944818c/Yan-Couto 20 BRA #> 607 /en/players/688b96e3/Juan-Carlos 1 ESP #> 608 /en/players/a8f21b9f/Carles-Perez 7 ESP #> 609 /en/players/3ca6106c/Augusto-Solari 21 ARG #> 610 /en/players/7dcf86f6/Iago-Aspas 10 ESP #> 611 /en/players/5e1028e5/Franco-Cervi 11 ARG #> 612 /en/players/3521abfe/Carlos-Dominguez 26 ESP #> 613 /en/players/ed5c5fa3/Fran-Beltran 8 ESP #> 614 /en/players/19709006/Oscar-Rodriguez-Arnaiz 5 ESP #> 615 /en/players/962e54cb/Goncalo-Paciencia 9 POR #> 616 /en/players/34269bdf/Renato-Tapia 14 PER #> 617 /en/players/35a6e5c7/Gabriel-Veiga 28 ESP #> 618 /en/players/a4b00319/Javi-Galan 17 ESP #> 619 /en/players/be170419/Unai-Nunez 4 ESP #> 620 /en/players/18abe173/Joseph-Aidoo 15 GHA #> 621 /en/players/cb574619/Hugo-Mallo 2 ESP #> 622 /en/players/853b7c48/Agustin-Marchesin 1 ARG #> 623 /en/players/75645f0e/Borja-Iglesias 9 ESP #> 624 /en/players/15d0c248/Luiz-Felipe 19 ITA #> 625 /en/players/84399660/Juanmi 7 ESP #> 626 /en/players/8059806f/Luiz-Henrique 11 BRA #> 627 /en/players/85bed4ee/Rodri 28 ESP #> 628 /en/players/a6de370d/Sergio-Canales 10 ESP #> 629 /en/players/bece776f/Nabil-Fekir 8 FRA #> 630 /en/players/ef322658/Andres-Guardado 18 MEX #> 631 /en/players/dee86451/William-Carvalho 14 POR #> 632 /en/players/34e393f2/Guido-Rodriguez 5 ARG #> 633 /en/players/16e9d0ea/Alex-Moreno 15 ESP #> 634 /en/players/49d028db/Edgar-Gonzalez 3 ESP #> 635 /en/players/8c725b43/German-Pezzella 16 ARG #> 636 /en/players/a55d8df5/Aitor-Ruibal 24 ESP #> 637 /en/players/ea83bfa6/Rui-Silva 13 POR #> 638 /en/players/253a06b9/Ezequiel-Avila 9 ARG #> 639 /en/players/8f3565b3/Ante-Budimir 17 CRO #> 640 /en/players/7c363088/Aimar-Oroz 29 ESP #> 641 /en/players/e897d8ba/Kike 18 ESP #> 642 /en/players/5a626448/Moi-Gomez 16 ESP #> 643 /en/players/0e4fef6e/Lucas-Torro 6 ESP #> 644 /en/players/5c96b017/Ruben-Garcia 14 ESP #> 645 /en/players/9939e168/Jon-Moncayola 7 ESP #> 646 /en/players/1f079188/Ruben-Pena 15 ESP #> 647 /en/players/aad53e64/Kike-Barja 11 ESP #> 648 /en/players/a56da3ba/Juan-Cruz-Armada 3 ESP #> 649 /en/players/3e42f707/David-Garcia 5 ESP #> 650 /en/players/4a633cfe/Unai-Garcia 4 ESP #> 651 /en/players/ffacd3d5/Manu-Sanchez 20 ESP #> 652 /en/players/3a9c4b7b/Nacho-Vidal 2 ESP #> 653 /en/players/a4995f48/Sergio-Herrera 1 ESP #> 654 /en/players/ccbbe661/Ezequiel-Ponce 19 ARG #> 655 /en/players/d49f3e6b/Lucas-Boye 9 ARG #> 656 /en/players/0ae4e09a/Roger-Marti 18 ESP #> 657 /en/players/335039a2/Pere-Milla 10 ESP #> 658 /en/players/004d185e/Tete-Morente 11 ESP #> 659 /en/players/ac454a4f/Gerard-Gumbau 20 ESP #> 660 /en/players/0b2c8585/Raul-Guti 8 ESP #> 661 /en/players/11fd2b75/Omar-Mascarell 21 ESP #> 662 /en/players/41fb0f4e/Domingos-Quina 12 POR #> 663 /en/players/85dace26/Alex-Collado 15 ESP #> 664 /en/players/608f2092/Johan-Mojica 22 COL #> 665 /en/players/697295b1/Pedro-Bigas 6 ESP #> 666 /en/players/37f827ec/Enzo-Roco 3 CHI #> 667 /en/players/ff800ed8/Pol-Lirola 24 ESP #> 668 /en/players/ac8b2421/Helibelton-Palacios 14 COL #> 669 /en/players/e4346678/Edgar-Badia 13 ESP #> 670 /en/players/f8405304/Mohamed-Ali-Cho 11 FRA #> 671 /en/players/211589b8/Jon-Karrikaburu 33 ESP #> 672 /en/players/16aa3654/Takefusa-Kubo 14 JPN #> 673 /en/players/200e89e1/Ander-Barrenetxea 7 ESP #> 674 /en/players/e2716bd0/David-Silva 21 ESP #> 675 /en/players/5ce0b5ba/Asier-Illarramendi 4 ESP #> 676 /en/players/d080ed5e/Mikel-Merino 8 ESP #> 677 /en/players/c9e39d91/Brais-Mendez 23 ESP #> 678 /en/players/3ee0dd59/Martin-Zubimendi 3 ESP #> 679 /en/players/228b0d9d/Aihen-Munoz 12 ESP #> 680 /en/players/9a64e67e/Robin-Le-Normand 24 ESP #> 681 /en/players/5c7845f6/Igor-Zubeldia 5 ESP #> 682 /en/players/f7dc2ae5/Aritz-Elustondo 6 ESP #> 683 /en/players/6f5f82c0/Andoni-Gorosabel 18 ESP #> 684 /en/players/44150beb/Jon-Pacheco 20 ESP #> 685 /en/players/374ee424/Alex-Remiro 1 ESP #> 686 /en/players/66116290/Radamel-Falcao 9 COL #> 687 /en/players/a6103274/Randy-Ntekja 11 FRA #> 688 /en/players/90bbd822/Alvaro-Garcia 18 ESP #> 689 /en/players/405f267a/Salvi 14 ESP #> 690 /en/players/d8712bf9/Bebe 10 CPV #> 691 /en/players/fc647b34/Oscar-Trejo 8 ARG #> 692 /en/players/5ae499d0/Santi-Comesana 6 ESP #> 693 /en/players/88050721/Unai-Lopez 17 ESP #> 694 /en/players/873619c6/Sergio-Camello 34 ESP #> 695 /en/players/592f3158/Oscar-Valentin 23 ESP #> 696 /en/players/fc8b614b/Jose-Pozo 22 ESP #> 697 /en/players/7226539b/Fran-Garcia 3 ESP #> 698 /en/players/274ab13c/Catena 5 ESP #> 699 /en/players/9a0408b6/Pathe-Ciss 21 SEN #> 700 /en/players/cee88597/Ivan-Balliu 20 ALB #> 701 /en/players/fc70e345/Stole-Dimitrievski 1 MKD #> 702 /en/players/0cadc46d/Vedat-Muriqi 7 KVX #> 703 /en/players/d1b060e2/Abdon-Prats 9 ESP #> 704 /en/players/8455ad90/Lee-Kang-in 19 KOR #> 705 /en/players/38b0cf42/Javier-Llabres 34 ESP #> 706 /en/players/70f8e0bd/Dani-Rodriguez 14 ESP #> 707 /en/players/91f7631f/Inigo-Ruiz-de-Galarreta 4 ESP #> 708 /en/players/d637fc22/Rodrigo-Battaglia 16 ARG #> 709 /en/players/8b298f56/Clement-Grenier 8 FRA #> 710 /en/players/a254bbe0/Antonio-Sanchez 10 ESP #> 711 /en/players/808d48f3/Jaume-Costa 18 ESP #> 712 /en/players/0f26ffd7/Copete 6 ESP #> 713 /en/players/b857bd29/Antonio-Raillo 21 ESP #> 714 /en/players/f2c6ac01/Martin-Valjent 24 SVK #> 715 /en/players/5db04597/Pablo-Maffeo 15 ESP #> 716 /en/players/58ad9383/Predrag-Rajkovic 1 SRB #> 717 /en/players/686cbe7d/Umar-Sadiq 9 NGA #> 718 /en/players/cc9256ef/Largie-Ramazani 7 BEL #> 719 /en/players/35f6db55/Leo-Baptistao 12 BRA #> 720 /en/players/a8981944/Lucas-Robertone 5 ARG #> 721 /en/players/f9a225f5/Curro 10 ESP #> 722 /en/players/76c2a023/Samu-Costa 23 POR #> 723 /en/players/3e93f8cf/Inigo-Eguaras 4 ESP #> 724 /en/players/60abea75/Cesar-de-la-Hoz 6 ESP #> 725 /en/players/06efa9dc/Sergio-Akieme 15 ESP #> 726 /en/players/3c16d927/Alejandro-Pozo-Pozo 17 ESP #> 727 /en/players/1545cf15/Houboulang-Mendes 24 GNB #> 728 /en/players/075fe5a3/Srdjan-Babic 22 SRB #> 729 /en/players/fd47b4f2/Rodrigo-Ely 19 BRA #> 730 /en/players/55634fb8/Kaiky 2 BRA #> 731 /en/players/2475cf9b/Juan-Brandariz 21 ESP #> 732 /en/players/dabb2827/Fernando 13 ESP #> 733 /en/players/abe66106/Erik-Lamela 17 ARG #> 734 /en/players/04e17fd5/Youssef-En-Nesyri 15 MAR #> 735 /en/players/bbf5c11b/Rafa-Mir 12 ESP #> 736 /en/players/58a9a4d9/Oliver-Torres 21 ESP #> 737 /en/players/fe641c1a/Thomas-Delaney 18 DEN #> 738 /en/players/6e4df551/Papu-Gomez 24 ARG #> 739 /en/players/41f32541/Fernando 20 BRA #> 740 /en/players/2a0c8ba4/Joan-Jordan 8 ESP #> 741 /en/players/a0b4bb3e/Isco 22 ESP #> 742 /en/players/e73c9bb2/Alex-Telles 3 BRA #> 743 /en/players/3376a776/Karim-Rekik 4 NED #> 744 /en/players/2dce876a/Carmona 30 ESP #> 745 /en/players/5853ac44/Tanguy-Nianzou 14 FRA #> 746 /en/players/3f10bd22/Jesus-Navas 16 ESP #> 747 /en/players/a08b974a/Lucas-Ocampos 5 ARG #> 748 /en/players/f6798fc3/Yassine-Bounou 13 MAR #> 749 /en/players/64e8ed6d/Borja-Mayoral 19 ESP #> 750 /en/players/2bea832e/Juanmi-Latasa 14 ESP #> 751 /en/players/f8eca1b6/Enes-Unal 10 TUR #> 752 /en/players/02319ad7/Jaime-Mata 7 ESP #> 753 /en/players/1bda5842/Portu 9 ESP #> 754 /en/players/58afe001/Mauro-Arambarri 18 URU #> 755 /en/players/a62b4888/Jaime-Seoane 8 ESP #> 756 /en/players/00b28772/Nemanja-Maksimovic 20 SRB #> 757 /en/players/6c811eb7/Carles-Alena 11 ESP #> 758 /en/players/852ddfb8/Gaston-Alvarez 4 URU #> 759 /en/players/a4971d84/Djene 2 TOG #> 760 /en/players/93090f69/Domingos-Duarte 6 POR #> 761 /en/players/974322dc/Iglesias 21 ESP #> 762 /en/players/8f8c6934/David-Soria 13 ESP #> 763 /en/players/4a478107/Jose-Luis-Morales 22 ESP #> 764 /en/players/9c36ed83/Nicolas-Jackson 15 SEN #> 765 /en/players/81f0781e/Gerard-Moreno 7 ESP #> 766 /en/players/d7553721/Giovani-Lo-Celso 17 ARG #> 767 /en/players/518f2234/Alex-Baena 16 ESP #> 768 /en/players/7460ca0d/Daniel-Parejo 10 ESP #> 769 /en/players/a6951bf8/Francis-Coquelin 19 FRA #> 770 /en/players/5acc4a10/Etienne-Capoue 6 FRA #> 771 /en/players/540ec57b/Yeremi-Pino 21 ESP #> 772 /en/players/b8a642fc/Samuel-Chukwueze 11 NGA #> 773 /en/players/63f04c6c/Alfonso-Pedraza 24 ESP #> 774 /en/players/532e1e4f/Pau-Torres 4 ESP #> 775 /en/players/4bd414c1/Raul-Albiol 3 ESP #> 776 /en/players/6c7762c3/Juan-Foyth 8 ARG #> 777 /en/players/e5d01ecf/Kiko-Femenia 2 ESP #> 778 /en/players/625c144a/Geronimo-Rulli 13 ARG #> 779 /en/players/8d78e732/Robert-Lewandowski 9 POL #> 780 /en/players/b19db005/Ousmane-Dembele 7 FRA #> 781 /en/players/9e1035f8/Ferran-Torres 11 ESP #> 782 /en/players/3423f250/Raphinha 22 BRA #> 783 /en/players/0ba976e4/Ansu-Fati 10 ESP #> 784 /en/players/0d9b2d31/Pedri 8 ESP #> 785 /en/players/5ab0ea87/Sergio-Busquets 5 ESP #> 786 /en/players/05e19d6a/Franck-Kessie 19 CIV #> 787 /en/players/19cae58d/Gavi 30 ESP #> 788 /en/players/1bacc518/Frenkie-de-Jong 21 NED #> 789 /en/players/5ccc9672/Alejandro-Balde 28 ESP #> 790 /en/players/2bed3eab/Eric-Garcia 24 ESP #> 791 /en/players/2bef2bca/Ronald-Araujo 4 URU #> 792 /en/players/335fa267/Sergi-Roberto 20 ESP #> 793 /en/players/4d1666ff/Jules-Kounde 23 FRA #> 794 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER #> 795 /en/players/32974271/Sergi-Guardiola 16 ESP #> 796 /en/players/0a0cc13c/Sergio-Leon 7 ESP #> 797 /en/players/c93231dc/Anuar 23 MAR #> 798 /en/players/6091cf45/Roberto-Arroyo 30 ESP #> 799 /en/players/014aa7bd/Alvaro-Aguado 6 ESP #> 800 /en/players/7c4243d4/Roque-Mesa 17 ESP #> 801 /en/players/237a3851/Kike-Perez 4 ESP #> 802 /en/players/70107d4d/Ivan-Sanchez 21 ESP #> 803 /en/players/636eae97/Toni-Villa 19 ESP #> 804 /en/players/8ac501f5/Monchu 8 ESP #> 805 /en/players/7c388b20/Oscar-Plano 10 ESP #> 806 /en/players/b0616e3d/Sergio-Escudero 18 ESP #> 807 /en/players/60359288/Javi-Sanchez 5 ESP #> 808 /en/players/b86a64b2/Joaquin-Fernandez 24 ESP #> 809 /en/players/b7c04927/Luis-Perez 2 ESP #> 810 /en/players/8fae77ea/Jordi-Masip 1 ESP #> 811 /en/players/6265208f/Joselu 9 ESP #> 812 /en/players/2683eda7/Javi-Puado 7 ESP #> 813 /en/players/ce8039aa/Nico-Ribaudo 21 ESP #> 814 /en/players/070a3904/Sergi-Darder 10 ESP #> 815 /en/players/283c7121/Edu-Exposito 20 ESP #> 816 /en/players/0e5ddc7c/Dani-Gomez 19 ESP #> 817 /en/players/35d4f151/Ruben 27 ESP #> 818 /en/players/6a8a7af8/Vinicius-Souza 12 BRA #> 819 /en/players/03049c8c/Keidi-Bare 8 ALB #> 820 /en/players/a3e4bf46/Brian-Olivan 14 ESP #> 821 /en/players/69cbc8b6/Leandro-Cabrera 4 URU #> 822 /en/players/41b3069f/Fernando-Calero 5 ESP #> 823 /en/players/6652cf96/Oscar-Gil 2 ESP #> 824 /en/players/2fa2a875/Benjamin-Lecomte 13 FRA #> 825 /en/players/70d74ece/Karim-Benzema 9 FRA #> 826 /en/players/7111d552/Vinicius-Junior 20 BRA #> 827 /en/players/0959c2a2/Federico-Valverde 15 URU #> 828 /en/players/8f5e92a6/Rodrygo 21 BRA #> 829 /en/players/6ce1f46f/Toni-Kroos 8 GER #> 830 /en/players/c0617e2b/Dani-Ceballos 19 ESP #> 831 /en/players/4f255115/Aurelien-Tchouameni 18 FRA #> 832 /en/players/6025fab1/Luka-Modric 10 CRO #> 833 /en/players/7b9c2d84/Eduardo-Camavinga 12 FRA #> 834 /en/players/05439de2/David-Alaba 4 AUT #> 835 /en/players/18b896d6/Antonio-Rudiger 22 GER #> 836 /en/players/2784f898/Eder-Militao 3 BRA #> 837 /en/players/fd51b456/Lucas-Vazquez 17 ESP #> 838 /en/players/4958bfb2/Dani-Carvajal 2 ESP #> 839 /en/players/1840e36d/Thibaut-Courtois 1 BEL #> 840 /en/players/63b0ca6b/Alvaro-Negredo 18 ESP #> 841 /en/players/38699c72/Anthony-Lozano 9 HON #> 842 /en/players/a300ac7e/Lucas-Perez 15 ESP #> 843 /en/players/759d8dd7/Santiago-Arzamendia 21 PAR #> 844 /en/players/6f4c734d/Jose-Mari 6 ESP #> 845 /en/players/efecd633/Fede-San-Emeterio 24 ESP #> 846 /en/players/e8deefd6/Blanco 36 #> 847 /en/players/aa677a35/Alex-Fernandez 8 ESP #> 848 /en/players/3d7e48ce/Ivan-Alejo 11 ESP #> 849 /en/players/db001fa9/Alfonso-Espino 22 URU #> 850 /en/players/922da988/Awer-Mabil 17 AUS #> 851 /en/players/72a84002/Fali 3 ESP #> 852 /en/players/ec1a731e/Victor-Chust 32 ESP #> 853 /en/players/02d2c436/Luis-Hernandez 23 ESP #> 854 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP #> 855 /en/players/6c4776b1/Jeremias-Ledesma 1 ARG #> 856 /en/players/6a99e0b1/Inaki-Williams 9 GHA #> 857 /en/players/6b5ea2f4/Gorka-Guruzeta 12 ESP #> 858 /en/players/dc1c2fce/Alex-Berenguer 7 ESP #> 859 /en/players/b7d7f3bf/Jon-Morcillo 2 ESP #> 860 /en/players/afdc14d7/Nico-Williams 11 ESP #> 861 /en/players/b418dbd4/Raul-Garcia 22 ESP #> 862 /en/players/c05dfb74/Iker-Muniain 10 ESP #> 863 /en/players/b0fce72c/Mikel-Vesga 6 ESP #> 864 /en/players/bdb624a3/Oihan-Sancet 8 ESP #> 865 /en/players/240d3a0b/Dani-Garcia 14 ESP #> 866 /en/players/59b7d823/Inigo-Lekue 15 ESP #> 867 /en/players/b906757a/Aitor-Paredes 31 ESP #> 868 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP #> 869 /en/players/ab7bf91d/Daniel-Vivian 3 ESP #> 870 /en/players/9f323c71/Oscar-de-Marcos 18 ESP #> 871 /en/players/5dcf3e90/Unai-Simon 1 ESP #> 872 /en/players/ae86d473/Marcos-Andre 22 BRA #> 873 /en/players/4c2e9442/Maxi-Gomez 9 URU #> 874 /en/players/2a295d33/Samuel 16 BRA #> 875 /en/players/130a7a3f/Samu-Castillejo 11 ESP #> 876 /en/players/3d79a68c/Francisco-Perez 29 ESP #> 877 /en/players/fed17f5a/Carlos-Soler 10 ESP #> 878 /en/players/45d96179/Hugo-Guillamon 6 #> 879 /en/players/2c56a792/Nicolas-Gonzalez 17 ESP #> 880 /en/players/b51b1b9c/Yunus-Musah 4 USA #> 881 /en/players/8e088e04/Toni-Lato 3 ESP #> 882 /en/players/c487901c/Diego-Lopez 40 ESP #> 883 /en/players/d2110326/Mouctar-Diakhaby 12 GUI #> 884 /en/players/15937e17/Eray-Comert 24 SUI #> 885 /en/players/c78b352d/Thierry-Correia 2 POR #> 886 /en/players/45e17712/Dimitri-Foulquier 20 FRA #> 887 /en/players/d4b73232/Giorgi-Mamardashvili 28 GEO #> 888 /en/players/8aafd64f/Joao-Felix 7 POR #> 889 /en/players/dc62b55d/Matheus-Cunha 9 BRA #> 890 /en/players/129af0db/Alvaro-Morata 19 ESP #> 891 /en/players/01eb744d/Angel-Correa 10 ARG #> 892 /en/players/55126f3b/Koke 6 ESP #> 893 /en/players/cce181df/Geoffrey-Kondogbia 4 CTA #> 894 /en/players/df69b544/Antoine-Griezmann 8 FRA #> 895 /en/players/162efffd/Rodrigo-De-Paul 5 ARG #> 896 /en/players/4dbd0916/Thomas-Lemar 11 FRA #> 897 /en/players/c14bc029/Saul-Niguez 17 ESP #> 898 /en/players/de39485a/Yannick-Carrasco 21 BEL #> 899 /en/players/c20bdcd7/Reinildo-Mandava 23 MOZ #> 900 /en/players/5dfc6ad5/Axel-Witsel 20 BEL #> 901 /en/players/f0da930c/Jose-Maria-Gimenez 2 URU #> 902 /en/players/02c15616/Marcos-Llorente 14 ESP #> 903 /en/players/ee8508c0/Jan-Oblak 13 SVN #> 904 /en/players/7dcf86f6/Iago-Aspas 10 ESP #> 905 /en/players/a8f21b9f/Carles-Perez 7 ESP #> 906 /en/players/f553b2b3/Jorgen-Strand-Larsen 18 NOR #> 907 /en/players/19709006/Oscar-Rodriguez-Arnaiz 5 ESP #> 908 /en/players/3ca6106c/Augusto-Solari 21 ARG #> 909 /en/players/ed5c5fa3/Fran-Beltran 8 ESP #> 910 /en/players/e9241b40/Luca-de-la-Torre 23 USA #> 911 /en/players/5e1028e5/Franco-Cervi 11 ARG #> 912 /en/players/34269bdf/Renato-Tapia 14 PER #> 913 /en/players/35a6e5c7/Gabriel-Veiga 28 ESP #> 914 /en/players/a4b00319/Javi-Galan 17 ESP #> 915 /en/players/be170419/Unai-Nunez 4 ESP #> 916 /en/players/18abe173/Joseph-Aidoo 15 GHA #> 917 /en/players/cb574619/Hugo-Mallo 2 ESP #> 918 /en/players/056269d7/Oscar-Mingueza 3 ESP #> 919 /en/players/853b7c48/Agustin-Marchesin 1 ARG #> 920 /en/players/38699c72/Anthony-Lozano 9 HON #> 921 /en/players/a300ac7e/Lucas-Perez 15 ESP #> 922 /en/players/e8deefd6/Blanco 36 #> 923 /en/players/18017beb/Alvaro-Gimenez 19 ESP #> 924 /en/players/2e3995cd/Brian-Ocampo 14 URU #> 925 /en/players/aa677a35/Alex-Fernandez 8 ESP #> 926 /en/players/99ea2ddd/Tomas-Alarcon 12 CHI #> 927 /en/players/3d7e48ce/Ivan-Alejo 11 ESP #> 928 /en/players/19b776e9/Ruben-Sobrino 7 ESP #> 929 /en/players/efecd633/Fede-San-Emeterio 24 ESP #> 930 /en/players/0da6a13e/Theo-Bongonda 10 COD #> 931 /en/players/db001fa9/Alfonso-Espino 22 URU #> 932 /en/players/ec1a731e/Victor-Chust 32 ESP #> 933 /en/players/02d2c436/Luis-Hernandez 23 ESP #> 934 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP #> 935 /en/players/6c4776b1/Jeremias-Ledesma 1 ARG #> 936 /en/players/0cadc46d/Vedat-Muriqi 7 KVX #> 937 /en/players/8455ad90/Lee-Kang-in 19 KOR #> 938 /en/players/70f8e0bd/Dani-Rodriguez 14 ESP #> 939 /en/players/d1b060e2/Abdon-Prats 9 ESP #> 940 /en/players/d637fc22/Rodrigo-Battaglia 16 ARG #> 941 /en/players/91f7631f/Inigo-Ruiz-de-Galarreta 4 ESP #> 942 /en/players/a254bbe0/Antonio-Sanchez 10 ESP #> 943 /en/players/8b298f56/Clement-Grenier 8 FRA #> 944 /en/players/808d48f3/Jaume-Costa 18 ESP #> 945 /en/players/0f26ffd7/Copete 6 ESP #> 946 /en/players/b857bd29/Antonio-Raillo 21 ESP #> 947 /en/players/f2c6ac01/Martin-Valjent 24 SVK #> 948 /en/players/5db04597/Pablo-Maffeo 15 ESP #> 949 /en/players/58ad9383/Predrag-Rajkovic 1 SRB #> 950 /en/players/da76bab4/Valentin-Castellanos 9 ARG #> 951 /en/players/0bc4e720/Manu-Vallejo 25 ESP #> 952 /en/players/65154df0/Rodrigo-Riquelme 17 ESP #> 953 /en/players/13e0eb29/Samuel-Saiz 10 ESP #> 954 /en/players/6b21b7b5/Reinier 19 BRA #> 955 /en/players/636eae97/Toni-Villa 12 ESP #> 956 /en/players/7e98cff1/Miguel-Gutierrez 3 ESP #> 957 /en/players/4242011c/Bernardo-Espinosa 2 COL #> 958 /en/players/a10361d2/Aleix-Garcia 14 ESP #> 959 /en/players/4b511457/Oriol-Romeu 18 ESP #> 960 /en/players/c3e66ffe/Arnau-Martinez 4 ESP #> 961 /en/players/1633fc8a/Juanpe 15 ESP #> 962 /en/players/f03f284b/David-Lopez 5 ESP #> 963 /en/players/9a76c2e9/Javi-Hernandez 16 ESP #> 964 /en/players/edc98fac/Santiago-Bueno 22 URU #> 965 /en/players/688b96e3/Juan-Carlos 1 ESP #> 966 /en/players/70d74ece/Karim-Benzema 9 FRA #> 967 /en/players/7111d552/Vinicius-Junior 20 BRA #> 968 /en/players/8f5e92a6/Rodrygo 21 BRA #> 969 /en/players/c0617e2b/Dani-Ceballos 19 ESP #> 970 /en/players/7b9c2d84/Eduardo-Camavinga 12 FRA #> 971 /en/players/0959c2a2/Federico-Valverde 15 URU #> 972 /en/players/4f255115/Aurelien-Tchouameni 18 FRA #> 973 /en/players/6025fab1/Luka-Modric 10 CRO #> 974 /en/players/6ce1f46f/Toni-Kroos 8 GER #> 975 /en/players/3cefcaef/Ferland-Mendy 23 FRA #> 976 /en/players/05439de2/David-Alaba 4 AUT #> 977 /en/players/2784f898/Eder-Militao 3 BRA #> 978 /en/players/4958bfb2/Dani-Carvajal 2 ESP #> 979 /en/players/18b896d6/Antonio-Rudiger 22 GER #> 980 /en/players/1840e36d/Thibaut-Courtois 1 BEL #> 981 /en/players/75645f0e/Borja-Iglesias 9 ESP #> 982 /en/players/84399660/Juanmi 7 ESP #> 983 /en/players/4c5b14d2/Joaquin 17 ESP #> 984 /en/players/a6de370d/Sergio-Canales 10 ESP #> 985 /en/players/bece776f/Nabil-Fekir 8 FRA #> 986 /en/players/8059806f/Luiz-Henrique 11 BRA #> 987 /en/players/ef322658/Andres-Guardado 18 MEX #> 988 /en/players/d87e2cae/Willian-Jose 12 BRA #> 989 /en/players/34e393f2/Guido-Rodriguez 5 ARG #> 990 /en/players/16e9d0ea/Alex-Moreno 15 ESP #> 991 /en/players/49d028db/Edgar-Gonzalez 3 ESP #> 992 /en/players/15d0c248/Luiz-Felipe 19 ITA #> 993 /en/players/fbbb9269/Youssouf-Sabaly 23 SEN #> 994 /en/players/a55d8df5/Aitor-Ruibal 24 ESP #> 995 /en/players/ea83bfa6/Rui-Silva 13 POR #> 996 /en/players/e92cd3f7/Alexander-Sorloth 19 NOR #> 997 /en/players/686cbe7d/Umar-Sadiq 25 NGA #> 998 /en/players/f8405304/Mohamed-Ali-Cho 11 FRA #> 999 /en/players/200e89e1/Ander-Barrenetxea 7 ESP #> 1000 /en/players/e2716bd0/David-Silva 21 ESP #> 1001 /en/players/16aa3654/Takefusa-Kubo 14 JPN #> 1002 /en/players/d080ed5e/Mikel-Merino 8 ESP #> 1003 /en/players/c9e39d91/Brais-Mendez 23 ESP #> 1004 /en/players/3ee0dd59/Martin-Zubimendi 3 ESP #> 1005 /en/players/228b0d9d/Aihen-Munoz 12 ESP #> 1006 /en/players/9a64e67e/Robin-Le-Normand 24 ESP #> 1007 /en/players/5c7845f6/Igor-Zubeldia 5 ESP #> 1008 /en/players/f7dc2ae5/Aritz-Elustondo 6 ESP #> 1009 /en/players/6f5f82c0/Andoni-Gorosabel 18 ESP #> 1010 /en/players/5fa714d5/Alex-Sola 2 ESP #> 1011 /en/players/374ee424/Alex-Remiro 1 ESP #> 1012 /en/players/8aafd64f/Joao-Felix 7 POR #> 1013 /en/players/129af0db/Alvaro-Morata 19 ESP #> 1014 /en/players/01eb744d/Angel-Correa 10 ARG #> 1015 /en/players/de39485a/Yannick-Carrasco 21 BEL #> 1016 /en/players/555f3a0b/Mario-Hermoso 22 ESP #> 1017 /en/players/02c15616/Marcos-Llorente 14 ESP #> 1018 /en/players/c14bc029/Saul-Niguez 17 ESP #> 1019 /en/players/cce181df/Geoffrey-Kondogbia 4 CTA #> 1020 /en/players/162efffd/Rodrigo-De-Paul 5 ARG #> 1021 /en/players/df69b544/Antoine-Griezmann 8 FRA #> 1022 /en/players/55126f3b/Koke 6 ESP #> 1023 /en/players/c20bdcd7/Reinildo-Mandava 23 MOZ #> 1024 /en/players/5dfc6ad5/Axel-Witsel 20 BEL #> 1025 /en/players/f0da930c/Jose-Maria-Gimenez 2 URU #> 1026 /en/players/ee8508c0/Jan-Oblak 13 SVN #> 1027 /en/players/3f034750/Ivo-Grbic 1 CRO #> 1028 /en/players/04e17fd5/Youssef-En-Nesyri 15 MAR #> 1029 /en/players/cc83b74d/Kasper-Dolberg 5 DEN #> 1030 /en/players/a0b4bb3e/Isco 22 ESP #> 1031 /en/players/6e4df551/Papu-Gomez 24 ARG #> 1032 /en/players/abe66106/Erik-Lamela 17 ARG #> 1033 /en/players/89f951b5/Ivan-Rakitic 10 CRO #> 1034 /en/players/0076ab7f/Nemanja-Gudelj 6 SRB #> 1035 /en/players/2dce876a/Carmona 30 ESP #> 1036 /en/players/2a0c8ba4/Joan-Jordan 8 ESP #> 1037 /en/players/fe641c1a/Thomas-Delaney 18 DEN #> 1038 /en/players/81442ecb/Marcos-Acuna 19 ARG #> 1039 /en/players/5853ac44/Tanguy-Nianzou 14 FRA #> 1040 /en/players/41f32541/Fernando 20 BRA #> 1041 /en/players/374d5158/Gonzalo-Montiel 2 ARG #> 1042 /en/players/4e219ad2/Suso 7 ESP #> 1043 /en/players/f6798fc3/Yassine-Bounou 13 MAR #> 1044 /en/players/8d78e732/Robert-Lewandowski 9 POL #> 1045 /en/players/0ba976e4/Ansu-Fati 10 ESP #> 1046 /en/players/b19db005/Ousmane-Dembele 7 FRA #> 1047 /en/players/9e1035f8/Ferran-Torres 11 ESP #> 1048 /en/players/3423f250/Raphinha 22 BRA #> 1049 /en/players/0d9b2d31/Pedri 8 ESP #> 1050 /en/players/1bacc518/Frenkie-de-Jong 21 NED #> 1051 /en/players/5ab0ea87/Sergio-Busquets 5 ESP #> 1052 /en/players/19cae58d/Gavi 30 ESP #> 1053 /en/players/5ccc9672/Alejandro-Balde 28 ESP #> 1054 /en/players/4601e194/Jordi-Alba 18 ESP #> 1055 /en/players/2bed3eab/Eric-Garcia 24 ESP #> 1056 /en/players/335fa267/Sergi-Roberto 20 ESP #> 1057 /en/players/2bef2bca/Ronald-Araujo 4 URU #> 1058 /en/players/4d1666ff/Jules-Kounde 23 FRA #> 1059 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER #> 1060 /en/players/8f3565b3/Ante-Budimir 17 CRO #> 1061 /en/players/e897d8ba/Kike 18 ESP #> 1062 /en/players/7c363088/Aimar-Oroz 22 ESP #> 1063 /en/players/5a626448/Moi-Gomez 16 ESP #> 1064 /en/players/3701906c/Pablo-Ibanez 19 ESP #> 1065 /en/players/0e4fef6e/Lucas-Torro 6 ESP #> 1066 /en/players/4accb7e0/Darko-Brasanac 8 SRB #> 1067 /en/players/9939e168/Jon-Moncayola 7 ESP #> 1068 /en/players/bed68338/Abdessamad-Ezzalzouli 12 MAR #> 1069 /en/players/253a06b9/Ezequiel-Avila 9 ARG #> 1070 /en/players/5c96b017/Ruben-Garcia 14 ESP #> 1071 /en/players/a56da3ba/Juan-Cruz-Armada 3 ESP #> 1072 /en/players/3e42f707/David-Garcia 5 ESP #> 1073 /en/players/4a633cfe/Unai-Garcia 4 ESP #> 1074 /en/players/3a9c4b7b/Nacho-Vidal 2 ESP #> 1075 /en/players/a4995f48/Sergio-Herrera 1 ESP #> 1076 /en/players/873619c6/Sergio-Camello 34 ESP #> 1077 /en/players/66116290/Radamel-Falcao 9 COL #> 1078 /en/players/90bbd822/Alvaro-Garcia 18 ESP #> 1079 /en/players/405f267a/Salvi 14 ESP #> 1080 /en/players/49dbab27/Isaac-Palazon-Camacho 7 ESP #> 1081 /en/players/fc647b34/Oscar-Trejo 8 ARG #> 1082 /en/players/592f3158/Oscar-Valentin 23 ESP #> 1083 /en/players/5ae499d0/Santi-Comesana 6 ESP #> 1084 /en/players/9a0408b6/Pathe-Ciss 21 SEN #> 1085 /en/players/7226539b/Fran-Garcia 3 ESP #> 1086 /en/players/63c5e56b/Pep-Chavarria 15 ESP #> 1087 /en/players/274ab13c/Catena 5 ESP #> 1088 /en/players/6eaed4eb/Florian-Lejeune 19 FRA #> 1089 /en/players/cee88597/Ivan-Balliu 20 ALB #> 1090 /en/players/fc70e345/Stole-Dimitrievski 1 MKD #> 1091 /en/players/6a99e0b1/Inaki-Williams 9 GHA #> 1092 /en/players/b418dbd4/Raul-Garcia 22 ESP #> 1093 /en/players/dc1c2fce/Alex-Berenguer 7 ESP #> 1094 /en/players/afdc14d7/Nico-Williams 11 ESP #> 1095 /en/players/6b5ea2f4/Gorka-Guruzeta 12 ESP #> 1096 /en/players/c05dfb74/Iker-Muniain 10 ESP #> 1097 /en/players/b0fce72c/Mikel-Vesga 6 ESP #> 1098 /en/players/bdb624a3/Oihan-Sancet 8 ESP #> 1099 /en/players/4112ace5/Unai-Vencedor-Paris 16 ESP #> 1100 /en/players/59b7d823/Inigo-Lekue 15 ESP #> 1101 /en/players/b7d7f3bf/Jon-Morcillo 2 ESP #> 1102 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP #> 1103 /en/players/ab7bf91d/Daniel-Vivian 3 ESP #> 1104 /en/players/9f323c71/Oscar-de-Marcos 18 ESP #> 1105 /en/players/5dcf3e90/Unai-Simon 1 ESP #> 1106 /en/players/6265208f/Joselu 9 ESP #> 1107 /en/players/fd771f95/Martin-Braithwaite 17 DEN #> 1108 /en/players/0e5ddc7c/Dani-Gomez 19 ESP #> 1109 /en/players/2683eda7/Javi-Puado 7 ESP #> 1110 /en/players/5b93209a/Jose-Carlos-Lazo 16 ESP #> 1111 /en/players/070a3904/Sergi-Darder 10 ESP #> 1112 /en/players/283c7121/Edu-Exposito 20 ESP #> 1113 /en/players/03049c8c/Keidi-Bare 8 ALB #> 1114 /en/players/7f271d74/Simo 28 ESP #> 1115 /en/players/6a8a7af8/Vinicius-Souza 12 BRA #> 1116 /en/players/a3e4bf46/Brian-Olivan 14 ESP #> 1117 /en/players/69cbc8b6/Leandro-Cabrera 4 URU #> 1118 /en/players/41b3069f/Fernando-Calero 5 ESP #> 1119 /en/players/139560df/Omar-El-Hilali 26 MAR #> 1120 /en/players/6652cf96/Oscar-Gil 2 ESP #> 1121 /en/players/f127d782/Alvaro-Fernandez 25 ESP #> 1122 /en/players/9c36ed83/Nicolas-Jackson 15 SEN #> 1123 /en/players/4a478107/Jose-Luis-Morales 22 ESP #> 1124 /en/players/81f0781e/Gerard-Moreno 7 ESP #> 1125 /en/players/518f2234/Alex-Baena 16 ESP #> 1126 /en/players/d7553721/Giovani-Lo-Celso 17 ARG #> 1127 /en/players/a6951bf8/Francis-Coquelin 19 FRA #> 1128 /en/players/7460ca0d/Daniel-Parejo 10 ESP #> 1129 /en/players/5acc4a10/Etienne-Capoue 6 FRA #> 1130 /en/players/540ec57b/Yeremi-Pino 21 ESP #> 1131 /en/players/b8a642fc/Samuel-Chukwueze 11 NGA #> 1132 /en/players/63f04c6c/Alfonso-Pedraza 24 ESP #> 1133 /en/players/532e1e4f/Pau-Torres 4 ESP #> 1134 /en/players/4bd414c1/Raul-Albiol 3 ESP #> 1135 /en/players/e5d01ecf/Kiko-Femenia 2 ESP #> 1136 /en/players/fbd6378b/Aissa-Mandi 23 ALG #> 1137 /en/players/625c144a/Geronimo-Rulli 13 ARG #> 1138 /en/players/ccbbe661/Ezequiel-Ponce 19 ARG #> 1139 /en/players/0ae4e09a/Roger-Marti 18 ESP #> 1140 /en/players/d49f3e6b/Lucas-Boye 9 ARG #> 1141 /en/players/335039a2/Pere-Milla 10 ESP #> 1142 /en/players/85dace26/Alex-Collado 15 ESP #> 1143 /en/players/41fb0f4e/Domingos-Quina 12 POR #> 1144 /en/players/0b2c8585/Raul-Guti 8 ESP #> 1145 /en/players/ac454a4f/Gerard-Gumbau 20 ESP #> 1146 /en/players/11fd2b75/Omar-Mascarell 21 ESP #> 1147 /en/players/004d185e/Tete-Morente 11 ESP #> 1148 /en/players/5b28b2f6/Josan 17 ESP #> 1149 /en/players/33a61a52/Carlos-Clerc 23 ESP #> 1150 /en/players/697295b1/Pedro-Bigas 6 ESP #> 1151 /en/players/37f827ec/Enzo-Roco 3 CHI #> 1152 /en/players/ac8b2421/Helibelton-Palacios 14 COL #> 1153 /en/players/e4346678/Edgar-Badia 13 ESP #> 1154 /en/players/ae86d473/Marcos-Andre 22 BRA #> 1155 /en/players/37e103f8/Hugo-Duro 19 ESP #> 1156 /en/players/2a295d33/Samuel 16 BRA #> 1157 /en/players/130a7a3f/Samu-Castillejo 11 ESP #> 1158 /en/players/f4c69aa6/Ilaix-Moriba 8 GUI #> 1159 /en/players/2c56a792/Nicolas-Gonzalez 17 ESP #> 1160 /en/players/e6697917/Domingos-Andre-Ribeiro-Almeida 18 POR #> 1161 /en/players/45d96179/Hugo-Guillamon 6 #> 1162 /en/players/b51b1b9c/Yunus-Musah 4 USA #> 1163 /en/players/8e088e04/Toni-Lato 3 ESP #> 1164 /en/players/45e17712/Dimitri-Foulquier 20 FRA #> 1165 /en/players/d2110326/Mouctar-Diakhaby 12 GUI #> 1166 /en/players/dc1ce4f5/Cristhian-Mosquera 33 COL #> 1167 /en/players/15937e17/Eray-Comert 24 SUI #> 1168 /en/players/c78b352d/Thierry-Correia 2 POR #> 1169 /en/players/d4b73232/Giorgi-Mamardashvili 25 GEO #> 1170 /en/players/64e8ed6d/Borja-Mayoral 19 ESP #> 1171 /en/players/f8eca1b6/Enes-Unal 10 TUR #> 1172 /en/players/02319ad7/Jaime-Mata 7 ESP #> 1173 /en/players/1bda5842/Portu 9 ESP #> 1174 /en/players/00b28772/Nemanja-Maksimovic 20 SRB #> 1175 /en/players/a62b4888/Jaime-Seoane 8 ESP #> 1176 /en/players/852ddfb8/Gaston-Alvarez 4 URU #> 1177 /en/players/58afe001/Mauro-Arambarri 18 URU #> 1178 /en/players/6c811eb7/Carles-Alena 11 ESP #> 1179 /en/players/8696bc90/Munir-El-Haddadi 17 MAR #> 1180 /en/players/fdd26d71/Fabrizio-Angileri 3 ARG #> 1181 /en/players/93090f69/Domingos-Duarte 6 POR #> 1182 /en/players/a4971d84/Djene 2 TOG #> 1183 /en/players/e6777e6b/Stefan-Mitrovic 23 SRB #> 1184 /en/players/974322dc/Iglesias 21 ESP #> 1185 /en/players/8f8c6934/David-Soria 13 ESP #> 1186 /en/players/32974271/Sergi-Guardiola 16 ESP #> 1187 /en/players/379dc075/Shon-Weissman 9 ISR #> 1188 /en/players/7c388b20/Oscar-Plano 10 ESP #> 1189 /en/players/54bcdeb0/Gonzalo-Plata 11 ECU #> 1190 /en/players/70107d4d/Ivan-Sanchez 21 ESP #> 1191 /en/players/0a0cc13c/Sergio-Leon 7 ESP #> 1192 /en/players/237a3851/Kike-Perez 4 ESP #> 1193 /en/players/7c4243d4/Roque-Mesa 17 ESP #> 1194 /en/players/485e4939/Juanjo-Narvaez 20 COL #> 1195 /en/players/014aa7bd/Alvaro-Aguado 6 ESP #> 1196 /en/players/8ac501f5/Monchu 8 ESP #> 1197 /en/players/b0616e3d/Sergio-Escudero 18 ESP #> 1198 /en/players/60359288/Javi-Sanchez 5 ESP #> 1199 /en/players/b86a64b2/Joaquin-Fernandez 24 ESP #> 1200 /en/players/b7c04927/Luis-Perez 2 ESP #> 1201 /en/players/9f0ea33f/Sergio-Asenjo 25 ESP #> 1202 /en/players/e4738e91/Dyego-Sousa 11 POR #> 1203 /en/players/db8f0eba/Adri-Embarba 10 ESP #> 1204 /en/players/cc9256ef/Largie-Ramazani 7 BEL #> 1205 /en/players/8e010ff4/Francisco-Portillo 8 ESP #> 1206 /en/players/35f6db55/Leo-Baptistao 12 BRA #> 1207 /en/players/1fda2b14/Marko-Milovanovic 16 SRB #> 1208 /en/players/a8981944/Lucas-Robertone 5 ARG #> 1209 /en/players/76c2a023/Samu-Costa 23 POR #> 1210 /en/players/60abea75/Cesar-de-la-Hoz 6 ESP #> 1211 /en/players/55634fb8/Kaiky 2 BRA #> 1212 /en/players/06efa9dc/Sergio-Akieme 15 ESP #> 1213 /en/players/075fe5a3/Srdjan-Babic 22 SRB #> 1214 /en/players/fd47b4f2/Rodrigo-Ely 19 BRA #> 1215 /en/players/3c16d927/Alejandro-Pozo-Pozo 17 ESP #> 1216 /en/players/dabb2827/Fernando 13 ESP #> 1217 /en/players/da76bab4/Valentin-Castellanos 9 ARG #> 1218 /en/players/9a76c2e9/Javi-Hernandez 16 ESP #> 1219 /en/players/6b21b7b5/Reinier 19 BRA #> 1220 /en/players/636eae97/Toni-Villa 12 ESP #> 1221 /en/players/65154df0/Rodrigo-Riquelme 17 ESP #> 1222 /en/players/13e0eb29/Samuel-Saiz 10 ESP #> 1223 /en/players/a10361d2/Aleix-Garcia 14 ESP #> 1224 /en/players/4b511457/Oriol-Romeu 18 ESP #> 1225 /en/players/7e98cff1/Miguel-Gutierrez 3 ESP #> 1226 /en/players/c3e66ffe/Arnau-Martinez 4 ESP #> 1227 /en/players/1944818c/Yan-Couto 20 BRA #> 1228 /en/players/1633fc8a/Juanpe 15 ESP #> 1229 /en/players/4242011c/Bernardo-Espinosa 2 COL #> 1230 /en/players/0bc4e720/Manu-Vallejo 25 ESP #> 1231 /en/players/edc98fac/Santiago-Bueno 22 URU #> 1232 /en/players/688b96e3/Juan-Carlos 1 ESP #> 1233 /en/players/32974271/Sergi-Guardiola 16 ESP #> 1234 /en/players/379dc075/Shon-Weissman 9 ISR #> 1235 /en/players/c93231dc/Anuar 23 MAR #> 1236 /en/players/7c388b20/Oscar-Plano 10 ESP #> 1237 /en/players/8ac501f5/Monchu 8 ESP #> 1238 /en/players/237a3851/Kike-Perez 4 ESP #> 1239 /en/players/014aa7bd/Alvaro-Aguado 6 ESP #> 1240 /en/players/54bcdeb0/Gonzalo-Plata 11 ECU #> 1241 /en/players/5eebbfdf/Kenedy 19 BRA #> 1242 /en/players/7c4243d4/Roque-Mesa 17 ESP #> 1243 /en/players/4cee5954/Lucas-Olaza 12 URU #> 1244 /en/players/60359288/Javi-Sanchez 5 ESP #> 1245 /en/players/b86a64b2/Joaquin-Fernandez 24 ESP #> 1246 /en/players/b7c04927/Luis-Perez 2 ESP #> 1247 /en/players/29d0f2ac/Ivan-Fresneda 27 ESP #> 1248 /en/players/9f0ea33f/Sergio-Asenjo 25 ESP #> 1249 /en/players/873619c6/Sergio-Camello 34 ESP #> 1250 /en/players/9a0408b6/Pathe-Ciss 21 SEN #> 1251 /en/players/90bbd822/Alvaro-Garcia 18 ESP #> 1252 /en/players/49dbab27/Isaac-Palazon-Camacho 7 ESP #> 1253 /en/players/a6103274/Randy-Ntekja 11 FRA #> 1254 /en/players/fc647b34/Oscar-Trejo 8 ARG #> 1255 /en/players/88050721/Unai-Lopez 17 ESP #> 1256 /en/players/592f3158/Oscar-Valentin 23 ESP #> 1257 /en/players/fc8b614b/Jose-Pozo 22 ESP #> 1258 /en/players/5ae499d0/Santi-Comesana 6 ESP #> 1259 /en/players/66116290/Radamel-Falcao 9 COL #> 1260 /en/players/7226539b/Fran-Garcia 3 ESP #> 1261 /en/players/274ab13c/Catena 5 ESP #> 1262 /en/players/6eaed4eb/Florian-Lejeune 19 FRA #> 1263 /en/players/cee88597/Ivan-Balliu 20 ALB #> 1264 /en/players/fc70e345/Stole-Dimitrievski 1 MKD #> 1265 /en/players/37e103f8/Hugo-Duro 19 ESP #> 1266 /en/players/4c3a6744/Justin-Kluivert 9 NED #> 1267 /en/players/2a295d33/Samuel 16 BRA #> 1268 /en/players/130a7a3f/Samu-Castillejo 11 ESP #> 1269 /en/players/b51b1b9c/Yunus-Musah 4 USA #> 1270 /en/players/2c56a792/Nicolas-Gonzalez 17 ESP #> 1271 /en/players/ae86d473/Marcos-Andre 22 BRA #> 1272 /en/players/45d96179/Hugo-Guillamon 6 #> 1273 /en/players/e6697917/Domingos-Andre-Ribeiro-Almeida 18 POR #> 1274 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP #> 1275 /en/players/8e088e04/Toni-Lato 3 ESP #> 1276 /en/players/d2110326/Mouctar-Diakhaby 12 GUI #> 1277 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA #> 1278 /en/players/c78b352d/Thierry-Correia 2 POR #> 1279 /en/players/d4b73232/Giorgi-Mamardashvili 25 GEO #> 1280 /en/players/6265208f/Joselu 9 ESP #> 1281 /en/players/fd771f95/Martin-Braithwaite 17 DEN #> 1282 /en/players/2683eda7/Javi-Puado 7 ESP #> 1283 /en/players/ce8039aa/Nico-Ribaudo 21 ESP #> 1284 /en/players/070a3904/Sergi-Darder 10 ESP #> 1285 /en/players/6a8a7af8/Vinicius-Souza 12 BRA #> 1286 /en/players/283c7121/Edu-Exposito 20 ESP #> 1287 /en/players/0e5ddc7c/Dani-Gomez 19 ESP #> 1288 /en/players/a3e4bf46/Brian-Olivan 14 ESP #> 1289 /en/players/69cbc8b6/Leandro-Cabrera 4 URU #> 1290 /en/players/bc6f5f06/Sergi-Gomez 24 ESP #> 1291 /en/players/6652cf96/Oscar-Gil 2 ESP #> 1292 /en/players/35d4f151/Ruben 27 ESP #> 1293 /en/players/139560df/Omar-El-Hilali 26 MAR #> 1294 /en/players/f127d782/Alvaro-Fernandez 25 ESP #> 1295 /en/players/abe66106/Erik-Lamela 17 ARG #> 1296 /en/players/58a9a4d9/Oliver-Torres 21 ESP #> 1297 /en/players/5853ac44/Tanguy-Nianzou 14 FRA #> 1298 /en/players/04e17fd5/Youssef-En-Nesyri 15 MAR #> 1299 /en/players/a0b4bb3e/Isco 22 ESP #> 1300 /en/players/41f32541/Fernando 20 BRA #> 1301 /en/players/2a0c8ba4/Joan-Jordan 8 ESP #> 1302 /en/players/89f951b5/Ivan-Rakitic 10 CRO #> 1303 /en/players/81442ecb/Marcos-Acuna 19 ARG #> 1304 /en/players/e73c9bb2/Alex-Telles 3 BRA #> 1305 /en/players/0a69de7b/Kike-Salas 29 ESP #> 1306 /en/players/3376a776/Karim-Rekik 4 NED #> 1307 /en/players/0076ab7f/Nemanja-Gudelj 6 SRB #> 1308 /en/players/2dce876a/Carmona 30 ESP #> 1309 /en/players/3f10bd22/Jesus-Navas 16 ESP #> 1310 /en/players/f6798fc3/Yassine-Bounou 13 MAR #> 1311 /en/players/a300ac7e/Lucas-Perez 15 ESP #> 1312 /en/players/922da988/Awer-Mabil 17 AUS #> 1313 /en/players/2e3995cd/Brian-Ocampo 14 URU #> 1314 /en/players/3d7e48ce/Ivan-Alejo 11 ESP #> 1315 /en/players/0da6a13e/Theo-Bongonda 10 COD #> 1316 /en/players/19b776e9/Ruben-Sobrino 7 ESP #> 1317 /en/players/63b0ca6b/Alvaro-Negredo 18 ESP #> 1318 /en/players/efecd633/Fede-San-Emeterio 24 ESP #> 1319 /en/players/036bba5f/Ruben-Alcaraz 4 ESP #> 1320 /en/players/aa677a35/Alex-Fernandez 8 ESP #> 1321 /en/players/99ea2ddd/Tomas-Alarcon 12 CHI #> 1322 /en/players/db001fa9/Alfonso-Espino 22 URU #> 1323 /en/players/8aae94b9/Mamadou-Mbaye 5 SEN #> 1324 /en/players/02d2c436/Luis-Hernandez 23 ESP #> 1325 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP #> 1326 /en/players/6c4776b1/Jeremias-Ledesma 1 ARG #> 1327 /en/players/8f696594/Memphis 14 NED #> 1328 /en/players/8d78e732/Robert-Lewandowski 9 POL #> 1329 /en/players/9e1035f8/Ferran-Torres 11 ESP #> 1330 /en/players/b19db005/Ousmane-Dembele 7 FRA #> 1331 /en/players/3423f250/Raphinha 22 BRA #> 1332 /en/players/0ba976e4/Ansu-Fati 10 ESP #> 1333 /en/players/19cae58d/Gavi 30 ESP #> 1334 /en/players/0d9b2d31/Pedri 8 ESP #> 1335 /en/players/5ab0ea87/Sergio-Busquets 5 ESP #> 1336 /en/players/1bacc518/Frenkie-de-Jong 21 NED #> 1337 /en/players/5ccc9672/Alejandro-Balde 28 ESP #> 1338 /en/players/f4290206/Marcos-Alonso 17 ESP #> 1339 /en/players/adfc9123/Gerard-Pique 3 ESP #> 1340 /en/players/2bef2bca/Ronald-Araujo 4 URU #> 1341 /en/players/f874dd44/Hector-Bellerin 2 ESP #> 1342 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER #> 1343 /en/players/129af0db/Alvaro-Morata 19 ESP #> 1344 /en/players/df69b544/Antoine-Griezmann 8 FRA #> 1345 /en/players/01eb744d/Angel-Correa 10 ARG #> 1346 /en/players/8aafd64f/Joao-Felix 7 POR #> 1347 /en/players/4dbd0916/Thomas-Lemar 11 FRA #> 1348 /en/players/55126f3b/Koke 6 ESP #> 1349 /en/players/cce181df/Geoffrey-Kondogbia 4 CTA #> 1350 /en/players/162efffd/Rodrigo-De-Paul 5 ARG #> 1351 /en/players/dc62b55d/Matheus-Cunha 9 BRA #> 1352 /en/players/de39485a/Yannick-Carrasco 21 BEL #> 1353 /en/players/c14bc029/Saul-Niguez 17 ESP #> 1354 /en/players/c20bdcd7/Reinildo-Mandava 23 MOZ #> 1355 /en/players/555f3a0b/Mario-Hermoso 22 ESP #> 1356 /en/players/5dfc6ad5/Axel-Witsel 20 BEL #> 1357 /en/players/23610943/Nahuel-Molina 16 ARG #> 1358 /en/players/3f034750/Ivo-Grbic 1 CRO #> 1359 /en/players/f553b2b3/Jorgen-Strand-Larsen 18 NOR #> 1360 /en/players/7dcf86f6/Iago-Aspas 10 ESP #> 1361 /en/players/5e1028e5/Franco-Cervi 11 ARG #> 1362 /en/players/ed5c5fa3/Fran-Beltran 8 ESP #> 1363 /en/players/a8f21b9f/Carles-Perez 7 ESP #> 1364 /en/players/35a6e5c7/Gabriel-Veiga 28 ESP #> 1365 /en/players/34269bdf/Renato-Tapia 14 PER #> 1366 /en/players/3ca6106c/Augusto-Solari 21 ARG #> 1367 /en/players/a4b00319/Javi-Galan 17 ESP #> 1368 /en/players/be170419/Unai-Nunez 4 ESP #> 1369 /en/players/18abe173/Joseph-Aidoo 15 GHA #> 1370 /en/players/cb574619/Hugo-Mallo 2 ESP #> 1371 /en/players/853b7c48/Agustin-Marchesin 1 ARG #> 1372 /en/players/a39bb753/Eden-Hazard 7 BEL #> 1373 /en/players/6025fab1/Luka-Modric 10 CRO #> 1374 /en/players/7111d552/Vinicius-Junior 20 BRA #> 1375 /en/players/8f5e92a6/Rodrygo 21 BRA #> 1376 /en/players/c0617e2b/Dani-Ceballos 19 ESP #> 1377 /en/players/7b9c2d84/Eduardo-Camavinga 12 FRA #> 1378 /en/players/6ce1f46f/Toni-Kroos 8 GER #> 1379 /en/players/0959c2a2/Federico-Valverde 15 URU #> 1380 /en/players/3cefcaef/Ferland-Mendy 23 FRA #> 1381 /en/players/2946f9a1/Nacho 6 ESP #> 1382 /en/players/05439de2/David-Alaba 4 AUT #> 1383 /en/players/18b896d6/Antonio-Rudiger 22 GER #> 1384 /en/players/fd51b456/Lucas-Vazquez 17 ESP #> 1385 /en/players/4958bfb2/Dani-Carvajal 2 ESP #> 1386 /en/players/1840e36d/Thibaut-Courtois 1 BEL #> 1387 /en/players/8455ad90/Lee-Kang-in 19 KOR #> 1388 /en/players/360d70f8/Lago-Junior 11 CIV #> 1389 /en/players/0cadc46d/Vedat-Muriqi 7 KVX #> 1390 /en/players/d1b060e2/Abdon-Prats 9 ESP #> 1391 /en/players/91f7631f/Inigo-Ruiz-de-Galarreta 4 ESP #> 1392 /en/players/a254bbe0/Antonio-Sanchez 10 ESP #> 1393 /en/players/d637fc22/Rodrigo-Battaglia 16 ARG #> 1394 /en/players/bfd381b3/Iddrisu-Baba 12 GHA #> 1395 /en/players/70f8e0bd/Dani-Rodriguez 14 ESP #> 1396 /en/players/8b298f56/Clement-Grenier 8 FRA #> 1397 /en/players/808d48f3/Jaume-Costa 18 ESP #> 1398 /en/players/f35430a4/Matija-Nastasic 2 SRB #> 1399 /en/players/b857bd29/Antonio-Raillo 21 ESP #> 1400 /en/players/f2c6ac01/Martin-Valjent 24 SVK #> 1401 /en/players/5db04597/Pablo-Maffeo 15 ESP #> 1402 /en/players/58ad9383/Predrag-Rajkovic 1 SRB #> 1403 /en/players/d49f3e6b/Lucas-Boye 9 ARG #> 1404 /en/players/335039a2/Pere-Milla 10 ESP #> 1405 /en/players/85dace26/Alex-Collado 15 ESP #> 1406 /en/players/eb82b6f1/Fidel 16 ESP #> 1407 /en/players/41fb0f4e/Domingos-Quina 12 POR #> 1408 /en/players/ac454a4f/Gerard-Gumbau 20 ESP #> 1409 /en/players/0b2c8585/Raul-Guti 8 ESP #> 1410 /en/players/11fd2b75/Omar-Mascarell 21 ESP #> 1411 /en/players/ccbbe661/Ezequiel-Ponce 19 ARG #> 1412 /en/players/3409de86/Nicolas-Ezequiel-Fernandez 22 ARG #> 1413 /en/players/697295b1/Pedro-Bigas 6 ESP #> 1414 /en/players/37f827ec/Enzo-Roco 3 CHI #> 1415 /en/players/5e95c000/John-Donald 26 ESP #> 1416 /en/players/ff800ed8/Pol-Lirola 24 ESP #> 1417 /en/players/5b28b2f6/Josan 17 ESP #> 1418 /en/players/e4346678/Edgar-Badia 13 ESP #> 1419 /en/players/6a99e0b1/Inaki-Williams 9 GHA #> 1420 /en/players/b7d7f3bf/Jon-Morcillo 2 ESP #> 1421 /en/players/dc1c2fce/Alex-Berenguer 7 ESP #> 1422 /en/players/afdc14d7/Nico-Williams 11 ESP #> 1423 /en/players/968a1c2f/Oier-Zarraga 19 ESP #> 1424 /en/players/c05dfb74/Iker-Muniain 10 ESP #> 1425 /en/players/6b5ea2f4/Gorka-Guruzeta 12 ESP #> 1426 /en/players/240d3a0b/Dani-Garcia 14 ESP #> 1427 /en/players/b0fce72c/Mikel-Vesga 6 ESP #> 1428 /en/players/bdb624a3/Oihan-Sancet 8 ESP #> 1429 /en/players/b418dbd4/Raul-Garcia 22 ESP #> 1430 /en/players/59b7d823/Inigo-Lekue 15 ESP #> 1431 /en/players/3fc45c73/Inigo-Martinez 4 ESP #> 1432 /en/players/ab7bf91d/Daniel-Vivian 3 ESP #> 1433 /en/players/9f323c71/Oscar-de-Marcos 18 ESP #> 1434 /en/players/5dcf3e90/Unai-Simon 1 ESP #> 1435 /en/players/64e8ed6d/Borja-Mayoral 19 ESP #> 1436 /en/players/8696bc90/Munir-El-Haddadi 17 MAR #> 1437 /en/players/f8eca1b6/Enes-Unal 10 TUR #> 1438 /en/players/00b28772/Nemanja-Maksimovic 20 SRB #> 1439 /en/players/acc1aefa/Angel-Algobia 16 ESP #> 1440 /en/players/a62b4888/Jaime-Seoane 8 ESP #> 1441 /en/players/6c811eb7/Carles-Alena 11 ESP #> 1442 /en/players/1bda5842/Portu 9 ESP #> 1443 /en/players/fdd26d71/Fabrizio-Angileri 3 ARG #> 1444 /en/players/974322dc/Iglesias 21 ESP #> 1445 /en/players/852ddfb8/Gaston-Alvarez 4 URU #> 1446 /en/players/e6777e6b/Stefan-Mitrovic 23 SRB #> 1447 /en/players/93090f69/Domingos-Duarte 6 POR #> 1448 /en/players/ba5004e1/Damian-Suarez 22 URU #> 1449 /en/players/8f8c6934/David-Soria 13 ESP #> 1450 /en/players/e92cd3f7/Alexander-Sorloth 19 NOR #> 1451 /en/players/211589b8/Jon-Karrikaburu 33 ESP #> 1452 /en/players/686cbe7d/Umar-Sadiq 25 NGA #> 1453 /en/players/f8405304/Mohamed-Ali-Cho 11 FRA #> 1454 /en/players/16aa3654/Takefusa-Kubo 14 JPN #> 1455 /en/players/c9e39d91/Brais-Mendez 23 ESP #> 1456 /en/players/068f4dec/Benat-Turrientes 22 ESP #> 1457 /en/players/e2716bd0/David-Silva 21 ESP #> 1458 /en/players/d080ed5e/Mikel-Merino 8 ESP #> 1459 /en/players/3ee0dd59/Martin-Zubimendi 3 ESP #> 1460 /en/players/228b0d9d/Aihen-Munoz 12 ESP #> 1461 /en/players/44150beb/Jon-Pacheco 20 ESP #> 1462 /en/players/5c7845f6/Igor-Zubeldia 5 ESP #> 1463 /en/players/5fa714d5/Alex-Sola 2 ESP #> 1464 /en/players/6f5f82c0/Andoni-Gorosabel 18 ESP #> 1465 /en/players/374ee424/Alex-Remiro 1 ESP #> 1466 /en/players/75645f0e/Borja-Iglesias 9 ESP #> 1467 /en/players/d87e2cae/Willian-Jose 12 BRA #> 1468 /en/players/85bed4ee/Rodri 28 ESP #> 1469 /en/players/a55d8df5/Aitor-Ruibal 24 ESP #> 1470 /en/players/8059806f/Luiz-Henrique 11 BRA #> 1471 /en/players/ef322658/Andres-Guardado 18 MEX #> 1472 /en/players/a6de370d/Sergio-Canales 10 ESP #> 1473 /en/players/dee86451/William-Carvalho 14 POR #> 1474 /en/players/34e393f2/Guido-Rodriguez 5 ARG #> 1475 /en/players/16e9d0ea/Alex-Moreno 15 ESP #> 1476 /en/players/15d0c248/Luiz-Felipe 19 ITA #> 1477 /en/players/8c725b43/German-Pezzella 16 ARG #> 1478 /en/players/fbbb9269/Youssouf-Sabaly 23 SEN #> 1479 /en/players/ea83bfa6/Rui-Silva 13 POR #> 1480 /en/players/9c36ed83/Nicolas-Jackson 15 SEN #> 1481 /en/players/4a478107/Jose-Luis-Morales 22 ESP #> 1482 /en/players/81f0781e/Gerard-Moreno 7 ESP #> 1483 /en/players/518f2234/Alex-Baena 16 ESP #> 1484 /en/players/d7553721/Giovani-Lo-Celso 17 ARG #> 1485 /en/players/7460ca0d/Daniel-Parejo 10 ESP #> 1486 /en/players/5acc4a10/Etienne-Capoue 6 FRA #> 1487 /en/players/a6951bf8/Francis-Coquelin 19 FRA #> 1488 /en/players/540ec57b/Yeremi-Pino 21 ESP #> 1489 /en/players/b8a642fc/Samuel-Chukwueze 11 NGA #> 1490 /en/players/63f04c6c/Alfonso-Pedraza 24 ESP #> 1491 /en/players/608f2092/Johan-Mojica 12 COL #> 1492 /en/players/532e1e4f/Pau-Torres 4 ESP #> 1493 /en/players/4bd414c1/Raul-Albiol 3 ESP #> 1494 /en/players/e5d01ecf/Kiko-Femenia 2 ESP #> 1495 /en/players/625c144a/Geronimo-Rulli 13 ARG #> 1496 /en/players/e4738e91/Dyego-Sousa 11 POR #> 1497 /en/players/47c609d5/El-Bilal-Toure 9 MLI #> 1498 /en/players/db8f0eba/Adri-Embarba 10 ESP #> 1499 /en/players/39352da2/Arnau-Puigmal 18 ESP #> 1500 /en/players/cc9256ef/Largie-Ramazani 7 BEL #> 1501 /en/players/1fda2b14/Marko-Milovanovic 16 SRB #> 1502 /en/players/76c2a023/Samu-Costa 23 POR #> 1503 /en/players/3e93f8cf/Inigo-Eguaras 4 ESP #> 1504 /en/players/8e010ff4/Francisco-Portillo 8 ESP #> 1505 /en/players/a8981944/Lucas-Robertone 5 ARG #> 1506 /en/players/86ff856b/Lazaro 14 BRA #> 1507 /en/players/06efa9dc/Sergio-Akieme 15 ESP #> 1508 /en/players/075fe5a3/Srdjan-Babic 22 SRB #> 1509 /en/players/fd47b4f2/Rodrigo-Ely 19 BRA #> 1510 /en/players/3c16d927/Alejandro-Pozo-Pozo 17 ESP #> 1511 /en/players/dabb2827/Fernando 13 ESP #> 1512 /en/players/8f3565b3/Ante-Budimir 17 CRO #> 1513 /en/players/bed68338/Abdessamad-Ezzalzouli 12 MAR #> 1514 /en/players/5a626448/Moi-Gomez 16 ESP #> 1515 /en/players/aad53e64/Kike-Barja 11 ESP #> 1516 /en/players/253a06b9/Ezequiel-Avila 9 ARG #> 1517 /en/players/e897d8ba/Kike 18 ESP #> 1518 /en/players/5c96b017/Ruben-Garcia 14 ESP #> 1519 /en/players/9939e168/Jon-Moncayola 7 ESP #> 1520 /en/players/4accb7e0/Darko-Brasanac 8 SRB #> 1521 /en/players/3701906c/Pablo-Ibanez 19 ESP #> 1522 /en/players/0e4fef6e/Lucas-Torro 6 ESP #> 1523 /en/players/a56da3ba/Juan-Cruz-Armada 3 ESP #> 1524 /en/players/3e42f707/David-Garcia 5 ESP #> 1525 /en/players/4a633cfe/Unai-Garcia 4 ESP #> 1526 /en/players/3a9c4b7b/Nacho-Vidal 2 ESP #> 1527 /en/players/a4995f48/Sergio-Herrera 1 ESP #> 1528 /en/players/379dc075/Shon-Weissman 9 ISR #> 1529 /en/players/32974271/Sergi-Guardiola 16 ESP #> 1530 /en/players/7c388b20/Oscar-Plano 10 ESP #> 1531 /en/players/485e4939/Juanjo-Narvaez 20 COL #> 1532 /en/players/54bcdeb0/Gonzalo-Plata 11 ECU #> 1533 /en/players/0a0cc13c/Sergio-Leon 7 ESP #> 1534 /en/players/237a3851/Kike-Perez 4 ESP #> 1535 /en/players/7c4243d4/Roque-Mesa 17 ESP #> 1536 /en/players/bbc19252/Mickael-Malsa 14 MTQ #> 1537 /en/players/8ac501f5/Monchu 8 ESP #> 1538 /en/players/70107d4d/Ivan-Sanchez 21 ESP #> 1539 /en/players/4cee5954/Lucas-Olaza 12 URU #> 1540 /en/players/60359288/Javi-Sanchez 5 ESP #> 1541 /en/players/b86a64b2/Joaquin-Fernandez 24 ESP #> 1542 /en/players/29d0f2ac/Ivan-Fresneda 27 ESP #> 1543 /en/players/9f0ea33f/Sergio-Asenjo 25 ESP #> 1544 /en/players/a300ac7e/Lucas-Perez 15 ESP #> 1545 /en/players/2e3995cd/Brian-Ocampo 14 URU #> 1546 /en/players/036bba5f/Ruben-Alcaraz 4 ESP #> 1547 /en/players/3d7e48ce/Ivan-Alejo 11 ESP #> 1548 /en/players/63b0ca6b/Alvaro-Negredo 18 ESP #> 1549 /en/players/19b776e9/Ruben-Sobrino 7 ESP #> 1550 /en/players/aa677a35/Alex-Fernandez 8 ESP #> 1551 /en/players/0da6a13e/Theo-Bongonda 10 COD #> 1552 /en/players/efecd633/Fede-San-Emeterio 24 ESP #> 1553 /en/players/6f4c734d/Jose-Mari 6 ESP #> 1554 /en/players/db001fa9/Alfonso-Espino 22 URU #> 1555 /en/players/ec1a731e/Victor-Chust 32 ESP #> 1556 /en/players/02d2c436/Luis-Hernandez 23 ESP #> 1557 /en/players/c4b888df/Isaac-Carcelen 20 ESP #> 1558 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP #> 1559 /en/players/6c4776b1/Jeremias-Ledesma 1 ARG #> 1560 /en/players/0cadc46d/Vedat-Muriqi 7 KVX #> 1561 /en/players/8cfc2f69/Angel-Rodriguez 22 ESP #> 1562 /en/players/8455ad90/Lee-Kang-in 19 KOR #> 1563 /en/players/8b298f56/Clement-Grenier 8 FRA #> 1564 /en/players/bfd381b3/Iddrisu-Baba 12 GHA #> 1565 /en/players/91f7631f/Inigo-Ruiz-de-Galarreta 4 ESP #> 1566 /en/players/d1b060e2/Abdon-Prats 9 ESP #> 1567 /en/players/a254bbe0/Antonio-Sanchez 10 ESP #> 1568 /en/players/70f8e0bd/Dani-Rodriguez 14 ESP #> 1569 /en/players/808d48f3/Jaume-Costa 18 ESP #> 1570 /en/players/0f26ffd7/Copete 6 ESP #> 1571 /en/players/b857bd29/Antonio-Raillo 21 ESP #> 1572 /en/players/f2c6ac01/Martin-Valjent 24 SVK #> 1573 /en/players/5db04597/Pablo-Maffeo 15 ESP #> 1574 /en/players/58ad9383/Predrag-Rajkovic 1 SRB #> 1575 /en/players/cc9256ef/Largie-Ramazani 7 BEL #> 1576 /en/players/47c609d5/El-Bilal-Toure 9 MLI #> 1577 /en/players/e4738e91/Dyego-Sousa 11 POR #> 1578 /en/players/86ff856b/Lazaro 14 BRA #> 1579 /en/players/3902e91b/Gonzalo-Melero 3 ESP #> 1580 /en/players/76c2a023/Samu-Costa 23 POR #> 1581 /en/players/a8981944/Lucas-Robertone 5 ARG #> 1582 /en/players/8e010ff4/Francisco-Portillo 8 ESP #> 1583 /en/players/06efa9dc/Sergio-Akieme 15 ESP #> 1584 /en/players/075fe5a3/Srdjan-Babic 22 SRB #> 1585 /en/players/fd47b4f2/Rodrigo-Ely 19 BRA #> 1586 /en/players/2475cf9b/Juan-Brandariz 21 ESP #> 1587 /en/players/db8f0eba/Adri-Embarba 10 ESP #> 1588 /en/players/3c16d927/Alejandro-Pozo-Pozo 17 ESP #> 1589 /en/players/39352da2/Arnau-Puigmal 18 ESP #> 1590 /en/players/dabb2827/Fernando 13 ESP #> 1591 /en/players/8d78e732/Robert-Lewandowski 9 POL #> 1592 /en/players/9e1035f8/Ferran-Torres 11 ESP #> 1593 /en/players/8f696594/Memphis 14 NED #> 1594 /en/players/0ba976e4/Ansu-Fati 10 ESP #> 1595 /en/players/b19db005/Ousmane-Dembele 7 FRA #> 1596 /en/players/3423f250/Raphinha 22 BRA #> 1597 /en/players/0d9b2d31/Pedri 8 ESP #> 1598 /en/players/1bacc518/Frenkie-de-Jong 21 NED #> 1599 /en/players/05e19d6a/Franck-Kessie 19 CIV #> 1600 /en/players/19cae58d/Gavi 30 ESP #> 1601 /en/players/5ccc9672/Alejandro-Balde 28 ESP #> 1602 /en/players/2bed3eab/Eric-Garcia 24 ESP #> 1603 /en/players/f874dd44/Hector-Bellerin 2 ESP #> 1604 /en/players/2bef2bca/Ronald-Araujo 4 URU #> 1605 /en/players/4d1666ff/Jules-Kounde 23 FRA #> 1606 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER #> 1607 /en/players/d49f3e6b/Lucas-Boye 9 ARG #> 1608 /en/players/5b28b2f6/Josan 17 ESP #> 1609 /en/players/eb82b6f1/Fidel 16 ESP #> 1610 /en/players/41fb0f4e/Domingos-Quina 12 POR #> 1611 /en/players/ac454a4f/Gerard-Gumbau 20 ESP #> 1612 /en/players/0b2c8585/Raul-Guti 8 ESP #> 1613 /en/players/3409de86/Nicolas-Ezequiel-Fernandez 22 ARG #> 1614 /en/players/004d185e/Tete-Morente 11 ESP #> 1615 /en/players/ccbbe661/Ezequiel-Ponce 19 ARG #> 1616 /en/players/33a61a52/Carlos-Clerc 23 ESP #> 1617 /en/players/697295b1/Pedro-Bigas 6 ESP #> 1618 /en/players/4ac7608e/Diego-Gonzalez 4 ESP #> 1619 /en/players/1c2c55fc/Gonzalo-Verdu 5 ESP #> 1620 /en/players/5e95c000/John-Donald 26 ESP #> 1621 /en/players/ac8b2421/Helibelton-Palacios 14 COL #> 1622 /en/players/e4346678/Edgar-Badia 13 ESP #> 1623 /en/players/527f063d/Edinson-Cavani 7 URU #> 1624 /en/players/4c3a6744/Justin-Kluivert 9 NED #> 1625 /en/players/2a295d33/Samuel 16 BRA #> 1626 /en/players/130a7a3f/Samu-Castillejo 11 ESP #> 1627 /en/players/ae86d473/Marcos-Andre 22 BRA #> 1628 /en/players/f4c69aa6/Ilaix-Moriba 8 GUI #> 1629 /en/players/2c56a792/Nicolas-Gonzalez 17 ESP #> 1630 /en/players/45d96179/Hugo-Guillamon 6 #> 1631 /en/players/e6697917/Domingos-Andre-Ribeiro-Almeida 18 POR #> 1632 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP #> 1633 /en/players/8e088e04/Toni-Lato 3 ESP #> 1634 /en/players/d2110326/Mouctar-Diakhaby 12 GUI #> 1635 /en/players/15937e17/Eray-Comert 24 SUI #> 1636 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA #> 1637 /en/players/c78b352d/Thierry-Correia 2 POR #> 1638 /en/players/d4b73232/Giorgi-Mamardashvili 25 GEO #> 1639 /en/players/f553b2b3/Jorgen-Strand-Larsen 18 NOR #> 1640 /en/players/e9241b40/Luca-de-la-Torre 23 USA #> 1641 /en/players/7dcf86f6/Iago-Aspas 10 ESP #> 1642 /en/players/5e1028e5/Franco-Cervi 11 ARG #> 1643 /en/players/ed5c5fa3/Fran-Beltran 8 ESP #> 1644 /en/players/a8f21b9f/Carles-Perez 7 ESP #> 1645 /en/players/19709006/Oscar-Rodriguez-Arnaiz 5 ESP #> 1646 /en/players/35a6e5c7/Gabriel-Veiga 28 ESP #> 1647 /en/players/34269bdf/Renato-Tapia 14 PER #> 1648 /en/players/a4b00319/Javi-Galan 17 ESP #> 1649 /en/players/be170419/Unai-Nunez 4 ESP #> 1650 /en/players/18abe173/Joseph-Aidoo 15 GHA #> 1651 /en/players/cb574619/Hugo-Mallo 2 ESP #> 1652 /en/players/853b7c48/Agustin-Marchesin 1 ARG #> 1653 /en/players/6a99e0b1/Inaki-Williams 9 GHA #> 1654 /en/players/b418dbd4/Raul-Garcia 22 ESP #> 1655 /en/players/dc1c2fce/Alex-Berenguer 7 ESP #> 1656 /en/players/b906757a/Aitor-Paredes 31 ESP #> 1657 /en/players/afdc14d7/Nico-Williams 11 ESP #> 1658 /en/players/968a1c2f/Oier-Zarraga 19 ESP #> 1659 /en/players/c05dfb74/Iker-Muniain 10 ESP #> 1660 /en/players/b7d7f3bf/Jon-Morcillo 2 ESP #> 1661 /en/players/240d3a0b/Dani-Garcia 14 ESP #> 1662 /en/players/bdb624a3/Oihan-Sancet 8 ESP #> 1663 /en/players/436a9dd0/Ander-Herrera 23 ESP #> 1664 /en/players/59b7d823/Inigo-Lekue 15 ESP #> 1665 /en/players/3fc45c73/Inigo-Martinez 4 ESP #> 1666 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP #> 1667 /en/players/9f323c71/Oscar-de-Marcos 18 ESP #> 1668 /en/players/5dcf3e90/Unai-Simon 1 ESP #> 1669 /en/players/873619c6/Sergio-Camello 34 ESP #> 1670 /en/players/66116290/Radamel-Falcao 9 COL #> 1671 /en/players/90bbd822/Alvaro-Garcia 18 ESP #> 1672 /en/players/49dbab27/Isaac-Palazon-Camacho 7 ESP #> 1673 /en/players/fc647b34/Oscar-Trejo 8 ARG #> 1674 /en/players/d8712bf9/Bebe 10 CPV #> 1675 /en/players/5ae499d0/Santi-Comesana 6 ESP #> 1676 /en/players/88050721/Unai-Lopez 17 ESP #> 1677 /en/players/592f3158/Oscar-Valentin 23 ESP #> 1678 /en/players/9a0408b6/Pathe-Ciss 21 SEN #> 1679 /en/players/7226539b/Fran-Garcia 3 ESP #> 1680 /en/players/274ab13c/Catena 5 ESP #> 1681 /en/players/6eaed4eb/Florian-Lejeune 19 FRA #> 1682 /en/players/5487adcd/Abdul-Mumin 16 GHA #> 1683 /en/players/cee88597/Ivan-Balliu 20 ALB #> 1684 /en/players/fc70e345/Stole-Dimitrievski 1 MKD #> 1685 /en/players/8f3565b3/Ante-Budimir 17 CRO #> 1686 /en/players/e897d8ba/Kike 18 ESP #> 1687 /en/players/5a626448/Moi-Gomez 16 ESP #> 1688 /en/players/253a06b9/Ezequiel-Avila 9 ARG #> 1689 /en/players/5c96b017/Ruben-Garcia 14 ESP #> 1690 /en/players/bed68338/Abdessamad-Ezzalzouli 12 MAR #> 1691 /en/players/4accb7e0/Darko-Brasanac 8 SRB #> 1692 /en/players/9939e168/Jon-Moncayola 7 ESP #> 1693 /en/players/0e4fef6e/Lucas-Torro 6 ESP #> 1694 /en/players/a56da3ba/Juan-Cruz-Armada 3 ESP #> 1695 /en/players/3e42f707/David-Garcia 5 ESP #> 1696 /en/players/ffacd3d5/Manu-Sanchez 20 ESP #> 1697 /en/players/4a633cfe/Unai-Garcia 4 ESP #> 1698 /en/players/3a9c4b7b/Nacho-Vidal 2 ESP #> 1699 /en/players/1f079188/Ruben-Pena 15 ESP #> 1700 /en/players/a4995f48/Sergio-Herrera 1 ESP #> 1701 /en/players/f8eca1b6/Enes-Unal 10 TUR #> 1702 /en/players/02319ad7/Jaime-Mata 7 ESP #> 1703 /en/players/64e8ed6d/Borja-Mayoral 19 ESP #> 1704 /en/players/8696bc90/Munir-El-Haddadi 17 MAR #> 1705 /en/players/00b28772/Nemanja-Maksimovic 20 SRB #> 1706 /en/players/19c36442/Luis-Milla 5 ESP #> 1707 /en/players/58afe001/Mauro-Arambarri 18 URU #> 1708 /en/players/6c811eb7/Carles-Alena 11 ESP #> 1709 /en/players/a62b4888/Jaime-Seoane 8 ESP #> 1710 /en/players/974322dc/Iglesias 21 ESP #> 1711 /en/players/852ddfb8/Gaston-Alvarez 4 URU #> 1712 /en/players/14d5b7ac/Alejandro-Revuelta-Montero 31 ESP #> 1713 /en/players/e6777e6b/Stefan-Mitrovic 23 SRB #> 1714 /en/players/93090f69/Domingos-Duarte 6 POR #> 1715 /en/players/ba5004e1/Damian-Suarez 22 URU #> 1716 /en/players/8f8c6934/David-Soria 13 ESP #> 1717 /en/players/9c36ed83/Nicolas-Jackson 15 SEN #> 1718 /en/players/4a478107/Jose-Luis-Morales 22 ESP #> 1719 /en/players/d7553721/Giovani-Lo-Celso 17 ARG #> 1720 /en/players/518f2234/Alex-Baena 16 ESP #> 1721 /en/players/a6951bf8/Francis-Coquelin 19 FRA #> 1722 /en/players/f08490a6/Arnaut-Danjuma 9 NED #> 1723 /en/players/7460ca0d/Daniel-Parejo 10 ESP #> 1724 /en/players/5acc4a10/Etienne-Capoue 6 FRA #> 1725 /en/players/b8a642fc/Samuel-Chukwueze 11 NGA #> 1726 /en/players/540ec57b/Yeremi-Pino 21 ESP #> 1727 /en/players/63f04c6c/Alfonso-Pedraza 24 ESP #> 1728 /en/players/608f2092/Johan-Mojica 12 COL #> 1729 /en/players/532e1e4f/Pau-Torres 4 ESP #> 1730 /en/players/4bd414c1/Raul-Albiol 3 ESP #> 1731 /en/players/e5d01ecf/Kiko-Femenia 2 ESP #> 1732 /en/players/625c144a/Geronimo-Rulli 13 ARG #> 1733 /en/players/bbf5c11b/Rafa-Mir 12 ESP #> 1734 /en/players/58a9a4d9/Oliver-Torres 21 ESP #> 1735 /en/players/6e4df551/Papu-Gomez 24 ARG #> 1736 /en/players/3f10bd22/Jesus-Navas 16 ESP #> 1737 /en/players/a0b4bb3e/Isco 22 ESP #> 1738 /en/players/41f32541/Fernando 20 BRA #> 1739 /en/players/5853ac44/Tanguy-Nianzou 14 FRA #> 1740 /en/players/2a0c8ba4/Joan-Jordan 8 ESP #> 1741 /en/players/81442ecb/Marcos-Acuna 19 ARG #> 1742 /en/players/e73c9bb2/Alex-Telles 3 BRA #> 1743 /en/players/0a69de7b/Kike-Salas 29 ESP #> 1744 /en/players/0076ab7f/Nemanja-Gudelj 6 SRB #> 1745 /en/players/2dce876a/Carmona 30 ESP #> 1746 /en/players/4e219ad2/Suso 7 ESP #> 1747 /en/players/f6798fc3/Yassine-Bounou 13 MAR #> 1748 /en/players/ac295d9e/Marko-Dmitrovic 1 SRB #> 1749 /en/players/75645f0e/Borja-Iglesias 9 ESP #> 1750 /en/players/85bed4ee/Rodri 28 ESP #> 1751 /en/players/8059806f/Luiz-Henrique 11 BRA #> 1752 /en/players/d87e2cae/Willian-Jose 12 BRA #> 1753 /en/players/a6de370d/Sergio-Canales 10 ESP #> 1754 /en/players/31f5b89b/Paul-Akouokou 4 CIV #> 1755 /en/players/dee86451/William-Carvalho 14 POR #> 1756 /en/players/34e393f2/Guido-Rodriguez 5 ARG #> 1757 /en/players/16e9d0ea/Alex-Moreno 15 ESP #> 1758 /en/players/15d0c248/Luiz-Felipe 19 ITA #> 1759 /en/players/8c725b43/German-Pezzella 16 ARG #> 1760 /en/players/49d028db/Edgar-Gonzalez 3 ESP #> 1761 /en/players/5cec2487/Martin-Montoya 2 ESP #> 1762 /en/players/a55d8df5/Aitor-Ruibal 24 ESP #> 1763 /en/players/ea83bfa6/Rui-Silva 13 POR #> 1764 /en/players/da76bab4/Valentin-Castellanos 9 ARG #> 1765 /en/players/0bc4e720/Manu-Vallejo 25 ESP #> 1766 /en/players/65154df0/Rodrigo-Riquelme 17 ESP #> 1767 /en/players/13e0eb29/Samuel-Saiz 10 ESP #> 1768 /en/players/6b21b7b5/Reinier 19 BRA #> 1769 /en/players/a10361d2/Aleix-Garcia 14 ESP #> 1770 /en/players/5f21b94c/Joel-Roca 33 ESP #> 1771 /en/players/4b511457/Oriol-Romeu 18 ESP #> 1772 /en/players/7e98cff1/Miguel-Gutierrez 3 ESP #> 1773 /en/players/c3e66ffe/Arnau-Martinez 4 ESP #> 1774 /en/players/1944818c/Yan-Couto 20 BRA #> 1775 /en/players/1633fc8a/Juanpe 15 ESP #> 1776 /en/players/4242011c/Bernardo-Espinosa 2 COL #> 1777 /en/players/636eae97/Toni-Villa 12 ESP #> 1778 /en/players/edc98fac/Santiago-Bueno 22 URU #> 1779 /en/players/688b96e3/Juan-Carlos 1 ESP #> 1780 /en/players/16aa3654/Takefusa-Kubo 14 JPN #> 1781 /en/players/068f4dec/Benat-Turrientes 22 ESP #> 1782 /en/players/e92cd3f7/Alexander-Sorloth 19 NOR #> 1783 /en/players/d080ed5e/Mikel-Merino 8 ESP #> 1784 /en/players/e2716bd0/David-Silva 21 ESP #> 1785 /en/players/f8405304/Mohamed-Ali-Cho 11 FRA #> 1786 /en/players/c9e39d91/Brais-Mendez 23 ESP #> 1787 /en/players/5c7845f6/Igor-Zubeldia 5 ESP #> 1788 /en/players/3ee0dd59/Martin-Zubimendi 3 ESP #> 1789 /en/players/228b0d9d/Aihen-Munoz 12 ESP #> 1790 /en/players/44150beb/Jon-Pacheco 20 ESP #> 1791 /en/players/f7dc2ae5/Aritz-Elustondo 6 ESP #> 1792 /en/players/6f5f82c0/Andoni-Gorosabel 18 ESP #> 1793 /en/players/374ee424/Alex-Remiro 1 ESP #> 1794 /en/players/fd771f95/Martin-Braithwaite 17 DEN #> 1795 /en/players/6265208f/Joselu 9 ESP #> 1796 /en/players/283c7121/Edu-Exposito 20 ESP #> 1797 /en/players/0e5ddc7c/Dani-Gomez 19 ESP #> 1798 /en/players/6a8a7af8/Vinicius-Souza 12 BRA #> 1799 /en/players/ea610f00/Pol-Lozano 6 ESP #> 1800 /en/players/070a3904/Sergi-Darder 10 ESP #> 1801 /en/players/a3e4bf46/Brian-Olivan 14 ESP #> 1802 /en/players/69cbc8b6/Leandro-Cabrera 4 URU #> 1803 /en/players/bc6f5f06/Sergi-Gomez 24 ESP #> 1804 /en/players/41b3069f/Fernando-Calero 5 ESP #> 1805 /en/players/04965583/Aleix-Vidal 22 ESP #> 1806 /en/players/139560df/Omar-El-Hilali 26 MAR #> 1807 /en/players/2683eda7/Javi-Puado 7 ESP #> 1808 /en/players/f127d782/Alvaro-Fernandez 25 ESP #> 1809 /en/players/8aafd64f/Joao-Felix 7 POR #> 1810 /en/players/dc62b55d/Matheus-Cunha 9 BRA #> 1811 /en/players/df69b544/Antoine-Griezmann 8 FRA #> 1812 /en/players/55126f3b/Koke 6 ESP #> 1813 /en/players/01eb744d/Angel-Correa 10 ARG #> 1814 /en/players/cce181df/Geoffrey-Kondogbia 4 CTA #> 1815 /en/players/c14bc029/Saul-Niguez 17 ESP #> 1816 /en/players/162efffd/Rodrigo-De-Paul 5 ARG #> 1817 /en/players/129af0db/Alvaro-Morata 19 ESP #> 1818 /en/players/de39485a/Yannick-Carrasco 21 BEL #> 1819 /en/players/555f3a0b/Mario-Hermoso 22 ESP #> 1820 /en/players/02c15616/Marcos-Llorente 14 ESP #> 1821 /en/players/c20bdcd7/Reinildo-Mandava 23 MOZ #> 1822 /en/players/5dfc6ad5/Axel-Witsel 20 BEL #> 1823 /en/players/51a3c4c8/Felipe 18 BRA #> 1824 /en/players/ee8508c0/Jan-Oblak 13 SVN #> 1825 /en/players/8f5e92a6/Rodrygo 21 BRA #> 1826 /en/players/c0617e2b/Dani-Ceballos 19 ESP #> 1827 /en/players/7111d552/Vinicius-Junior 20 BRA #> 1828 /en/players/0959c2a2/Federico-Valverde 15 URU #> 1829 /en/players/6ce1f46f/Toni-Kroos 8 GER #> 1830 /en/players/45af8a54/Marco-Asensio 11 ESP #> 1831 /en/players/4f255115/Aurelien-Tchouameni 18 FRA #> 1832 /en/players/6025fab1/Luka-Modric 10 CRO #> 1833 /en/players/7b9c2d84/Eduardo-Camavinga 12 FRA #> 1834 /en/players/3cefcaef/Ferland-Mendy 23 FRA #> 1835 /en/players/18b896d6/Antonio-Rudiger 22 GER #> 1836 /en/players/05439de2/David-Alaba 4 AUT #> 1837 /en/players/2784f898/Eder-Militao 3 BRA #> 1838 /en/players/4958bfb2/Dani-Carvajal 2 ESP #> 1839 /en/players/1840e36d/Thibaut-Courtois 1 BEL #> 1840 /en/players/6a99e0b1/Inaki-Williams 9 GHA #> 1841 /en/players/dc1c2fce/Alex-Berenguer 7 ESP #> 1842 /en/players/b0fce72c/Mikel-Vesga 6 ESP #> 1843 /en/players/afdc14d7/Nico-Williams 11 ESP #> 1844 /en/players/c05dfb74/Iker-Muniain 10 ESP #> 1845 /en/players/57be54ec/Asier-Villalibre 20 ESP #> 1846 /en/players/240d3a0b/Dani-Garcia 14 ESP #> 1847 /en/players/968a1c2f/Oier-Zarraga 19 ESP #> 1848 /en/players/bdb624a3/Oihan-Sancet 8 ESP #> 1849 /en/players/436a9dd0/Ander-Herrera 23 ESP #> 1850 /en/players/59b7d823/Inigo-Lekue 15 ESP #> 1851 /en/players/3fc45c73/Inigo-Martinez 4 ESP #> 1852 /en/players/3ecc11d8/Yeray-Alvarez 5 ESP #> 1853 /en/players/b906757a/Aitor-Paredes 31 ESP #> 1854 /en/players/9f323c71/Oscar-de-Marcos 18 ESP #> 1855 /en/players/5dcf3e90/Unai-Simon 1 ESP #> 1856 /en/players/86ff856b/Lazaro 14 BRA #> 1857 /en/players/db8f0eba/Adri-Embarba 10 ESP #> 1858 /en/players/cc9256ef/Largie-Ramazani 7 BEL #> 1859 /en/players/e4738e91/Dyego-Sousa 11 POR #> 1860 /en/players/76c2a023/Samu-Costa 23 POR #> 1861 /en/players/3e93f8cf/Inigo-Eguaras 4 ESP #> 1862 /en/players/a8981944/Lucas-Robertone 5 ARG #> 1863 /en/players/39352da2/Arnau-Puigmal 18 ESP #> 1864 /en/players/8e010ff4/Francisco-Portillo 8 ESP #> 1865 /en/players/35f6db55/Leo-Baptistao 12 BRA #> 1866 /en/players/06efa9dc/Sergio-Akieme 15 ESP #> 1867 /en/players/075fe5a3/Srdjan-Babic 22 SRB #> 1868 /en/players/fd47b4f2/Rodrigo-Ely 19 BRA #> 1869 /en/players/55634fb8/Kaiky 2 BRA #> 1870 /en/players/1545cf15/Houboulang-Mendes 24 GNB #> 1871 /en/players/dabb2827/Fernando 13 ESP #> 1872 /en/players/63b0ca6b/Alvaro-Negredo 18 ESP #> 1873 /en/players/aa677a35/Alex-Fernandez 8 ESP #> 1874 /en/players/19b776e9/Ruben-Sobrino 7 ESP #> 1875 /en/players/0da6a13e/Theo-Bongonda 10 COD #> 1876 /en/players/38699c72/Anthony-Lozano 9 HON #> 1877 /en/players/036bba5f/Ruben-Alcaraz 4 ESP #> 1878 /en/players/6f4c734d/Jose-Mari 6 ESP #> 1879 /en/players/efecd633/Fede-San-Emeterio 24 ESP #> 1880 /en/players/a300ac7e/Lucas-Perez 15 ESP #> 1881 /en/players/3d7e48ce/Ivan-Alejo 11 ESP #> 1882 /en/players/5ca20b7a/Joseba-Zaldua 2 ESP #> 1883 /en/players/db001fa9/Alfonso-Espino 22 URU #> 1884 /en/players/ec1a731e/Victor-Chust 32 ESP #> 1885 /en/players/02d2c436/Luis-Hernandez 23 ESP #> 1886 /en/players/c4b888df/Isaac-Carcelen 20 ESP #> 1887 /en/players/6c4776b1/Jeremias-Ledesma 1 ARG #> 1888 /en/players/9c36ed83/Nicolas-Jackson 15 SEN #> 1889 /en/players/b8a642fc/Samuel-Chukwueze 11 NGA #> 1890 /en/players/518f2234/Alex-Baena 16 ESP #> 1891 /en/players/a6951bf8/Francis-Coquelin 19 FRA #> 1892 /en/players/f08490a6/Arnaut-Danjuma 9 NED #> 1893 /en/players/7460ca0d/Daniel-Parejo 10 ESP #> 1894 /en/players/5acc4a10/Etienne-Capoue 6 FRA #> 1895 /en/players/d7553721/Giovani-Lo-Celso 17 ARG #> 1896 /en/players/4a478107/Jose-Luis-Morales 22 ESP #> 1897 /en/players/63f04c6c/Alfonso-Pedraza 24 ESP #> 1898 /en/players/532e1e4f/Pau-Torres 4 ESP #> 1899 /en/players/4bd414c1/Raul-Albiol 3 ESP #> 1900 /en/players/e5d01ecf/Kiko-Femenia 2 ESP #> 1901 /en/players/625c144a/Geronimo-Rulli 13 ARG #> 1902 /en/players/64e8ed6d/Borja-Mayoral 19 ESP #> 1903 /en/players/f8eca1b6/Enes-Unal 10 TUR #> 1904 /en/players/acc1aefa/Angel-Algobia 16 ESP #> 1905 /en/players/a62b4888/Jaime-Seoane 8 ESP #> 1906 /en/players/e6777e6b/Stefan-Mitrovic 23 SRB #> 1907 /en/players/58afe001/Mauro-Arambarri 18 URU #> 1908 /en/players/8696bc90/Munir-El-Haddadi 17 MAR #> 1909 /en/players/6c811eb7/Carles-Alena 11 ESP #> 1910 /en/players/974322dc/Iglesias 21 ESP #> 1911 /en/players/2bea832e/Juanmi-Latasa 14 ESP #> 1912 /en/players/852ddfb8/Gaston-Alvarez 4 URU #> 1913 /en/players/93090f69/Domingos-Duarte 6 POR #> 1914 /en/players/a4971d84/Djene 2 TOG #> 1915 /en/players/ba5004e1/Damian-Suarez 22 URU #> 1916 /en/players/8f8c6934/David-Soria 13 ESP #> 1917 /en/players/0a0cc13c/Sergio-Leon 7 ESP #> 1918 /en/players/379dc075/Shon-Weissman 9 ISR #> 1919 /en/players/7c388b20/Oscar-Plano 10 ESP #> 1920 /en/players/70107d4d/Ivan-Sanchez 21 ESP #> 1921 /en/players/54bcdeb0/Gonzalo-Plata 11 ECU #> 1922 /en/players/014aa7bd/Alvaro-Aguado 6 ESP #> 1923 /en/players/7c4243d4/Roque-Mesa 17 ESP #> 1924 /en/players/bbc19252/Mickael-Malsa 14 MTQ #> 1925 /en/players/237a3851/Kike-Perez 4 ESP #> 1926 /en/players/b0616e3d/Sergio-Escudero 18 ESP #> 1927 /en/players/60359288/Javi-Sanchez 5 ESP #> 1928 /en/players/b86a64b2/Joaquin-Fernandez 24 ESP #> 1929 /en/players/f6f6b6e8/Jawad-El-Yamiq 15 MAR #> 1930 /en/players/89151b16/Zouhair-Feddal 3 MAR #> 1931 /en/players/29d0f2ac/Ivan-Fresneda 27 ESP #> 1932 /en/players/8fae77ea/Jordi-Masip 1 ESP #> 1933 /en/players/cc83b74d/Kasper-Dolberg 5 DEN #> 1934 /en/players/a0b4bb3e/Isco 22 ESP #> 1935 /en/players/abe66106/Erik-Lamela 17 ARG #> 1936 /en/players/58a9a4d9/Oliver-Torres 21 ESP #> 1937 /en/players/6e4df551/Papu-Gomez 24 ARG #> 1938 /en/players/fe641c1a/Thomas-Delaney 18 DEN #> 1939 /en/players/89f951b5/Ivan-Rakitic 10 CRO #> 1940 /en/players/0076ab7f/Nemanja-Gudelj 6 SRB #> 1941 /en/players/3376a776/Karim-Rekik 4 NED #> 1942 /en/players/e73c9bb2/Alex-Telles 3 BRA #> 1943 /en/players/0a69de7b/Kike-Salas 29 ESP #> 1944 /en/players/3f10bd22/Jesus-Navas 16 ESP #> 1945 /en/players/5853ac44/Tanguy-Nianzou 14 FRA #> 1946 /en/players/04e17fd5/Youssef-En-Nesyri 15 MAR #> 1947 /en/players/2dce876a/Carmona 30 ESP #> 1948 /en/players/f6798fc3/Yassine-Bounou 13 MAR #> 1949 /en/players/129af0db/Alvaro-Morata 19 ESP #> 1950 /en/players/df69b544/Antoine-Griezmann 8 FRA #> 1951 /en/players/dc62b55d/Matheus-Cunha 9 BRA #> 1952 /en/players/01eb744d/Angel-Correa 10 ARG #> 1953 /en/players/c14bc029/Saul-Niguez 17 ESP #> 1954 /en/players/de39485a/Yannick-Carrasco 21 BEL #> 1955 /en/players/55126f3b/Koke 6 ESP #> 1956 /en/players/cce181df/Geoffrey-Kondogbia 4 CTA #> 1957 /en/players/02c15616/Marcos-Llorente 14 ESP #> 1958 /en/players/5dfc6ad5/Axel-Witsel 20 BEL #> 1959 /en/players/c20bdcd7/Reinildo-Mandava 23 MOZ #> 1960 /en/players/f0da930c/Jose-Maria-Gimenez 2 URU #> 1961 /en/players/f6ac68c1/Stefan-Savic 15 MNE #> 1962 /en/players/23610943/Nahuel-Molina 16 ARG #> 1963 /en/players/8aafd64f/Joao-Felix 7 POR #> 1964 /en/players/ee8508c0/Jan-Oblak 13 SVN #> 1965 /en/players/0cadc46d/Vedat-Muriqi 7 KVX #> 1966 /en/players/8455ad90/Lee-Kang-in 19 KOR #> 1967 /en/players/bfd381b3/Iddrisu-Baba 12 GHA #> 1968 /en/players/91f7631f/Inigo-Ruiz-de-Galarreta 4 ESP #> 1969 /en/players/360d70f8/Lago-Junior 11 CIV #> 1970 /en/players/a254bbe0/Antonio-Sanchez 10 ESP #> 1971 /en/players/70f8e0bd/Dani-Rodriguez 14 ESP #> 1972 /en/players/808d48f3/Jaume-Costa 18 ESP #> 1973 /en/players/192c89a6/Braian-Cufre 3 ARG #> 1974 /en/players/0f26ffd7/Copete 6 ESP #> 1975 /en/players/b857bd29/Antonio-Raillo 21 ESP #> 1976 /en/players/f2c6ac01/Martin-Valjent 24 SVK #> 1977 /en/players/5db04597/Pablo-Maffeo 15 ESP #> 1978 /en/players/58ad9383/Predrag-Rajkovic 1 SRB #> 1979 /en/players/8d78e732/Robert-Lewandowski 9 POL #> 1980 /en/players/0ba976e4/Ansu-Fati 10 ESP #> 1981 /en/players/3423f250/Raphinha 22 BRA #> 1982 /en/players/b19db005/Ousmane-Dembele 7 FRA #> 1983 /en/players/9e1035f8/Ferran-Torres 11 ESP #> 1984 /en/players/19cae58d/Gavi 30 ESP #> 1985 /en/players/5ab0ea87/Sergio-Busquets 5 ESP #> 1986 /en/players/05e19d6a/Franck-Kessie 19 CIV #> 1987 /en/players/0d9b2d31/Pedri 8 ESP #> 1988 /en/players/4601e194/Jordi-Alba 18 ESP #> 1989 /en/players/335fa267/Sergi-Roberto 20 ESP #> 1990 /en/players/1cb49278/Andreas-Christensen 15 DEN #> 1991 /en/players/adfc9123/Gerard-Pique 3 ESP #> 1992 /en/players/5ccc9672/Alejandro-Balde 28 ESP #> 1993 /en/players/6f51e382/Marc-Andre-ter-Stegen 1 GER #> 1994 /en/players/6265208f/Joselu 9 ESP #> 1995 /en/players/fd771f95/Martin-Braithwaite 17 DEN #> 1996 /en/players/2683eda7/Javi-Puado 7 ESP #> 1997 /en/players/04965583/Aleix-Vidal 22 ESP #> 1998 /en/players/283c7121/Edu-Exposito 20 ESP #> 1999 /en/players/03049c8c/Keidi-Bare 8 ALB #> 2000 /en/players/6a8a7af8/Vinicius-Souza 12 BRA #> 2001 /en/players/ea610f00/Pol-Lozano 6 ESP #> 2002 /en/players/070a3904/Sergi-Darder 10 ESP #> 2003 /en/players/7f271d74/Simo 28 ESP #> 2004 /en/players/a3e4bf46/Brian-Olivan 14 ESP #> 2005 /en/players/69cbc8b6/Leandro-Cabrera 4 URU #> 2006 /en/players/bc6f5f06/Sergi-Gomez 24 ESP #> 2007 /en/players/41b3069f/Fernando-Calero 5 ESP #> 2008 /en/players/ce8039aa/Nico-Ribaudo 21 ESP #> 2009 /en/players/f127d782/Alvaro-Fernandez 25 ESP #> 2010 /en/players/527f063d/Edinson-Cavani 7 URU #> 2011 /en/players/ae86d473/Marcos-Andre 22 BRA #> 2012 /en/players/2a295d33/Samuel 16 BRA #> 2013 /en/players/130a7a3f/Samu-Castillejo 11 ESP #> 2014 /en/players/4c3a6744/Justin-Kluivert 9 NED #> 2015 /en/players/f4c69aa6/Ilaix-Moriba 8 GUI #> 2016 /en/players/37e103f8/Hugo-Duro 19 ESP #> 2017 /en/players/45d96179/Hugo-Guillamon 6 #> 2018 /en/players/e6697917/Domingos-Andre-Ribeiro-Almeida 18 POR #> 2019 /en/players/2c56a792/Nicolas-Gonzalez 17 ESP #> 2020 /en/players/b05e2dbd/Jose-Luis-Gaya 14 ESP #> 2021 /en/players/d2110326/Mouctar-Diakhaby 12 GUI #> 2022 /en/players/b7ca5c51/Gabriel-Paulista 5 BRA #> 2023 /en/players/15937e17/Eray-Comert 24 SUI #> 2024 /en/players/c78b352d/Thierry-Correia 2 POR #> 2025 /en/players/d4b73232/Giorgi-Mamardashvili 25 GEO #> 2026 /en/players/f553b2b3/Jorgen-Strand-Larsen 18 NOR #> 2027 /en/players/962e54cb/Goncalo-Paciencia 9 POR #> 2028 /en/players/a8f21b9f/Carles-Perez 7 ESP #> 2029 /en/players/7dcf86f6/Iago-Aspas 10 ESP #> 2030 /en/players/19709006/Oscar-Rodriguez-Arnaiz 5 ESP #> 2031 /en/players/35a6e5c7/Gabriel-Veiga 28 ESP #> 2032 /en/players/e9241b40/Luca-de-la-Torre 23 USA #> 2033 /en/players/3ca6106c/Augusto-Solari 21 ARG #> 2034 /en/players/34269bdf/Renato-Tapia 14 PER #> 2035 /en/players/ed5c5fa3/Fran-Beltran 8 ESP #> 2036 /en/players/a4b00319/Javi-Galan 17 ESP #> 2037 /en/players/be170419/Unai-Nunez 4 ESP #> 2038 /en/players/18abe173/Joseph-Aidoo 15 GHA #> 2039 /en/players/cb574619/Hugo-Mallo 2 ESP #> 2040 /en/players/056269d7/Oscar-Mingueza 3 ESP #> Pos Age Min Tkl_Tackles TklW_Tackles Def 3rd_Tackles #> 1 FW 20-258 80 1 0 0 #> 2 CM 23-326 10 0 0 0 #> 3 FW 28-187 80 0 0 0 #> 4 FW 32-260 10 0 0 0 #> 5 LM,RM 28-050 90 0 0 0 #> 6 CM,DM 28-024 90 2 2 0 #> 7 CM 24-091 90 2 2 1 #> 8 RM 25-133 55 1 0 0 #> 9 RB 27-200 35 1 1 1 #> 10 LB,CB 30-015 90 1 0 0 #> 11 CB 28-179 90 2 1 1 #> 12 CB 30-190 78 0 0 0 #> 13 LB,CB 21-353 12 1 1 1 #> 14 RB,RM 31-025 61 0 0 0 #> 15 LM 30-181 29 0 0 0 #> 16 GK 29-068 90 0 0 0 #> 17 FW 25-055 62 0 0 0 #> 18 FW 25-072 28 1 0 0 #> 19 LW 28-032 79 2 1 0 #> 20 LW 29-240 11 0 0 0 #> 21 RW 29-218 62 1 0 1 #> 22 RW 30-161 28 0 0 0 #> 23 AM 34-178 79 1 1 1 #> 24 AM 21-124 11 0 0 0 #> 25 DM 30-343 79 2 1 0 #> 26 DM 34-155 11 0 0 0 #> 27 DM 35-018 90 1 1 0 #> 28 LB 30-288 90 3 3 0 #> 29 CB 27-253 90 0 0 0 #> 30 CB 30-269 90 1 1 1 #> 31 RB 36-264 90 0 0 0 #> 32 GK 31-129 90 0 0 0 #> 33 FW 28-012 69 2 1 0 #> 34 FW 24-178 21 1 1 0 #> 35 FW 35-012 90 0 0 0 #> 36 LM 28-079 89 3 0 0 #> 37 LM 23-092 1 0 0 0 #> 38 CM 24-046 84 2 0 1 #> 39 CM 20-078 6 0 0 0 #> 40 RM 30-222 45 0 0 0 #> 41 RM 27-016 45 1 1 0 #> 42 DM 23-191 90 2 1 1 #> 43 LB 27-267 90 3 2 2 #> 44 CB 25-195 90 1 1 0 #> 45 CB 26-318 90 0 0 0 #> 46 RB 31-052 90 4 1 0 #> 47 GK 34-150 90 0 0 0 #> 48 FW 32-139 90 0 0 0 #> 49 LW 21-124 55 0 0 0 #> 50 LW 30-098 35 1 0 0 #> 51 RW 21-190 79 3 3 0 #> 52 RW 17-332 11 0 0 0 #> 53 LM 28-234 90 0 0 0 #> 54 CM 26-333 55 2 1 1 #> 55 CM 26-012 35 1 0 1 #> 56 RM 23-057 87 3 1 0 #> 57 RM 21-193 3 0 0 0 #> 58 LB 28-134 90 4 2 0 #> 59 CB 31-057 90 1 1 0 #> 60 CB 30-138 90 1 1 0 #> 61 RB 25-109 90 2 1 1 #> 62 GK 31-109 90 0 0 0 #> 63 FW 33-219 54 0 0 0 #> 64 FW 27-099 36 0 0 0 #> 65 LM 27-218 61 2 1 0 #> 66 LM 31-183 29 1 1 1 #> 67 CM 26-104 90 0 0 0 #> 68 CM 33-067 55 1 0 0 #> 69 CM 25-180 35 0 0 0 #> 70 RM 21-285 55 1 0 1 #> 71 RM 29-324 35 0 0 0 #> 72 DM 22-334 90 4 1 1 #> 73 LB 32-345 79 2 2 1 #> 74 LB 28-023 11 1 0 1 #> 75 CB 30-165 90 1 0 1 #> 76 CB 26-074 90 1 1 1 #> 77 RB 27-190 90 2 2 2 #> 78 GK 33-046 90 0 0 0 #> 79 FW 21-054 90 0 0 0 #> 80 FW 30-128 71 0 0 0 #> 81 FW 35-021 19 0 0 0 #> 82 LM 31-092 62 3 1 0 #> 83 RM 23-083 28 0 0 0 #> 84 CM 33-119 90 5 3 1 #> 85 CM 34-033 90 2 1 0 #> 86 RM 19-297 62 3 1 1 #> 87 LM 21-024 28 0 0 0 #> 88 LB 26-126 90 1 1 1 #> 89 CB 25-209 90 1 0 0 #> 90 CB 36-343 90 0 0 0 #> 91 RB 24-213 87 3 3 2 #> 92 RB 30-295 3 0 0 0 #> 93 GK 30-085 90 0 0 0 #> 94 FW 33-357 90 2 2 0 #> 95 LW,RW 25-090 90 0 0 0 #> 96 RW 25-242 59 2 2 0 #> 97 RW,FW 19-286 31 0 0 0 #> 98 LM 19-261 71 0 0 0 #> 99 CM,LM 25-237 19 0 0 0 #> 100 CM,DM 34-028 89 1 1 0 #> 101 RM 18-008 59 1 0 0 #> 102 RM,CM 25-093 31 1 0 0 #> 103 LB 33-145 81 1 1 0 #> 104 LW 33-056 9 0 0 0 #> 105 CB 21-216 90 3 2 1 #> 106 CB 26-125 59 3 1 1 #> 107 RB,CB 30-187 31 0 0 0 #> 108 RB,CB 23-159 90 2 1 1 #> 109 GK 30-105 90 0 0 0 #> 110 FW 21-184 61 1 1 0 #> 111 FW 36-184 29 0 0 0 #> 112 LW 29-290 90 0 0 0 #> 113 RW 27-229 78 4 3 2 #> 114 RW 31-136 12 0 0 0 #> 115 AM 34-109 83 1 1 0 #> 116 AM 26-151 7 1 1 0 #> 117 DM 28-150 90 6 5 1 #> 118 DM 26-287 61 0 0 0 #> 119 DM 27-358 29 2 1 1 #> 120 LB 22-364 90 2 2 2 #> 121 CB 27-289 90 0 0 0 #> 122 CB 31-085 90 1 1 1 #> 123 RB 30-224 90 0 0 0 #> 124 GK 28-231 90 0 0 0 #> 125 FW 29-111 90 0 0 0 #> 126 FW 33-338 72 0 0 0 #> 127 FW 36-359 18 0 0 0 #> 128 LM 24-101 64 0 0 0 #> 129 RM 27-185 26 2 0 0 #> 130 CM 34-251 64 1 1 1 #> 131 CM 23-207 26 1 0 0 #> 132 CM 29-002 90 4 4 2 #> 133 RM 31-238 45 2 0 2 #> 134 LM,RM 26-333 45 1 0 0 #> 135 LB 30-221 90 3 3 2 #> 136 CB 22-162 90 3 3 2 #> 137 CB 33-122 90 1 0 0 #> 138 RB 30-051 85 1 1 1 #> 139 RB 22-049 5 1 1 1 #> 140 GK 29-182 90 0 0 0 #> 141 FW 21-071 77 1 0 0 #> 142 RW 18-207 13 2 2 2 #> 143 FW 22-327 84 1 1 0 #> 144 FW 19-329 6 0 0 0 #> 145 AM 36-218 77 3 2 0 #> 146 LW 20-230 13 3 2 3 #> 147 LM 26-053 77 1 1 0 #> 148 DM 32-159 13 0 0 0 #> 149 RM,AM 25-219 90 4 3 0 #> 150 DM 23-193 90 1 1 0 #> 151 LB 29-172 81 3 3 1 #> 152 LB 24-363 9 0 0 0 #> 153 CB 25-276 90 1 0 1 #> 154 CB 25-137 90 3 0 1 #> 155 RB 28-139 90 2 0 1 #> 156 GK 27-143 90 0 0 0 #> 157 FW 22-277 52 2 2 1 #> 158 CB 18-048 38 1 1 1 #> 159 LW,CM,LM 22-234 73 3 2 1 #> 160 FW 26-000 17 0 0 0 #> 161 RW,FW 27-208 72 1 1 0 #> 162 CM 20-223 18 0 0 0 #> 163 LM,CM 25-224 62 0 0 0 #> 164 CB 29-144 28 0 0 0 #> 165 CM 22-195 90 NA 1 NA #> 166 RM,CM 19-258 90 2 2 1 #> 167 LB 19-224 72 0 0 0 #> 168 LB 24-266 18 1 0 1 #> 169 CB 25-238 90 0 0 0 #> 170 CB 24-191 51 2 2 1 #> 171 RB 23-158 90 1 1 1 #> 172 GK 21-319 90 0 0 0 #> 173 FW 23-315 90 1 0 0 #> 174 AM 31-204 60 0 0 0 #> 175 RM 19-225 30 0 0 0 #> 176 AM,LM 22-134 90 1 0 1 #> 177 CM 25-047 90 2 2 0 #> 178 CM 21-300 73 0 0 0 #> 179 RM 24-212 17 1 0 0 #> 180 WB 22-264 61 1 0 1 #> 181 LB 21-018 29 0 0 0 #> 182 WB,RB 20-072 81 1 1 1 #> 183 RB 19-111 9 0 0 0 #> 184 CB 31-106 90 2 0 0 #> 185 CB 32-309 61 0 0 0 #> 186 FW 35-306 29 0 0 0 #> 187 CB 23-278 90 4 1 3 #> 188 GK 34-206 90 0 0 0 #> 189 FW 25-193 70 0 0 0 #> 190 FW 32-334 20 0 0 0 #> 191 FW 21-168 70 0 0 0 #> 192 LM,FW 26-179 20 0 0 0 #> 193 CM 21-260 90 1 1 0 #> 194 CM 30-160 80 1 1 0 #> 195 AM 32-062 10 0 0 0 #> 196 CM 25-149 56 1 1 1 #> 197 CM,RM 26-223 34 2 0 1 #> 198 LB 24-241 90 0 0 0 #> 199 CB 26-114 90 0 0 0 #> 200 CB 28-284 90 1 1 0 #> 201 CB 18-214 80 2 2 2 #> 202 AM 21-216 10 0 0 0 #> 203 RB 23-165 90 3 1 2 #> 204 GK 32-065 90 0 0 0 #> 205 FW 34-238 90 0 0 0 #> 206 LW 22-033 82 1 1 0 #> 207 LM 26-007 8 0 0 0 #> 208 RW,RM 24-023 90 0 0 0 #> 209 LM,CM 32-222 82 1 0 0 #> 210 CM 30-172 8 0 0 0 #> 211 CM 22-199 57 2 0 2 #> 212 RW,LW 31-219 33 0 0 0 #> 213 RM 19-277 45 2 1 0 #> 214 RM,LM 36-339 45 0 0 0 #> 215 LB 27-067 73 2 1 1 #> 216 LB 30-051 17 0 0 0 #> 217 CB 32-208 90 0 0 0 #> 218 CB 29-164 90 0 0 0 #> 219 RB 31-044 90 1 1 1 #> 220 GK 30-095 90 0 0 0 #> 221 FW 24-319 56 0 0 0 #> 222 FW 36-035 34 0 0 0 #> 223 LW 27-042 69 0 0 0 #> 224 LW 20-034 21 0 0 0 #> 225 RW 28-061 85 1 0 0 #> 226 RW 20-307 5 0 0 0 #> 227 LM 29-239 69 1 0 0 #> 228 LM 25-337 21 0 0 0 #> 229 CM 29-086 90 4 1 2 #> 230 RM 22-112 56 1 1 0 #> 231 RM 23-223 34 0 0 0 #> 232 LB 32-186 90 0 0 0 #> 233 CB 27-203 90 2 2 1 #> 234 CB 23-031 90 1 1 1 #> 235 RB 33-123 90 0 0 0 #> 236 GK 25-065 90 0 0 0 #> 237 FW 28-113 86 1 0 1 #> 238 FW 29-251 4 0 0 0 #> 239 LM 34-070 64 3 1 3 #> 240 RM 25-226 26 1 1 1 #> 241 CM 31-034 90 2 0 1 #> 242 CM 31-220 82 1 0 0 #> 243 CM 26-205 8 0 0 0 #> 244 RM,LM 21-177 85 3 1 1 #> 245 LM 31-227 5 0 0 0 #> 246 LB 34-150 90 1 1 1 #> 247 CB 22-309 90 2 2 1 #> 248 CB 30-311 90 1 0 1 #> 249 CB 26-247 90 4 3 4 #> 250 RB 25-034 90 0 0 0 #> 251 GK 26-288 90 0 0 0 #> 252 FW 25-097 80 0 0 0 #> 253 FW 33-295 10 0 0 0 #> 254 FW 25-132 80 0 0 0 #> 255 FW 20-052 10 1 0 0 #> 256 CM 27-201 62 2 0 2 #> 257 CM 25-205 28 0 0 0 #> 258 CM 26-319 90 2 2 1 #> 259 CM 24-222 57 1 1 0 #> 260 CM 30-086 33 1 1 0 #> 261 LB 28-153 90 1 0 0 #> 262 CB 27-158 90 1 0 0 #> 263 CB 32-085 90 0 0 0 #> 264 CB 30-227 90 0 0 0 #> 265 RB 24-043 90 2 2 2 #> 266 GK 29-133 90 0 0 0 #> 267 FW 22-278 82 0 0 0 #> 268 FW 27-159 8 0 0 0 #> 269 FW 29-296 82 0 0 0 #> 270 FW 23-080 8 0 0 0 #> 271 CM 26-276 61 2 1 0 #> 272 CM 31-147 29 1 1 1 #> 273 CM 30-219 90 3 3 1 #> 274 CM 27-197 61 1 1 1 #> 275 CM 28-083 29 0 0 0 #> 276 LB 27-267 61 5 4 3 #> 277 LB 28-345 29 1 1 1 #> 278 CB 28-206 90 3 1 2 #> 279 CB 33-215 90 0 0 0 #> 280 CB 31-219 90 3 3 2 #> 281 RB 24-131 90 1 0 1 #> 282 GK 29-220 90 0 0 0 #> 283 FW 29-210 78 1 0 1 #> 284 FW 28-228 12 2 2 0 #> 285 LW 29-087 90 1 0 0 #> 286 RW 22-091 86 1 1 0 #> 287 RW 22-208 4 0 0 0 #> 288 AM 29-028 63 0 0 0 #> 289 AM 21-221 27 0 0 0 #> 290 DM 30-130 90 3 2 2 #> 291 DM 28-125 86 1 1 1 #> 292 DM 24-238 4 1 1 1 #> 293 LB 29-068 90 0 0 0 #> 294 CB 25-136 90 1 1 0 #> 295 CB 31-049 90 3 2 2 #> 296 RB 26-146 78 2 1 2 #> 297 RB 21-035 12 0 0 0 #> 298 GK 28-189 90 0 0 0 #> 299 FW 31-224 64 0 0 0 #> 300 FW 25-139 26 1 1 0 #> 301 LW 32-292 45 0 0 0 #> 302 RM 25-254 45 0 0 0 #> 303 RW,LM 29-326 64 2 1 1 #> 304 LM 32-255 26 0 0 0 #> 305 LB,LM 29-359 90 2 2 1 #> 306 CM 27-240 75 0 0 0 #> 307 CM 20-061 15 0 0 0 #> 308 CM 29-194 90 2 2 1 #> 309 RB,RM 29-065 90 2 1 2 #> 310 CB 31-334 90 1 0 1 #> 311 CB 29-364 45 2 1 2 #> 312 CB 27-199 45 0 0 0 #> 313 CB 21-350 15 0 0 0 #> 314 GK 30-184 90 0 0 0 #> 315 FW 32-145 90 0 0 0 #> 316 LW 21-130 34 0 0 0 #> 317 CB 26-339 56 1 0 0 #> 318 RW,RM 21-196 63 3 2 2 #> 319 LM 24-086 27 0 0 0 #> 320 CM,LM 28-240 90 1 0 0 #> 321 CM,CB 23-063 90 3 2 1 #> 322 RM,LM 26-018 76 1 1 0 #> 323 RM 24-356 14 0 0 0 #> 324 LB 28-140 76 1 1 1 #> 325 LB 17-338 14 0 0 0 #> 326 CB 31-063 90 1 0 1 #> 327 CB 30-144 29 0 0 0 #> 328 RB 25-115 90 0 0 0 #> 329 GK 31-115 90 0 0 0 #> 330 FW 21-190 73 0 0 0 #> 331 FW 36-190 17 0 0 0 #> 332 LW 29-296 84 0 0 0 #> 333 CM,LW 24-256 6 1 1 1 #> 334 RW 27-235 56 0 0 0 #> 335 RW,CM 31-142 34 0 0 0 #> 336 DM,AM 34-115 56 1 1 1 #> 337 DM,CM 27-364 34 1 1 0 #> 338 CB,DM 28-156 90 1 1 1 #> 339 DM 26-293 84 0 0 0 #> 340 CB,DM 35-176 6 0 0 0 #> 341 LB 23-005 90 1 1 0 #> 342 CB 27-295 90 1 1 1 #> 343 CB 31-091 15 0 0 0 #> 344 RB 30-230 90 1 1 1 #> 345 GK 28-237 90 0 0 0 #> 346 FW 25-062 62 0 0 0 #> 347 FW 25-079 28 0 0 0 #> 348 LW 34-185 67 0 0 0 #> 349 LW,LM 30-120 23 2 2 1 #> 350 RW,LW 30-168 90 4 3 0 #> 351 LM 27-282 78 3 1 0 #> 352 RM,LM 34-162 12 0 0 0 #> 353 CM 35-025 90 3 2 1 #> 354 RM 28-044 63 2 1 0 #> 355 RM,RW 28-039 27 1 0 0 #> 356 LB 30-295 77 2 1 2 #> 357 LB 29-247 13 0 0 0 #> 358 CB 27-260 90 0 0 0 #> 359 CB 20-073 90 1 1 1 #> 360 RB 25-230 90 0 0 0 #> 361 GK 31-136 90 0 0 0 #> 362 FW 31-082 66 2 1 1 #> 363 FW 22-340 24 0 0 0 #> 364 LW 27-216 90 3 3 0 #> 365 RW 29-330 66 1 1 1 #> 366 RW 33-225 24 0 0 0 #> 367 LM 25-186 90 2 1 2 #> 368 CM 33-073 66 1 0 1 #> 369 CM 31-189 24 1 1 0 #> 370 RM 26-110 90 0 0 0 #> 371 LB 32-351 45 3 3 1 #> 372 LB 28-029 45 1 1 1 #> 373 CB 30-171 22 2 1 2 #> 374 CB 26-080 68 1 1 1 #> 375 CB 25-158 90 0 0 0 #> 376 RB 27-196 90 3 3 2 #> 377 GK 33-052 90 0 0 0 #> 378 FW 20-266 83 1 1 0 #> 379 FW 33-166 7 0 0 0 #> 380 FW 31-029 64 0 0 0 #> 381 FW 32-268 26 0 0 0 #> 382 LM 28-058 90 0 0 0 #> 383 CM 28-032 90 3 1 0 #> 384 CM 24-099 75 0 0 0 #> 385 CM 30-189 15 2 1 0 #> 386 RM 28-195 65 0 0 0 #> 387 RM 29-037 25 0 0 0 #> 388 LB 30-023 90 1 0 1 #> 389 CB 28-187 90 2 1 2 #> 390 CB 30-198 90 3 2 0 #> 391 RB 31-033 74 1 1 0 #> 392 RB 27-208 16 0 0 0 #> 393 GK 29-076 90 0 0 0 #> 394 FW,LM 29-117 90 0 0 0 #> 395 FW 33-344 79 0 0 0 #> 396 CM 25-157 11 1 0 1 #> 397 LM 26-339 61 0 0 0 #> 398 LM,CM 34-257 29 1 0 0 #> 399 CM 23-213 75 0 0 0 #> 400 CM 29-008 61 1 0 1 #> 401 CM,LB 24-107 29 3 2 2 #> 402 RM 22-055 61 1 0 1 #> 403 RM 27-191 29 0 0 0 #> 404 LB 30-227 74 5 3 3 #> 405 FW,LB 37-000 16 0 0 0 #> 406 CB 22-168 90 0 0 0 #> 407 CB 33-128 90 1 0 0 #> 408 RB 30-057 90 2 2 2 #> 409 GK 29-188 90 0 0 0 #> 410 FW 28-118 90 2 2 0 #> 411 FW 21-182 90 1 1 0 #> 412 CM 34-075 78 1 0 0 #> 413 CM 29-256 12 0 0 0 #> 414 CM 31-039 79 1 0 1 #> 415 FW 26-210 11 2 1 0 #> 416 CM 31-225 63 3 2 0 #> 417 CM 25-231 27 0 0 0 #> 418 LB 34-155 90 2 2 1 #> 419 CB 22-314 86 2 1 0 #> 420 CB 31-232 4 0 0 0 #> 421 CB 30-316 90 1 0 1 #> 422 CB 26-252 90 2 2 1 #> 423 RB 25-039 90 0 0 0 #> 424 GK 26-293 90 0 0 0 #> 425 FW 29-215 78 0 0 0 #> 426 DM 24-243 12 1 0 0 #> 427 LW 29-092 90 0 0 0 #> 428 RW 22-096 63 0 0 0 #> 429 RW 21-226 27 0 0 0 #> 430 AM,FW 29-033 90 0 0 0 #> 431 DM,AM 30-135 87 0 0 0 #> 432 FW 28-233 3 0 0 0 #> 433 DM 28-130 90 4 3 0 #> 434 LB 29-073 90 4 3 4 #> 435 CB 25-141 90 0 0 0 #> 436 CB 31-054 90 0 0 0 #> 437 RB 26-151 90 1 1 1 #> 438 GK 28-194 90 0 0 0 #> 439 FW 28-019 68 0 0 0 #> 440 FW 24-185 22 0 0 0 #> 441 FW 35-019 90 0 0 0 #> 442 LM 24-053 78 1 1 0 #> 443 LM 20-085 12 0 0 0 #> 444 CM 23-198 90 1 1 1 #> 445 RM 28-086 90 3 3 1 #> 446 DM 27-023 86 0 0 0 #> 447 DM 24-089 4 0 0 0 #> 448 LB 27-274 90 2 1 2 #> 449 CB 25-202 90 1 1 0 #> 450 CB 26-325 90 3 1 2 #> 451 RB 31-059 90 2 1 1 #> 452 GK 34-157 90 0 0 0 #> 453 FW 34-244 90 1 0 1 #> 454 LW 22-039 82 3 1 1 #> 455 LW 31-225 8 0 0 0 #> 456 RW 24-029 90 2 1 0 #> 457 LM 19-283 82 1 1 1 #> 458 LM 26-211 8 1 1 1 #> 459 CM 22-205 90 2 1 0 #> 460 RM 36-345 76 1 1 1 #> 461 RM 26-013 14 0 0 0 #> 462 LB 27-073 90 1 1 1 #> 463 CB 30-057 76 0 0 0 #> 464 RB 31-050 14 0 0 0 #> 465 CB 24-214 90 1 0 1 #> 466 RB 30-221 68 1 1 0 #> 467 CB,RB 29-170 22 0 0 0 #> 468 GK 30-101 90 0 0 0 #> 469 FW,RW 28-067 89 2 2 0 #> 470 RW 23-340 1 0 0 0 #> 471 LW 27-048 63 1 0 1 #> 472 AM,DM 23-229 27 0 0 0 #> 473 RW,LW 20-040 89 0 0 0 #> 474 LW 30-194 1 0 0 0 #> 475 AM,LW 29-245 72 0 0 0 #> 476 FW 36-041 18 0 0 0 #> 477 DM 29-092 90 4 4 1 #> 478 DM,AM 22-118 72 0 0 0 #> 479 DM 21-279 18 0 0 0 #> 480 LB 32-192 90 3 3 3 #> 481 CB 27-209 90 1 1 1 #> 482 CB 23-037 90 3 1 3 #> 483 RB 33-129 90 3 1 2 #> 484 GK 25-071 90 0 0 0 #> 485 FW 22-284 16 0 0 0 #> 486 FW,RW 26-007 74 0 0 0 #> 487 LW 22-241 90 1 1 0 #> 488 RW,RM 27-215 90 0 0 0 #> 489 LM,CM 25-231 90 2 0 0 #> 490 CM 22-202 74 NA 0 NA #> 491 FW 25-305 16 0 0 0 #> 492 RM 19-265 61 2 2 2 #> 493 LM,RM 20-230 29 0 0 0 #> 494 LB 19-231 61 2 2 1 #> 495 LB 24-273 29 1 0 0 #> 496 CB 25-245 90 3 1 2 #> 497 CB 31-268 90 1 1 1 #> 498 RB 23-165 74 2 2 2 #> 499 RB 29-151 16 1 1 1 #> 500 GK 21-326 90 0 0 0 #> 501 FW 22-284 69 2 2 0 #> 502 FW 27-165 21 0 0 0 #> 503 FW 29-302 69 1 1 0 #> 504 FW 23-086 21 0 0 0 #> 505 LW 28-351 90 3 3 0 #> 506 RW 24-137 89 1 1 0 #> 507 CM 26-282 61 1 0 0 #> 508 CM 28-089 29 0 0 0 #> 509 CM 27-203 61 2 1 1 #> 510 CM 31-153 29 0 0 0 #> 511 DM 30-225 90 3 3 2 #> 512 CB 28-212 90 2 2 2 #> 513 CB 33-221 90 2 1 1 #> 514 CB 31-225 75 1 1 1 #> 515 CB 27-213 15 0 0 0 #> 516 GK 29-226 90 0 0 0 #> 517 FW 21-062 83 0 0 0 #> 518 FW 35-029 7 0 0 0 #> 519 FW 30-136 90 0 0 0 #> 520 LM 26-134 69 0 0 0 #> 521 LM 21-032 21 1 0 0 #> 522 CM 33-127 90 0 0 0 #> 523 CM 34-041 68 0 0 0 #> 524 CM 31-100 22 0 0 0 #> 525 RM 19-305 75 1 0 1 #> 526 RM 23-091 15 0 0 0 #> 527 LB 26-134 90 0 0 0 #> 528 CB 25-217 90 0 0 0 #> 529 CB 36-351 90 1 1 1 #> 530 RB 24-221 90 3 1 1 #> 531 GK 30-093 90 0 0 0 #> 532 FW 21-078 68 4 3 2 #> 533 FW 18-214 22 0 0 0 #> 534 FW 22-334 68 0 0 0 #> 535 LM,FW 20-131 22 0 0 0 #> 536 AM 36-225 68 2 1 1 #> 537 AM 20-202 22 2 2 2 #> 538 LM 26-060 77 5 1 3 #> 539 FW 19-336 13 0 0 0 #> 540 RM 25-226 90 0 0 0 #> 541 DM 23-200 90 5 4 4 #> 542 LB 25-005 90 3 0 1 #> 543 CB 25-283 90 1 0 0 #> 544 CB 25-144 90 1 1 1 #> 545 RB 28-146 77 1 1 0 #> 546 RB 26-017 13 1 0 0 #> 547 GK 27-150 90 0 0 0 #> 548 FW 34-000 90 1 0 0 #> 549 LW 18-307 63 0 0 0 #> 550 RW 25-250 27 1 1 0 #> 551 RW,LW 25-098 71 2 0 0 #> 552 LB,LW 33-153 19 1 1 1 #> 553 CM 22-173 63 0 0 0 #> 554 LW,CM 19-294 27 0 0 0 #> 555 DM,LM,CM 19-269 90 3 2 1 #> 556 CM,DM,RM 18-016 84 1 0 1 #> 557 RM 25-245 6 0 0 0 #> 558 DM,CM 25-101 84 4 1 1 #> 559 CM 30-195 6 1 1 1 #> 560 LB,CB 21-224 90 3 2 3 #> 561 CB 26-133 90 0 0 0 #> 562 RB 23-167 90 3 3 1 #> 563 GK 30-113 90 0 0 0 #> 564 FW 23-323 85 0 0 0 #> 565 CM 21-308 5 0 0 0 #> 566 FW 35-314 68 1 0 0 #> 567 FW 20-215 22 1 1 1 #> 568 LW 21-026 68 1 1 1 #> 569 LW,LB 24-112 22 0 0 0 #> 570 RW,RB 20-080 90 1 0 0 #> 571 CM 22-142 54 0 0 0 #> 572 CM,LM 31-212 36 1 1 0 #> 573 CM,RM 24-220 90 1 0 0 #> 574 DM,CM 25-055 90 1 0 1 #> 575 CB 31-114 90 1 1 0 #> 576 CB 32-317 90 1 0 1 #> 577 CB 23-286 90 4 4 2 #> 578 GK 34-214 90 0 0 0 #> 579 FW 25-139 90 0 0 0 #> 580 FW 25-104 90 2 2 0 #> 581 CM 27-208 45 1 1 0 #> 582 CM 25-212 45 3 1 0 #> 583 CM 26-326 90 1 1 0 #> 584 CM,LM 24-229 90 0 0 0 #> 585 LB 28-160 89 4 3 3 #> 586 CB 27-165 90 0 0 0 #> 587 CB 32-092 64 0 0 0 #> 588 RM 30-093 26 0 0 0 #> 589 CB 30-234 90 0 0 0 #> 590 RB 24-050 90 5 0 3 #> 591 GK 29-140 90 0 0 0 #> 592 FW 35-318 90 0 0 0 #> 593 FW 23-327 80 0 0 0 #> 594 FW 17-080 10 0 0 0 #> 595 LM 19-237 58 3 2 2 #> 596 LM 20-219 32 1 1 1 #> 597 CM 32-321 90 4 4 0 #> 598 CM 25-059 90 0 0 0 #> 599 RM 24-224 9 0 0 0 #> 600 RM 21-312 49 1 0 0 #> 601 RM 31-216 32 1 1 0 #> 602 LB 21-030 80 3 1 2 #> 603 LB 24-116 10 2 2 2 #> 604 CB 31-118 90 0 0 0 #> 605 CB 23-290 90 2 0 2 #> 606 RB 20-084 90 3 1 2 #> 607 GK 34-218 90 0 0 0 #> 608 FW 24-191 69 0 0 0 #> 609 FW 30-235 21 0 0 0 #> 610 FW 35-025 90 0 0 0 #> 611 LM 28-092 89 4 0 1 #> 612 LM 21-196 1 0 0 0 #> 613 CM 23-204 90 1 1 0 #> 614 RM 24-059 76 0 0 0 #> 615 RM 28-025 14 0 0 0 #> 616 DM 27-029 69 2 1 2 #> 617 DM 20-091 21 1 1 0 #> 618 LB 27-280 90 5 4 2 #> 619 CB 25-208 90 1 1 0 #> 620 CB 26-331 90 1 1 0 #> 621 RB 31-065 90 0 0 0 #> 622 GK 34-163 90 0 0 0 #> 623 FW 29-221 74 1 1 1 #> 624 CB 25-157 16 0 0 0 #> 625 LW 29-098 63 0 0 0 #> 626 RW 21-236 27 1 0 1 #> 627 RW 22-102 45 0 0 0 #> 628 LW,RW 31-191 45 0 0 0 #> 629 AM 29-039 89 2 1 1 #> 630 DM 35-332 1 0 0 0 #> 631 DM,AM 30-141 90 2 0 0 #> 632 DM 28-136 90 5 1 0 #> 633 LB 29-079 90 0 0 0 #> 634 CB 25-147 90 1 1 1 #> 635 CB 31-060 72 0 0 0 #> 636 RB 26-157 90 2 1 1 #> 637 GK 28-200 90 0 0 0 #> 638 FW 28-201 61 1 1 0 #> 639 FW 31-035 29 0 0 0 #> 640 FW 20-272 61 0 0 0 #> 641 FW 32-274 29 0 0 0 #> 642 LM,CM 28-064 90 1 0 0 #> 643 CM 28-038 77 0 0 0 #> 644 RM 29-043 13 1 0 1 #> 645 CM 24-105 90 4 1 1 #> 646 RM 31-039 76 2 0 0 #> 647 LM 25-147 14 0 0 0 #> 648 LB,CB 30-029 90 0 0 0 #> 649 CB 28-193 90 4 2 1 #> 650 CB 30-204 70 1 1 1 #> 651 LB 22-002 20 0 0 0 #> 652 RB 27-214 90 3 2 2 #> 653 GK 29-082 90 0 0 0 #> 654 FW 25-151 60 0 0 0 #> 655 FW 26-180 30 0 0 0 #> 656 FW 31-236 60 1 0 0 #> 657 FW 29-338 30 0 0 0 #> 658 LM 25-266 90 0 0 0 #> 659 CM 27-252 45 0 0 0 #> 660 CM 25-240 45 1 1 1 #> 661 CM 29-206 77 1 0 0 #> 662 CM 22-282 13 1 1 0 #> 663 RM 23-127 90 5 4 3 #> 664 LB 30-006 90 2 1 2 #> 665 CB 31-346 90 3 2 3 #> 666 CB 30-011 90 2 1 2 #> 667 RB 25-014 45 1 0 0 #> 668 RB 29-077 45 0 0 0 #> 669 GK 30-196 90 0 0 0 #> 670 FW 18-220 59 0 0 0 #> 671 FW 19-342 31 1 0 0 #> 672 FW 21-084 77 0 0 0 #> 673 FW 20-243 13 1 1 1 #> 674 AM 36-231 77 0 0 0 #> 675 LM 32-172 13 1 0 1 #> 676 LM,RM 26-066 90 2 2 2 #> 677 RM,AM 25-232 90 4 2 0 #> 678 DM 23-206 90 5 3 4 #> 679 LB 25-011 90 5 4 3 #> 680 CB 25-289 90 2 1 2 #> 681 CB 25-150 60 1 1 1 #> 682 CB,RB 28-152 30 0 0 0 #> 683 RB 26-023 87 4 1 2 #> 684 CB 21-231 3 0 0 0 #> 685 GK 27-156 90 0 0 0 #> 686 FW 36-198 77 0 0 0 #> 687 FW 24-264 13 0 0 0 #> 688 LW 29-304 90 1 0 0 #> 689 RW 31-150 56 2 0 0 #> 690 RW 32-046 34 0 0 0 #> 691 AM 34-123 56 1 1 0 #> 692 DM,AM 25-326 34 1 0 0 #> 693 DM 26-301 56 1 0 1 #> 694 AM,DM 21-198 34 0 0 0 #> 695 DM 28-007 85 5 2 0 #> 696 DM 26-165 5 0 0 0 #> 697 LB 23-013 90 0 0 0 #> 698 CB 27-303 90 0 0 0 #> 699 CB 28-164 90 2 2 0 #> 700 RB 30-238 90 1 1 0 #> 701 GK 28-245 90 0 0 0 #> 702 FW 28-125 86 0 0 0 #> 703 FW 29-263 4 1 0 1 #> 704 FW 21-189 73 0 0 0 #> 705 FW 19-350 17 0 0 0 #> 706 CM 34-082 86 0 0 0 #> 707 CM 29-021 4 0 0 0 #> 708 CM 31-046 90 2 1 1 #> 709 CM 31-232 66 1 1 0 #> 710 CM 25-238 24 0 0 0 #> 711 LB 34-162 90 2 1 0 #> 712 CB 22-321 90 0 0 0 #> 713 CB 30-323 90 0 0 0 #> 714 CB 26-259 90 0 0 0 #> 715 RB 25-046 90 2 1 1 #> 716 GK 26-300 90 0 0 0 #> 717 FW 25-206 90 0 0 0 #> 718 FW 21-181 79 1 1 0 #> 719 FW 30-001 11 0 0 0 #> 720 AM 25-162 81 1 1 0 #> 721 AM 26-236 9 0 0 0 #> 722 CM 21-273 90 3 0 3 #> 723 CM 30-173 45 0 0 0 #> 724 CM 30-150 45 0 0 0 #> 725 WB 24-254 90 2 0 2 #> 726 WB 23-186 73 1 0 0 #> 727 WB 24-115 17 0 0 0 #> 728 CB 26-127 90 0 0 0 #> 729 CB 28-297 90 1 1 1 #> 730 CB 18-227 73 0 0 0 #> 731 CB 23-178 17 0 0 0 #> 732 GK 32-078 90 0 0 0 #> 733 FW 30-176 64 0 0 0 #> 734 FW 25-087 26 0 0 0 #> 735 FW 25-070 90 0 0 0 #> 736 AM 27-290 57 0 0 0 #> 737 DM 30-358 33 0 0 0 #> 738 AM,DM 34-193 90 0 0 0 #> 739 DM,CB 35-033 90 2 1 1 #> 740 DM 28-052 57 1 1 0 #> 741 AM 30-128 33 0 0 0 #> 742 LB 29-255 90 0 0 0 #> 743 CB 27-268 57 1 0 1 #> 744 RB,CB 20-210 33 0 0 0 #> 745 CB 20-081 90 3 3 1 #> 746 RB 36-279 64 0 0 0 #> 747 AM 28-047 26 0 0 0 #> 748 GK 31-144 90 0 0 0 #> 749 FW 25-145 89 0 0 0 #> 750 FW 21-158 1 0 0 0 #> 751 FW 25-110 89 2 2 0 #> 752 FW 33-308 1 0 0 0 #> 753 LM 30-099 90 1 1 1 #> 754 CM 26-332 90 2 1 2 #> 755 CM 25-218 72 2 2 0 #> 756 CM 27-214 18 0 0 0 #> 757 RM 24-235 90 1 0 1 #> 758 LB 22-157 90 3 2 3 #> 759 CB 30-240 90 1 1 1 #> 760 CB 27-171 90 2 1 2 #> 761 RB 24-056 90 1 1 0 #> 762 GK 29-146 90 0 0 0 #> 763 FW 35-036 57 1 0 0 #> 764 FW 21-069 33 1 1 0 #> 765 FW 30-143 90 1 1 0 #> 766 LM 26-141 68 2 2 0 #> 767 LM 21-039 22 0 0 0 #> 768 CM 33-134 68 0 0 0 #> 769 CM 31-107 22 0 0 0 #> 770 CM 34-048 90 1 1 0 #> 771 RM 19-312 57 1 1 1 #> 772 RM 23-098 33 0 0 0 #> 773 LB 26-141 90 0 0 0 #> 774 CB 25-224 90 0 0 0 #> 775 CB 36-358 90 0 0 0 #> 776 RB 24-228 57 0 0 0 #> 777 RB 31-207 33 0 0 0 #> 778 GK 30-100 90 0 0 0 #> 779 FW 34-007 90 0 0 0 #> 780 LW,RW 25-105 81 2 2 0 #> 781 RW 22-180 9 0 0 0 #> 782 RW 25-257 60 1 0 0 #> 783 LW 19-301 30 1 1 1 #> 784 LM 19-276 90 2 1 1 #> 785 CM 34-043 75 1 0 0 #> 786 CM 25-252 15 1 1 0 #> 787 RM 18-023 60 1 1 0 #> 788 RM 25-108 30 1 0 0 #> 789 LB 18-314 90 2 2 1 #> 790 CB 21-231 90 1 0 1 #> 791 CB 23-174 60 1 1 1 #> 792 RB 30-202 30 1 1 0 #> 793 RB,CB 23-289 90 0 0 0 #> 794 GK 30-120 90 0 0 0 #> 795 FW 31-091 60 0 0 0 #> 796 FW 33-234 30 0 0 0 #> 797 LM 27-225 75 1 1 0 #> 798 LM 19-003 15 1 1 0 #> 799 CM 26-119 45 0 0 0 #> 800 CM 33-082 45 1 0 1 #> 801 CM 25-195 90 2 1 2 #> 802 RM 29-339 60 2 1 2 #> 803 RM 27-233 30 4 2 2 #> 804 DM 22-349 45 1 1 1 #> 805 FW 31-198 45 0 0 0 #> 806 LB 32-360 90 4 2 4 #> 807 CB 25-167 90 2 1 1 #> 808 CB 26-089 90 2 1 2 #> 809 RB 27-205 90 2 0 1 #> 810 GK 33-237 90 0 0 0 #> 811 FW 32-154 90 1 0 1 #> 812 LM 24-095 77 1 0 1 #> 813 LM 21-139 13 0 0 0 #> 814 CM 28-249 90 2 1 1 #> 815 CM 26-027 88 5 3 2 #> 816 FW,CM 24-029 2 0 0 0 #> 817 RM 21-205 90 3 1 2 #> 818 DM 23-072 67 1 1 1 #> 819 DM,CM 25-000 23 1 0 1 #> 820 LB 28-149 90 1 0 1 #> 821 CB 31-072 90 3 1 3 #> 822 CB 26-348 90 2 2 2 #> 823 RB 25-124 90 2 1 2 #> 824 GK 31-124 89 0 0 0 #> 825 FW 34-252 90 0 0 0 #> 826 LW 22-047 90 0 0 0 #> 827 RW 24-037 57 1 1 1 #> 828 RW 21-231 33 0 0 0 #> 829 LM 32-236 79 1 1 0 #> 830 LM 26-021 11 1 1 1 #> 831 CM 22-213 90 0 0 0 #> 832 RM 36-353 57 0 0 0 #> 833 RM 19-291 33 1 1 1 #> 834 LB 30-065 90 1 1 1 #> 835 CB 29-178 90 1 1 1 #> 836 CB 24-222 90 1 1 1 #> 837 RB 31-058 84 1 1 0 #> 838 RB 30-229 6 0 0 0 #> 839 GK 30-109 90 0 0 0 #> 840 FW 37-009 90 1 1 0 #> 841 FW 29-126 66 0 0 0 #> 842 FW 33-353 24 0 0 0 #> 843 LM,LB 24-116 90 0 0 0 #> 844 CM 34-266 45 1 1 1 #> 845 CM 25-166 45 0 0 0 #> 846 CM 22-037 60 NA 1 NA #> 847 CM 29-318 30 0 0 0 #> 848 RM 27-200 90 1 1 1 #> 849 LB 30-236 60 3 2 1 #> 850 LM 26-348 30 0 0 0 #> 851 CB 29-017 45 0 0 0 #> 852 CB 22-177 45 1 1 1 #> 853 CB 33-137 90 0 0 0 #> 854 RB 30-066 90 3 1 1 #> 855 GK 29-197 90 0 0 0 #> 856 FW 28-075 53 0 0 0 #> 857 FW 25-351 37 1 1 1 #> 858 LW 27-056 87 1 1 0 #> 859 RM,LW 23-348 3 0 0 0 #> 860 RW 20-048 81 0 0 0 #> 861 RW,FW 36-049 9 0 0 0 #> 862 AM,LM 29-253 90 0 0 0 #> 863 DM,CM 29-100 90 2 1 0 #> 864 DM 22-126 87 0 0 0 #> 865 CM,DM 32-097 3 0 0 0 #> 866 LB 29-117 87 2 2 1 #> 867 LB 22-122 3 2 1 2 #> 868 CB 27-217 90 1 1 1 #> 869 CB 23-045 90 4 3 3 #> 870 RB 33-137 90 2 1 1 #> 871 GK 25-079 90 0 0 0 #> 872 FW 25-313 73 1 1 0 #> 873 FW 26-015 17 0 0 0 #> 874 LW,WB 22-249 90 0 0 0 #> 875 RW 27-223 73 0 0 0 #> 876 WB,RW 19-354 17 0 0 0 #> 877 AM 25-239 90 0 0 0 #> 878 DM 22-210 68 NA 0 NA #> 879 DM,CM 20-238 22 0 0 0 #> 880 DM,CM 19-273 90 3 2 1 #> 881 LB 24-281 80 0 0 0 #> 882 FW,LB 20-108 10 0 0 0 #> 883 CB 25-253 90 0 0 0 #> 884 CB 24-206 90 1 1 1 #> 885 RB 23-173 68 0 0 0 #> 886 RB,CB 29-159 22 0 0 0 #> 887 GK 21-334 90 0 0 0 #> 888 FW 22-292 82 0 0 0 #> 889 FW 23-094 8 0 0 0 #> 890 FW 29-310 82 1 0 0 #> 891 FW 27-173 8 0 0 0 #> 892 CM 30-233 90 1 0 0 #> 893 CM 29-195 63 2 1 2 #> 894 CM 31-161 27 0 0 0 #> 895 CM 28-097 63 0 0 0 #> 896 CM 26-290 27 1 1 1 #> 897 LB 27-281 45 2 1 1 #> 898 LB 28-359 45 2 2 2 #> 899 CB 28-220 90 2 2 2 #> 900 CB 33-229 90 1 1 1 #> 901 CB 27-221 90 2 1 2 #> 902 RB 27-211 90 4 1 3 #> 903 GK 29-234 90 0 0 0 #> 904 FW 35-032 90 0 0 0 #> 905 FW 24-198 45 2 1 0 #> 906 FW 22-208 45 0 0 0 #> 907 LM 24-066 66 0 0 0 #> 908 LM,RM 30-242 24 3 3 2 #> 909 CM,DM 23-211 82 0 0 0 #> 910 CM 24-102 8 1 1 1 #> 911 RM,LM 28-099 90 4 2 2 #> 912 DM 27-036 45 0 0 0 #> 913 CM,DM 20-098 45 1 0 0 #> 914 LB 27-287 90 4 4 4 #> 915 CB 25-215 90 2 0 1 #> 916 CB 26-338 90 1 1 1 #> 917 RB 31-072 82 2 2 2 #> 918 RB 23-112 8 2 1 2 #> 919 GK 34-170 90 0 0 0 #> 920 FW 29-130 62 0 0 0 #> 921 FW 33-357 28 0 0 0 #> 922 AM 22-041 73 NA 2 NA #> 923 FW 31-106 17 0 0 0 #> 924 LM 23-069 73 1 1 1 #> 925 CM 29-322 17 0 0 0 #> 926 CM 23-226 90 2 2 0 #> 927 RM 27-204 62 5 4 3 #> 928 RM 30-093 28 0 0 0 #> 929 DM 25-170 62 1 0 1 #> 930 LM,DM 26-286 28 0 0 0 #> 931 LB 30-240 90 4 3 2 #> 932 CB 22-181 90 0 0 0 #> 933 CB 33-141 90 2 1 2 #> 934 RB 30-070 90 1 0 0 #> 935 GK 29-201 90 0 0 0 #> 936 FW 28-132 90 0 0 0 #> 937 FW 21-196 90 2 2 0 #> 938 CM 34-089 72 0 0 0 #> 939 CM 29-270 18 0 0 0 #> 940 CM 31-053 89 2 1 0 #> 941 CM 29-028 1 0 0 0 #> 942 CM 25-245 59 1 0 1 #> 943 CM 31-239 31 1 0 0 #> 944 LB 34-169 90 2 2 0 #> 945 CB 22-328 90 3 3 1 #> 946 CB 30-330 90 2 1 2 #> 947 CB 26-266 90 3 2 2 #> 948 RB 25-053 90 1 1 1 #> 949 GK 26-307 90 0 0 0 #> 950 FW 23-335 77 0 0 0 #> 951 FW 25-201 13 1 0 0 #> 952 LW,RW 22-154 78 1 0 1 #> 953 RW 31-224 12 0 0 0 #> 954 RW 20-227 64 1 0 0 #> 955 LW 27-239 26 0 0 0 #> 956 LM 21-038 89 0 0 0 #> 957 LM 33-054 1 0 0 0 #> 958 CM 25-067 90 3 1 0 #> 959 CM 30-344 90 0 0 0 #> 960 RM 19-131 90 2 2 2 #> 961 CB 31-126 90 2 2 2 #> 962 CB 32-329 89 0 0 0 #> 963 CB 24-124 1 0 0 0 #> 964 CB 23-298 90 1 1 0 #> 965 GK 34-226 90 0 0 0 #> 966 FW 34-258 90 0 0 0 #> 967 LW 22-053 90 3 2 2 #> 968 RW 21-237 79 2 1 0 #> 969 RM 26-027 11 1 1 0 #> 970 LM 19-297 62 1 1 0 #> 971 RM,RW 24-043 28 0 0 0 #> 972 CM 22-219 90 7 4 1 #> 973 RM,LM 36-359 79 2 0 2 #> 974 LM 32-242 11 0 0 0 #> 975 LB 27-087 90 3 1 2 #> 976 CB 30-071 90 0 0 0 #> 977 CB 24-228 90 2 1 1 #> 978 RB 30-235 89 3 0 2 #> 979 RB 29-184 1 0 0 0 #> 980 GK 30-115 90 0 0 0 #> 981 FW 29-229 90 2 1 1 #> 982 LW 29-106 70 0 0 0 #> 983 LM,LW 41-044 20 0 0 0 #> 984 AM,CM,RW 31-199 90 4 2 2 #> 985 AM 29-047 10 0 0 0 #> 986 RW,RM,AM 21-244 80 5 4 2 #> 987 DM 35-340 69 2 1 2 #> 988 FW,DM 30-284 21 0 0 0 #> 989 DM,CM 28-144 90 5 3 3 #> 990 LB 29-087 90 0 0 0 #> 991 CB 25-155 90 2 2 2 #> 992 CB 25-165 90 5 3 3 #> 993 RB 29-182 70 2 0 2 #> 994 RB 26-165 20 1 0 1 #> 995 GK 28-208 90 0 0 0 #> 996 FW 26-272 45 0 0 0 #> 997 FW 25-213 45 1 1 0 #> 998 FW 18-227 70 0 0 0 #> 999 FW 20-250 20 0 0 0 #> 1000 AM 36-238 70 0 0 0 #> 1001 AM 21-091 20 1 0 1 #> 1002 LM 26-073 90 5 3 1 #> 1003 RM 25-239 90 2 1 0 #> 1004 DM 23-213 90 2 2 1 #> 1005 LB 25-018 90 5 3 4 #> 1006 CB 25-296 90 0 0 0 #> 1007 CB 25-157 70 2 1 1 #> 1008 CB 28-159 20 0 0 0 #> 1009 RB 26-030 82 2 1 2 #> 1010 RB 23-086 8 1 0 1 #> 1011 GK 27-163 90 0 0 0 #> 1012 FW 22-297 90 0 0 0 #> 1013 FW 29-315 78 3 2 2 #> 1014 FW 27-178 12 0 0 0 #> 1015 LW 28-364 78 2 1 2 #> 1016 CB,LW 27-077 12 0 0 0 #> 1017 RW 27-216 90 1 1 1 #> 1018 CM 27-286 45 1 1 0 #> 1019 DM 29-200 45 1 1 0 #> 1020 CM 28-102 62 1 0 0 #> 1021 CM 31-166 28 0 0 0 #> 1022 CM,DM 30-238 90 2 1 1 #> 1023 CB,LW 28-225 90 3 0 3 #> 1024 CB 33-234 90 0 0 0 #> 1025 CB 27-226 90 2 2 1 #> 1026 GK 29-239 84 0 0 0 #> 1027 GK 26-228 6 0 0 0 #> 1028 FW 25-094 56 1 1 0 #> 1029 FW 24-332 34 1 0 0 #> 1030 LW 30-135 69 1 1 0 #> 1031 LW 34-200 21 1 1 0 #> 1032 RW 30-183 90 1 1 1 #> 1033 LM 34-177 90 2 2 0 #> 1034 CM 30-291 45 0 0 0 #> 1035 RB 20-217 45 2 1 0 #> 1036 RM 28-059 45 1 1 0 #> 1037 CM 31-000 45 0 0 0 #> 1038 LB 30-310 90 5 2 3 #> 1039 CB 20-088 90 3 2 1 #> 1040 CB 35-040 90 3 3 2 #> 1041 RB,RM 25-245 63 0 0 0 #> 1042 RM 28-288 27 0 0 0 #> 1043 GK 31-151 90 0 0 0 #> 1044 FW 34-013 73 0 0 0 #> 1045 FW 19-307 17 0 0 0 #> 1046 LW 25-111 62 0 0 0 #> 1047 LW 22-186 28 1 1 0 #> 1048 RW 25-263 90 0 0 0 #> 1049 LM 19-282 62 0 0 0 #> 1050 LM 25-114 28 1 0 0 #> 1051 CM 34-049 90 6 4 3 #> 1052 RM 18-029 90 1 1 0 #> 1053 LB 18-320 63 0 0 0 #> 1054 LB 33-166 27 1 1 1 #> 1055 CB 21-237 54 0 0 0 #> 1056 RB 30-208 36 0 0 0 #> 1057 CB 23-180 90 1 1 1 #> 1058 RB,CB 23-295 90 0 0 0 #> 1059 GK 30-126 90 0 0 0 #> 1060 FW 31-044 80 0 0 0 #> 1061 FW 32-283 10 0 0 0 #> 1062 FW 20-281 90 3 2 1 #> 1063 LM 28-073 80 1 1 0 #> 1064 CM,LM 23-349 10 1 0 1 #> 1065 CM 28-047 51 2 2 1 #> 1066 CM 30-204 39 1 1 1 #> 1067 CM 24-114 80 0 0 0 #> 1068 LM,CM 20-261 10 1 1 1 #> 1069 RM 28-210 71 2 1 2 #> 1070 RM 29-052 19 1 0 0 #> 1071 LB 30-038 90 2 0 1 #> 1072 CB 28-202 90 1 1 1 #> 1073 CB 30-213 90 0 0 0 #> 1074 RB 27-223 90 1 1 1 #> 1075 GK 29-091 90 0 0 0 #> 1076 FW 21-206 80 0 0 0 #> 1077 FW 36-206 10 0 0 0 #> 1078 LW 29-312 90 1 1 1 #> 1079 RW 31-158 45 0 0 0 #> 1080 RW 27-251 45 0 0 0 #> 1081 AM 34-131 90 3 3 1 #> 1082 DM 28-015 71 3 2 2 #> 1083 DM 25-334 19 0 0 0 #> 1084 DM 28-172 90 1 1 1 #> 1085 LB 23-021 89 4 2 3 #> 1086 LB 24-147 1 0 0 0 #> 1087 CB 27-311 90 1 1 0 #> 1088 CB 31-107 90 0 0 0 #> 1089 RB 30-246 90 1 1 1 #> 1090 GK 28-253 90 0 0 0 #> 1091 FW,RW 28-081 70 1 0 0 #> 1092 AM 36-055 20 0 0 0 #> 1093 LW,RW 27-062 90 1 0 1 #> 1094 RW 20-054 55 2 1 1 #> 1095 FW 25-357 35 1 1 1 #> 1096 AM,LW 29-259 90 0 0 0 #> 1097 DM 29-106 90 5 3 3 #> 1098 DM 22-132 70 0 0 0 #> 1099 DM 21-293 20 1 0 0 #> 1100 LB 29-123 83 1 0 1 #> 1101 LB 23-354 7 0 0 0 #> 1102 CB 27-223 90 1 0 0 #> 1103 CB 23-051 90 1 1 1 #> 1104 RB 33-143 90 0 0 0 #> 1105 GK 25-085 90 0 0 0 #> 1106 FW 32-161 90 0 0 0 #> 1107 LW,LM 31-091 85 0 0 0 #> 1108 LM 24-036 5 0 0 0 #> 1109 RW 24-102 70 0 0 0 #> 1110 RM,RW 26-200 20 0 0 0 #> 1111 LM,CM 28-256 90 1 1 0 #> 1112 CM 26-034 45 2 1 2 #> 1113 CM 25-007 15 0 0 0 #> 1114 CB,CM 17-213 30 0 0 0 #> 1115 RM,CM 23-079 90 4 2 3 #> 1116 LB,CB 28-156 90 3 3 3 #> 1117 CB 31-079 90 1 0 1 #> 1118 CB 26-355 70 3 3 3 #> 1119 LB,CB 18-357 20 1 1 1 #> 1120 RB 25-131 90 1 0 1 #> 1121 GK 24-144 90 0 0 0 #> 1122 FW 21-076 45 1 1 0 #> 1123 FW 35-043 45 0 0 0 #> 1124 FW 30-150 64 2 1 0 #> 1125 FW,LM 21-046 26 0 0 0 #> 1126 LM,FW 26-148 78 6 4 2 #> 1127 LM 31-114 12 1 1 0 #> 1128 CM 33-141 90 1 0 0 #> 1129 CM 34-055 90 1 1 0 #> 1130 RM 19-319 64 3 3 1 #> 1131 RM 23-105 26 0 0 0 #> 1132 LB 26-148 90 3 2 1 #> 1133 CB 25-231 90 1 0 0 #> 1134 CB 37-000 90 2 2 1 #> 1135 RB 31-214 78 0 0 0 #> 1136 RB 30-317 12 0 0 0 #> 1137 GK 30-107 90 0 0 0 #> 1138 FW 25-159 56 0 0 0 #> 1139 FW 31-244 34 0 0 0 #> 1140 FW 26-188 56 2 1 0 #> 1141 FW,LM 29-346 34 1 1 0 #> 1142 LM 23-135 69 3 1 2 #> 1143 FW,LM 22-290 21 0 0 0 #> 1144 CM 25-248 45 0 0 0 #> 1145 CM 27-260 45 1 0 0 #> 1146 CM 29-214 90 0 0 0 #> 1147 RM 25-274 70 2 0 1 #> 1148 RM 32-275 20 0 0 0 #> 1149 LB 30-195 90 5 1 5 #> 1150 CB 31-354 90 1 1 0 #> 1151 CB 30-019 90 1 0 0 #> 1152 RB 29-085 90 3 2 1 #> 1153 GK 30-204 90 0 0 0 #> 1154 FW 25-319 23 0 0 0 #> 1155 FW 22-298 67 0 0 0 #> 1156 LW 22-255 90 0 0 0 #> 1157 RW 27-229 69 2 1 0 #> 1158 LM,RW 19-228 18 0 0 0 #> 1159 LM 20-244 69 1 1 1 #> 1160 RM,LM 22-097 21 0 0 0 #> 1161 CM 22-216 90 NA 0 NA #> 1162 RM,RW 19-279 90 0 0 0 #> 1163 LB 24-287 69 1 1 0 #> 1164 LB 29-165 21 1 1 0 #> 1165 CB 25-259 73 2 2 1 #> 1166 CB 18-069 17 0 0 0 #> 1167 CB 24-212 90 2 1 2 #> 1168 RB 23-179 90 1 1 1 #> 1169 GK 21-340 90 0 0 0 #> 1170 FW 25-152 90 0 0 0 #> 1171 FW 25-117 76 0 0 0 #> 1172 FW 33-315 14 0 0 0 #> 1173 LM 30-106 45 1 0 0 #> 1174 CM 27-221 45 0 0 0 #> 1175 CM 25-225 45 0 0 0 #> 1176 CB 22-164 45 1 1 1 #> 1177 CM 26-339 89 1 0 0 #> 1178 RM 24-242 45 0 0 0 #> 1179 CM 27-003 45 0 0 0 #> 1180 LB 28-173 90 0 0 0 #> 1181 CB 27-178 90 0 0 0 #> 1182 CB 30-247 28 0 0 0 #> 1183 CB 32-105 62 0 0 0 #> 1184 RB 24-063 90 3 1 3 #> 1185 GK 29-153 90 0 0 0 #> 1186 FW 31-099 65 1 1 0 #> 1187 FW 26-203 25 0 0 0 #> 1188 LW 31-206 58 0 0 0 #> 1189 RW 21-308 32 1 0 1 #> 1190 RW,LW 29-347 77 1 0 0 #> 1191 LW 33-242 13 0 0 0 #> 1192 LM,RM 25-203 90 3 2 0 #> 1193 CM 33-090 77 2 1 2 #> 1194 LM 27-205 13 0 0 0 #> 1195 RM 26-127 65 1 0 0 #> 1196 CM,RM 22-357 25 3 0 1 #> 1197 LB 33-003 90 1 1 0 #> 1198 CB 25-175 90 0 0 0 #> 1199 CB 26-097 90 2 2 0 #> 1200 RB 27-213 90 5 1 2 #> 1201 GK 33-069 90 0 0 0 #> 1202 FW 32-356 58 2 1 0 #> 1203 LW,AM 30-121 32 0 0 0 #> 1204 LW,RW 21-190 83 0 0 0 #> 1205 AM,RW 32-084 7 2 2 1 #> 1206 RW,FW,LW 30-010 76 1 0 0 #> 1207 FW 19-032 14 0 0 0 #> 1208 AM,CM 25-171 90 3 0 1 #> 1209 DM,CM 21-282 90 3 1 2 #> 1210 DM 30-159 75 0 0 0 #> 1211 CB,DM 18-236 15 0 0 0 #> 1212 LB,WB 24-263 90 0 0 0 #> 1213 CB 26-136 90 0 0 0 #> 1214 CB 28-306 90 0 0 0 #> 1215 RB,WB 23-195 90 1 1 1 #> 1216 GK 32-087 90 0 0 0 #> 1217 FW 23-341 89 1 0 1 #> 1218 CB,FW 24-130 1 0 0 0 #> 1219 AM,LW 20-233 73 1 1 1 #> 1220 LW,LM 27-245 17 2 2 0 #> 1221 AM 22-160 58 2 0 0 #> 1222 AM,FW 31-230 32 0 0 0 #> 1223 CM,DM 25-073 90 4 0 2 #> 1224 CM,DM 30-350 90 2 2 0 #> 1225 WB,LB 21-044 90 3 2 2 #> 1226 WB,RB 19-137 73 2 1 2 #> 1227 RB 20-098 17 3 3 3 #> 1228 CB 31-132 90 0 0 0 #> 1229 CB 33-060 58 0 0 0 #> 1230 RW,RM 25-207 32 2 1 1 #> 1231 CB 23-304 90 1 0 0 #> 1232 GK 34-232 90 0 0 0 #> 1233 FW 31-103 5 0 0 0 #> 1234 FW 26-207 85 0 0 0 #> 1235 LM 27-237 45 0 0 0 #> 1236 LM 31-210 45 1 1 0 #> 1237 CM 22-361 90 5 4 1 #> 1238 CM 25-207 75 1 0 0 #> 1239 CM 26-131 15 1 1 1 #> 1240 RM 21-312 75 0 0 0 #> 1241 RM 26-213 15 0 0 0 #> 1242 DM 33-094 90 1 0 1 #> 1243 LB 28-050 90 0 0 0 #> 1244 CB 25-179 90 1 1 1 #> 1245 CB 26-101 90 0 0 0 #> 1246 RB 27-217 27 3 2 1 #> 1247 RB 17-346 63 3 2 2 #> 1248 GK 33-073 90 0 0 0 #> 1249 FW 21-212 68 1 1 0 #> 1250 FW 28-178 22 0 0 0 #> 1251 LW 29-318 90 1 1 1 #> 1252 RW 27-257 75 1 0 0 #> 1253 RW 24-278 15 1 1 1 #> 1254 AM 34-137 75 1 1 0 #> 1255 AM 26-315 15 0 0 0 #> 1256 DM 28-021 86 7 2 1 #> 1257 DM 26-179 4 0 0 0 #> 1258 DM 25-340 68 1 1 1 #> 1259 DM 36-212 22 0 0 0 #> 1260 LB 23-027 90 0 0 0 #> 1261 CB 27-317 90 1 0 1 #> 1262 CB 31-113 90 0 0 0 #> 1263 RB 30-252 90 2 1 1 #> 1264 GK 28-259 90 0 0 0 #> 1265 FW 22-304 63 2 0 0 #> 1266 FW 23-128 27 0 0 0 #> 1267 LW 22-261 90 0 0 0 #> 1268 RW 27-235 90 0 0 0 #> 1269 AM,DM 19-285 90 3 3 2 #> 1270 DM 20-250 55 0 0 0 #> 1271 AM 25-325 35 0 0 0 #> 1272 DM 22-222 76 NA 1 NA #> 1273 DM 22-103 14 2 0 2 #> 1274 LB 27-108 63 2 1 2 #> 1275 LB 24-293 27 0 0 0 #> 1276 CB 25-265 90 2 1 2 #> 1277 CB 31-288 90 2 1 2 #> 1278 RB 23-185 90 2 1 2 #> 1279 GK 21-346 90 0 0 0 #> 1280 FW 32-167 90 0 0 0 #> 1281 LW,FW 31-097 90 0 0 0 #> 1282 RW,LM 24-108 87 0 0 0 #> 1283 RB 21-152 3 1 1 0 #> 1284 AM,CM 28-262 90 3 2 0 #> 1285 DM,CM,RM 23-085 90 2 2 0 #> 1286 DM 26-040 58 1 0 0 #> 1287 RM,RW 24-042 32 2 1 1 #> 1288 LB 28-162 90 1 1 0 #> 1289 CB 31-085 90 0 0 0 #> 1290 CB 30-166 90 0 0 0 #> 1291 RB 25-137 75 1 1 1 #> 1292 RB 21-218 12 0 0 0 #> 1293 LM 18-363 3 0 0 0 #> 1294 GK 24-150 90 0 0 0 #> 1295 FW 30-190 83 3 1 1 #> 1296 LW 27-304 66 2 2 1 #> 1297 CB 20-095 24 0 0 0 #> 1298 RW,FW 25-101 90 0 0 0 #> 1299 AM 30-142 90 6 3 3 #> 1300 DM,CM 35-047 90 2 2 2 #> 1301 DM,CM 28-066 72 2 2 1 #> 1302 CM 34-184 18 0 0 0 #> 1303 LB 30-317 45 0 0 0 #> 1304 WB,LB 29-269 45 0 0 0 #> 1305 CB 20-140 66 0 0 0 #> 1306 CB 27-282 24 0 0 0 #> 1307 CB 30-298 90 0 0 0 #> 1308 RB,WB 20-224 72 3 2 2 #> 1309 WB 36-293 18 0 0 0 #> 1310 GK 31-158 90 0 0 0 #> 1311 FW 34-000 71 1 1 0 #> 1312 LW,FW 26-360 19 1 0 0 #> 1313 LW,RW 23-077 90 1 1 1 #> 1314 RW 27-212 59 4 3 3 #> 1315 AM,RW 26-294 31 0 0 0 #> 1316 AM,RW 30-101 71 0 0 0 #> 1317 FW,RW 37-021 19 0 0 0 #> 1318 DM 25-178 71 1 1 1 #> 1319 DM 31-132 19 0 0 0 #> 1320 DM 29-330 58 1 1 1 #> 1321 DM 23-234 32 0 0 0 #> 1322 LB 30-248 90 4 3 3 #> 1323 CB 24-074 90 0 0 0 #> 1324 CB 33-149 90 0 0 0 #> 1325 RB 30-078 90 4 2 3 #> 1326 GK 29-209 90 0 0 0 #> 1327 FW 28-209 56 0 0 0 #> 1328 FW 34-020 34 0 0 0 #> 1329 LW 22-193 56 0 0 0 #> 1330 LW 25-118 34 0 0 0 #> 1331 RW 25-270 71 2 1 1 #> 1332 RW 19-314 19 0 0 0 #> 1333 LM 18-036 56 0 0 0 #> 1334 LM 19-289 34 0 0 0 #> 1335 CM 34-056 90 5 1 2 #> 1336 RM 25-121 90 0 0 0 #> 1337 LB 18-327 77 2 1 1 #> 1338 LB 31-256 13 0 0 0 #> 1339 CB 35-220 90 0 0 0 #> 1340 CB 23-187 90 0 0 0 #> 1341 RB 27-175 90 0 0 0 #> 1342 GK 30-133 90 0 0 0 #> 1343 FW 29-322 62 1 1 1 #> 1344 FW,CM,RM 31-173 28 1 1 1 #> 1345 FW 27-185 62 1 0 0 #> 1346 FW,LM 22-304 28 0 0 0 #> 1347 CM 26-302 45 0 0 0 #> 1348 CM 30-245 45 1 1 0 #> 1349 CM 29-207 90 5 2 1 #> 1350 CM 28-109 75 2 1 1 #> 1351 FW,CM 23-106 15 0 0 0 #> 1352 LB 29-006 84 1 1 0 #> 1353 LB,LM 27-293 6 0 0 0 #> 1354 CB 28-232 90 2 2 1 #> 1355 CB 27-084 90 0 0 0 #> 1356 CB 33-241 90 0 0 0 #> 1357 RB 24-157 90 1 1 0 #> 1358 GK 26-235 90 0 0 0 #> 1359 FW 22-216 90 1 0 0 #> 1360 FW 35-040 90 0 0 0 #> 1361 LM 28-107 90 1 1 0 #> 1362 CM 23-219 90 1 1 0 #> 1363 RM 24-206 51 1 0 0 #> 1364 RM 20-106 39 1 1 0 #> 1365 DM 27-044 63 3 2 0 #> 1366 DM 30-250 27 1 1 0 #> 1367 LB 27-295 90 1 0 1 #> 1368 CB 25-223 90 0 0 0 #> 1369 CB 26-346 90 3 2 2 #> 1370 RB 31-080 90 0 0 0 #> 1371 GK 34-178 90 0 0 0 #> 1372 FW 31-247 58 0 0 0 #> 1373 RM 37-002 32 1 0 0 #> 1374 LW 22-061 90 1 1 0 #> 1375 RW,FW 21-245 90 0 0 0 #> 1376 LM 26-035 68 3 2 0 #> 1377 LM 19-305 22 0 0 0 #> 1378 CM 32-250 90 2 2 0 #> 1379 RM,RW 24-051 90 1 1 0 #> 1380 LB 27-095 58 0 0 0 #> 1381 CB 32-236 32 0 0 0 #> 1382 CB,LB 30-079 90 0 0 0 #> 1383 CB 29-192 90 0 0 0 #> 1384 RB 31-072 70 4 1 2 #> 1385 RB 30-243 20 0 0 0 #> 1386 GK 30-123 90 0 0 0 #> 1387 FW 21-204 77 2 0 2 #> 1388 FW 31-254 13 0 0 0 #> 1389 FW 28-140 77 0 0 0 #> 1390 FW 29-278 13 0 0 0 #> 1391 CM 29-036 58 5 3 3 #> 1392 CM 25-253 32 0 0 0 #> 1393 CM 31-061 52 2 1 2 #> 1394 CM 26-232 38 1 0 1 #> 1395 CM 34-097 58 2 0 1 #> 1396 CM 31-247 32 1 1 0 #> 1397 LB 34-177 90 0 0 0 #> 1398 CB 29-167 90 1 1 0 #> 1399 CB 30-338 90 2 1 2 #> 1400 CB 26-274 90 0 0 0 #> 1401 RB 25-061 90 4 3 4 #> 1402 GK 26-315 90 0 0 0 #> 1403 FW 26-195 90 3 1 0 #> 1404 LW,RM 29-353 90 0 0 0 #> 1405 RW 23-142 45 1 0 0 #> 1406 RW,LM 32-319 45 0 0 0 #> 1407 AM,CM 22-297 90 0 0 0 #> 1408 DM 27-267 71 1 1 0 #> 1409 CM 25-255 19 0 0 0 #> 1410 DM 29-221 37 2 0 1 #> 1411 DM,FW 25-166 53 2 2 0 #> 1412 LB 22-243 90 5 4 1 #> 1413 CB 31-361 90 2 1 1 #> 1414 CB 30-026 45 0 0 0 #> 1415 CB 22-012 45 1 0 1 #> 1416 RB 25-029 65 1 0 1 #> 1417 RB 32-282 25 0 0 0 #> 1418 GK 30-211 90 0 0 0 #> 1419 FW 28-088 77 0 0 0 #> 1420 LW 23-361 13 0 0 0 #> 1421 LW,RW 27-069 90 5 3 1 #> 1422 RW 20-061 63 0 0 0 #> 1423 DM,RW 23-250 27 0 0 0 #> 1424 AM 29-266 77 1 1 0 #> 1425 FW 25-364 13 0 0 0 #> 1426 DM 32-110 71 0 0 0 #> 1427 DM 29-113 19 1 1 0 #> 1428 DM 22-139 63 1 0 1 #> 1429 AM,DM 36-062 27 0 0 0 #> 1430 LB 29-130 90 3 1 3 #> 1431 CB 31-117 90 1 0 1 #> 1432 CB 23-058 90 2 0 1 #> 1433 RB 33-150 90 1 0 1 #> 1434 GK 25-092 90 0 0 0 #> 1435 FW 25-159 69 0 0 0 #> 1436 FW 27-010 21 0 0 0 #> 1437 FW 25-124 90 0 0 0 #> 1438 CM 27-228 90 2 0 1 #> 1439 CM 23-080 59 4 3 3 #> 1440 CM 25-232 31 1 0 0 #> 1441 CM 24-249 69 1 1 0 #> 1442 CM 30-113 21 0 0 0 #> 1443 LB 28-180 51 1 1 0 #> 1444 LB 24-070 39 0 0 0 #> 1445 CB 22-171 90 2 1 1 #> 1446 CB 32-112 90 0 0 0 #> 1447 CB 27-185 90 3 3 2 #> 1448 RB 34-137 90 4 3 0 #> 1449 GK 29-160 90 0 0 0 #> 1450 FW 26-280 81 0 0 0 #> 1451 FW 19-357 9 0 0 0 #> 1452 FW 25-221 37 0 0 0 #> 1453 FW 18-235 53 2 0 2 #> 1454 AM 21-099 45 3 2 1 #> 1455 RM 25-247 45 2 0 1 #> 1456 LM 20-223 45 1 1 1 #> 1457 AM 36-246 45 0 0 0 #> 1458 LM,RM 26-081 90 0 0 0 #> 1459 DM 23-221 90 4 1 0 #> 1460 LB 25-026 90 1 0 1 #> 1461 CB 21-246 90 2 1 2 #> 1462 CB 25-165 90 2 2 1 #> 1463 RB 23-094 69 1 1 0 #> 1464 RB 26-038 21 0 0 0 #> 1465 GK 27-171 90 0 0 0 #> 1466 FW 29-237 88 0 0 0 #> 1467 FW 30-292 2 0 0 0 #> 1468 LW 22-118 68 0 0 0 #> 1469 LW,RM 26-173 22 0 0 0 #> 1470 RW 21-252 83 2 2 0 #> 1471 LM 35-348 7 0 0 0 #> 1472 AM,FW 31-207 90 0 0 0 #> 1473 DM,CM 30-157 90 3 3 2 #> 1474 DM,CM 28-152 90 0 0 0 #> 1475 LB 29-095 90 3 3 2 #> 1476 CB 25-173 90 2 1 1 #> 1477 CB 31-076 90 3 1 2 #> 1478 RB 29-190 90 3 2 2 #> 1479 GK 28-216 90 0 0 0 #> 1480 FW 21-083 77 1 1 1 #> 1481 FW 35-050 13 0 0 0 #> 1482 FW 30-157 53 1 1 0 #> 1483 FW 21-053 37 0 0 0 #> 1484 LM 26-155 90 3 2 0 #> 1485 CM 33-148 90 2 1 2 #> 1486 CM 34-062 70 1 1 1 #> 1487 CM 31-121 20 0 0 0 #> 1488 RM 19-326 53 2 2 2 #> 1489 RM 23-112 37 0 0 0 #> 1490 LB 26-155 70 4 4 2 #> 1491 LB 30-021 20 0 0 0 #> 1492 CB 25-238 90 0 0 0 #> 1493 CB 37-007 90 3 1 1 #> 1494 RB 31-221 90 0 0 0 #> 1495 GK 30-114 90 0 0 0 #> 1496 FW 32-363 59 1 1 1 #> 1497 FW 20-344 31 0 0 0 #> 1498 LW 30-128 45 1 0 1 #> 1499 RM 21-245 45 0 0 0 #> 1500 LW,RW 21-197 89 0 0 0 #> 1501 LW 19-039 1 0 0 0 #> 1502 CM,LM 21-289 90 5 4 3 #> 1503 CM 30-189 45 1 1 1 #> 1504 RW 32-091 45 0 0 0 #> 1505 RM,LM 25-178 70 2 2 0 #> 1506 LM 20-184 20 0 0 0 #> 1507 LB 24-270 90 1 1 1 #> 1508 CB 26-143 90 0 0 0 #> 1509 CB 28-313 90 2 1 2 #> 1510 RB 23-202 90 0 0 0 #> 1511 GK 32-094 90 0 0 0 #> 1512 FW 31-052 72 0 0 0 #> 1513 LW 20-269 18 0 0 0 #> 1514 LW,RW 28-081 88 2 2 2 #> 1515 RW 25-164 2 0 0 0 #> 1516 RW 28-218 73 0 0 0 #> 1517 FW 32-291 17 0 0 0 #> 1518 AM 29-060 72 0 0 0 #> 1519 DM 24-122 18 0 0 0 #> 1520 DM,AM 30-212 84 2 2 1 #> 1521 AM 23-357 6 0 0 0 #> 1522 DM 28-055 90 3 1 2 #> 1523 LB 30-046 90 1 1 1 #> 1524 CB 28-210 90 0 0 0 #> 1525 CB 30-221 90 0 0 0 #> 1526 RB 27-231 90 7 5 4 #> 1527 GK 29-099 90 0 0 0 #> 1528 FW 26-214 89 0 0 0 #> 1529 FW,RW 31-110 1 0 0 0 #> 1530 LW 31-217 67 5 3 0 #> 1531 LW 27-216 23 0 0 0 #> 1532 RW 21-319 81 4 3 1 #> 1533 RW,FW 33-253 9 0 0 0 #> 1534 LM 25-214 90 2 0 1 #> 1535 CM 33-101 81 2 2 1 #> 1536 CM 26-339 9 1 1 1 #> 1537 RM 23-003 66 2 0 1 #> 1538 RM 29-358 24 0 0 0 #> 1539 LB 28-057 90 1 1 0 #> 1540 CB 25-186 90 2 0 2 #> 1541 CB 26-108 90 0 0 0 #> 1542 RB 17-353 90 2 2 1 #> 1543 GK 33-080 90 0 0 0 #> 1544 FW 34-006 90 1 0 1 #> 1545 LW 23-083 45 0 0 0 #> 1546 DM 31-138 45 2 1 1 #> 1547 RW 27-218 70 0 0 0 #> 1548 RW 37-027 20 0 0 0 #> 1549 LW,AM 30-107 90 2 1 0 #> 1550 DM,AM 29-336 60 0 0 0 #> 1551 AM 26-300 30 2 2 0 #> 1552 DM 25-184 56 0 0 0 #> 1553 DM 34-284 34 1 0 1 #> 1554 LB 30-254 90 4 3 3 #> 1555 CB 22-195 90 0 0 0 #> 1556 CB 33-155 90 0 0 0 #> 1557 RB 29-146 70 5 3 4 #> 1558 RB 30-084 20 1 1 1 #> 1559 GK 29-215 90 0 0 0 #> 1560 FW 28-146 82 0 0 0 #> 1561 FW 35-144 8 0 0 0 #> 1562 FW 21-210 90 0 0 0 #> 1563 CM 31-253 66 1 0 1 #> 1564 CM 26-238 24 1 1 0 #> 1565 CM 29-042 82 3 3 2 #> 1566 CM 29-284 8 0 0 0 #> 1567 CM 25-259 58 0 0 0 #> 1568 CM 34-103 32 1 0 0 #> 1569 LB 34-183 90 2 1 0 #> 1570 CB 22-342 90 2 2 1 #> 1571 CB 30-344 90 0 0 0 #> 1572 CB 26-280 90 0 0 0 #> 1573 RB 25-067 90 0 0 0 #> 1574 GK 26-321 90 0 0 0 #> 1575 FW 21-202 90 3 2 1 #> 1576 FW 20-349 71 0 0 0 #> 1577 FW 33-003 19 0 0 0 #> 1578 CM 20-189 61 0 0 0 #> 1579 CM 28-258 29 1 0 0 #> 1580 CM 21-294 90 4 2 3 #> 1581 CM 25-183 71 1 0 1 #> 1582 CM 32-096 19 0 0 0 #> 1583 LB 24-275 90 3 1 1 #> 1584 CB 26-148 90 3 3 1 #> 1585 CB 28-318 90 2 2 1 #> 1586 CB 23-199 84 0 0 0 #> 1587 CB 30-133 6 0 0 0 #> 1588 RB 23-207 45 1 1 0 #> 1589 RB 21-250 45 0 0 0 #> 1590 GK 32-099 90 0 0 0 #> 1591 FW 34-027 71 0 0 0 #> 1592 FW 22-200 19 0 0 0 #> 1593 LW 28-216 58 1 1 1 #> 1594 LW 19-321 32 0 0 0 #> 1595 RW 25-125 59 0 0 0 #> 1596 RW 25-277 31 1 1 0 #> 1597 LM 19-296 90 0 0 0 #> 1598 CM 25-128 90 5 3 1 #> 1599 RM 25-272 45 0 0 0 #> 1600 RM 18-043 45 1 1 0 #> 1601 LB 18-334 90 0 0 0 #> 1602 CB 21-251 58 2 0 1 #> 1603 RB 27-182 32 1 0 0 #> 1604 CB 23-194 90 1 1 0 #> 1605 RB,CB 23-309 90 2 1 0 #> 1606 GK 30-140 90 0 0 0 #> 1607 FW 26-201 67 0 0 0 #> 1608 RB 32-288 23 0 0 0 #> 1609 LM 32-325 52 1 1 1 #> 1610 CM 22-303 38 0 0 0 #> 1611 CM 27-273 90 1 1 0 #> 1612 CM 25-261 52 3 1 1 #> 1613 CM 22-249 38 2 2 2 #> 1614 RM,RB 25-287 67 2 2 2 #> 1615 FW 25-172 23 0 0 0 #> 1616 LB 30-208 90 1 1 1 #> 1617 CB 32-002 76 1 0 1 #> 1618 CB 27-232 14 0 0 0 #> 1619 CB 33-331 13 0 0 0 #> 1620 CB 22-018 90 0 0 0 #> 1621 RB,CB 29-098 90 2 1 1 #> 1622 GK 30-217 90 1 0 1 #> 1623 FW 35-215 71 0 0 0 #> 1624 RW 23-135 19 0 0 0 #> 1625 LW 22-268 90 1 0 0 #> 1626 RW 27-242 70 2 0 2 #> 1627 FW 25-332 20 0 0 0 #> 1628 LM 19-241 66 1 1 0 #> 1629 LM 20-257 24 0 0 0 #> 1630 CM 22-229 90 NA 0 NA #> 1631 RM 22-110 90 2 1 0 #> 1632 LB 27-115 83 3 0 2 #> 1633 LB 24-300 7 0 0 0 #> 1634 CB 25-272 90 1 1 1 #> 1635 CB 24-225 83 1 0 0 #> 1636 CB 31-295 7 0 0 0 #> 1637 RB 23-192 90 5 4 3 #> 1638 GK 21-353 90 0 0 0 #> 1639 FW 22-223 82 0 0 0 #> 1640 CM 24-117 8 2 1 1 #> 1641 FW 35-047 90 0 0 0 #> 1642 LM 28-114 58 4 2 2 #> 1643 CM 23-226 56 1 0 0 #> 1644 RM 24-213 34 2 1 1 #> 1645 RM 24-081 56 0 0 0 #> 1646 LM,CM 20-113 34 0 0 0 #> 1647 DM 27-051 90 3 1 2 #> 1648 LB 27-302 90 4 2 3 #> 1649 CB 25-230 90 2 2 2 #> 1650 CB 26-353 90 0 0 0 #> 1651 RB 31-087 90 2 0 2 #> 1652 GK 34-185 90 0 0 0 #> 1653 FW 28-094 89 1 0 0 #> 1654 FW 36-068 1 0 0 0 #> 1655 LW 27-075 89 0 0 0 #> 1656 LB,LW 22-141 1 0 0 0 #> 1657 RW 20-067 79 3 0 2 #> 1658 AM 23-256 11 0 0 0 #> 1659 AM 29-272 78 1 1 0 #> 1660 RW 24-002 12 0 0 0 #> 1661 DM 32-116 90 0 0 0 #> 1662 DM 22-145 64 1 1 0 #> 1663 DM 33-034 26 2 1 2 #> 1664 LB,LW 29-136 90 1 1 0 #> 1665 CB 31-123 90 0 0 0 #> 1666 CB 27-236 90 0 0 0 #> 1667 RB 33-156 90 3 2 0 #> 1668 GK 25-098 90 0 0 0 #> 1669 FW 21-219 78 1 1 1 #> 1670 FW 36-219 12 1 1 0 #> 1671 LW 29-325 90 2 1 0 #> 1672 RW 27-264 90 1 0 1 #> 1673 AM 34-144 89 0 0 0 #> 1674 AM 32-067 1 0 0 0 #> 1675 DM 25-347 68 1 1 0 #> 1676 DM 26-322 22 2 1 1 #> 1677 DM 28-028 45 5 1 1 #> 1678 DM 28-185 45 1 1 1 #> 1679 LB 23-034 90 0 0 0 #> 1680 CB 27-324 90 0 0 0 #> 1681 CB 31-120 78 1 1 0 #> 1682 CB 24-103 12 0 0 0 #> 1683 RB 30-259 90 1 1 0 #> 1684 GK 28-266 90 0 0 0 #> 1685 FW 31-058 76 0 0 0 #> 1686 FW 32-297 14 0 0 0 #> 1687 LW,RW 28-087 90 0 0 0 #> 1688 RW 28-224 42 0 0 0 #> 1689 AM,RW 29-066 56 1 1 0 #> 1690 LW 20-275 34 1 1 1 #> 1691 DM 30-218 67 3 2 2 #> 1692 DM 24-128 23 0 0 0 #> 1693 DM 28-061 90 1 1 0 #> 1694 LB,CB 30-052 90 1 1 1 #> 1695 CB 28-216 76 0 0 0 #> 1696 LB 22-025 14 0 0 0 #> 1697 CB 30-227 90 2 1 1 #> 1698 RB 27-237 56 1 1 0 #> 1699 RB 31-062 34 1 1 0 #> 1700 GK 29-105 90 0 0 0 #> 1701 FW 25-131 81 0 0 0 #> 1702 FW 33-329 9 0 0 0 #> 1703 FW 25-166 62 0 0 0 #> 1704 FW 27-017 28 0 0 0 #> 1705 CM 27-235 62 1 0 0 #> 1706 CM 27-346 27 1 0 1 #> 1707 CM 26-353 90 0 0 0 #> 1708 CM 24-256 89 2 1 1 #> 1709 CM 25-239 1 0 0 0 #> 1710 LB 24-077 90 1 1 0 #> 1711 CB 22-178 89 1 1 1 #> 1712 CB 22-155 1 0 0 0 #> 1713 CB 32-119 90 1 1 1 #> 1714 CB 27-192 90 1 1 1 #> 1715 RB 34-144 90 1 1 1 #> 1716 GK 29-167 90 0 0 0 #> 1717 FW 21-090 81 0 0 0 #> 1718 FW,LM 35-057 9 1 1 1 #> 1719 FW 26-162 30 5 5 1 #> 1720 LM,FW 21-060 60 1 0 1 #> 1721 LM 31-128 59 1 1 0 #> 1722 FW 25-230 31 1 1 1 #> 1723 CM 33-155 90 3 1 1 #> 1724 CM 34-069 90 0 0 0 #> 1725 RM 23-119 58 3 2 1 #> 1726 RM 19-333 32 0 0 0 #> 1727 LB 26-162 81 3 3 1 #> 1728 LB 30-028 9 0 0 0 #> 1729 CB 25-245 90 1 1 0 #> 1730 CB 37-014 90 1 1 0 #> 1731 RB 31-228 90 0 0 0 #> 1732 GK 30-121 90 0 0 0 #> 1733 FW 25-092 90 1 0 0 #> 1734 LW 27-312 82 2 2 0 #> 1735 LW 34-215 8 0 0 0 #> 1736 RW,RB 36-301 90 0 0 0 #> 1737 AM 30-150 90 1 0 0 #> 1738 DM 35-055 45 2 0 1 #> 1739 CB,DM 20-103 45 0 0 0 #> 1740 DM 28-074 90 2 0 1 #> 1741 LB 30-325 68 1 0 1 #> 1742 LB 29-277 22 0 0 0 #> 1743 CB 20-148 90 0 0 0 #> 1744 CB,DM 30-306 90 2 2 1 #> 1745 RB 20-232 68 1 1 1 #> 1746 RW 28-303 22 1 1 0 #> 1747 GK 31-166 45 0 0 0 #> 1748 GK 30-237 45 0 0 0 #> 1749 FW 29-244 90 1 0 0 #> 1750 LW,RW 22-125 90 0 0 0 #> 1751 RW 21-259 64 1 0 0 #> 1752 LW 30-299 26 0 0 0 #> 1753 AM 31-214 79 0 0 0 #> 1754 DM 24-272 11 1 0 1 #> 1755 DM,AM 30-164 90 2 1 0 #> 1756 DM 28-159 90 4 2 1 #> 1757 LB 29-102 90 0 0 0 #> 1758 CB 25-180 90 2 2 0 #> 1759 CB 31-083 79 1 1 0 #> 1760 CB 25-170 11 0 0 0 #> 1761 RB 31-157 54 2 0 1 #> 1762 RB 26-180 36 4 2 4 #> 1763 GK 28-223 90 1 0 1 #> 1764 FW 23-350 69 1 1 0 #> 1765 LW,FW 25-216 21 0 0 0 #> 1766 AM 22-169 69 1 0 0 #> 1767 AM 31-239 21 0 0 0 #> 1768 AM,FW 20-242 90 1 0 0 #> 1769 CM,DM 25-082 88 0 0 0 #> 1770 DM 17-103 2 0 0 0 #> 1771 CM,DM 30-359 90 10 6 6 #> 1772 WB,LB 21-053 90 3 0 1 #> 1773 WB,RB 19-146 88 2 0 1 #> 1774 RB 20-107 2 0 0 0 #> 1775 CB 31-141 90 2 1 0 #> 1776 CB 33-069 79 1 0 1 #> 1777 RW 27-254 11 0 0 0 #> 1778 CB 23-313 90 1 1 1 #> 1779 GK 34-241 90 0 0 0 #> 1780 FW 21-106 80 3 2 0 #> 1781 FW 20-230 10 0 0 0 #> 1782 FW 26-287 90 0 0 0 #> 1783 LM 26-088 90 0 0 0 #> 1784 CM 36-253 81 0 0 0 #> 1785 CM 18-242 9 0 0 0 #> 1786 RM 25-254 88 3 1 0 #> 1787 RM 25-172 2 0 0 0 #> 1788 DM 23-228 90 1 0 0 #> 1789 LB 25-033 90 1 1 0 #> 1790 CB 21-253 90 2 2 2 #> 1791 CB 28-174 90 2 2 1 #> 1792 RB 26-045 90 1 1 0 #> 1793 GK 27-178 90 0 0 0 #> 1794 FW 31-105 90 0 0 0 #> 1795 FW 32-175 90 0 0 0 #> 1796 CM 26-048 74 1 1 0 #> 1797 RM 24-050 16 0 0 0 #> 1798 CM,DM 23-093 84 3 1 1 #> 1799 CM 22-347 6 0 0 0 #> 1800 CM 28-270 90 4 1 0 #> 1801 LB,LW 28-170 90 2 2 1 #> 1802 CB 31-093 90 1 1 1 #> 1803 CB 30-174 90 0 0 0 #> 1804 CB 27-004 74 2 2 2 #> 1805 RB 33-028 16 1 1 1 #> 1806 RB 19-006 53 1 1 1 #> 1807 RW,LM 24-116 37 3 0 1 #> 1808 GK 24-158 90 0 0 0 #> 1809 FW 22-312 61 0 0 0 #> 1810 FW 23-114 29 0 0 0 #> 1811 FW,LM,RM 31-181 90 0 0 0 #> 1812 CM 30-253 72 2 2 1 #> 1813 RM 27-193 18 0 0 0 #> 1814 CM 29-215 80 1 1 1 #> 1815 CM 27-301 10 0 0 0 #> 1816 CM 28-117 61 1 0 0 #> 1817 FW 29-330 29 1 0 0 #> 1818 WB,LM 29-014 71 2 1 1 #> 1819 CB 27-092 18 0 0 0 #> 1820 WB,RB 27-231 90 1 0 1 #> 1821 CB,LB 28-240 90 1 1 0 #> 1822 CB,CM 33-249 90 0 0 0 #> 1823 CB 33-125 90 2 1 0 #> 1824 GK 29-254 90 0 0 0 #> 1825 FW 21-252 85 1 0 0 #> 1826 LM 26-042 5 1 0 0 #> 1827 LW 22-068 90 0 0 0 #> 1828 RW 24-058 90 1 1 0 #> 1829 LM 32-257 85 1 0 0 #> 1830 FW 26-240 5 1 1 0 #> 1831 CM 22-234 90 2 2 0 #> 1832 RM 37-009 81 0 0 0 #> 1833 RM 19-312 9 0 0 0 #> 1834 LB 27-102 74 1 1 1 #> 1835 LB 29-199 16 0 0 0 #> 1836 CB 30-086 90 0 0 0 #> 1837 CB 24-243 90 2 2 2 #> 1838 RB 30-250 90 2 2 1 #> 1839 GK 30-130 90 0 0 0 #> 1840 FW,RW 28-107 90 0 0 0 #> 1841 LW 27-088 78 1 1 0 #> 1842 CM,LM 29-132 12 0 0 0 #> 1843 RW,LW 20-080 90 0 0 0 #> 1844 AM 29-285 78 1 1 0 #> 1845 FW 25-000 12 0 0 0 #> 1846 DM,CM 32-129 83 4 1 1 #> 1847 LM 23-269 7 0 0 0 #> 1848 DM 22-158 71 1 0 0 #> 1849 RM,DM 33-047 19 0 0 0 #> 1850 LB 29-149 90 1 1 0 #> 1851 CB 31-136 90 2 0 2 #> 1852 CB 27-249 71 2 2 2 #> 1853 CB 22-154 19 0 0 0 #> 1854 RB 33-169 90 2 2 1 #> 1855 GK 25-111 90 0 0 0 #> 1856 FW 20-202 57 0 0 0 #> 1857 LM,FW 30-146 33 1 1 1 #> 1858 FW 21-215 45 0 0 0 #> 1859 FW 33-016 45 0 0 0 #> 1860 CM 21-307 78 0 0 0 #> 1861 LM 30-207 12 1 1 0 #> 1862 CM 25-196 65 0 0 0 #> 1863 CM 21-263 25 0 0 0 #> 1864 CM 32-109 58 0 0 0 #> 1865 RM,CM 30-035 32 0 0 0 #> 1866 LB 24-288 90 4 4 3 #> 1867 CB 26-161 90 2 0 2 #> 1868 CB 28-331 90 1 1 1 #> 1869 CB 18-261 90 2 2 2 #> 1870 RB 24-149 90 2 2 2 #> 1871 GK 32-112 90 0 0 0 #> 1872 FW 37-042 58 3 3 1 #> 1873 CM,FW 29-351 32 0 0 0 #> 1874 FW,LM 30-122 90 1 1 0 #> 1875 LM 26-315 58 0 0 0 #> 1876 FW,LM 29-159 32 0 0 0 #> 1877 CM 31-153 68 3 2 0 #> 1878 CM 34-299 22 1 0 1 #> 1879 CM 25-199 58 2 1 0 #> 1880 FW,CM 34-021 32 0 0 0 #> 1881 RM 27-233 89 4 2 1 #> 1882 RM 30-099 1 0 0 0 #> 1883 LB 30-269 90 3 0 2 #> 1884 CB 22-210 90 0 0 0 #> 1885 CB 33-170 90 0 0 0 #> 1886 RB 29-161 89 3 1 2 #> 1887 GK 29-230 90 0 0 0 #> 1888 FW 21-103 82 0 0 0 #> 1889 FW 23-132 8 0 0 0 #> 1890 FW 21-073 90 2 0 1 #> 1891 LM 31-141 66 0 0 0 #> 1892 LM 25-243 24 0 0 0 #> 1893 CM 33-168 90 2 2 1 #> 1894 CM 34-082 90 3 2 2 #> 1895 RM 26-175 82 2 2 0 #> 1896 RM 35-070 8 0 0 0 #> 1897 LB 26-175 90 2 2 0 #> 1898 CB 25-258 90 2 2 2 #> 1899 CB 37-027 90 2 1 2 #> 1900 RB 31-241 90 1 1 1 #> 1901 GK 30-134 90 0 0 0 #> 1902 FW 25-179 90 0 0 0 #> 1903 FW 25-144 90 1 1 0 #> 1904 CM 23-100 45 0 0 0 #> 1905 CM 25-252 36 2 0 2 #> 1906 CM 32-132 9 0 0 0 #> 1907 CM 27-001 62 1 0 0 #> 1908 CM 27-030 28 1 1 1 #> 1909 CM 24-269 90 0 0 0 #> 1910 LB 24-090 74 4 2 3 #> 1911 LB 21-192 16 0 0 0 #> 1912 CB 22-191 90 3 2 2 #> 1913 CB 27-205 90 2 0 2 #> 1914 CB 30-274 90 2 1 1 #> 1915 RB 34-157 90 1 1 0 #> 1916 GK 29-180 90 0 0 0 #> 1917 FW 33-268 77 1 1 0 #> 1918 FW 26-229 13 0 0 0 #> 1919 LW 31-232 77 0 0 0 #> 1920 LW 30-008 13 0 0 0 #> 1921 RW 21-334 90 0 0 0 #> 1922 LM 26-153 90 0 0 0 #> 1923 CM 33-116 85 2 0 2 #> 1924 CM 26-354 5 0 0 0 #> 1925 RM 25-229 90 3 0 1 #> 1926 LB 33-029 90 2 1 1 #> 1927 CB 25-201 90 1 1 1 #> 1928 CB 26-123 32 0 0 0 #> 1929 CB 30-214 13 1 0 1 #> 1930 CB 33-273 45 0 0 0 #> 1931 RB 18-003 90 4 2 3 #> 1932 GK 33-271 90 0 0 0 #> 1933 FW 24-360 90 0 0 0 #> 1934 LW,CM 30-163 90 0 0 0 #> 1935 RW,RM 30-211 90 3 1 0 #> 1936 AM 27-325 66 0 0 0 #> 1937 LM 34-228 24 0 0 0 #> 1938 DM 31-028 45 0 0 0 #> 1939 DM,CM 34-205 45 3 3 0 #> 1940 DM,CB 30-319 90 0 0 0 #> 1941 LB 27-303 27 0 0 0 #> 1942 LB 29-290 63 0 0 0 #> 1943 CB 20-161 45 0 0 0 #> 1944 RB 36-314 45 2 1 1 #> 1945 CB 20-116 66 0 0 0 #> 1946 FW 25-122 24 0 0 0 #> 1947 CB,RB 20-245 90 4 4 0 #> 1948 GK 31-179 90 1 1 1 #> 1949 FW 29-343 60 1 1 0 #> 1950 FW,RM,LM 31-194 30 0 0 0 #> 1951 LM,FW 23-127 71 1 1 1 #> 1952 RM 27-206 19 0 0 0 #> 1953 CM 27-314 60 1 1 1 #> 1954 LM,LB 29-027 30 0 0 0 #> 1955 CM,RM 30-266 72 0 0 0 #> 1956 CM 29-228 18 0 0 0 #> 1957 RB,RM 27-244 90 0 0 0 #> 1958 CM,DM 33-262 90 0 0 0 #> 1959 LB,CB 28-253 90 5 4 3 #> 1960 CB 27-254 90 3 3 3 #> 1961 CB 31-266 90 1 1 1 #> 1962 RB,CB 24-178 86 3 2 1 #> 1963 FW 22-325 4 0 0 0 #> 1964 GK 29-267 90 0 0 0 #> 1965 FW 28-160 90 0 0 0 #> 1966 LM 21-224 90 2 2 0 #> 1967 CM 26-252 90 3 0 1 #> 1968 CM 29-056 84 1 1 0 #> 1969 RM,CM 31-274 6 1 0 0 #> 1970 RM 25-273 66 0 0 0 #> 1971 RM,CM 34-117 24 0 0 0 #> 1972 LB 34-197 76 2 1 2 #> 1973 LB 25-290 14 1 1 0 #> 1974 CB 22-356 90 1 1 1 #> 1975 CB 30-358 90 0 0 0 #> 1976 CB 26-294 90 1 0 0 #> 1977 RB 25-081 90 2 2 1 #> 1978 GK 26-335 90 0 0 0 #> 1979 FW 34-041 90 2 0 0 #> 1980 LW 19-335 66 3 3 1 #> 1981 LW 25-291 24 0 0 0 #> 1982 RW 25-139 79 0 0 0 #> 1983 RW 22-214 11 0 0 0 #> 1984 LM 18-057 90 1 1 0 #> 1985 CM 34-077 90 1 1 0 #> 1986 RM 25-286 66 1 0 1 #> 1987 RM 19-310 24 0 0 0 #> 1988 LB 33-194 79 1 0 1 #> 1989 RB 30-236 11 0 0 0 #> 1990 CB 26-174 90 1 1 1 #> 1991 CB 35-241 90 0 0 0 #> 1992 RB,LB 18-348 90 1 1 1 #> 1993 GK 30-154 90 0 0 0 #> 1994 FW 32-189 90 0 0 0 #> 1995 LW 31-119 89 1 0 0 #> 1996 RW 24-130 45 0 0 0 #> 1997 RW,RB 33-042 45 0 0 0 #> 1998 AM 26-062 61 2 2 0 #> 1999 DM,AM,CM 25-035 29 1 1 0 #> 2000 DM 23-107 86 3 2 1 #> 2001 CM,DM 22-361 4 0 0 0 #> 2002 DM,AM 28-284 86 2 1 1 #> 2003 CB,DM 17-241 4 0 0 0 #> 2004 LB 28-184 90 1 1 1 #> 2005 CB 31-107 90 0 0 0 #> 2006 CB 30-188 90 0 0 0 #> 2007 RB 27-018 73 3 2 2 #> 2008 RW,RM 21-174 17 0 0 0 #> 2009 GK 24-172 90 0 0 0 #> 2010 FW 35-230 72 0 0 0 #> 2011 FW 25-347 12 0 0 0 #> 2012 LW 22-283 90 1 1 1 #> 2013 RW 27-257 45 0 0 0 #> 2014 RW 23-150 45 1 1 0 #> 2015 LM 19-256 83 0 0 0 #> 2016 FW,LM 22-326 7 0 0 0 #> 2017 CM 22-244 90 NA 0 NA #> 2018 RM 22-125 72 0 0 0 #> 2019 RM,DM 20-272 18 1 1 1 #> 2020 LB 27-130 90 1 1 0 #> 2021 CB 25-287 90 4 2 2 #> 2022 CB 31-310 73 1 0 1 #> 2023 CB 24-240 17 0 0 0 #> 2024 RB 23-207 90 2 2 1 #> 2025 GK 22-003 90 0 0 0 #> 2026 FW 22-238 54 1 1 0 #> 2027 FW 28-062 36 2 1 0 #> 2028 FW 24-228 74 0 0 0 #> 2029 FW 35-062 16 0 0 0 #> 2030 LM 24-096 90 1 1 1 #> 2031 CM,RM 20-128 69 3 1 2 #> 2032 RM 24-132 21 0 0 0 #> 2033 RM 30-272 54 1 1 0 #> 2034 CM 27-066 36 3 2 3 #> 2035 DM 23-241 90 0 0 0 #> 2036 LB 27-317 90 2 1 1 #> 2037 CB 25-245 90 0 0 0 #> 2038 CB 27-003 90 2 1 2 #> 2039 RB 31-102 69 2 0 0 #> 2040 RB 23-142 21 3 2 3 #> Mid 3rd_Tackles Att 3rd_Tackles Tkl_Challenges Att_Challenges #> 1 0 1 0 1 #> 2 0 0 0 0 #> 3 0 0 0 1 #> 4 0 0 0 0 #> 5 0 0 0 0 #> 6 1 1 1 1 #> 7 0 1 1 3 #> 8 1 0 0 1 #> 9 0 0 0 1 #> 10 1 0 0 0 #> 11 1 0 2 2 #> 12 0 0 0 0 #> 13 0 0 1 1 #> 14 0 0 0 0 #> 15 0 0 0 0 #> 16 0 0 0 0 #> 17 0 0 0 0 #> 18 1 0 1 1 #> 19 2 0 1 1 #> 20 0 0 0 0 #> 21 0 0 0 0 #> 22 0 0 0 0 #> 23 0 0 0 0 #> 24 0 0 0 0 #> 25 2 0 1 1 #> 26 0 0 0 0 #> 27 0 1 1 1 #> 28 3 0 2 2 #> 29 0 0 0 0 #> 30 0 0 1 2 #> 31 0 0 0 2 #> 32 0 0 0 0 #> 33 2 0 1 1 #> 34 1 0 0 1 #> 35 0 0 0 0 #> 36 3 0 2 5 #> 37 0 0 0 0 #> 38 1 0 1 2 #> 39 0 0 0 0 #> 40 0 0 0 2 #> 41 1 0 0 1 #> 42 1 0 1 4 #> 43 1 0 1 2 #> 44 1 0 0 0 #> 45 0 0 0 0 #> 46 4 0 3 3 #> 47 0 0 0 0 #> 48 0 0 0 0 #> 49 0 0 0 1 #> 50 1 0 1 1 #> 51 1 2 2 2 #> 52 0 0 0 1 #> 53 0 0 0 0 #> 54 0 1 0 0 #> 55 0 0 1 1 #> 56 2 1 0 1 #> 57 0 0 0 0 #> 58 4 0 0 0 #> 59 1 0 0 0 #> 60 1 0 0 0 #> 61 0 1 1 2 #> 62 0 0 0 0 #> 63 0 0 0 0 #> 64 0 0 0 0 #> 65 2 0 1 5 #> 66 0 0 1 1 #> 67 0 0 0 0 #> 68 1 0 1 4 #> 69 0 0 0 0 #> 70 0 0 0 1 #> 71 0 0 0 1 #> 72 2 1 2 4 #> 73 1 0 1 5 #> 74 0 0 1 1 #> 75 0 0 0 0 #> 76 0 0 0 0 #> 77 0 0 1 1 #> 78 0 0 0 0 #> 79 0 0 0 2 #> 80 0 0 0 0 #> 81 0 0 0 1 #> 82 3 0 2 2 #> 83 0 0 0 0 #> 84 2 2 1 3 #> 85 2 0 0 0 #> 86 1 1 2 6 #> 87 0 0 0 1 #> 88 0 0 0 1 #> 89 0 1 1 1 #> 90 0 0 0 0 #> 91 1 0 3 4 #> 92 0 0 0 0 #> 93 0 0 0 0 #> 94 1 1 1 2 #> 95 0 0 0 2 #> 96 0 2 1 1 #> 97 0 0 0 0 #> 98 0 0 0 0 #> 99 0 0 0 0 #> 100 0 1 0 0 #> 101 0 1 1 2 #> 102 0 1 0 0 #> 103 1 0 1 2 #> 104 0 0 0 0 #> 105 1 1 0 1 #> 106 2 0 0 0 #> 107 0 0 0 0 #> 108 1 0 1 2 #> 109 0 0 0 0 #> 110 0 1 0 0 #> 111 0 0 0 0 #> 112 0 0 0 0 #> 113 2 0 3 3 #> 114 0 0 0 2 #> 115 1 0 0 1 #> 116 1 0 0 0 #> 117 5 0 2 5 #> 118 0 0 0 1 #> 119 1 0 0 0 #> 120 0 0 1 1 #> 121 0 0 0 0 #> 122 0 0 0 0 #> 123 0 0 0 0 #> 124 0 0 0 0 #> 125 0 0 0 0 #> 126 0 0 0 0 #> 127 0 0 0 0 #> 128 0 0 0 0 #> 129 0 2 1 1 #> 130 0 0 1 1 #> 131 1 0 0 0 #> 132 2 0 3 4 #> 133 0 0 0 0 #> 134 0 1 0 1 #> 135 1 0 2 5 #> 136 1 0 1 2 #> 137 0 1 1 1 #> 138 0 0 0 1 #> 139 0 0 1 2 #> 140 0 0 0 0 #> 141 1 0 0 2 #> 142 0 0 0 1 #> 143 0 1 0 0 #> 144 0 0 0 0 #> 145 2 1 1 1 #> 146 0 0 2 2 #> 147 0 1 1 4 #> 148 0 0 0 0 #> 149 3 1 3 3 #> 150 1 0 0 0 #> 151 1 1 1 3 #> 152 0 0 0 0 #> 153 0 0 0 0 #> 154 2 0 1 2 #> 155 0 1 1 2 #> 156 0 0 0 0 #> 157 0 1 1 1 #> 158 0 0 1 1 #> 159 2 0 1 3 #> 160 0 0 0 0 #> 161 0 1 0 1 #> 162 0 0 0 1 #> 163 0 0 0 0 #> 164 0 0 0 0 #> 165 NA NA NA NA #> 166 1 0 1 1 #> 167 0 0 0 0 #> 168 0 0 0 0 #> 169 0 0 0 1 #> 170 1 0 1 1 #> 171 0 0 1 3 #> 172 0 0 0 0 #> 173 0 1 0 0 #> 174 0 0 0 0 #> 175 0 0 0 0 #> 176 0 0 1 3 #> 177 0 2 1 2 #> 178 0 0 0 0 #> 179 0 1 1 1 #> 180 0 0 1 2 #> 181 0 0 0 0 #> 182 0 0 1 2 #> 183 0 0 0 0 #> 184 2 0 2 3 #> 185 0 0 0 1 #> 186 0 0 0 0 #> 187 1 0 3 4 #> 188 0 0 0 0 #> 189 0 0 0 0 #> 190 0 0 0 0 #> 191 0 0 0 1 #> 192 0 0 0 0 #> 193 1 0 1 5 #> 194 1 0 1 1 #> 195 0 0 0 0 #> 196 0 0 1 2 #> 197 1 0 1 2 #> 198 0 0 0 0 #> 199 0 0 0 0 #> 200 1 0 1 1 #> 201 0 0 1 2 #> 202 0 0 0 0 #> 203 1 0 1 2 #> 204 0 0 0 0 #> 205 0 0 0 0 #> 206 0 1 0 1 #> 207 0 0 0 0 #> 208 0 0 0 0 #> 209 1 0 0 2 #> 210 0 0 0 0 #> 211 0 0 1 1 #> 212 0 0 0 0 #> 213 1 1 0 0 #> 214 0 0 0 2 #> 215 1 0 1 2 #> 216 0 0 0 0 #> 217 0 0 0 0 #> 218 0 0 0 0 #> 219 0 0 1 1 #> 220 0 0 0 0 #> 221 0 0 0 0 #> 222 0 0 0 0 #> 223 0 0 0 1 #> 224 0 0 0 0 #> 225 1 0 1 1 #> 226 0 0 0 0 #> 227 1 0 0 0 #> 228 0 0 0 0 #> 229 2 0 2 2 #> 230 1 0 0 1 #> 231 0 0 0 1 #> 232 0 0 0 1 #> 233 0 1 2 2 #> 234 0 0 1 1 #> 235 0 0 0 2 #> 236 0 0 0 0 #> 237 0 0 0 0 #> 238 0 0 0 0 #> 239 0 0 2 2 #> 240 0 0 1 3 #> 241 1 0 0 1 #> 242 1 0 0 0 #> 243 0 0 0 0 #> 244 2 0 1 3 #> 245 0 0 0 0 #> 246 0 0 0 2 #> 247 1 0 2 2 #> 248 0 0 0 1 #> 249 0 0 2 2 #> 250 0 0 0 0 #> 251 0 0 0 0 #> 252 0 0 0 0 #> 253 0 0 0 0 #> 254 0 0 0 0 #> 255 1 0 0 0 #> 256 0 0 2 4 #> 257 0 0 0 0 #> 258 0 1 0 1 #> 259 1 0 0 3 #> 260 1 0 1 2 #> 261 0 1 0 0 #> 262 1 0 1 1 #> 263 0 0 0 0 #> 264 0 0 0 0 #> 265 0 0 1 2 #> 266 0 0 0 0 #> 267 0 0 0 0 #> 268 0 0 0 0 #> 269 0 0 0 0 #> 270 0 0 0 0 #> 271 2 0 0 2 #> 272 0 0 0 0 #> 273 2 0 1 2 #> 274 0 0 0 0 #> 275 0 0 0 0 #> 276 2 0 4 5 #> 277 0 0 1 1 #> 278 1 0 1 2 #> 279 0 0 0 0 #> 280 1 0 3 3 #> 281 0 0 1 1 #> 282 0 0 0 0 #> 283 0 0 1 1 #> 284 1 1 0 0 #> 285 0 1 1 1 #> 286 1 0 1 1 #> 287 0 0 0 0 #> 288 0 0 0 1 #> 289 0 0 0 0 #> 290 1 0 0 2 #> 291 0 0 1 2 #> 292 0 0 1 1 #> 293 0 0 0 1 #> 294 1 0 1 1 #> 295 1 0 0 0 #> 296 0 0 1 1 #> 297 0 0 0 0 #> 298 0 0 0 0 #> 299 0 0 0 1 #> 300 0 1 0 0 #> 301 0 0 0 2 #> 302 0 0 0 1 #> 303 0 1 1 6 #> 304 0 0 0 0 #> 305 1 0 1 2 #> 306 0 0 0 0 #> 307 0 0 0 0 #> 308 1 0 2 6 #> 309 0 0 1 1 #> 310 0 0 1 2 #> 311 0 0 2 3 #> 312 0 0 0 1 #> 313 0 0 0 0 #> 314 0 0 0 0 #> 315 0 0 0 0 #> 316 0 0 0 0 #> 317 1 0 1 1 #> 318 1 0 3 3 #> 319 0 0 0 0 #> 320 0 1 0 2 #> 321 2 0 0 0 #> 322 1 0 0 0 #> 323 0 0 0 0 #> 324 0 0 1 1 #> 325 0 0 0 0 #> 326 0 0 0 0 #> 327 0 0 0 0 #> 328 0 0 0 0 #> 329 0 0 0 0 #> 330 0 0 0 1 #> 331 0 0 0 0 #> 332 0 0 0 0 #> 333 0 0 1 1 #> 334 0 0 0 0 #> 335 0 0 0 0 #> 336 0 0 1 1 #> 337 1 0 1 3 #> 338 0 0 1 1 #> 339 0 0 0 1 #> 340 0 0 0 0 #> 341 0 1 1 3 #> 342 0 0 1 1 #> 343 0 0 0 0 #> 344 0 0 1 2 #> 345 0 0 0 0 #> 346 0 0 0 0 #> 347 0 0 0 0 #> 348 0 0 0 0 #> 349 1 0 1 1 #> 350 3 1 2 3 #> 351 3 0 2 3 #> 352 0 0 0 0 #> 353 2 0 0 0 #> 354 2 0 1 1 #> 355 0 1 0 1 #> 356 0 0 1 2 #> 357 0 0 0 0 #> 358 0 0 0 0 #> 359 0 0 1 1 #> 360 0 0 0 1 #> 361 0 0 0 0 #> 362 1 0 0 1 #> 363 0 0 0 0 #> 364 1 2 0 0 #> 365 0 0 0 1 #> 366 0 0 0 0 #> 367 0 0 0 2 #> 368 0 0 0 1 #> 369 0 1 0 1 #> 370 0 0 0 0 #> 371 2 0 2 3 #> 372 0 0 1 1 #> 373 0 0 0 0 #> 374 0 0 1 1 #> 375 0 0 0 0 #> 376 1 0 1 1 #> 377 0 0 0 0 #> 378 0 1 0 0 #> 379 0 0 0 0 #> 380 0 0 0 2 #> 381 0 0 0 0 #> 382 0 0 0 0 #> 383 2 1 2 3 #> 384 0 0 0 1 #> 385 2 0 0 0 #> 386 0 0 0 0 #> 387 0 0 0 1 #> 388 0 0 1 1 #> 389 0 0 1 1 #> 390 2 1 1 1 #> 391 1 0 1 2 #> 392 0 0 0 0 #> 393 0 0 0 0 #> 394 0 0 0 1 #> 395 0 0 0 0 #> 396 0 0 0 0 #> 397 0 0 0 1 #> 398 1 0 1 1 #> 399 0 0 0 0 #> 400 0 0 1 1 #> 401 1 0 3 3 #> 402 0 0 0 0 #> 403 0 0 0 0 #> 404 2 0 4 6 #> 405 0 0 0 0 #> 406 0 0 0 1 #> 407 1 0 0 0 #> 408 0 0 1 1 #> 409 0 0 0 0 #> 410 2 0 1 1 #> 411 1 0 0 2 #> 412 1 0 0 1 #> 413 0 0 0 0 #> 414 0 0 0 0 #> 415 2 0 1 1 #> 416 3 0 3 4 #> 417 0 0 0 0 #> 418 1 0 2 2 #> 419 1 1 1 2 #> 420 0 0 0 0 #> 421 0 0 1 1 #> 422 1 0 1 2 #> 423 0 0 0 2 #> 424 0 0 0 0 #> 425 0 0 0 0 #> 426 1 0 1 1 #> 427 0 0 0 2 #> 428 0 0 0 0 #> 429 0 0 0 1 #> 430 0 0 0 1 #> 431 0 0 0 1 #> 432 0 0 0 0 #> 433 4 0 2 3 #> 434 0 0 3 6 #> 435 0 0 0 1 #> 436 0 0 0 0 #> 437 0 0 1 2 #> 438 0 0 0 0 #> 439 0 0 0 2 #> 440 0 0 0 0 #> 441 0 0 0 1 #> 442 1 0 0 1 #> 443 0 0 0 0 #> 444 0 0 1 2 #> 445 0 2 3 7 #> 446 0 0 0 1 #> 447 0 0 0 0 #> 448 0 0 1 1 #> 449 1 0 1 1 #> 450 1 0 2 3 #> 451 1 0 2 2 #> 452 0 0 0 1 #> 453 0 0 0 1 #> 454 1 1 1 2 #> 455 0 0 0 1 #> 456 2 0 2 4 #> 457 0 0 0 2 #> 458 0 0 0 0 #> 459 2 0 0 0 #> 460 0 0 0 2 #> 461 0 0 0 0 #> 462 0 0 1 2 #> 463 0 0 0 0 #> 464 0 0 0 0 #> 465 0 0 1 1 #> 466 1 0 0 0 #> 467 0 0 0 0 #> 468 0 0 0 0 #> 469 2 0 1 1 #> 470 0 0 0 0 #> 471 0 0 1 1 #> 472 0 0 0 0 #> 473 0 0 0 1 #> 474 0 0 0 0 #> 475 0 0 0 0 #> 476 0 0 0 0 #> 477 2 1 4 10 #> 478 0 0 0 2 #> 479 0 0 0 1 #> 480 0 0 3 3 #> 481 0 0 1 1 #> 482 0 0 2 3 #> 483 1 0 3 4 #> 484 0 0 0 0 #> 485 0 0 0 0 #> 486 0 0 0 0 #> 487 1 0 0 1 #> 488 0 0 0 1 #> 489 1 1 2 2 #> 490 NA NA NA NA #> 491 0 0 0 0 #> 492 0 0 1 2 #> 493 0 0 0 1 #> 494 0 1 0 1 #> 495 1 0 0 2 #> 496 1 0 1 2 #> 497 0 0 0 0 #> 498 0 0 1 1 #> 499 0 0 1 1 #> 500 0 0 0 0 #> 501 1 1 1 1 #> 502 0 0 0 1 #> 503 1 0 0 1 #> 504 0 0 0 0 #> 505 3 0 3 4 #> 506 1 0 1 2 #> 507 0 1 1 4 #> 508 0 0 0 0 #> 509 1 0 2 3 #> 510 0 0 0 1 #> 511 1 0 1 2 #> 512 0 0 2 2 #> 513 1 0 2 2 #> 514 0 0 1 1 #> 515 0 0 0 0 #> 516 0 0 0 0 #> 517 0 0 0 0 #> 518 0 0 0 1 #> 519 0 0 0 0 #> 520 0 0 0 1 #> 521 0 1 1 1 #> 522 0 0 0 1 #> 523 0 0 0 0 #> 524 0 0 0 0 #> 525 0 0 1 2 #> 526 0 0 0 0 #> 527 0 0 0 0 #> 528 0 0 0 0 #> 529 0 0 0 0 #> 530 2 0 2 2 #> 531 0 0 0 0 #> 532 1 1 2 3 #> 533 0 0 0 0 #> 534 0 0 0 0 #> 535 0 0 0 0 #> 536 1 0 1 3 #> 537 0 0 1 2 #> 538 2 0 3 3 #> 539 0 0 0 0 #> 540 0 0 0 2 #> 541 1 0 4 7 #> 542 2 0 2 3 #> 543 1 0 0 0 #> 544 0 0 1 1 #> 545 1 0 1 1 #> 546 1 0 1 1 #> 547 0 0 0 0 #> 548 0 1 0 0 #> 549 0 0 0 1 #> 550 0 1 1 1 #> 551 0 2 0 0 #> 552 0 0 1 1 #> 553 0 0 0 0 #> 554 0 0 0 1 #> 555 2 0 1 4 #> 556 0 0 1 1 #> 557 0 0 0 0 #> 558 3 0 2 2 #> 559 0 0 0 0 #> 560 0 0 1 1 #> 561 0 0 0 0 #> 562 2 0 1 1 #> 563 0 0 0 0 #> 564 0 0 0 0 #> 565 0 0 0 0 #> 566 0 1 1 2 #> 567 0 0 1 1 #> 568 0 0 0 1 #> 569 0 0 0 0 #> 570 0 1 0 0 #> 571 0 0 0 0 #> 572 1 0 0 1 #> 573 1 0 0 0 #> 574 0 0 0 2 #> 575 1 0 1 2 #> 576 0 0 1 1 #> 577 2 0 2 2 #> 578 0 0 0 0 #> 579 0 0 0 0 #> 580 2 0 1 1 #> 581 1 0 0 0 #> 582 1 2 1 2 #> 583 1 0 0 1 #> 584 0 0 0 2 #> 585 1 0 4 5 #> 586 0 0 0 0 #> 587 0 0 0 0 #> 588 0 0 0 0 #> 589 0 0 0 0 #> 590 1 1 3 3 #> 591 0 0 0 0 #> 592 0 0 0 0 #> 593 0 0 0 0 #> 594 0 0 0 2 #> 595 1 0 1 2 #> 596 0 0 0 0 #> 597 4 0 1 1 #> 598 0 0 0 0 #> 599 0 0 0 0 #> 600 1 0 0 3 #> 601 1 0 1 1 #> 602 1 0 1 1 #> 603 0 0 0 0 #> 604 0 0 0 0 #> 605 0 0 0 0 #> 606 1 0 1 2 #> 607 0 0 0 0 #> 608 0 0 0 0 #> 609 0 0 0 0 #> 610 0 0 0 0 #> 611 3 0 3 7 #> 612 0 0 0 0 #> 613 0 1 0 1 #> 614 0 0 0 0 #> 615 0 0 0 0 #> 616 0 0 0 0 #> 617 1 0 1 2 #> 618 3 0 2 7 #> 619 1 0 0 0 #> 620 1 0 0 0 #> 621 0 0 0 1 #> 622 0 0 0 0 #> 623 0 0 0 0 #> 624 0 0 0 0 #> 625 0 0 0 2 #> 626 0 0 0 2 #> 627 0 0 0 0 #> 628 0 0 0 0 #> 629 0 1 1 1 #> 630 0 0 0 0 #> 631 2 0 0 1 #> 632 3 2 1 3 #> 633 0 0 0 3 #> 634 0 0 1 1 #> 635 0 0 0 0 #> 636 1 0 0 2 #> 637 0 0 0 0 #> 638 1 0 1 2 #> 639 0 0 0 1 #> 640 0 0 0 1 #> 641 0 0 0 0 #> 642 1 0 1 1 #> 643 0 0 0 0 #> 644 0 0 0 0 #> 645 3 0 2 2 #> 646 2 0 1 4 #> 647 0 0 0 0 #> 648 0 0 0 1 #> 649 3 0 2 2 #> 650 0 0 0 1 #> 651 0 0 0 0 #> 652 1 0 2 5 #> 653 0 0 0 0 #> 654 0 0 0 0 #> 655 0 0 0 0 #> 656 1 0 0 0 #> 657 0 0 0 0 #> 658 0 0 0 0 #> 659 0 0 0 0 #> 660 0 0 1 1 #> 661 1 0 0 1 #> 662 1 0 0 0 #> 663 1 1 0 0 #> 664 0 0 1 1 #> 665 0 0 2 2 #> 666 0 0 0 2 #> 667 1 0 1 1 #> 668 0 0 0 0 #> 669 0 0 0 0 #> 670 0 0 0 0 #> 671 1 0 0 0 #> 672 0 0 0 1 #> 673 0 0 0 2 #> 674 0 0 0 0 #> 675 0 0 1 4 #> 676 0 0 2 2 #> 677 3 1 3 5 #> 678 1 0 1 1 #> 679 1 1 5 8 #> 680 0 0 1 1 #> 681 0 0 1 1 #> 682 0 0 0 0 #> 683 1 1 4 4 #> 684 0 0 0 0 #> 685 0 0 0 0 #> 686 0 0 0 0 #> 687 0 0 0 0 #> 688 0 1 0 0 #> 689 2 0 0 0 #> 690 0 0 0 1 #> 691 1 0 0 0 #> 692 1 0 1 2 #> 693 0 0 0 0 #> 694 0 0 0 0 #> 695 3 2 2 3 #> 696 0 0 0 0 #> 697 0 0 0 1 #> 698 0 0 0 0 #> 699 2 0 0 0 #> 700 1 0 0 0 #> 701 0 0 0 0 #> 702 0 0 0 0 #> 703 0 0 0 0 #> 704 0 0 0 0 #> 705 0 0 0 0 #> 706 0 0 0 0 #> 707 0 0 0 0 #> 708 1 0 1 3 #> 709 1 0 0 0 #> 710 0 0 0 2 #> 711 2 0 1 3 #> 712 0 0 0 0 #> 713 0 0 0 1 #> 714 0 0 0 1 #> 715 1 0 1 1 #> 716 0 0 0 0 #> 717 0 0 0 0 #> 718 0 1 1 2 #> 719 0 0 0 0 #> 720 0 1 1 2 #> 721 0 0 0 0 #> 722 0 0 1 3 #> 723 0 0 0 0 #> 724 0 0 0 0 #> 725 0 0 2 2 #> 726 0 1 1 1 #> 727 0 0 0 1 #> 728 0 0 0 0 #> 729 0 0 1 1 #> 730 0 0 0 0 #> 731 0 0 0 0 #> 732 0 0 0 0 #> 733 0 0 0 0 #> 734 0 0 0 0 #> 735 0 0 0 0 #> 736 0 0 0 1 #> 737 0 0 0 1 #> 738 0 0 0 0 #> 739 1 0 2 2 #> 740 0 1 1 1 #> 741 0 0 0 0 #> 742 0 0 0 0 #> 743 0 0 1 2 #> 744 0 0 0 1 #> 745 2 0 2 2 #> 746 0 0 0 3 #> 747 0 0 0 1 #> 748 0 0 0 0 #> 749 0 0 0 0 #> 750 0 0 0 0 #> 751 1 1 0 0 #> 752 0 0 0 0 #> 753 0 0 1 2 #> 754 0 0 1 5 #> 755 1 1 0 2 #> 756 0 0 0 0 #> 757 0 0 0 3 #> 758 0 0 2 3 #> 759 0 0 0 0 #> 760 0 0 2 2 #> 761 1 0 0 1 #> 762 0 0 0 0 #> 763 0 1 1 1 #> 764 1 0 0 0 #> 765 1 0 0 0 #> 766 2 0 1 2 #> 767 0 0 0 0 #> 768 0 0 0 1 #> 769 0 0 0 0 #> 770 1 0 1 1 #> 771 0 0 0 2 #> 772 0 0 0 0 #> 773 0 0 0 1 #> 774 0 0 0 0 #> 775 0 0 0 0 #> 776 0 0 0 1 #> 777 0 0 0 0 #> 778 0 0 0 0 #> 779 0 0 0 2 #> 780 2 0 0 1 #> 781 0 0 0 0 #> 782 1 0 0 0 #> 783 0 0 0 0 #> 784 1 0 1 6 #> 785 1 0 1 1 #> 786 1 0 0 0 #> 787 0 1 0 0 #> 788 0 1 1 1 #> 789 1 0 2 2 #> 790 0 0 0 0 #> 791 0 0 0 0 #> 792 1 0 1 1 #> 793 0 0 0 0 #> 794 0 0 0 0 #> 795 0 0 0 0 #> 796 0 0 0 0 #> 797 0 1 0 0 #> 798 1 0 1 1 #> 799 0 0 0 0 #> 800 0 0 0 5 #> 801 0 0 0 3 #> 802 0 0 2 3 #> 803 1 1 3 4 #> 804 0 0 0 0 #> 805 0 0 0 0 #> 806 0 0 1 5 #> 807 1 0 1 2 #> 808 0 0 2 3 #> 809 1 0 1 1 #> 810 0 0 0 0 #> 811 0 0 0 0 #> 812 0 0 1 1 #> 813 0 0 0 0 #> 814 1 0 1 1 #> 815 3 0 3 4 #> 816 0 0 0 0 #> 817 1 0 3 3 #> 818 0 0 0 3 #> 819 0 0 1 1 #> 820 0 0 0 0 #> 821 0 0 3 3 #> 822 0 0 1 1 #> 823 0 0 0 1 #> 824 0 0 0 0 #> 825 0 0 0 0 #> 826 0 0 0 1 #> 827 0 0 1 1 #> 828 0 0 0 0 #> 829 1 0 1 1 #> 830 0 0 1 1 #> 831 0 0 0 1 #> 832 0 0 0 0 #> 833 0 0 0 0 #> 834 0 0 1 2 #> 835 0 0 0 0 #> 836 0 0 0 0 #> 837 1 0 0 0 #> 838 0 0 0 0 #> 839 0 0 0 0 #> 840 1 0 0 0 #> 841 0 0 0 0 #> 842 0 0 0 0 #> 843 0 0 0 4 #> 844 0 0 0 2 #> 845 0 0 0 0 #> 846 NA NA NA NA #> 847 0 0 0 1 #> 848 0 0 1 4 #> 849 1 1 2 3 #> 850 0 0 0 0 #> 851 0 0 0 0 #> 852 0 0 1 1 #> 853 0 0 0 0 #> 854 2 0 0 0 #> 855 0 0 0 1 #> 856 0 0 0 0 #> 857 0 0 1 1 #> 858 0 1 1 1 #> 859 0 0 0 0 #> 860 0 0 0 0 #> 861 0 0 0 0 #> 862 0 0 0 0 #> 863 1 1 2 4 #> 864 0 0 0 0 #> 865 0 0 0 0 #> 866 1 0 1 1 #> 867 0 0 2 3 #> 868 0 0 1 1 #> 869 1 0 2 2 #> 870 1 0 1 1 #> 871 0 0 0 0 #> 872 0 1 0 0 #> 873 0 0 0 0 #> 874 0 0 0 0 #> 875 0 0 0 0 #> 876 0 0 0 0 #> 877 0 0 0 1 #> 878 NA NA NA NA #> 879 0 0 0 0 #> 880 2 0 1 1 #> 881 0 0 0 0 #> 882 0 0 0 0 #> 883 0 0 0 0 #> 884 0 0 1 2 #> 885 0 0 0 0 #> 886 0 0 0 0 #> 887 0 0 0 0 #> 888 0 0 0 1 #> 889 0 0 0 1 #> 890 1 0 0 0 #> 891 0 0 0 1 #> 892 1 0 1 3 #> 893 0 0 0 1 #> 894 0 0 0 1 #> 895 0 0 0 0 #> 896 0 0 0 0 #> 897 1 0 1 1 #> 898 0 0 2 5 #> 899 0 0 0 0 #> 900 0 0 1 1 #> 901 0 0 1 1 #> 902 1 0 1 2 #> 903 0 0 0 0 #> 904 0 0 0 1 #> 905 2 0 1 1 #> 906 0 0 0 1 #> 907 0 0 0 0 #> 908 1 0 1 2 #> 909 0 0 0 0 #> 910 0 0 0 0 #> 911 2 0 1 2 #> 912 0 0 0 0 #> 913 1 0 1 1 #> 914 0 0 2 2 #> 915 1 0 0 0 #> 916 0 0 0 0 #> 917 0 0 1 1 #> 918 0 0 2 2 #> 919 0 0 0 0 #> 920 0 0 0 0 #> 921 0 0 0 0 #> 922 NA NA NA NA #> 923 0 0 0 1 #> 924 0 0 1 1 #> 925 0 0 0 0 #> 926 1 1 1 2 #> 927 2 0 2 6 #> 928 0 0 0 0 #> 929 0 0 0 1 #> 930 0 0 0 0 #> 931 0 2 3 3 #> 932 0 0 0 0 #> 933 0 0 1 2 #> 934 1 0 0 0 #> 935 0 0 0 0 #> 936 0 0 0 0 #> 937 1 1 0 3 #> 938 0 0 0 0 #> 939 0 0 0 0 #> 940 2 0 2 2 #> 941 0 0 0 0 #> 942 0 0 1 3 #> 943 1 0 1 1 #> 944 1 1 1 1 #> 945 2 0 3 3 #> 946 0 0 1 1 #> 947 1 0 2 2 #> 948 0 0 1 3 #> 949 0 0 0 0 #> 950 0 0 0 0 #> 951 1 0 0 2 #> 952 0 0 1 1 #> 953 0 0 0 0 #> 954 0 1 0 1 #> 955 0 0 0 0 #> 956 0 0 0 0 #> 957 0 0 0 0 #> 958 3 0 1 1 #> 959 0 0 0 2 #> 960 0 0 1 1 #> 961 0 0 1 1 #> 962 0 0 0 0 #> 963 0 0 0 0 #> 964 1 0 0 0 #> 965 0 0 0 0 #> 966 0 0 0 0 #> 967 1 0 3 4 #> 968 0 2 1 1 #> 969 0 1 1 1 #> 970 1 0 0 1 #> 971 0 0 0 0 #> 972 6 0 5 6 #> 973 0 0 2 3 #> 974 0 0 0 1 #> 975 1 0 2 3 #> 976 0 0 0 0 #> 977 1 0 2 2 #> 978 0 1 2 2 #> 979 0 0 0 0 #> 980 0 0 0 0 #> 981 0 1 0 0 #> 982 0 0 0 1 #> 983 0 0 0 0 #> 984 1 1 2 2 #> 985 0 0 0 0 #> 986 3 0 2 4 #> 987 0 0 1 2 #> 988 0 0 0 0 #> 989 1 1 2 3 #> 990 0 0 0 2 #> 991 0 0 2 2 #> 992 2 0 3 3 #> 993 0 0 1 1 #> 994 0 0 0 0 #> 995 0 0 0 0 #> 996 0 0 0 0 #> 997 0 1 0 0 #> 998 0 0 0 0 #> 999 0 0 0 1 #> 1000 0 0 0 0 #> 1001 0 0 0 1 #> 1002 4 0 2 3 #> 1003 2 0 1 2 #> 1004 1 0 0 0 #> 1005 0 1 1 1 #> 1006 0 0 0 0 #> 1007 1 0 1 1 #> 1008 0 0 0 0 #> 1009 0 0 2 4 #> 1010 0 0 0 0 #> 1011 0 0 0 0 #> 1012 0 0 0 1 #> 1013 0 1 0 0 #> 1014 0 0 0 0 #> 1015 0 0 2 3 #> 1016 0 0 0 0 #> 1017 0 0 1 1 #> 1018 1 0 0 1 #> 1019 1 0 0 3 #> 1020 1 0 0 1 #> 1021 0 0 0 1 #> 1022 1 0 1 1 #> 1023 0 0 1 1 #> 1024 0 0 0 0 #> 1025 1 0 2 3 #> 1026 0 0 0 0 #> 1027 0 0 0 0 #> 1028 1 0 0 2 #> 1029 1 0 1 1 #> 1030 0 1 1 1 #> 1031 1 0 0 0 #> 1032 0 0 0 0 #> 1033 1 1 1 2 #> 1034 0 0 0 0 #> 1035 0 2 0 0 #> 1036 1 0 1 1 #> 1037 0 0 0 0 #> 1038 2 0 1 2 #> 1039 2 0 3 3 #> 1040 1 0 2 5 #> 1041 0 0 0 0 #> 1042 0 0 0 0 #> 1043 0 0 0 0 #> 1044 0 0 0 0 #> 1045 0 0 0 0 #> 1046 0 0 0 0 #> 1047 1 0 1 1 #> 1048 0 0 0 0 #> 1049 0 0 0 0 #> 1050 0 1 1 1 #> 1051 2 1 2 2 #> 1052 1 0 0 1 #> 1053 0 0 0 0 #> 1054 0 0 0 0 #> 1055 0 0 0 0 #> 1056 0 0 0 0 #> 1057 0 0 0 0 #> 1058 0 0 0 0 #> 1059 0 0 0 0 #> 1060 0 0 0 0 #> 1061 0 0 0 0 #> 1062 1 1 0 1 #> 1063 1 0 0 0 #> 1064 0 0 0 0 #> 1065 1 0 1 3 #> 1066 0 0 1 1 #> 1067 0 0 0 2 #> 1068 0 0 0 0 #> 1069 0 0 2 3 #> 1070 0 1 0 0 #> 1071 1 0 2 3 #> 1072 0 0 0 1 #> 1073 0 0 0 1 #> 1074 0 0 1 1 #> 1075 0 0 0 0 #> 1076 0 0 0 2 #> 1077 0 0 0 0 #> 1078 0 0 0 0 #> 1079 0 0 0 0 #> 1080 0 0 0 1 #> 1081 0 2 0 0 #> 1082 1 0 3 5 #> 1083 0 0 0 0 #> 1084 0 0 0 0 #> 1085 1 0 3 4 #> 1086 0 0 0 0 #> 1087 1 0 1 1 #> 1088 0 0 0 0 #> 1089 0 0 0 0 #> 1090 0 0 0 0 #> 1091 1 0 0 0 #> 1092 0 0 0 0 #> 1093 0 0 0 0 #> 1094 0 1 0 0 #> 1095 0 0 0 0 #> 1096 0 0 0 1 #> 1097 2 0 0 6 #> 1098 0 0 0 0 #> 1099 1 0 0 1 #> 1100 0 0 0 1 #> 1101 0 0 0 0 #> 1102 1 0 1 1 #> 1103 0 0 1 1 #> 1104 0 0 0 1 #> 1105 0 0 0 0 #> 1106 0 0 0 0 #> 1107 0 0 0 0 #> 1108 0 0 0 0 #> 1109 0 0 0 1 #> 1110 0 0 0 0 #> 1111 1 0 0 1 #> 1112 0 0 0 0 #> 1113 0 0 0 0 #> 1114 0 0 0 0 #> 1115 1 0 2 3 #> 1116 0 0 1 1 #> 1117 0 0 1 1 #> 1118 0 0 1 1 #> 1119 0 0 0 0 #> 1120 0 0 0 0 #> 1121 0 0 0 0 #> 1122 1 0 0 0 #> 1123 0 0 0 0 #> 1124 2 0 0 0 #> 1125 0 0 0 0 #> 1126 4 0 1 2 #> 1127 1 0 0 0 #> 1128 0 1 1 1 #> 1129 1 0 0 0 #> 1130 2 0 0 0 #> 1131 0 0 0 0 #> 1132 1 1 2 2 #> 1133 1 0 0 0 #> 1134 1 0 1 1 #> 1135 0 0 0 0 #> 1136 0 0 0 0 #> 1137 0 0 0 0 #> 1138 0 0 0 0 #> 1139 0 0 0 1 #> 1140 1 1 1 1 #> 1141 1 0 1 1 #> 1142 1 0 0 1 #> 1143 0 0 0 1 #> 1144 0 0 0 2 #> 1145 1 0 0 0 #> 1146 0 0 0 1 #> 1147 0 1 0 0 #> 1148 0 0 0 0 #> 1149 0 0 0 0 #> 1150 1 0 0 1 #> 1151 1 0 0 0 #> 1152 2 0 1 1 #> 1153 0 0 0 0 #> 1154 0 0 0 1 #> 1155 0 0 0 0 #> 1156 0 0 0 1 #> 1157 1 1 2 3 #> 1158 0 0 0 0 #> 1159 0 0 1 1 #> 1160 0 0 0 0 #> 1161 NA NA NA NA #> 1162 0 0 0 0 #> 1163 1 0 0 0 #> 1164 1 0 0 0 #> 1165 1 0 1 1 #> 1166 0 0 0 0 #> 1167 0 0 1 2 #> 1168 0 0 0 1 #> 1169 0 0 0 0 #> 1170 0 0 0 0 #> 1171 0 0 0 0 #> 1172 0 0 0 0 #> 1173 1 0 0 0 #> 1174 0 0 0 1 #> 1175 0 0 0 1 #> 1176 0 0 1 4 #> 1177 1 0 0 1 #> 1178 0 0 0 1 #> 1179 0 0 0 0 #> 1180 0 0 0 2 #> 1181 0 0 0 0 #> 1182 0 0 0 0 #> 1183 0 0 0 0 #> 1184 0 0 1 1 #> 1185 0 0 0 0 #> 1186 0 1 1 2 #> 1187 0 0 0 0 #> 1188 0 0 0 0 #> 1189 0 0 1 2 #> 1190 0 1 1 2 #> 1191 0 0 0 0 #> 1192 2 1 3 4 #> 1193 0 0 1 2 #> 1194 0 0 0 0 #> 1195 1 0 1 2 #> 1196 2 0 1 2 #> 1197 1 0 1 1 #> 1198 0 0 0 0 #> 1199 2 0 0 0 #> 1200 1 2 3 5 #> 1201 0 0 0 0 #> 1202 1 1 1 1 #> 1203 0 0 0 0 #> 1204 0 0 0 0 #> 1205 0 1 0 1 #> 1206 1 0 1 1 #> 1207 0 0 0 0 #> 1208 2 0 1 4 #> 1209 1 0 1 3 #> 1210 0 0 0 0 #> 1211 0 0 0 1 #> 1212 0 0 0 0 #> 1213 0 0 0 0 #> 1214 0 0 0 0 #> 1215 0 0 1 1 #> 1216 0 0 0 0 #> 1217 0 0 0 1 #> 1218 0 0 0 0 #> 1219 0 0 0 2 #> 1220 2 0 0 1 #> 1221 0 2 0 1 #> 1222 0 0 0 0 #> 1223 1 1 1 1 #> 1224 1 1 0 0 #> 1225 1 0 2 2 #> 1226 0 0 1 1 #> 1227 0 0 1 1 #> 1228 0 0 0 0 #> 1229 0 0 0 0 #> 1230 1 0 1 1 #> 1231 1 0 0 0 #> 1232 0 0 0 0 #> 1233 0 0 0 0 #> 1234 0 0 0 0 #> 1235 0 0 0 0 #> 1236 0 1 0 1 #> 1237 2 2 2 3 #> 1238 1 0 1 4 #> 1239 0 0 1 1 #> 1240 0 0 0 1 #> 1241 0 0 0 0 #> 1242 0 0 0 1 #> 1243 0 0 0 0 #> 1244 0 0 1 1 #> 1245 0 0 0 0 #> 1246 1 1 2 3 #> 1247 1 0 2 2 #> 1248 0 0 0 0 #> 1249 1 0 0 1 #> 1250 0 0 0 0 #> 1251 0 0 0 0 #> 1252 0 1 0 1 #> 1253 0 0 0 0 #> 1254 1 0 0 0 #> 1255 0 0 0 0 #> 1256 5 1 5 10 #> 1257 0 0 0 0 #> 1258 0 0 1 2 #> 1259 0 0 0 0 #> 1260 0 0 0 4 #> 1261 0 0 0 0 #> 1262 0 0 0 2 #> 1263 1 0 0 1 #> 1264 0 0 0 0 #> 1265 1 1 2 2 #> 1266 0 0 0 0 #> 1267 0 0 0 0 #> 1268 0 0 0 2 #> 1269 1 0 2 3 #> 1270 0 0 0 0 #> 1271 0 0 0 0 #> 1272 NA NA NA NA #> 1273 0 0 2 2 #> 1274 0 0 1 1 #> 1275 0 0 0 0 #> 1276 0 0 2 2 #> 1277 0 0 2 4 #> 1278 0 0 1 3 #> 1279 0 0 0 0 #> 1280 0 0 0 0 #> 1281 0 0 0 1 #> 1282 0 0 0 1 #> 1283 0 1 1 1 #> 1284 1 2 1 2 #> 1285 0 2 1 2 #> 1286 1 0 0 0 #> 1287 1 0 1 1 #> 1288 0 1 1 1 #> 1289 0 0 0 2 #> 1290 0 0 0 0 #> 1291 0 0 1 1 #> 1292 0 0 0 0 #> 1293 0 0 0 0 #> 1294 0 0 0 0 #> 1295 1 1 2 3 #> 1296 0 1 0 2 #> 1297 0 0 0 0 #> 1298 0 0 0 0 #> 1299 1 2 3 4 #> 1300 0 0 1 1 #> 1301 0 1 2 3 #> 1302 0 0 0 0 #> 1303 0 0 0 0 #> 1304 0 0 0 0 #> 1305 0 0 0 0 #> 1306 0 0 0 0 #> 1307 0 0 0 0 #> 1308 1 0 3 5 #> 1309 0 0 0 0 #> 1310 0 0 0 0 #> 1311 1 0 1 1 #> 1312 1 0 1 1 #> 1313 0 0 1 3 #> 1314 1 0 4 6 #> 1315 0 0 0 1 #> 1316 0 0 0 0 #> 1317 0 0 0 0 #> 1318 0 0 1 2 #> 1319 0 0 0 0 #> 1320 0 0 0 1 #> 1321 0 0 0 0 #> 1322 1 0 3 8 #> 1323 0 0 0 0 #> 1324 0 0 0 1 #> 1325 0 1 3 4 #> 1326 0 0 0 0 #> 1327 0 0 0 0 #> 1328 0 0 0 0 #> 1329 0 0 0 0 #> 1330 0 0 0 0 #> 1331 0 1 1 1 #> 1332 0 0 0 0 #> 1333 0 0 0 1 #> 1334 0 0 0 2 #> 1335 3 0 2 3 #> 1336 0 0 0 0 #> 1337 1 0 1 1 #> 1338 0 0 0 0 #> 1339 0 0 0 0 #> 1340 0 0 0 0 #> 1341 0 0 0 0 #> 1342 0 0 0 0 #> 1343 0 0 1 2 #> 1344 0 0 0 0 #> 1345 1 0 1 1 #> 1346 0 0 0 1 #> 1347 0 0 0 0 #> 1348 1 0 1 2 #> 1349 4 0 3 3 #> 1350 1 0 1 1 #> 1351 0 0 0 0 #> 1352 1 0 1 2 #> 1353 0 0 0 0 #> 1354 1 0 1 2 #> 1355 0 0 0 0 #> 1356 0 0 0 1 #> 1357 1 0 1 3 #> 1358 0 0 0 0 #> 1359 1 0 0 1 #> 1360 0 0 0 2 #> 1361 1 0 1 2 #> 1362 1 0 1 1 #> 1363 1 0 0 3 #> 1364 1 0 1 1 #> 1365 2 1 3 4 #> 1366 1 0 0 1 #> 1367 0 0 1 2 #> 1368 0 0 0 2 #> 1369 1 0 0 1 #> 1370 0 0 0 1 #> 1371 0 0 0 0 #> 1372 0 0 0 0 #> 1373 1 0 1 1 #> 1374 0 1 0 0 #> 1375 0 0 0 0 #> 1376 1 2 1 4 #> 1377 0 0 0 0 #> 1378 2 0 0 2 #> 1379 0 1 0 1 #> 1380 0 0 0 0 #> 1381 0 0 0 0 #> 1382 0 0 0 1 #> 1383 0 0 0 1 #> 1384 2 0 2 2 #> 1385 0 0 0 0 #> 1386 0 0 0 0 #> 1387 0 0 1 6 #> 1388 0 0 0 0 #> 1389 0 0 0 1 #> 1390 0 0 0 0 #> 1391 2 0 3 5 #> 1392 0 0 0 1 #> 1393 0 0 2 3 #> 1394 0 0 1 1 #> 1395 1 0 0 4 #> 1396 1 0 0 0 #> 1397 0 0 0 0 #> 1398 1 0 0 2 #> 1399 0 0 0 1 #> 1400 0 0 0 1 #> 1401 0 0 2 5 #> 1402 0 0 0 0 #> 1403 2 1 3 3 #> 1404 0 0 0 0 #> 1405 1 0 1 2 #> 1406 0 0 0 0 #> 1407 0 0 0 0 #> 1408 1 0 1 2 #> 1409 0 0 0 0 #> 1410 1 0 0 0 #> 1411 1 1 0 0 #> 1412 2 2 2 3 #> 1413 1 0 1 2 #> 1414 0 0 0 0 #> 1415 0 0 0 0 #> 1416 0 0 0 1 #> 1417 0 0 0 0 #> 1418 0 0 0 0 #> 1419 0 0 0 0 #> 1420 0 0 0 0 #> 1421 2 2 3 4 #> 1422 0 0 0 1 #> 1423 0 0 0 0 #> 1424 1 0 0 1 #> 1425 0 0 0 1 #> 1426 0 0 0 2 #> 1427 1 0 0 0 #> 1428 0 0 1 2 #> 1429 0 0 0 0 #> 1430 0 0 1 1 #> 1431 0 0 0 0 #> 1432 1 0 0 0 #> 1433 0 0 1 1 #> 1434 0 0 0 0 #> 1435 0 0 0 0 #> 1436 0 0 0 0 #> 1437 0 0 0 1 #> 1438 1 0 1 1 #> 1439 1 0 2 2 #> 1440 1 0 0 0 #> 1441 0 1 0 0 #> 1442 0 0 0 0 #> 1443 1 0 0 2 #> 1444 0 0 0 0 #> 1445 1 0 0 0 #> 1446 0 0 0 0 #> 1447 1 0 2 2 #> 1448 2 2 1 3 #> 1449 0 0 0 0 #> 1450 0 0 0 0 #> 1451 0 0 0 0 #> 1452 0 0 0 1 #> 1453 0 0 0 0 #> 1454 2 0 1 1 #> 1455 1 0 0 0 #> 1456 0 0 0 2 #> 1457 0 0 0 0 #> 1458 0 0 0 1 #> 1459 4 0 1 1 #> 1460 0 0 0 1 #> 1461 0 0 0 0 #> 1462 1 0 0 0 #> 1463 1 0 1 1 #> 1464 0 0 0 0 #> 1465 0 0 0 0 #> 1466 0 0 0 1 #> 1467 0 0 0 0 #> 1468 0 0 0 0 #> 1469 0 0 0 0 #> 1470 1 1 1 4 #> 1471 0 0 0 2 #> 1472 0 0 0 0 #> 1473 1 0 2 3 #> 1474 0 0 0 1 #> 1475 1 0 3 4 #> 1476 1 0 1 2 #> 1477 1 0 1 1 #> 1478 1 0 1 1 #> 1479 0 0 0 0 #> 1480 0 0 0 0 #> 1481 0 0 0 0 #> 1482 0 1 1 2 #> 1483 0 0 0 0 #> 1484 2 1 1 2 #> 1485 0 0 0 4 #> 1486 0 0 0 0 #> 1487 0 0 0 0 #> 1488 0 0 1 1 #> 1489 0 0 0 1 #> 1490 2 0 1 1 #> 1491 0 0 0 0 #> 1492 0 0 0 0 #> 1493 1 1 3 3 #> 1494 0 0 0 1 #> 1495 0 0 0 0 #> 1496 0 0 1 1 #> 1497 0 0 0 0 #> 1498 0 0 0 1 #> 1499 0 0 0 0 #> 1500 0 0 0 0 #> 1501 0 0 0 0 #> 1502 2 0 3 4 #> 1503 0 0 0 0 #> 1504 0 0 0 0 #> 1505 2 0 1 1 #> 1506 0 0 0 2 #> 1507 0 0 1 1 #> 1508 0 0 0 0 #> 1509 0 0 2 2 #> 1510 0 0 0 3 #> 1511 0 0 0 0 #> 1512 0 0 0 0 #> 1513 0 0 0 0 #> 1514 0 0 0 1 #> 1515 0 0 0 0 #> 1516 0 0 0 1 #> 1517 0 0 0 0 #> 1518 0 0 0 1 #> 1519 0 0 0 0 #> 1520 0 1 0 0 #> 1521 0 0 0 0 #> 1522 1 0 2 3 #> 1523 0 0 1 1 #> 1524 0 0 0 0 #> 1525 0 0 0 0 #> 1526 1 2 3 4 #> 1527 0 0 0 0 #> 1528 0 0 0 1 #> 1529 0 0 0 0 #> 1530 3 2 1 2 #> 1531 0 0 0 0 #> 1532 2 1 1 2 #> 1533 0 0 0 0 #> 1534 1 0 0 1 #> 1535 1 0 1 1 #> 1536 0 0 0 0 #> 1537 0 1 1 1 #> 1538 0 0 0 1 #> 1539 1 0 0 0 #> 1540 0 0 1 1 #> 1541 0 0 0 0 #> 1542 0 1 0 0 #> 1543 0 0 0 0 #> 1544 0 0 0 1 #> 1545 0 0 0 1 #> 1546 1 0 1 1 #> 1547 0 0 0 0 #> 1548 0 0 0 0 #> 1549 1 1 0 0 #> 1550 0 0 0 0 #> 1551 2 0 1 1 #> 1552 0 0 0 2 #> 1553 0 0 0 0 #> 1554 1 0 4 7 #> 1555 0 0 0 0 #> 1556 0 0 0 0 #> 1557 1 0 2 2 #> 1558 0 0 1 1 #> 1559 0 0 0 0 #> 1560 0 0 0 0 #> 1561 0 0 0 0 #> 1562 0 0 0 0 #> 1563 0 0 0 0 #> 1564 1 0 1 2 #> 1565 1 0 2 2 #> 1566 0 0 0 0 #> 1567 0 0 0 1 #> 1568 1 0 1 1 #> 1569 2 0 1 2 #> 1570 1 0 0 0 #> 1571 0 0 0 0 #> 1572 0 0 0 0 #> 1573 0 0 0 2 #> 1574 0 0 0 1 #> 1575 0 2 2 3 #> 1576 0 0 0 0 #> 1577 0 0 0 0 #> 1578 0 0 0 1 #> 1579 0 1 0 0 #> 1580 0 1 2 4 #> 1581 0 0 1 1 #> 1582 0 0 0 0 #> 1583 2 0 0 1 #> 1584 2 0 1 1 #> 1585 1 0 1 1 #> 1586 0 0 0 0 #> 1587 0 0 0 0 #> 1588 1 0 0 0 #> 1589 0 0 0 0 #> 1590 0 0 0 0 #> 1591 0 0 0 1 #> 1592 0 0 0 0 #> 1593 0 0 0 1 #> 1594 0 0 0 0 #> 1595 0 0 0 0 #> 1596 0 1 0 1 #> 1597 0 0 0 2 #> 1598 3 1 3 3 #> 1599 0 0 0 1 #> 1600 1 0 0 0 #> 1601 0 0 0 0 #> 1602 0 1 1 1 #> 1603 1 0 1 1 #> 1604 1 0 0 0 #> 1605 1 1 1 1 #> 1606 0 0 0 0 #> 1607 0 0 0 0 #> 1608 0 0 0 0 #> 1609 0 0 0 1 #> 1610 0 0 0 1 #> 1611 1 0 0 0 #> 1612 2 0 3 3 #> 1613 0 0 2 4 #> 1614 0 0 2 4 #> 1615 0 0 0 0 #> 1616 0 0 1 2 #> 1617 0 0 0 0 #> 1618 0 0 0 0 #> 1619 0 0 0 0 #> 1620 0 0 0 0 #> 1621 1 0 1 1 #> 1622 0 0 1 1 #> 1623 0 0 0 1 #> 1624 0 0 0 0 #> 1625 1 0 0 0 #> 1626 0 0 0 1 #> 1627 0 0 0 0 #> 1628 0 1 1 1 #> 1629 0 0 0 1 #> 1630 NA NA NA NA #> 1631 2 0 0 0 #> 1632 0 1 1 2 #> 1633 0 0 0 0 #> 1634 0 0 0 0 #> 1635 1 0 1 1 #> 1636 0 0 0 0 #> 1637 2 0 3 3 #> 1638 0 0 0 0 #> 1639 0 0 0 1 #> 1640 0 1 0 0 #> 1641 0 0 0 0 #> 1642 2 0 1 2 #> 1643 0 1 0 3 #> 1644 0 1 0 1 #> 1645 0 0 0 0 #> 1646 0 0 0 0 #> 1647 1 0 1 1 #> 1648 1 0 1 1 #> 1649 0 0 1 1 #> 1650 0 0 0 1 #> 1651 0 0 1 2 #> 1652 0 0 0 0 #> 1653 1 0 0 0 #> 1654 0 0 0 0 #> 1655 0 0 0 1 #> 1656 0 0 0 0 #> 1657 0 1 3 4 #> 1658 0 0 0 0 #> 1659 1 0 1 1 #> 1660 0 0 0 1 #> 1661 0 0 0 0 #> 1662 1 0 1 3 #> 1663 0 0 1 2 #> 1664 1 0 0 0 #> 1665 0 0 0 1 #> 1666 0 0 0 1 #> 1667 3 0 1 3 #> 1668 0 0 0 0 #> 1669 0 0 0 0 #> 1670 1 0 0 0 #> 1671 1 1 0 2 #> 1672 0 0 0 1 #> 1673 0 0 0 0 #> 1674 0 0 0 0 #> 1675 1 0 1 5 #> 1676 0 1 1 1 #> 1677 4 0 1 1 #> 1678 0 0 0 0 #> 1679 0 0 0 1 #> 1680 0 0 0 1 #> 1681 0 1 0 0 #> 1682 0 0 0 0 #> 1683 1 0 0 1 #> 1684 0 0 0 0 #> 1685 0 0 0 0 #> 1686 0 0 0 0 #> 1687 0 0 0 3 #> 1688 0 0 0 0 #> 1689 1 0 0 0 #> 1690 0 0 1 1 #> 1691 1 0 0 0 #> 1692 0 0 0 1 #> 1693 1 0 0 0 #> 1694 0 0 1 1 #> 1695 0 0 0 0 #> 1696 0 0 0 0 #> 1697 0 1 2 2 #> 1698 0 1 0 0 #> 1699 1 0 1 1 #> 1700 0 0 0 0 #> 1701 0 0 0 0 #> 1702 0 0 0 0 #> 1703 0 0 0 1 #> 1704 0 0 0 0 #> 1705 1 0 0 0 #> 1706 0 0 1 1 #> 1707 0 0 0 2 #> 1708 0 1 1 3 #> 1709 0 0 0 0 #> 1710 1 0 0 1 #> 1711 0 0 1 2 #> 1712 0 0 0 0 #> 1713 0 0 0 0 #> 1714 0 0 1 1 #> 1715 0 0 0 0 #> 1716 0 0 0 0 #> 1717 0 0 0 1 #> 1718 0 0 1 1 #> 1719 3 1 1 1 #> 1720 0 0 0 1 #> 1721 0 1 0 0 #> 1722 0 0 0 1 #> 1723 1 1 0 1 #> 1724 0 0 0 1 #> 1725 0 2 2 2 #> 1726 0 0 0 2 #> 1727 1 1 3 3 #> 1728 0 0 0 0 #> 1729 1 0 1 1 #> 1730 1 0 1 1 #> 1731 0 0 0 0 #> 1732 0 0 0 0 #> 1733 1 0 0 1 #> 1734 0 2 2 3 #> 1735 0 0 0 1 #> 1736 0 0 0 1 #> 1737 0 1 1 3 #> 1738 1 0 1 1 #> 1739 0 0 0 0 #> 1740 1 0 0 2 #> 1741 0 0 1 4 #> 1742 0 0 0 0 #> 1743 0 0 0 0 #> 1744 0 1 0 1 #> 1745 0 0 1 3 #> 1746 1 0 0 0 #> 1747 0 0 0 1 #> 1748 0 0 0 0 #> 1749 1 0 0 0 #> 1750 0 0 0 1 #> 1751 1 0 0 1 #> 1752 0 0 0 1 #> 1753 0 0 0 0 #> 1754 0 0 0 0 #> 1755 2 0 0 1 #> 1756 2 1 2 2 #> 1757 0 0 0 1 #> 1758 2 0 0 1 #> 1759 1 0 1 1 #> 1760 0 0 0 0 #> 1761 1 0 1 1 #> 1762 0 0 4 5 #> 1763 0 0 1 1 #> 1764 1 0 0 1 #> 1765 0 0 0 0 #> 1766 1 0 0 3 #> 1767 0 0 0 0 #> 1768 0 1 0 0 #> 1769 0 0 0 0 #> 1770 0 0 0 0 #> 1771 4 0 2 4 #> 1772 2 0 0 0 #> 1773 0 1 0 0 #> 1774 0 0 0 0 #> 1775 2 0 0 1 #> 1776 0 0 1 1 #> 1777 0 0 0 0 #> 1778 0 0 0 0 #> 1779 0 0 0 0 #> 1780 1 2 1 1 #> 1781 0 0 0 1 #> 1782 0 0 0 0 #> 1783 0 0 0 1 #> 1784 0 0 0 0 #> 1785 0 0 0 0 #> 1786 2 1 1 2 #> 1787 0 0 0 0 #> 1788 1 0 0 0 #> 1789 1 0 0 0 #> 1790 0 0 0 0 #> 1791 1 0 0 0 #> 1792 0 1 0 1 #> 1793 0 0 0 0 #> 1794 0 0 0 0 #> 1795 0 0 0 0 #> 1796 1 0 1 1 #> 1797 0 0 0 0 #> 1798 2 0 0 3 #> 1799 0 0 0 0 #> 1800 1 3 0 0 #> 1801 1 0 1 2 #> 1802 0 0 1 1 #> 1803 0 0 0 1 #> 1804 0 0 1 1 #> 1805 0 0 0 1 #> 1806 0 0 0 0 #> 1807 2 0 0 0 #> 1808 0 0 0 0 #> 1809 0 0 0 1 #> 1810 0 0 0 0 #> 1811 0 0 0 2 #> 1812 1 0 0 2 #> 1813 0 0 0 0 #> 1814 0 0 1 3 #> 1815 0 0 0 0 #> 1816 1 0 1 2 #> 1817 1 0 1 1 #> 1818 1 0 0 0 #> 1819 0 0 0 0 #> 1820 0 0 1 2 #> 1821 1 0 0 0 #> 1822 0 0 0 0 #> 1823 2 0 2 3 #> 1824 0 0 0 0 #> 1825 1 0 0 0 #> 1826 0 1 0 1 #> 1827 0 0 0 4 #> 1828 1 0 0 0 #> 1829 1 0 1 2 #> 1830 1 0 1 1 #> 1831 2 0 1 3 #> 1832 0 0 0 0 #> 1833 0 0 0 0 #> 1834 0 0 1 3 #> 1835 0 0 0 0 #> 1836 0 0 0 1 #> 1837 0 0 2 2 #> 1838 1 0 0 0 #> 1839 0 0 0 0 #> 1840 0 0 0 0 #> 1841 1 0 1 3 #> 1842 0 0 0 0 #> 1843 0 0 0 0 #> 1844 0 1 0 0 #> 1845 0 0 0 0 #> 1846 2 1 3 4 #> 1847 0 0 0 0 #> 1848 0 1 0 2 #> 1849 0 0 0 0 #> 1850 1 0 0 0 #> 1851 0 0 0 0 #> 1852 0 0 2 2 #> 1853 0 0 0 0 #> 1854 1 0 2 2 #> 1855 0 0 0 0 #> 1856 0 0 0 0 #> 1857 0 0 0 0 #> 1858 0 0 0 0 #> 1859 0 0 0 0 #> 1860 0 0 0 2 #> 1861 1 0 0 0 #> 1862 0 0 0 0 #> 1863 0 0 0 0 #> 1864 0 0 0 0 #> 1865 0 0 0 0 #> 1866 1 0 3 4 #> 1867 0 0 2 3 #> 1868 0 0 1 3 #> 1869 0 0 1 1 #> 1870 0 0 1 1 #> 1871 0 0 0 0 #> 1872 0 2 1 1 #> 1873 0 0 0 1 #> 1874 1 0 0 0 #> 1875 0 0 0 1 #> 1876 0 0 0 0 #> 1877 3 0 1 5 #> 1878 0 0 0 1 #> 1879 1 1 0 1 #> 1880 0 0 0 0 #> 1881 3 0 1 3 #> 1882 0 0 0 0 #> 1883 0 1 1 1 #> 1884 0 0 0 0 #> 1885 0 0 0 0 #> 1886 0 1 2 2 #> 1887 0 0 0 0 #> 1888 0 0 0 0 #> 1889 0 0 0 0 #> 1890 0 1 2 3 #> 1891 0 0 0 0 #> 1892 0 0 0 0 #> 1893 1 0 0 1 #> 1894 1 0 3 3 #> 1895 1 1 2 2 #> 1896 0 0 0 0 #> 1897 2 0 1 1 #> 1898 0 0 1 2 #> 1899 0 0 1 1 #> 1900 0 0 0 0 #> 1901 0 0 0 0 #> 1902 0 0 0 0 #> 1903 1 0 0 0 #> 1904 0 0 0 2 #> 1905 0 0 0 0 #> 1906 0 0 0 0 #> 1907 1 0 0 1 #> 1908 0 0 0 0 #> 1909 0 0 0 3 #> 1910 1 0 2 5 #> 1911 0 0 0 0 #> 1912 1 0 2 3 #> 1913 0 0 1 1 #> 1914 1 0 1 1 #> 1915 1 0 0 0 #> 1916 0 0 0 0 #> 1917 1 0 1 1 #> 1918 0 0 0 0 #> 1919 0 0 0 0 #> 1920 0 0 0 0 #> 1921 0 0 0 0 #> 1922 0 0 0 0 #> 1923 0 0 1 2 #> 1924 0 0 0 1 #> 1925 1 1 1 1 #> 1926 1 0 0 2 #> 1927 0 0 0 0 #> 1928 0 0 0 0 #> 1929 0 0 0 0 #> 1930 0 0 0 0 #> 1931 1 0 4 5 #> 1932 0 0 0 0 #> 1933 0 0 0 1 #> 1934 0 0 0 0 #> 1935 0 3 1 5 #> 1936 0 0 0 1 #> 1937 0 0 0 0 #> 1938 0 0 0 1 #> 1939 2 1 1 3 #> 1940 0 0 0 2 #> 1941 0 0 0 0 #> 1942 0 0 0 0 #> 1943 0 0 0 0 #> 1944 1 0 0 0 #> 1945 0 0 0 0 #> 1946 0 0 0 0 #> 1947 1 3 2 2 #> 1948 0 0 1 1 #> 1949 0 1 0 0 #> 1950 0 0 0 0 #> 1951 0 0 0 1 #> 1952 0 0 0 0 #> 1953 0 0 0 0 #> 1954 0 0 0 0 #> 1955 0 0 0 0 #> 1956 0 0 0 0 #> 1957 0 0 0 0 #> 1958 0 0 0 0 #> 1959 2 0 0 1 #> 1960 0 0 1 2 #> 1961 0 0 1 1 #> 1962 2 0 0 0 #> 1963 0 0 0 0 #> 1964 0 0 0 0 #> 1965 0 0 0 0 #> 1966 2 0 1 3 #> 1967 2 0 0 2 #> 1968 0 1 0 0 #> 1969 1 0 1 1 #> 1970 0 0 0 0 #> 1971 0 0 0 0 #> 1972 0 0 2 2 #> 1973 1 0 1 1 #> 1974 0 0 0 0 #> 1975 0 0 0 0 #> 1976 1 0 0 0 #> 1977 1 0 1 2 #> 1978 0 0 0 0 #> 1979 0 2 2 2 #> 1980 1 1 2 2 #> 1981 0 0 0 2 #> 1982 0 0 0 0 #> 1983 0 0 0 0 #> 1984 1 0 0 1 #> 1985 1 0 0 0 #> 1986 0 0 0 1 #> 1987 0 0 0 1 #> 1988 0 0 0 0 #> 1989 0 0 0 0 #> 1990 0 0 1 1 #> 1991 0 0 0 0 #> 1992 0 0 1 3 #> 1993 0 0 0 0 #> 1994 0 0 0 0 #> 1995 1 0 0 0 #> 1996 0 0 0 1 #> 1997 0 0 0 1 #> 1998 2 0 0 0 #> 1999 0 1 0 0 #> 2000 0 2 1 2 #> 2001 0 0 0 0 #> 2002 0 1 0 0 #> 2003 0 0 0 0 #> 2004 0 0 1 1 #> 2005 0 0 0 1 #> 2006 0 0 0 0 #> 2007 1 0 3 4 #> 2008 0 0 0 0 #> 2009 0 0 0 0 #> 2010 0 0 0 0 #> 2011 0 0 0 0 #> 2012 0 0 0 0 #> 2013 0 0 0 0 #> 2014 0 1 0 0 #> 2015 0 0 0 0 #> 2016 0 0 0 0 #> 2017 NA NA NA NA #> 2018 0 0 0 1 #> 2019 0 0 1 1 #> 2020 1 0 1 2 #> 2021 2 0 1 1 #> 2022 0 0 1 1 #> 2023 0 0 0 1 #> 2024 1 0 1 1 #> 2025 0 0 0 0 #> 2026 0 1 1 1 #> 2027 1 1 0 0 #> 2028 0 0 0 1 #> 2029 0 0 0 0 #> 2030 0 0 1 2 #> 2031 1 0 1 1 #> 2032 0 0 0 1 #> 2033 0 1 0 1 #> 2034 0 0 0 3 #> 2035 0 0 0 1 #> 2036 1 0 0 3 #> 2037 0 0 0 1 #> 2038 0 0 0 0 #> 2039 0 2 1 1 #> 2040 0 0 1 1 #> Tkl_percent_Challenges Lost_Challenges Blocks_Blocks Sh_Blocks Pass_Blocks #> 1 0.0 1 1 0 1 #> 2 NA 0 1 0 1 #> 3 0.0 1 0 0 0 #> 4 NA 0 0 0 0 #> 5 NA 0 0 0 0 #> 6 100.0 0 0 0 0 #> 7 33.3 2 0 0 0 #> 8 0.0 1 0 0 0 #> 9 0.0 1 0 0 0 #> 10 NA 0 1 1 0 #> 11 100.0 0 1 1 0 #> 12 NA 0 1 1 0 #> 13 100.0 0 0 0 0 #> 14 NA 0 1 0 1 #> 15 NA 0 0 0 0 #> 16 NA 0 0 0 0 #> 17 NA 0 0 0 0 #> 18 100.0 0 0 0 0 #> 19 100.0 0 0 0 0 #> 20 NA 0 0 0 0 #> 21 NA 0 0 0 0 #> 22 NA 0 1 0 1 #> 23 NA 0 1 1 0 #> 24 NA 0 0 0 0 #> 25 100.0 0 1 1 0 #> 26 NA 0 0 0 0 #> 27 100.0 0 2 0 2 #> 28 100.0 0 0 0 0 #> 29 NA 0 0 0 0 #> 30 50.0 1 1 1 0 #> 31 0.0 2 0 0 0 #> 32 NA 0 0 0 0 #> 33 100.0 0 1 0 1 #> 34 0.0 1 0 0 0 #> 35 NA 0 1 0 1 #> 36 40.0 3 1 0 1 #> 37 NA 0 0 0 0 #> 38 50.0 1 1 0 1 #> 39 NA 0 0 0 0 #> 40 0.0 2 0 0 0 #> 41 0.0 1 1 1 0 #> 42 25.0 3 0 0 0 #> 43 50.0 1 1 0 1 #> 44 NA 0 2 2 0 #> 45 NA 0 0 0 0 #> 46 100.0 0 0 0 0 #> 47 NA 0 0 0 0 #> 48 NA 0 0 0 0 #> 49 0.0 1 1 0 1 #> 50 100.0 0 1 0 1 #> 51 100.0 0 0 0 0 #> 52 0.0 1 1 0 1 #> 53 NA 0 1 0 1 #> 54 NA 0 1 1 0 #> 55 100.0 0 0 0 0 #> 56 0.0 1 0 0 0 #> 57 NA 0 0 0 0 #> 58 NA 0 0 0 0 #> 59 NA 0 0 0 0 #> 60 NA 0 1 1 0 #> 61 50.0 1 1 0 1 #> 62 NA 0 0 0 0 #> 63 NA 0 0 0 0 #> 64 NA 0 0 0 0 #> 65 20.0 4 0 0 0 #> 66 100.0 0 0 0 0 #> 67 NA 0 2 0 2 #> 68 25.0 3 0 0 0 #> 69 NA 0 0 0 0 #> 70 0.0 1 3 0 3 #> 71 0.0 1 1 0 1 #> 72 50.0 2 1 1 0 #> 73 20.0 4 0 0 0 #> 74 100.0 0 0 0 0 #> 75 NA 0 0 0 0 #> 76 NA 0 2 1 1 #> 77 100.0 0 1 0 1 #> 78 NA 0 0 0 0 #> 79 0.0 2 2 0 2 #> 80 NA 0 0 0 0 #> 81 0.0 1 0 0 0 #> 82 100.0 0 1 0 1 #> 83 NA 0 0 0 0 #> 84 33.3 2 2 1 1 #> 85 NA 0 0 0 0 #> 86 33.3 4 2 0 2 #> 87 0.0 1 0 0 0 #> 88 0.0 1 0 0 0 #> 89 100.0 0 0 0 0 #> 90 NA 0 0 0 0 #> 91 75.0 1 0 0 0 #> 92 NA 0 0 0 0 #> 93 NA 0 0 0 0 #> 94 50.0 1 2 0 2 #> 95 0.0 2 0 0 0 #> 96 100.0 0 0 0 0 #> 97 NA 0 1 0 1 #> 98 NA 0 0 0 0 #> 99 NA 0 0 0 0 #> 100 NA 0 0 0 0 #> 101 50.0 1 1 0 1 #> 102 NA 0 0 0 0 #> 103 50.0 1 0 0 0 #> 104 NA 0 0 0 0 #> 105 0.0 1 2 0 2 #> 106 NA 0 1 0 1 #> 107 NA 0 0 0 0 #> 108 50.0 1 0 0 0 #> 109 NA 0 0 0 0 #> 110 NA 0 0 0 0 #> 111 NA 0 0 0 0 #> 112 NA 0 1 0 1 #> 113 100.0 0 0 0 0 #> 114 0.0 2 0 0 0 #> 115 0.0 1 0 0 0 #> 116 NA 0 0 0 0 #> 117 40.0 3 4 3 1 #> 118 0.0 1 1 0 1 #> 119 NA 0 1 0 1 #> 120 100.0 0 3 1 2 #> 121 NA 0 1 1 0 #> 122 NA 0 2 2 0 #> 123 NA 0 0 0 0 #> 124 NA 0 0 0 0 #> 125 NA 0 0 0 0 #> 126 NA 0 1 0 1 #> 127 NA 0 0 0 0 #> 128 NA 0 2 0 2 #> 129 100.0 0 2 0 2 #> 130 100.0 0 1 0 1 #> 131 NA 0 1 0 1 #> 132 75.0 1 1 0 1 #> 133 NA 0 2 0 2 #> 134 0.0 1 0 0 0 #> 135 40.0 3 1 0 1 #> 136 50.0 1 2 1 1 #> 137 100.0 0 4 3 1 #> 138 0.0 1 2 1 1 #> 139 50.0 1 0 0 0 #> 140 NA 0 0 0 0 #> 141 0.0 2 0 0 0 #> 142 0.0 1 1 0 1 #> 143 NA 0 0 0 0 #> 144 NA 0 1 0 1 #> 145 100.0 0 1 0 1 #> 146 100.0 0 0 0 0 #> 147 25.0 3 2 2 0 #> 148 NA 0 1 0 1 #> 149 100.0 0 1 0 1 #> 150 NA 0 0 0 0 #> 151 33.3 2 0 0 0 #> 152 NA 0 0 0 0 #> 153 NA 0 0 0 0 #> 154 50.0 1 3 1 2 #> 155 50.0 1 0 0 0 #> 156 NA 0 0 0 0 #> 157 100.0 0 0 0 0 #> 158 100.0 0 0 0 0 #> 159 33.3 2 0 0 0 #> 160 NA 0 0 0 0 #> 161 0.0 1 2 0 2 #> 162 0.0 1 0 0 0 #> 163 NA 0 0 0 0 #> 164 NA 0 0 0 0 #> 165 NA NA NA NA NA #> 166 100.0 0 1 0 1 #> 167 NA 0 1 0 1 #> 168 NA 0 0 0 0 #> 169 0.0 1 1 1 0 #> 170 100.0 0 3 1 2 #> 171 33.3 2 0 0 0 #> 172 NA 0 0 0 0 #> 173 NA 0 2 1 1 #> 174 NA 0 1 0 1 #> 175 NA 0 1 0 1 #> 176 33.3 2 0 0 0 #> 177 50.0 1 3 1 2 #> 178 NA 0 1 1 0 #> 179 100.0 0 0 0 0 #> 180 50.0 1 1 0 1 #> 181 NA 0 0 0 0 #> 182 50.0 1 2 1 1 #> 183 NA 0 0 0 0 #> 184 66.7 1 0 0 0 #> 185 0.0 1 1 1 0 #> 186 NA 0 1 0 1 #> 187 75.0 1 3 2 1 #> 188 NA 0 0 0 0 #> 189 NA 0 1 0 1 #> 190 NA 0 0 0 0 #> 191 0.0 1 1 0 1 #> 192 NA 0 0 0 0 #> 193 20.0 4 1 1 0 #> 194 100.0 0 1 0 1 #> 195 NA 0 0 0 0 #> 196 50.0 1 1 1 0 #> 197 50.0 1 0 0 0 #> 198 NA 0 0 0 0 #> 199 NA 0 2 2 0 #> 200 100.0 0 3 3 0 #> 201 50.0 1 6 3 3 #> 202 NA 0 0 0 0 #> 203 50.0 1 3 0 3 #> 204 NA 0 0 0 0 #> 205 NA 0 0 0 0 #> 206 0.0 1 0 0 0 #> 207 NA 0 0 0 0 #> 208 NA 0 0 0 0 #> 209 0.0 2 2 0 2 #> 210 NA 0 0 0 0 #> 211 100.0 0 0 0 0 #> 212 NA 0 0 0 0 #> 213 NA 0 0 0 0 #> 214 0.0 2 1 0 1 #> 215 50.0 1 0 0 0 #> 216 NA 0 1 0 1 #> 217 NA 0 1 1 0 #> 218 NA 0 1 0 1 #> 219 100.0 0 0 0 0 #> 220 NA 0 0 0 0 #> 221 NA 0 0 0 0 #> 222 NA 0 0 0 0 #> 223 0.0 1 0 0 0 #> 224 NA 0 0 0 0 #> 225 100.0 0 0 0 0 #> 226 NA 0 0 0 0 #> 227 NA 0 0 0 0 #> 228 NA 0 0 0 0 #> 229 100.0 0 1 0 1 #> 230 0.0 1 0 0 0 #> 231 0.0 1 0 0 0 #> 232 0.0 1 2 1 1 #> 233 100.0 0 0 0 0 #> 234 100.0 0 0 0 0 #> 235 0.0 2 1 1 0 #> 236 NA 0 0 0 0 #> 237 NA 0 1 0 1 #> 238 NA 0 0 0 0 #> 239 100.0 0 0 0 0 #> 240 33.3 2 0 0 0 #> 241 0.0 1 2 1 1 #> 242 NA 0 0 0 0 #> 243 NA 0 0 0 0 #> 244 33.3 2 1 1 0 #> 245 NA 0 0 0 0 #> 246 0.0 2 0 0 0 #> 247 100.0 0 2 1 1 #> 248 0.0 1 1 1 0 #> 249 100.0 0 3 2 1 #> 250 NA 0 2 1 1 #> 251 NA 0 0 0 0 #> 252 NA 0 0 0 0 #> 253 NA 0 0 0 0 #> 254 NA 0 0 0 0 #> 255 NA 0 0 0 0 #> 256 50.0 2 0 0 0 #> 257 NA 0 1 1 0 #> 258 0.0 1 1 0 1 #> 259 0.0 3 1 0 1 #> 260 50.0 1 0 0 0 #> 261 NA 0 1 0 1 #> 262 100.0 0 1 1 0 #> 263 NA 0 0 0 0 #> 264 NA 0 2 2 0 #> 265 50.0 1 2 1 1 #> 266 NA 0 0 0 0 #> 267 NA 0 0 0 0 #> 268 NA 0 0 0 0 #> 269 NA 0 0 0 0 #> 270 NA 0 0 0 0 #> 271 0.0 2 1 1 0 #> 272 NA 0 0 0 0 #> 273 50.0 1 0 0 0 #> 274 NA 0 0 0 0 #> 275 NA 0 0 0 0 #> 276 80.0 1 0 0 0 #> 277 100.0 0 0 0 0 #> 278 50.0 1 1 0 1 #> 279 NA 0 0 0 0 #> 280 100.0 0 0 0 0 #> 281 100.0 0 1 0 1 #> 282 NA 0 0 0 0 #> 283 100.0 0 1 1 0 #> 284 NA 0 0 0 0 #> 285 100.0 0 1 0 1 #> 286 100.0 0 1 0 1 #> 287 NA 0 0 0 0 #> 288 0.0 1 0 0 0 #> 289 NA 0 0 0 0 #> 290 0.0 2 1 0 1 #> 291 50.0 1 4 0 4 #> 292 100.0 0 0 0 0 #> 293 0.0 1 0 0 0 #> 294 100.0 0 0 0 0 #> 295 NA 0 1 1 0 #> 296 100.0 0 0 0 0 #> 297 NA 0 0 0 0 #> 298 NA 0 0 0 0 #> 299 0.0 1 1 0 1 #> 300 NA 0 1 1 0 #> 301 0.0 2 0 0 0 #> 302 0.0 1 0 0 0 #> 303 16.7 5 0 0 0 #> 304 NA 0 0 0 0 #> 305 50.0 1 1 0 1 #> 306 NA 0 4 2 2 #> 307 NA 0 0 0 0 #> 308 33.3 4 0 0 0 #> 309 100.0 0 2 1 1 #> 310 50.0 1 0 0 0 #> 311 66.7 1 0 0 0 #> 312 0.0 1 0 0 0 #> 313 NA 0 0 0 0 #> 314 NA 0 0 0 0 #> 315 NA 0 3 1 2 #> 316 NA 0 1 0 1 #> 317 100.0 0 0 0 0 #> 318 100.0 0 0 0 0 #> 319 NA 0 0 0 0 #> 320 0.0 2 0 0 0 #> 321 NA 0 0 0 0 #> 322 NA 0 0 0 0 #> 323 NA 0 0 0 0 #> 324 100.0 0 0 0 0 #> 325 NA 0 0 0 0 #> 326 NA 0 0 0 0 #> 327 NA 0 0 0 0 #> 328 NA 0 0 0 0 #> 329 NA 0 0 0 0 #> 330 0.0 1 2 0 2 #> 331 NA 0 0 0 0 #> 332 NA 0 0 0 0 #> 333 100.0 0 0 0 0 #> 334 NA 0 0 0 0 #> 335 NA 0 0 0 0 #> 336 100.0 0 1 1 0 #> 337 33.3 2 0 0 0 #> 338 100.0 0 0 0 0 #> 339 0.0 1 1 1 0 #> 340 NA 0 1 0 1 #> 341 33.3 2 3 0 3 #> 342 100.0 0 1 1 0 #> 343 NA 0 1 1 0 #> 344 50.0 1 0 0 0 #> 345 NA 0 0 0 0 #> 346 NA 0 0 0 0 #> 347 NA 0 0 0 0 #> 348 NA 0 2 0 2 #> 349 100.0 0 0 0 0 #> 350 66.7 1 3 0 3 #> 351 66.7 1 0 0 0 #> 352 NA 0 1 0 1 #> 353 NA 0 0 0 0 #> 354 100.0 0 0 0 0 #> 355 0.0 1 0 0 0 #> 356 50.0 1 0 0 0 #> 357 NA 0 0 0 0 #> 358 NA 0 1 0 1 #> 359 100.0 0 0 0 0 #> 360 0.0 1 1 0 1 #> 361 NA 0 0 0 0 #> 362 0.0 1 0 0 0 #> 363 NA 0 0 0 0 #> 364 NA 0 1 0 1 #> 365 0.0 1 0 0 0 #> 366 NA 0 0 0 0 #> 367 0.0 2 2 1 1 #> 368 0.0 1 0 0 0 #> 369 0.0 1 0 0 0 #> 370 NA 0 0 0 0 #> 371 66.7 1 1 0 1 #> 372 100.0 0 3 0 3 #> 373 NA 0 1 1 0 #> 374 100.0 0 2 2 0 #> 375 NA 0 0 0 0 #> 376 100.0 0 1 1 0 #> 377 NA 0 0 0 0 #> 378 NA 0 1 0 1 #> 379 NA 0 0 0 0 #> 380 0.0 2 2 0 2 #> 381 NA 0 0 0 0 #> 382 NA 0 1 1 0 #> 383 66.7 1 1 0 1 #> 384 0.0 1 0 0 0 #> 385 NA 0 0 0 0 #> 386 NA 0 1 0 1 #> 387 0.0 1 0 0 0 #> 388 100.0 0 1 1 0 #> 389 100.0 0 0 0 0 #> 390 100.0 0 1 1 0 #> 391 50.0 1 1 1 0 #> 392 NA 0 1 0 1 #> 393 NA 0 0 0 0 #> 394 0.0 1 0 0 0 #> 395 NA 0 1 0 1 #> 396 NA 0 0 0 0 #> 397 0.0 1 1 1 0 #> 398 100.0 0 1 1 0 #> 399 NA 0 0 0 0 #> 400 100.0 0 1 1 0 #> 401 100.0 0 1 0 1 #> 402 NA 0 2 0 2 #> 403 NA 0 0 0 0 #> 404 66.7 2 2 0 2 #> 405 NA 0 0 0 0 #> 406 0.0 1 0 0 0 #> 407 NA 0 1 1 0 #> 408 100.0 0 1 0 1 #> 409 NA 0 0 0 0 #> 410 100.0 0 1 0 1 #> 411 0.0 2 1 0 1 #> 412 0.0 1 0 0 0 #> 413 NA 0 0 0 0 #> 414 NA 0 1 0 1 #> 415 100.0 0 0 0 0 #> 416 75.0 1 1 0 1 #> 417 NA 0 1 0 1 #> 418 100.0 0 0 0 0 #> 419 50.0 1 0 0 0 #> 420 NA 0 0 0 0 #> 421 100.0 0 0 0 0 #> 422 50.0 1 1 0 1 #> 423 0.0 2 2 1 1 #> 424 NA 0 0 0 0 #> 425 NA 0 1 0 1 #> 426 100.0 0 0 0 0 #> 427 0.0 2 0 0 0 #> 428 NA 0 0 0 0 #> 429 0.0 1 0 0 0 #> 430 0.0 1 1 0 1 #> 431 0.0 1 1 0 1 #> 432 NA 0 0 0 0 #> 433 66.7 1 1 0 1 #> 434 50.0 3 4 1 3 #> 435 0.0 1 2 2 0 #> 436 NA 0 1 0 1 #> 437 50.0 1 1 0 1 #> 438 NA 0 0 0 0 #> 439 0.0 2 0 0 0 #> 440 NA 0 0 0 0 #> 441 0.0 1 1 0 1 #> 442 0.0 1 0 0 0 #> 443 NA 0 0 0 0 #> 444 50.0 1 1 0 1 #> 445 42.9 4 1 1 0 #> 446 0.0 1 4 1 3 #> 447 NA 0 0 0 0 #> 448 100.0 0 0 0 0 #> 449 100.0 0 1 1 0 #> 450 66.7 1 2 0 2 #> 451 100.0 0 0 0 0 #> 452 0.0 1 0 0 0 #> 453 0.0 1 0 0 0 #> 454 50.0 1 1 0 1 #> 455 0.0 1 0 0 0 #> 456 50.0 2 3 0 3 #> 457 0.0 2 3 0 3 #> 458 NA 0 0 0 0 #> 459 NA 0 3 1 2 #> 460 0.0 2 2 1 1 #> 461 NA 0 0 0 0 #> 462 50.0 1 0 0 0 #> 463 NA 0 1 1 0 #> 464 NA 0 0 0 0 #> 465 100.0 0 2 1 1 #> 466 NA 0 0 0 0 #> 467 NA 0 0 0 0 #> 468 NA 0 0 0 0 #> 469 100.0 0 0 0 0 #> 470 NA 0 0 0 0 #> 471 100.0 0 0 0 0 #> 472 NA 0 0 0 0 #> 473 0.0 1 2 0 2 #> 474 NA 0 0 0 0 #> 475 NA 0 0 0 0 #> 476 NA 0 0 0 0 #> 477 40.0 6 1 1 0 #> 478 0.0 2 0 0 0 #> 479 0.0 1 0 0 0 #> 480 100.0 0 3 1 2 #> 481 100.0 0 3 2 1 #> 482 66.7 1 0 0 0 #> 483 75.0 1 2 0 2 #> 484 NA 0 0 0 0 #> 485 NA 0 0 0 0 #> 486 NA 0 0 0 0 #> 487 0.0 1 1 0 1 #> 488 0.0 1 3 1 2 #> 489 100.0 0 0 0 0 #> 490 NA NA NA NA NA #> 491 NA 0 0 0 0 #> 492 50.0 1 0 0 0 #> 493 0.0 1 0 0 0 #> 494 0.0 1 1 0 1 #> 495 0.0 2 0 0 0 #> 496 50.0 1 0 0 0 #> 497 NA 0 1 1 0 #> 498 100.0 0 0 0 0 #> 499 100.0 0 0 0 0 #> 500 NA 0 0 0 0 #> 501 100.0 0 0 0 0 #> 502 0.0 1 0 0 0 #> 503 0.0 1 1 0 1 #> 504 NA 0 2 1 1 #> 505 75.0 1 1 0 1 #> 506 50.0 1 0 0 0 #> 507 25.0 3 2 1 1 #> 508 NA 0 1 1 0 #> 509 66.7 1 0 0 0 #> 510 0.0 1 0 0 0 #> 511 50.0 1 5 3 2 #> 512 100.0 0 2 1 1 #> 513 100.0 0 1 1 0 #> 514 100.0 0 1 1 0 #> 515 NA 0 0 0 0 #> 516 NA 0 0 0 0 #> 517 NA 0 2 0 2 #> 518 0.0 1 0 0 0 #> 519 NA 0 0 0 0 #> 520 0.0 1 2 0 2 #> 521 100.0 0 0 0 0 #> 522 0.0 1 4 0 4 #> 523 NA 0 0 0 0 #> 524 NA 0 0 0 0 #> 525 50.0 1 0 0 0 #> 526 NA 0 0 0 0 #> 527 NA 0 0 0 0 #> 528 NA 0 2 1 1 #> 529 NA 0 0 0 0 #> 530 100.0 0 1 0 1 #> 531 NA 0 0 0 0 #> 532 66.7 1 0 0 0 #> 533 NA 0 0 0 0 #> 534 NA 0 0 0 0 #> 535 NA 0 1 0 1 #> 536 33.3 2 0 0 0 #> 537 50.0 1 0 0 0 #> 538 100.0 0 1 1 0 #> 539 NA 0 0 0 0 #> 540 0.0 2 4 0 4 #> 541 57.1 3 1 0 1 #> 542 66.7 1 2 0 2 #> 543 NA 0 3 2 1 #> 544 100.0 0 2 2 0 #> 545 100.0 0 0 0 0 #> 546 100.0 0 1 0 1 #> 547 NA 0 0 0 0 #> 548 NA 0 0 0 0 #> 549 0.0 1 0 0 0 #> 550 100.0 0 1 0 1 #> 551 NA 0 3 0 3 #> 552 100.0 0 0 0 0 #> 553 NA 0 1 1 0 #> 554 0.0 1 0 0 0 #> 555 25.0 3 2 0 2 #> 556 100.0 0 1 0 1 #> 557 NA 0 1 0 1 #> 558 100.0 0 1 0 1 #> 559 NA 0 0 0 0 #> 560 100.0 0 1 0 1 #> 561 NA 0 0 0 0 #> 562 100.0 0 0 0 0 #> 563 NA 0 0 0 0 #> 564 NA 0 0 0 0 #> 565 NA 0 1 0 1 #> 566 50.0 1 0 0 0 #> 567 100.0 0 0 0 0 #> 568 0.0 1 2 0 2 #> 569 NA 0 0 0 0 #> 570 NA 0 0 0 0 #> 571 NA 0 0 0 0 #> 572 0.0 1 1 0 1 #> 573 NA 0 1 0 1 #> 574 0.0 2 1 0 1 #> 575 50.0 1 0 0 0 #> 576 100.0 0 0 0 0 #> 577 100.0 0 0 0 0 #> 578 NA 0 0 0 0 #> 579 NA 0 0 0 0 #> 580 100.0 0 0 0 0 #> 581 NA 0 0 0 0 #> 582 50.0 1 0 0 0 #> 583 0.0 1 2 1 1 #> 584 0.0 2 0 0 0 #> 585 80.0 1 0 0 0 #> 586 NA 0 0 0 0 #> 587 NA 0 0 0 0 #> 588 NA 0 0 0 0 #> 589 NA 0 0 0 0 #> 590 100.0 0 2 0 2 #> 591 NA 0 0 0 0 #> 592 NA 0 0 0 0 #> 593 NA 0 1 0 1 #> 594 0.0 2 0 0 0 #> 595 50.0 1 1 0 1 #> 596 NA 0 0 0 0 #> 597 100.0 0 1 1 0 #> 598 NA 0 1 0 1 #> 599 NA 0 0 0 0 #> 600 0.0 3 0 0 0 #> 601 100.0 0 0 0 0 #> 602 100.0 0 1 0 1 #> 603 NA 0 0 0 0 #> 604 NA 0 0 0 0 #> 605 NA 0 1 0 1 #> 606 50.0 1 0 0 0 #> 607 NA 0 0 0 0 #> 608 NA 0 2 0 2 #> 609 NA 0 1 0 1 #> 610 NA 0 0 0 0 #> 611 42.9 4 4 0 4 #> 612 NA 0 0 0 0 #> 613 0.0 1 1 0 1 #> 614 NA 0 0 0 0 #> 615 NA 0 1 0 1 #> 616 NA 0 3 2 1 #> 617 50.0 1 0 0 0 #> 618 28.6 5 1 0 1 #> 619 NA 0 3 2 1 #> 620 NA 0 1 0 1 #> 621 0.0 1 0 0 0 #> 622 NA 0 0 0 0 #> 623 NA 0 1 0 1 #> 624 NA 0 0 0 0 #> 625 0.0 2 0 0 0 #> 626 0.0 2 1 0 1 #> 627 NA 0 0 0 0 #> 628 NA 0 0 0 0 #> 629 100.0 0 0 0 0 #> 630 NA 0 0 0 0 #> 631 0.0 1 2 1 1 #> 632 33.3 2 0 0 0 #> 633 0.0 3 1 1 0 #> 634 100.0 0 0 0 0 #> 635 NA 0 0 0 0 #> 636 0.0 2 0 0 0 #> 637 NA 0 0 0 0 #> 638 50.0 1 1 0 1 #> 639 0.0 1 0 0 0 #> 640 0.0 1 1 0 1 #> 641 NA 0 0 0 0 #> 642 100.0 0 2 0 2 #> 643 NA 0 0 0 0 #> 644 NA 0 0 0 0 #> 645 100.0 0 2 0 2 #> 646 25.0 3 0 0 0 #> 647 NA 0 0 0 0 #> 648 0.0 1 0 0 0 #> 649 100.0 0 0 0 0 #> 650 0.0 1 1 0 1 #> 651 NA 0 1 1 0 #> 652 40.0 3 4 1 3 #> 653 NA 0 0 0 0 #> 654 NA 0 1 0 1 #> 655 NA 0 0 0 0 #> 656 NA 0 0 0 0 #> 657 NA 0 1 0 1 #> 658 NA 0 2 0 2 #> 659 NA 0 1 0 1 #> 660 100.0 0 0 0 0 #> 661 0.0 1 2 0 2 #> 662 NA 0 0 0 0 #> 663 NA 0 2 1 1 #> 664 100.0 0 1 1 0 #> 665 100.0 0 2 1 1 #> 666 0.0 2 0 0 0 #> 667 100.0 0 0 0 0 #> 668 NA 0 0 0 0 #> 669 NA 0 0 0 0 #> 670 NA 0 0 0 0 #> 671 NA 0 1 0 1 #> 672 0.0 1 1 0 1 #> 673 0.0 2 1 0 1 #> 674 NA 0 0 0 0 #> 675 25.0 3 0 0 0 #> 676 100.0 0 1 0 1 #> 677 60.0 2 1 0 1 #> 678 100.0 0 1 1 0 #> 679 62.5 3 3 1 2 #> 680 100.0 0 1 1 0 #> 681 100.0 0 0 0 0 #> 682 NA 0 1 1 0 #> 683 100.0 0 2 0 2 #> 684 NA 0 0 0 0 #> 685 NA 0 0 0 0 #> 686 NA 0 2 1 1 #> 687 NA 0 0 0 0 #> 688 NA 0 0 0 0 #> 689 NA 0 0 0 0 #> 690 0.0 1 0 0 0 #> 691 NA 0 1 1 0 #> 692 50.0 1 0 0 0 #> 693 NA 0 1 0 1 #> 694 NA 0 0 0 0 #> 695 66.7 1 1 0 1 #> 696 NA 0 0 0 0 #> 697 0.0 1 1 0 1 #> 698 NA 0 0 0 0 #> 699 NA 0 1 1 0 #> 700 NA 0 0 0 0 #> 701 NA 0 0 0 0 #> 702 NA 0 0 0 0 #> 703 NA 0 0 0 0 #> 704 NA 0 0 0 0 #> 705 NA 0 0 0 0 #> 706 NA 0 0 0 0 #> 707 NA 0 0 0 0 #> 708 33.3 2 2 1 1 #> 709 NA 0 1 0 1 #> 710 0.0 2 0 0 0 #> 711 33.3 2 1 1 0 #> 712 NA 0 5 2 3 #> 713 0.0 1 5 4 1 #> 714 0.0 1 4 2 2 #> 715 100.0 0 2 1 1 #> 716 NA 0 0 0 0 #> 717 NA 0 0 0 0 #> 718 50.0 1 1 0 1 #> 719 NA 0 0 0 0 #> 720 50.0 1 0 0 0 #> 721 NA 0 0 0 0 #> 722 33.3 2 1 0 1 #> 723 NA 0 1 0 1 #> 724 NA 0 0 0 0 #> 725 100.0 0 0 0 0 #> 726 100.0 0 0 0 0 #> 727 0.0 1 0 0 0 #> 728 NA 0 0 0 0 #> 729 100.0 0 2 2 0 #> 730 NA 0 2 0 2 #> 731 NA 0 0 0 0 #> 732 NA 0 0 0 0 #> 733 NA 0 1 1 0 #> 734 NA 0 0 0 0 #> 735 NA 0 0 0 0 #> 736 0.0 1 1 0 1 #> 737 0.0 1 0 0 0 #> 738 NA 0 0 0 0 #> 739 100.0 0 1 0 1 #> 740 100.0 0 0 0 0 #> 741 NA 0 0 0 0 #> 742 NA 0 1 0 1 #> 743 50.0 1 0 0 0 #> 744 0.0 1 0 0 0 #> 745 100.0 0 0 0 0 #> 746 0.0 3 0 0 0 #> 747 0.0 1 1 0 1 #> 748 NA 0 0 0 0 #> 749 NA 0 1 0 1 #> 750 NA 0 0 0 0 #> 751 NA 0 0 0 0 #> 752 NA 0 0 0 0 #> 753 50.0 1 2 0 2 #> 754 20.0 4 2 1 1 #> 755 0.0 2 1 0 1 #> 756 NA 0 1 0 1 #> 757 0.0 3 0 0 0 #> 758 66.7 1 1 0 1 #> 759 NA 0 0 0 0 #> 760 100.0 0 2 1 1 #> 761 0.0 1 2 0 2 #> 762 NA 0 0 0 0 #> 763 100.0 0 1 0 1 #> 764 NA 0 0 0 0 #> 765 NA 0 1 0 1 #> 766 50.0 1 1 0 1 #> 767 NA 0 0 0 0 #> 768 0.0 1 0 0 0 #> 769 NA 0 0 0 0 #> 770 100.0 0 1 0 1 #> 771 0.0 2 0 0 0 #> 772 NA 0 0 0 0 #> 773 0.0 1 1 0 1 #> 774 NA 0 1 1 0 #> 775 NA 0 0 0 0 #> 776 0.0 1 2 0 2 #> 777 NA 0 0 0 0 #> 778 NA 0 0 0 0 #> 779 0.0 2 1 0 1 #> 780 0.0 1 2 0 2 #> 781 NA 0 0 0 0 #> 782 NA 0 5 0 5 #> 783 NA 0 0 0 0 #> 784 16.7 5 1 0 1 #> 785 100.0 0 1 0 1 #> 786 NA 0 0 0 0 #> 787 NA 0 2 0 2 #> 788 100.0 0 0 0 0 #> 789 100.0 0 0 0 0 #> 790 NA 0 2 1 1 #> 791 NA 0 0 0 0 #> 792 100.0 0 0 0 0 #> 793 NA 0 2 1 1 #> 794 NA 0 0 0 0 #> 795 NA 0 0 0 0 #> 796 NA 0 0 0 0 #> 797 NA 0 3 2 1 #> 798 100.0 0 0 0 0 #> 799 NA 0 1 0 1 #> 800 0.0 5 0 0 0 #> 801 0.0 3 1 1 0 #> 802 66.7 1 0 0 0 #> 803 75.0 1 0 0 0 #> 804 NA 0 0 0 0 #> 805 NA 0 1 1 0 #> 806 20.0 4 2 0 2 #> 807 50.0 1 2 2 0 #> 808 66.7 1 1 1 0 #> 809 100.0 0 0 0 0 #> 810 NA 0 0 0 0 #> 811 NA 0 0 0 0 #> 812 100.0 0 1 0 1 #> 813 NA 0 0 0 0 #> 814 100.0 0 0 0 0 #> 815 75.0 1 0 0 0 #> 816 NA 0 0 0 0 #> 817 100.0 0 3 1 2 #> 818 0.0 3 0 0 0 #> 819 100.0 0 1 0 1 #> 820 NA 0 1 0 1 #> 821 100.0 0 3 3 0 #> 822 100.0 0 7 4 3 #> 823 0.0 1 2 1 1 #> 824 NA 0 0 0 0 #> 825 NA 0 2 0 2 #> 826 0.0 1 0 0 0 #> 827 100.0 0 0 0 0 #> 828 NA 0 0 0 0 #> 829 100.0 0 0 0 0 #> 830 100.0 0 0 0 0 #> 831 0.0 1 0 0 0 #> 832 NA 0 0 0 0 #> 833 NA 0 0 0 0 #> 834 50.0 1 1 1 0 #> 835 NA 0 1 1 0 #> 836 NA 0 3 3 0 #> 837 NA 0 1 0 1 #> 838 NA 0 0 0 0 #> 839 NA 0 0 0 0 #> 840 NA 0 0 0 0 #> 841 NA 0 0 0 0 #> 842 NA 0 0 0 0 #> 843 0.0 4 3 0 3 #> 844 0.0 2 0 0 0 #> 845 NA 0 0 0 0 #> 846 NA NA NA NA NA #> 847 0.0 1 1 0 1 #> 848 25.0 3 1 0 1 #> 849 66.7 1 2 0 2 #> 850 NA 0 0 0 0 #> 851 NA 0 1 0 1 #> 852 100.0 0 1 1 0 #> 853 NA 0 1 1 0 #> 854 NA 0 0 0 0 #> 855 0.0 1 0 0 0 #> 856 NA 0 0 0 0 #> 857 100.0 0 0 0 0 #> 858 100.0 0 1 0 1 #> 859 NA 0 0 0 0 #> 860 NA 0 2 0 2 #> 861 NA 0 0 0 0 #> 862 NA 0 0 0 0 #> 863 50.0 2 2 1 1 #> 864 NA 0 2 0 2 #> 865 NA 0 0 0 0 #> 866 100.0 0 1 0 1 #> 867 66.7 1 0 0 0 #> 868 100.0 0 2 2 0 #> 869 100.0 0 0 0 0 #> 870 100.0 0 2 1 1 #> 871 NA 0 0 0 0 #> 872 NA 0 0 0 0 #> 873 NA 0 0 0 0 #> 874 NA 0 0 0 0 #> 875 NA 0 3 0 3 #> 876 NA 0 0 0 0 #> 877 0.0 1 1 0 1 #> 878 NA NA NA NA NA #> 879 NA 0 0 0 0 #> 880 100.0 0 1 0 1 #> 881 NA 0 1 0 1 #> 882 NA 0 0 0 0 #> 883 NA 0 2 1 1 #> 884 50.0 1 1 0 1 #> 885 NA 0 1 0 1 #> 886 NA 0 0 0 0 #> 887 NA 0 0 0 0 #> 888 0.0 1 0 0 0 #> 889 0.0 1 0 0 0 #> 890 NA 0 2 2 0 #> 891 0.0 1 0 0 0 #> 892 33.3 2 0 0 0 #> 893 0.0 1 0 0 0 #> 894 0.0 1 0 0 0 #> 895 NA 0 0 0 0 #> 896 NA 0 0 0 0 #> 897 100.0 0 1 1 0 #> 898 40.0 3 0 0 0 #> 899 NA 0 3 1 2 #> 900 100.0 0 1 1 0 #> 901 100.0 0 3 1 2 #> 902 50.0 1 1 0 1 #> 903 NA 0 0 0 0 #> 904 0.0 1 0 0 0 #> 905 100.0 0 0 0 0 #> 906 0.0 1 1 0 1 #> 907 NA 0 1 0 1 #> 908 50.0 1 0 0 0 #> 909 NA 0 0 0 0 #> 910 NA 0 0 0 0 #> 911 50.0 1 2 0 2 #> 912 NA 0 1 1 0 #> 913 100.0 0 0 0 0 #> 914 100.0 0 1 0 1 #> 915 NA 0 0 0 0 #> 916 NA 0 3 3 0 #> 917 100.0 0 1 0 1 #> 918 100.0 0 0 0 0 #> 919 NA 0 0 0 0 #> 920 NA 0 1 0 1 #> 921 NA 0 0 0 0 #> 922 NA NA NA NA NA #> 923 0.0 1 0 0 0 #> 924 100.0 0 1 0 1 #> 925 NA 0 0 0 0 #> 926 50.0 1 0 0 0 #> 927 33.3 4 0 0 0 #> 928 NA 0 0 0 0 #> 929 0.0 1 0 0 0 #> 930 NA 0 0 0 0 #> 931 100.0 0 0 0 0 #> 932 NA 0 0 0 0 #> 933 50.0 1 1 1 0 #> 934 NA 0 0 0 0 #> 935 NA 0 0 0 0 #> 936 NA 0 0 0 0 #> 937 0.0 3 1 0 1 #> 938 NA 0 1 0 1 #> 939 NA 0 0 0 0 #> 940 100.0 0 0 0 0 #> 941 NA 0 0 0 0 #> 942 33.3 2 0 0 0 #> 943 100.0 0 1 0 1 #> 944 100.0 0 0 0 0 #> 945 100.0 0 0 0 0 #> 946 100.0 0 1 0 1 #> 947 100.0 0 0 0 0 #> 948 33.3 2 0 0 0 #> 949 NA 0 0 0 0 #> 950 NA 0 1 0 1 #> 951 0.0 2 0 0 0 #> 952 100.0 0 0 0 0 #> 953 NA 0 0 0 0 #> 954 0.0 1 2 0 2 #> 955 NA 0 0 0 0 #> 956 NA 0 1 0 1 #> 957 NA 0 0 0 0 #> 958 100.0 0 0 0 0 #> 959 0.0 2 2 1 1 #> 960 100.0 0 1 0 1 #> 961 100.0 0 0 0 0 #> 962 NA 0 2 0 2 #> 963 NA 0 0 0 0 #> 964 NA 0 0 0 0 #> 965 NA 0 0 0 0 #> 966 NA 0 0 0 0 #> 967 75.0 1 0 0 0 #> 968 100.0 0 0 0 0 #> 969 100.0 0 0 0 0 #> 970 0.0 1 3 1 2 #> 971 NA 0 0 0 0 #> 972 83.3 1 3 0 3 #> 973 66.7 1 0 0 0 #> 974 0.0 1 0 0 0 #> 975 66.7 1 0 0 0 #> 976 NA 0 0 0 0 #> 977 100.0 0 3 1 2 #> 978 100.0 0 0 0 0 #> 979 NA 0 0 0 0 #> 980 NA 0 0 0 0 #> 981 NA 0 0 0 0 #> 982 0.0 1 1 0 1 #> 983 NA 0 0 0 0 #> 984 100.0 0 0 0 0 #> 985 NA 0 1 0 1 #> 986 50.0 2 0 0 0 #> 987 50.0 1 0 0 0 #> 988 NA 0 0 0 0 #> 989 66.7 1 1 0 1 #> 990 0.0 2 0 0 0 #> 991 100.0 0 3 3 0 #> 992 100.0 0 2 2 0 #> 993 100.0 0 1 1 0 #> 994 NA 0 0 0 0 #> 995 NA 0 0 0 0 #> 996 NA 0 0 0 0 #> 997 NA 0 0 0 0 #> 998 NA 0 2 0 2 #> 999 0.0 1 1 0 1 #> 1000 NA 0 0 0 0 #> 1001 0.0 1 0 0 0 #> 1002 66.7 1 1 0 1 #> 1003 50.0 1 1 1 0 #> 1004 NA 0 4 3 1 #> 1005 100.0 0 0 0 0 #> 1006 NA 0 0 0 0 #> 1007 100.0 0 1 1 0 #> 1008 NA 0 0 0 0 #> 1009 50.0 2 1 0 1 #> 1010 NA 0 1 0 1 #> 1011 NA 0 0 0 0 #> 1012 0.0 1 0 0 0 #> 1013 NA 0 1 1 0 #> 1014 NA 0 0 0 0 #> 1015 66.7 1 0 0 0 #> 1016 NA 0 0 0 0 #> 1017 100.0 0 2 0 2 #> 1018 0.0 1 2 0 2 #> 1019 0.0 3 0 0 0 #> 1020 0.0 1 1 1 0 #> 1021 0.0 1 0 0 0 #> 1022 100.0 0 2 1 1 #> 1023 100.0 0 4 2 2 #> 1024 NA 0 1 0 1 #> 1025 66.7 1 1 1 0 #> 1026 NA 0 0 0 0 #> 1027 NA 0 0 0 0 #> 1028 0.0 2 0 0 0 #> 1029 100.0 0 0 0 0 #> 1030 100.0 0 0 0 0 #> 1031 NA 0 1 0 1 #> 1032 NA 0 0 0 0 #> 1033 50.0 1 2 0 2 #> 1034 NA 0 0 0 0 #> 1035 NA 0 2 1 1 #> 1036 100.0 0 1 0 1 #> 1037 NA 0 0 0 0 #> 1038 50.0 1 1 0 1 #> 1039 100.0 0 2 1 1 #> 1040 40.0 3 1 1 0 #> 1041 NA 0 1 0 1 #> 1042 NA 0 0 0 0 #> 1043 NA 0 0 0 0 #> 1044 NA 0 0 0 0 #> 1045 NA 0 0 0 0 #> 1046 NA 0 0 0 0 #> 1047 100.0 0 1 0 1 #> 1048 NA 0 0 0 0 #> 1049 NA 0 1 0 1 #> 1050 100.0 0 0 0 0 #> 1051 100.0 0 0 0 0 #> 1052 0.0 1 2 0 2 #> 1053 NA 0 1 1 0 #> 1054 NA 0 0 0 0 #> 1055 NA 0 3 2 1 #> 1056 NA 0 0 0 0 #> 1057 NA 0 1 0 1 #> 1058 NA 0 0 0 0 #> 1059 NA 0 0 0 0 #> 1060 NA 0 0 0 0 #> 1061 NA 0 0 0 0 #> 1062 0.0 1 0 0 0 #> 1063 NA 0 0 0 0 #> 1064 NA 0 0 0 0 #> 1065 33.3 2 0 0 0 #> 1066 100.0 0 1 0 1 #> 1067 0.0 2 2 0 2 #> 1068 NA 0 0 0 0 #> 1069 66.7 1 1 0 1 #> 1070 NA 0 0 0 0 #> 1071 66.7 1 0 0 0 #> 1072 0.0 1 0 0 0 #> 1073 0.0 1 1 1 0 #> 1074 100.0 0 1 0 1 #> 1075 NA 0 0 0 0 #> 1076 0.0 2 0 0 0 #> 1077 NA 0 0 0 0 #> 1078 NA 0 1 0 1 #> 1079 NA 0 0 0 0 #> 1080 0.0 1 1 0 1 #> 1081 NA 0 2 0 2 #> 1082 60.0 2 3 1 2 #> 1083 NA 0 0 0 0 #> 1084 NA 0 2 2 0 #> 1085 75.0 1 0 0 0 #> 1086 NA 0 0 0 0 #> 1087 100.0 0 1 1 0 #> 1088 NA 0 0 0 0 #> 1089 NA 0 1 0 1 #> 1090 NA 0 0 0 0 #> 1091 NA 0 0 0 0 #> 1092 NA 0 0 0 0 #> 1093 NA 0 3 0 3 #> 1094 NA 0 2 1 1 #> 1095 NA 0 0 0 0 #> 1096 0.0 1 0 0 0 #> 1097 0.0 6 2 0 2 #> 1098 NA 0 0 0 0 #> 1099 0.0 1 0 0 0 #> 1100 0.0 1 1 0 1 #> 1101 NA 0 0 0 0 #> 1102 100.0 0 0 0 0 #> 1103 100.0 0 2 2 0 #> 1104 0.0 1 0 0 0 #> 1105 NA 0 0 0 0 #> 1106 NA 0 0 0 0 #> 1107 NA 0 0 0 0 #> 1108 NA 0 0 0 0 #> 1109 0.0 1 1 0 1 #> 1110 NA 0 0 0 0 #> 1111 0.0 1 1 0 1 #> 1112 NA 0 0 0 0 #> 1113 NA 0 1 0 1 #> 1114 NA 0 0 0 0 #> 1115 66.7 1 2 2 0 #> 1116 100.0 0 1 0 1 #> 1117 100.0 0 2 2 0 #> 1118 100.0 0 0 0 0 #> 1119 NA 0 0 0 0 #> 1120 NA 0 1 0 1 #> 1121 NA 0 0 0 0 #> 1122 NA 0 1 0 1 #> 1123 NA 0 0 0 0 #> 1124 NA 0 1 0 1 #> 1125 NA 0 0 0 0 #> 1126 50.0 1 0 0 0 #> 1127 NA 0 1 1 0 #> 1128 100.0 0 0 0 0 #> 1129 NA 0 1 0 1 #> 1130 NA 0 1 0 1 #> 1131 NA 0 0 0 0 #> 1132 100.0 0 0 0 0 #> 1133 NA 0 0 0 0 #> 1134 100.0 0 1 1 0 #> 1135 NA 0 1 1 0 #> 1136 NA 0 0 0 0 #> 1137 NA 0 0 0 0 #> 1138 NA 0 0 0 0 #> 1139 0.0 1 0 0 0 #> 1140 100.0 0 0 0 0 #> 1141 100.0 0 2 0 2 #> 1142 0.0 1 0 0 0 #> 1143 0.0 1 0 0 0 #> 1144 0.0 2 0 0 0 #> 1145 NA 0 1 1 0 #> 1146 0.0 1 0 0 0 #> 1147 NA 0 0 0 0 #> 1148 NA 0 0 0 0 #> 1149 NA 0 3 1 2 #> 1150 0.0 1 0 0 0 #> 1151 NA 0 1 0 1 #> 1152 100.0 0 0 0 0 #> 1153 NA 0 0 0 0 #> 1154 0.0 1 0 0 0 #> 1155 NA 0 0 0 0 #> 1156 0.0 1 0 0 0 #> 1157 66.7 1 1 0 1 #> 1158 NA 0 0 0 0 #> 1159 100.0 0 0 0 0 #> 1160 NA 0 0 0 0 #> 1161 NA NA NA NA NA #> 1162 NA 0 0 0 0 #> 1163 NA 0 1 0 1 #> 1164 NA 0 0 0 0 #> 1165 100.0 0 1 1 0 #> 1166 NA 0 0 0 0 #> 1167 50.0 1 0 0 0 #> 1168 0.0 1 0 0 0 #> 1169 NA 0 0 0 0 #> 1170 NA 0 0 0 0 #> 1171 NA 0 1 1 0 #> 1172 NA 0 0 0 0 #> 1173 NA 0 1 0 1 #> 1174 0.0 1 3 1 2 #> 1175 0.0 1 1 1 0 #> 1176 25.0 3 1 1 0 #> 1177 0.0 1 1 1 0 #> 1178 0.0 1 0 0 0 #> 1179 NA 0 1 0 1 #> 1180 0.0 2 1 0 1 #> 1181 NA 0 2 2 0 #> 1182 NA 0 0 0 0 #> 1183 NA 0 1 1 0 #> 1184 100.0 0 2 2 0 #> 1185 NA 0 0 0 0 #> 1186 50.0 1 0 0 0 #> 1187 NA 0 1 0 1 #> 1188 NA 0 0 0 0 #> 1189 50.0 1 1 0 1 #> 1190 50.0 1 1 0 1 #> 1191 NA 0 0 0 0 #> 1192 75.0 1 1 0 1 #> 1193 50.0 1 0 0 0 #> 1194 NA 0 0 0 0 #> 1195 50.0 1 1 0 1 #> 1196 50.0 1 3 2 1 #> 1197 100.0 0 0 0 0 #> 1198 NA 0 2 2 0 #> 1199 NA 0 5 3 2 #> 1200 60.0 2 2 2 0 #> 1201 NA 0 0 0 0 #> 1202 100.0 0 0 0 0 #> 1203 NA 0 1 0 1 #> 1204 NA 0 1 0 1 #> 1205 0.0 1 0 0 0 #> 1206 100.0 0 1 0 1 #> 1207 NA 0 0 0 0 #> 1208 25.0 3 1 0 1 #> 1209 33.3 2 1 0 1 #> 1210 NA 0 0 0 0 #> 1211 0.0 1 0 0 0 #> 1212 NA 0 3 0 3 #> 1213 NA 0 0 0 0 #> 1214 NA 0 0 0 0 #> 1215 100.0 0 1 1 0 #> 1216 NA 0 0 0 0 #> 1217 0.0 1 4 1 3 #> 1218 NA 0 0 0 0 #> 1219 0.0 2 1 0 1 #> 1220 0.0 1 0 0 0 #> 1221 0.0 1 0 0 0 #> 1222 NA 0 0 0 0 #> 1223 100.0 0 1 1 0 #> 1224 NA 0 1 1 0 #> 1225 100.0 0 0 0 0 #> 1226 100.0 0 2 0 2 #> 1227 100.0 0 1 0 1 #> 1228 NA 0 1 1 0 #> 1229 NA 0 2 1 1 #> 1230 100.0 0 0 0 0 #> 1231 NA 0 2 2 0 #> 1232 NA 0 0 0 0 #> 1233 NA 0 0 0 0 #> 1234 NA 0 1 0 1 #> 1235 NA 0 1 0 1 #> 1236 0.0 1 2 0 2 #> 1237 66.7 1 0 0 0 #> 1238 25.0 3 0 0 0 #> 1239 100.0 0 0 0 0 #> 1240 0.0 1 0 0 0 #> 1241 NA 0 0 0 0 #> 1242 0.0 1 2 0 2 #> 1243 NA 0 0 0 0 #> 1244 100.0 0 0 0 0 #> 1245 NA 0 2 1 1 #> 1246 66.7 1 1 0 1 #> 1247 100.0 0 0 0 0 #> 1248 NA 0 0 0 0 #> 1249 0.0 1 0 0 0 #> 1250 NA 0 0 0 0 #> 1251 NA 0 4 1 3 #> 1252 0.0 1 0 0 0 #> 1253 NA 0 0 0 0 #> 1254 NA 0 3 0 3 #> 1255 NA 0 0 0 0 #> 1256 50.0 5 3 2 1 #> 1257 NA 0 0 0 0 #> 1258 50.0 1 0 0 0 #> 1259 NA 0 0 0 0 #> 1260 0.0 4 0 0 0 #> 1261 NA 0 1 1 0 #> 1262 0.0 2 2 2 0 #> 1263 0.0 1 0 0 0 #> 1264 NA 0 0 0 0 #> 1265 100.0 0 0 0 0 #> 1266 NA 0 0 0 0 #> 1267 NA 0 0 0 0 #> 1268 0.0 2 0 0 0 #> 1269 66.7 1 0 0 0 #> 1270 NA 0 0 0 0 #> 1271 NA 0 0 0 0 #> 1272 NA NA NA NA NA #> 1273 100.0 0 0 0 0 #> 1274 100.0 0 0 0 0 #> 1275 NA 0 0 0 0 #> 1276 100.0 0 2 2 0 #> 1277 50.0 2 1 0 1 #> 1278 33.3 2 1 0 1 #> 1279 NA 0 0 0 0 #> 1280 NA 0 0 0 0 #> 1281 0.0 1 1 0 1 #> 1282 0.0 1 0 0 0 #> 1283 100.0 0 0 0 0 #> 1284 50.0 1 0 0 0 #> 1285 50.0 1 1 0 1 #> 1286 NA 0 0 0 0 #> 1287 100.0 0 0 0 0 #> 1288 100.0 0 1 0 1 #> 1289 0.0 2 0 0 0 #> 1290 NA 0 3 2 1 #> 1291 100.0 0 1 1 0 #> 1292 NA 0 0 0 0 #> 1293 NA 0 0 0 0 #> 1294 NA 0 0 0 0 #> 1295 66.7 1 0 0 0 #> 1296 0.0 2 1 0 1 #> 1297 NA 0 0 0 0 #> 1298 NA 0 0 0 0 #> 1299 75.0 1 0 0 0 #> 1300 100.0 0 0 0 0 #> 1301 66.7 1 0 0 0 #> 1302 NA 0 0 0 0 #> 1303 NA 0 0 0 0 #> 1304 NA 0 0 0 0 #> 1305 NA 0 2 2 0 #> 1306 NA 0 0 0 0 #> 1307 NA 0 2 2 0 #> 1308 60.0 2 1 0 1 #> 1309 NA 0 0 0 0 #> 1310 NA 0 0 0 0 #> 1311 100.0 0 0 0 0 #> 1312 100.0 0 0 0 0 #> 1313 33.3 2 2 0 2 #> 1314 66.7 2 4 0 4 #> 1315 0.0 1 0 0 0 #> 1316 NA 0 1 0 1 #> 1317 NA 0 0 0 0 #> 1318 50.0 1 1 0 1 #> 1319 NA 0 1 0 1 #> 1320 0.0 1 1 0 1 #> 1321 NA 0 0 0 0 #> 1322 37.5 5 2 0 2 #> 1323 NA 0 2 1 1 #> 1324 0.0 1 0 0 0 #> 1325 75.0 1 1 1 0 #> 1326 NA 0 1 0 1 #> 1327 NA 0 0 0 0 #> 1328 NA 0 0 0 0 #> 1329 NA 0 1 0 1 #> 1330 NA 0 0 0 0 #> 1331 100.0 0 1 0 1 #> 1332 NA 0 0 0 0 #> 1333 0.0 1 0 0 0 #> 1334 0.0 2 0 0 0 #> 1335 66.7 1 0 0 0 #> 1336 NA 0 0 0 0 #> 1337 100.0 0 1 0 1 #> 1338 NA 0 0 0 0 #> 1339 NA 0 0 0 0 #> 1340 NA 0 0 0 0 #> 1341 NA 0 1 0 1 #> 1342 NA 0 0 0 0 #> 1343 50.0 1 0 0 0 #> 1344 NA 0 0 0 0 #> 1345 100.0 0 0 0 0 #> 1346 0.0 1 0 0 0 #> 1347 NA 0 0 0 0 #> 1348 50.0 1 0 0 0 #> 1349 100.0 0 1 0 1 #> 1350 100.0 0 0 0 0 #> 1351 NA 0 0 0 0 #> 1352 50.0 1 1 1 0 #> 1353 NA 0 0 0 0 #> 1354 50.0 1 3 1 2 #> 1355 NA 0 2 2 0 #> 1356 0.0 1 1 1 0 #> 1357 33.3 2 1 0 1 #> 1358 NA 0 0 0 0 #> 1359 0.0 1 2 2 0 #> 1360 0.0 2 1 0 1 #> 1361 50.0 1 0 0 0 #> 1362 100.0 0 0 0 0 #> 1363 0.0 3 4 1 3 #> 1364 100.0 0 0 0 0 #> 1365 75.0 1 0 0 0 #> 1366 0.0 1 0 0 0 #> 1367 50.0 1 0 0 0 #> 1368 0.0 2 0 0 0 #> 1369 0.0 1 0 0 0 #> 1370 0.0 1 4 1 3 #> 1371 NA 0 0 0 0 #> 1372 NA 0 0 0 0 #> 1373 100.0 0 0 0 0 #> 1374 NA 0 1 0 1 #> 1375 NA 0 2 0 2 #> 1376 25.0 3 1 0 1 #> 1377 NA 0 0 0 0 #> 1378 0.0 2 0 0 0 #> 1379 0.0 1 0 0 0 #> 1380 NA 0 0 0 0 #> 1381 NA 0 1 1 0 #> 1382 0.0 1 1 0 1 #> 1383 0.0 1 0 0 0 #> 1384 100.0 0 1 0 1 #> 1385 NA 0 0 0 0 #> 1386 NA 0 0 0 0 #> 1387 16.7 5 1 0 1 #> 1388 NA 0 0 0 0 #> 1389 0.0 1 3 2 1 #> 1390 NA 0 0 0 0 #> 1391 60.0 2 3 2 1 #> 1392 0.0 1 0 0 0 #> 1393 66.7 1 1 1 0 #> 1394 100.0 0 0 0 0 #> 1395 0.0 4 0 0 0 #> 1396 NA 0 0 0 0 #> 1397 NA 0 0 0 0 #> 1398 0.0 2 1 0 1 #> 1399 0.0 1 1 1 0 #> 1400 0.0 1 1 0 1 #> 1401 40.0 3 2 1 1 #> 1402 NA 0 0 0 0 #> 1403 100.0 0 3 2 1 #> 1404 NA 0 1 0 1 #> 1405 50.0 1 0 0 0 #> 1406 NA 0 1 0 1 #> 1407 NA 0 3 0 3 #> 1408 50.0 1 0 0 0 #> 1409 NA 0 1 0 1 #> 1410 NA 0 0 0 0 #> 1411 NA 0 1 0 1 #> 1412 66.7 1 0 0 0 #> 1413 50.0 1 2 1 1 #> 1414 NA 0 0 0 0 #> 1415 NA 0 0 0 0 #> 1416 0.0 1 1 0 1 #> 1417 NA 0 0 0 0 #> 1418 NA 0 0 0 0 #> 1419 NA 0 0 0 0 #> 1420 NA 0 0 0 0 #> 1421 75.0 1 1 0 1 #> 1422 0.0 1 0 0 0 #> 1423 NA 0 0 0 0 #> 1424 0.0 1 0 0 0 #> 1425 0.0 1 0 0 0 #> 1426 0.0 2 0 0 0 #> 1427 NA 0 0 0 0 #> 1428 50.0 1 0 0 0 #> 1429 NA 0 0 0 0 #> 1430 100.0 0 3 0 3 #> 1431 NA 0 1 0 1 #> 1432 NA 0 1 1 0 #> 1433 100.0 0 0 0 0 #> 1434 NA 0 0 0 0 #> 1435 NA 0 1 0 1 #> 1436 NA 0 1 0 1 #> 1437 0.0 1 1 0 1 #> 1438 100.0 0 2 1 1 #> 1439 100.0 0 1 0 1 #> 1440 NA 0 0 0 0 #> 1441 NA 0 1 0 1 #> 1442 NA 0 1 0 1 #> 1443 0.0 2 0 0 0 #> 1444 NA 0 0 0 0 #> 1445 NA 0 1 1 0 #> 1446 NA 0 0 0 0 #> 1447 100.0 0 0 0 0 #> 1448 33.3 2 0 0 0 #> 1449 NA 0 0 0 0 #> 1450 NA 0 0 0 0 #> 1451 NA 0 0 0 0 #> 1452 0.0 1 2 0 2 #> 1453 NA 0 0 0 0 #> 1454 100.0 0 2 0 2 #> 1455 NA 0 0 0 0 #> 1456 0.0 2 0 0 0 #> 1457 NA 0 0 0 0 #> 1458 0.0 1 2 1 1 #> 1459 100.0 0 0 0 0 #> 1460 0.0 1 2 0 2 #> 1461 NA 0 0 0 0 #> 1462 NA 0 1 1 0 #> 1463 100.0 0 2 0 2 #> 1464 NA 0 0 0 0 #> 1465 NA 0 0 0 0 #> 1466 0.0 1 0 0 0 #> 1467 NA 0 0 0 0 #> 1468 NA 0 0 0 0 #> 1469 NA 0 1 0 1 #> 1470 25.0 3 1 0 1 #> 1471 0.0 2 0 0 0 #> 1472 NA 0 0 0 0 #> 1473 66.7 1 1 1 0 #> 1474 0.0 1 2 1 1 #> 1475 75.0 1 1 0 1 #> 1476 50.0 1 3 3 0 #> 1477 100.0 0 4 2 2 #> 1478 100.0 0 2 1 1 #> 1479 NA 0 0 0 0 #> 1480 NA 0 0 0 0 #> 1481 NA 0 0 0 0 #> 1482 50.0 1 1 1 0 #> 1483 NA 0 0 0 0 #> 1484 50.0 1 0 0 0 #> 1485 0.0 4 3 0 3 #> 1486 NA 0 2 1 1 #> 1487 NA 0 0 0 0 #> 1488 100.0 0 1 1 0 #> 1489 0.0 1 1 0 1 #> 1490 100.0 0 0 0 0 #> 1491 NA 0 0 0 0 #> 1492 NA 0 2 2 0 #> 1493 100.0 0 0 0 0 #> 1494 0.0 1 2 0 2 #> 1495 NA 0 0 0 0 #> 1496 100.0 0 1 1 0 #> 1497 NA 0 0 0 0 #> 1498 0.0 1 1 0 1 #> 1499 NA 0 0 0 0 #> 1500 NA 0 0 0 0 #> 1501 NA 0 0 0 0 #> 1502 75.0 1 1 0 1 #> 1503 NA 0 1 1 0 #> 1504 NA 0 0 0 0 #> 1505 100.0 0 2 0 2 #> 1506 0.0 2 0 0 0 #> 1507 100.0 0 0 0 0 #> 1508 NA 0 1 1 0 #> 1509 100.0 0 1 0 1 #> 1510 0.0 3 4 2 2 #> 1511 NA 0 0 0 0 #> 1512 NA 0 1 0 1 #> 1513 NA 0 0 0 0 #> 1514 0.0 1 2 1 1 #> 1515 NA 0 0 0 0 #> 1516 0.0 1 0 0 0 #> 1517 NA 0 0 0 0 #> 1518 0.0 1 0 0 0 #> 1519 NA 0 0 0 0 #> 1520 NA 0 1 0 1 #> 1521 NA 0 1 0 1 #> 1522 66.7 1 1 0 1 #> 1523 100.0 0 0 0 0 #> 1524 NA 0 0 0 0 #> 1525 NA 0 1 1 0 #> 1526 75.0 1 0 0 0 #> 1527 NA 0 0 0 0 #> 1528 0.0 1 2 0 2 #> 1529 NA 0 0 0 0 #> 1530 50.0 1 0 0 0 #> 1531 NA 0 1 0 1 #> 1532 50.0 1 0 0 0 #> 1533 NA 0 0 0 0 #> 1534 0.0 1 0 0 0 #> 1535 100.0 0 1 0 1 #> 1536 NA 0 0 0 0 #> 1537 100.0 0 0 0 0 #> 1538 0.0 1 1 0 1 #> 1539 NA 0 0 0 0 #> 1540 100.0 0 3 2 1 #> 1541 NA 0 1 1 0 #> 1542 NA 0 1 0 1 #> 1543 NA 0 0 0 0 #> 1544 0.0 1 0 0 0 #> 1545 0.0 1 0 0 0 #> 1546 100.0 0 0 0 0 #> 1547 NA 0 0 0 0 #> 1548 NA 0 0 0 0 #> 1549 NA 0 1 0 1 #> 1550 NA 0 0 0 0 #> 1551 100.0 0 0 0 0 #> 1552 0.0 2 2 1 1 #> 1553 NA 0 0 0 0 #> 1554 57.1 3 3 1 2 #> 1555 NA 0 2 0 2 #> 1556 NA 0 2 2 0 #> 1557 100.0 0 1 1 0 #> 1558 100.0 0 0 0 0 #> 1559 NA 0 0 0 0 #> 1560 NA 0 0 0 0 #> 1561 NA 0 0 0 0 #> 1562 NA 0 0 0 0 #> 1563 NA 0 0 0 0 #> 1564 50.0 1 0 0 0 #> 1565 100.0 0 0 0 0 #> 1566 NA 0 1 0 1 #> 1567 0.0 1 1 0 1 #> 1568 100.0 0 2 1 1 #> 1569 50.0 1 1 0 1 #> 1570 NA 0 1 0 1 #> 1571 NA 0 0 0 0 #> 1572 NA 0 1 1 0 #> 1573 0.0 2 1 1 0 #> 1574 0.0 1 0 0 0 #> 1575 66.7 1 0 0 0 #> 1576 NA 0 0 0 0 #> 1577 NA 0 0 0 0 #> 1578 0.0 1 3 0 3 #> 1579 NA 0 0 0 0 #> 1580 50.0 2 2 0 2 #> 1581 100.0 0 1 0 1 #> 1582 NA 0 0 0 0 #> 1583 0.0 1 0 0 0 #> 1584 100.0 0 0 0 0 #> 1585 100.0 0 0 0 0 #> 1586 NA 0 0 0 0 #> 1587 NA 0 0 0 0 #> 1588 NA 0 0 0 0 #> 1589 NA 0 1 0 1 #> 1590 NA 0 0 0 0 #> 1591 0.0 1 0 0 0 #> 1592 NA 0 0 0 0 #> 1593 0.0 1 0 0 0 #> 1594 NA 0 0 0 0 #> 1595 NA 0 0 0 0 #> 1596 0.0 1 0 0 0 #> 1597 0.0 2 1 0 1 #> 1598 100.0 0 2 0 2 #> 1599 0.0 1 1 0 1 #> 1600 NA 0 0 0 0 #> 1601 NA 0 1 0 1 #> 1602 100.0 0 0 0 0 #> 1603 100.0 0 0 0 0 #> 1604 NA 0 0 0 0 #> 1605 100.0 0 0 0 0 #> 1606 NA 0 0 0 0 #> 1607 NA 0 0 0 0 #> 1608 NA 0 0 0 0 #> 1609 0.0 1 0 0 0 #> 1610 0.0 1 0 0 0 #> 1611 NA 0 1 1 0 #> 1612 100.0 0 0 0 0 #> 1613 50.0 2 2 0 2 #> 1614 50.0 2 1 0 1 #> 1615 NA 0 0 0 0 #> 1616 50.0 1 2 0 2 #> 1617 NA 0 1 1 0 #> 1618 NA 0 0 0 0 #> 1619 NA 0 1 1 0 #> 1620 NA 0 2 2 0 #> 1621 100.0 0 1 1 0 #> 1622 100.0 0 0 0 0 #> 1623 0.0 1 1 0 1 #> 1624 NA 0 0 0 0 #> 1625 NA 0 2 0 2 #> 1626 0.0 1 1 1 0 #> 1627 NA 0 0 0 0 #> 1628 100.0 0 0 0 0 #> 1629 0.0 1 0 0 0 #> 1630 NA NA NA NA NA #> 1631 NA 0 0 0 0 #> 1632 50.0 1 0 0 0 #> 1633 NA 0 0 0 0 #> 1634 NA 0 1 1 0 #> 1635 100.0 0 0 0 0 #> 1636 NA 0 0 0 0 #> 1637 100.0 0 2 0 2 #> 1638 NA 0 0 0 0 #> 1639 0.0 1 0 0 0 #> 1640 NA 0 0 0 0 #> 1641 NA 0 0 0 0 #> 1642 50.0 1 2 0 2 #> 1643 0.0 3 0 0 0 #> 1644 0.0 1 0 0 0 #> 1645 NA 0 0 0 0 #> 1646 NA 0 0 0 0 #> 1647 100.0 0 2 2 0 #> 1648 100.0 0 1 0 1 #> 1649 100.0 0 0 0 0 #> 1650 0.0 1 1 1 0 #> 1651 50.0 1 0 0 0 #> 1652 NA 0 0 0 0 #> 1653 NA 0 0 0 0 #> 1654 NA 0 0 0 0 #> 1655 0.0 1 1 0 1 #> 1656 NA 0 0 0 0 #> 1657 75.0 1 1 0 1 #> 1658 NA 0 0 0 0 #> 1659 100.0 0 2 0 2 #> 1660 0.0 1 0 0 0 #> 1661 NA 0 0 0 0 #> 1662 33.3 2 1 0 1 #> 1663 50.0 1 0 0 0 #> 1664 NA 0 0 0 0 #> 1665 0.0 1 1 1 0 #> 1666 0.0 1 1 0 1 #> 1667 33.3 2 0 0 0 #> 1668 NA 0 0 0 0 #> 1669 NA 0 0 0 0 #> 1670 NA 0 0 0 0 #> 1671 0.0 2 1 0 1 #> 1672 0.0 1 0 0 0 #> 1673 NA 0 1 0 1 #> 1674 NA 0 0 0 0 #> 1675 20.0 4 3 1 2 #> 1676 100.0 0 0 0 0 #> 1677 100.0 0 2 1 1 #> 1678 NA 0 1 0 1 #> 1679 0.0 1 0 0 0 #> 1680 0.0 1 0 0 0 #> 1681 NA 0 2 0 2 #> 1682 NA 0 0 0 0 #> 1683 0.0 1 0 0 0 #> 1684 NA 0 0 0 0 #> 1685 NA 0 0 0 0 #> 1686 NA 0 0 0 0 #> 1687 0.0 3 0 0 0 #> 1688 NA 0 0 0 0 #> 1689 NA 0 1 0 1 #> 1690 100.0 0 0 0 0 #> 1691 NA 0 0 0 0 #> 1692 0.0 1 0 0 0 #> 1693 NA 0 2 0 2 #> 1694 100.0 0 1 0 1 #> 1695 NA 0 0 0 0 #> 1696 NA 0 1 0 1 #> 1697 100.0 0 2 2 0 #> 1698 NA 0 2 0 2 #> 1699 100.0 0 0 0 0 #> 1700 NA 0 0 0 0 #> 1701 NA 0 0 0 0 #> 1702 NA 0 0 0 0 #> 1703 0.0 1 0 0 0 #> 1704 NA 0 0 0 0 #> 1705 NA 0 2 1 1 #> 1706 100.0 0 0 0 0 #> 1707 0.0 2 3 0 3 #> 1708 33.3 2 0 0 0 #> 1709 NA 0 0 0 0 #> 1710 0.0 1 2 1 1 #> 1711 50.0 1 0 0 0 #> 1712 NA 0 0 0 0 #> 1713 NA 0 0 0 0 #> 1714 100.0 0 3 3 0 #> 1715 NA 0 0 0 0 #> 1716 NA 0 0 0 0 #> 1717 0.0 1 0 0 0 #> 1718 100.0 0 0 0 0 #> 1719 100.0 0 0 0 0 #> 1720 0.0 1 0 0 0 #> 1721 NA 0 0 0 0 #> 1722 0.0 1 0 0 0 #> 1723 0.0 1 0 0 0 #> 1724 0.0 1 1 0 1 #> 1725 100.0 0 0 0 0 #> 1726 0.0 2 0 0 0 #> 1727 100.0 0 1 0 1 #> 1728 NA 0 0 0 0 #> 1729 100.0 0 1 1 0 #> 1730 100.0 0 1 1 0 #> 1731 NA 0 1 1 0 #> 1732 NA 0 0 0 0 #> 1733 0.0 1 0 0 0 #> 1734 66.7 1 1 0 1 #> 1735 0.0 1 0 0 0 #> 1736 0.0 1 1 1 0 #> 1737 33.3 2 0 0 0 #> 1738 100.0 0 2 0 2 #> 1739 NA 0 0 0 0 #> 1740 0.0 2 0 0 0 #> 1741 25.0 3 1 1 0 #> 1742 NA 0 0 0 0 #> 1743 NA 0 1 0 1 #> 1744 0.0 1 1 0 1 #> 1745 33.3 2 1 0 1 #> 1746 NA 0 0 0 0 #> 1747 0.0 1 0 0 0 #> 1748 NA 0 0 0 0 #> 1749 NA 0 0 0 0 #> 1750 0.0 1 0 0 0 #> 1751 0.0 1 0 0 0 #> 1752 0.0 1 0 0 0 #> 1753 NA 0 0 0 0 #> 1754 NA 0 0 0 0 #> 1755 0.0 1 2 0 2 #> 1756 100.0 0 2 0 2 #> 1757 0.0 1 2 0 2 #> 1758 0.0 1 5 0 5 #> 1759 100.0 0 2 0 2 #> 1760 NA 0 0 0 0 #> 1761 100.0 0 2 0 2 #> 1762 80.0 1 0 0 0 #> 1763 100.0 0 0 0 0 #> 1764 0.0 1 1 0 1 #> 1765 NA 0 0 0 0 #> 1766 0.0 3 2 0 2 #> 1767 NA 0 0 0 0 #> 1768 NA 0 0 0 0 #> 1769 NA 0 2 1 1 #> 1770 NA 0 0 0 0 #> 1771 50.0 2 1 0 1 #> 1772 NA 0 1 0 1 #> 1773 NA 0 1 0 1 #> 1774 NA 0 0 0 0 #> 1775 0.0 1 0 0 0 #> 1776 100.0 0 1 1 0 #> 1777 NA 0 0 0 0 #> 1778 NA 0 2 1 1 #> 1779 NA 0 0 0 0 #> 1780 100.0 0 0 0 0 #> 1781 0.0 1 1 0 1 #> 1782 NA 0 2 0 2 #> 1783 0.0 1 0 0 0 #> 1784 NA 0 1 0 1 #> 1785 NA 0 0 0 0 #> 1786 50.0 1 1 0 1 #> 1787 NA 0 0 0 0 #> 1788 NA 0 0 0 0 #> 1789 NA 0 3 2 1 #> 1790 NA 0 0 0 0 #> 1791 NA 0 1 1 0 #> 1792 0.0 1 0 0 0 #> 1793 NA 0 0 0 0 #> 1794 NA 0 0 0 0 #> 1795 NA 0 0 0 0 #> 1796 100.0 0 2 0 2 #> 1797 NA 0 0 0 0 #> 1798 0.0 3 1 1 0 #> 1799 NA 0 0 0 0 #> 1800 NA 0 0 0 0 #> 1801 50.0 1 0 0 0 #> 1802 100.0 0 2 1 1 #> 1803 0.0 1 1 1 0 #> 1804 100.0 0 3 0 3 #> 1805 0.0 1 0 0 0 #> 1806 NA 0 1 0 1 #> 1807 NA 0 0 0 0 #> 1808 NA 0 0 0 0 #> 1809 0.0 1 0 0 0 #> 1810 NA 0 0 0 0 #> 1811 0.0 2 2 0 2 #> 1812 0.0 2 1 0 1 #> 1813 NA 0 0 0 0 #> 1814 33.3 2 0 0 0 #> 1815 NA 0 0 0 0 #> 1816 50.0 1 1 0 1 #> 1817 100.0 0 1 0 1 #> 1818 NA 0 1 0 1 #> 1819 NA 0 0 0 0 #> 1820 50.0 1 0 0 0 #> 1821 NA 0 1 1 0 #> 1822 NA 0 0 0 0 #> 1823 66.7 1 0 0 0 #> 1824 NA 0 0 0 0 #> 1825 NA 0 2 0 2 #> 1826 0.0 1 1 0 1 #> 1827 0.0 4 0 0 0 #> 1828 NA 0 0 0 0 #> 1829 50.0 1 2 1 1 #> 1830 100.0 0 0 0 0 #> 1831 33.3 2 1 0 1 #> 1832 NA 0 0 0 0 #> 1833 NA 0 1 1 0 #> 1834 33.3 2 2 0 2 #> 1835 NA 0 0 0 0 #> 1836 0.0 1 0 0 0 #> 1837 100.0 0 1 1 0 #> 1838 NA 0 1 1 0 #> 1839 NA 0 0 0 0 #> 1840 NA 0 0 0 0 #> 1841 33.3 2 1 0 1 #> 1842 NA 0 0 0 0 #> 1843 NA 0 2 0 2 #> 1844 NA 0 0 0 0 #> 1845 NA 0 0 0 0 #> 1846 75.0 1 0 0 0 #> 1847 NA 0 0 0 0 #> 1848 0.0 2 0 0 0 #> 1849 NA 0 0 0 0 #> 1850 NA 0 2 1 1 #> 1851 NA 0 2 1 1 #> 1852 100.0 0 1 1 0 #> 1853 NA 0 0 0 0 #> 1854 100.0 0 0 0 0 #> 1855 NA 0 0 0 0 #> 1856 NA 0 1 0 1 #> 1857 NA 0 0 0 0 #> 1858 NA 0 1 0 1 #> 1859 NA 0 0 0 0 #> 1860 0.0 2 2 2 0 #> 1861 NA 0 0 0 0 #> 1862 NA 0 0 0 0 #> 1863 NA 0 0 0 0 #> 1864 NA 0 1 1 0 #> 1865 NA 0 0 0 0 #> 1866 75.0 1 1 0 1 #> 1867 66.7 1 1 0 1 #> 1868 33.3 2 2 1 1 #> 1869 100.0 0 1 1 0 #> 1870 100.0 0 1 0 1 #> 1871 NA 0 0 0 0 #> 1872 100.0 0 1 0 1 #> 1873 0.0 1 0 0 0 #> 1874 NA 0 2 0 2 #> 1875 0.0 1 0 0 0 #> 1876 NA 0 1 0 1 #> 1877 20.0 4 2 0 2 #> 1878 0.0 1 0 0 0 #> 1879 0.0 1 4 1 3 #> 1880 NA 0 0 0 0 #> 1881 33.3 2 2 0 2 #> 1882 NA 0 0 0 0 #> 1883 100.0 0 3 0 3 #> 1884 NA 0 0 0 0 #> 1885 NA 0 2 2 0 #> 1886 100.0 0 1 0 1 #> 1887 NA 0 0 0 0 #> 1888 NA 0 1 1 0 #> 1889 NA 0 0 0 0 #> 1890 66.7 1 2 1 1 #> 1891 NA 0 2 0 2 #> 1892 NA 0 0 0 0 #> 1893 0.0 1 2 1 1 #> 1894 100.0 0 0 0 0 #> 1895 100.0 0 3 0 3 #> 1896 NA 0 0 0 0 #> 1897 100.0 0 1 0 1 #> 1898 50.0 1 1 1 0 #> 1899 100.0 0 0 0 0 #> 1900 NA 0 1 1 0 #> 1901 NA 0 0 0 0 #> 1902 NA 0 1 0 1 #> 1903 NA 0 1 0 1 #> 1904 0.0 2 2 2 0 #> 1905 NA 0 0 0 0 #> 1906 NA 0 0 0 0 #> 1907 0.0 1 1 0 1 #> 1908 NA 0 1 0 1 #> 1909 0.0 3 1 0 1 #> 1910 40.0 3 1 0 1 #> 1911 NA 0 1 1 0 #> 1912 66.7 1 2 1 1 #> 1913 100.0 0 0 0 0 #> 1914 100.0 0 0 0 0 #> 1915 NA 0 2 0 2 #> 1916 NA 0 0 0 0 #> 1917 100.0 0 0 0 0 #> 1918 NA 0 2 0 2 #> 1919 NA 0 0 0 0 #> 1920 NA 0 0 0 0 #> 1921 NA 0 0 0 0 #> 1922 NA 0 1 1 0 #> 1923 50.0 1 1 0 1 #> 1924 0.0 1 0 0 0 #> 1925 100.0 0 0 0 0 #> 1926 0.0 2 2 1 1 #> 1927 NA 0 0 0 0 #> 1928 NA 0 0 0 0 #> 1929 NA 0 1 1 0 #> 1930 NA 0 1 1 0 #> 1931 80.0 1 0 0 0 #> 1932 NA 0 0 0 0 #> 1933 0.0 1 0 0 0 #> 1934 NA 0 1 0 1 #> 1935 20.0 4 0 0 0 #> 1936 0.0 1 0 0 0 #> 1937 NA 0 0 0 0 #> 1938 0.0 1 0 0 0 #> 1939 33.3 2 0 0 0 #> 1940 0.0 2 3 3 0 #> 1941 NA 0 2 0 2 #> 1942 NA 0 1 0 1 #> 1943 NA 0 0 0 0 #> 1944 NA 0 1 1 0 #> 1945 NA 0 1 1 0 #> 1946 NA 0 0 0 0 #> 1947 100.0 0 1 0 1 #> 1948 100.0 0 0 0 0 #> 1949 NA 0 0 0 0 #> 1950 NA 0 1 1 0 #> 1951 0.0 1 1 0 1 #> 1952 NA 0 0 0 0 #> 1953 NA 0 1 0 1 #> 1954 NA 0 0 0 0 #> 1955 NA 0 0 0 0 #> 1956 NA 0 0 0 0 #> 1957 NA 0 2 0 2 #> 1958 NA 0 0 0 0 #> 1959 0.0 1 0 0 0 #> 1960 50.0 1 2 2 0 #> 1961 100.0 0 0 0 0 #> 1962 NA 0 1 0 1 #> 1963 NA 0 0 0 0 #> 1964 NA 0 0 0 0 #> 1965 NA 0 0 0 0 #> 1966 33.3 2 0 0 0 #> 1967 0.0 2 0 0 0 #> 1968 NA 0 0 0 0 #> 1969 100.0 0 0 0 0 #> 1970 NA 0 0 0 0 #> 1971 NA 0 0 0 0 #> 1972 100.0 0 0 0 0 #> 1973 100.0 0 1 1 0 #> 1974 NA 0 1 0 1 #> 1975 NA 0 0 0 0 #> 1976 NA 0 1 0 1 #> 1977 50.0 1 2 1 1 #> 1978 NA 0 0 0 0 #> 1979 100.0 0 0 0 0 #> 1980 100.0 0 1 0 1 #> 1981 0.0 2 0 0 0 #> 1982 NA 0 0 0 0 #> 1983 NA 0 0 0 0 #> 1984 0.0 1 1 1 0 #> 1985 NA 0 1 0 1 #> 1986 0.0 1 2 1 1 #> 1987 0.0 1 0 0 0 #> 1988 NA 0 0 0 0 #> 1989 NA 0 1 1 0 #> 1990 100.0 0 0 0 0 #> 1991 NA 0 0 0 0 #> 1992 33.3 2 2 0 2 #> 1993 NA 0 0 0 0 #> 1994 NA 0 0 0 0 #> 1995 NA 0 1 0 1 #> 1996 0.0 1 0 0 0 #> 1997 0.0 1 0 0 0 #> 1998 NA 0 0 0 0 #> 1999 NA 0 0 0 0 #> 2000 50.0 1 1 0 1 #> 2001 NA 0 1 0 1 #> 2002 NA 0 1 0 1 #> 2003 NA 0 0 0 0 #> 2004 100.0 0 0 0 0 #> 2005 0.0 1 0 0 0 #> 2006 NA 0 1 0 1 #> 2007 75.0 1 2 1 1 #> 2008 NA 0 0 0 0 #> 2009 NA 0 0 0 0 #> 2010 NA 0 1 1 0 #> 2011 NA 0 0 0 0 #> 2012 NA 0 0 0 0 #> 2013 NA 0 1 0 1 #> 2014 NA 0 0 0 0 #> 2015 NA 0 1 0 1 #> 2016 NA 0 0 0 0 #> 2017 NA NA NA NA NA #> 2018 0.0 1 1 0 1 #> 2019 100.0 0 0 0 0 #> 2020 50.0 1 1 0 1 #> 2021 100.0 0 2 0 2 #> 2022 100.0 0 0 0 0 #> 2023 0.0 1 0 0 0 #> 2024 100.0 0 3 1 2 #> 2025 NA 0 0 0 0 #> 2026 100.0 0 0 0 0 #> 2027 NA 0 1 0 1 #> 2028 0.0 1 2 1 1 #> 2029 NA 0 1 0 1 #> 2030 50.0 1 0 0 0 #> 2031 100.0 0 0 0 0 #> 2032 0.0 1 1 1 0 #> 2033 0.0 1 3 0 3 #> 2034 0.0 3 1 0 1 #> 2035 0.0 1 2 0 2 #> 2036 0.0 3 1 0 1 #> 2037 0.0 1 0 0 0 #> 2038 NA 0 1 0 1 #> 2039 100.0 0 2 0 2 #> 2040 100.0 0 0 0 0 #> Int Tkl+Int Clr Err Competition_Name Gender Country Tier Season_End_Year #> 1 1 2 0 0 La Liga M ESP 1st 2023 #> 2 0 0 0 0 La Liga M ESP 1st 2023 #> 3 0 0 0 0 La Liga M ESP 1st 2023 #> 4 0 0 1 0 La Liga M ESP 1st 2023 #> 5 2 2 0 0 La Liga M ESP 1st 2023 #> 6 0 2 1 0 La Liga M ESP 1st 2023 #> 7 0 2 1 0 La Liga M ESP 1st 2023 #> 8 0 1 0 0 La Liga M ESP 1st 2023 #> 9 0 1 0 0 La Liga M ESP 1st 2023 #> 10 0 1 3 0 La Liga M ESP 1st 2023 #> 11 2 4 2 0 La Liga M ESP 1st 2023 #> 12 0 0 4 0 La Liga M ESP 1st 2023 #> 13 0 1 2 0 La Liga M ESP 1st 2023 #> 14 0 0 2 0 La Liga M ESP 1st 2023 #> 15 0 0 2 0 La Liga M ESP 1st 2023 #> 16 0 0 1 0 La Liga M ESP 1st 2023 #> 17 0 0 2 0 La Liga M ESP 1st 2023 #> 18 0 1 1 0 La Liga M ESP 1st 2023 #> 19 1 3 1 0 La Liga M ESP 1st 2023 #> 20 0 0 0 0 La Liga M ESP 1st 2023 #> 21 0 1 0 0 La Liga M ESP 1st 2023 #> 22 1 1 0 0 La Liga M ESP 1st 2023 #> 23 1 2 0 0 La Liga M ESP 1st 2023 #> 24 0 0 0 0 La Liga M ESP 1st 2023 #> 25 1 3 2 0 La Liga M ESP 1st 2023 #> 26 0 0 0 0 La Liga M ESP 1st 2023 #> 27 2 3 2 0 La Liga M ESP 1st 2023 #> 28 0 3 0 0 La Liga M ESP 1st 2023 #> 29 0 0 1 0 La Liga M ESP 1st 2023 #> 30 0 1 11 0 La Liga M ESP 1st 2023 #> 31 0 0 2 0 La Liga M ESP 1st 2023 #> 32 0 0 1 0 La Liga M ESP 1st 2023 #> 33 0 2 2 0 La Liga M ESP 1st 2023 #> 34 0 1 0 0 La Liga M ESP 1st 2023 #> 35 0 0 0 0 La Liga M ESP 1st 2023 #> 36 2 5 2 0 La Liga M ESP 1st 2023 #> 37 0 0 0 0 La Liga M ESP 1st 2023 #> 38 1 3 2 0 La Liga M ESP 1st 2023 #> 39 0 0 0 0 La Liga M ESP 1st 2023 #> 40 0 0 0 0 La Liga M ESP 1st 2023 #> 41 2 3 1 0 La Liga M ESP 1st 2023 #> 42 1 3 0 0 La Liga M ESP 1st 2023 #> 43 0 3 2 0 La Liga M ESP 1st 2023 #> 44 2 3 6 0 La Liga M ESP 1st 2023 #> 45 0 0 5 0 La Liga M ESP 1st 2023 #> 46 1 5 3 0 La Liga M ESP 1st 2023 #> 47 0 0 0 0 La Liga M ESP 1st 2023 #> 48 1 1 0 0 La Liga M ESP 1st 2023 #> 49 0 0 0 0 La Liga M ESP 1st 2023 #> 50 0 1 0 0 La Liga M ESP 1st 2023 #> 51 2 5 2 0 La Liga M ESP 1st 2023 #> 52 0 0 0 0 La Liga M ESP 1st 2023 #> 53 3 3 0 0 La Liga M ESP 1st 2023 #> 54 1 3 0 0 La Liga M ESP 1st 2023 #> 55 2 3 1 0 La Liga M ESP 1st 2023 #> 56 3 6 1 0 La Liga M ESP 1st 2023 #> 57 0 0 0 0 La Liga M ESP 1st 2023 #> 58 3 7 3 0 La Liga M ESP 1st 2023 #> 59 5 6 7 0 La Liga M ESP 1st 2023 #> 60 2 3 3 0 La Liga M ESP 1st 2023 #> 61 0 2 0 0 La Liga M ESP 1st 2023 #> 62 0 0 1 0 La Liga M ESP 1st 2023 #> 63 0 0 0 0 La Liga M ESP 1st 2023 #> 64 0 0 0 0 La Liga M ESP 1st 2023 #> 65 0 2 0 0 La Liga M ESP 1st 2023 #> 66 0 1 1 0 La Liga M ESP 1st 2023 #> 67 2 2 1 0 La Liga M ESP 1st 2023 #> 68 0 1 0 0 La Liga M ESP 1st 2023 #> 69 2 2 0 0 La Liga M ESP 1st 2023 #> 70 2 3 0 0 La Liga M ESP 1st 2023 #> 71 0 0 0 0 La Liga M ESP 1st 2023 #> 72 4 8 2 0 La Liga M ESP 1st 2023 #> 73 0 2 2 0 La Liga M ESP 1st 2023 #> 74 0 1 0 0 La Liga M ESP 1st 2023 #> 75 6 7 5 0 La Liga M ESP 1st 2023 #> 76 0 1 3 0 La Liga M ESP 1st 2023 #> 77 3 5 2 0 La Liga M ESP 1st 2023 #> 78 0 0 2 0 La Liga M ESP 1st 2023 #> 79 0 0 0 0 La Liga M ESP 1st 2023 #> 80 0 0 0 0 La Liga M ESP 1st 2023 #> 81 0 0 0 0 La Liga M ESP 1st 2023 #> 82 0 3 1 0 La Liga M ESP 1st 2023 #> 83 1 1 1 0 La Liga M ESP 1st 2023 #> 84 1 6 0 0 La Liga M ESP 1st 2023 #> 85 1 3 1 0 La Liga M ESP 1st 2023 #> 86 1 4 0 0 La Liga M ESP 1st 2023 #> 87 1 1 1 0 La Liga M ESP 1st 2023 #> 88 2 3 0 0 La Liga M ESP 1st 2023 #> 89 0 1 3 0 La Liga M ESP 1st 2023 #> 90 0 0 5 0 La Liga M ESP 1st 2023 #> 91 0 3 4 0 La Liga M ESP 1st 2023 #> 92 0 0 0 0 La Liga M ESP 1st 2023 #> 93 0 0 0 0 La Liga M ESP 1st 2023 #> 94 0 2 1 0 La Liga M ESP 1st 2023 #> 95 0 0 0 0 La Liga M ESP 1st 2023 #> 96 0 2 0 0 La Liga M ESP 1st 2023 #> 97 0 0 0 0 La Liga M ESP 1st 2023 #> 98 1 1 0 0 La Liga M ESP 1st 2023 #> 99 0 0 1 0 La Liga M ESP 1st 2023 #> 100 1 2 1 0 La Liga M ESP 1st 2023 #> 101 0 1 0 0 La Liga M ESP 1st 2023 #> 102 0 1 0 0 La Liga M ESP 1st 2023 #> 103 0 1 1 0 La Liga M ESP 1st 2023 #> 104 0 0 0 0 La Liga M ESP 1st 2023 #> 105 2 5 1 0 La Liga M ESP 1st 2023 #> 106 0 3 0 0 La Liga M ESP 1st 2023 #> 107 0 0 2 0 La Liga M ESP 1st 2023 #> 108 0 2 0 0 La Liga M ESP 1st 2023 #> 109 0 0 0 0 La Liga M ESP 1st 2023 #> 110 0 1 1 0 La Liga M ESP 1st 2023 #> 111 0 0 0 0 La Liga M ESP 1st 2023 #> 112 2 2 1 0 La Liga M ESP 1st 2023 #> 113 0 4 1 0 La Liga M ESP 1st 2023 #> 114 0 0 0 0 La Liga M ESP 1st 2023 #> 115 1 2 0 0 La Liga M ESP 1st 2023 #> 116 0 1 0 0 La Liga M ESP 1st 2023 #> 117 1 7 3 0 La Liga M ESP 1st 2023 #> 118 1 1 1 0 La Liga M ESP 1st 2023 #> 119 1 3 1 0 La Liga M ESP 1st 2023 #> 120 3 5 0 0 La Liga M ESP 1st 2023 #> 121 0 0 3 0 La Liga M ESP 1st 2023 #> 122 1 2 4 0 La Liga M ESP 1st 2023 #> 123 0 0 2 0 La Liga M ESP 1st 2023 #> 124 0 0 1 0 La Liga M ESP 1st 2023 #> 125 0 0 1 0 La Liga M ESP 1st 2023 #> 126 0 0 0 0 La Liga M ESP 1st 2023 #> 127 0 0 0 0 La Liga M ESP 1st 2023 #> 128 0 0 1 0 La Liga M ESP 1st 2023 #> 129 0 2 1 0 La Liga M ESP 1st 2023 #> 130 2 3 0 0 La Liga M ESP 1st 2023 #> 131 1 2 0 0 La Liga M ESP 1st 2023 #> 132 0 4 3 0 La Liga M ESP 1st 2023 #> 133 0 2 0 0 La Liga M ESP 1st 2023 #> 134 0 1 0 0 La Liga M ESP 1st 2023 #> 135 0 3 1 0 La Liga M ESP 1st 2023 #> 136 2 5 5 0 La Liga M ESP 1st 2023 #> 137 1 2 2 0 La Liga M ESP 1st 2023 #> 138 2 3 4 0 La Liga M ESP 1st 2023 #> 139 0 1 0 0 La Liga M ESP 1st 2023 #> 140 0 0 2 0 La Liga M ESP 1st 2023 #> 141 0 1 1 0 La Liga M ESP 1st 2023 #> 142 0 2 1 0 La Liga M ESP 1st 2023 #> 143 0 1 1 0 La Liga M ESP 1st 2023 #> 144 0 0 0 0 La Liga M ESP 1st 2023 #> 145 2 5 2 0 La Liga M ESP 1st 2023 #> 146 0 3 0 0 La Liga M ESP 1st 2023 #> 147 1 2 6 0 La Liga M ESP 1st 2023 #> 148 0 0 0 0 La Liga M ESP 1st 2023 #> 149 0 4 1 0 La Liga M ESP 1st 2023 #> 150 1 2 2 0 La Liga M ESP 1st 2023 #> 151 1 4 3 0 La Liga M ESP 1st 2023 #> 152 0 0 1 0 La Liga M ESP 1st 2023 #> 153 1 2 6 0 La Liga M ESP 1st 2023 #> 154 0 3 1 0 La Liga M ESP 1st 2023 #> 155 2 4 2 0 La Liga M ESP 1st 2023 #> 156 0 0 0 0 La Liga M ESP 1st 2023 #> 157 0 2 0 0 La Liga M ESP 1st 2023 #> 158 1 2 3 0 La Liga M ESP 1st 2023 #> 159 0 3 0 0 La Liga M ESP 1st 2023 #> 160 0 0 0 0 La Liga M ESP 1st 2023 #> 161 0 1 0 0 La Liga M ESP 1st 2023 #> 162 0 0 1 0 La Liga M ESP 1st 2023 #> 163 0 0 0 0 La Liga M ESP 1st 2023 #> 164 0 0 0 0 La Liga M ESP 1st 2023 #> 165 1 NA NA NA La Liga M ESP 1st 2023 #> 166 1 3 0 0 La Liga M ESP 1st 2023 #> 167 0 0 2 0 La Liga M ESP 1st 2023 #> 168 0 1 3 0 La Liga M ESP 1st 2023 #> 169 2 2 3 0 La Liga M ESP 1st 2023 #> 170 0 2 2 0 La Liga M ESP 1st 2023 #> 171 2 3 2 0 La Liga M ESP 1st 2023 #> 172 0 0 0 0 La Liga M ESP 1st 2023 #> 173 1 2 0 0 La Liga M ESP 1st 2023 #> 174 0 0 0 0 La Liga M ESP 1st 2023 #> 175 0 0 0 0 La Liga M ESP 1st 2023 #> 176 1 2 0 0 La Liga M ESP 1st 2023 #> 177 0 2 0 0 La Liga M ESP 1st 2023 #> 178 1 1 0 0 La Liga M ESP 1st 2023 #> 179 0 1 0 0 La Liga M ESP 1st 2023 #> 180 1 2 0 0 La Liga M ESP 1st 2023 #> 181 0 0 1 0 La Liga M ESP 1st 2023 #> 182 0 1 0 0 La Liga M ESP 1st 2023 #> 183 0 0 0 0 La Liga M ESP 1st 2023 #> 184 0 2 3 0 La Liga M ESP 1st 2023 #> 185 0 0 2 0 La Liga M ESP 1st 2023 #> 186 0 0 0 0 La Liga M ESP 1st 2023 #> 187 1 5 3 0 La Liga M ESP 1st 2023 #> 188 0 0 1 0 La Liga M ESP 1st 2023 #> 189 0 0 3 0 La Liga M ESP 1st 2023 #> 190 0 0 0 0 La Liga M ESP 1st 2023 #> 191 1 1 0 0 La Liga M ESP 1st 2023 #> 192 0 0 0 0 La Liga M ESP 1st 2023 #> 193 1 2 2 0 La Liga M ESP 1st 2023 #> 194 0 1 3 0 La Liga M ESP 1st 2023 #> 195 0 0 0 0 La Liga M ESP 1st 2023 #> 196 1 2 2 0 La Liga M ESP 1st 2023 #> 197 0 2 0 0 La Liga M ESP 1st 2023 #> 198 0 0 2 0 La Liga M ESP 1st 2023 #> 199 0 0 1 0 La Liga M ESP 1st 2023 #> 200 3 4 9 0 La Liga M ESP 1st 2023 #> 201 0 2 5 0 La Liga M ESP 1st 2023 #> 202 0 0 0 0 La Liga M ESP 1st 2023 #> 203 3 6 4 0 La Liga M ESP 1st 2023 #> 204 0 0 1 0 La Liga M ESP 1st 2023 #> 205 0 0 0 0 La Liga M ESP 1st 2023 #> 206 0 1 0 0 La Liga M ESP 1st 2023 #> 207 1 1 0 0 La Liga M ESP 1st 2023 #> 208 0 0 0 0 La Liga M ESP 1st 2023 #> 209 1 2 0 0 La Liga M ESP 1st 2023 #> 210 0 0 1 0 La Liga M ESP 1st 2023 #> 211 1 3 0 0 La Liga M ESP 1st 2023 #> 212 0 0 0 0 La Liga M ESP 1st 2023 #> 213 0 2 0 0 La Liga M ESP 1st 2023 #> 214 1 1 0 0 La Liga M ESP 1st 2023 #> 215 0 2 0 0 La Liga M ESP 1st 2023 #> 216 0 0 0 0 La Liga M ESP 1st 2023 #> 217 2 2 0 0 La Liga M ESP 1st 2023 #> 218 1 1 2 0 La Liga M ESP 1st 2023 #> 219 1 2 0 0 La Liga M ESP 1st 2023 #> 220 0 0 0 0 La Liga M ESP 1st 2023 #> 221 0 0 1 0 La Liga M ESP 1st 2023 #> 222 0 0 0 0 La Liga M ESP 1st 2023 #> 223 0 0 0 0 La Liga M ESP 1st 2023 #> 224 0 0 0 0 La Liga M ESP 1st 2023 #> 225 0 1 2 0 La Liga M ESP 1st 2023 #> 226 0 0 0 0 La Liga M ESP 1st 2023 #> 227 0 1 0 0 La Liga M ESP 1st 2023 #> 228 0 0 0 0 La Liga M ESP 1st 2023 #> 229 1 5 1 1 La Liga M ESP 1st 2023 #> 230 0 1 0 0 La Liga M ESP 1st 2023 #> 231 0 0 0 0 La Liga M ESP 1st 2023 #> 232 0 0 3 0 La Liga M ESP 1st 2023 #> 233 1 3 5 0 La Liga M ESP 1st 2023 #> 234 1 2 3 0 La Liga M ESP 1st 2023 #> 235 1 1 0 0 La Liga M ESP 1st 2023 #> 236 0 0 0 0 La Liga M ESP 1st 2023 #> 237 0 1 4 0 La Liga M ESP 1st 2023 #> 238 0 0 0 0 La Liga M ESP 1st 2023 #> 239 2 5 0 0 La Liga M ESP 1st 2023 #> 240 0 1 0 0 La Liga M ESP 1st 2023 #> 241 0 2 1 0 La Liga M ESP 1st 2023 #> 242 2 3 0 0 La Liga M ESP 1st 2023 #> 243 0 0 1 0 La Liga M ESP 1st 2023 #> 244 1 4 0 0 La Liga M ESP 1st 2023 #> 245 0 0 0 0 La Liga M ESP 1st 2023 #> 246 0 1 2 0 La Liga M ESP 1st 2023 #> 247 3 5 7 0 La Liga M ESP 1st 2023 #> 248 1 2 7 0 La Liga M ESP 1st 2023 #> 249 2 6 0 0 La Liga M ESP 1st 2023 #> 250 0 0 5 0 La Liga M ESP 1st 2023 #> 251 0 0 1 0 La Liga M ESP 1st 2023 #> 252 0 0 1 0 La Liga M ESP 1st 2023 #> 253 0 0 0 0 La Liga M ESP 1st 2023 #> 254 0 0 0 0 La Liga M ESP 1st 2023 #> 255 0 1 0 0 La Liga M ESP 1st 2023 #> 256 1 3 0 0 La Liga M ESP 1st 2023 #> 257 0 0 1 0 La Liga M ESP 1st 2023 #> 258 2 4 1 0 La Liga M ESP 1st 2023 #> 259 0 1 0 0 La Liga M ESP 1st 2023 #> 260 0 1 0 0 La Liga M ESP 1st 2023 #> 261 1 2 1 0 La Liga M ESP 1st 2023 #> 262 2 3 10 0 La Liga M ESP 1st 2023 #> 263 1 1 2 1 La Liga M ESP 1st 2023 #> 264 2 2 2 1 La Liga M ESP 1st 2023 #> 265 0 2 3 0 La Liga M ESP 1st 2023 #> 266 0 0 0 0 La Liga M ESP 1st 2023 #> 267 1 1 1 0 La Liga M ESP 1st 2023 #> 268 0 0 0 0 La Liga M ESP 1st 2023 #> 269 0 0 1 0 La Liga M ESP 1st 2023 #> 270 0 0 0 0 La Liga M ESP 1st 2023 #> 271 0 2 1 0 La Liga M ESP 1st 2023 #> 272 0 1 0 0 La Liga M ESP 1st 2023 #> 273 0 3 1 0 La Liga M ESP 1st 2023 #> 274 1 2 0 0 La Liga M ESP 1st 2023 #> 275 0 0 0 0 La Liga M ESP 1st 2023 #> 276 1 6 3 0 La Liga M ESP 1st 2023 #> 277 1 2 0 0 La Liga M ESP 1st 2023 #> 278 2 5 3 0 La Liga M ESP 1st 2023 #> 279 0 0 2 0 La Liga M ESP 1st 2023 #> 280 3 6 4 0 La Liga M ESP 1st 2023 #> 281 1 2 1 0 La Liga M ESP 1st 2023 #> 282 0 0 0 0 La Liga M ESP 1st 2023 #> 283 0 1 0 0 La Liga M ESP 1st 2023 #> 284 0 2 0 0 La Liga M ESP 1st 2023 #> 285 0 1 0 0 La Liga M ESP 1st 2023 #> 286 0 1 0 0 La Liga M ESP 1st 2023 #> 287 0 0 0 0 La Liga M ESP 1st 2023 #> 288 0 0 0 0 La Liga M ESP 1st 2023 #> 289 1 1 0 0 La Liga M ESP 1st 2023 #> 290 1 4 0 0 La Liga M ESP 1st 2023 #> 291 1 2 2 0 La Liga M ESP 1st 2023 #> 292 0 1 1 0 La Liga M ESP 1st 2023 #> 293 0 0 3 0 La Liga M ESP 1st 2023 #> 294 2 3 1 0 La Liga M ESP 1st 2023 #> 295 7 10 0 0 La Liga M ESP 1st 2023 #> 296 2 4 0 0 La Liga M ESP 1st 2023 #> 297 0 0 0 0 La Liga M ESP 1st 2023 #> 298 0 0 1 0 La Liga M ESP 1st 2023 #> 299 0 0 0 0 La Liga M ESP 1st 2023 #> 300 0 1 3 0 La Liga M ESP 1st 2023 #> 301 0 0 0 0 La Liga M ESP 1st 2023 #> 302 1 1 0 0 La Liga M ESP 1st 2023 #> 303 3 5 0 0 La Liga M ESP 1st 2023 #> 304 0 0 1 0 La Liga M ESP 1st 2023 #> 305 2 4 2 0 La Liga M ESP 1st 2023 #> 306 0 0 2 0 La Liga M ESP 1st 2023 #> 307 0 0 0 0 La Liga M ESP 1st 2023 #> 308 3 5 1 0 La Liga M ESP 1st 2023 #> 309 2 4 2 0 La Liga M ESP 1st 2023 #> 310 1 2 4 0 La Liga M ESP 1st 2023 #> 311 0 2 2 1 La Liga M ESP 1st 2023 #> 312 1 1 3 0 La Liga M ESP 1st 2023 #> 313 1 1 0 0 La Liga M ESP 1st 2023 #> 314 0 0 2 0 La Liga M ESP 1st 2023 #> 315 0 0 0 0 La Liga M ESP 1st 2023 #> 316 0 0 0 0 La Liga M ESP 1st 2023 #> 317 0 1 2 0 La Liga M ESP 1st 2023 #> 318 3 6 0 0 La Liga M ESP 1st 2023 #> 319 0 0 0 0 La Liga M ESP 1st 2023 #> 320 0 1 0 0 La Liga M ESP 1st 2023 #> 321 4 7 1 0 La Liga M ESP 1st 2023 #> 322 0 1 1 0 La Liga M ESP 1st 2023 #> 323 0 0 0 0 La Liga M ESP 1st 2023 #> 324 0 1 1 0 La Liga M ESP 1st 2023 #> 325 0 0 0 0 La Liga M ESP 1st 2023 #> 326 0 1 1 0 La Liga M ESP 1st 2023 #> 327 0 0 0 0 La Liga M ESP 1st 2023 #> 328 0 0 2 0 La Liga M ESP 1st 2023 #> 329 0 0 0 0 La Liga M ESP 1st 2023 #> 330 0 0 1 0 La Liga M ESP 1st 2023 #> 331 0 0 0 0 La Liga M ESP 1st 2023 #> 332 1 1 5 0 La Liga M ESP 1st 2023 #> 333 0 1 0 0 La Liga M ESP 1st 2023 #> 334 0 0 3 0 La Liga M ESP 1st 2023 #> 335 1 1 0 0 La Liga M ESP 1st 2023 #> 336 0 1 0 0 La Liga M ESP 1st 2023 #> 337 0 1 1 0 La Liga M ESP 1st 2023 #> 338 0 1 7 0 La Liga M ESP 1st 2023 #> 339 0 0 0 0 La Liga M ESP 1st 2023 #> 340 0 0 0 0 La Liga M ESP 1st 2023 #> 341 1 2 1 0 La Liga M ESP 1st 2023 #> 342 0 1 9 0 La Liga M ESP 1st 2023 #> 343 0 0 0 0 La Liga M ESP 1st 2023 #> 344 1 2 8 0 La Liga M ESP 1st 2023 #> 345 0 0 1 0 La Liga M ESP 1st 2023 #> 346 0 0 0 0 La Liga M ESP 1st 2023 #> 347 0 0 0 0 La Liga M ESP 1st 2023 #> 348 1 1 2 0 La Liga M ESP 1st 2023 #> 349 0 2 0 0 La Liga M ESP 1st 2023 #> 350 1 5 0 0 La Liga M ESP 1st 2023 #> 351 1 4 0 0 La Liga M ESP 1st 2023 #> 352 0 0 0 0 La Liga M ESP 1st 2023 #> 353 0 3 0 0 La Liga M ESP 1st 2023 #> 354 0 2 0 0 La Liga M ESP 1st 2023 #> 355 0 1 0 0 La Liga M ESP 1st 2023 #> 356 1 3 2 0 La Liga M ESP 1st 2023 #> 357 0 0 0 0 La Liga M ESP 1st 2023 #> 358 3 3 1 0 La Liga M ESP 1st 2023 #> 359 1 2 0 0 La Liga M ESP 1st 2023 #> 360 1 1 1 0 La Liga M ESP 1st 2023 #> 361 0 0 0 0 La Liga M ESP 1st 2023 #> 362 0 2 0 0 La Liga M ESP 1st 2023 #> 363 0 0 0 0 La Liga M ESP 1st 2023 #> 364 2 5 2 0 La Liga M ESP 1st 2023 #> 365 0 1 0 0 La Liga M ESP 1st 2023 #> 366 0 0 0 0 La Liga M ESP 1st 2023 #> 367 0 2 0 0 La Liga M ESP 1st 2023 #> 368 2 3 3 0 La Liga M ESP 1st 2023 #> 369 0 1 2 0 La Liga M ESP 1st 2023 #> 370 1 1 2 0 La Liga M ESP 1st 2023 #> 371 0 3 1 0 La Liga M ESP 1st 2023 #> 372 0 1 4 0 La Liga M ESP 1st 2023 #> 373 0 2 3 0 La Liga M ESP 1st 2023 #> 374 0 1 1 0 La Liga M ESP 1st 2023 #> 375 3 3 8 0 La Liga M ESP 1st 2023 #> 376 0 3 1 0 La Liga M ESP 1st 2023 #> 377 0 0 1 1 La Liga M ESP 1st 2023 #> 378 1 2 0 0 La Liga M ESP 1st 2023 #> 379 0 0 0 0 La Liga M ESP 1st 2023 #> 380 0 0 0 0 La Liga M ESP 1st 2023 #> 381 0 0 0 0 La Liga M ESP 1st 2023 #> 382 0 0 1 0 La Liga M ESP 1st 2023 #> 383 1 4 1 0 La Liga M ESP 1st 2023 #> 384 0 0 0 0 La Liga M ESP 1st 2023 #> 385 4 6 0 0 La Liga M ESP 1st 2023 #> 386 0 0 0 0 La Liga M ESP 1st 2023 #> 387 0 0 0 0 La Liga M ESP 1st 2023 #> 388 1 2 2 0 La Liga M ESP 1st 2023 #> 389 3 5 5 0 La Liga M ESP 1st 2023 #> 390 2 5 3 0 La Liga M ESP 1st 2023 #> 391 1 2 2 0 La Liga M ESP 1st 2023 #> 392 1 1 0 0 La Liga M ESP 1st 2023 #> 393 0 0 0 0 La Liga M ESP 1st 2023 #> 394 0 0 3 0 La Liga M ESP 1st 2023 #> 395 1 1 0 0 La Liga M ESP 1st 2023 #> 396 0 1 0 0 La Liga M ESP 1st 2023 #> 397 0 0 1 0 La Liga M ESP 1st 2023 #> 398 1 2 0 0 La Liga M ESP 1st 2023 #> 399 0 0 0 0 La Liga M ESP 1st 2023 #> 400 1 2 5 0 La Liga M ESP 1st 2023 #> 401 0 3 2 0 La Liga M ESP 1st 2023 #> 402 0 1 0 0 La Liga M ESP 1st 2023 #> 403 0 0 1 0 La Liga M ESP 1st 2023 #> 404 0 5 2 0 La Liga M ESP 1st 2023 #> 405 0 0 0 0 La Liga M ESP 1st 2023 #> 406 1 1 8 0 La Liga M ESP 1st 2023 #> 407 2 3 6 0 La Liga M ESP 1st 2023 #> 408 1 3 2 0 La Liga M ESP 1st 2023 #> 409 0 0 0 0 La Liga M ESP 1st 2023 #> 410 0 2 2 0 La Liga M ESP 1st 2023 #> 411 0 1 0 0 La Liga M ESP 1st 2023 #> 412 0 1 0 0 La Liga M ESP 1st 2023 #> 413 0 0 0 0 La Liga M ESP 1st 2023 #> 414 2 3 2 0 La Liga M ESP 1st 2023 #> 415 0 2 1 0 La Liga M ESP 1st 2023 #> 416 0 3 0 0 La Liga M ESP 1st 2023 #> 417 2 2 0 0 La Liga M ESP 1st 2023 #> 418 1 3 1 0 La Liga M ESP 1st 2023 #> 419 3 5 1 0 La Liga M ESP 1st 2023 #> 420 0 0 0 0 La Liga M ESP 1st 2023 #> 421 1 2 1 0 La Liga M ESP 1st 2023 #> 422 3 5 3 0 La Liga M ESP 1st 2023 #> 423 2 2 1 0 La Liga M ESP 1st 2023 #> 424 0 0 0 0 La Liga M ESP 1st 2023 #> 425 0 0 0 0 La Liga M ESP 1st 2023 #> 426 1 2 0 0 La Liga M ESP 1st 2023 #> 427 0 0 1 0 La Liga M ESP 1st 2023 #> 428 0 0 0 0 La Liga M ESP 1st 2023 #> 429 0 0 0 0 La Liga M ESP 1st 2023 #> 430 0 0 0 0 La Liga M ESP 1st 2023 #> 431 1 1 0 0 La Liga M ESP 1st 2023 #> 432 0 0 1 0 La Liga M ESP 1st 2023 #> 433 1 5 2 0 La Liga M ESP 1st 2023 #> 434 1 5 1 0 La Liga M ESP 1st 2023 #> 435 0 0 5 0 La Liga M ESP 1st 2023 #> 436 3 3 6 0 La Liga M ESP 1st 2023 #> 437 1 2 4 0 La Liga M ESP 1st 2023 #> 438 0 0 0 0 La Liga M ESP 1st 2023 #> 439 0 0 0 0 La Liga M ESP 1st 2023 #> 440 0 0 0 0 La Liga M ESP 1st 2023 #> 441 1 1 1 0 La Liga M ESP 1st 2023 #> 442 0 1 1 0 La Liga M ESP 1st 2023 #> 443 0 0 0 0 La Liga M ESP 1st 2023 #> 444 2 3 1 0 La Liga M ESP 1st 2023 #> 445 1 4 0 0 La Liga M ESP 1st 2023 #> 446 1 1 2 0 La Liga M ESP 1st 2023 #> 447 0 0 0 0 La Liga M ESP 1st 2023 #> 448 1 3 0 0 La Liga M ESP 1st 2023 #> 449 1 2 3 0 La Liga M ESP 1st 2023 #> 450 0 3 2 0 La Liga M ESP 1st 2023 #> 451 0 2 1 0 La Liga M ESP 1st 2023 #> 452 0 0 0 0 La Liga M ESP 1st 2023 #> 453 0 1 0 0 La Liga M ESP 1st 2023 #> 454 2 5 0 0 La Liga M ESP 1st 2023 #> 455 0 0 0 0 La Liga M ESP 1st 2023 #> 456 0 2 0 0 La Liga M ESP 1st 2023 #> 457 2 3 1 0 La Liga M ESP 1st 2023 #> 458 0 1 0 0 La Liga M ESP 1st 2023 #> 459 3 5 4 0 La Liga M ESP 1st 2023 #> 460 0 1 0 0 La Liga M ESP 1st 2023 #> 461 2 2 0 0 La Liga M ESP 1st 2023 #> 462 3 4 2 0 La Liga M ESP 1st 2023 #> 463 0 0 4 0 La Liga M ESP 1st 2023 #> 464 0 0 1 0 La Liga M ESP 1st 2023 #> 465 2 3 2 0 La Liga M ESP 1st 2023 #> 466 1 2 2 0 La Liga M ESP 1st 2023 #> 467 0 0 3 0 La Liga M ESP 1st 2023 #> 468 0 0 1 0 La Liga M ESP 1st 2023 #> 469 0 2 1 0 La Liga M ESP 1st 2023 #> 470 0 0 0 0 La Liga M ESP 1st 2023 #> 471 0 1 1 0 La Liga M ESP 1st 2023 #> 472 0 0 0 0 La Liga M ESP 1st 2023 #> 473 1 1 0 0 La Liga M ESP 1st 2023 #> 474 0 0 0 0 La Liga M ESP 1st 2023 #> 475 0 0 0 0 La Liga M ESP 1st 2023 #> 476 0 0 1 0 La Liga M ESP 1st 2023 #> 477 2 6 0 0 La Liga M ESP 1st 2023 #> 478 0 0 1 0 La Liga M ESP 1st 2023 #> 479 0 0 0 0 La Liga M ESP 1st 2023 #> 480 1 4 4 0 La Liga M ESP 1st 2023 #> 481 3 4 10 0 La Liga M ESP 1st 2023 #> 482 1 4 5 0 La Liga M ESP 1st 2023 #> 483 2 5 0 0 La Liga M ESP 1st 2023 #> 484 0 0 0 0 La Liga M ESP 1st 2023 #> 485 0 0 0 0 La Liga M ESP 1st 2023 #> 486 0 0 2 0 La Liga M ESP 1st 2023 #> 487 0 1 0 0 La Liga M ESP 1st 2023 #> 488 0 0 0 0 La Liga M ESP 1st 2023 #> 489 0 2 1 0 La Liga M ESP 1st 2023 #> 490 1 NA NA NA La Liga M ESP 1st 2023 #> 491 0 0 0 0 La Liga M ESP 1st 2023 #> 492 1 3 3 0 La Liga M ESP 1st 2023 #> 493 0 0 0 0 La Liga M ESP 1st 2023 #> 494 0 2 1 0 La Liga M ESP 1st 2023 #> 495 1 2 0 0 La Liga M ESP 1st 2023 #> 496 0 3 2 0 La Liga M ESP 1st 2023 #> 497 2 3 2 0 La Liga M ESP 1st 2023 #> 498 2 4 3 0 La Liga M ESP 1st 2023 #> 499 0 1 0 0 La Liga M ESP 1st 2023 #> 500 0 0 1 0 La Liga M ESP 1st 2023 #> 501 0 2 0 0 La Liga M ESP 1st 2023 #> 502 0 0 0 0 La Liga M ESP 1st 2023 #> 503 0 1 0 0 La Liga M ESP 1st 2023 #> 504 0 0 0 0 La Liga M ESP 1st 2023 #> 505 0 3 1 0 La Liga M ESP 1st 2023 #> 506 0 1 3 1 La Liga M ESP 1st 2023 #> 507 0 1 0 0 La Liga M ESP 1st 2023 #> 508 0 0 0 0 La Liga M ESP 1st 2023 #> 509 0 2 1 0 La Liga M ESP 1st 2023 #> 510 1 1 0 0 La Liga M ESP 1st 2023 #> 511 0 3 2 0 La Liga M ESP 1st 2023 #> 512 0 2 0 0 La Liga M ESP 1st 2023 #> 513 0 2 1 0 La Liga M ESP 1st 2023 #> 514 0 1 2 0 La Liga M ESP 1st 2023 #> 515 1 1 0 0 La Liga M ESP 1st 2023 #> 516 0 0 1 0 La Liga M ESP 1st 2023 #> 517 0 0 0 0 La Liga M ESP 1st 2023 #> 518 0 0 0 0 La Liga M ESP 1st 2023 #> 519 1 1 2 0 La Liga M ESP 1st 2023 #> 520 0 0 0 0 La Liga M ESP 1st 2023 #> 521 1 2 0 0 La Liga M ESP 1st 2023 #> 522 4 4 2 0 La Liga M ESP 1st 2023 #> 523 0 0 0 0 La Liga M ESP 1st 2023 #> 524 0 0 1 0 La Liga M ESP 1st 2023 #> 525 1 2 0 0 La Liga M ESP 1st 2023 #> 526 0 0 3 0 La Liga M ESP 1st 2023 #> 527 1 1 3 0 La Liga M ESP 1st 2023 #> 528 0 0 6 0 La Liga M ESP 1st 2023 #> 529 2 3 9 0 La Liga M ESP 1st 2023 #> 530 2 5 6 0 La Liga M ESP 1st 2023 #> 531 0 0 0 0 La Liga M ESP 1st 2023 #> 532 0 4 0 0 La Liga M ESP 1st 2023 #> 533 0 0 0 0 La Liga M ESP 1st 2023 #> 534 0 0 1 0 La Liga M ESP 1st 2023 #> 535 0 0 0 0 La Liga M ESP 1st 2023 #> 536 0 2 1 0 La Liga M ESP 1st 2023 #> 537 0 2 0 0 La Liga M ESP 1st 2023 #> 538 1 6 0 0 La Liga M ESP 1st 2023 #> 539 0 0 0 0 La Liga M ESP 1st 2023 #> 540 0 0 0 0 La Liga M ESP 1st 2023 #> 541 1 6 1 1 La Liga M ESP 1st 2023 #> 542 0 3 0 0 La Liga M ESP 1st 2023 #> 543 1 2 4 0 La Liga M ESP 1st 2023 #> 544 1 2 3 0 La Liga M ESP 1st 2023 #> 545 1 2 1 1 La Liga M ESP 1st 2023 #> 546 0 1 0 0 La Liga M ESP 1st 2023 #> 547 0 0 1 0 La Liga M ESP 1st 2023 #> 548 0 1 0 0 La Liga M ESP 1st 2023 #> 549 1 1 0 0 La Liga M ESP 1st 2023 #> 550 1 2 0 0 La Liga M ESP 1st 2023 #> 551 0 2 0 0 La Liga M ESP 1st 2023 #> 552 0 1 2 0 La Liga M ESP 1st 2023 #> 553 0 0 0 0 La Liga M ESP 1st 2023 #> 554 1 1 0 0 La Liga M ESP 1st 2023 #> 555 3 6 2 0 La Liga M ESP 1st 2023 #> 556 2 3 1 0 La Liga M ESP 1st 2023 #> 557 0 0 0 0 La Liga M ESP 1st 2023 #> 558 1 5 1 0 La Liga M ESP 1st 2023 #> 559 1 2 0 0 La Liga M ESP 1st 2023 #> 560 0 3 2 0 La Liga M ESP 1st 2023 #> 561 2 2 4 0 La Liga M ESP 1st 2023 #> 562 0 3 2 0 La Liga M ESP 1st 2023 #> 563 0 0 0 0 La Liga M ESP 1st 2023 #> 564 1 1 0 0 La Liga M ESP 1st 2023 #> 565 0 0 0 1 La Liga M ESP 1st 2023 #> 566 0 1 0 0 La Liga M ESP 1st 2023 #> 567 0 1 2 0 La Liga M ESP 1st 2023 #> 568 0 1 0 0 La Liga M ESP 1st 2023 #> 569 0 0 1 0 La Liga M ESP 1st 2023 #> 570 0 1 1 0 La Liga M ESP 1st 2023 #> 571 1 1 0 0 La Liga M ESP 1st 2023 #> 572 0 1 1 0 La Liga M ESP 1st 2023 #> 573 1 2 3 0 La Liga M ESP 1st 2023 #> 574 1 2 1 0 La Liga M ESP 1st 2023 #> 575 0 1 4 0 La Liga M ESP 1st 2023 #> 576 0 1 3 1 La Liga M ESP 1st 2023 #> 577 1 5 5 0 La Liga M ESP 1st 2023 #> 578 0 0 0 0 La Liga M ESP 1st 2023 #> 579 0 0 0 0 La Liga M ESP 1st 2023 #> 580 0 2 2 0 La Liga M ESP 1st 2023 #> 581 0 1 0 0 La Liga M ESP 1st 2023 #> 582 1 4 0 0 La Liga M ESP 1st 2023 #> 583 0 1 0 0 La Liga M ESP 1st 2023 #> 584 0 0 1 0 La Liga M ESP 1st 2023 #> 585 1 5 2 0 La Liga M ESP 1st 2023 #> 586 2 2 4 0 La Liga M ESP 1st 2023 #> 587 0 0 8 0 La Liga M ESP 1st 2023 #> 588 0 0 0 0 La Liga M ESP 1st 2023 #> 589 1 1 0 0 La Liga M ESP 1st 2023 #> 590 0 5 3 0 La Liga M ESP 1st 2023 #> 591 0 0 0 1 La Liga M ESP 1st 2023 #> 592 0 0 0 0 La Liga M ESP 1st 2023 #> 593 0 0 2 0 La Liga M ESP 1st 2023 #> 594 0 0 0 0 La Liga M ESP 1st 2023 #> 595 1 4 0 0 La Liga M ESP 1st 2023 #> 596 0 1 0 0 La Liga M ESP 1st 2023 #> 597 1 5 1 0 La Liga M ESP 1st 2023 #> 598 0 0 0 0 La Liga M ESP 1st 2023 #> 599 0 0 0 0 La Liga M ESP 1st 2023 #> 600 0 1 1 0 La Liga M ESP 1st 2023 #> 601 0 1 0 0 La Liga M ESP 1st 2023 #> 602 0 3 3 0 La Liga M ESP 1st 2023 #> 603 0 2 0 0 La Liga M ESP 1st 2023 #> 604 0 0 2 0 La Liga M ESP 1st 2023 #> 605 2 4 1 0 La Liga M ESP 1st 2023 #> 606 1 4 0 0 La Liga M ESP 1st 2023 #> 607 0 0 2 0 La Liga M ESP 1st 2023 #> 608 0 0 1 0 La Liga M ESP 1st 2023 #> 609 0 0 0 0 La Liga M ESP 1st 2023 #> 610 0 0 0 0 La Liga M ESP 1st 2023 #> 611 2 6 0 0 La Liga M ESP 1st 2023 #> 612 0 0 0 0 La Liga M ESP 1st 2023 #> 613 2 3 0 0 La Liga M ESP 1st 2023 #> 614 0 0 0 0 La Liga M ESP 1st 2023 #> 615 0 0 0 0 La Liga M ESP 1st 2023 #> 616 0 2 0 0 La Liga M ESP 1st 2023 #> 617 0 1 0 0 La Liga M ESP 1st 2023 #> 618 0 5 1 0 La Liga M ESP 1st 2023 #> 619 2 3 2 0 La Liga M ESP 1st 2023 #> 620 0 1 4 0 La Liga M ESP 1st 2023 #> 621 1 1 4 0 La Liga M ESP 1st 2023 #> 622 0 0 0 0 La Liga M ESP 1st 2023 #> 623 0 1 0 0 La Liga M ESP 1st 2023 #> 624 0 0 1 0 La Liga M ESP 1st 2023 #> 625 1 1 1 0 La Liga M ESP 1st 2023 #> 626 0 1 2 0 La Liga M ESP 1st 2023 #> 627 0 0 0 0 La Liga M ESP 1st 2023 #> 628 0 0 1 0 La Liga M ESP 1st 2023 #> 629 0 2 0 0 La Liga M ESP 1st 2023 #> 630 0 0 0 0 La Liga M ESP 1st 2023 #> 631 1 3 0 0 La Liga M ESP 1st 2023 #> 632 2 7 4 0 La Liga M ESP 1st 2023 #> 633 1 1 2 0 La Liga M ESP 1st 2023 #> 634 0 1 14 0 La Liga M ESP 1st 2023 #> 635 0 0 1 0 La Liga M ESP 1st 2023 #> 636 6 8 4 0 La Liga M ESP 1st 2023 #> 637 0 0 1 0 La Liga M ESP 1st 2023 #> 638 0 1 0 0 La Liga M ESP 1st 2023 #> 639 0 0 0 0 La Liga M ESP 1st 2023 #> 640 3 3 0 0 La Liga M ESP 1st 2023 #> 641 0 0 0 0 La Liga M ESP 1st 2023 #> 642 0 1 0 0 La Liga M ESP 1st 2023 #> 643 1 1 1 0 La Liga M ESP 1st 2023 #> 644 0 1 0 0 La Liga M ESP 1st 2023 #> 645 0 4 3 0 La Liga M ESP 1st 2023 #> 646 1 3 1 0 La Liga M ESP 1st 2023 #> 647 0 0 0 0 La Liga M ESP 1st 2023 #> 648 0 0 3 0 La Liga M ESP 1st 2023 #> 649 0 4 4 0 La Liga M ESP 1st 2023 #> 650 4 5 1 0 La Liga M ESP 1st 2023 #> 651 0 0 0 0 La Liga M ESP 1st 2023 #> 652 0 3 1 0 La Liga M ESP 1st 2023 #> 653 1 1 0 0 La Liga M ESP 1st 2023 #> 654 0 0 0 0 La Liga M ESP 1st 2023 #> 655 0 0 0 0 La Liga M ESP 1st 2023 #> 656 1 2 0 0 La Liga M ESP 1st 2023 #> 657 0 0 0 0 La Liga M ESP 1st 2023 #> 658 1 1 0 0 La Liga M ESP 1st 2023 #> 659 1 1 1 0 La Liga M ESP 1st 2023 #> 660 0 1 0 0 La Liga M ESP 1st 2023 #> 661 2 3 1 0 La Liga M ESP 1st 2023 #> 662 0 1 0 0 La Liga M ESP 1st 2023 #> 663 1 6 1 0 La Liga M ESP 1st 2023 #> 664 1 3 3 0 La Liga M ESP 1st 2023 #> 665 0 3 4 0 La Liga M ESP 1st 2023 #> 666 0 2 2 0 La Liga M ESP 1st 2023 #> 667 0 1 1 0 La Liga M ESP 1st 2023 #> 668 0 0 1 0 La Liga M ESP 1st 2023 #> 669 0 0 0 0 La Liga M ESP 1st 2023 #> 670 0 0 0 0 La Liga M ESP 1st 2023 #> 671 0 1 0 0 La Liga M ESP 1st 2023 #> 672 0 0 0 0 La Liga M ESP 1st 2023 #> 673 1 2 0 0 La Liga M ESP 1st 2023 #> 674 0 0 0 0 La Liga M ESP 1st 2023 #> 675 0 1 0 0 La Liga M ESP 1st 2023 #> 676 2 4 2 0 La Liga M ESP 1st 2023 #> 677 0 4 0 0 La Liga M ESP 1st 2023 #> 678 4 9 3 1 La Liga M ESP 1st 2023 #> 679 1 6 2 0 La Liga M ESP 1st 2023 #> 680 0 2 0 0 La Liga M ESP 1st 2023 #> 681 1 2 3 0 La Liga M ESP 1st 2023 #> 682 2 2 3 0 La Liga M ESP 1st 2023 #> 683 0 4 0 0 La Liga M ESP 1st 2023 #> 684 0 0 0 0 La Liga M ESP 1st 2023 #> 685 0 0 0 0 La Liga M ESP 1st 2023 #> 686 0 0 0 0 La Liga M ESP 1st 2023 #> 687 1 1 0 0 La Liga M ESP 1st 2023 #> 688 0 1 1 0 La Liga M ESP 1st 2023 #> 689 0 2 0 0 La Liga M ESP 1st 2023 #> 690 0 0 0 0 La Liga M ESP 1st 2023 #> 691 0 1 0 0 La Liga M ESP 1st 2023 #> 692 0 1 0 0 La Liga M ESP 1st 2023 #> 693 2 3 0 1 La Liga M ESP 1st 2023 #> 694 0 0 0 0 La Liga M ESP 1st 2023 #> 695 2 7 1 0 La Liga M ESP 1st 2023 #> 696 0 0 0 0 La Liga M ESP 1st 2023 #> 697 0 0 3 0 La Liga M ESP 1st 2023 #> 698 0 0 4 0 La Liga M ESP 1st 2023 #> 699 3 5 2 0 La Liga M ESP 1st 2023 #> 700 2 3 0 0 La Liga M ESP 1st 2023 #> 701 0 0 0 0 La Liga M ESP 1st 2023 #> 702 1 1 1 0 La Liga M ESP 1st 2023 #> 703 0 1 0 0 La Liga M ESP 1st 2023 #> 704 0 0 0 0 La Liga M ESP 1st 2023 #> 705 0 0 1 0 La Liga M ESP 1st 2023 #> 706 1 1 1 0 La Liga M ESP 1st 2023 #> 707 0 0 1 0 La Liga M ESP 1st 2023 #> 708 0 2 4 0 La Liga M ESP 1st 2023 #> 709 1 2 4 0 La Liga M ESP 1st 2023 #> 710 2 2 0 0 La Liga M ESP 1st 2023 #> 711 1 3 2 0 La Liga M ESP 1st 2023 #> 712 3 3 8 0 La Liga M ESP 1st 2023 #> 713 2 2 7 0 La Liga M ESP 1st 2023 #> 714 5 5 6 0 La Liga M ESP 1st 2023 #> 715 2 4 5 0 La Liga M ESP 1st 2023 #> 716 0 0 1 0 La Liga M ESP 1st 2023 #> 717 0 0 0 0 La Liga M ESP 1st 2023 #> 718 0 1 0 0 La Liga M ESP 1st 2023 #> 719 0 0 0 0 La Liga M ESP 1st 2023 #> 720 0 1 0 0 La Liga M ESP 1st 2023 #> 721 0 0 0 0 La Liga M ESP 1st 2023 #> 722 0 3 2 0 La Liga M ESP 1st 2023 #> 723 0 0 1 0 La Liga M ESP 1st 2023 #> 724 2 2 0 0 La Liga M ESP 1st 2023 #> 725 1 3 1 0 La Liga M ESP 1st 2023 #> 726 1 2 3 0 La Liga M ESP 1st 2023 #> 727 0 0 0 0 La Liga M ESP 1st 2023 #> 728 0 0 1 0 La Liga M ESP 1st 2023 #> 729 2 3 6 0 La Liga M ESP 1st 2023 #> 730 0 0 1 0 La Liga M ESP 1st 2023 #> 731 0 0 1 0 La Liga M ESP 1st 2023 #> 732 0 0 0 0 La Liga M ESP 1st 2023 #> 733 0 0 0 0 La Liga M ESP 1st 2023 #> 734 0 0 0 0 La Liga M ESP 1st 2023 #> 735 0 0 0 0 La Liga M ESP 1st 2023 #> 736 0 0 0 0 La Liga M ESP 1st 2023 #> 737 0 0 1 0 La Liga M ESP 1st 2023 #> 738 0 0 0 0 La Liga M ESP 1st 2023 #> 739 0 2 2 0 La Liga M ESP 1st 2023 #> 740 0 1 0 0 La Liga M ESP 1st 2023 #> 741 0 0 0 0 La Liga M ESP 1st 2023 #> 742 1 1 1 0 La Liga M ESP 1st 2023 #> 743 2 3 0 0 La Liga M ESP 1st 2023 #> 744 0 0 1 0 La Liga M ESP 1st 2023 #> 745 1 4 3 0 La Liga M ESP 1st 2023 #> 746 0 0 0 0 La Liga M ESP 1st 2023 #> 747 0 0 0 0 La Liga M ESP 1st 2023 #> 748 0 0 0 0 La Liga M ESP 1st 2023 #> 749 0 0 0 0 La Liga M ESP 1st 2023 #> 750 0 0 0 0 La Liga M ESP 1st 2023 #> 751 0 2 0 0 La Liga M ESP 1st 2023 #> 752 0 0 0 0 La Liga M ESP 1st 2023 #> 753 0 1 0 0 La Liga M ESP 1st 2023 #> 754 0 2 1 0 La Liga M ESP 1st 2023 #> 755 0 2 0 0 La Liga M ESP 1st 2023 #> 756 0 0 0 0 La Liga M ESP 1st 2023 #> 757 0 1 2 0 La Liga M ESP 1st 2023 #> 758 1 4 2 0 La Liga M ESP 1st 2023 #> 759 0 1 2 0 La Liga M ESP 1st 2023 #> 760 0 2 7 0 La Liga M ESP 1st 2023 #> 761 1 2 0 0 La Liga M ESP 1st 2023 #> 762 0 0 0 0 La Liga M ESP 1st 2023 #> 763 0 1 0 0 La Liga M ESP 1st 2023 #> 764 0 1 2 0 La Liga M ESP 1st 2023 #> 765 0 1 0 0 La Liga M ESP 1st 2023 #> 766 1 3 1 0 La Liga M ESP 1st 2023 #> 767 0 0 0 0 La Liga M ESP 1st 2023 #> 768 0 0 0 0 La Liga M ESP 1st 2023 #> 769 0 0 0 0 La Liga M ESP 1st 2023 #> 770 3 4 1 0 La Liga M ESP 1st 2023 #> 771 1 2 0 0 La Liga M ESP 1st 2023 #> 772 1 1 0 0 La Liga M ESP 1st 2023 #> 773 0 0 0 0 La Liga M ESP 1st 2023 #> 774 0 0 2 0 La Liga M ESP 1st 2023 #> 775 0 0 3 0 La Liga M ESP 1st 2023 #> 776 1 1 0 0 La Liga M ESP 1st 2023 #> 777 0 0 0 0 La Liga M ESP 1st 2023 #> 778 0 0 1 0 La Liga M ESP 1st 2023 #> 779 0 0 0 0 La Liga M ESP 1st 2023 #> 780 0 2 1 0 La Liga M ESP 1st 2023 #> 781 0 0 0 0 La Liga M ESP 1st 2023 #> 782 1 2 0 0 La Liga M ESP 1st 2023 #> 783 0 1 0 0 La Liga M ESP 1st 2023 #> 784 0 2 1 0 La Liga M ESP 1st 2023 #> 785 2 3 0 0 La Liga M ESP 1st 2023 #> 786 0 1 0 0 La Liga M ESP 1st 2023 #> 787 0 1 0 0 La Liga M ESP 1st 2023 #> 788 0 1 0 0 La Liga M ESP 1st 2023 #> 789 2 4 0 0 La Liga M ESP 1st 2023 #> 790 1 2 2 0 La Liga M ESP 1st 2023 #> 791 0 1 0 0 La Liga M ESP 1st 2023 #> 792 0 1 1 0 La Liga M ESP 1st 2023 #> 793 1 1 0 0 La Liga M ESP 1st 2023 #> 794 0 0 0 0 La Liga M ESP 1st 2023 #> 795 1 1 2 0 La Liga M ESP 1st 2023 #> 796 0 0 0 0 La Liga M ESP 1st 2023 #> 797 0 1 0 0 La Liga M ESP 1st 2023 #> 798 0 1 0 0 La Liga M ESP 1st 2023 #> 799 0 0 1 0 La Liga M ESP 1st 2023 #> 800 1 2 1 0 La Liga M ESP 1st 2023 #> 801 1 3 3 0 La Liga M ESP 1st 2023 #> 802 0 2 0 0 La Liga M ESP 1st 2023 #> 803 0 4 0 0 La Liga M ESP 1st 2023 #> 804 0 1 1 1 La Liga M ESP 1st 2023 #> 805 1 1 1 0 La Liga M ESP 1st 2023 #> 806 0 4 4 0 La Liga M ESP 1st 2023 #> 807 2 4 6 0 La Liga M ESP 1st 2023 #> 808 2 4 8 0 La Liga M ESP 1st 2023 #> 809 1 3 1 0 La Liga M ESP 1st 2023 #> 810 0 0 0 0 La Liga M ESP 1st 2023 #> 811 1 2 3 0 La Liga M ESP 1st 2023 #> 812 0 1 2 0 La Liga M ESP 1st 2023 #> 813 0 0 1 0 La Liga M ESP 1st 2023 #> 814 0 2 1 0 La Liga M ESP 1st 2023 #> 815 0 5 1 0 La Liga M ESP 1st 2023 #> 816 0 0 0 0 La Liga M ESP 1st 2023 #> 817 1 4 1 0 La Liga M ESP 1st 2023 #> 818 1 2 3 0 La Liga M ESP 1st 2023 #> 819 0 1 0 0 La Liga M ESP 1st 2023 #> 820 0 1 3 0 La Liga M ESP 1st 2023 #> 821 2 5 3 0 La Liga M ESP 1st 2023 #> 822 0 2 0 0 La Liga M ESP 1st 2023 #> 823 1 3 1 0 La Liga M ESP 1st 2023 #> 824 0 0 0 0 La Liga M ESP 1st 2023 #> 825 1 1 0 0 La Liga M ESP 1st 2023 #> 826 0 0 0 0 La Liga M ESP 1st 2023 #> 827 0 1 0 0 La Liga M ESP 1st 2023 #> 828 0 0 0 0 La Liga M ESP 1st 2023 #> 829 0 1 1 0 La Liga M ESP 1st 2023 #> 830 0 1 0 0 La Liga M ESP 1st 2023 #> 831 1 1 1 0 La Liga M ESP 1st 2023 #> 832 0 0 0 0 La Liga M ESP 1st 2023 #> 833 0 1 0 0 La Liga M ESP 1st 2023 #> 834 1 2 2 1 La Liga M ESP 1st 2023 #> 835 0 1 3 0 La Liga M ESP 1st 2023 #> 836 1 2 4 0 La Liga M ESP 1st 2023 #> 837 1 2 1 0 La Liga M ESP 1st 2023 #> 838 0 0 0 0 La Liga M ESP 1st 2023 #> 839 0 0 0 0 La Liga M ESP 1st 2023 #> 840 0 1 2 0 La Liga M ESP 1st 2023 #> 841 1 1 1 0 La Liga M ESP 1st 2023 #> 842 0 0 1 0 La Liga M ESP 1st 2023 #> 843 0 0 0 1 La Liga M ESP 1st 2023 #> 844 1 2 1 0 La Liga M ESP 1st 2023 #> 845 1 1 0 0 La Liga M ESP 1st 2023 #> 846 0 NA NA NA La Liga M ESP 1st 2023 #> 847 1 1 0 0 La Liga M ESP 1st 2023 #> 848 0 1 1 0 La Liga M ESP 1st 2023 #> 849 2 5 1 0 La Liga M ESP 1st 2023 #> 850 0 0 0 0 La Liga M ESP 1st 2023 #> 851 0 0 1 0 La Liga M ESP 1st 2023 #> 852 0 1 2 0 La Liga M ESP 1st 2023 #> 853 2 2 2 0 La Liga M ESP 1st 2023 #> 854 1 4 1 0 La Liga M ESP 1st 2023 #> 855 0 0 0 1 La Liga M ESP 1st 2023 #> 856 0 0 0 0 La Liga M ESP 1st 2023 #> 857 1 2 0 0 La Liga M ESP 1st 2023 #> 858 0 1 0 0 La Liga M ESP 1st 2023 #> 859 0 0 0 0 La Liga M ESP 1st 2023 #> 860 0 0 0 0 La Liga M ESP 1st 2023 #> 861 0 0 0 0 La Liga M ESP 1st 2023 #> 862 1 1 0 0 La Liga M ESP 1st 2023 #> 863 1 3 4 0 La Liga M ESP 1st 2023 #> 864 0 0 0 0 La Liga M ESP 1st 2023 #> 865 0 0 0 0 La Liga M ESP 1st 2023 #> 866 1 3 4 0 La Liga M ESP 1st 2023 #> 867 0 2 0 0 La Liga M ESP 1st 2023 #> 868 1 2 7 0 La Liga M ESP 1st 2023 #> 869 1 5 2 0 La Liga M ESP 1st 2023 #> 870 0 2 1 0 La Liga M ESP 1st 2023 #> 871 0 0 0 0 La Liga M ESP 1st 2023 #> 872 0 1 0 0 La Liga M ESP 1st 2023 #> 873 0 0 0 0 La Liga M ESP 1st 2023 #> 874 0 0 0 0 La Liga M ESP 1st 2023 #> 875 0 0 0 0 La Liga M ESP 1st 2023 #> 876 0 0 0 0 La Liga M ESP 1st 2023 #> 877 0 0 1 0 La Liga M ESP 1st 2023 #> 878 2 NA NA NA La Liga M ESP 1st 2023 #> 879 0 0 0 0 La Liga M ESP 1st 2023 #> 880 1 4 0 0 La Liga M ESP 1st 2023 #> 881 0 0 1 0 La Liga M ESP 1st 2023 #> 882 0 0 0 0 La Liga M ESP 1st 2023 #> 883 1 1 0 0 La Liga M ESP 1st 2023 #> 884 2 3 0 1 La Liga M ESP 1st 2023 #> 885 1 1 1 1 La Liga M ESP 1st 2023 #> 886 0 0 0 0 La Liga M ESP 1st 2023 #> 887 0 0 0 0 La Liga M ESP 1st 2023 #> 888 0 0 0 0 La Liga M ESP 1st 2023 #> 889 0 0 0 0 La Liga M ESP 1st 2023 #> 890 0 1 0 0 La Liga M ESP 1st 2023 #> 891 0 0 0 0 La Liga M ESP 1st 2023 #> 892 0 1 1 0 La Liga M ESP 1st 2023 #> 893 0 2 1 0 La Liga M ESP 1st 2023 #> 894 0 0 1 0 La Liga M ESP 1st 2023 #> 895 0 0 0 0 La Liga M ESP 1st 2023 #> 896 1 2 1 0 La Liga M ESP 1st 2023 #> 897 1 3 3 0 La Liga M ESP 1st 2023 #> 898 0 2 2 0 La Liga M ESP 1st 2023 #> 899 1 3 7 0 La Liga M ESP 1st 2023 #> 900 1 2 7 0 La Liga M ESP 1st 2023 #> 901 3 5 5 0 La Liga M ESP 1st 2023 #> 902 1 5 4 0 La Liga M ESP 1st 2023 #> 903 0 0 1 0 La Liga M ESP 1st 2023 #> 904 0 0 0 0 La Liga M ESP 1st 2023 #> 905 0 2 0 0 La Liga M ESP 1st 2023 #> 906 0 0 2 0 La Liga M ESP 1st 2023 #> 907 1 1 0 0 La Liga M ESP 1st 2023 #> 908 0 3 0 0 La Liga M ESP 1st 2023 #> 909 0 0 1 0 La Liga M ESP 1st 2023 #> 910 0 1 0 0 La Liga M ESP 1st 2023 #> 911 1 5 0 0 La Liga M ESP 1st 2023 #> 912 1 1 1 0 La Liga M ESP 1st 2023 #> 913 0 1 1 0 La Liga M ESP 1st 2023 #> 914 0 4 2 0 La Liga M ESP 1st 2023 #> 915 3 5 0 0 La Liga M ESP 1st 2023 #> 916 1 2 2 0 La Liga M ESP 1st 2023 #> 917 0 2 2 0 La Liga M ESP 1st 2023 #> 918 0 2 0 0 La Liga M ESP 1st 2023 #> 919 0 0 0 0 La Liga M ESP 1st 2023 #> 920 0 0 0 0 La Liga M ESP 1st 2023 #> 921 0 0 0 0 La Liga M ESP 1st 2023 #> 922 1 NA NA NA La Liga M ESP 1st 2023 #> 923 0 0 0 0 La Liga M ESP 1st 2023 #> 924 0 1 1 0 La Liga M ESP 1st 2023 #> 925 1 1 0 0 La Liga M ESP 1st 2023 #> 926 1 3 1 0 La Liga M ESP 1st 2023 #> 927 0 5 0 0 La Liga M ESP 1st 2023 #> 928 1 1 0 0 La Liga M ESP 1st 2023 #> 929 0 1 0 0 La Liga M ESP 1st 2023 #> 930 0 0 0 0 La Liga M ESP 1st 2023 #> 931 2 6 1 0 La Liga M ESP 1st 2023 #> 932 1 1 0 0 La Liga M ESP 1st 2023 #> 933 0 2 2 0 La Liga M ESP 1st 2023 #> 934 2 3 3 0 La Liga M ESP 1st 2023 #> 935 0 0 1 0 La Liga M ESP 1st 2023 #> 936 0 0 2 0 La Liga M ESP 1st 2023 #> 937 0 2 0 0 La Liga M ESP 1st 2023 #> 938 0 0 1 0 La Liga M ESP 1st 2023 #> 939 0 0 0 0 La Liga M ESP 1st 2023 #> 940 1 3 2 0 La Liga M ESP 1st 2023 #> 941 0 0 0 0 La Liga M ESP 1st 2023 #> 942 2 3 0 0 La Liga M ESP 1st 2023 #> 943 0 1 0 0 La Liga M ESP 1st 2023 #> 944 0 2 0 0 La Liga M ESP 1st 2023 #> 945 3 6 2 0 La Liga M ESP 1st 2023 #> 946 0 2 6 0 La Liga M ESP 1st 2023 #> 947 0 3 2 0 La Liga M ESP 1st 2023 #> 948 1 2 0 0 La Liga M ESP 1st 2023 #> 949 0 0 0 0 La Liga M ESP 1st 2023 #> 950 0 0 0 0 La Liga M ESP 1st 2023 #> 951 0 1 1 0 La Liga M ESP 1st 2023 #> 952 0 1 0 0 La Liga M ESP 1st 2023 #> 953 0 0 0 0 La Liga M ESP 1st 2023 #> 954 0 1 0 0 La Liga M ESP 1st 2023 #> 955 0 0 0 0 La Liga M ESP 1st 2023 #> 956 0 0 1 0 La Liga M ESP 1st 2023 #> 957 0 0 0 0 La Liga M ESP 1st 2023 #> 958 3 6 0 0 La Liga M ESP 1st 2023 #> 959 1 1 2 0 La Liga M ESP 1st 2023 #> 960 0 2 2 0 La Liga M ESP 1st 2023 #> 961 0 2 3 0 La Liga M ESP 1st 2023 #> 962 3 3 1 0 La Liga M ESP 1st 2023 #> 963 0 0 0 0 La Liga M ESP 1st 2023 #> 964 1 2 1 0 La Liga M ESP 1st 2023 #> 965 1 1 2 0 La Liga M ESP 1st 2023 #> 966 0 0 0 0 La Liga M ESP 1st 2023 #> 967 0 3 0 0 La Liga M ESP 1st 2023 #> 968 0 2 0 0 La Liga M ESP 1st 2023 #> 969 1 2 0 0 La Liga M ESP 1st 2023 #> 970 0 1 0 0 La Liga M ESP 1st 2023 #> 971 1 1 0 0 La Liga M ESP 1st 2023 #> 972 3 10 1 0 La Liga M ESP 1st 2023 #> 973 1 3 1 0 La Liga M ESP 1st 2023 #> 974 0 0 0 0 La Liga M ESP 1st 2023 #> 975 3 6 0 0 La Liga M ESP 1st 2023 #> 976 0 0 0 0 La Liga M ESP 1st 2023 #> 977 2 4 0 0 La Liga M ESP 1st 2023 #> 978 1 4 1 0 La Liga M ESP 1st 2023 #> 979 0 0 0 0 La Liga M ESP 1st 2023 #> 980 0 0 0 0 La Liga M ESP 1st 2023 #> 981 0 2 1 0 La Liga M ESP 1st 2023 #> 982 1 1 0 0 La Liga M ESP 1st 2023 #> 983 0 0 0 0 La Liga M ESP 1st 2023 #> 984 0 4 0 0 La Liga M ESP 1st 2023 #> 985 0 0 0 0 La Liga M ESP 1st 2023 #> 986 0 5 0 0 La Liga M ESP 1st 2023 #> 987 1 3 1 0 La Liga M ESP 1st 2023 #> 988 0 0 0 0 La Liga M ESP 1st 2023 #> 989 0 5 3 0 La Liga M ESP 1st 2023 #> 990 1 1 1 0 La Liga M ESP 1st 2023 #> 991 0 2 4 0 La Liga M ESP 1st 2023 #> 992 2 7 4 0 La Liga M ESP 1st 2023 #> 993 2 4 2 0 La Liga M ESP 1st 2023 #> 994 1 2 0 0 La Liga M ESP 1st 2023 #> 995 0 0 1 0 La Liga M ESP 1st 2023 #> 996 0 0 1 0 La Liga M ESP 1st 2023 #> 997 0 1 0 0 La Liga M ESP 1st 2023 #> 998 0 0 0 0 La Liga M ESP 1st 2023 #> 999 0 0 1 0 La Liga M ESP 1st 2023 #> 1000 1 1 0 0 La Liga M ESP 1st 2023 #> 1001 0 1 0 0 La Liga M ESP 1st 2023 #> 1002 1 6 1 0 La Liga M ESP 1st 2023 #> 1003 2 4 0 0 La Liga M ESP 1st 2023 #> 1004 1 3 0 0 La Liga M ESP 1st 2023 #> 1005 0 5 2 0 La Liga M ESP 1st 2023 #> 1006 2 2 1 0 La Liga M ESP 1st 2023 #> 1007 0 2 0 0 La Liga M ESP 1st 2023 #> 1008 0 0 1 0 La Liga M ESP 1st 2023 #> 1009 1 3 1 0 La Liga M ESP 1st 2023 #> 1010 0 1 0 0 La Liga M ESP 1st 2023 #> 1011 0 0 1 0 La Liga M ESP 1st 2023 #> 1012 0 0 0 0 La Liga M ESP 1st 2023 #> 1013 0 3 3 0 La Liga M ESP 1st 2023 #> 1014 0 0 0 0 La Liga M ESP 1st 2023 #> 1015 0 2 0 0 La Liga M ESP 1st 2023 #> 1016 0 0 0 0 La Liga M ESP 1st 2023 #> 1017 2 3 2 0 La Liga M ESP 1st 2023 #> 1018 2 3 1 0 La Liga M ESP 1st 2023 #> 1019 1 2 0 0 La Liga M ESP 1st 2023 #> 1020 0 1 0 0 La Liga M ESP 1st 2023 #> 1021 0 0 0 0 La Liga M ESP 1st 2023 #> 1022 0 2 1 0 La Liga M ESP 1st 2023 #> 1023 2 5 3 0 La Liga M ESP 1st 2023 #> 1024 0 0 4 0 La Liga M ESP 1st 2023 #> 1025 1 3 5 0 La Liga M ESP 1st 2023 #> 1026 0 0 0 0 La Liga M ESP 1st 2023 #> 1027 0 0 0 0 La Liga M ESP 1st 2023 #> 1028 0 1 0 0 La Liga M ESP 1st 2023 #> 1029 0 1 1 0 La Liga M ESP 1st 2023 #> 1030 0 1 0 0 La Liga M ESP 1st 2023 #> 1031 1 2 0 0 La Liga M ESP 1st 2023 #> 1032 0 1 0 0 La Liga M ESP 1st 2023 #> 1033 2 4 0 0 La Liga M ESP 1st 2023 #> 1034 1 1 0 0 La Liga M ESP 1st 2023 #> 1035 2 4 0 0 La Liga M ESP 1st 2023 #> 1036 0 1 0 0 La Liga M ESP 1st 2023 #> 1037 2 2 0 0 La Liga M ESP 1st 2023 #> 1038 5 10 1 0 La Liga M ESP 1st 2023 #> 1039 0 3 1 0 La Liga M ESP 1st 2023 #> 1040 4 7 2 0 La Liga M ESP 1st 2023 #> 1041 0 0 1 0 La Liga M ESP 1st 2023 #> 1042 0 0 0 0 La Liga M ESP 1st 2023 #> 1043 0 0 2 0 La Liga M ESP 1st 2023 #> 1044 0 0 0 0 La Liga M ESP 1st 2023 #> 1045 0 0 0 0 La Liga M ESP 1st 2023 #> 1046 0 0 0 0 La Liga M ESP 1st 2023 #> 1047 0 1 1 0 La Liga M ESP 1st 2023 #> 1048 1 1 0 0 La Liga M ESP 1st 2023 #> 1049 0 0 1 0 La Liga M ESP 1st 2023 #> 1050 1 2 0 0 La Liga M ESP 1st 2023 #> 1051 1 7 0 0 La Liga M ESP 1st 2023 #> 1052 2 3 1 0 La Liga M ESP 1st 2023 #> 1053 0 0 0 0 La Liga M ESP 1st 2023 #> 1054 0 1 2 0 La Liga M ESP 1st 2023 #> 1055 1 1 0 1 La Liga M ESP 1st 2023 #> 1056 1 1 2 0 La Liga M ESP 1st 2023 #> 1057 5 6 2 0 La Liga M ESP 1st 2023 #> 1058 0 0 1 0 La Liga M ESP 1st 2023 #> 1059 1 1 0 0 La Liga M ESP 1st 2023 #> 1060 0 0 0 0 La Liga M ESP 1st 2023 #> 1061 0 0 0 0 La Liga M ESP 1st 2023 #> 1062 0 3 2 0 La Liga M ESP 1st 2023 #> 1063 1 2 0 0 La Liga M ESP 1st 2023 #> 1064 0 1 2 0 La Liga M ESP 1st 2023 #> 1065 0 2 0 0 La Liga M ESP 1st 2023 #> 1066 0 1 0 0 La Liga M ESP 1st 2023 #> 1067 0 0 0 0 La Liga M ESP 1st 2023 #> 1068 0 1 0 0 La Liga M ESP 1st 2023 #> 1069 0 2 0 0 La Liga M ESP 1st 2023 #> 1070 0 1 1 0 La Liga M ESP 1st 2023 #> 1071 0 2 0 0 La Liga M ESP 1st 2023 #> 1072 4 5 7 0 La Liga M ESP 1st 2023 #> 1073 1 1 1 0 La Liga M ESP 1st 2023 #> 1074 4 5 1 0 La Liga M ESP 1st 2023 #> 1075 0 0 0 0 La Liga M ESP 1st 2023 #> 1076 0 0 1 0 La Liga M ESP 1st 2023 #> 1077 0 0 0 0 La Liga M ESP 1st 2023 #> 1078 0 1 0 0 La Liga M ESP 1st 2023 #> 1079 1 1 0 0 La Liga M ESP 1st 2023 #> 1080 0 0 0 0 La Liga M ESP 1st 2023 #> 1081 0 3 1 0 La Liga M ESP 1st 2023 #> 1082 1 4 1 0 La Liga M ESP 1st 2023 #> 1083 1 1 0 0 La Liga M ESP 1st 2023 #> 1084 1 2 1 0 La Liga M ESP 1st 2023 #> 1085 1 5 1 0 La Liga M ESP 1st 2023 #> 1086 0 0 0 0 La Liga M ESP 1st 2023 #> 1087 1 2 9 0 La Liga M ESP 1st 2023 #> 1088 3 3 6 0 La Liga M ESP 1st 2023 #> 1089 2 3 1 1 La Liga M ESP 1st 2023 #> 1090 0 0 0 0 La Liga M ESP 1st 2023 #> 1091 0 1 0 0 La Liga M ESP 1st 2023 #> 1092 0 0 0 0 La Liga M ESP 1st 2023 #> 1093 0 1 0 0 La Liga M ESP 1st 2023 #> 1094 0 2 0 0 La Liga M ESP 1st 2023 #> 1095 0 1 0 0 La Liga M ESP 1st 2023 #> 1096 1 1 0 0 La Liga M ESP 1st 2023 #> 1097 2 7 2 0 La Liga M ESP 1st 2023 #> 1098 0 0 0 0 La Liga M ESP 1st 2023 #> 1099 0 1 0 0 La Liga M ESP 1st 2023 #> 1100 1 2 1 0 La Liga M ESP 1st 2023 #> 1101 0 0 0 0 La Liga M ESP 1st 2023 #> 1102 1 2 3 0 La Liga M ESP 1st 2023 #> 1103 0 1 2 0 La Liga M ESP 1st 2023 #> 1104 1 1 5 0 La Liga M ESP 1st 2023 #> 1105 0 0 0 0 La Liga M ESP 1st 2023 #> 1106 0 0 4 0 La Liga M ESP 1st 2023 #> 1107 0 0 1 0 La Liga M ESP 1st 2023 #> 1108 0 0 0 0 La Liga M ESP 1st 2023 #> 1109 1 1 0 0 La Liga M ESP 1st 2023 #> 1110 1 1 0 0 La Liga M ESP 1st 2023 #> 1111 1 2 0 0 La Liga M ESP 1st 2023 #> 1112 2 4 2 0 La Liga M ESP 1st 2023 #> 1113 2 2 0 0 La Liga M ESP 1st 2023 #> 1114 0 0 0 0 La Liga M ESP 1st 2023 #> 1115 3 7 4 0 La Liga M ESP 1st 2023 #> 1116 2 5 3 0 La Liga M ESP 1st 2023 #> 1117 2 3 11 0 La Liga M ESP 1st 2023 #> 1118 2 5 5 0 La Liga M ESP 1st 2023 #> 1119 1 2 3 0 La Liga M ESP 1st 2023 #> 1120 4 5 6 0 La Liga M ESP 1st 2023 #> 1121 0 0 0 0 La Liga M ESP 1st 2023 #> 1122 0 1 0 0 La Liga M ESP 1st 2023 #> 1123 0 0 0 0 La Liga M ESP 1st 2023 #> 1124 0 2 0 0 La Liga M ESP 1st 2023 #> 1125 0 0 2 0 La Liga M ESP 1st 2023 #> 1126 1 7 0 0 La Liga M ESP 1st 2023 #> 1127 0 1 1 0 La Liga M ESP 1st 2023 #> 1128 0 1 2 0 La Liga M ESP 1st 2023 #> 1129 0 1 1 0 La Liga M ESP 1st 2023 #> 1130 0 3 1 0 La Liga M ESP 1st 2023 #> 1131 0 0 1 0 La Liga M ESP 1st 2023 #> 1132 0 3 3 0 La Liga M ESP 1st 2023 #> 1133 0 1 7 0 La Liga M ESP 1st 2023 #> 1134 0 2 2 0 La Liga M ESP 1st 2023 #> 1135 0 0 0 0 La Liga M ESP 1st 2023 #> 1136 2 2 0 0 La Liga M ESP 1st 2023 #> 1137 0 0 0 0 La Liga M ESP 1st 2023 #> 1138 0 0 2 0 La Liga M ESP 1st 2023 #> 1139 0 0 0 0 La Liga M ESP 1st 2023 #> 1140 0 2 1 0 La Liga M ESP 1st 2023 #> 1141 0 1 0 1 La Liga M ESP 1st 2023 #> 1142 0 3 0 0 La Liga M ESP 1st 2023 #> 1143 0 0 0 0 La Liga M ESP 1st 2023 #> 1144 1 1 0 0 La Liga M ESP 1st 2023 #> 1145 0 1 0 0 La Liga M ESP 1st 2023 #> 1146 1 1 1 0 La Liga M ESP 1st 2023 #> 1147 0 2 2 0 La Liga M ESP 1st 2023 #> 1148 0 0 0 0 La Liga M ESP 1st 2023 #> 1149 2 7 7 0 La Liga M ESP 1st 2023 #> 1150 5 6 6 0 La Liga M ESP 1st 2023 #> 1151 0 1 3 0 La Liga M ESP 1st 2023 #> 1152 2 5 0 0 La Liga M ESP 1st 2023 #> 1153 0 0 0 0 La Liga M ESP 1st 2023 #> 1154 0 0 0 0 La Liga M ESP 1st 2023 #> 1155 0 0 0 0 La Liga M ESP 1st 2023 #> 1156 0 0 0 0 La Liga M ESP 1st 2023 #> 1157 0 2 0 0 La Liga M ESP 1st 2023 #> 1158 0 0 1 0 La Liga M ESP 1st 2023 #> 1159 0 1 0 0 La Liga M ESP 1st 2023 #> 1160 0 0 0 0 La Liga M ESP 1st 2023 #> 1161 0 NA NA NA La Liga M ESP 1st 2023 #> 1162 2 2 0 1 La Liga M ESP 1st 2023 #> 1163 1 2 1 0 La Liga M ESP 1st 2023 #> 1164 0 1 0 0 La Liga M ESP 1st 2023 #> 1165 1 3 0 0 La Liga M ESP 1st 2023 #> 1166 0 0 0 0 La Liga M ESP 1st 2023 #> 1167 3 5 3 0 La Liga M ESP 1st 2023 #> 1168 1 2 2 0 La Liga M ESP 1st 2023 #> 1169 0 0 0 0 La Liga M ESP 1st 2023 #> 1170 0 0 1 0 La Liga M ESP 1st 2023 #> 1171 0 0 0 0 La Liga M ESP 1st 2023 #> 1172 0 0 0 0 La Liga M ESP 1st 2023 #> 1173 0 1 0 0 La Liga M ESP 1st 2023 #> 1174 0 0 0 0 La Liga M ESP 1st 2023 #> 1175 0 0 0 0 La Liga M ESP 1st 2023 #> 1176 0 1 1 0 La Liga M ESP 1st 2023 #> 1177 3 4 3 0 La Liga M ESP 1st 2023 #> 1178 0 0 0 0 La Liga M ESP 1st 2023 #> 1179 0 0 0 0 La Liga M ESP 1st 2023 #> 1180 0 0 0 0 La Liga M ESP 1st 2023 #> 1181 1 1 4 0 La Liga M ESP 1st 2023 #> 1182 0 0 0 0 La Liga M ESP 1st 2023 #> 1183 0 0 4 0 La Liga M ESP 1st 2023 #> 1184 0 3 2 0 La Liga M ESP 1st 2023 #> 1185 0 0 1 2 La Liga M ESP 1st 2023 #> 1186 0 1 0 0 La Liga M ESP 1st 2023 #> 1187 0 0 2 0 La Liga M ESP 1st 2023 #> 1188 1 1 0 0 La Liga M ESP 1st 2023 #> 1189 1 2 0 0 La Liga M ESP 1st 2023 #> 1190 0 1 0 0 La Liga M ESP 1st 2023 #> 1191 0 0 0 0 La Liga M ESP 1st 2023 #> 1192 1 4 2 0 La Liga M ESP 1st 2023 #> 1193 0 2 2 0 La Liga M ESP 1st 2023 #> 1194 0 0 0 0 La Liga M ESP 1st 2023 #> 1195 0 1 0 0 La Liga M ESP 1st 2023 #> 1196 0 3 0 0 La Liga M ESP 1st 2023 #> 1197 3 4 2 0 La Liga M ESP 1st 2023 #> 1198 3 3 1 0 La Liga M ESP 1st 2023 #> 1199 3 5 7 0 La Liga M ESP 1st 2023 #> 1200 0 5 1 0 La Liga M ESP 1st 2023 #> 1201 0 0 1 0 La Liga M ESP 1st 2023 #> 1202 0 2 0 0 La Liga M ESP 1st 2023 #> 1203 0 0 1 0 La Liga M ESP 1st 2023 #> 1204 0 0 0 0 La Liga M ESP 1st 2023 #> 1205 0 2 1 0 La Liga M ESP 1st 2023 #> 1206 1 2 0 0 La Liga M ESP 1st 2023 #> 1207 0 0 0 0 La Liga M ESP 1st 2023 #> 1208 0 3 0 0 La Liga M ESP 1st 2023 #> 1209 1 4 0 0 La Liga M ESP 1st 2023 #> 1210 0 0 1 0 La Liga M ESP 1st 2023 #> 1211 2 2 2 0 La Liga M ESP 1st 2023 #> 1212 1 1 0 0 La Liga M ESP 1st 2023 #> 1213 0 0 3 0 La Liga M ESP 1st 2023 #> 1214 2 2 8 0 La Liga M ESP 1st 2023 #> 1215 2 3 1 1 La Liga M ESP 1st 2023 #> 1216 0 0 0 0 La Liga M ESP 1st 2023 #> 1217 0 1 3 0 La Liga M ESP 1st 2023 #> 1218 0 0 1 0 La Liga M ESP 1st 2023 #> 1219 0 1 0 0 La Liga M ESP 1st 2023 #> 1220 1 3 0 0 La Liga M ESP 1st 2023 #> 1221 0 2 0 0 La Liga M ESP 1st 2023 #> 1222 0 0 0 0 La Liga M ESP 1st 2023 #> 1223 4 8 6 0 La Liga M ESP 1st 2023 #> 1224 1 3 1 0 La Liga M ESP 1st 2023 #> 1225 0 3 3 0 La Liga M ESP 1st 2023 #> 1226 1 3 2 0 La Liga M ESP 1st 2023 #> 1227 0 3 0 0 La Liga M ESP 1st 2023 #> 1228 0 0 5 0 La Liga M ESP 1st 2023 #> 1229 1 1 3 0 La Liga M ESP 1st 2023 #> 1230 0 2 0 0 La Liga M ESP 1st 2023 #> 1231 1 2 2 0 La Liga M ESP 1st 2023 #> 1232 0 0 0 0 La Liga M ESP 1st 2023 #> 1233 0 0 0 0 La Liga M ESP 1st 2023 #> 1234 0 0 0 0 La Liga M ESP 1st 2023 #> 1235 1 1 1 0 La Liga M ESP 1st 2023 #> 1236 2 3 0 0 La Liga M ESP 1st 2023 #> 1237 1 6 0 0 La Liga M ESP 1st 2023 #> 1238 0 1 0 0 La Liga M ESP 1st 2023 #> 1239 1 2 0 0 La Liga M ESP 1st 2023 #> 1240 0 0 1 0 La Liga M ESP 1st 2023 #> 1241 0 0 0 0 La Liga M ESP 1st 2023 #> 1242 0 1 0 0 La Liga M ESP 1st 2023 #> 1243 4 4 1 0 La Liga M ESP 1st 2023 #> 1244 1 2 7 0 La Liga M ESP 1st 2023 #> 1245 1 1 3 0 La Liga M ESP 1st 2023 #> 1246 1 4 2 0 La Liga M ESP 1st 2023 #> 1247 4 7 0 0 La Liga M ESP 1st 2023 #> 1248 0 0 2 0 La Liga M ESP 1st 2023 #> 1249 0 1 0 0 La Liga M ESP 1st 2023 #> 1250 0 0 1 0 La Liga M ESP 1st 2023 #> 1251 0 1 0 0 La Liga M ESP 1st 2023 #> 1252 1 2 0 0 La Liga M ESP 1st 2023 #> 1253 0 1 2 0 La Liga M ESP 1st 2023 #> 1254 0 1 0 0 La Liga M ESP 1st 2023 #> 1255 0 0 0 0 La Liga M ESP 1st 2023 #> 1256 2 9 0 0 La Liga M ESP 1st 2023 #> 1257 0 0 0 0 La Liga M ESP 1st 2023 #> 1258 2 3 0 0 La Liga M ESP 1st 2023 #> 1259 0 0 2 0 La Liga M ESP 1st 2023 #> 1260 2 2 1 0 La Liga M ESP 1st 2023 #> 1261 3 4 1 0 La Liga M ESP 1st 2023 #> 1262 1 1 4 0 La Liga M ESP 1st 2023 #> 1263 0 2 5 0 La Liga M ESP 1st 2023 #> 1264 0 0 2 1 La Liga M ESP 1st 2023 #> 1265 0 2 0 1 La Liga M ESP 1st 2023 #> 1266 0 0 0 0 La Liga M ESP 1st 2023 #> 1267 1 1 0 0 La Liga M ESP 1st 2023 #> 1268 0 0 0 0 La Liga M ESP 1st 2023 #> 1269 0 3 2 1 La Liga M ESP 1st 2023 #> 1270 1 1 1 0 La Liga M ESP 1st 2023 #> 1271 0 0 0 0 La Liga M ESP 1st 2023 #> 1272 0 NA NA NA La Liga M ESP 1st 2023 #> 1273 0 2 0 0 La Liga M ESP 1st 2023 #> 1274 0 2 1 0 La Liga M ESP 1st 2023 #> 1275 0 0 3 0 La Liga M ESP 1st 2023 #> 1276 0 2 9 0 La Liga M ESP 1st 2023 #> 1277 1 3 2 0 La Liga M ESP 1st 2023 #> 1278 3 5 4 0 La Liga M ESP 1st 2023 #> 1279 0 0 3 0 La Liga M ESP 1st 2023 #> 1280 0 0 0 0 La Liga M ESP 1st 2023 #> 1281 0 0 0 0 La Liga M ESP 1st 2023 #> 1282 0 0 0 0 La Liga M ESP 1st 2023 #> 1283 0 1 0 0 La Liga M ESP 1st 2023 #> 1284 0 3 0 0 La Liga M ESP 1st 2023 #> 1285 1 3 1 0 La Liga M ESP 1st 2023 #> 1286 1 2 2 0 La Liga M ESP 1st 2023 #> 1287 0 2 0 0 La Liga M ESP 1st 2023 #> 1288 2 3 0 0 La Liga M ESP 1st 2023 #> 1289 1 1 2 1 La Liga M ESP 1st 2023 #> 1290 2 2 5 0 La Liga M ESP 1st 2023 #> 1291 1 2 0 0 La Liga M ESP 1st 2023 #> 1292 1 1 0 0 La Liga M ESP 1st 2023 #> 1293 0 0 0 0 La Liga M ESP 1st 2023 #> 1294 0 0 2 0 La Liga M ESP 1st 2023 #> 1295 0 3 0 0 La Liga M ESP 1st 2023 #> 1296 0 2 1 0 La Liga M ESP 1st 2023 #> 1297 0 0 4 0 La Liga M ESP 1st 2023 #> 1298 1 1 2 0 La Liga M ESP 1st 2023 #> 1299 1 7 1 0 La Liga M ESP 1st 2023 #> 1300 1 3 4 0 La Liga M ESP 1st 2023 #> 1301 1 3 1 0 La Liga M ESP 1st 2023 #> 1302 2 2 3 0 La Liga M ESP 1st 2023 #> 1303 0 0 1 0 La Liga M ESP 1st 2023 #> 1304 0 0 2 0 La Liga M ESP 1st 2023 #> 1305 0 0 4 0 La Liga M ESP 1st 2023 #> 1306 0 0 2 0 La Liga M ESP 1st 2023 #> 1307 1 1 8 0 La Liga M ESP 1st 2023 #> 1308 1 4 3 0 La Liga M ESP 1st 2023 #> 1309 0 0 2 0 La Liga M ESP 1st 2023 #> 1310 0 0 0 0 La Liga M ESP 1st 2023 #> 1311 0 1 0 0 La Liga M ESP 1st 2023 #> 1312 0 1 0 0 La Liga M ESP 1st 2023 #> 1313 1 2 0 0 La Liga M ESP 1st 2023 #> 1314 0 4 0 0 La Liga M ESP 1st 2023 #> 1315 1 1 0 0 La Liga M ESP 1st 2023 #> 1316 1 1 1 0 La Liga M ESP 1st 2023 #> 1317 0 0 0 0 La Liga M ESP 1st 2023 #> 1318 0 1 0 0 La Liga M ESP 1st 2023 #> 1319 0 0 0 0 La Liga M ESP 1st 2023 #> 1320 0 1 0 0 La Liga M ESP 1st 2023 #> 1321 0 0 1 0 La Liga M ESP 1st 2023 #> 1322 2 6 2 0 La Liga M ESP 1st 2023 #> 1323 0 0 5 0 La Liga M ESP 1st 2023 #> 1324 1 1 4 0 La Liga M ESP 1st 2023 #> 1325 4 8 1 0 La Liga M ESP 1st 2023 #> 1326 2 2 2 0 La Liga M ESP 1st 2023 #> 1327 0 0 0 0 La Liga M ESP 1st 2023 #> 1328 0 0 0 0 La Liga M ESP 1st 2023 #> 1329 0 0 0 0 La Liga M ESP 1st 2023 #> 1330 0 0 0 0 La Liga M ESP 1st 2023 #> 1331 1 3 0 0 La Liga M ESP 1st 2023 #> 1332 0 0 1 0 La Liga M ESP 1st 2023 #> 1333 1 1 0 0 La Liga M ESP 1st 2023 #> 1334 1 1 0 0 La Liga M ESP 1st 2023 #> 1335 1 6 4 0 La Liga M ESP 1st 2023 #> 1336 0 0 0 0 La Liga M ESP 1st 2023 #> 1337 0 2 2 0 La Liga M ESP 1st 2023 #> 1338 0 0 0 0 La Liga M ESP 1st 2023 #> 1339 2 2 4 0 La Liga M ESP 1st 2023 #> 1340 0 0 7 0 La Liga M ESP 1st 2023 #> 1341 1 1 2 0 La Liga M ESP 1st 2023 #> 1342 0 0 0 0 La Liga M ESP 1st 2023 #> 1343 0 1 0 0 La Liga M ESP 1st 2023 #> 1344 1 2 0 0 La Liga M ESP 1st 2023 #> 1345 0 1 0 0 La Liga M ESP 1st 2023 #> 1346 0 0 0 0 La Liga M ESP 1st 2023 #> 1347 0 0 0 0 La Liga M ESP 1st 2023 #> 1348 0 1 0 0 La Liga M ESP 1st 2023 #> 1349 2 7 1 1 La Liga M ESP 1st 2023 #> 1350 0 2 0 0 La Liga M ESP 1st 2023 #> 1351 0 0 0 0 La Liga M ESP 1st 2023 #> 1352 0 1 1 0 La Liga M ESP 1st 2023 #> 1353 1 1 0 0 La Liga M ESP 1st 2023 #> 1354 1 3 7 0 La Liga M ESP 1st 2023 #> 1355 3 3 6 0 La Liga M ESP 1st 2023 #> 1356 4 4 5 0 La Liga M ESP 1st 2023 #> 1357 0 1 4 0 La Liga M ESP 1st 2023 #> 1358 0 0 2 0 La Liga M ESP 1st 2023 #> 1359 0 1 1 0 La Liga M ESP 1st 2023 #> 1360 0 0 3 0 La Liga M ESP 1st 2023 #> 1361 3 4 1 0 La Liga M ESP 1st 2023 #> 1362 0 1 0 0 La Liga M ESP 1st 2023 #> 1363 0 1 0 0 La Liga M ESP 1st 2023 #> 1364 0 1 0 0 La Liga M ESP 1st 2023 #> 1365 1 4 1 0 La Liga M ESP 1st 2023 #> 1366 1 2 0 0 La Liga M ESP 1st 2023 #> 1367 0 1 0 0 La Liga M ESP 1st 2023 #> 1368 1 1 1 0 La Liga M ESP 1st 2023 #> 1369 1 4 0 0 La Liga M ESP 1st 2023 #> 1370 2 2 2 0 La Liga M ESP 1st 2023 #> 1371 0 0 2 0 La Liga M ESP 1st 2023 #> 1372 0 0 0 0 La Liga M ESP 1st 2023 #> 1373 0 1 0 0 La Liga M ESP 1st 2023 #> 1374 0 1 0 0 La Liga M ESP 1st 2023 #> 1375 0 0 0 0 La Liga M ESP 1st 2023 #> 1376 0 3 0 0 La Liga M ESP 1st 2023 #> 1377 0 0 0 0 La Liga M ESP 1st 2023 #> 1378 0 2 0 0 La Liga M ESP 1st 2023 #> 1379 0 1 0 0 La Liga M ESP 1st 2023 #> 1380 0 0 0 0 La Liga M ESP 1st 2023 #> 1381 1 1 0 0 La Liga M ESP 1st 2023 #> 1382 1 1 1 0 La Liga M ESP 1st 2023 #> 1383 0 0 2 0 La Liga M ESP 1st 2023 #> 1384 2 6 1 0 La Liga M ESP 1st 2023 #> 1385 0 0 2 0 La Liga M ESP 1st 2023 #> 1386 0 0 0 0 La Liga M ESP 1st 2023 #> 1387 0 2 2 0 La Liga M ESP 1st 2023 #> 1388 0 0 0 0 La Liga M ESP 1st 2023 #> 1389 2 2 0 0 La Liga M ESP 1st 2023 #> 1390 0 0 0 0 La Liga M ESP 1st 2023 #> 1391 0 5 2 0 La Liga M ESP 1st 2023 #> 1392 0 0 0 0 La Liga M ESP 1st 2023 #> 1393 0 2 0 0 La Liga M ESP 1st 2023 #> 1394 1 2 2 0 La Liga M ESP 1st 2023 #> 1395 0 2 0 0 La Liga M ESP 1st 2023 #> 1396 1 2 0 0 La Liga M ESP 1st 2023 #> 1397 0 0 0 0 La Liga M ESP 1st 2023 #> 1398 3 4 5 0 La Liga M ESP 1st 2023 #> 1399 2 4 4 0 La Liga M ESP 1st 2023 #> 1400 3 3 2 0 La Liga M ESP 1st 2023 #> 1401 0 4 2 0 La Liga M ESP 1st 2023 #> 1402 0 0 0 0 La Liga M ESP 1st 2023 #> 1403 1 4 2 0 La Liga M ESP 1st 2023 #> 1404 0 0 1 0 La Liga M ESP 1st 2023 #> 1405 0 1 0 0 La Liga M ESP 1st 2023 #> 1406 0 0 0 0 La Liga M ESP 1st 2023 #> 1407 1 1 0 0 La Liga M ESP 1st 2023 #> 1408 2 3 1 0 La Liga M ESP 1st 2023 #> 1409 0 0 0 0 La Liga M ESP 1st 2023 #> 1410 2 4 0 0 La Liga M ESP 1st 2023 #> 1411 0 2 0 0 La Liga M ESP 1st 2023 #> 1412 3 8 1 0 La Liga M ESP 1st 2023 #> 1413 3 5 2 0 La Liga M ESP 1st 2023 #> 1414 1 1 1 0 La Liga M ESP 1st 2023 #> 1415 2 3 1 0 La Liga M ESP 1st 2023 #> 1416 1 2 1 0 La Liga M ESP 1st 2023 #> 1417 0 0 1 0 La Liga M ESP 1st 2023 #> 1418 0 0 0 0 La Liga M ESP 1st 2023 #> 1419 0 0 1 0 La Liga M ESP 1st 2023 #> 1420 0 0 0 0 La Liga M ESP 1st 2023 #> 1421 0 5 0 0 La Liga M ESP 1st 2023 #> 1422 0 0 0 0 La Liga M ESP 1st 2023 #> 1423 0 0 0 0 La Liga M ESP 1st 2023 #> 1424 0 1 1 0 La Liga M ESP 1st 2023 #> 1425 0 0 0 0 La Liga M ESP 1st 2023 #> 1426 0 0 1 0 La Liga M ESP 1st 2023 #> 1427 1 2 1 0 La Liga M ESP 1st 2023 #> 1428 1 2 0 0 La Liga M ESP 1st 2023 #> 1429 0 0 1 0 La Liga M ESP 1st 2023 #> 1430 0 3 3 0 La Liga M ESP 1st 2023 #> 1431 4 5 3 0 La Liga M ESP 1st 2023 #> 1432 2 4 1 1 La Liga M ESP 1st 2023 #> 1433 0 1 1 0 La Liga M ESP 1st 2023 #> 1434 0 0 1 0 La Liga M ESP 1st 2023 #> 1435 0 0 0 0 La Liga M ESP 1st 2023 #> 1436 0 0 0 0 La Liga M ESP 1st 2023 #> 1437 0 0 1 0 La Liga M ESP 1st 2023 #> 1438 2 4 2 0 La Liga M ESP 1st 2023 #> 1439 0 4 1 0 La Liga M ESP 1st 2023 #> 1440 0 1 0 0 La Liga M ESP 1st 2023 #> 1441 0 1 1 0 La Liga M ESP 1st 2023 #> 1442 0 0 1 0 La Liga M ESP 1st 2023 #> 1443 0 1 0 0 La Liga M ESP 1st 2023 #> 1444 1 1 1 0 La Liga M ESP 1st 2023 #> 1445 4 6 3 0 La Liga M ESP 1st 2023 #> 1446 1 1 3 0 La Liga M ESP 1st 2023 #> 1447 3 6 5 0 La Liga M ESP 1st 2023 #> 1448 0 4 2 0 La Liga M ESP 1st 2023 #> 1449 0 0 0 0 La Liga M ESP 1st 2023 #> 1450 0 0 1 0 La Liga M ESP 1st 2023 #> 1451 0 0 0 0 La Liga M ESP 1st 2023 #> 1452 0 0 0 0 La Liga M ESP 1st 2023 #> 1453 1 3 0 0 La Liga M ESP 1st 2023 #> 1454 0 3 0 0 La Liga M ESP 1st 2023 #> 1455 0 2 0 0 La Liga M ESP 1st 2023 #> 1456 0 1 1 0 La Liga M ESP 1st 2023 #> 1457 0 0 1 0 La Liga M ESP 1st 2023 #> 1458 1 1 2 0 La Liga M ESP 1st 2023 #> 1459 0 4 1 0 La Liga M ESP 1st 2023 #> 1460 0 1 0 0 La Liga M ESP 1st 2023 #> 1461 1 3 2 0 La Liga M ESP 1st 2023 #> 1462 0 2 2 0 La Liga M ESP 1st 2023 #> 1463 0 1 5 0 La Liga M ESP 1st 2023 #> 1464 0 0 0 0 La Liga M ESP 1st 2023 #> 1465 0 0 2 0 La Liga M ESP 1st 2023 #> 1466 0 0 0 0 La Liga M ESP 1st 2023 #> 1467 0 0 1 0 La Liga M ESP 1st 2023 #> 1468 2 2 0 0 La Liga M ESP 1st 2023 #> 1469 0 0 1 0 La Liga M ESP 1st 2023 #> 1470 1 3 2 0 La Liga M ESP 1st 2023 #> 1471 1 1 0 0 La Liga M ESP 1st 2023 #> 1472 0 0 0 0 La Liga M ESP 1st 2023 #> 1473 2 5 2 0 La Liga M ESP 1st 2023 #> 1474 1 1 3 0 La Liga M ESP 1st 2023 #> 1475 2 5 4 0 La Liga M ESP 1st 2023 #> 1476 0 2 6 0 La Liga M ESP 1st 2023 #> 1477 2 5 6 1 La Liga M ESP 1st 2023 #> 1478 0 3 6 0 La Liga M ESP 1st 2023 #> 1479 0 0 0 0 La Liga M ESP 1st 2023 #> 1480 1 2 1 0 La Liga M ESP 1st 2023 #> 1481 0 0 0 0 La Liga M ESP 1st 2023 #> 1482 0 1 0 0 La Liga M ESP 1st 2023 #> 1483 0 0 0 0 La Liga M ESP 1st 2023 #> 1484 2 5 2 0 La Liga M ESP 1st 2023 #> 1485 0 2 1 1 La Liga M ESP 1st 2023 #> 1486 0 1 1 0 La Liga M ESP 1st 2023 #> 1487 0 0 0 0 La Liga M ESP 1st 2023 #> 1488 0 2 3 0 La Liga M ESP 1st 2023 #> 1489 0 0 0 0 La Liga M ESP 1st 2023 #> 1490 1 5 0 0 La Liga M ESP 1st 2023 #> 1491 0 0 0 0 La Liga M ESP 1st 2023 #> 1492 1 1 2 0 La Liga M ESP 1st 2023 #> 1493 0 3 9 0 La Liga M ESP 1st 2023 #> 1494 4 4 5 0 La Liga M ESP 1st 2023 #> 1495 0 0 0 0 La Liga M ESP 1st 2023 #> 1496 0 1 4 0 La Liga M ESP 1st 2023 #> 1497 0 0 1 0 La Liga M ESP 1st 2023 #> 1498 1 2 1 0 La Liga M ESP 1st 2023 #> 1499 0 0 0 0 La Liga M ESP 1st 2023 #> 1500 0 0 0 0 La Liga M ESP 1st 2023 #> 1501 0 0 0 0 La Liga M ESP 1st 2023 #> 1502 2 7 2 0 La Liga M ESP 1st 2023 #> 1503 0 1 0 0 La Liga M ESP 1st 2023 #> 1504 1 1 0 0 La Liga M ESP 1st 2023 #> 1505 1 3 1 0 La Liga M ESP 1st 2023 #> 1506 0 0 0 0 La Liga M ESP 1st 2023 #> 1507 1 2 3 0 La Liga M ESP 1st 2023 #> 1508 1 1 4 0 La Liga M ESP 1st 2023 #> 1509 2 4 4 0 La Liga M ESP 1st 2023 #> 1510 1 1 2 0 La Liga M ESP 1st 2023 #> 1511 0 0 2 0 La Liga M ESP 1st 2023 #> 1512 1 1 0 0 La Liga M ESP 1st 2023 #> 1513 0 0 0 0 La Liga M ESP 1st 2023 #> 1514 1 3 0 0 La Liga M ESP 1st 2023 #> 1515 1 1 0 0 La Liga M ESP 1st 2023 #> 1516 2 2 1 0 La Liga M ESP 1st 2023 #> 1517 0 0 1 0 La Liga M ESP 1st 2023 #> 1518 1 1 1 0 La Liga M ESP 1st 2023 #> 1519 0 0 0 0 La Liga M ESP 1st 2023 #> 1520 0 2 1 0 La Liga M ESP 1st 2023 #> 1521 0 0 0 0 La Liga M ESP 1st 2023 #> 1522 2 5 1 0 La Liga M ESP 1st 2023 #> 1523 0 1 2 0 La Liga M ESP 1st 2023 #> 1524 1 1 8 0 La Liga M ESP 1st 2023 #> 1525 0 0 3 0 La Liga M ESP 1st 2023 #> 1526 1 8 2 0 La Liga M ESP 1st 2023 #> 1527 0 0 0 0 La Liga M ESP 1st 2023 #> 1528 0 0 0 0 La Liga M ESP 1st 2023 #> 1529 0 0 0 0 La Liga M ESP 1st 2023 #> 1530 1 6 0 0 La Liga M ESP 1st 2023 #> 1531 0 0 0 0 La Liga M ESP 1st 2023 #> 1532 0 4 0 0 La Liga M ESP 1st 2023 #> 1533 0 0 0 0 La Liga M ESP 1st 2023 #> 1534 0 2 0 0 La Liga M ESP 1st 2023 #> 1535 0 2 1 0 La Liga M ESP 1st 2023 #> 1536 0 1 0 0 La Liga M ESP 1st 2023 #> 1537 0 2 0 0 La Liga M ESP 1st 2023 #> 1538 0 0 0 0 La Liga M ESP 1st 2023 #> 1539 0 1 2 0 La Liga M ESP 1st 2023 #> 1540 1 3 6 0 La Liga M ESP 1st 2023 #> 1541 0 0 3 0 La Liga M ESP 1st 2023 #> 1542 0 2 3 0 La Liga M ESP 1st 2023 #> 1543 0 0 0 1 La Liga M ESP 1st 2023 #> 1544 0 1 1 0 La Liga M ESP 1st 2023 #> 1545 0 0 0 0 La Liga M ESP 1st 2023 #> 1546 0 2 0 0 La Liga M ESP 1st 2023 #> 1547 0 0 1 0 La Liga M ESP 1st 2023 #> 1548 0 0 0 0 La Liga M ESP 1st 2023 #> 1549 0 2 2 0 La Liga M ESP 1st 2023 #> 1550 0 0 1 0 La Liga M ESP 1st 2023 #> 1551 0 2 0 0 La Liga M ESP 1st 2023 #> 1552 1 1 1 0 La Liga M ESP 1st 2023 #> 1553 0 1 0 0 La Liga M ESP 1st 2023 #> 1554 1 5 2 0 La Liga M ESP 1st 2023 #> 1555 0 0 5 0 La Liga M ESP 1st 2023 #> 1556 0 0 5 0 La Liga M ESP 1st 2023 #> 1557 0 5 3 0 La Liga M ESP 1st 2023 #> 1558 0 1 0 0 La Liga M ESP 1st 2023 #> 1559 0 0 2 0 La Liga M ESP 1st 2023 #> 1560 0 0 2 0 La Liga M ESP 1st 2023 #> 1561 0 0 0 0 La Liga M ESP 1st 2023 #> 1562 0 0 0 0 La Liga M ESP 1st 2023 #> 1563 1 2 0 0 La Liga M ESP 1st 2023 #> 1564 0 1 1 0 La Liga M ESP 1st 2023 #> 1565 2 5 1 0 La Liga M ESP 1st 2023 #> 1566 0 0 0 0 La Liga M ESP 1st 2023 #> 1567 0 0 1 0 La Liga M ESP 1st 2023 #> 1568 0 1 1 0 La Liga M ESP 1st 2023 #> 1569 0 2 0 0 La Liga M ESP 1st 2023 #> 1570 1 3 2 0 La Liga M ESP 1st 2023 #> 1571 0 0 1 0 La Liga M ESP 1st 2023 #> 1572 2 2 2 0 La Liga M ESP 1st 2023 #> 1573 1 1 3 0 La Liga M ESP 1st 2023 #> 1574 0 0 0 0 La Liga M ESP 1st 2023 #> 1575 0 3 0 0 La Liga M ESP 1st 2023 #> 1576 0 0 1 0 La Liga M ESP 1st 2023 #> 1577 0 0 0 0 La Liga M ESP 1st 2023 #> 1578 0 0 0 0 La Liga M ESP 1st 2023 #> 1579 0 1 1 0 La Liga M ESP 1st 2023 #> 1580 2 6 1 0 La Liga M ESP 1st 2023 #> 1581 0 1 2 0 La Liga M ESP 1st 2023 #> 1582 0 0 0 0 La Liga M ESP 1st 2023 #> 1583 0 3 0 0 La Liga M ESP 1st 2023 #> 1584 1 4 1 0 La Liga M ESP 1st 2023 #> 1585 0 2 1 0 La Liga M ESP 1st 2023 #> 1586 0 0 1 0 La Liga M ESP 1st 2023 #> 1587 0 0 0 0 La Liga M ESP 1st 2023 #> 1588 1 2 1 0 La Liga M ESP 1st 2023 #> 1589 1 1 0 0 La Liga M ESP 1st 2023 #> 1590 0 0 0 0 La Liga M ESP 1st 2023 #> 1591 0 0 0 0 La Liga M ESP 1st 2023 #> 1592 0 0 0 0 La Liga M ESP 1st 2023 #> 1593 0 1 0 0 La Liga M ESP 1st 2023 #> 1594 1 1 0 0 La Liga M ESP 1st 2023 #> 1595 0 0 0 0 La Liga M ESP 1st 2023 #> 1596 0 1 0 0 La Liga M ESP 1st 2023 #> 1597 2 2 0 0 La Liga M ESP 1st 2023 #> 1598 5 10 0 0 La Liga M ESP 1st 2023 #> 1599 0 0 0 0 La Liga M ESP 1st 2023 #> 1600 0 1 0 0 La Liga M ESP 1st 2023 #> 1601 0 0 1 0 La Liga M ESP 1st 2023 #> 1602 1 3 0 0 La Liga M ESP 1st 2023 #> 1603 1 2 0 0 La Liga M ESP 1st 2023 #> 1604 2 3 0 0 La Liga M ESP 1st 2023 #> 1605 0 2 0 0 La Liga M ESP 1st 2023 #> 1606 0 0 0 0 La Liga M ESP 1st 2023 #> 1607 2 2 1 0 La Liga M ESP 1st 2023 #> 1608 0 0 0 0 La Liga M ESP 1st 2023 #> 1609 1 2 0 0 La Liga M ESP 1st 2023 #> 1610 0 0 0 0 La Liga M ESP 1st 2023 #> 1611 1 2 1 0 La Liga M ESP 1st 2023 #> 1612 0 3 0 0 La Liga M ESP 1st 2023 #> 1613 1 3 1 0 La Liga M ESP 1st 2023 #> 1614 0 2 3 0 La Liga M ESP 1st 2023 #> 1615 0 0 0 0 La Liga M ESP 1st 2023 #> 1616 2 3 2 0 La Liga M ESP 1st 2023 #> 1617 2 3 6 0 La Liga M ESP 1st 2023 #> 1618 0 0 1 0 La Liga M ESP 1st 2023 #> 1619 0 0 0 0 La Liga M ESP 1st 2023 #> 1620 2 2 2 1 La Liga M ESP 1st 2023 #> 1621 1 3 2 0 La Liga M ESP 1st 2023 #> 1622 0 1 0 0 La Liga M ESP 1st 2023 #> 1623 0 0 0 0 La Liga M ESP 1st 2023 #> 1624 0 0 0 0 La Liga M ESP 1st 2023 #> 1625 0 1 0 0 La Liga M ESP 1st 2023 #> 1626 2 4 0 0 La Liga M ESP 1st 2023 #> 1627 0 0 0 0 La Liga M ESP 1st 2023 #> 1628 0 1 1 0 La Liga M ESP 1st 2023 #> 1629 0 0 1 0 La Liga M ESP 1st 2023 #> 1630 0 NA NA NA La Liga M ESP 1st 2023 #> 1631 1 3 1 0 La Liga M ESP 1st 2023 #> 1632 0 3 0 0 La Liga M ESP 1st 2023 #> 1633 0 0 0 0 La Liga M ESP 1st 2023 #> 1634 0 1 2 0 La Liga M ESP 1st 2023 #> 1635 1 2 2 0 La Liga M ESP 1st 2023 #> 1636 0 0 2 0 La Liga M ESP 1st 2023 #> 1637 0 5 2 0 La Liga M ESP 1st 2023 #> 1638 0 0 0 0 La Liga M ESP 1st 2023 #> 1639 0 0 3 0 La Liga M ESP 1st 2023 #> 1640 0 2 0 0 La Liga M ESP 1st 2023 #> 1641 0 0 1 0 La Liga M ESP 1st 2023 #> 1642 1 5 0 0 La Liga M ESP 1st 2023 #> 1643 1 2 0 0 La Liga M ESP 1st 2023 #> 1644 1 3 1 0 La Liga M ESP 1st 2023 #> 1645 2 2 0 0 La Liga M ESP 1st 2023 #> 1646 0 0 1 0 La Liga M ESP 1st 2023 #> 1647 0 3 0 0 La Liga M ESP 1st 2023 #> 1648 1 5 2 0 La Liga M ESP 1st 2023 #> 1649 2 4 6 0 La Liga M ESP 1st 2023 #> 1650 1 1 5 0 La Liga M ESP 1st 2023 #> 1651 0 2 1 0 La Liga M ESP 1st 2023 #> 1652 0 0 0 0 La Liga M ESP 1st 2023 #> 1653 1 2 2 0 La Liga M ESP 1st 2023 #> 1654 0 0 0 0 La Liga M ESP 1st 2023 #> 1655 1 1 1 0 La Liga M ESP 1st 2023 #> 1656 0 0 0 0 La Liga M ESP 1st 2023 #> 1657 1 4 1 0 La Liga M ESP 1st 2023 #> 1658 0 0 0 0 La Liga M ESP 1st 2023 #> 1659 0 1 0 0 La Liga M ESP 1st 2023 #> 1660 1 1 0 0 La Liga M ESP 1st 2023 #> 1661 1 1 0 0 La Liga M ESP 1st 2023 #> 1662 0 1 0 0 La Liga M ESP 1st 2023 #> 1663 2 4 1 0 La Liga M ESP 1st 2023 #> 1664 2 3 5 0 La Liga M ESP 1st 2023 #> 1665 1 1 5 0 La Liga M ESP 1st 2023 #> 1666 2 2 3 0 La Liga M ESP 1st 2023 #> 1667 0 3 4 0 La Liga M ESP 1st 2023 #> 1668 0 0 2 0 La Liga M ESP 1st 2023 #> 1669 0 1 0 0 La Liga M ESP 1st 2023 #> 1670 0 1 0 0 La Liga M ESP 1st 2023 #> 1671 0 2 0 0 La Liga M ESP 1st 2023 #> 1672 2 3 0 0 La Liga M ESP 1st 2023 #> 1673 0 0 0 0 La Liga M ESP 1st 2023 #> 1674 0 0 0 0 La Liga M ESP 1st 2023 #> 1675 1 2 1 0 La Liga M ESP 1st 2023 #> 1676 1 3 0 0 La Liga M ESP 1st 2023 #> 1677 1 6 0 0 La Liga M ESP 1st 2023 #> 1678 1 2 0 0 La Liga M ESP 1st 2023 #> 1679 1 1 2 0 La Liga M ESP 1st 2023 #> 1680 0 0 3 0 La Liga M ESP 1st 2023 #> 1681 0 1 2 0 La Liga M ESP 1st 2023 #> 1682 0 0 0 0 La Liga M ESP 1st 2023 #> 1683 2 3 1 0 La Liga M ESP 1st 2023 #> 1684 0 0 1 0 La Liga M ESP 1st 2023 #> 1685 0 0 1 0 La Liga M ESP 1st 2023 #> 1686 0 0 0 0 La Liga M ESP 1st 2023 #> 1687 0 0 1 0 La Liga M ESP 1st 2023 #> 1688 0 0 0 0 La Liga M ESP 1st 2023 #> 1689 0 1 1 0 La Liga M ESP 1st 2023 #> 1690 0 1 0 0 La Liga M ESP 1st 2023 #> 1691 0 3 0 0 La Liga M ESP 1st 2023 #> 1692 0 0 0 0 La Liga M ESP 1st 2023 #> 1693 0 1 2 0 La Liga M ESP 1st 2023 #> 1694 1 2 1 0 La Liga M ESP 1st 2023 #> 1695 1 1 4 0 La Liga M ESP 1st 2023 #> 1696 0 0 0 0 La Liga M ESP 1st 2023 #> 1697 0 2 4 0 La Liga M ESP 1st 2023 #> 1698 1 2 1 1 La Liga M ESP 1st 2023 #> 1699 0 1 0 0 La Liga M ESP 1st 2023 #> 1700 0 0 0 0 La Liga M ESP 1st 2023 #> 1701 0 0 4 0 La Liga M ESP 1st 2023 #> 1702 0 0 0 0 La Liga M ESP 1st 2023 #> 1703 0 0 1 0 La Liga M ESP 1st 2023 #> 1704 0 0 0 0 La Liga M ESP 1st 2023 #> 1705 2 3 1 0 La Liga M ESP 1st 2023 #> 1706 1 2 0 0 La Liga M ESP 1st 2023 #> 1707 0 0 2 0 La Liga M ESP 1st 2023 #> 1708 0 2 2 0 La Liga M ESP 1st 2023 #> 1709 0 0 1 0 La Liga M ESP 1st 2023 #> 1710 0 1 4 0 La Liga M ESP 1st 2023 #> 1711 4 5 5 0 La Liga M ESP 1st 2023 #> 1712 0 0 1 0 La Liga M ESP 1st 2023 #> 1713 1 2 11 0 La Liga M ESP 1st 2023 #> 1714 2 3 8 0 La Liga M ESP 1st 2023 #> 1715 0 1 2 0 La Liga M ESP 1st 2023 #> 1716 0 0 1 0 La Liga M ESP 1st 2023 #> 1717 0 0 0 0 La Liga M ESP 1st 2023 #> 1718 0 1 0 0 La Liga M ESP 1st 2023 #> 1719 0 5 0 0 La Liga M ESP 1st 2023 #> 1720 0 1 0 0 La Liga M ESP 1st 2023 #> 1721 1 2 0 0 La Liga M ESP 1st 2023 #> 1722 0 1 0 0 La Liga M ESP 1st 2023 #> 1723 0 3 1 0 La Liga M ESP 1st 2023 #> 1724 2 2 3 0 La Liga M ESP 1st 2023 #> 1725 0 3 1 0 La Liga M ESP 1st 2023 #> 1726 0 0 0 0 La Liga M ESP 1st 2023 #> 1727 0 3 1 0 La Liga M ESP 1st 2023 #> 1728 1 1 0 0 La Liga M ESP 1st 2023 #> 1729 1 2 4 1 La Liga M ESP 1st 2023 #> 1730 0 1 4 0 La Liga M ESP 1st 2023 #> 1731 2 2 0 0 La Liga M ESP 1st 2023 #> 1732 0 0 1 0 La Liga M ESP 1st 2023 #> 1733 1 2 4 0 La Liga M ESP 1st 2023 #> 1734 2 4 0 0 La Liga M ESP 1st 2023 #> 1735 0 0 0 0 La Liga M ESP 1st 2023 #> 1736 0 0 2 0 La Liga M ESP 1st 2023 #> 1737 0 1 0 0 La Liga M ESP 1st 2023 #> 1738 2 4 1 0 La Liga M ESP 1st 2023 #> 1739 1 1 1 0 La Liga M ESP 1st 2023 #> 1740 0 2 0 0 La Liga M ESP 1st 2023 #> 1741 2 3 0 0 La Liga M ESP 1st 2023 #> 1742 0 0 1 0 La Liga M ESP 1st 2023 #> 1743 1 1 9 0 La Liga M ESP 1st 2023 #> 1744 2 4 4 0 La Liga M ESP 1st 2023 #> 1745 0 1 3 0 La Liga M ESP 1st 2023 #> 1746 0 1 0 0 La Liga M ESP 1st 2023 #> 1747 0 0 0 0 La Liga M ESP 1st 2023 #> 1748 0 0 0 0 La Liga M ESP 1st 2023 #> 1749 0 1 1 0 La Liga M ESP 1st 2023 #> 1750 0 0 0 0 La Liga M ESP 1st 2023 #> 1751 1 2 0 0 La Liga M ESP 1st 2023 #> 1752 0 0 0 0 La Liga M ESP 1st 2023 #> 1753 0 0 0 0 La Liga M ESP 1st 2023 #> 1754 0 1 0 0 La Liga M ESP 1st 2023 #> 1755 0 2 0 0 La Liga M ESP 1st 2023 #> 1756 2 6 2 0 La Liga M ESP 1st 2023 #> 1757 2 2 4 0 La Liga M ESP 1st 2023 #> 1758 1 3 5 0 La Liga M ESP 1st 2023 #> 1759 5 6 2 0 La Liga M ESP 1st 2023 #> 1760 0 0 2 0 La Liga M ESP 1st 2023 #> 1761 1 3 2 0 La Liga M ESP 1st 2023 #> 1762 0 4 0 0 La Liga M ESP 1st 2023 #> 1763 0 1 0 0 La Liga M ESP 1st 2023 #> 1764 0 1 1 0 La Liga M ESP 1st 2023 #> 1765 0 0 0 0 La Liga M ESP 1st 2023 #> 1766 0 1 1 0 La Liga M ESP 1st 2023 #> 1767 0 0 0 1 La Liga M ESP 1st 2023 #> 1768 1 2 0 0 La Liga M ESP 1st 2023 #> 1769 2 2 0 0 La Liga M ESP 1st 2023 #> 1770 0 0 0 0 La Liga M ESP 1st 2023 #> 1771 0 10 1 0 La Liga M ESP 1st 2023 #> 1772 0 3 0 0 La Liga M ESP 1st 2023 #> 1773 1 3 1 0 La Liga M ESP 1st 2023 #> 1774 0 0 0 0 La Liga M ESP 1st 2023 #> 1775 3 5 4 0 La Liga M ESP 1st 2023 #> 1776 1 2 3 0 La Liga M ESP 1st 2023 #> 1777 0 0 0 0 La Liga M ESP 1st 2023 #> 1778 1 2 0 0 La Liga M ESP 1st 2023 #> 1779 0 0 1 0 La Liga M ESP 1st 2023 #> 1780 1 4 0 0 La Liga M ESP 1st 2023 #> 1781 0 0 1 0 La Liga M ESP 1st 2023 #> 1782 0 0 1 0 La Liga M ESP 1st 2023 #> 1783 1 1 2 0 La Liga M ESP 1st 2023 #> 1784 0 0 0 0 La Liga M ESP 1st 2023 #> 1785 0 0 1 0 La Liga M ESP 1st 2023 #> 1786 0 3 1 0 La Liga M ESP 1st 2023 #> 1787 0 0 2 0 La Liga M ESP 1st 2023 #> 1788 1 2 3 0 La Liga M ESP 1st 2023 #> 1789 1 2 3 0 La Liga M ESP 1st 2023 #> 1790 0 2 6 0 La Liga M ESP 1st 2023 #> 1791 1 3 2 0 La Liga M ESP 1st 2023 #> 1792 1 2 0 0 La Liga M ESP 1st 2023 #> 1793 0 0 1 1 La Liga M ESP 1st 2023 #> 1794 1 1 0 0 La Liga M ESP 1st 2023 #> 1795 0 0 0 0 La Liga M ESP 1st 2023 #> 1796 2 3 3 0 La Liga M ESP 1st 2023 #> 1797 1 1 0 0 La Liga M ESP 1st 2023 #> 1798 2 5 1 0 La Liga M ESP 1st 2023 #> 1799 0 0 0 0 La Liga M ESP 1st 2023 #> 1800 1 5 0 0 La Liga M ESP 1st 2023 #> 1801 0 2 0 0 La Liga M ESP 1st 2023 #> 1802 5 6 1 0 La Liga M ESP 1st 2023 #> 1803 2 2 4 0 La Liga M ESP 1st 2023 #> 1804 0 2 0 0 La Liga M ESP 1st 2023 #> 1805 1 2 0 0 La Liga M ESP 1st 2023 #> 1806 0 1 1 0 La Liga M ESP 1st 2023 #> 1807 1 4 0 0 La Liga M ESP 1st 2023 #> 1808 0 0 1 1 La Liga M ESP 1st 2023 #> 1809 0 0 0 0 La Liga M ESP 1st 2023 #> 1810 1 1 0 0 La Liga M ESP 1st 2023 #> 1811 2 2 0 0 La Liga M ESP 1st 2023 #> 1812 0 2 2 0 La Liga M ESP 1st 2023 #> 1813 0 0 0 0 La Liga M ESP 1st 2023 #> 1814 1 2 0 0 La Liga M ESP 1st 2023 #> 1815 0 0 0 0 La Liga M ESP 1st 2023 #> 1816 0 1 1 0 La Liga M ESP 1st 2023 #> 1817 0 1 0 0 La Liga M ESP 1st 2023 #> 1818 0 2 0 0 La Liga M ESP 1st 2023 #> 1819 0 0 0 0 La Liga M ESP 1st 2023 #> 1820 3 4 1 0 La Liga M ESP 1st 2023 #> 1821 1 2 0 0 La Liga M ESP 1st 2023 #> 1822 1 1 0 0 La Liga M ESP 1st 2023 #> 1823 0 2 3 0 La Liga M ESP 1st 2023 #> 1824 0 0 1 0 La Liga M ESP 1st 2023 #> 1825 1 2 0 0 La Liga M ESP 1st 2023 #> 1826 1 2 0 0 La Liga M ESP 1st 2023 #> 1827 1 1 0 0 La Liga M ESP 1st 2023 #> 1828 0 1 2 0 La Liga M ESP 1st 2023 #> 1829 2 3 0 0 La Liga M ESP 1st 2023 #> 1830 0 1 0 0 La Liga M ESP 1st 2023 #> 1831 2 4 6 0 La Liga M ESP 1st 2023 #> 1832 1 1 1 0 La Liga M ESP 1st 2023 #> 1833 0 0 0 0 La Liga M ESP 1st 2023 #> 1834 1 2 1 0 La Liga M ESP 1st 2023 #> 1835 1 1 1 0 La Liga M ESP 1st 2023 #> 1836 3 3 0 0 La Liga M ESP 1st 2023 #> 1837 1 3 2 0 La Liga M ESP 1st 2023 #> 1838 3 5 1 0 La Liga M ESP 1st 2023 #> 1839 0 0 0 0 La Liga M ESP 1st 2023 #> 1840 0 0 1 0 La Liga M ESP 1st 2023 #> 1841 0 1 0 0 La Liga M ESP 1st 2023 #> 1842 1 1 0 0 La Liga M ESP 1st 2023 #> 1843 0 0 1 0 La Liga M ESP 1st 2023 #> 1844 1 2 0 0 La Liga M ESP 1st 2023 #> 1845 0 0 0 0 La Liga M ESP 1st 2023 #> 1846 0 4 1 0 La Liga M ESP 1st 2023 #> 1847 0 0 0 0 La Liga M ESP 1st 2023 #> 1848 0 1 0 0 La Liga M ESP 1st 2023 #> 1849 1 1 0 0 La Liga M ESP 1st 2023 #> 1850 1 2 2 0 La Liga M ESP 1st 2023 #> 1851 2 4 1 0 La Liga M ESP 1st 2023 #> 1852 0 2 2 0 La Liga M ESP 1st 2023 #> 1853 2 2 0 0 La Liga M ESP 1st 2023 #> 1854 0 2 1 0 La Liga M ESP 1st 2023 #> 1855 0 0 1 0 La Liga M ESP 1st 2023 #> 1856 0 0 1 0 La Liga M ESP 1st 2023 #> 1857 0 1 0 0 La Liga M ESP 1st 2023 #> 1858 1 1 1 0 La Liga M ESP 1st 2023 #> 1859 0 0 2 0 La Liga M ESP 1st 2023 #> 1860 5 5 1 0 La Liga M ESP 1st 2023 #> 1861 1 2 0 0 La Liga M ESP 1st 2023 #> 1862 2 2 1 0 La Liga M ESP 1st 2023 #> 1863 0 0 0 0 La Liga M ESP 1st 2023 #> 1864 0 0 1 0 La Liga M ESP 1st 2023 #> 1865 0 0 0 0 La Liga M ESP 1st 2023 #> 1866 0 4 3 0 La Liga M ESP 1st 2023 #> 1867 0 2 2 0 La Liga M ESP 1st 2023 #> 1868 1 2 6 0 La Liga M ESP 1st 2023 #> 1869 2 4 5 0 La Liga M ESP 1st 2023 #> 1870 0 2 0 0 La Liga M ESP 1st 2023 #> 1871 0 0 0 0 La Liga M ESP 1st 2023 #> 1872 0 3 0 0 La Liga M ESP 1st 2023 #> 1873 0 0 0 0 La Liga M ESP 1st 2023 #> 1874 0 1 3 0 La Liga M ESP 1st 2023 #> 1875 0 0 1 0 La Liga M ESP 1st 2023 #> 1876 1 1 0 0 La Liga M ESP 1st 2023 #> 1877 1 4 0 0 La Liga M ESP 1st 2023 #> 1878 0 1 1 0 La Liga M ESP 1st 2023 #> 1879 0 2 0 0 La Liga M ESP 1st 2023 #> 1880 0 0 0 0 La Liga M ESP 1st 2023 #> 1881 1 5 0 1 La Liga M ESP 1st 2023 #> 1882 0 0 0 0 La Liga M ESP 1st 2023 #> 1883 0 3 2 0 La Liga M ESP 1st 2023 #> 1884 4 4 6 0 La Liga M ESP 1st 2023 #> 1885 0 0 4 0 La Liga M ESP 1st 2023 #> 1886 4 7 2 0 La Liga M ESP 1st 2023 #> 1887 0 0 0 0 La Liga M ESP 1st 2023 #> 1888 0 0 0 0 La Liga M ESP 1st 2023 #> 1889 0 0 2 0 La Liga M ESP 1st 2023 #> 1890 0 2 1 0 La Liga M ESP 1st 2023 #> 1891 0 0 0 0 La Liga M ESP 1st 2023 #> 1892 0 0 0 0 La Liga M ESP 1st 2023 #> 1893 0 2 0 0 La Liga M ESP 1st 2023 #> 1894 1 4 3 0 La Liga M ESP 1st 2023 #> 1895 1 3 0 0 La Liga M ESP 1st 2023 #> 1896 0 0 0 0 La Liga M ESP 1st 2023 #> 1897 0 2 1 0 La Liga M ESP 1st 2023 #> 1898 0 2 6 0 La Liga M ESP 1st 2023 #> 1899 0 2 3 0 La Liga M ESP 1st 2023 #> 1900 0 1 2 0 La Liga M ESP 1st 2023 #> 1901 0 0 0 0 La Liga M ESP 1st 2023 #> 1902 0 0 0 0 La Liga M ESP 1st 2023 #> 1903 0 1 2 0 La Liga M ESP 1st 2023 #> 1904 0 0 0 0 La Liga M ESP 1st 2023 #> 1905 0 2 0 0 La Liga M ESP 1st 2023 #> 1906 0 0 0 0 La Liga M ESP 1st 2023 #> 1907 0 1 0 0 La Liga M ESP 1st 2023 #> 1908 0 1 0 0 La Liga M ESP 1st 2023 #> 1909 1 1 0 0 La Liga M ESP 1st 2023 #> 1910 0 4 1 0 La Liga M ESP 1st 2023 #> 1911 1 1 0 0 La Liga M ESP 1st 2023 #> 1912 0 3 3 0 La Liga M ESP 1st 2023 #> 1913 0 2 2 0 La Liga M ESP 1st 2023 #> 1914 0 2 3 0 La Liga M ESP 1st 2023 #> 1915 0 1 2 0 La Liga M ESP 1st 2023 #> 1916 0 0 1 0 La Liga M ESP 1st 2023 #> 1917 0 1 1 0 La Liga M ESP 1st 2023 #> 1918 0 0 0 0 La Liga M ESP 1st 2023 #> 1919 0 0 1 0 La Liga M ESP 1st 2023 #> 1920 0 0 0 0 La Liga M ESP 1st 2023 #> 1921 0 0 0 0 La Liga M ESP 1st 2023 #> 1922 0 0 0 0 La Liga M ESP 1st 2023 #> 1923 1 3 3 0 La Liga M ESP 1st 2023 #> 1924 0 0 0 0 La Liga M ESP 1st 2023 #> 1925 0 3 2 0 La Liga M ESP 1st 2023 #> 1926 4 6 5 0 La Liga M ESP 1st 2023 #> 1927 1 2 8 0 La Liga M ESP 1st 2023 #> 1928 0 0 3 0 La Liga M ESP 1st 2023 #> 1929 0 1 1 0 La Liga M ESP 1st 2023 #> 1930 0 0 5 0 La Liga M ESP 1st 2023 #> 1931 1 5 7 0 La Liga M ESP 1st 2023 #> 1932 0 0 0 0 La Liga M ESP 1st 2023 #> 1933 0 0 2 0 La Liga M ESP 1st 2023 #> 1934 2 2 2 0 La Liga M ESP 1st 2023 #> 1935 0 3 0 0 La Liga M ESP 1st 2023 #> 1936 0 0 0 0 La Liga M ESP 1st 2023 #> 1937 0 0 0 0 La Liga M ESP 1st 2023 #> 1938 1 1 0 0 La Liga M ESP 1st 2023 #> 1939 3 6 0 0 La Liga M ESP 1st 2023 #> 1940 0 0 5 0 La Liga M ESP 1st 2023 #> 1941 0 0 0 0 La Liga M ESP 1st 2023 #> 1942 1 1 1 0 La Liga M ESP 1st 2023 #> 1943 0 0 1 0 La Liga M ESP 1st 2023 #> 1944 0 2 1 0 La Liga M ESP 1st 2023 #> 1945 2 2 0 0 La Liga M ESP 1st 2023 #> 1946 0 0 0 0 La Liga M ESP 1st 2023 #> 1947 1 5 6 0 La Liga M ESP 1st 2023 #> 1948 0 1 4 0 La Liga M ESP 1st 2023 #> 1949 0 1 0 0 La Liga M ESP 1st 2023 #> 1950 0 0 0 0 La Liga M ESP 1st 2023 #> 1951 0 1 0 0 La Liga M ESP 1st 2023 #> 1952 0 0 1 0 La Liga M ESP 1st 2023 #> 1953 1 2 2 0 La Liga M ESP 1st 2023 #> 1954 0 0 1 0 La Liga M ESP 1st 2023 #> 1955 0 0 1 0 La Liga M ESP 1st 2023 #> 1956 0 0 1 0 La Liga M ESP 1st 2023 #> 1957 0 0 1 0 La Liga M ESP 1st 2023 #> 1958 0 0 2 0 La Liga M ESP 1st 2023 #> 1959 2 7 4 0 La Liga M ESP 1st 2023 #> 1960 2 5 9 0 La Liga M ESP 1st 2023 #> 1961 2 3 4 0 La Liga M ESP 1st 2023 #> 1962 0 3 2 0 La Liga M ESP 1st 2023 #> 1963 0 0 0 0 La Liga M ESP 1st 2023 #> 1964 0 0 0 0 La Liga M ESP 1st 2023 #> 1965 0 0 0 0 La Liga M ESP 1st 2023 #> 1966 0 2 0 0 La Liga M ESP 1st 2023 #> 1967 0 3 2 0 La Liga M ESP 1st 2023 #> 1968 1 2 0 0 La Liga M ESP 1st 2023 #> 1969 0 1 0 0 La Liga M ESP 1st 2023 #> 1970 0 0 0 0 La Liga M ESP 1st 2023 #> 1971 0 0 1 0 La Liga M ESP 1st 2023 #> 1972 1 3 2 0 La Liga M ESP 1st 2023 #> 1973 0 1 0 0 La Liga M ESP 1st 2023 #> 1974 1 2 2 0 La Liga M ESP 1st 2023 #> 1975 1 1 3 0 La Liga M ESP 1st 2023 #> 1976 0 1 3 0 La Liga M ESP 1st 2023 #> 1977 1 3 2 0 La Liga M ESP 1st 2023 #> 1978 0 0 0 0 La Liga M ESP 1st 2023 #> 1979 0 2 0 0 La Liga M ESP 1st 2023 #> 1980 1 4 0 0 La Liga M ESP 1st 2023 #> 1981 0 0 0 0 La Liga M ESP 1st 2023 #> 1982 0 0 0 0 La Liga M ESP 1st 2023 #> 1983 0 0 0 0 La Liga M ESP 1st 2023 #> 1984 1 2 0 0 La Liga M ESP 1st 2023 #> 1985 2 3 1 0 La Liga M ESP 1st 2023 #> 1986 0 1 0 0 La Liga M ESP 1st 2023 #> 1987 0 0 0 0 La Liga M ESP 1st 2023 #> 1988 0 1 1 0 La Liga M ESP 1st 2023 #> 1989 1 1 0 0 La Liga M ESP 1st 2023 #> 1990 1 2 3 0 La Liga M ESP 1st 2023 #> 1991 0 0 5 0 La Liga M ESP 1st 2023 #> 1992 0 1 0 0 La Liga M ESP 1st 2023 #> 1993 0 0 0 0 La Liga M ESP 1st 2023 #> 1994 0 0 1 0 La Liga M ESP 1st 2023 #> 1995 0 1 1 0 La Liga M ESP 1st 2023 #> 1996 0 0 1 0 La Liga M ESP 1st 2023 #> 1997 0 0 0 0 La Liga M ESP 1st 2023 #> 1998 1 3 0 0 La Liga M ESP 1st 2023 #> 1999 1 2 0 0 La Liga M ESP 1st 2023 #> 2000 3 6 1 0 La Liga M ESP 1st 2023 #> 2001 0 0 0 0 La Liga M ESP 1st 2023 #> 2002 0 2 0 0 La Liga M ESP 1st 2023 #> 2003 0 0 0 0 La Liga M ESP 1st 2023 #> 2004 3 4 5 0 La Liga M ESP 1st 2023 #> 2005 0 0 3 0 La Liga M ESP 1st 2023 #> 2006 2 2 5 0 La Liga M ESP 1st 2023 #> 2007 0 3 3 0 La Liga M ESP 1st 2023 #> 2008 1 1 0 0 La Liga M ESP 1st 2023 #> 2009 0 0 1 1 La Liga M ESP 1st 2023 #> 2010 0 0 1 0 La Liga M ESP 1st 2023 #> 2011 0 0 0 0 La Liga M ESP 1st 2023 #> 2012 0 1 0 0 La Liga M ESP 1st 2023 #> 2013 1 1 0 0 La Liga M ESP 1st 2023 #> 2014 0 1 1 0 La Liga M ESP 1st 2023 #> 2015 0 0 1 0 La Liga M ESP 1st 2023 #> 2016 0 0 0 0 La Liga M ESP 1st 2023 #> 2017 0 NA NA NA La Liga M ESP 1st 2023 #> 2018 0 0 1 0 La Liga M ESP 1st 2023 #> 2019 1 2 0 0 La Liga M ESP 1st 2023 #> 2020 3 4 2 0 La Liga M ESP 1st 2023 #> 2021 2 6 5 0 La Liga M ESP 1st 2023 #> 2022 1 2 8 0 La Liga M ESP 1st 2023 #> 2023 2 2 1 0 La Liga M ESP 1st 2023 #> 2024 2 4 3 0 La Liga M ESP 1st 2023 #> 2025 0 0 0 0 La Liga M ESP 1st 2023 #> 2026 0 1 1 0 La Liga M ESP 1st 2023 #> 2027 0 2 0 0 La Liga M ESP 1st 2023 #> 2028 0 0 0 0 La Liga M ESP 1st 2023 #> 2029 0 0 0 0 La Liga M ESP 1st 2023 #> 2030 1 2 1 0 La Liga M ESP 1st 2023 #> 2031 1 4 0 0 La Liga M ESP 1st 2023 #> 2032 0 0 0 0 La Liga M ESP 1st 2023 #> 2033 2 3 0 0 La Liga M ESP 1st 2023 #> 2034 0 3 1 0 La Liga M ESP 1st 2023 #> 2035 2 2 1 1 La Liga M ESP 1st 2023 #> 2036 0 2 0 0 La Liga M ESP 1st 2023 #> 2037 2 2 6 0 La Liga M ESP 1st 2023 #> 2038 1 3 4 0 La Liga M ESP 1st 2023 #> 2039 1 3 2 0 La Liga M ESP 1st 2023 #> 2040 1 4 1 0 La Liga M ESP 1st 2023 #> [ reached 'max' / getOption(\"max.print\") -- omitted 9453 rows ] # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_big5_advanced_season_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Load Big 5 Euro League Season Stats — load_fb_big5_advanced_season_stats","title":"Load Big 5 Euro League Season Stats — load_fb_big5_advanced_season_stats","text":"Loading version fb_big5_advanced_season_stats Returns data frame selected statistics seasons big 5 Euro leagues, either whole team individual players. Multiple seasons can passed function, one `stat_type` can selected","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_big5_advanced_season_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Load Big 5 Euro League Season Stats — load_fb_big5_advanced_season_stats","text":"","code":"load_fb_big5_advanced_season_stats( season_end_year = NA, stat_type, team_or_player )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_big5_advanced_season_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Load Big 5 Euro League Season Stats — load_fb_big5_advanced_season_stats","text":"season_end_year year(s) season concludes stat_type type team statistics user requires team_or_player result either summarised team, individual players statistic type options (stat_type) include: \"standard\", \"shooting\", \"passing\", \"passing_types\", \"gca\", \"defense\", \"possession\", \"playing_time\", \"misc\", \"keepers\", \"keepers_adv\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_big5_advanced_season_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Load Big 5 Euro League Season Stats — load_fb_big5_advanced_season_stats","text":"returns dataframe selected team player statistic type selected season(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_big5_advanced_season_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Load Big 5 Euro League Season Stats — load_fb_big5_advanced_season_stats","text":"","code":"# \\donttest{ try({ df <- load_fb_big5_advanced_season_stats( season_end_year = c(2018:2022), stat_type = \"defense\", team_or_player = \"player\" ) df <- load_fb_big5_advanced_season_stats( season_end_year = 2022, stat_type = \"defense\", team_or_player = \"player\" ) }) #> → Data last updated 2024-05-07 17:35:17.589231967926 UTC #> → Data last updated 2024-05-07 17:35:17.589231967926 UTC # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_shooting.html","id":null,"dir":"Reference","previous_headings":"","what":"Load pre-saved FBref match shooting event data — load_fb_match_shooting","title":"Load pre-saved FBref match shooting event data — load_fb_match_shooting","text":"Loading version fb_match_shooting. leagues available.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_shooting.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Load pre-saved FBref match shooting event data — load_fb_match_shooting","text":"","code":"load_fb_match_shooting(country, gender, tier, season_end_year = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_shooting.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Load pre-saved FBref match shooting event data — load_fb_match_shooting","text":"country three character country code gender gender competition, either \"M\" \"F\" tier tier league, ie '1st' EPL '2nd' Championship season_end_year year(s) season concludes","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_shooting.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Load pre-saved FBref match shooting event data — load_fb_match_shooting","text":"returns dataframe","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_shooting.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Load pre-saved FBref match shooting event data — load_fb_match_shooting","text":"","code":"# \\donttest{ try({ load_fb_match_shooting( country = \"ENG\", gender = \"M\", tier = \"1st\" ) load_fb_match_shooting( country = c(\"ITA\", \"ESP\"), gender = \"M\", tier = \"1st\", season_end_year = 2019 ) }) #> → Data last updated 2024-05-07 17:52:59.6828289031982 UTC #> → Data last updated 2024-05-07 17:54:35.3966929912567 UTC #> # A tibble: 19,810 × 23 #> MatchURL Date Squad Home_Away Match_Half Minute Player Player_Href xG #> #> 1 https://fbr… 2018… Chie… Home 1 15 Ivan … /en/player… 0.02 #> 2 https://fbr… 2018… Chie… Home 1 22 Ivan … /en/player… 0.02 #> 3 https://fbr… 2018… Chie… Home 1 38 Mariu… /en/player… 0.23 #> 4 https://fbr… 2018… Chie… Home 2 56 Emanu… /en/player… 0.79 #> 5 https://fbr… 2018… Chie… Home 2 67 Ivan … /en/player… 0.03 #> 6 https://fbr… 2018… Chie… Home 2 84 Fabri… /en/player… 0.02 #> 7 https://fbr… 2018… Juve… Away 1 3 Sami … /en/player… 0.20 #> 8 https://fbr… 2018… Juve… Away 1 5 Paulo… /en/player… 0.04 #> 9 https://fbr… 2018… Juve… Away 1 6 Sami … /en/player… 0.07 #> 10 https://fbr… 2018… Juve… Away 1 9 João … /en/player… 0.66 #> # ℹ 19,800 more rows #> # ℹ 14 more variables: PSxG , Outcome , Distance , #> # `Body Part` , Notes , Player_SCA_1 , Event_SCA_1 , #> # Player_SCA_2 , Event_SCA_2 , Competition_Name , #> # Gender , Country , Tier , Season_End_Year # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_summary.html","id":null,"dir":"Reference","previous_headings":"","what":"Load pre-saved FBref match summary data — load_fb_match_summary","title":"Load pre-saved FBref match summary data — load_fb_match_summary","text":"Loading version fb_match_summary. leagues available.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_summary.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Load pre-saved FBref match summary data — load_fb_match_summary","text":"","code":"load_fb_match_summary(country, gender, tier, season_end_year = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_summary.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Load pre-saved FBref match summary data — load_fb_match_summary","text":"country three character country code gender gender competition, either \"M\" \"F\" tier tier league, ie '1st' EPL '2nd' Championship season_end_year year(s) season concludes","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_summary.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Load pre-saved FBref match summary data — load_fb_match_summary","text":"returns dataframe","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_summary.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Load pre-saved FBref match summary data — load_fb_match_summary","text":"","code":"# \\donttest{ try({ load_fb_match_summary( country = \"ENG\", gender = \"M\", tier = \"1st\" ) load_fb_match_summary( country = c(\"ITA\", \"ESP\"), gender = \"M\", tier = \"1st\", season_end_year = 2019 ) }) #> → Data last updated 2024-05-07 18:14:21.5084159374237 UTC #> → Data last updated 2024-05-07 18:15:59.4407019615173 UTC #> # A tibble: 10,311 × 33 #> MatchURL League Match_Date Matchweek Home_Team Home_Formation Home_Score #> #> 1 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 2 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 3 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 4 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 5 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 6 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 7 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 8 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 9 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 10 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> # ℹ 10,301 more rows #> # ℹ 26 more variables: Home_xG , Home_Goals , #> # Home_Yellow_Cards , Home_Red_Cards , Away_Team , #> # Away_Formation , Away_Score , Away_xG , Away_Goals , #> # Away_Yellow_Cards , Away_Red_Cards , Game_URL , Team , #> # Home_Away , Event_Time , Is_Pens , Event_Half , #> # Event_Type , Event_Players , Score_Progression , … # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_comp_results.html","id":null,"dir":"Reference","previous_headings":"","what":"Load match competition results — load_match_comp_results","title":"Load match competition results — load_match_comp_results","text":"Returns game results competition(s), ie League cups international competitions FBref. comp_name comes https://github.com/JaseZiv/worldfootballR_data/tree/master/data/match_results_cups#readme","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_comp_results.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Load match competition results — load_match_comp_results","text":"","code":"load_match_comp_results(comp_name)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_comp_results.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Load match competition results — load_match_comp_results","text":"comp_name three character country code","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_comp_results.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Load match competition results — load_match_comp_results","text":"returns dataframe results competition name","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_comp_results.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Load match competition results — load_match_comp_results","text":"","code":"# \\donttest{ try({ df <- load_match_comp_results( comp_name = \"Coppa Italia\" ) # for multiple competitions: cups <- c(\"FIFA Women's World Cup\", \"FIFA World Cup\") df <- load_match_comp_results( comp_name = cups ) }) #> → Data last updated 2024-05-07 17:17:26.8136069774628 UTC #> → Data last updated 2023-08-28 02:48:12.7885611057281 UTC # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_results.html","id":null,"dir":"Reference","previous_headings":"","what":"Load match results — load_match_results","title":"Load match results — load_match_results","text":"Loading version get_match_results Returns game results given league season(s) FBref","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_results.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Load match results — load_match_results","text":"","code":"load_match_results(country, gender, season_end_year, tier)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_results.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Load match results — load_match_results","text":"country three character country code gender gender competition, either \"M\" \"F\" season_end_year year(s) season concludes tier tier league, ie '1st' EPL '2nd' Championship ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_results.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Load match results — load_match_results","text":"returns dataframe results competition, season gender","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_results.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Load match results — load_match_results","text":"","code":"# \\donttest{ try({ df <- load_match_results( country = c(\"ITA\"), gender = \"M\", season_end_year = 2021, tier = \"1st\" ) # for results from English 1st div for men and women: df <- load_match_results( country = \"ENG\", gender = c(\"M\", \"F\"), season_end_year = 2021, tier = \"1st\" ) }) #> → Data last updated 2024-05-07 17:31:59.4666569232941 UTC #> → Data last updated 2024-05-07 17:29:16.3871209621429 UTC # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_understat_league_shots.html","id":null,"dir":"Reference","previous_headings":"","what":"Load Understat league shot locations — load_understat_league_shots","title":"Load Understat league shot locations — load_understat_league_shots","text":"Loading version understat_league_season_shots, seasons Returns shooting locations matches played selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_understat_league_shots.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Load Understat league shot locations — load_understat_league_shots","text":"","code":"load_understat_league_shots(league)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_understat_league_shots.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Load Understat league shot locations — load_understat_league_shots","text":"league available leagues Understat outlined leagues currently available Understat : \"EPL\", \"La liga\", \"Bundesliga\", \"Serie \", \"Ligue 1\", \"RFPL\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_understat_league_shots.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Load Understat league shot locations — load_understat_league_shots","text":"returns dataframe shooting locations selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_understat_league_shots.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Load Understat league shot locations — load_understat_league_shots","text":"","code":"if (FALSE) { try({ df <- load_understat_league_shots(league = \"Serie A\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_dictionary_mapping.html","id":null,"dir":"Reference","previous_headings":"","what":"Player Mapping Dictionary — player_dictionary_mapping","title":"Player Mapping Dictionary — player_dictionary_mapping","text":"Returns data frame players top 5 Euro leagues, player URL respective Transfermarkt URL. Currently players top 5 leagues since 2017-2018 season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_dictionary_mapping.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Player Mapping Dictionary — player_dictionary_mapping","text":"","code":"player_dictionary_mapping()"},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_dictionary_mapping.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Player Mapping Dictionary — player_dictionary_mapping","text":"returns dataframe FBref players respective Transfermarkt URL","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_dictionary_mapping.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Player Mapping Dictionary — player_dictionary_mapping","text":"","code":"# \\donttest{ try({ mapped_players <- player_dictionary_mapping() }) # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_transfer_history.html","id":null,"dir":"Reference","previous_headings":"","what":"Get player transfer history — player_transfer_history","title":"Get player transfer history — player_transfer_history","text":"Returns data frame player(s) transfer history transfermarkt.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_transfer_history.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get player transfer history — player_transfer_history","text":"","code":"player_transfer_history(player_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_transfer_history.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get player transfer history — player_transfer_history","text":"player_urls player url(s) transfermarkt","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_transfer_history.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get player transfer history — player_transfer_history","text":"returns dataframe player transfers","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_expiring_contracts.html","id":null,"dir":"Reference","previous_headings":"","what":"Get expiring contracts — tm_expiring_contracts","title":"Get expiring contracts — tm_expiring_contracts","text":"Returns data frame players expiring contracts selected league time period","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_expiring_contracts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get expiring contracts — tm_expiring_contracts","text":"","code":"tm_expiring_contracts(country_name, contract_end_year, league_url = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_expiring_contracts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get expiring contracts — tm_expiring_contracts","text":"country_name country league's players contract_end_year year contract due expire league_url league url transfermarkt.com. used country_name available main function","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_expiring_contracts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get expiring contracts — tm_expiring_contracts","text":"returns dataframe expiring contracts selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_get_player_absence.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Player Absences — tm_get_player_absence","title":"Get Player Absences — tm_get_player_absence","text":"Returns data frame player's absences suspension transfermarkt.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_get_player_absence.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Player Absences — tm_get_player_absence","text":"","code":"tm_get_player_absence(player_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_get_player_absence.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Player Absences — tm_get_player_absence","text":"player_urls player url(s) transfermarkt","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_get_player_absence.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Player Absences — tm_get_player_absence","text":"returns dataframe","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_get_player_absence.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get Player Absences — tm_get_player_absence","text":"","code":"if (FALSE) { try({ player_urls <- c(\"https://www.transfermarkt.com/cristian-romero/profil/spieler/355915\", \"https://www.transfermarkt.com/micky-van-de-ven/profil/spieler/557459\") df <- tm_get_player_absence(player_urls) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_debutants.html","id":null,"dir":"Reference","previous_headings":"","what":"Get league debutants — tm_league_debutants","title":"Get league debutants — tm_league_debutants","text":"Returns data frame debutants selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_debutants.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get league debutants — tm_league_debutants","text":"","code":"tm_league_debutants( country_name, league_url = NA, debut_type, debut_start_year, debut_end_year )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_debutants.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get league debutants — tm_league_debutants","text":"country_name country league's players league_url league url transfermarkt.com. used country_name available main function debut_type whether want 'league' debut 'pro' debut debut_start_year season start year beginning period want results debut_end_year season start year end period want results ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_debutants.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get league debutants — tm_league_debutants","text":"returns dataframe players debuted selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_injuries.html","id":null,"dir":"Reference","previous_headings":"","what":"Get league injuries — tm_league_injuries","title":"Get league injuries — tm_league_injuries","text":"Returns data frame currently injured players players selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_injuries.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get league injuries — tm_league_injuries","text":"","code":"tm_league_injuries(country_name, league_url = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_injuries.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get league injuries — tm_league_injuries","text":"country_name country league's players league_url league url transfermarkt.com. used country_name available main function","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_injuries.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get league injuries — tm_league_injuries","text":"returns dataframe injured players selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_team_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get transfermarkt Team URLs — tm_league_team_urls","title":"Get transfermarkt Team URLs — tm_league_team_urls","text":"Returns URLs teams given league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_team_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get transfermarkt Team URLs — tm_league_team_urls","text":"","code":"tm_league_team_urls(country_name, start_year, league_url = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_team_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get transfermarkt Team URLs — tm_league_team_urls","text":"country_name country league's players start_year start year season (2020 20/21 season) league_url league url transfermarkt.com. used country_name available main function","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_team_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get transfermarkt Team URLs — tm_league_team_urls","text":"returns character vector transfermarkt team URLs selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_matchday_table.html","id":null,"dir":"Reference","previous_headings":"","what":"Get weekly league table — tm_matchday_table","title":"Get weekly league table — tm_matchday_table","text":"Returns league table chosen matchday transfermarkt","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_matchday_table.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get weekly league table — tm_matchday_table","text":"","code":"tm_matchday_table(country_name, start_year, matchday, league_url = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_matchday_table.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get weekly league table — tm_matchday_table","text":"country_name country league's players start_year start year season (2020 20/21 season) matchday matchweek number. Can vector matchdays league_url league url transfermarkt.com. used country_name available main function","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_matchday_table.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get weekly league table — tm_matchday_table","text":"returns dataframe table selected league matchday","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_matchday_table.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get weekly league table — tm_matchday_table","text":"","code":"if (FALSE) { try({ tm_matchday_table(country_name=\"England\", start_year=\"2020\", matchday=1) tm_matchday_table(country_name=\"England\", start_year=\"2020\", matchday=c(1:5)) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_bio.html","id":null,"dir":"Reference","previous_headings":"","what":"Get transfermarkt player bios — tm_player_bio","title":"Get transfermarkt player bios — tm_player_bio","text":"Returns data frame player bios transfermarkt.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_bio.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get transfermarkt player bios — tm_player_bio","text":"","code":"tm_player_bio(player_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_bio.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get transfermarkt player bios — tm_player_bio","text":"player_urls player url(s) transfermarkt","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_bio.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get transfermarkt player bios — tm_player_bio","text":"returns dataframe player bios","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_bio.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get transfermarkt player bios — tm_player_bio","text":"","code":"if (FALSE) { try({ player_url <- \"https://www.transfermarkt.com/eden-hazard/profil/spieler/50202\" tm_player_bio(player_url) tm_player_bio(player_urls = c(\"https://www.transfermarkt.com/eden-hazard/profil/spieler/50202\", \"https://www.transfermarkt.com/sergio-ramos/profil/spieler/25557\", \"https://www.transfermarkt.com/ivo-grbic/profil/spieler/226073\")) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_injury_history.html","id":null,"dir":"Reference","previous_headings":"","what":"Get player injury history — tm_player_injury_history","title":"Get player injury history — tm_player_injury_history","text":"Returns data frame player's injury history transfermarkt.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_injury_history.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get player injury history — tm_player_injury_history","text":"","code":"tm_player_injury_history(player_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_injury_history.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get player injury history — tm_player_injury_history","text":"player_urls player url(s) transfermarkt","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_injury_history.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get player injury history — tm_player_injury_history","text":"returns dataframe player injury history","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_market_values.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Transfermarkt player market values — tm_player_market_values","title":"Get Transfermarkt player market values — tm_player_market_values","text":"Returns data frame player valuations (Euros) transfermarkt.com Replaces deprecated function get_player_market_values","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_market_values.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Transfermarkt player market values — tm_player_market_values","text":"","code":"tm_player_market_values(country_name, start_year, league_url = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_market_values.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Transfermarkt player market values — tm_player_market_values","text":"country_name country league's players start_year start year season (2020 20/21 season) league_url league url transfermarkt.com. used country_name available main function","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_market_values.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Transfermarkt player market values — tm_player_market_values","text":"returns dataframe player valuations country/seasons","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_transfer_history.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Transfermarkt player transfer history — tm_player_transfer_history","title":"Get Transfermarkt player transfer history — tm_player_transfer_history","text":"Returns data frame player(s) transfer history transfermarkt.com Replaces deprecated function player_transfer_history","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_transfer_history.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Transfermarkt player transfer history — tm_player_transfer_history","text":"","code":"tm_player_transfer_history(player_urls, get_extra_info = TRUE)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_transfer_history.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Transfermarkt player transfer history — tm_player_transfer_history","text":"player_urls player url(s) transfermarkt get_extra_info allows users decide want scrape extra info (contract length, countries involved) ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_transfer_history.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Transfermarkt player transfer history — tm_player_transfer_history","text":"returns dataframe player transfers","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_squad_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get squad player stats — tm_squad_stats","title":"Get squad player stats — tm_squad_stats","text":"Returns basic stats players team season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_squad_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get squad player stats — tm_squad_stats","text":"","code":"tm_squad_stats(team_url)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_squad_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get squad player stats — tm_squad_stats","text":"team_url transfermarkt.com team url season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_squad_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get squad player stats — tm_squad_stats","text":"returns dataframe player stats team(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_staff_job_history.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Staff Member's job history — tm_staff_job_history","title":"Get Staff Member's job history — tm_staff_job_history","text":"Returns roles selected staff member(s) held performance data","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_staff_job_history.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Staff Member's job history — tm_staff_job_history","text":"","code":"tm_staff_job_history(staff_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_staff_job_history.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Staff Member's job history — tm_staff_job_history","text":"staff_urls transfermarkt.com staff(s) url (can use tm_league_staff_urls() get)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_staff_job_history.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Staff Member's job history — tm_staff_job_history","text":"returns data frame roles selected staff member(s) held performance data","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_player_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get transfermarkt Player URLs — tm_team_player_urls","title":"Get transfermarkt Player URLs — tm_team_player_urls","text":"Returns transfermarkt URLs players given team","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_player_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get transfermarkt Player URLs — tm_team_player_urls","text":"","code":"tm_team_player_urls(team_url)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_player_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get transfermarkt Player URLs — tm_team_player_urls","text":"team_url player's team URL (can tm_league_team_urls())","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_player_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get transfermarkt Player URLs — tm_team_player_urls","text":"returns character vector transfermarkt player URLs selected team","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_history.html","id":null,"dir":"Reference","previous_headings":"","what":"Get team staff history — tm_team_staff_history","title":"Get team staff history — tm_team_staff_history","text":"Returns people held selected role team's history","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_history.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get team staff history — tm_team_staff_history","text":"","code":"tm_team_staff_history(team_urls, staff_role = \"Manager\")"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_history.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get team staff history — tm_team_staff_history","text":"team_urls transfermarkt.com team(s) url season staff_role role description can found : https://github.com/JaseZiv/worldfootballR_data/blob/master/raw-data/transfermarkt_staff/tm_staff_types.csv","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_history.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get team staff history — tm_team_staff_history","text":"returns data frame selected staff roles team(s) history","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get transfermarkt Club Staff URLs — tm_team_staff_urls","title":"Get transfermarkt Club Staff URLs — tm_team_staff_urls","text":"Returns transfermarkt URLs staff selected roles given team","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get transfermarkt Club Staff URLs — tm_team_staff_urls","text":"","code":"tm_team_staff_urls(team_urls, staff_role)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get transfermarkt Club Staff URLs — tm_team_staff_urls","text":"team_urls staff member's team URL (can tm_league_team_urls()) staff_role role staff member URLs required options including: \"Manager\", \"Assistant Manager\", \"Goalkeeping Coach\", \"Fitness Coach\", \"Conditioning Coach\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get transfermarkt Club Staff URLs — tm_team_staff_urls","text":"returns character vector transfermarkt staff URLs selected team(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfer_balances.html","id":null,"dir":"Reference","previous_headings":"","what":"Team transfer balances — tm_team_transfer_balances","title":"Team transfer balances — tm_team_transfer_balances","text":"Returns team's transfer aggregated performances chosen league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfer_balances.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Team transfer balances — tm_team_transfer_balances","text":"","code":"tm_team_transfer_balances(country_name, start_year, league_url = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfer_balances.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Team transfer balances — tm_team_transfer_balances","text":"country_name country league's players start_year start year season (2020 20/21 season) league_url league url transfermarkt.com. used country_name available main function","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfer_balances.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Team transfer balances — tm_team_transfer_balances","text":"returns dataframe summarised financial transfer performance teams league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfers.html","id":null,"dir":"Reference","previous_headings":"","what":"Get team transfers — tm_team_transfers","title":"Get team transfers — tm_team_transfers","text":"Returns transfer arrivals departures given team season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfers.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get team transfers — tm_team_transfers","text":"","code":"tm_team_transfers(team_url, transfer_window = \"all\")"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfers.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get team transfers — tm_team_transfers","text":"team_url transfermarkt.com team url season transfer_window window transfer occurred - options include \"\" , \"summer\" \"winter\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfers.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get team transfers — tm_team_transfers","text":"returns dataframe team transfers","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_available_teams.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat available teams — understat_available_teams","title":"Get Understat available teams — understat_available_teams","text":"Returns available team names selected leagues","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_available_teams.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat available teams — understat_available_teams","text":"","code":"understat_available_teams(leagues)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_available_teams.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat available teams — understat_available_teams","text":"leagues available leagues Understat outlined #' leagues currently available Understat : \"EPL\", \"La liga\", \"Bundesliga\", \"Serie \", \"Ligue 1\", \"RFPL\" #' @return character vector teams names","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_available_teams.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get Understat available teams — understat_available_teams","text":"","code":"if (FALSE) { try({ understat_available_teams(leagues = c('EPL', 'La liga')) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_match_results.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat season match results — understat_league_match_results","title":"Get Understat season match results — understat_league_match_results","text":"Returns match results matches played selected league season Understat.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_match_results.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat season match results — understat_league_match_results","text":"","code":"understat_league_match_results(league, season_start_year)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_match_results.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat season match results — understat_league_match_results","text":"league available leagues Understat outlined season_start_year year season started leagues currently available Understat : \"EPL\", \"La liga\", \"Bundesliga\", \"Serie \", \"Ligue 1\", \"RFPL\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_match_results.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Understat season match results — understat_league_match_results","text":"returns dataframe match results selected league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_season_shots.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat league season shot locations — understat_league_season_shots","title":"Get Understat league season shot locations — understat_league_season_shots","text":"Returns shooting locations matches played selected league season Understat.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_season_shots.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat league season shot locations — understat_league_season_shots","text":"","code":"understat_league_season_shots(league, season_start_year)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_season_shots.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat league season shot locations — understat_league_season_shots","text":"league available leagues Understat outlined season_start_year year season started leagues currently available Understat : \"EPL\", \"La liga\", \"Bundesliga\", \"Serie \", \"Ligue 1\", \"RFPL\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_season_shots.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Understat league season shot locations — understat_league_season_shots","text":"returns dataframe shooting locations selected league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_match_shots.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat match shot locations — understat_match_shots","title":"Get Understat match shot locations — understat_match_shots","text":"Returns shooting locations selected match Understat.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_match_shots.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat match shot locations — understat_match_shots","text":"","code":"understat_match_shots(match_url)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_match_shots.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat match shot locations — understat_match_shots","text":"match_url URL match played","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_match_shots.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Understat match shot locations — understat_match_shots","text":"returns dataframe shooting locations selected team season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_player_shots.html","id":null,"dir":"Reference","previous_headings":"","what":"Get all Understat shot locations for a player — understat_player_shots","title":"Get all Understat shot locations for a player — understat_player_shots","text":"Returns shooting locations selected player matches played Understat.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_player_shots.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get all Understat shot locations for a player — understat_player_shots","text":"","code":"understat_player_shots(player_url)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_player_shots.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get all Understat shot locations for a player — understat_player_shots","text":"player_url URL selected player","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_player_shots.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get all Understat shot locations for a player — understat_player_shots","text":"returns dataframe shooting locations selected player","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_meta.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat team info — understat_team_meta","title":"Get Understat team info — understat_team_meta","text":"Retrieve Understat team metadata, including team URLs. Similar `understatr::get_team_meta`.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_meta.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat team info — understat_team_meta","text":"","code":"understat_team_meta(team_names)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_meta.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat team info — understat_team_meta","text":"team_names vector team names (can just 1)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_meta.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Understat team info — understat_team_meta","text":"data.frame","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_meta.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get Understat team info — understat_team_meta","text":"","code":"if (FALSE) { try({ understat_team_meta(team_name = c(\"Liverpool\", \"Manchester City\")) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_players_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat team player stats — understat_team_players_stats","title":"Get Understat team player stats — understat_team_players_stats","text":"Retrieve Understat team player stats.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_players_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat team player stats — understat_team_players_stats","text":"","code":"understat_team_players_stats(team_url)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_players_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat team player stats — understat_team_players_stats","text":"team_url URL team season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_players_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Understat team player stats — understat_team_players_stats","text":"dataframe player stats selected team season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_season_shots.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat team season shot locations — understat_team_season_shots","title":"Get Understat team season shot locations — understat_team_season_shots","text":"Returns shooting locations matches played selected team Understat.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_season_shots.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat team season shot locations — understat_team_season_shots","text":"","code":"understat_team_season_shots(team_url)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_season_shots.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat team season shot locations — understat_team_season_shots","text":"team_url URL team season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_season_shots.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Understat team season shot locations — understat_team_season_shots","text":"returns dataframe shooting locations selected team season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_stats_breakdown.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat team statistics breakdowns — understat_team_stats_breakdown","title":"Get Understat team statistics breakdowns — understat_team_stats_breakdown","text":"Returns data frame selected team(s) stats broken different ways. Breakdown groups include:","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_stats_breakdown.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat team statistics breakdowns — understat_team_stats_breakdown","text":"","code":"understat_team_stats_breakdown(team_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_stats_breakdown.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat team statistics breakdowns — understat_team_stats_breakdown","text":"team_urls url(s) teams question","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_stats_breakdown.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Understat team statistics breakdowns — understat_team_stats_breakdown","text":"returns dataframe stat groups values","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_stats_breakdown.html","id":"details","dir":"Reference","previous_headings":"","what":"Details","title":"Get Understat team statistics breakdowns — understat_team_stats_breakdown","text":"\"Situation\", \"Formation\", \"Game state\", \"Timing\", \"Shot zones\", \"Attack speed\", \"Result\"","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-development-version","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR (development version)","text":"fb_league_stats() returning opponent table. (0.6.5.0001) #355 tm_player_bio() returning values player_valuation, max_player_valuation max_player_valuation_date fields. Unfortunately, max_player_valuation max_player_valuation_date fields able scraped release (0.6.5.0002) #357 fb_league_stats() returning player table hidden page load. (0.6.5.0003) #351","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"breaking-changes-development-version","dir":"Changelog","previous_headings":"","what":"Breaking Changes","title":"worldfootballR (development version)","text":"addressing issue tm_player_injury_history() #375, previously names column club renamed club_missed_games_for better represent column contain games player missed games , previously column misunderstood playing injured (0.6.5.0004)","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-6-5","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.6.5","text":"fb_league_stats() failing playing_time. (0.6.4.0001) #314 fb_advanced_match_stats() throwing errors stat tables available matches (0.6.4.0002) #315 fb_player_match_logs() failing players played multiple teams/leagues season (0.6.4.0006) #327 fb_league_stats(team_or_player = \"player\") returning duplicate player hrefs (0.6.4.0008) #331 fb_league_stats(team_or_player = \"player\") returning wrong season’s data Australian league (0.6.4.0009) #333 tm_player_market_values() returing player name valuation separate rows player_name column [#338] (https://github.com/JaseZiv/worldfootballR/issues/338) also returning NAs player_age column (0.6.4.0010) #336 fb_match_results() returns NA goals due inconsistent iconv() behavior different systems (0.6.4.0011) #326 tm_team_player_urls() fixed change server-side loading (0.6.4.0013) #342 fb_teams_urls() fixed remove lower division teams returned result playoff promotion games (0.6.4.0014) #344 tm_player_bio() column name data structure change player date birth (0.6.4.0014)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-6-5","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.6.5","text":"fb_player_season_stats() now includes ability get player’s national team stats [https://github.com/JaseZiv/worldfootballR/pull/310/files] (0.6.4.0002) fb_league_stats() now correctly scrapes non domestic competitions [https://github.com/JaseZiv/worldfootballR/pull/325] (0.6.4.0003) fb_team_match_stats() understat_available_teams() (0.6.4.0004) fb_match_shooting(), fb_advanced_match_stats(), fb_league_stats(team_or_player = \"player\") gain Player_Href column (0.6.4.0005) load_fb_advanced_stats() load_fb_match_summary() added (0.6.4.0007) tm_get_player_absence() now available get list absences suspension players transfermarkt","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"breaking-changes-0-6-4","dir":"Changelog","previous_headings":"","what":"Breaking changes","title":"worldfootballR 0.6.4","text":"fotmob functions removed due update fotmob terms service prohibiting “use automatic services (robots, spiders, indexing etc.) well methods systematic regular use.”","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-6-4","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.6.4","text":"fotmob_get_match_details() failing due change teamColors JSON element (0.6.3.0001) #271 fotmob_get_league_ids() failing due addition localizedName JSON element (0.6.3.0003) #275 fotmob_get_match_details() failing () due change teamColors JSON element (0.6.3.0003) fotmob_get_match_players() failing due addition nested JSON elements stat element (0.6.3.0004) #277 fb_season_team_stats() failing get correct home/away league table unusual layout league pages (0.6.3.0006) #282 fotmob_get_match_players() failing due mismatch list data.frame types internal stats column unnesting (0.6.3.0007) #291 fotmob_get_match_stats() failing due Fotmob additional nesting (0.6.3.0008) #295 fotmob_get_match_players() returning nested list elements stat columns (0.6.3.0010) #298 tm_player_injury_history() returning empty value club value player didn’t miss days injury #293 (0.6.3.0011) tm_team_player_urls() returning wrong player URLs due html changes (0.6.3.0012) #305 tm_player_injury_history() returning empty value club value player didn’t miss days injury #293 (0.6.3.0012) fotmob_get_match_players() returning repeated stats failing NULL case (0.6.3.0011) #298","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-6-4","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.6.4","text":"fotmob_get_match_momentum() added (0.6.2.0002) fotmob_get_league_tables() returns form table (0.6.3.0005) #279 fotmob_get_match_stats(): suppress error messages seasons without data (0.6.3.0009) #297 tm_player_injury_history() removes player number player_name variable #268 (0.6.3.0012)","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"breaking-changes-0-6-3","dir":"Changelog","previous_headings":"","what":"Breaking Changes","title":"worldfootballR 0.6.3","text":"tm_player_transfer_history() now contains additional column returned dataframe (transfer_type). column differentiate regular transfers, free transfers, loans paid loans transfers due players returning loan. fb_player_scouting_report() now accepts additional argument called league_comp_name allows user return reports specific leagues/comps. passing anything results reports returned","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-6-3","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.6.3","text":"fotmob_get_match_players() failing upcoming matches due missing stats column (0.6.2.1000) #226 tm_team_transfer_balances() failing empty team boxes collected (0.6.2.1000) #228 fotmob_get_league_matches() failing due extra purrr::map_dfr longer needed (0.6.2.2000) #229 understat functions failing due new cookie requirement (0.6.2.5000) #239 fb_player_scouting_report() failing due HTML changes FBRef (0.6.2.7000) #242 fb_league_stats(team_or_player = \"player\", stat_type = \"standard\", ...) failing since \"standard\" translated \"stats\" (0.6.2.9100) #252 fotmob_get_match_details() returned 0 rows instead 1 shots available (0.6.2.9300) fotmob_get_league_matches() changed use matches.allMatches JSON element (0.6.2.9400) #258 fotmob functions updated use httr::GET() appropriate post-processing JSON instead jsonlite::fromJSON() raw URLs (0.6.3.0000) #262","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-6-3","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.6.3","text":"check_league_name() removes repeated code. checks name leagues correct (0.6.2.3000) #232 LEAGUES replaces statement list (0.6.2.3000) #232 tm_player_transfer_history() added information, added possibility skip extraction info requires additional page load time. (0.6.2.4000) #235 fb_league_stats() added. Gets season stats teams / players selected league FBref single scrape. (0.6.2.6000) #243 fb_league_stats() uses rvest::htm_table() team_or_player = \"table\" (faster reliable), uses chromote team_or_player = \"player\". (0.6.2.7100) Use quiet = FALSE purrr::possibly() calls internally. Improve messaging unexpected outcomes fotmob_get_matches_by_date() fotmob_get_match_info(). (0.6.2.8000) #244 load_fb_match_shooting() added. (0.6.2.9000) #249 fotmob_get_league_matches() fotmob_get_league_tables gain season parameter. (0.6.2.9200) #256 fotmob_get_season_stats() internals improved (0.6.3.0000)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-062","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.6.2","title":"worldfootballR 0.6.2","text":"CRAN release: 2022-11-26","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-6-2","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.6.2","text":"tm_player_market_values() returning NAs squad column tm_ functions missing country comp_name columns due change html transfermarkt fb_match_shooting() throwing errors duplicate column names switch StatsBomb Opta FBRef fb_team_goal_logs fb_player_goal_logs gave errors columns present fotmob_get_season_stats returning lexical error #201 fotmob_get_season_stats internals changed handle new data format tm_staff_job_history() code changed due HTML changes transfermarkt.com FBRef functions calling internal function .get_match_report_page() returning ‘Major League Soccer’ away team #216 fb_match_shooting() returning wrong home away designation games team names inconsistent page #219 fb_match_summary(), fb_match_shooting() returning returning Away Team name international matches fb_match_lineups() returning ‘Major League Soccer’ away team international matches #221","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-6-2","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.6.2","text":"load_fb_big5_advanced_season_stats() now loads FBRef data provided Stats Perform (Opta) via Github releases load_match_results() now loads FBRef data provided Stats Perform (Opta) via Github releases load_match_comp_results() now loads FBRef data provided Stats Perform (Opta) via Github releases load_understat_league_shots() now loads data GitHub releases","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-061","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.6.1","title":"worldfootballR 0.6.1","text":"CRAN release: 2022-10-14","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-6-1","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.6.1","text":"fb_team_goal_logs - returns team’s season goals goals logs fb_player_goal_logs - returns player’s career goal assist logs","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-6-1","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.6.1","text":"Fotmob functions now pass user agent headers hood","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-6-1","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.6.1","text":"tm_squad_stats() throwing differing number rows error #187 .get_match_report_page() internal function used number fb_ functions throwing errors cup tie legs #174 .clean_table_names() change internal function include ’*_performance*’ column names fb_team_match_log_stats() address duplicated column names stat_type = 'keeper' #184","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"breaking-changes-0-6-1","dir":"Changelog","previous_headings":"","what":"Breaking Changes","title":"worldfootballR 0.6.1","text":"column names output fb_team_match_log_stats() now include *_Performance* end name. See #184 details","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-060","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.6.0","title":"worldfootballR 0.6.0","text":"CRAN release: 2022-08-24","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-and-deprecated-old-ones-0-6-0","dir":"Changelog","previous_headings":"","what":"New functions (and deprecated old ones)","title":"worldfootballR 0.6.0","text":"fb_advanced_match_stats() replaces get_advanced_match_stats fb_match_lineups() replaces get_match_lineups fb_match_results() replaces get_match_results fb_match_report() replaces get_match_report fb_match_shooting() replaces get_match_shooting fb_match_summary() replaces get_match_summary fb_match_urls() replaces get_match_urls fb_season_team_stats() replaces get_season_team_stats fb_team_match_results() replaces get_team_match_results tm_player_market_values() replaces get_player_market_values tm_player_transfer_history replaces player_transfer_history Improve fotmob tests checking column names instead just number columns. load_fotmob_matches_by_date(), load_fotmob_match_details(): Functions load pre stored match ids match details. fotmob_get_match_details(), fotmob_get_matches_by_date(), fotmob_get_match_players(): Nested list columns unnested default. lone exception shotmap output fotmob_get_match_players() fotmob_get_match_info() added. (#166) fb_squad_wages() designed get player wage estimates FBref via Capology","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-6-0","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.6.0","text":"load_fb_big5_advanced_season_stats() returning zero row df season selected. Now rectified fotmob_get_season_stats(): Fixed bug .fotmob_get_single_season_stats() season ids dashes, e.g. \"17709-Apertura\" Liga MX 2022/2023 error. fb_big5_advanced_season_stats() throwing error team stats. Also updated one page load, hopefully minimising risk blocked excessive page loads Elements changed FBref somewhere time v 0.5.11 released! fb_advanced_match_stats() fb_match_summary() fb_big5_advanced_season_stats() throwing error Matches played column now names MP #158 fotmob_get_league_tables(): Fix unnesting accommodate additional nesting identical names different levels. bug affected fotmob_get_season_stats(), calls fotmob_get_league_tables() #155 fotmob_get_match_players() returns stats characters #150 fotmob_get_season_stats(): Address logic extracting season ids season stats pages failing due blank stats pages offseason league. get_match_lineups() wasn’t returning away team name #147 understat_league_season_shots() error passing new season_start_year value seasons haven’t yet started match fixtures available Understat #148","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-6-0","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.6.0","text":"FBref functions now pass user agent headers hood fotmob_get_match_team_stats() added. following functions now longer return league/season metadata, including columns League, Gender, Country, Season: fb_match_summary() fb_advanced_match_stats() fb_match_report()","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-and-deprecated-old-ones-0-6-0-1","dir":"Changelog","previous_headings":"","what":"New functions (and deprecated old ones)","title":"worldfootballR 0.6.0","text":"fb_advanced_match_stats() replaces get_advanced_match_stats fb_match_lineups() replaces get_match_lineups fb_match_results() replaces get_match_results fb_match_report() replaces get_match_report fb_match_shooting() replaces get_match_shooting fb_match_summary() replaces get_match_summary fb_match_urls() replaces get_match_urls fb_season_team_stats() replaces get_season_team_stats fb_team_match_results() replaces get_team_match_results tm_player_market_values() replaces get_player_market_values tm_player_transfer_history replaces player_transfer_history Improve fotmob tests checking column names instead just number columns. load_fotmob_matches_by_date(), load_fotmob_match_details(): Functions load pre stored match ids match details. fotmob_get_match_details(), fotmob_get_matches_by_date(), fotmob_get_match_players(): Nested list columns unnested default. lone exception shotmap output fotmob_get_match_players()","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-057","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.5.7","title":"worldfootballR 0.5.7","text":"CRAN release: 2022-07-11","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-5-7","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.5.7","text":"load_understat_league_shots() Functions load pre stored shooting locations matches played since 2014/15 season five leagues available Understat site. load_match_comp_results() Functions load pre stored match results domestic international cups/competitions","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-5-7","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.5.7","text":"fotmob_get_season_stats() longer errors stats queried league offseason #136 player_transfer_history() longer throwing errors players without club #137 Increase sleep times tests FBref functions","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-056","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.5.6","title":"worldfootballR 0.5.6","text":"CRAN release: 2022-06-15","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-5-6","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.5.6","text":"respect FBref’s rate limiting rules, functions now updated default pause three seconds page loads, two seconds originally requested.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-5-6","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.5.6","text":"get_match_report() get_advanced_match_stats() - now reporting match date away team name . Additionally, Home_Goals Away_Goals text strings now clean strings (tabs line breaks removed) #128 fotmob_get_league_ids() - now uses new endpoint league ids (data script element longer data). function internally used fotmob_get_league_matches(), fotmob_get_league_tables(), fotmob_get_season_stats(), broken cached=FALSE specified. player_transfer_history() longer throwing errors retired players also addressed changed HTML transfermarkt returning data #127","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-5-3","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.5.3","text":"Now starting load functions: load_match_results() - function load pre stored data similar get_match_results() load_fb_big5_advanced_season_stats() - function load pre stored data similar fb_big5_advanced_season_stats()","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-5-3","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.5.3","text":"tm_player_bio() addresses data points don’t exist players returns NAs understat_team_stats_breakdown() now returns correct season_start_year value #119 tests vignettes fotmob stat functions changed lowercase second word stat_name #118 player_transfer_history() updated html changes Transfermarkt caused function return zero row data frame #120 fotmob_get_league_matches() fotmob_get_league_tables() changes names JSON response (fixtures -> matches, tableData -> table) #121, #122 Various fotmob functions affected addition api/ URL New names player stats outdated docs fotmob_get_season_stats()","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-5-2","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.5.2","text":"fotmob_get_league_matches fotmob_get_league_tables now check 2 places league endpoint since changes occasionally. fotmob_get_match_players gets 3 additional columns: match_id, team_id, team_name. #105 fotmob_get_season_stats gains stat_league_name can now used leagues since seasons programmatically scraped tm_player_bio() now also returns player’s maximum valuation (max_player_valuation) date max valuation recorded (max_player_valuation_date). Note: now additional two columns output Additional processing logic added fotmob_get_league_tables works properly international tournaments. stat_type argument fotmob_get_seasons_stats renamed stat_name reflect different set values takes. Valid values now equivalent options can found stats page browser, e.g. Liverpool player stats page. FBref functions now contain user defined pause (time_pause) page load abide new rate limiting rules. See . Default set 2 seconds Internal function.get_each_season_results() exported now","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-5-2","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.5.2","text":"tm_player_bio returning player number instead name also NAs valuation #109 fotmob_get_match_players failed non-domestic leagues team element id exist table element. Fix robust element assigning team ids players. fotmob_get_seasons_stats failed non-domestic leagues, even setting cached=TRUE. Fix add logic latest season given league found “See ” links generic stats page.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-0511000","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.5.1.1000","title":"worldfootballR 0.5.1.1000","text":"Set minimum R version 4.0.0","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-051","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.5.1","title":"worldfootballR 0.5.1","text":"CRAN release: 2022-03-25 Modifications based CRAN feedback updates CRAN submission","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-050","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.5.0","title":"worldfootballR 0.5.0","text":"CRAN release: 2022-03-21","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-5-0","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.5.0","text":"fb_team_match_log_stats() - get match logs selected stat types team(s) matches played season fotmob_get_league_ids() - get Fotmob’s league ids, can specified alternative country league_name fotmob_get_league_matches() fotmob_get_league_tables() fotmob_get_season_stats() - get stats one leagues, team player level fotmob_get_league_matches() - select matches one leagues fotmob_get_league_tables() - get standings one leagues fotmob_get_matches_by_date() - select matches occurring specific day(s) fotmob_get_match_details() - get shooting locations individual match fotmob_get_match_players() - extract player statistics matches","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-5-0","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.5.0","text":".clean_table_names() (internal function) now able clean tab names fb_team_match_log_stats() Added documentation fotmob_get_match_players fotmob_get_match_players()","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-5-0","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.5.0","text":"fotmob_get_league_matches fotmob_get_league_tables updated address new Fotmob league endpoint. fotmob_get_match_players() longer returning identical home away team IDs #93 Fixed multiple rows returned single player stats column returned fotmob_get_match_players() fotmob_get_league_matches fotmob_get_league_tables updated address new Fotmob league endpoint.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-0410","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.4.10","title":"worldfootballR 0.4.10","text":"CRAN release: 2022-02-08","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-4-10","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.4.10","text":"tm_squad_stats() now returns team, league information also player URLs","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-4-10","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.4.10","text":"fb_player_scouting_report() returning incorrect position comparisons cases #85 get_player_market_values() returning team URLs erroneous URLs initial scraped list, columns returning values due HTML changes transfermarkt tm_league_team_urls() returning team URLs erroneous URLs initial scraped list get_match_results() returning additional (incorrect) transfermarkt player URLs #82","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-049","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.4.9","title":"worldfootballR 0.4.9","text":"CRAN release: 2022-01-16","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-4-9","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.4.9","text":"tm_league_debutants() able extract league debutants tm_expiring_contracts() able extract expiring contracts selected league tm_league_injuries() get current injuries selected league tm_player_injury_history() get full player injury history transfermarkt selected player(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-4-9","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.4.9","text":"fb_player_scouting_report() issue player listed three positions #80 get_match_lineups() now also returns match player URLs #78 get_match_results() now includes match URLs #78 get_match_report() now includes yellow red card counts #2","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-4-9","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.4.9","text":"tm_team_player_urls() returning additional (incorrect) transfermarkt player URLs","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-4-7","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.4.7","text":"tm_team_staff_urls() allows users extract URLs selected team staff members based staff role (ie ‘Manager’, ‘Assistant Manager’, etc) tm_team_staff_history() allows users get people held selected role team’s history summary statistics tm_staff_job_history() allows users get roles selected staff member(s) held performance data role (wins, draws, losses, etc)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-4-7","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.4.7","text":"Fixed rare case duplicate socials tm_player_bio() coercing values lists","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-4-6","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.4.6","text":"fb_team_player_stats() allows users get stats team(s) player season stats","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-4-6","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.4.6","text":"get_season_team_stats() now returns additional column MLS called Conference stat_type = \"league_table\" stat_type = \"league_table_home_away\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-045","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.4.5","title":"worldfootballR 0.4.5","text":"CRAN release: 2021-11-25","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-4-5","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.4.5","text":"Remove errant comment examples fb_player_scouting_report()","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-4-4","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.4.4","text":"Wrap Data sources single quotes DESCRIPTION file (title /description) Fixed Warning: Unexecutable code man/fb_player_scouting_report.Rd: pos_versus = \"primary\") Wrote .pkg_message() allow users easily suppress messages outputted console setting options(mypackage.verbose = FALSE) Removed unnecessary examples Results using understat_ functions now return correct full season details (ie season_start_year = 2019, resulting season column df ‘2019/2020’)","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-4-3","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.4.3","text":"understat_team_players_stats() gets season-long player stats selected teams understat_team_stats_breakdown() gets team season shooting data broken game states understat_team_meta() created allow extraction team season URLs","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-4-2","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.4.2","text":"Fixed various transfermarkt functions broken due HTML changes site","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"breaking-changes-0-4-1","dir":"Changelog","previous_headings":"","what":"Breaking Changes","title":"worldfootballR 0.4.1","text":"Remove FotMob functions","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-4-0","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.4.0","text":"fotmob_get_matches_by_date() fotmob_get_match_details() added #61","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements--breaking-changes-0-3-6","dir":"Changelog","previous_headings":"","what":"Improvements / Breaking Changes","title":"worldfootballR 0.3.6","text":"fb_player_scouting_report() now contains additional column output (scouting_period) allows user filter period need scouting report ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-3-6","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.3.6","text":"Fixed encoding issue Windows OS player names player_dictionary_mapping() #56 Fixed issue get_match_summary() get_match_lineups() returning results games canceled/postponed #55 Fixed tm_player_bio() throwing errors due change html Transfermarkt #57 Fixed tm_player_bio() throwing errors due another change html Transfermarkt","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-3-5","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.3.5","text":"tm_team_transfers() now includes transfer window transfer occurred #53","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-3-4","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.3.4","text":"tm_team_transfers() now also includes player URLs Transfermarkt allow joining player market values #51","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-3-4","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.3.4","text":"get_player_market_values() now returning correct current (current_club) previous (previous_club) clubs players fb_player_season_stats() returning results players even though stats available FBref #52 tm_player_bio() now returns player market valuations #50","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-3-3","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.3.3","text":"player_dictionary_mapping() returns data frame players (names FBref URLs) played top 5 Euro leagues respective Transfermarkt URL","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-3-3","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.3.3","text":"Transfermarkt functions tm_team_transfers() player_transfer_history() returning transfer prices now differentiate unknown (returning NA) free transfers (returning 0) #45 * fb_big5_advanced_season_stats() now returns player URLs FBref","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-3-3","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.3.3","text":"get_match_summary() longer throws errors one team (home away) didn’t recorded event #46 fb_player_season_stats() handles print statement stat types present players #33","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"breaking-changes-0-3-2","dir":"Changelog","previous_headings":"","what":"Breaking Changes","title":"worldfootballR 0.3.2","text":"Team data frame column returned get_match_shooting() longer exists, Squad elevated ’s place instead.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-3-2","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.3.2","text":"get_player_market_values() returning errors seasons prior current season #41 tm_team_transfers() handles missing values teams/leagues get_match_shooting() handles extra time periods fb_player_scouting_report() now returns results Goalkeepers also #42 get_match_shooting() now handles one team (home away) record shots #43","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-3-1","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.3.1","text":"following functions now return results international matches fro FBref: get_match_urls() get_match_results() get_match_report() get_match_summary() get_match_lineups() get_match_shooting() get_advanced_match_stats() following transfermarkt function improved: tm_team_transfers() now includes column season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-3-1","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.3.1","text":"player_transfer_history() returns results even player hasn’t got club go #37 tm_player_bio() returning error player valuations available transfermarkt.com get_match_shooting() returning duplicated home shots data including away shots get_match_summary() returning Event_Players special characters used","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-3-0","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.3.0","text":"Functions extract understat.com data now available: * Shots locations data: * understat_league_season_shots() get shot location data matches league season * understat_team_season_shots() get shot locations select team * understat_match_shots() get shot locations selected match * understat_player_shots() get available shot locations games played selected player * understat_league_match_results() get results match data matches played season New transfermarkt.com functions: * tm_player_bio() get player bios transfermarkt * tm_team_transfers() get arrival departures team season * tm_squad_stats() get basic squad stats teams season * Helper functions: * tm_league_team_urls() get teams URLs league season * tm_team_player_urls() get player URLs given team","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-3-0","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.3.0","text":"get_player_market_values() transfermarkt now includes player heights, preferred foot, joined club contract expires player_transfer_history() now includes remaining contract expiry data remaining contract length (days) #34 get_match_lineups() now identifies diamond formations Progress bars now included long running functions!","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"breaking-changes-0-2-9","dir":"Changelog","previous_headings":"","what":"Breaking Changes","title":"worldfootballR 0.2.9","text":"Fbref table names changed slightly, cleaned include “__” “+/-” replaced “Plus_Minus” Column names event_time, event_type, event_players score_progression changed get_match_summary(), additional columns added","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-2-9","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.2.9","text":"fb_player_season_stats() now able accept multiple player_url values Is_Pens indicate whether event penalty shootout Event_Half indicate half event occurred (1, 2, 3, 4, 5), 3 & 4 extra time 5 penalty shootout Penalty_Number penalty shootouts, penalty taking order","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-2-9","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.2.9","text":"Fix issue #29 get_match_results() returning data seasons 2014-15 Fix issue #30 functions reading seasons data worldfootballR_data Fix issue #31 get_advanced_match_stats(), get_match_report() get_match_summary() returning results lower tier 1 leagues Fix issue #32 get_match_summary() event times causing issues extra time match half (ie 45+3 opposed 46th minute) Fix issue #33 fb_player_season_stats() players played game previously causing errors","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-2-8","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.2.8","text":"fb_player_match_logs() get player match logs season stat type (issue #26)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-2-8","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.2.8","text":"fb_player_scouting_report() now returns players full scouting report peers Men’s Big 5 Leagues European Competition last 365 days (issue 27) Removed country abbreviation Squad column data frame returned using fb_player_season_stats()","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-2-7","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.2.7","text":"get_match_shooting() get shot shot creation specific details (issue #3) get_team_match_results() get match results given team teams season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-2-7","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.2.7","text":"get_match_lineups() now returns additional summary player performance data (shots, goals, cards, etc) original lineups output","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-2-7","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.2.7","text":"Fixed issue get_season_player_stats() returning results players played domestic comps (cups, internationals, etc) (issue #22) Fixed issue fb_big5_advanced_season_stats() returning results ‘playing_time’ stat_type (issue #23)","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-2-6","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.2.6","text":"tm_team_transfer_balances() get team total transfer income expenditure data tm_matchday_table() get league table specified matchday(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-2-6","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.2.6","text":"Various transfermarkt functions refactored consistent column names","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-2-6","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.2.6","text":"Fix duplicating league URLs fb_league_urls() result including “Big 5” competition issue #19 Fix duplicating league URLs various season-level functions result including “Big 5” competition issue #20 Fix duplicated results functions","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-2-5","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.2.5","text":"Added fb_big5_advanced_season_stats() get fbref season stats players teams stats big five Euro leagues","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-2-4","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.2.4","text":"fb_league_urls() get fbref league URLs given country, gender, season, tier fb_teams_urls() get fbref team URLs given league_url fb_player_urls() get fbref player URLs given team_url Added function retrieve player’s scouting report fb_player_scouting_report() Added function get season player stats selected player stay_type fb_player_season_stats()","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-2-4","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.2.4","text":"Additional leagues cups now available following functions; get_match_urls(), get_match_results(), get_season_team_stats()","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-023","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.2.3","title":"worldfootballR 0.2.3","text":"Added league_url argument get_player_market_values() allow extraction non-standard (leagues stored worldfootballR_data) leagues","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-022","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.2.2","title":"worldfootballR 0.2.2","text":"Added player nationalities positions output get_player_market_values() data output","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"general-changes-0-2-1","dir":"Changelog","previous_headings":"","what":"General Changes","title":"worldfootballR 0.2.1","text":"Removed internal functions longer necessary (data stored JaseZiv/worldfootballR_data instead) Usage instructions now vignettes opposed README","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-2-1","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.2.1","text":"Fixed duplicate column name issue keeper stats #13","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-020","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.2.0","title":"worldfootballR 0.2.0","text":"Added get_player_market_values get player valuations transfermarkt.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-010","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.1.0","title":"worldfootballR 0.1.0","text":"Bug fixes #8 Package Logo Tests written codecov installed","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-001","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.0.1","title":"worldfootballR 0.0.1","text":"performance improvements, including limiting page reads match report data included output error handling","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-0009000","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.0.0.9000","title":"worldfootballR 0.0.0.9000","text":"First commit package Added function get match results given tier-1 league season get_match_results() Added function extract match URLs given tier-1 league season get_match_urls() Added function get team season statistics get_season_team_stats() Added function get additional metadata matches get_match_report() Added function get match lineups selected match urls get_match_lineups() Added function get advanced match statistics players /teams get_advanced_match_statistics() Added function get match events summary get_match_summary()","code":""}] +[{"path":"https://jaseziv.github.io/worldfootballR/CONTRIBUTING.html","id":null,"dir":"","previous_headings":"","what":"Contributing to worldfootballR","title":"Contributing to worldfootballR","text":"outlines propose change worldfootballR. detailed info contributing , tidyverse packages, please see development contributing guide.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/CONTRIBUTING.html","id":"fixing-typos","dir":"","previous_headings":"","what":"Fixing typos","title":"Contributing to worldfootballR","text":"can fix typos, spelling mistakes, grammatical errors documentation directly using GitHub web interface, long changes made source file. generally means ’ll need edit roxygen2 comments .R, .Rd file. can find .R file generates .Rd reading comment first line.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/CONTRIBUTING.html","id":"bigger-changes","dir":"","previous_headings":"","what":"Bigger changes","title":"Contributing to worldfootballR","text":"want make bigger change, ’s good idea first file issue make sure someone team agrees ’s needed. ’ve found bug, please file issue illustrates bug minimal reprex (also help write unit test, needed).","code":""},{"path":"https://jaseziv.github.io/worldfootballR/CONTRIBUTING.html","id":"pull-request-process","dir":"","previous_headings":"Bigger changes","what":"Pull request process","title":"Contributing to worldfootballR","text":"Fork package clone onto computer. haven’t done , recommend using usethis::create_from_github(\"JaseZiv/worldfootballR\", fork = TRUE). Install development dependencies devtools::install_dev_deps(), make sure package passes R CMD check running devtools::check(). R CMD check doesn’t pass cleanly, ’s good idea ask help continuing. Create Git branch pull request (PR). recommend using usethis::pr_init(\"brief-description--change\"). Make changes, commit git, create PR running usethis::pr_push(), following prompts browser. title PR briefly describe change. body PR contain Fixes #issue-number. user-facing changes, add bullet top NEWS.md (.e. just first header). Follow style described https://style.tidyverse.org/news.html.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/CONTRIBUTING.html","id":"code-style","dir":"","previous_headings":"Bigger changes","what":"Code style","title":"Contributing to worldfootballR","text":"New code follow tidyverse style guide. can use styler package apply styles, please don’t restyle code nothing PR. use roxygen2, Markdown syntax, documentation. use testthat unit tests. Contributions test cases included easier accept.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/CONTRIBUTING.html","id":"code-of-conduct","dir":"","previous_headings":"","what":"Code of Conduct","title":"Contributing to worldfootballR","text":"Please note worldfootballR project released Contributor Code Conduct. contributing project agree abide terms.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"overview","dir":"Articles","previous_headings":"","what":"Overview","title":"Extracting data from FBref","text":"package designed allow users extract various world football results player statistics following popular football (soccer) data sites: FBref Transfermarkt Understat","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"installation","dir":"Articles","previous_headings":"","what":"Installation","title":"Extracting data from FBref","text":"2024-06-29, longer including instructions install CRAN. version pushed CRAN much date, regular updates library, advise installing GitHub . can install released version worldfootballR GitHub :","code":"# install.packages(\"devtools\") devtools::install_github(\"JaseZiv/worldfootballR\") library(worldfootballR)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"usage","dir":"Articles","previous_headings":"","what":"Usage","title":"Extracting data from FBref","text":"Package vignettes built help get started package. functions extract data Transfermarkt, see functions extract data Understat, see functions extract data international matches FBref, see functions load pre-scraped data, see vignette cover functions extract data FBref.com. NOTE: version 0.5.2, FBref functions now come user-defined pause page loads address new rate limiting. See document information.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"join-fbref-and-transfermarkt-data","dir":"Articles","previous_headings":"","what":"Join FBref and Transfermarkt data","title":"Extracting data from FBref","text":"able join data player FBref Transfermarkt, player_dictionary_mapping() created. 6,100 players listed teams Big 5 Euro leagues FBref since start 2017-18 seasons, mapped together. expected updated grow time. raw data stored ","code":"mapped_players <- player_dictionary_mapping() dplyr::glimpse(mapped_players) #> Rows: 14,872 #> Columns: 4 #> $ PlayerFBref \"A.J. DeLaGarza\", \"AJ Marcucci\", \"Aapo Halme\", \"Aaron Bast… #> $ UrlFBref \"https://fbref.com/en/players/171b3c37/AJ-DeLaGarza\", \"htt… #> $ UrlTmarkt \"https://www.transfermarkt.com/a-j-delagarza/profil/spiele… #> $ TmPos \"Right-Back\", \"Goalkeeper\", \"Centre-Back\", \"Left Winger\", …"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"fbref-helper-functions","dir":"Articles","previous_headings":"","what":"FBref Helper Functions","title":"Extracting data from FBref","text":"following section outline various functions available find different URLs able pass FBref suite functions outlined vignette.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"league-urls","dir":"Articles","previous_headings":"FBref Helper Functions","what":"League URLs","title":"Extracting data from FBref","text":"extract URL country’s league(s) (provided fbref data league), use fb_league_urls() function. function also accepts tier argument. first-tier leagues, select ‘1st’, second-tier select ‘2nd’ . fill list countries available can found worldfootballR_data repository can found .","code":"fb_league_urls(country = \"ENG\", gender = \"M\", season_end_year = 2021, tier = '2nd')"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"team-urls","dir":"Articles","previous_headings":"FBref Helper Functions","what":"Team URLs","title":"Extracting data from FBref","text":"get list URLs team particular season, fb_teams_urls() function can used:","code":"fb_teams_urls(\"https://fbref.com/en/comps/9/Premier-League-Stats\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"player-urls","dir":"Articles","previous_headings":"FBref Helper Functions","what":"Player URLs","title":"Extracting data from FBref","text":"get list player URLs particular team, fb_player_urls() function can used. results output can passed player season stat functions fb_player_season_stats() fb_player_scouting_report().","code":"fb_player_urls(\"https://fbref.com/en/squads/fd962109/Fulham-Stats\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-match-urls","dir":"Articles","previous_headings":"FBref Helper Functions","what":"Get match urls","title":"Extracting data from FBref","text":"get match URLs needed pass match-level functions , fb_match_urls() can used:","code":"epl_2021_urls <- fb_match_urls(country = \"ENG\", gender = \"M\", season_end_year = 2021, tier=\"1st\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"league-season-level-data","dir":"Articles","previous_headings":"","what":"League Season-Level Data","title":"Extracting data from FBref","text":"section cover functions aid extraction season team statistics.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-season-team-stats","dir":"Articles","previous_headings":"League Season-Level Data","what":"Get Season Team Stats","title":"Extracting data from FBref","text":"fb_season_team_stats function allows user return data frame different stat types teams Domestic leagues . Note, stats may available leagues. big five European leagues stats, leagues, ’s efficient use fb_big5_advanced_season_stats(). following stat types can selected: league_table league_table_home_away standard keeper keeper_adv shooting passing passing_types goal_shot_creation defense possession playing_time misc","code":"#----- function to extract season teams stats -----# prem_2020_shooting <- fb_season_team_stats(country = \"ENG\", gender = \"M\", season_end_year = \"2020\", tier = \"1st\", stat_type = \"shooting\") dplyr::glimpse(prem_2020_shooting) #----- to get shooting stats for the English Championship: -----# # championship_2020_shooting <- get_season_team_stats(country = \"ENG\", gender = \"M\", season_end_year = \"2020\", tier = \"2nd\", stat_type = \"shooting\") #----- Can also run this for multiple leagues at a time: -----# # multiple_2020_shooting <- get_season_team_stats(country = c(\"USA\", \"NED\"), # gender = \"M\", season_end_year = 2020, # tier = \"1st\", stat_type = \"shooting\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"the-big-5-euro-leagues","dir":"Articles","previous_headings":"League Season-Level Data > Get Season Team Stats","what":"The Big 5 Euro Leagues","title":"Extracting data from FBref","text":"fb_big5_advanced_season_stats() function allows users extract data listed stat types teams big five European leagues (EPL, La Liga, Ligue 1, Serie , Bundesliga). stat types available function : standard shooting passing passing_types gca defense possession playing_time misc keepers keepers_adv function also accepts season seasons whether want data player, team. Note selecting team_or_player=\"team\", results returned team’s stats. filter , use Team_or_Opponent column resulting data frame, selecting ‘team’ want team’s stats, ‘opponent’ want team’s stats.","code":"#----- Get data for big five leagues for TEAMS -----# big5_team_shooting <- fb_big5_advanced_season_stats(season_end_year= c(2019:2021), stat_type= \"shooting\", team_or_player= \"team\") dplyr::glimpse(big5_team_shooting) #----- Get data for big five leagues for PLAYERS -----# big5_player_shooting <- fb_big5_advanced_season_stats(season_end_year= c(2019:2021), stat_type= \"shooting\", team_or_player= \"player\") dplyr::glimpse(big5_player_shooting)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-season-player-stats","dir":"Articles","previous_headings":"League Season-Level Data","what":"Get Season Player Stats","title":"Extracting data from FBref","text":"fb_league_stats function allows user return data frame different stat types players leagues . Note, stats may available leagues. following stat types can selected: standard shooting passing passing_types gca defense possession playing_time misc keepers keepers_adv fb_league_stats retrieves data one page load, e.g. . much efficient iterating vector player URLs get data players league (.e. fb_player_season_stats()). Note function can used retrieve team data season manner similar fb_season_team_stats(). Multiple values country, gender, season_end_year, tier can provided time, although one value specified stat_type team_or_player.","code":"prem_2020_player_shooting <- fb_league_stats( country = \"ENG\", gender = \"M\", season_end_year = 2020, tier = \"1st\", non_dom_league_url = NA, stat_type = \"shooting\", team_or_player = \"player\" ) dplyr::glimpse(prem_2020_player_shooting) prem_2020_team_shooting <- fb_league_stats( country = \"ENG\", gender = \"M\", season_end_year = 2020, tier = \"1st\", non_dom_league_url = NA, stat_type = \"shooting\", team_or_player = \"team\" ) dplyr::glimpse(prem_2020_team_shooting) # fb_league_stats( # country = c(\"ENG\", \"ESP\") # gender = c(\"M\", \"F\") # season_end_year = 2020:2021, # tier = c(\"1st\", \"2nd\"), # non_dom_league_url = NA, # stat_type = \"shooting\", # team_or_player = \"player\" # )"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"match-level-data","dir":"Articles","previous_headings":"","what":"Match-Level Data","title":"Extracting data from FBref","text":"following sections outlines functions available extract data per-match level","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-match-results","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match results","title":"Extracting data from FBref","text":"get match results (additional metadata) leagues comps listed , following function can used: function can also used return match URLs non-domestic league season. use functionality, simply leave country = '' pass non-domestic league URL, can found https://fbref.com/en/comps/","code":"# function to extract Serie A match results data serieA_2020 <- fb_match_results(country = \"ITA\", gender = \"M\", season_end_year = 2020, tier = \"1st\") dplyr::glimpse(serieA_2020) # for international friendlies: fb_match_results(country = \"\", gender = \"M\", season_end_year = 2018, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/218/history/Friendlies-M-Seasons\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"more-than-one-league-season","dir":"Articles","previous_headings":"Match-Level Data > Get match results","what":"More than one league season","title":"Extracting data from FBref","text":"fb_match_results() function can used get data multiple seasons/leagues/genders/etc also:","code":"big_5_2020_results <- fb_match_results(country = c(\"ENG\", \"ESP\", \"ITA\", \"GER\", \"FRA\"), gender = \"M\", season_end_year = 2020, tier = \"1st\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-match-report","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match report","title":"Extracting data from FBref","text":"function return similar results fb_match_results(), however fb_match_report() provide additional information. also provide single match, whole season:","code":"# function to extract match report data liv_mci_2020 <- fb_match_report(match_url = \"https://fbref.com/en/matches/47880eb7/Liverpool-Manchester-City-November-10-2019-Premier-League\") dplyr::glimpse(liv_mci_2020)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-match-team-stats","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match team stats","title":"Extracting data from FBref","text":"function return teams stats single match (Possessions, Passing Accuracy etc.)","code":"# function to extract match team stats liv_mci_2020_team_stats <- fb_team_match_stats(match_url = \"https://fbref.com/en/matches/47880eb7/Liverpool-Manchester-City-November-10-2019-Premier-League\") dplyr::glimpse(liv_mci_2020_team_stats)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-match-summaries","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match summaries","title":"Extracting data from FBref","text":"function return main events occur match, including goals, substitutions red/yellow cards:","code":"# function to extract match summary data liv_mci_2020_summary <- fb_match_summary(match_url = \"https://fbref.com/en/matches/47880eb7/Liverpool-Manchester-City-November-10-2019-Premier-League\") dplyr::glimpse(liv_mci_2020_summary)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-match-lineups","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match lineups","title":"Extracting data from FBref","text":"function return dataframe players listed match, including whether started pitch, bench. version 0.2.7, function now also returns summary performance data player played, including position, minutes played, goals, cards, etc.","code":"# function to extract match lineups liv_mci_2020_lineups <- fb_match_lineups(match_url = \"https://fbref.com/en/matches/47880eb7/Liverpool-Manchester-City-November-10-2019-Premier-League\") dplyr::glimpse(liv_mci_2020_lineups)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-shooting-and-shot-creation-events","dir":"Articles","previous_headings":"Match-Level Data","what":"Get shooting and shot creation events","title":"Extracting data from FBref","text":"function allows users extract shooting shot creation event data match selected matches. data returned includes took shot, , body part far away. Additionally, player creating chance also creation included data.","code":"#----- Get shots data for a single match played: -----# shot_one_match <- fb_match_shooting(match_url = \"https://fbref.com/en/matches/a3eb7a37/Sheffield-United-Wolverhampton-Wanderers-September-14-2020-Premier-League\") #----- Can also extract for multiple matches at a time: -----# # test_urls_multiple <- c(\"https://fbref.com/en/matches/c0996cac/Bordeaux-Nantes-August-21-2020-Ligue-1\", # \"https://fbref.com/en/matches/9cbccb37/Dijon-Angers-August-22-2020-Ligue-1\", # \"https://fbref.com/en/matches/f96cd5a0/Lorient-Strasbourg-August-23-2020-Ligue-1\") # shot_multiple_matches <- fb_match_shooting(test_urls_multiple)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-advanced-match-statistics","dir":"Articles","previous_headings":"Match-Level Data","what":"Get advanced match statistics","title":"Extracting data from FBref","text":"fb_advanced_match_stats() function allows user return data frame different stat types matches played. Note, stats may available leagues. big five European leagues stats. following stat types can selected: summary passing passing_types defense possession misc keeper function can used either players individually: used team totals match:","code":"test_urls_multiple <- c(\"https://fbref.com/en/matches/c0996cac/Bordeaux-Nantes-August-21-2020-Ligue-1\", \"https://fbref.com/en/matches/9cbccb37/Dijon-Angers-August-22-2020-Ligue-1\") advanced_match_stats <- fb_advanced_match_stats(match_url = test_urls_multiple, stat_type = \"possession\", team_or_player = \"player\") dplyr::glimpse(advanced_match_stats) test_urls_multiple <- c(\"https://fbref.com/en/matches/c0996cac/Bordeaux-Nantes-August-21-2020-Ligue-1\", \"https://fbref.com/en/matches/9cbccb37/Dijon-Angers-August-22-2020-Ligue-1\") advanced_match_stats_team <- fb_advanced_match_stats(match_url = test_urls_multiple, stat_type = \"passing_types\", team_or_player = \"team\") dplyr::glimpse(advanced_match_stats_team)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"team-level-data","dir":"Articles","previous_headings":"","what":"Team-Level Data","title":"Extracting data from FBref","text":"section cover functions get team-level data FBref.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"match-results-by-team","dir":"Articles","previous_headings":"Team-Level Data","what":"Match Results by team","title":"Extracting data from FBref","text":"get results team(s) competed season, following function can used. resulting data frame output include game results, including cup games played, accept either one, many team URLs.","code":"#----- for single teams: -----# man_city_2021_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" man_city_2021_results <- fb_team_match_results(man_city_2021_url) dplyr::glimpse(man_city_2021_results) #----- get all team URLs for a league: -----# # epl_2021_team_urls <- fb_teams_urls(\"https://fbref.com/en/comps/9/Premier-League-Stats\") # epl_2021_team_results <- fb_team_match_results(team_url = team_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"stat-logs-for-season","dir":"Articles","previous_headings":"Team-Level Data","what":"Stat Logs for Season","title":"Extracting data from FBref","text":"able get full match logs available stat types team(s) season, fb_team_match_log_stats() function can used. Available stat types . Note, listed stat types available teams, teams , still may gaps resulting data frame competitions participated stat available: shooting keeper passing passing_types gca defense misc","code":"# can do it for one team: man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" man_city_logs <- fb_team_match_log_stats(team_urls = man_city_url, stat_type = \"passing\") dplyr::glimpse(man_city_logs) # or multiple teams: urls <- c(\"https://fbref.com/en/squads/822bd0ba/Liverpool-Stats\", \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\") shooting_logs <- fb_team_match_log_stats(team_urls = urls, stat_type = \"shooting\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"season-goal-logs","dir":"Articles","previous_headings":"Team-Level Data","what":"Season goal logs","title":"Extracting data from FBref","text":"Use fb_team_goal_logs() function get goal logs “” (default), “”, “”, team.","code":"man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" goal_log <- function(team_urls = man_city_url, for_or_against=\"both\") dplyr::glimpse(goal_log)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"player-level-data","dir":"Articles","previous_headings":"","what":"Player-Level Data","title":"Extracting data from FBref","text":"section cover functions available aid extraction player season data. examples provided lot cases actual url (player team) passed , however suite fbref helper functions outlined helpers vignette also used.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-player-scouting-report","dir":"Articles","previous_headings":"Player-Level Data","what":"Get Player Scouting Report","title":"Extracting data from FBref","text":"fb_player_scouting_report() function takes three inputs; player_url - URL player’s main page pos_versus - can return player’s comparison players “primary”, “secondary” position league_comp_name - name competition/league season want player comparisons . value supplied, just return scouting periods. information needs copied exactly tabs appear player scouting page FBref. results full scouting report player selected.","code":"#----- Get scouting report for the players primary position (first position listed in fbref): -----# messi_primary <- fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"primary\") dplyr::glimpse(messi_primary) # TO GET THE LAST 365 DAYS REPORT: messi_last_365 <- fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"primary\", league_comp_name = \"Last 365 Days Men's Big 5 Leagues, UCL, UEL\") # TO GET SCOUTING REPORT FOR MULTIPLE COMPS/LEAGUES: messi_multiple <- fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"primary\", league_comp_name = c(\"Last 365 Days Men's Big 5 Leagues, UCL, UEL\", \"2022 World Cup\")) #----- Get scouting report for the players secondary position (second position listed in fbref): -----# messi_secondary <- fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"secondary\") dplyr::glimpse(messi_secondary)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"get-player-season-stats","dir":"Articles","previous_headings":"Player-Level Data","what":"Get Player Season Stats","title":"Extracting data from FBref","text":"fb_player_season_stats() function allows extraction historical season totals selected player URLs stat_type. stat_types available use function : standard shooting passing passing_types gca defense possession playing_time misc keeper keeper_adv","code":"#----- can use for a single player: -----# mo_shooting <- fb_player_season_stats(\"https://fbref.com/en/players/e342ad68/Mohamed-Salah\", stat_type = 'shooting') dplyr::glimpse(mo_shooting) #----- Or for multiple players at a time: -----# # multiple_playing_time <- fb_player_season_stats(player_url = c(\"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", # \"https://fbref.com/en/players/dea698d9/Cristiano-Ronaldo\"), # stat_type = \"playing_time\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"the-big-5-euro-league-players","dir":"Articles","previous_headings":"Player-Level Data","what":"The Big 5 Euro League Players","title":"Extracting data from FBref","text":"fb_big5_advanced_season_stats() function allows users extract data listed stat types players big five European leagues (EPL, La Liga, Ligue 1, Serie , Bundesliga). stat types available function : standard shooting passing passing_types gca defense possession playing_time misc keepers keepers_adv function also accepts season seasons whether want data player, team.","code":"big5_player_possession <- fb_big5_advanced_season_stats(season_end_year= 2021, stat_type= \"possession\", team_or_player= \"player\") dplyr::glimpse(big5_player_possession)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"player-season-statistics-for-a-teams-season","dir":"Articles","previous_headings":"Player-Level Data","what":"Player Season Statistics for a teams season","title":"Extracting data from FBref","text":"fb_team_player_stats() function allows users extract data listed stat types players selected team(s) seasons, stat types available function : standard shooting passing passing_types gca defense possession playing_time misc keepers keepers_adv","code":"#----- to get stats for just a single team: -----# fleetwood_standard_stats <- fb_team_player_stats(team_urls= \"https://fbref.com/en/squads/d6a369a2/Fleetwood-Town-Stats\", stat_type= 'standard') dplyr::glimpse(fleetwood_standard_stats) #----- Can even get stats for a series of teams: -----# # league_url <- fb_league_urls(country = \"ENG\", gender = \"M\", # teams <- fb_teams_urls(league_url) # # multiple_playing_time <- fb_team_player_stats(team_urls= teams, stat_type= \"playing_time\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"goal-and-assist-logs","dir":"Articles","previous_headings":"Player-Level Data","what":"Goal and assist logs","title":"Extracting data from FBref","text":"Use fb_player_goal_logs() function get logs “goals” (default), “assists”, “”.","code":"jwp_url <- \"https://fbref.com/en/players/3515d404/James-Ward-Prowse\" goal_log <- fb_player_goal_logs(team_urls = jwp_url, goals_or_assists=\"both\") dplyr::glimpse(goal_log)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"player-match-logs","dir":"Articles","previous_headings":"Player-Level Data","what":"Player Match Logs","title":"Extracting data from FBref","text":"fb_player_match_logs() function allows user return data frame match logs different stat types player’s matches played season. following stat types can selected, depending player’s position (ie striker probably won’t “keepers” stats): summary keepers passing passing_types gca defense possession misc","code":"ederson_summary <- fb_player_match_logs(\"https://fbref.com/en/players/3bb7b8b4/Ederson\", season_end_year = 2021, stat_type = 'summary') dplyr::glimpse(ederson_summary)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-fbref-data.html","id":"player-wages","dir":"Articles","previous_headings":"Player-Level Data","what":"Player Wages","title":"Extracting data from FBref","text":"able extract player wages players team FBref (via Capology), use fb_squad_wages() function . Notw, can used multiple team_urls.","code":"man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" man_city_wages <- fb_squad_wages(team_urls = man_city_url)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"overview","dir":"Articles","previous_headings":"","what":"Overview","title":"Extracting data from Transfermarkt","text":"package designed allow users extract various world football results player statistics following popular football (soccer) data sites: FBref Transfermarkt Understat","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"installation","dir":"Articles","previous_headings":"","what":"Installation","title":"Extracting data from Transfermarkt","text":"2024-06-29, longer including instructions install CRAN. version pushed CRAN much date, regular updates library, advise installing GitHub . can install released version worldfootballR GitHub :","code":"# install.packages(\"devtools\") devtools::install_github(\"JaseZiv/worldfootballR\") library(worldfootballR)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"usage","dir":"Articles","previous_headings":"","what":"Usage","title":"Extracting data from Transfermarkt","text":"Package vignettes built help get started package. functions extract data FBref, see functions extract data Understat, see functions extract data international matches FBref, see functions load pre-scraped data, see vignette cover functions extract data transfermarkt.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"join-fbref-and-transfermarkt-data","dir":"Articles","previous_headings":"","what":"Join FBref and Transfermarkt data","title":"Extracting data from Transfermarkt","text":"able join data player FBref Transfermarkt, player_dictionary_mapping() created. 6,100 players listed teams Big 5 Euro leagues FBref since start 2017-18 seasons, mapped together. expected updated grow time. raw data stored ","code":"mapped_players <- player_dictionary_mapping() dplyr::glimpse(mapped_players)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"transfermarkt-helper-functions","dir":"Articles","previous_headings":"","what":"Transfermarkt Helper Functions","title":"Extracting data from Transfermarkt","text":"following section outline various functions available find different URLs able pass Transfermarkt suite functions outlined vignette.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"team-urls","dir":"Articles","previous_headings":"Transfermarkt Helper Functions","what":"Team URLs","title":"Extracting data from Transfermarkt","text":"get list URLs team particular season transfermarkt.com, tm_league_team_urls() function can used. country/countries aren’t available main data set, function can also accept League URL transfermarkt.com. get league URL, use filtering options towards top transfermarkt.com, select country league want collect data , head page, copy URL.","code":"team_urls <- tm_league_team_urls(country_name = \"England\", start_year = 2020) # if it's not a league in the stored leagues data in worldfootballR_data repo: league_one_teams <- tm_league_team_urls(start_year = 2020, league_url = \"https://www.transfermarkt.com/league-one/startseite/wettbewerb/GB3\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"player-urls","dir":"Articles","previous_headings":"Transfermarkt Helper Functions","what":"Player URLs","title":"Extracting data from Transfermarkt","text":"get list player URLs particular team transfermarkt.com, tm_team_player_urls() function can used.","code":"tm_team_player_urls(team_url = \"https://www.transfermarkt.com/fc-burnley/startseite/verein/1132/saison_id/2020\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"staff-urls","dir":"Articles","previous_headings":"Transfermarkt Helper Functions","what":"Staff URLs","title":"Extracting data from Transfermarkt","text":"get list staff URLs particular team(s) staff role transfermarkt.com, tm_league_staff_urls() function can used. staff roles can passed function via staff_role argument : “Manager” (also return caretaker managers) “Assistant Manager” “Goalkeeping Coach” “Fitness Coach” “Conditioning Coach”","code":"# get a list of team URLs for the EPL 2021/22 season epl_teams <- tm_league_team_urls(country_name = \"England\", start_year = 2021) # get all EPL managers for the 2021/22 season epl_managers <- tm_team_staff_urls(team_urls = epl_teams, staff_role = \"Manager\") # get all EPL goal keeping coaches for the 2021/22 season epl_gk_coaches <- tm_team_staff_urls(team_urls = epl_teams, staff_role = \"Goalkeeping Coach\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"league-season-level-data","dir":"Articles","previous_headings":"","what":"League Season-Level Data","title":"Extracting data from Transfermarkt","text":"section cover functions aid extraction season team statistics information whole leagues.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"league-table-by-matchdays","dir":"Articles","previous_headings":"League Season-Level Data","what":"League Table by Matchdays","title":"Extracting data from Transfermarkt","text":"able extract league tables select matchday(s), function can used. function can accept either country name, season start year matchday number(s), leagues contained worldfootballR_data repository, can accept league URL, season start year matchday number(s).","code":"#----- to get the EPL table after matchday 1 of the 20/21 season: -----# epl_matchday_1_table <- tm_matchday_table(country_name=\"England\", start_year=\"2020\", matchday=1) dplyr::glimpse(epl_matchday_1_table) # #----- to get the EPL table after each matchdays from matchday 1 to matchday 35 of the 20/21 season: -----# # epl_matchday_1to35_table <- tm_matchday_table(country_name=\"England\", start_year=\"2020\", matchday=c(1:35)) #----- to get the League One table after each matchdays from matchday 1 to matchday 5 of the 20/21 season: -----# league_one_matchday_1_table <- tm_matchday_table(start_year=\"2020\", matchday=1:5, league_url=\"https://www.transfermarkt.com/league-one/startseite/wettbewerb/GB3\") dplyr::glimpse(league_one_matchday_1_table)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"league-debutants","dir":"Articles","previous_headings":"League Season-Level Data","what":"League Debutants","title":"Extracting data from Transfermarkt","text":"able extract debutants making either league professional debut, tm_league_debutants() function can used. see league debutants (regardless professional status), set debut_type = \"league\", setting debut_type = \"pro\" return debutants selected league making professional debuts. variables debut_start_year debut_end_year set time periods debutant data required . transfermarkt functions, season value starting year season, ie 2021-22 LaLiga season, value set 2021.","code":"# Laliga players making their LaLiga debut in 2021/2022 laliga_debutants <- tm_league_debutants(country_name = \"Spain\", debut_type = \"league\", debut_start_year = 2021, debut_end_year = 2021) dplyr::glimpse(laliga_debutants) # English League One players making their PRO debuts in 2021/2022 league_one_PRO_debutants <- tm_league_debutants(country_name = \"\", league_url = \"https://www.transfermarkt.com/league-one/startseite/wettbewerb/GB3\", debut_type = \"pro\", debut_start_year = 2021, debut_end_year = 2021) dplyr::glimpse(league_one_PRO_debutants)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"expiring-contracts","dir":"Articles","previous_headings":"League Season-Level Data","what":"Expiring Contracts","title":"Extracting data from Transfermarkt","text":"able extract list players whose contracts expire selected year, tm_expiring_contracts() can used. Set contract_end_year equal calendar year contracts due expire.","code":"#----- LaLiga players with expiring contracts in 2022: -----# laliga_expiring <- tm_expiring_contracts(country_name = \"Spain\", contract_end_year = 2023) dplyr::glimpse(laliga_expiring) #----- Can even do it for non-standard leagues - English League One players with expiring contracts in 2022: -----# # league_one_expiring <- tm_expiring_contracts(country_name = \"\", # contract_end_year = 2023, # league_url = \"https://www.transfermarkt.com/league-one/startseite/wettbewerb/GB3\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"league-injuries","dir":"Articles","previous_headings":"League Season-Level Data","what":"League Injuries","title":"Extracting data from Transfermarkt","text":"get list reported current injuries selected league, use tm_league_injuries() function:","code":"# to get all current injuries for LaLiga laliga_injuries <- tm_league_injuries(country_name = \"Spain\") dplyr::glimpse(laliga_injuries) #----- Can even do it for non-standard leagues - get all current injuries for League One in England # league_one_injuries <- tm_league_injuries(country_name = \"\", # league_url = \"https://www.transfermarkt.com/league-one/startseite/wettbewerb/GB3\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"team-data","dir":"Articles","previous_headings":"","what":"Team Data","title":"Extracting data from Transfermarkt","text":"section cover functions get team-level data Transfermarkt.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"transfer-activity-by-team","dir":"Articles","previous_headings":"Team Data","what":"Transfer activity by team","title":"Extracting data from Transfermarkt","text":"get arrivals departures team (teams) season data regarding transfer (transfer value, contract length, came /went , etc), tm_team_transfers() function can used. function can return either summer, winter transfer_windows:","code":"#----- for one team: -----# bayern <- tm_team_transfers(team_url = \"https://www.transfermarkt.com/fc-bayern-munchen/startseite/verein/27/saison_id/2020\", transfer_window = \"all\") dplyr::glimpse(bayern) #----- or for multiple teams: -----# # team_urls <- tm_league_team_urls(country_name = \"England\", start_year = 2020) # epl_xfers_2020 <- tm_team_transfers(team_url = team_urls, transfer_window = \"all\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"squad-player-stats","dir":"Articles","previous_headings":"Team Data","what":"Squad Player Stats","title":"Extracting data from Transfermarkt","text":"get basic statistics (goals, appearances, minutes played, etc) games played players squad season, tm_squad_stats() function can used:","code":"#----- for one team: -----# bayern <- tm_squad_stats(team_url = \"https://www.transfermarkt.com/fc-bayern-munchen/startseite/verein/27/saison_id/2020\") dplyr::glimpse(bayern) #----- or for multiple teams: -----# # team_urls <- tm_league_team_urls(country_name = \"England\", start_year = 2020) # epl_team_players_2020 <- tm_squad_stats(team_url = team_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"player-valuations","dir":"Articles","previous_headings":"Team Data","what":"Player Valuations","title":"Extracting data from Transfermarkt","text":"get player valuations teams league season, use tm_player_market_values() function:","code":"#----- Can do it for a single league: -----# a_league_valuations <- tm_player_market_values(country_name = \"Australia\", start_year = 2021) dplyr::glimpse(a_league_valuations) #----- Can also do it for multiple leagues: -----# # big_5_valuations <- tm_player_market_values(country_name = c(\"England\", \"Spain\", \"France\", \"Italy\", \"Germany\"), # start_year = 2021) #----- Can also do it for non standard leagues: -----# # league_one_valuations <- tm_player_market_values(country_name = \"\", # start_year = 2021, # league_url = \"https://www.transfermarkt.com/league-one/startseite/wettbewerb/GB3\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"player-data","dir":"Articles","previous_headings":"","what":"Player Data","title":"Extracting data from Transfermarkt","text":"section cover functions available aid extraction player data.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"player-bios","dir":"Articles","previous_headings":"Player Data","what":"Player Bios","title":"Extracting data from Transfermarkt","text":"get information player, like age, foot, born, play , contract details, social media accounts whole lot , use tm_player_bio() function.:","code":"#----- for a single player: -----# hazard_bio <- tm_player_bio(player_url = \"https://www.transfermarkt.com/eden-hazard/profil/spieler/50202\") dplyr::glimpse(hazard_bio) #----- for multiple players: -----# # # can make use of a tm helper function: # burnley_player_urls <- tm_team_player_urls(team_url = \"https://www.transfermarkt.com/fc-burnley/startseite/verein/1132/saison_id/2020\") # # then pass all those URLs to the tm_player_bio # burnley_bios <- tm_player_bio(player_urls = burnley_player_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"player-injury-history","dir":"Articles","previous_headings":"Player Data","what":"Player Injury History","title":"Extracting data from Transfermarkt","text":"able get individual player(s) injury history transfermarkt, use tm_player_injury_history() function.","code":"#----- for a single player: -----# hazard_injuries <- tm_player_injury_history(player_urls = \"https://www.transfermarkt.com/eden-hazard/profil/spieler/50202\") dplyr::glimpse(hazard_injuries) #----- for multiple players: -----# # # can make use of a tm helper function: # burnley_player_urls <- tm_team_player_urls(team_url = \"https://www.transfermarkt.com/fc-burnley/startseite/verein/1132/saison_id/2021\") # # then pass all those URLs to the tm_player_injury_history # burnley_player_injuries <- tm_player_injury_history(player_urls = burnley_player_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"player-transfer-history","dir":"Articles","previous_headings":"Player Data","what":"Player Transfer History","title":"Extracting data from Transfermarkt","text":"able get individual player(s) transfer history transfermarkt, use tm_player_transfer_history() function. parameter get_extra_info allows users decide want scrape extra info regarding transfer. give additional information regarding contract length nations involved, require time. default value TRUE.","code":"#----- for a single player, get_extra_info defaulting TRUE: -----# jack_rodwell_transfer_history <- tm_player_transfer_history(player_urls = \"https://www.transfermarkt.com/jack-rodwell/profil/spieler/57079\") dplyr::glimpse(jack_rodwell_transfer_history) #----- for a single player, get_extra_info FALSE: -----# jack_rodwell_transfer_history <- tm_player_transfer_history(player_urls = \"https://www.transfermarkt.com/jack-rodwell/profil/spieler/57079\", get_extra_info = FALSE) dplyr::glimpse(jack_rodwell_transfer_history) #----- for multiple players, get_extra_info FALSE: -----# all_leeds_united_links <- tm_team_player_urls(team_url = \"https://www.transfermarkt.com/leeds-united/startseite/verein/399\") all_leeds_united_players_transfer_history <- tm_player_transfer_history(all_leeds_united_links, get_extra_info = FALSE) dplyr::glimpse(all_leeds_united_players_transfer_history)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"player-absence","dir":"Articles","previous_headings":"Player Data","what":"Player Absence","title":"Extracting data from Transfermarkt","text":"able get player’s (players’) absence history result suspensions transfermarkt, use tm_get_player_absence() function.","code":"#----- for a single player: -----# romero_absence <- tm_get_player_absence(player_urls = \"https://www.transfermarkt.com/cristian-romero/profil/spieler/355915\") dplyr::glimpse(romero_absence) #----- for multiple players: -----# # # can make use of a tm helper function: spurs_player_urls <- tm_team_player_urls(team_url = \"https://www.transfermarkt.com/tottenham-hotspur/startseite/verein/148\") # # then pass all those URLs to the tm_get_player_absence spurs_player_absence <- tm_get_player_absence(player_urls = spurs_player_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"club-staff-data","dir":"Articles","previous_headings":"","what":"Club Staff Data","title":"Extracting data from Transfermarkt","text":"version 0.4.7, users now ability get historical data club staff transfermarkt. following two functions can used, depending need (addition helper function tm_team_staff_urls() detailed ).","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"club-staff-history","dir":"Articles","previous_headings":"Club Staff Data","what":"Club Staff History","title":"Extracting data from Transfermarkt","text":"can extract employees role club’s history using tm_team_staff_history(). list roles can passed staff_roles argument can found , ’re also listed :","code":"# get a list of team URLs for the EPL 2021/22 season epl_teams <- tm_league_team_urls(country_name = \"England\", start_year = 2021) #----- then use the URLs to pass to the function, and select the role you wish to see results for: -----# club_manager_history <- tm_team_staff_history(team_urls = epl_teams, staff_role = \"Manager\") dplyr::glimpse(club_manager_history) #----- can also get other roles: -----# # club_caretaker_manager_history <- tm_team_staff_history(team_urls = epl_teams, staff_role = \"Caretaker Manager\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-transfermarkt-data.html","id":"staff-members-history","dir":"Articles","previous_headings":"Club Staff Data","what":"Staff Member’s History","title":"Extracting data from Transfermarkt","text":"able get roles held selected staff member(s), tm_staff_job_history() function can used. function accepts one argument, staff_urls, can extracted using tm_team_staff_urls() explained helpers section .","code":"# get a list of team URLs for the EPL 2021/22 season # epl_teams <- tm_league_team_urls(country_name = \"England\", start_year = 2021) # get all EPL goal keeping coaches for the 2021/22 season epl_gk_coaches <- tm_team_staff_urls(team_urls = epl_teams[1:3], staff_role = \"Goalkeeping Coach\") # then you can pass these URLs to the function and get job histories for the selected staff members epl_gk_coach_job_histories <- tm_staff_job_history(staff_urls = epl_gk_coaches) dplyr::glimpse(epl_gk_coach_job_histories)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"overview","dir":"Articles","previous_headings":"","what":"Overview","title":"Extracting data from Understat","text":"package designed allow users extract various world football results player statistics following popular football (soccer) data sites: FBref Transfermarkt Understat","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"installation","dir":"Articles","previous_headings":"","what":"Installation","title":"Extracting data from Understat","text":"2024-06-29, longer including instructions install CRAN. version pushed CRAN much date, regular updates library, advise installing GitHub . can install released version worldfootballR GitHub :","code":"# install.packages(\"devtools\") devtools::install_github(\"JaseZiv/worldfootballR\") library(worldfootballR)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"usage","dir":"Articles","previous_headings":"","what":"Usage","title":"Extracting data from Understat","text":"Package vignettes built help get started package. functions extract data FBref, see functions extract data Transfermarkt, see functions extract data international matches FBref, see functions load pre-scraped data, see vignette cover functions extract data understat.com","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"team-names","dir":"Articles","previous_headings":"Understat Helper Functions","what":"Team Names","title":"Extracting data from Understat","text":"get list available teams names team selected league, use understat_avalaible_teams() function. can pass results understat_avalaible_teams() function execution understat_team_meta() function.","code":"team_names <- understat_team_meta(team_name = understat_avalaible_teams(league = 'EPL'))"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"team-urls","dir":"Articles","previous_headings":"Understat Helper Functions","what":"Team URLs","title":"Extracting data from Understat","text":"get list season team URLs selected teams, use understat_team_meta() function (note, get team names, might advisable look Understat.com’s spelling team names pass function):","code":"team_urls <- understat_team_meta(team_name = c(\"Liverpool\", \"Manchester City\"))"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"league-season-level-data","dir":"Articles","previous_headings":"","what":"League Season-Level Data","title":"Extracting data from Understat","text":"section cover functions aid extraction season league statistics Understat. following leagues currently supported Understat (values can passed league arguments understat_ functions): “EPL” “La liga” “Bundesliga” “Serie ” “Ligue 1” “RFPL”","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"match-results","dir":"Articles","previous_headings":"League Season-Level Data","what":"Match Results","title":"Extracting data from Understat","text":"able extract match results Understat, results expected goals, also provide probability team winning. extract data, use understat_league_match_results() function:","code":"# to get the EPL results: epl_results <- understat_league_match_results(league = \"EPL\", season_start_year = 2020) dplyr::glimpse(epl_results) #> Rows: 380 #> Columns: 18 #> $ league \"EPL\", \"EPL\", \"EPL\", \"EPL\", \"EPL\", \"EPL\", \"EPL\", \"EPL\", … #> $ season \"2020/2021\", \"2020/2021\", \"2020/2021\", \"2020/2021\", \"202… #> $ match_id \"14086\", \"14087\", \"14090\", \"14091\", \"14092\", \"14093\", \"1… #> $ isResult TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TR… #> $ home_id \"228\", \"78\", \"87\", \"81\", \"76\", \"82\", \"238\", \"220\", \"72\",… #> $ home_team \"Fulham\", \"Crystal Palace\", \"Liverpool\", \"West Ham\", \"We… #> $ home_abbr \"FLH\", \"CRY\", \"LIV\", \"WHU\", \"WBA\", \"TOT\", \"SHE\", \"BRI\", … #> $ away_id \"83\", \"74\", \"245\", \"86\", \"75\", \"72\", \"229\", \"80\", \"76\", … #> $ away_team \"Arsenal\", \"Southampton\", \"Leeds\", \"Newcastle United\", \"… #> $ away_abbr \"ARS\", \"SOU\", \"LED\", \"NEW\", \"LEI\", \"EVE\", \"WOL\", \"CHE\", … #> $ home_goals 0, 1, 4, 0, 0, 0, 0, 1, 5, 4, 1, 2, 2, 0, 0, 4, 1, 1, 2,… #> $ away_goals 3, 0, 3, 2, 3, 1, 2, 3, 2, 3, 3, 1, 5, 3, 2, 2, 0, 3, 3,… #> $ home_xG 0.126327, 1.395690, 3.154120, 0.861445, 0.352997, 0.8229… #> $ away_xG 2.162870, 1.262670, 0.269813, 1.659110, 2.955810, 1.2679… #> $ datetime \"2020-09-12 11:30:00\", \"2020-09-12 14:00:00\", \"2020-09-1… #> $ forecast_win 0.0037, 0.3916, 0.9658, 0.1506, 0.0070, 0.2200, 0.1683, … #> $ forecast_draw 0.0476, 0.3022, 0.0296, 0.2480, 0.0358, 0.2977, 0.2906, … #> $ forecast_loss 0.9487, 0.3062, 0.0046, 0.6014, 0.9572, 0.4823, 0.5411, …"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"season-shooting-locations","dir":"Articles","previous_headings":"League Season-Level Data","what":"Season Shooting locations","title":"Extracting data from Understat","text":"get shooting locations whole season supported leagues, use understat_league_season_shots() function:","code":"ligue1_shot_location <- understat_league_season_shots(league = \"Ligue 1\", season_start_year = 2020)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"match-level-data","dir":"Articles","previous_headings":"","what":"Match-Level Data","title":"Extracting data from Understat","text":"following sections outlines functions available extract data per-match level","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"match-shooting-locations","dir":"Articles","previous_headings":"Match-Level Data","what":"Match Shooting Locations","title":"Extracting data from Understat","text":"get shooting locations individual match, use understat_match_shots() function:","code":"wba_liv_shots <- understat_match_shots(match_url = \"https://understat.com/match/14789\") dplyr::glimpse(wba_liv_shots) #> Rows: 36 #> Columns: 20 #> $ id \"422440\", \"422441\", \"422442\", \"422450\", \"422456\", \"422… #> $ minute 9, 11, 14, 35, 46, 47, 50, 61, 70, 77, 2, 3, 5, 23, 26… #> $ result \"MissedShots\", \"MissedShots\", \"Goal\", \"BlockedShot\", \"… #> $ X 0.869, 0.965, 0.881, 0.883, 0.957, 0.712, 0.767, 0.942… #> $ Y 0.441, 0.460, 0.356, 0.336, 0.590, 0.403, 0.590, 0.626… #> $ xG 0.0313527, 0.1447450, 0.2382660, 0.2825390, 0.0260821,… #> $ player \"Semi Ajayi\", \"Okay Yokuslu\", \"Hal Robson-Kanu\", \"Hal … #> $ home_away \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"a\",… #> $ player_id \"4490\", \"6932\", \"1738\", \"1738\", \"964\", \"7153\", \"7153\",… #> $ situation \"SetPiece\", \"SetPiece\", \"OpenPlay\", \"OpenPlay\", \"FromC… #> $ season \"2020\", \"2020\", \"2020\", \"2020\", \"2020\", \"2020\", \"2020\"… #> $ shotType \"Head\", \"Head\", \"LeftFoot\", \"LeftFoot\", \"Head\", \"LeftF… #> $ match_id \"14789\", \"14789\", \"14789\", \"14789\", \"14789\", \"14789\", … #> $ home_team \"West Bromwich Albion\", \"West Bromwich Albion\", \"West … #> $ away_team \"Liverpool\", \"Liverpool\", \"Liverpool\", \"Liverpool\", \"L… #> $ home_goals 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, … #> $ away_goals 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, … #> $ date \"2021-05-16 15:30:00\", \"2021-05-16 15:30:00\", \"2021-05… #> $ player_assisted \"Matheus Pereira\", \"Darnell Furlong\", \"Matheus Pereira… #> $ lastAction \"Cross\", \"Chipped\", \"Pass\", \"HeadPass\", \"Aerial\", \"Sta…"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"team-data","dir":"Articles","previous_headings":"","what":"Team Data","title":"Extracting data from Understat","text":"section cover functions get team-level data Transfermarkt.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"team-shooting-locations","dir":"Articles","previous_headings":"Team Data","what":"Team Shooting Locations","title":"Extracting data from Understat","text":"get shots taken conceded team season, use understat_team_season_shots() function:","code":"# for one team: man_city_shots <- understat_team_season_shots(team_url = \"https://understat.com/team/Manchester_City/2020\") dplyr::glimpse(man_city_shots) #> Rows: 886 #> Columns: 20 #> $ id \"378528\", \"378533\", \"378537\", \"378538\", \"378539\", \"378… #> $ minute 15, 40, 53, 55, 58, 59, 64, 73, 77, 86, 7, 10, 19, 29,… #> $ result \"BlockedShot\", \"MissedShots\", \"MissedShots\", \"BlockedS… #> $ X 0.789, 0.892, 0.860, 0.811, 0.822, 0.886, 0.869, 0.803… #> $ Y 0.564, 0.409, 0.501, 0.496, 0.398, 0.473, 0.259, 0.467… #> $ xG 0.03422860, 0.03680430, 0.10313500, 0.05339760, 0.0860… #> $ player \"Pedro Neto\", \"Raúl Jiménez\", \"Daniel Podence\", \"Rúben… #> $ home_away \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"a\",… #> $ player_id \"6382\", \"4105\", \"8291\", \"6853\", \"8291\", \"4105\", \"6853\"… #> $ situation \"OpenPlay\", \"FromCorner\", \"OpenPlay\", \"OpenPlay\", \"Ope… #> $ season \"2020\", \"2020\", \"2020\", \"2020\", \"2020\", \"2020\", \"2020\"… #> $ shotType \"LeftFoot\", \"Head\", \"LeftFoot\", \"LeftFoot\", \"RightFoot… #> $ match_id \"14105\", \"14105\", \"14105\", \"14105\", \"14105\", \"14105\", … #> $ home_team \"Wolverhampton Wanderers\", \"Wolverhampton Wanderers\", … #> $ away_team \"Manchester City\", \"Manchester City\", \"Manchester City… #> $ home_goals 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, … #> $ away_goals 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, … #> $ date \"2020-09-21 19:15:00\", \"2020-09-21 19:15:00\", \"2020-09… #> $ player_assisted \"Daniel Podence\", \"Adama Traoré\", \"Adama Traoré\", \"Ped… #> $ lastAction \"Pass\", \"Cross\", \"Pass\", \"Pass\", \"Chipped\", \"Cross\", \"…"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"team-stat-breakdowns","dir":"Articles","previous_headings":"Team Data","what":"Team Stat Breakdowns","title":"Extracting data from Understat","text":"get granular breakdown team shooting data whole seasons, understat_team_stats_breakdown() function can used. functions returns breakdown team shooting data based following groupings: Situation Formation Game state Timing Shot zones Attack speed Result","code":"#----- Can get data for single teams at a time: -----# team_breakdown <- understat_team_stats_breakdown(team_urls = \"https://understat.com/team/Liverpool/2020\") dplyr::glimpse(team_breakdown) #> Rows: 34 #> Columns: 11 #> $ team_name \"Liverpool\", \"Liverpool\", \"Liverpool\", \"Liverpool\", … #> $ season_start_year 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020… #> $ stat_group_name \"situation\", \"situation\", \"situation\", \"situation\", … #> $ stat_name \"OpenPlay\", \"FromCorner\", \"SetPiece\", \"DirectFreekic… #> $ shots 466, 94, 23, 22, 6, 532, 33, 31, 13, 2, 302, 135, 10… #> $ goals 49, 11, 2, 0, 6, 59, 6, 1, 2, 0, 32, 15, 8, 11, 2, 6… #> $ xG 59.4529171, 9.1182853, 1.8527929, 1.3437825, 4.56701… #> $ against.shots 252, 40, 21, 12, 8, 296, 20, 9, 7, 1, 161, 80, 45, 3… #> $ against.goals 28, 6, 3, 1, 4, 38, 2, 1, 0, 1, 17, 12, 5, 3, 5, 8, … #> $ against.xG 33.1091621, 4.2281575, 3.9210222, 0.6303305, 6.08935… #> $ time NA, NA, NA, NA, NA, 3147, 216, 134, 81, 12, 1914, 73… #----- Or for multiple teams: -----# # team_urls <- c(\"https://understat.com/team/Liverpool/2020\", # \"https://understat.com/team/Manchester_City/2020\") # team_breakdown <- understat_team_stats_breakdown(team_urls = team_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"player-data","dir":"Articles","previous_headings":"","what":"Player Data","title":"Extracting data from Understat","text":"section cover functions available aid extraction player data.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"player-shooting-locations","dir":"Articles","previous_headings":"Player Data","what":"Player Shooting Locations","title":"Extracting data from Understat","text":"get shooting locations games player participated (long Understat data ), use understat_player_shots() function:","code":"raheem_sterling_shots <- understat_player_shots(player_url = \"https://understat.com/player/618\") dplyr::glimpse(raheem_sterling_shots) #> Rows: 684 #> Columns: 20 #> $ id \"14490\", \"14491\", \"14496\", \"14497\", \"14779\", \"15104\", … #> $ minute 20, 22, 47, 53, 8, 7, 69, 74, 65, 81, 19, 25, 47, 50, … #> $ result \"SavedShot\", \"Goal\", \"SavedShot\", \"MissedShots\", \"Miss… #> $ X 0.853, 0.856, 0.816, 0.745, 0.857, 0.959, 0.940, 0.968… #> $ Y 0.695, 0.496, 0.377, 0.443, 0.470, 0.615, 0.524, 0.646… #> $ xG 0.0407033, 0.3114090, 0.0576012, 0.0254811, 0.0726696,… #> $ player \"Raheem Sterling\", \"Raheem Sterling\", \"Raheem Sterling… #> $ home_away \"h\", \"h\", \"h\", \"h\", \"a\", \"a\", \"a\", \"a\", \"h\", \"h\", \"a\",… #> $ player_id \"618\", \"618\", \"618\", \"618\", \"618\", \"618\", \"618\", \"618\"… #> $ situation \"OpenPlay\", \"OpenPlay\", \"OpenPlay\", \"OpenPlay\", \"OpenP… #> $ season \"2014\", \"2014\", \"2014\", \"2014\", \"2014\", \"2014\", \"2014\"… #> $ shotType \"LeftFoot\", \"RightFoot\", \"RightFoot\", \"RightFoot\", \"Ri… #> $ match_id \"4756\", \"4756\", \"4756\", \"4756\", \"4768\", \"4777\", \"4777\"… #> $ home_team \"Liverpool\", \"Liverpool\", \"Liverpool\", \"Liverpool\", \"M… #> $ away_team \"Southampton\", \"Southampton\", \"Southampton\", \"Southamp… #> $ home_goals 2, 2, 2, 2, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 1, 1, 1, 1, … #> $ away_goals 1, 1, 1, 1, 1, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, … #> $ date \"2014-08-17 13:30:00\", \"2014-08-17 13:30:00\", \"2014-08… #> $ player_assisted \"Philippe Coutinho\", \"Jordan Henderson\", \"Jordan Hende… #> $ lastAction \"Pass\", \"Throughball\", \"Pass\", \"Pass\", \"Chipped\", \"Pas…"},{"path":"https://jaseziv.github.io/worldfootballR/articles/extract-understat-data.html","id":"team-player-season-stats","dir":"Articles","previous_headings":"Player Data","what":"Team Player Season Stats","title":"Extracting data from Understat","text":"get stats players selected teams, run understat_team_players_stats() function. Note: Team URLs cal extracted using understat_team_meta().","code":"team_players <- understat_team_players_stats(team_url = c(\"https://understat.com/team/Liverpool/2020\", \"https://understat.com/team/Manchester_City/2020\")) dplyr::glimpse(team_players) #> Rows: 52 #> Columns: 19 #> $ season \"2020/2021\", \"2020/2021\", \"2020/2021\", \"2020/2021\", \"2020… #> $ player_id 1250, 838, 482, 6854, 771, 1791, 229, 332, 605, 833, 966,… #> $ player_name \"Mohamed Salah\", \"Sadio Mané\", \"Roberto Firmino\", \"Diogo … #> $ games 37, 35, 36, 19, 38, 36, 24, 10, 21, 5, 13, 33, 38, 24, 17… #> $ time 3085, 2805, 2882, 1114, 2961, 3040, 1865, 701, 1710, 370,… #> $ goals 22, 11, 9, 9, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0… #> $ xG 20.2508505, 14.8285516, 12.8602165, 7.0577230, 2.8174270,… #> $ assists 5, 7, 7, 0, 0, 7, 0, 2, 1, 0, 1, 0, 7, 2, 1, 0, 0, 1, 0, … #> $ xA 6.5285276, 7.7877541, 6.1168645, 1.7625196, 1.6629221, 8.… #> $ shots 126, 94, 83, 46, 31, 55, 22, 5, 14, 4, 8, 1, 19, 19, 15, … #> $ key_passes 55, 61, 44, 12, 21, 77, 30, 3, 14, 0, 2, 0, 65, 12, 7, 0,… #> $ yellow_cards 0, 3, 2, 2, 1, 2, 4, 2, 0, 1, 0, 1, 2, 2, 2, 0, 0, 3, 0, … #> $ red_cards 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, … #> $ position \"F M S\", \"F M S\", \"F M S\", \"F M S\", \"M S\", \"D S\", \"M S\", … #> $ team_name \"Liverpool\", \"Liverpool\", \"Liverpool\", \"Liverpool\", \"Live… #> $ npg 16, 11, 9, 9, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0… #> $ npxG 15.6838341, 14.8285516, 12.8602165, 7.0577230, 2.8174270,… #> $ xGChain 28.9682294, 24.9989162, 25.2714681, 10.9729662, 13.922178… #> $ xGBuildup 9.8002365, 6.0576597, 10.1985496, 4.0760983, 10.4762759, …"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"overview","dir":"Articles","previous_headings":"","what":"Overview","title":"Extracting data from FBref for International Matches","text":"package designed allow users extract various world football results player statistics following popular football (soccer) data sites: FBref Transfermarkt Understat","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"installation","dir":"Articles","previous_headings":"","what":"Installation","title":"Extracting data from FBref for International Matches","text":"2024-06-29, longer including instructions install CRAN. version pushed CRAN much date, regular updates library, advise installing GitHub . can install released version worldfootballR GitHub :","code":"# install.packages(\"devtools\") devtools::install_github(\"JaseZiv/worldfootballR\") library(worldfootballR)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"usage","dir":"Articles","previous_headings":"","what":"Usage","title":"Extracting data from FBref for International Matches","text":"Package vignettes built help get started package. functions extract data FBref, see functions extract data Transfermarkt, see functions extract data Understat, see functions load pre-scraped data, see vignette cover functions extract data international matches FBref.com. functions document documented FBref data vignette, however method using functions international matches differs played domestic leagues. NOTE: version 0.5.2, FBref functions now come user-defined pause page loads address new rate limiting. See document information.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"important","dir":"Articles","previous_headings":"","what":"Important","title":"Extracting data from FBref for International Matches","text":"get competition URLs needed lot functions document, refer column comp_url relevant league / competition ’re interested , stored data file.","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"get-match-urls","dir":"Articles","previous_headings":"Helper Function","what":"Get match urls","title":"Extracting data from FBref for International Matches","text":"get match URLs needed pass match-level functions , fb_match_urls() can used.","code":"wc_2018_urls <- fb_match_urls(country = \"\", gender = \"M\", season_end_year = 2018, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/1/history/World-Cup-Seasons\") friendly_int_2021_urls <- fb_match_urls(country = \"\", gender = \"M\", season_end_year = 2021, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/218/history/Friendlies-M-Seasons\") euro_2021_urls <- fb_match_urls(country = \"\", gender = \"M\", season_end_year = 2021, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/676/history/European-Championship-Seasons\") copa_2019_urls <- fb_match_urls(country = \"\", gender = \"M\", season_end_year = 2019, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/685/history/Copa-America-Seasons\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"match-level-data","dir":"Articles","previous_headings":"","what":"Match-Level Data","title":"Extracting data from FBref for International Matches","text":"following sections outlines functions available extract data per-match level","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"get-match-results","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match results","title":"Extracting data from FBref for International Matches","text":"get match results (additional metadata), following function can used. use functionality, simply leave country = '' pass non-domestic league URL","code":"# euro 2016 results euro_2016_results <- fb_match_results(country = \"\", gender = \"M\", season_end_year = 2016, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/676/history/European-Championship-Seasons\") # 2019 Copa America results: copa_2019_results <- fb_match_results(country = \"\", gender = \"M\", season_end_year = 2019, non_dom_league_url = \"https://fbref.com/en/comps/685/history/Copa-America-Seasons\") # for international friendlies: international_results <- fb_match_results(country = \"\", gender = \"M\", season_end_year = 2021, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/218/history/Friendlies-M-Seasons\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"get-match-report","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match report","title":"Extracting data from FBref for International Matches","text":"function return similar results fb_match_results(), however fb_match_report() provide additional information. also provide single match, whole season:","code":"# function to extract match report data for 2018 world cup wc_2018_report <- fb_match_report(match_url = wc_2018_urls) # function to extract match report data for 2021 international friendlies friendlies_report <- fb_match_report(match_url = friendly_int_2021_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"get-match-summaries","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match summaries","title":"Extracting data from FBref for International Matches","text":"function return main events occur match, including goals, substitutions red/yellow cards:","code":"# first get the URLs for the 2016 Euros euro_2016_match_urls <- fb_match_urls(country = \"\", gender = \"M\", season_end_year = 2016, tier = \"\", non_dom_league_url = \"https://fbref.com/en/comps/676/history/European-Championship-Seasons\") # then pass these to the function to get match summaries: euro_2016_events <- fb_match_summary(euro_2016_match_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"get-match-lineups","dir":"Articles","previous_headings":"Match-Level Data","what":"Get match lineups","title":"Extracting data from FBref for International Matches","text":"function return dataframe players listed match, including whether started pitch, bench. version 0.2.7, function now also returns summary performance data player played, including position, minutes played, goals, cards, etc.","code":"# function to extract match lineups copa_2019_lineups <- fb_match_lineups(match_url = copa_2019_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"get-shooting-and-shot-creation-events","dir":"Articles","previous_headings":"Match-Level Data","what":"Get shooting and shot creation events","title":"Extracting data from FBref for International Matches","text":"function allows users extract shooting shot creation event data match selected matches. data returned includes took shot, , body part far away. Additionally, player creating chance also creation included data.","code":"shots_wc_2018 <- fb_match_shooting(wc_2018_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/fbref-data-internationals.html","id":"get-advanced-match-statistics","dir":"Articles","previous_headings":"Match-Level Data","what":"Get advanced match statistics","title":"Extracting data from FBref for International Matches","text":"fb_advanced_match_stats() function allows user return data frame different stat types matches played. Note, stats may available comps. following stat types can selected: summary passing passing_types defense possession misc keeper function can used either players individually: used team totals match:","code":"advanced_match_stats_player <- fb_advanced_match_stats(match_url = wc_2018_urls, stat_type = \"possession\", team_or_player = \"player\") advanced_match_stats_team <- fb_advanced_match_stats(match_url = wc_2018_urls, stat_type = \"passing_types\", team_or_player = \"team\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"overview","dir":"Articles","previous_headings":"","what":"Overview","title":"Load Scraped Data Functions","text":"package designed allow users extract various world football results player statistics following popular football (soccer) data sites: FBref Transfermarkt Understat","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"installation","dir":"Articles","previous_headings":"","what":"Installation","title":"Load Scraped Data Functions","text":"2024-06-29, longer including instructions install CRAN. version pushed CRAN much date, regular updates library, advise installing GitHub . can install released version worldfootballR GitHub :","code":"# install.packages(\"devtools\") devtools::install_github(\"JaseZiv/worldfootballR\") library(worldfootballR) library(dplyr)"},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"usage","dir":"Articles","previous_headings":"","what":"Usage","title":"Load Scraped Data Functions","text":"Package vignettes built help get started package. functions extract data FBref, see functions extract data Transfermarkt, see functions extract data Understat, see functions extract data international matches FBref, see vignette cover functions load scraped data worldfootballR_data data repository. NOTE: version 0.5.2, FBref functions now come user-defined pause page loads address new rate limiting. See document information.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-fbref","dir":"Articles","previous_headings":"","what":"Load FBref","title":"Load Scraped Data Functions","text":"following section demonstrates different loading functions FBref data.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-fbref-match-results","dir":"Articles","previous_headings":"Load FBref","what":"Load FBref match results","title":"Load Scraped Data Functions","text":"load pre-scraped match results years data available, load_match_results() function can used. data scheduled updated days print statement inform user data last updated. domestic leagues included data repository. load function equivalent fb_match_results().","code":"eng_match_results <- load_match_results(country = \"ENG\", gender = c(\"M\", \"F\"), season_end_year = c(2020:2022), tier = \"1st\") dplyr::glimpse(eng_match_results) #> Rows: 1,536 #> Columns: 20 #> $ Competition_Name \"FA Women's Super League\", \"FA Women's Super League\",… #> $ Gender \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\"… #> $ Country \"ENG\", \"ENG\", \"ENG\", \"ENG\", \"ENG\", \"ENG\", \"ENG\", \"ENG… #> $ Season_End_Year 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020,… #> $ Round NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N… #> $ Wk NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N… #> $ Day \"Sat\", \"Sat\", \"Sun\", \"Sun\", \"Sun\", \"Sun\", \"Sun\", \"Sun… #> $ Date 2019-09-07, 2019-09-07, 2019-09-08, 2019-09-08, 2019… #> $ Time \"15:00\", \"15:00\", \"12:30\", \"14:00\", \"14:00\", \"14:30\",… #> $ Home \"Manchester City\", \"Bristol City\", \"Chelsea\", \"Birmin… #> $ HomeGoals 1, 0, 1, 0, 0, 2, 0, 2, 1, 1, 1, 0, 2, 4, 0, 0, 0, 3,… #> $ Home_xG 0.5, 0.4, 1.3, 0.7, 0.5, 2.6, 0.2, 1.4, 1.6, 0.4, 1.4… #> $ Away \"Manchester Utd\", \"Brighton\", \"Tottenham\", \"Everton\",… #> $ AwayGoals 0, 0, 0, 1, 1, 1, 2, 0, 0, 1, 0, 1, 0, 0, 1, 2, 4, 0,… #> $ Away_xG 1.1, 2.1, 0.3, 0.8, 1.0, 0.8, 2.3, 1.0, 0.3, 1.7, 0.9… #> $ Attendance 31213, 3041, 24564, 873, 1445, 1795, 897, 441, 996, 1… #> $ Venue \"Etihad Stadium\", \"Stoke Gifford Stadium\", \"Stamford … #> $ Referee \"Rebecca Welch\", \"Abigail Bryne\", \"Jack Packman\", \"El… #> $ Notes \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"… #> $ MatchURL \"https://fbref.com/en/matches/f116cea0/Manchester-Der…"},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-fbref-match-results-for-cups-and-international-comps","dir":"Articles","previous_headings":"Load FBref","what":"Load FBref match results for Cups and International Comps","title":"Load Scraped Data Functions","text":"Similarly, load pre-scraped match results cups international matches years data available, load_match_comp_results() function can used. data scheduled updated days print statement inform user data last updated. following list competitions (comp_name) available:","code":"#> [1] \"AFC Asian Cup\" #> [2] \"AFC Asian Cup qualification\" #> [3] \"AFC Women's Asian Cup\" #> [4] \"AFC Women's Asian Cup Qualification\" #> [5] \"Africa Cup of Nations\" #> [6] \"Africa Cup of Nations qualification\" #> [7] \"Africa Women Cup of Nations\" #> [8] \"Algarve Cup\" #> [9] \"CONCACAF Gold Cup\" #> [10] \"CONCACAF W Championship\" #> [11] \"CONMEBOL Copa América\" #> [12] \"Copa América Femenina\" #> [13] \"Copa Libertadores de América\" #> [14] \"Copa Sudamericana\" #> [15] \"Copa de la Liga Profesional\" #> [16] \"Copa del Rey\" #> [17] \"Coppa Italia\" #> [18] \"Coupe de France\" #> [19] \"Coupe de la Ligue\" #> [20] \"DFB-Pokal\" #> [21] \"DFB-Pokal Frauen\" #> [22] \"EFL Cup\" #> [23] \"FA Cup\" #> [24] \"FIFA Confederations Cup\" #> [25] \"FIFA Women's World Cup\" #> [26] \"FIFA Women's World Cup Qualification (UEFA)\" #> [27] \"FIFA World Cup\" #> [28] \"FIFA World Cup Qualification — AFC\" #> [29] \"FIFA World Cup Qualification — CAF\" #> [30] \"FIFA World Cup Qualification — CONCACAF\" #> [31] \"FIFA World Cup Qualification — CONMEBOL\" #> [32] \"FIFA World Cup Qualification — Inter-confederation play-offs\" #> [33] \"FIFA World Cup Qualification — OFC\" #> [34] \"FIFA World Cup Qualification — UEFA\" #> [35] \"International Friendlies (M)\" #> [36] \"International Friendlies (W)\" #> [37] \"NWSL Challenge Cup\" #> [38] \"NWSL Fall Series\" #> [39] \"OFC Nations Cup\" #> [40] \"OFC Women's Nations Cup\" #> [41] \"Olympics — Women's Tournament\" #> [42] \"SheBelieves Cup\" #> [43] \"UEFA Champions League\" #> [44] \"UEFA Europa Conference League\" #> [45] \"UEFA Europa League\" #> [46] \"UEFA European Football Championship\" #> [47] \"UEFA European Football Championship Qualifying\" #> [48] \"UEFA Nations League\" #> [49] \"UEFA Women's Champions League\" #> [50] \"UEFA Women's Championship\" #> [51] \"UEFA Women's Euro Qualification\" cups <- c(\"FIFA Women's World Cup\",\"FIFA World Cup\") world_cups <- load_match_comp_results(comp_name = cups) dplyr::glimpse(world_cups) #> Rows: 1,312 #> Columns: 20 #> $ Competition_Name \"FIFA Women's World Cup\", \"FIFA Women's World Cup\", \"… #> $ Gender \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\", \"F\"… #> $ Country NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N… #> $ Season_End_Year 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991,… #> $ Round \"Group stage\", \"Group stage\", \"Group stage\", \"Group s… #> $ Wk NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N… #> $ Day \"Sat\", \"Sun\", \"Sun\", \"Sun\", \"Sun\", \"Sun\", \"Tue\", \"Tue… #> $ Date 1991-11-16, 1991-11-17, 1991-11-17, 1991-11-17, 1991… #> $ Time \"20:45\", \"15:30\", \"19:45\", \"19:45\", \"19:45\", \"19:45\",… #> $ Home \"China PR cn\", \"Germany de\", \"Japan jp\", \"Chinese Tai… #> $ HomeGoals 4, 4, 0, 0, 2, 3, 4, 1, 0, 0, 0, 2, 0, 0, 4, 2, 2, 0,… #> $ Home_xG NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N… #> $ Away \"no Norway\", \"ng Nigeria\", \"br Brazil\", \"it Italy\", \"… #> $ AwayGoals 0, 0, 1, 5, 3, 0, 0, 0, 3, 5, 8, 2, 3, 2, 1, 0, 1, 2,… #> $ Away_xG NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N… #> $ Attendance 65000, 14000, 14000, 11000, 14000, 14000, 12000, 1200… #> $ Venue \"Tianhe Stadium (Neutral Site)\", \"Jiangmen Stadium (N… #> $ Referee \"Salvador Imperatore Marcone\", \"Rafael Rodriguez\", \"L… #> $ Notes \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"… #> $ MatchURL \"https://fbref.com/en/matches/0d9e0f26/China-PR-Norwa…"},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-fbref-big-5-league-advanced-season-stats","dir":"Articles","previous_headings":"Load FBref","what":"Load FBref big 5 league advanced season stats","title":"Load Scraped Data Functions","text":"load pre-scraped advanced stats big five European leagues either teams players, load_fb_big5_advanced_season_stats() can used. data scheduled updated days print statement inform user data last updated. load function equivalent fb_big5_advanced_season_stats().","code":"all_season_player <- load_fb_big5_advanced_season_stats(stat_type = \"defense\", team_or_player = \"player\") current_season_player <- load_fb_big5_advanced_season_stats(season_end_year = 2022, stat_type = \"defense\", team_or_player = \"player\") all_season_team <- load_fb_big5_advanced_season_stats(stat_type = \"defense\", team_or_player = \"team\") current_season_team <- load_fb_big5_advanced_season_stats(season_end_year = 2022, stat_type = \"defense\", team_or_player = \"team\")"},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-fbref-match-shooting","dir":"Articles","previous_headings":"Load FBref","what":"Load FBref match shooting","title":"Load Scraped Data Functions","text":"load_fb_match_shooting() can used load pre-scraped match shooting logs FBref. load function equivalent fb_match_shooting(). handful leagues supported.","code":"## 2018 - current season for EPL load_fb_match_shooting( country = \"ENG\", gender = \"M\", tier = \"1st\" ) #> # A tibble: 67,575 × 23 #> MatchURL Date Squad Home_Away Match_Half Minute Player Player_Href xG #> #> 1 https://fbr… 2017… Arse… Home 1 2 Alexa… /en/player… 0.06 #> 2 https://fbr… 2017… Arse… Home 1 8 Alex … /en/player… 0.04 #> 3 https://fbr… 2017… Arse… Home 1 14 Alex … /en/player… 0.03 #> 4 https://fbr… 2017… Arse… Home 1 22 Danny… /en/player… 0.34 #> 5 https://fbr… 2017… Arse… Home 1 22 Grani… /en/player… 0.02 #> 6 https://fbr… 2017… Arse… Home 1 26 Danny… /en/player… 0.07 #> 7 https://fbr… 2017… Arse… Home 1 27 Sead … /en/player… 0.05 #> 8 https://fbr… 2017… Arse… Home 1 27 Moham… /en/player… 0.01 #> 9 https://fbr… 2017… Arse… Home 1 38 Grani… /en/player… 0.02 #> 10 https://fbr… 2017… Arse… Home 1 45+2 Alexa… /en/player… 0.07 #> # ℹ 67,565 more rows #> # ℹ 14 more variables: PSxG , Outcome , Distance , #> # `Body Part` , Notes , Player_SCA_1 , Event_SCA_1 , #> # Player_SCA_2 , Event_SCA_2 , Competition_Name , #> # Gender , Country , Tier , Season_End_Year ## just 2019, for multiple leagues at the same time load_fb_match_shooting( country = c(\"ITA\", \"ESP\"), gender = \"M\", tier = \"1st\", season_end_year = 2019 ) #> # A tibble: 19,810 × 23 #> MatchURL Date Squad Home_Away Match_Half Minute Player Player_Href xG #> #> 1 https://fbr… 2018… Chie… Home 1 15 Ivan … /en/player… 0.02 #> 2 https://fbr… 2018… Chie… Home 1 22 Ivan … /en/player… 0.02 #> 3 https://fbr… 2018… Chie… Home 1 38 Mariu… /en/player… 0.23 #> 4 https://fbr… 2018… Chie… Home 2 56 Emanu… /en/player… 0.79 #> 5 https://fbr… 2018… Chie… Home 2 67 Ivan … /en/player… 0.03 #> 6 https://fbr… 2018… Chie… Home 2 84 Fabri… /en/player… 0.02 #> 7 https://fbr… 2018… Juve… Away 1 3 Sami … /en/player… 0.20 #> 8 https://fbr… 2018… Juve… Away 1 5 Paulo… /en/player… 0.04 #> 9 https://fbr… 2018… Juve… Away 1 6 Sami … /en/player… 0.07 #> 10 https://fbr… 2018… Juve… Away 1 9 João … /en/player… 0.66 #> # ℹ 19,800 more rows #> # ℹ 14 more variables: PSxG , Outcome , Distance , #> # `Body Part` , Notes , Player_SCA_1 , Event_SCA_1 , #> # Player_SCA_2 , Event_SCA_2 , Competition_Name , #> # Gender , Country , Tier , Season_End_Year "},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-fbref-match-summary","dir":"Articles","previous_headings":"Load FBref","what":"Load FBref match summary","title":"Load Scraped Data Functions","text":"load_fb_match_summary() can used load pre-scraped match summaries FBref. load function equivalent fb_match_summary(). handful leagues supported.","code":"## 2018 - current season for EPL load_fb_match_summary( country = \"ENG\", gender = \"M\", tier = \"1st\" ) #> # A tibble: 33,923 × 33 #> MatchURL League Match_Date Matchweek Home_Team Home_Formation Home_Score #> #> 1 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 2 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 3 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 4 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 5 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 6 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 7 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 8 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 9 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 10 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> # ℹ 33,913 more rows #> # ℹ 26 more variables: Home_xG , Home_Goals , #> # Home_Yellow_Cards , Home_Red_Cards , Away_Team , #> # Away_Formation , Away_Score , Away_xG , Away_Goals , #> # Away_Yellow_Cards , Away_Red_Cards , Game_URL , Team , #> # Home_Away , Event_Time , Is_Pens , Event_Half , #> # Event_Type , Event_Players , Score_Progression , … ## just 2019, for multiple leagues at the same time load_fb_match_summary( country = c(\"ITA\", \"ESP\"), gender = \"M\", tier = \"1st\", season_end_year = 2019 ) #> # A tibble: 10,311 × 33 #> MatchURL League Match_Date Matchweek Home_Team Home_Formation Home_Score #> #> 1 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 2 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 3 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 4 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 5 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 6 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 7 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 8 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 9 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 10 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> # ℹ 10,301 more rows #> # ℹ 26 more variables: Home_xG , Home_Goals , #> # Home_Yellow_Cards , Home_Red_Cards , Away_Team , #> # Away_Formation , Away_Score , Away_xG , Away_Goals , #> # Away_Yellow_Cards , Away_Red_Cards , Game_URL , Team , #> # Home_Away , Event_Time , Is_Pens , Event_Half , #> # Event_Type , Event_Players , Score_Progression , …"},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-fbref-advanced-match-stats","dir":"Articles","previous_headings":"Load FBref","what":"Load FBref advanced match stats","title":"Load Scraped Data Functions","text":"load_fb_advanced_match_stats() can used load pre-scraped match summaries FBref. load function equivalent fb_advanced_match_stats(). leagues stat types supported.","code":"## 2018 - current season for EPL load_fb_advanced_match_stats( country = \"ENG\", gender = \"M\", tier = \"1st\", stat_type = \"summary\", team_or_player = \"player\" ) #> # A tibble: 74,985 × 58 #> MatchURL League Match_Date Matchweek Home_Team Home_Formation Home_Score #> #> 1 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 2 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 3 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 4 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 5 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 6 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 7 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 8 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 9 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> 10 https://fbre… Premi… 2017-08-11 Premier … Arsenal 3-4-3 4 #> # ℹ 74,975 more rows #> # ℹ 51 more variables: Home_xG , Home_Goals , #> # Home_Yellow_Cards , Home_Red_Cards , Away_Team , #> # Away_Formation , Away_Score , Away_xG , Away_Goals , #> # Away_Yellow_Cards , Away_Red_Cards , Game_URL , Team , #> # Home_Away , Player , Player_Href , Player_Num , #> # Nation , Pos , Age , Min , Gls , Ast , … ## just 2019, for multiple leagues at the same time load_fb_advanced_match_stats( country = c(\"ITA\", \"ESP\"), gender = \"M\", tier = \"1st\", season_end_year = 2019, stat_type = \"defense\", team_or_player = \"player\" ) #> # A tibble: 21,106 × 49 #> MatchURL League Match_Date Matchweek Home_Team Home_Formation Home_Score #> #> 1 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 2 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 3 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 4 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 5 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 6 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 7 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 8 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 9 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 10 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> # ℹ 21,096 more rows #> # ℹ 42 more variables: Home_xG , Home_Goals , #> # Home_Yellow_Cards , Home_Red_Cards , Away_Team , #> # Away_Formation , Away_Score , Away_xG , Away_Goals , #> # Away_Yellow_Cards , Away_Red_Cards , Game_URL , Team , #> # Home_Away , Player , Player_Href , Player_Num , #> # Nation , Pos , Age , Min , Tkl_Tackles , …"},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-understat","dir":"Articles","previous_headings":"","what":"Load Understat","title":"Load Scraped Data Functions","text":"following section demonstrates different loading functions Understat data.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/articles/load-scraped-data.html","id":"load-league-shots","dir":"Articles","previous_headings":"Load Understat","what":"Load League Shots","title":"Load Scraped Data Functions","text":"able rapidly load pre-collected chooting locations whole leagues, load_understat_league_shots() functions now available. Supported leagues Understat : “EPL” “La liga” “Bundesliga” “Serie ” “Ligue 1” “RFPL” effectively loading equivalent understat_league_season_shots() function, however rather needing scraped season time, data loads rapidly seasons selected league since 2014/15 seasons.","code":"serie_a_shot_locations <- load_understat_league_shots(league = \"Serie A\") dplyr::glimpse(serie_a_shot_locations) #> Rows: 100,185 #> Columns: 22 #> $ league \"Serie_A\", \"Serie_A\", \"Serie_A\", \"Serie_A\", \"Serie_A\",… #> $ id 41439, 41444, 41445, 41446, 41451, 41452, 41461, 41462… #> $ minute 2, 5, 7, 8, 19, 24, 76, 76, 0, 3, 3, 3, 5, 10, 15, 15,… #> $ result \"MissedShots\", \"OwnGoal\", \"SavedShot\", \"MissedShots\", … #> $ X 0.845, 0.009, 0.896, 0.875, 0.813, 0.780, 0.780, 0.867… #> $ Y 0.641, 0.539, 0.373, 0.661, 0.180, 0.374, 0.499, 0.520… #> $ xG 0.009113184, 0.000000000, 0.019183254, 0.042726491, 0.… #> $ player \"Maxi López\", \"Cristiano Biraghi\", \"Ezequiel Schelotto… #> $ h_a \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"h\", \"a\", \"a\", \"a\",… #> $ player_id 1188, 1164, 3873, 1188, 1336, 3873, 716, 1188, 3848, 1… #> $ situation \"OpenPlay\", \"FromCorner\", \"OpenPlay\", \"SetPiece\", \"Fro… #> $ season 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, … #> $ shotType \"Head\", \"OtherBodyPart\", \"Head\", \"RightFoot\", \"LeftFoo… #> $ match_id 5149, 5149, 5149, 5149, 5149, 5149, 5149, 5149, 5149, … #> $ home_team \"Chievo\", \"Chievo\", \"Chievo\", \"Chievo\", \"Chievo\", \"Chi… #> $ away_team \"Juventus\", \"Juventus\", \"Juventus\", \"Juventus\", \"Juven… #> $ home_goals 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, … #> $ away_goals 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, … #> $ date \"2014-08-30 17:00:00\", \"2014-08-30 17:00:00\", \"2014-08… #> $ player_assisted \"Cristiano Biraghi\", NA, \"Nicolas Frey\", \"Ezequiel Sch… #> $ lastAction \"Cross\", \"CrossNotClaimed\", \"Cross\", \"Pass\", \"Pass\", \"… #> $ home_away NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA…"},{"path":"https://jaseziv.github.io/worldfootballR/authors.html","id":null,"dir":"","previous_headings":"","what":"Authors","title":"Authors and Citation","text":"Jason Zivkovic. Author, maintainer, copyright holder. Tony ElHabr. Contributor. Tan Ho. Contributor. Samuel H. Contributor.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/authors.html","id":"citation","dir":"","previous_headings":"","what":"Citation","title":"Authors and Citation","text":"Zivkovic J (2024). worldfootballR: Extract Clean World Football (Soccer) Data. R package version 0.6.5.0004, https://github.com/JaseZiv/worldfootballR.","code":"@Manual{, title = {worldfootballR: Extract and Clean World Football (Soccer) Data}, author = {Jason Zivkovic}, year = {2024}, note = {R package version 0.6.5.0004}, url = {https://github.com/JaseZiv/worldfootballR}, }"},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"overview","dir":"","previous_headings":"","what":"Overview","title":"Extract and Clean World Football (Soccer) Data","text":"package designed allow users extract various world football results player statistics following popular football (soccer) data sites: FBref Transfermarkt Understat","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"installation","dir":"","previous_headings":"","what":"Installation","title":"Extract and Clean World Football (Soccer) Data","text":"2024-06-29, longer including instructions install CRAN. version pushed CRAN much date, regular updates library, advise installing GitHub . can install released version worldfootballR GitHub :","code":"# install.packages(\"devtools\") devtools::install_github(\"JaseZiv/worldfootballR\") library(worldfootballR)"},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"usage","dir":"","previous_headings":"","what":"Usage","title":"Extract and Clean World Football (Soccer) Data","text":"Package vignettes built help get started package. functions extract data FBref, see functions extract data Transfermarkt, see functions extract data Understat, see functions extract data international matches FBref, see functions load pre-scraped data, see ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"loading-data","dir":"","previous_headings":"Usage","what":"Loading Data","title":"Extract and Clean World Football (Soccer) Data","text":"Since release v0.5.3, library now supports rapid loading pre-collected data use load_ functions. data available loading stored worldfootballR_data repository. repo can found . Head vignette see examples data available rapid loading.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"news","dir":"","previous_headings":"","what":"News","title":"Extract and Clean World Football (Soccer) Data","text":"stay --date latest changes, see package change log Note fotmob data longer provided since release v0.6.4 due change terms service.","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"fbref","dir":"","previous_headings":"Leagues and Seasons","what":"FBref","title":"Extract and Clean World Football (Soccer) Data","text":"FBref.com data (match season data), list leagues seasons included package can found worldfootballR_data repository can found ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"transfermarkt","dir":"","previous_headings":"Leagues and Seasons","what":"Transfermarkt","title":"Extract and Clean World Football (Soccer) Data","text":"transfermarkt.com data (valuations transfers), list leagues seasons included package can found worldfootballR_data repository can found ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"understat","dir":"","previous_headings":"Leagues and Seasons","what":"Understat","title":"Extract and Clean World Football (Soccer) Data","text":"following leagues currently supported Understat (values can passed league arguments understat_ functions): “EPL” “La liga” “Bundesliga” “Serie ” “Ligue 1” “RFPL”","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"attribute-the-source","dir":"","previous_headings":"","what":"Attribute the Source","title":"Extract and Clean World Football (Soccer) Data","text":"using functions package, please ensure attribute source data based function use. Data providers listed : FBref partnered StatsPerform Opta Transfermarkt Understat","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"acknowledgements","dir":"","previous_headings":"Attribute the Source","what":"Acknowledgements","title":"Extract and Clean World Football (Soccer) Data","text":"Special mention goes Ewan Henderson’s awesome understatr library inspiration internal code understat_ functions contained package.","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"issues-and-improvements","dir":"","previous_headings":"Contributing","what":"Issues and Improvements","title":"Extract and Clean World Football (Soccer) Data","text":"creating issue, please ensure latest version installed GitHub. Check changelog details changes made library. creating issue, please include: Reproducible examples brief description expected results applicable, fbref.com, transfermarkt.com understat.com page observed behaviour occurring improvement suggestions, features requested purpose Feel free get touch via email twitter https://twitter.com/jaseziv aren’t able create issue.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/index.html","id":"show-your-support","dir":"","previous_headings":"Contributing","what":"Show your support","title":"Extract and Clean World Football (Soccer) Data","text":"Follow Twitter (jaseziv) updates package helps , ask star repo. want show support contribute server time data storage costs, feel free send small donation link .","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_advanced_match_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref advanced match stats — fb_advanced_match_stats","title":"Get FBref advanced match stats — fb_advanced_match_stats","text":"Returns data frame selected statistics match, either whole team individual players. Multiple URLs can passed function, one `stat_type` can selected. Replaces deprecated function get_advanced_match_stats()","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_advanced_match_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref advanced match stats — fb_advanced_match_stats","text":"","code":"fb_advanced_match_stats(match_url, stat_type, team_or_player, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_advanced_match_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref advanced match stats — fb_advanced_match_stats","text":"match_url three character country code countries stat_type type team statistics user requires team_or_player result either summarised team, individual players time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"summary\", \"passing\", \"passing\"_types, \"defense\" , \"possession\", \"misc\", \"keeper\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_advanced_match_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref advanced match stats — fb_advanced_match_stats","text":"returns dataframe selected team statistic type selected match(es)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_advanced_match_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref advanced match stats — fb_advanced_match_stats","text":"","code":"if (FALSE) { try({ urls <- fb_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\") df <- fb_advanced_match_stats(match_url=urls,stat_type=\"possession\",team_or_player=\"player\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_big5_advanced_season_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Big 5 Euro League Season Stats — fb_big5_advanced_season_stats","title":"Big 5 Euro League Season Stats — fb_big5_advanced_season_stats","text":"Returns data frame selected statistics seasons big 5 Euro leagues, either whole team individual players. Multiple seasons can passed function, one `stat_type` can selected","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_big5_advanced_season_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Big 5 Euro League Season Stats — fb_big5_advanced_season_stats","text":"","code":"fb_big5_advanced_season_stats( season_end_year, stat_type, team_or_player, time_pause = 3 )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_big5_advanced_season_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Big 5 Euro League Season Stats — fb_big5_advanced_season_stats","text":"season_end_year year(s) season concludes stat_type type team statistics user requires team_or_player result either summarised team, individual players time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"standard\", \"shooting\", \"passing\", \"passing_types\", \"gca\", \"defense\", \"possession\", \"playing_time\", \"misc\", \"keepers\", \"keepers_adv\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_big5_advanced_season_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Big 5 Euro League Season Stats — fb_big5_advanced_season_stats","text":"returns dataframe selected team player statistic type selected season(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_big5_advanced_season_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Big 5 Euro League Season Stats — fb_big5_advanced_season_stats","text":"","code":"if (FALSE) { try({ fb_big5_advanced_season_stats(season_end_year=2021,stat_type=\"possession\",team_or_player=\"player\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref Team or Player Season Statistics for an Entire League — fb_league_stats","title":"Get FBref Team or Player Season Statistics for an Entire League — fb_league_stats","text":"Get season stats teams / players selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref Team or Player Season Statistics for an Entire League — fb_league_stats","text":"","code":"fb_league_stats( country, gender, season_end_year, tier = \"1st\", non_dom_league_url = NA, stat_type, team_or_player, time_pause = 3, rate = purrr::rate_backoff(max_times = 3) )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref Team or Player Season Statistics for an Entire League — fb_league_stats","text":"country three character country code gender gender competition, either \"M\" \"F\", season_end_year year season(s) concludes tier tier league, ie '1st' EPL '2nd' Championship non_dom_league_url URL Cups Competitions found https://fbref.com/en/comps/ stat_type type statistic required. Must one following: standard shooting passing passing_types gca defense possession playing_time misc keepers keepers_adv team_or_player result either summarised team, individual players time_pause wait time (seconds) page loads rate passed `purrr::insistently`. function can brittle, works second third try. parameter controls much function retry get result.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref Team or Player Season Statistics for an Entire League — fb_league_stats","text":"dataframe season stats teams / players league","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref Team or Player Season Statistics for an Entire League — fb_league_stats","text":"","code":"if (FALSE) { try({ fb_league_stats( country = \"ENG\", gender = \"M\", season_end_year = 2022, tier = \"1st\", stat_type = \"shooting\", team_or_player = \"player\" ) ## Non-domestic league ## Note that this is more likely to fail due to the volume of players fb_league_stats( country = NA_character_, gender = \"M\", season_end_year = 2023, tier = NA_character_, non_dom_league_url = \"https://fbref.com/en/comps/8/history/Champions-League-Seasons\", stat_type = \"standard\", team_or_player = \"player\" ) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get fbref League URLs — fb_league_urls","title":"Get fbref League URLs — fb_league_urls","text":"Returns URLs season leagues selected country","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get fbref League URLs — fb_league_urls","text":"","code":"fb_league_urls(country, gender, season_end_year, tier = \"1st\")"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get fbref League URLs — fb_league_urls","text":"country three character country code gender gender competition, either \"M\" \"F\" season_end_year year season(s) concludes (defaults available seasons) tier tier league, ie '1st' EPL '2nd' Championship ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get fbref League URLs — fb_league_urls","text":"returns character vector fbref league URLs selected country, season, gender tier","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_league_urls.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get fbref League URLs — fb_league_urls","text":"","code":"if (FALSE) { try({ fb_league_urls(country = \"ENG\", gender = \"M\", season_end_year = 2021, tier = '1st') }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_lineups.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref match lineups — fb_match_lineups","title":"Get FBref match lineups — fb_match_lineups","text":"Returns lineups home away teams selected match Replaces deprecated function get_match_lineups","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_lineups.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref match lineups — fb_match_lineups","text":"","code":"fb_match_lineups(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_lineups.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref match lineups — fb_match_lineups","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_lineups.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref match lineups — fb_match_lineups","text":"returns dataframe team lineups selected match","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_lineups.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref match lineups — fb_match_lineups","text":"","code":"if (FALSE) { try({ match <- fb_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\")[1] df <- fb_match_lineups(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_report.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref match report — fb_match_report","title":"Get FBref match report — fb_match_report","text":"Returns match report details selected matches. Replaces deprecated function get_match_report","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_report.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref match report — fb_match_report","text":"","code":"fb_match_report(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_report.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref match report — fb_match_report","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_report.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref match report — fb_match_report","text":"returns dataframe match details selected match","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_report.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref match report — fb_match_report","text":"","code":"if (FALSE) { try({ match <- fb_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\")[1] df <- fb_match_report(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_results.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref match results — fb_match_results","title":"Get FBref match results — fb_match_results","text":"Returns game results given league season(s) Replaces deprecated function get_match_results","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_results.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref match results — fb_match_results","text":"","code":"fb_match_results( country, gender, season_end_year, tier = \"1st\", non_dom_league_url = NA )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_results.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref match results — fb_match_results","text":"country three character country code gender gender competition, either \"M\" \"F\" season_end_year year(s) season concludes tier tier league, ie '1st' EPL '2nd' Championship non_dom_league_url URL Cups Competitions found https://fbref.com/en/comps/","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_results.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref match results — fb_match_results","text":"returns dataframe results competition, season gender","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_results.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref match results — fb_match_results","text":"","code":"if (FALSE) { try({ df <- fb_match_results(country = c(\"ITA\"), gender = \"M\", season_end_year = 2021) # for results from English Championship: df <- fb_match_results(country = \"ENG\", gender = \"M\", season_end_year = 2021, tier = \"2nd\") # for international friendlies: }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_shooting.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref match shooting event data — fb_match_shooting","title":"Get FBref match shooting event data — fb_match_shooting","text":"Returns detailed player shooting data home away teams selected match(es) Replaces deprecated function get_match_shooting","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_shooting.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref match shooting event data — fb_match_shooting","text":"","code":"fb_match_shooting(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_shooting.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref match shooting event data — fb_match_shooting","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_shooting.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref match shooting event data — fb_match_shooting","text":"returns dataframe","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_shooting.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref match shooting event data — fb_match_shooting","text":"","code":"if (FALSE) { try({ match <- \"https://fbref.com/en/matches/bf52349b/Fulham-Arsenal-September-12-2020-Premier-League\" df <- fb_match_shooting(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_summary.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref match summary — fb_match_summary","title":"Get FBref match summary — fb_match_summary","text":"Returns match summary data selected match URLs, including goals, subs cards Replaces deprecated function get_match_summary","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_summary.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref match summary — fb_match_summary","text":"","code":"fb_match_summary(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_summary.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref match summary — fb_match_summary","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_summary.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref match summary — fb_match_summary","text":"returns dataframe match events (goals, cards, subs) selected matches","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_summary.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref match summary — fb_match_summary","text":"","code":"if (FALSE) { try({ match <- fb_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\")[1] df <- fb_match_summary(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref match URLs — fb_match_urls","title":"Get FBref match URLs — fb_match_urls","text":"Returns URL match played given league season Replaces deprecated get_match_urls","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref match URLs — fb_match_urls","text":"","code":"fb_match_urls( country, gender, season_end_year, tier = \"1st\", non_dom_league_url = NA, time_pause = 3 )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref match URLs — fb_match_urls","text":"country three character country code gender gender competition, either \"M\" \"F\", season_end_year year season(s) concludes tier tier league, ie '1st' EPL '2nd' Championship non_dom_league_url URL Cups Competitions found https://fbref.com/en/comps/ time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref match URLs — fb_match_urls","text":"returns character vector fbref match URLs selected competition, season gender","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_match_urls.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref match URLs — fb_match_urls","text":"","code":"if (FALSE) { try({ fb_match_urls(country = \"ENG\", gender = \"M\", season_end_year = c(2019:2021), tier = \"1st\") non_dom <- \"https://fbref.com/en/comps/218/history/Friendlies-M-Seasons\" fb_match_urls(country = \"\", gender = \"M\", season_end_year = 2021, non_dom_league_url = non_dom) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_goal_logs.html","id":null,"dir":"Reference","previous_headings":"","what":"Get player goal logs — fb_player_goal_logs","title":"Get player goal logs — fb_player_goal_logs","text":"Returns player's career goal assist logs","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_goal_logs.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get player goal logs — fb_player_goal_logs","text":"","code":"fb_player_goal_logs(player_urls, time_pause = 3, goals_or_assists = \"goals\")"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_goal_logs.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get player goal logs — fb_player_goal_logs","text":"player_urls URL(s) player(s) time_pause wait time (seconds) page loads goals_or_assists select whether return data \"goals\" (default), \"assists\", \"\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_goal_logs.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get player goal logs — fb_player_goal_logs","text":"returns dataframe player's goals assists","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_goal_logs.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get player goal logs — fb_player_goal_logs","text":"","code":"if (FALSE) { try({ # for single players: jwp_url <- \"https://fbref.com/en/players/3515d404/\" fb_player_goal_logs(player_urls = jwp_url, goals_or_assists = \"goals\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_match_logs.html","id":null,"dir":"Reference","previous_headings":"","what":"Get fbref Player Match Logs — fb_player_match_logs","title":"Get fbref Player Match Logs — fb_player_match_logs","text":"Returns match logs selected player, season stat type","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_match_logs.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get fbref Player Match Logs — fb_player_match_logs","text":"","code":"fb_player_match_logs(player_url, season_end_year, stat_type, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_match_logs.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get fbref Player Match Logs — fb_player_match_logs","text":"player_url URL player (can come fb_player_urls()) season_end_year year season(s) concludes stat_type type statistic required time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"summary\", \"keepers\", \"passing\", \"passing_types\", \"gca\", \"defense\", \"possession\", \"misc\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_match_logs.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get fbref Player Match Logs — fb_player_match_logs","text":"returns dataframe player's match logs season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_match_logs.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get fbref Player Match Logs — fb_player_match_logs","text":"","code":"# \\donttest{ try({ fb_player_match_logs(\"https://fbref.com/en/players/3bb7b8b4/Ederson\", season_end_year = 2021, stat_type = 'summary') }) #> Warning: Internal Server Error (HTTP 500). #> Error in map(.x, .f, ...) : ℹ In index: 1. #> Caused by error in `read_html.response()`: #> ! Internal Server Error (HTTP 500). # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_scouting_report.html","id":null,"dir":"Reference","previous_headings":"","what":"Get fbref Full Player Scouting Report — fb_player_scouting_report","title":"Get fbref Full Player Scouting Report — fb_player_scouting_report","text":"Returns scouting report selected player","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_scouting_report.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get fbref Full Player Scouting Report — fb_player_scouting_report","text":"","code":"fb_player_scouting_report( player_url, pos_versus, league_comp_name = NULL, time_pause = 3 )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_scouting_report.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get fbref Full Player Scouting Report — fb_player_scouting_report","text":"player_url URL player (can come fb_player_urls()) pos_versus either \"primary\" \"secondary\" fbref offer comparisons multiple positions league_comp_name league competition name(s) want scouting report . Defaults time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_scouting_report.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get fbref Full Player Scouting Report — fb_player_scouting_report","text":"returns dataframe player's full scouting information seasons available FBref","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_scouting_report.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get fbref Full Player Scouting Report — fb_player_scouting_report","text":"","code":"if (FALSE) { try({ fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"primary\") # to filter for the last 365 days: fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"primary\", league_comp_name = \"Last 365 Days Men's Big 5 Leagues, UCL, UEL\") # to get secondary positions fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"secondary\") # for the last 365 days and also the 2022 WC fb_player_scouting_report(player_url = \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", pos_versus = \"secondary\", league_comp_name = c(\"Last 365 Days Men's Big 5 Leagues, UCL, UEL\", \"2022 World Cup\")) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_season_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get fbref Player Season Statistics — fb_player_season_stats","title":"Get fbref Player Season Statistics — fb_player_season_stats","text":"Returns historical season stats selected player(s) stat type","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_season_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get fbref Player Season Statistics — fb_player_season_stats","text":"","code":"fb_player_season_stats(player_url, stat_type, national = FALSE, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_season_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get fbref Player Season Statistics — fb_player_season_stats","text":"player_url URL(s) player(s) (can come fb_player_urls()) stat_type type statistic required national category required stats, FALSE Club Stats TRUE National Team Stats time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"standard\", \"shooting\", \"passing\", \"passing_types\", \"gca\", \"defense\", \"possession\" \"playing_time\", \"misc\", \"keeper\", \"keeper_adv\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_season_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get fbref Player Season Statistics — fb_player_season_stats","text":"returns dataframe player's historical season stats","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_season_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get fbref Player Season Statistics — fb_player_season_stats","text":"","code":"if (FALSE) { try({ standard_stats <- fb_player_season_stats( \"https://fbref.com/en/players/3bb7b8b4/Ederson\", stat_type = \"standard\" ) multiple_playing_time <- fb_player_season_stats( player_url = c( \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", \"https://fbref.com/en/players/dea698d9/Cristiano-Ronaldo\" ), stat_type = \"playing_time\" ) national_standard_stats <- fb_player_season_stats( \"https://fbref.com/en/players/3bb7b8b4/Ederson\", stat_type = \"standard\", national = TRUE ) multiple_national_playing_time <- fb_player_season_stats( player_url = c( \"https://fbref.com/en/players/d70ce98e/Lionel-Messi\", \"https://fbref.com/en/players/dea698d9/Cristiano-Ronaldo\" ), stat_type = \"playing_time\", national = TRUE ) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get fbref Player URLs — fb_player_urls","title":"Get fbref Player URLs — fb_player_urls","text":"Returns URLs players given team","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get fbref Player URLs — fb_player_urls","text":"","code":"fb_player_urls(team_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get fbref Player URLs — fb_player_urls","text":"team_url player's team URL (can fb_team_urls()) time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get fbref Player URLs — fb_player_urls","text":"returns character vector fbref player URLs selected team","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_player_urls.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get fbref Player URLs — fb_player_urls","text":"","code":"if (FALSE) { try({ fb_player_urls(\"https://fbref.com/en/squads/fd962109/Fulham-Stats\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_season_team_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref season team stats — fb_season_team_stats","title":"Get FBref season team stats — fb_season_team_stats","text":"Returns different team season statistics results given league season stat type Replaces deprecated function get_season_team_stats","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_season_team_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref season team stats — fb_season_team_stats","text":"","code":"fb_season_team_stats( country, gender, season_end_year, tier, stat_type, time_pause = 3 )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_season_team_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref season team stats — fb_season_team_stats","text":"country three character country code countries gender gender competition, either \"M\", \"F\" season_end_year year season(s) concludes tier tier league, ie '1st' EPL '2nd' Championship stat_type type team statistics user requires time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"league_table\", \"league_table_home_away\", \"standard\", \"keeper\", \"keeper_adv\", \"shooting\", \"passing\", \"passing_types\", \"goal_shot_creation\", \"defense\" , \"possession\", \"playing_time\", \"misc\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_season_team_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref season team stats — fb_season_team_stats","text":"returns dataframe selected team statistic type selected league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_season_team_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref season team stats — fb_season_team_stats","text":"","code":"if (FALSE) { try({ fb_season_team_stats(\"ITA\", \"M\", 2021, \"1st\", \"defense\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_squad_wages.html","id":null,"dir":"Reference","previous_headings":"","what":"Get team player wages — fb_squad_wages","title":"Get team player wages — fb_squad_wages","text":"Returns player wages FBref via Capology","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_squad_wages.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get team player wages — fb_squad_wages","text":"","code":"fb_squad_wages(team_urls, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_squad_wages.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get team player wages — fb_squad_wages","text":"team_urls URL(s) teams(s) (can come fb_teams_urls()) time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_squad_wages.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get team player wages — fb_squad_wages","text":"returns dataframe available estimated player wages selected team(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_squad_wages.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get team player wages — fb_squad_wages","text":"","code":"if (FALSE) { try({ # for single teams: man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" fb_squad_wages(team_urls = man_city_url) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_goal_logs.html","id":null,"dir":"Reference","previous_headings":"","what":"Get team goal logs — fb_team_goal_logs","title":"Get team goal logs — fb_team_goal_logs","text":"Returns team's season goal logs","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_goal_logs.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get team goal logs — fb_team_goal_logs","text":"","code":"fb_team_goal_logs(team_urls, time_pause = 3, for_or_against = \"for\")"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_goal_logs.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get team goal logs — fb_team_goal_logs","text":"team_urls URL(s) team(s) (can come fb_teams_urls()) time_pause wait time (seconds) page loads for_or_against select whether return data goals \"\" (default), goals \"\", \"\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_goal_logs.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get team goal logs — fb_team_goal_logs","text":"returns dataframe team's goals scored conceded season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_goal_logs.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get team goal logs — fb_team_goal_logs","text":"","code":"if (FALSE) { try({ # for single teams: man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" fb_team_goal_logs(team_urls = man_city_url, for_or_against = \"for\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_log_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get team match log stats — fb_team_match_log_stats","title":"Get team match log stats — fb_team_match_log_stats","text":"Returns match statistics team(s) given season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_log_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get team match log stats — fb_team_match_log_stats","text":"","code":"fb_team_match_log_stats(team_urls, stat_type, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_log_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get team match log stats — fb_team_match_log_stats","text":"team_urls URL(s) teams(s) (can come fb_teams_urls()) stat_type type statistic required time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"shooting\", \"keeper\", \"passing\", \"passing_types\", \"gca\", \"defense\", \"misc\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_log_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get team match log stats — fb_team_match_log_stats","text":"returns dataframe selected stat outputs games played selected team(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_log_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get team match log stats — fb_team_match_log_stats","text":"","code":"if (FALSE) { try({ # for single teams: man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" fb_team_match_log_stats(team_urls = man_city_url, stat_type = \"passing\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_results.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref team match results — fb_team_match_results","title":"Get FBref team match results — fb_team_match_results","text":"Returns game results team given season Replaces deprecated function get_team_match_results","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_results.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref team match results — fb_team_match_results","text":"","code":"fb_team_match_results(team_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_results.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref team match results — fb_team_match_results","text":"team_url URL team season time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_results.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref team match results — fb_team_match_results","text":"returns dataframe results games played selected team(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_results.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref team match results — fb_team_match_results","text":"","code":"if (FALSE) { try({ # for single teams: man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" fb_team_match_results(man_city_url) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get FBref match team stats — fb_team_match_stats","title":"Get FBref match team stats — fb_team_match_stats","text":"Returns match team stats selected matches.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get FBref match team stats — fb_team_match_stats","text":"","code":"fb_team_match_stats(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get FBref match team stats — fb_team_match_stats","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get FBref match team stats — fb_team_match_stats","text":"returns dataframe match team stats selected match","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_match_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get FBref match team stats — fb_team_match_stats","text":"","code":"if (FALSE) { try({ match <- fb_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\")[1] df <- fb_team_match_stats(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_player_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get fbref Team's Player Season Statistics — fb_team_player_stats","title":"Get fbref Team's Player Season Statistics — fb_team_player_stats","text":"Returns team's players season stats selected team(s) stat type","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_player_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get fbref Team's Player Season Statistics — fb_team_player_stats","text":"","code":"fb_team_player_stats(team_urls, stat_type, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_player_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get fbref Team's Player Season Statistics — fb_team_player_stats","text":"team_urls URL(s) teams(s) (can come fb_teams_urls()) stat_type type statistic required time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"standard\", \"shooting\", \"passing\", \"passing_types\", \"gca\", \"defense\", \"possession\" \"playing_time\", \"misc\", \"keeper\", \"keeper_adv\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_player_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get fbref Team's Player Season Statistics — fb_team_player_stats","text":"returns dataframe players team's season stats","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_team_player_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get fbref Team's Player Season Statistics — fb_team_player_stats","text":"","code":"if (FALSE) { try({ fb_team_player_stats(\"https://fbref.com/en/squads/d6a369a2/Fleetwood-Town-Stats\", stat_type = 'standard') league_url <- fb_league_urls(country = \"ENG\", gender = \"M\", season_end_year = 2022, tier = \"3rd\") team_urls <- fb_teams_urls(league_url) multiple_playing_time <- fb_team_player_stats(team_urls, stat_type = \"playing_time\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_teams_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get fbref Team URLs — fb_teams_urls","title":"Get fbref Team URLs — fb_teams_urls","text":"Returns URLs teams given league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_teams_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get fbref Team URLs — fb_teams_urls","text":"","code":"fb_teams_urls(league_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_teams_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get fbref Team URLs — fb_teams_urls","text":"league_url league URL (can fb_league_urls()) time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_teams_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get fbref Team URLs — fb_teams_urls","text":"returns character vector fbref team URLs selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/fb_teams_urls.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get fbref Team URLs — fb_teams_urls","text":"","code":"if (FALSE) { try({ fb_teams_urls(\"https://fbref.com/en/comps/9/Premier-League-Stats\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_advanced_match_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get advanced match stats — get_advanced_match_stats","title":"Get advanced match stats — get_advanced_match_stats","text":"Returns data frame selected statistics match, either whole team individual players. Multiple URLs can passed function, one `stat_type` can selected","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_advanced_match_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get advanced match stats — get_advanced_match_stats","text":"","code":"get_advanced_match_stats(match_url, stat_type, team_or_player, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_advanced_match_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get advanced match stats — get_advanced_match_stats","text":"match_url three character country code countries stat_type type team statistics user requires team_or_player result either summarised team, individual players time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"summary\", \"passing\", \"passing\"_types, \"defense\" , \"possession\", \"misc\", \"keeper\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_advanced_match_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get advanced match stats — get_advanced_match_stats","text":"returns dataframe selected team statistic type selected match(es)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_advanced_match_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get advanced match stats — get_advanced_match_stats","text":"","code":"if (FALSE) { try({ urls <- get_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\") df <- get_advanced_match_stats(match_url=urls,stat_type=\"possession\",team_or_player=\"player\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_lineups.html","id":null,"dir":"Reference","previous_headings":"","what":"Get match lineups — get_match_lineups","title":"Get match lineups — get_match_lineups","text":"Returns lineups home away teams selected match","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_lineups.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get match lineups — get_match_lineups","text":"","code":"get_match_lineups(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_lineups.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get match lineups — get_match_lineups","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_lineups.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get match lineups — get_match_lineups","text":"returns dataframe team lineups selected match","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_lineups.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get match lineups — get_match_lineups","text":"","code":"if (FALSE) { try({ match <- get_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\")[1] df <- get_match_lineups(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_report.html","id":null,"dir":"Reference","previous_headings":"","what":"Get match report — get_match_report","title":"Get match report — get_match_report","text":"Returns match report details selected matches","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_report.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get match report — get_match_report","text":"","code":"get_match_report(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_report.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get match report — get_match_report","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_report.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get match report — get_match_report","text":"returns dataframe match details selected match","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_report.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get match report — get_match_report","text":"","code":"if (FALSE) { try({ match <- get_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\")[1] df <- get_match_report(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_results.html","id":null,"dir":"Reference","previous_headings":"","what":"Get match results — get_match_results","title":"Get match results — get_match_results","text":"Returns game results given league season(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_results.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get match results — get_match_results","text":"","code":"get_match_results( country, gender, season_end_year, tier = \"1st\", non_dom_league_url = NA )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_results.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get match results — get_match_results","text":"country three character country code gender gender competition, either \"M\" \"F\" season_end_year year(s) season concludes tier tier league, ie '1st' EPL '2nd' Championship non_dom_league_url URL Cups Competitions found https://fbref.com/en/comps/","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_results.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get match results — get_match_results","text":"returns dataframe results competition, season gender","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_results.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get match results — get_match_results","text":"","code":"if (FALSE) { try({ df <- get_match_results(country = c(\"ITA\"), gender = \"M\", season_end_year = 2021) # for results from English Championship: df <- get_match_results(country = \"ENG\", gender = \"M\", season_end_year = 2021, tier = \"2nd\") # for international friendlies: }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_shooting.html","id":null,"dir":"Reference","previous_headings":"","what":"Get match shooting event data — get_match_shooting","title":"Get match shooting event data — get_match_shooting","text":"Returns detailed player shooting data home away teams selected match(es)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_shooting.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get match shooting event data — get_match_shooting","text":"","code":"get_match_shooting(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_shooting.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get match shooting event data — get_match_shooting","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_shooting.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get match shooting event data — get_match_shooting","text":"returns dataframe","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_shooting.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get match shooting event data — get_match_shooting","text":"","code":"if (FALSE) { try({ match <- \"https://fbref.com/en/matches/bf52349b/Fulham-Arsenal-September-12-2020-Premier-League\" df <- get_match_shooting(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_summary.html","id":null,"dir":"Reference","previous_headings":"","what":"Get match summary — get_match_summary","title":"Get match summary — get_match_summary","text":"Returns match summary data selected match URLs, including goals, subs cards","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_summary.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get match summary — get_match_summary","text":"","code":"get_match_summary(match_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_summary.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get match summary — get_match_summary","text":"match_url fbref.com URL required match time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_summary.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get match summary — get_match_summary","text":"returns dataframe match events (goals, cards, subs) selected matches","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_summary.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get match summary — get_match_summary","text":"","code":"if (FALSE) { try({ match <- get_match_urls(country = \"AUS\", gender = \"F\", season_end_year = 2021, tier = \"1st\")[1] df <- get_match_summary(match_url = match) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get match URLs — get_match_urls","title":"Get match URLs — get_match_urls","text":"Returns URL match played given league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get match URLs — get_match_urls","text":"","code":"get_match_urls( country, gender, season_end_year, tier = \"1st\", non_dom_league_url = NA, time_pause = 3 )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get match URLs — get_match_urls","text":"country three character country code gender gender competition, either \"M\" \"F\", season_end_year year season(s) concludes tier tier league, ie '1st' EPL '2nd' Championship non_dom_league_url URL Cups Competitions found https://fbref.com/en/comps/ time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get match URLs — get_match_urls","text":"returns character vector fbref match URLs selected competition, season gender","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_match_urls.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get match URLs — get_match_urls","text":"","code":"if (FALSE) { try({ get_match_urls(country = \"ENG\", gender = \"M\", season_end_year = c(2019:2021), tier = \"1st\") non_dom <- \"https://fbref.com/en/comps/218/history/Friendlies-M-Seasons\" get_match_urls(country = \"\", gender = \"M\", season_end_year = 2021, non_dom_league_url = non_dom) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_player_market_values.html","id":null,"dir":"Reference","previous_headings":"","what":"Get player market values — get_player_market_values","title":"Get player market values — get_player_market_values","text":"Returns data frame player valuations (Euros) transfermarkt.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_player_market_values.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get player market values — get_player_market_values","text":"","code":"get_player_market_values(country_name, start_year, league_url = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_player_market_values.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get player market values — get_player_market_values","text":"country_name country league's players start_year start year season (2020 20/21 season) league_url league url transfermarkt.com. used country_name available main function","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_player_market_values.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get player market values — get_player_market_values","text":"returns dataframe player valuations country/seasons","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_season_team_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get season team stats — get_season_team_stats","title":"Get season team stats — get_season_team_stats","text":"Returns different team season statistics results given league season stat type","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_season_team_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get season team stats — get_season_team_stats","text":"","code":"get_season_team_stats( country, gender, season_end_year, tier, stat_type, time_pause = 3 )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_season_team_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get season team stats — get_season_team_stats","text":"country three character country code countries gender gender competition, either \"M\", \"F\" season_end_year year season(s) concludes tier tier league, ie '1st' EPL '2nd' Championship stat_type type team statistics user requires time_pause wait time (seconds) page loads statistic type options (stat_type) include: \"league_table\", \"league_table_home_away\", \"standard\", \"keeper\", \"keeper_adv\", \"shooting\", \"passing\", \"passing_types\", \"goal_shot_creation\", \"defense\" , \"possession\", \"playing_time\", \"misc\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_season_team_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get season team stats — get_season_team_stats","text":"returns dataframe selected team statistic type selected league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_season_team_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get season team stats — get_season_team_stats","text":"","code":"if (FALSE) { try({ get_season_team_stats(\"ITA\", \"M\", 2021, \"1st\", \"defense\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_team_match_results.html","id":null,"dir":"Reference","previous_headings":"","what":"Get team match results — get_team_match_results","title":"Get team match results — get_team_match_results","text":"Returns game results team given season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_team_match_results.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get team match results — get_team_match_results","text":"","code":"get_team_match_results(team_url, time_pause = 3)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_team_match_results.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get team match results — get_team_match_results","text":"team_url URL team season time_pause wait time (seconds) page loads","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_team_match_results.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get team match results — get_team_match_results","text":"returns dataframe results games played selected team(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/get_team_match_results.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get team match results — get_team_match_results","text":"","code":"if (FALSE) { try({ # for single teams: man_city_url <- \"https://fbref.com/en/squads/b8fd03ef/Manchester-City-Stats\" get_team_match_results(man_city_url) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_advanced_match_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Load pre-saved FBref match advanced stats — load_fb_advanced_match_stats","title":"Load pre-saved FBref match advanced stats — load_fb_advanced_match_stats","text":"Loading version fb_advanced_match_stats. leagues available.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_advanced_match_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Load pre-saved FBref match advanced stats — load_fb_advanced_match_stats","text":"","code":"load_fb_advanced_match_stats( country, gender, tier, stat_type, team_or_player, season_end_year = NA )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_advanced_match_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Load pre-saved FBref match advanced stats — load_fb_advanced_match_stats","text":"country three character country code gender gender competition, either \"M\" \"F\" tier tier league, ie '1st' EPL '2nd' Championship stat_type type team statistics user requires team_or_player result either summarised team, individual players season_end_year year(s) season concludes","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_advanced_match_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Load pre-saved FBref match advanced stats — load_fb_advanced_match_stats","text":"returns dataframe","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_advanced_match_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Load pre-saved FBref match advanced stats — load_fb_advanced_match_stats","text":"","code":"# \\donttest{ try({ load_fb_advanced_match_stats( country = \"ENG\", gender = \"M\", tier = \"1st\", stat_type = \"summary\", team_or_player = \"player\" ) load_fb_advanced_match_stats( country = c(\"ITA\", \"ESP\"), gender = \"M\", tier = \"1st\", season_end_year = 2023, stat_type = \"defense\", team_or_player = \"player\" ) }) #> → Data last updated 2024-05-21 18:38:55.3171780109406 UTC #> → Data last updated 2024-06-10 00:36:28.3094749450684 UTC #> # A tibble: 23,409 × 49 #> MatchURL League Match_Date Matchweek Home_Team Home_Formation Home_Score #> #> 1 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 #> 2 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 #> 3 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 #> 4 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 #> 5 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 #> 6 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 #> 7 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 #> 8 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 #> 9 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 #> 10 https://fbre… Serie… 2022-08-13 Serie A … Sampdoria 4-1-4-1 0 #> # ℹ 23,399 more rows #> # ℹ 42 more variables: Home_xG , Home_Goals , #> # Home_Yellow_Cards , Home_Red_Cards , Away_Team , #> # Away_Formation , Away_Score , Away_xG , Away_Goals , #> # Away_Yellow_Cards , Away_Red_Cards , Game_URL , Team , #> # Home_Away , Player , Player_Href , Player_Num , #> # Nation , Pos , Age , Min , Tkl_Tackles , … # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_big5_advanced_season_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Load Big 5 Euro League Season Stats — load_fb_big5_advanced_season_stats","title":"Load Big 5 Euro League Season Stats — load_fb_big5_advanced_season_stats","text":"Loading version fb_big5_advanced_season_stats Returns data frame selected statistics seasons big 5 Euro leagues, either whole team individual players. Multiple seasons can passed function, one `stat_type` can selected","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_big5_advanced_season_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Load Big 5 Euro League Season Stats — load_fb_big5_advanced_season_stats","text":"","code":"load_fb_big5_advanced_season_stats( season_end_year = NA, stat_type, team_or_player )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_big5_advanced_season_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Load Big 5 Euro League Season Stats — load_fb_big5_advanced_season_stats","text":"season_end_year year(s) season concludes stat_type type team statistics user requires team_or_player result either summarised team, individual players statistic type options (stat_type) include: \"standard\", \"shooting\", \"passing\", \"passing_types\", \"gca\", \"defense\", \"possession\", \"playing_time\", \"misc\", \"keepers\", \"keepers_adv\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_big5_advanced_season_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Load Big 5 Euro League Season Stats — load_fb_big5_advanced_season_stats","text":"returns dataframe selected team player statistic type selected season(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_big5_advanced_season_stats.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Load Big 5 Euro League Season Stats — load_fb_big5_advanced_season_stats","text":"","code":"# \\donttest{ try({ df <- load_fb_big5_advanced_season_stats( season_end_year = c(2018:2022), stat_type = \"defense\", team_or_player = \"player\" ) df <- load_fb_big5_advanced_season_stats( season_end_year = 2022, stat_type = \"defense\", team_or_player = \"player\" ) }) #> → Data last updated 2024-05-30 17:36:11.5014300346375 UTC #> → Data last updated 2024-05-30 17:36:11.5014300346375 UTC # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_shooting.html","id":null,"dir":"Reference","previous_headings":"","what":"Load pre-saved FBref match shooting event data — load_fb_match_shooting","title":"Load pre-saved FBref match shooting event data — load_fb_match_shooting","text":"Loading version fb_match_shooting. leagues available.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_shooting.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Load pre-saved FBref match shooting event data — load_fb_match_shooting","text":"","code":"load_fb_match_shooting(country, gender, tier, season_end_year = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_shooting.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Load pre-saved FBref match shooting event data — load_fb_match_shooting","text":"country three character country code gender gender competition, either \"M\" \"F\" tier tier league, ie '1st' EPL '2nd' Championship season_end_year year(s) season concludes","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_shooting.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Load pre-saved FBref match shooting event data — load_fb_match_shooting","text":"returns dataframe","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_shooting.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Load pre-saved FBref match shooting event data — load_fb_match_shooting","text":"","code":"# \\donttest{ try({ load_fb_match_shooting( country = \"ENG\", gender = \"M\", tier = \"1st\" ) load_fb_match_shooting( country = c(\"ITA\", \"ESP\"), gender = \"M\", tier = \"1st\", season_end_year = 2019 ) }) #> → Data last updated 2024-05-21 17:52:12.9745829105377 UTC #> → Data last updated 2024-05-28 17:54:24.5049500465393 UTC #> # A tibble: 19,810 × 23 #> MatchURL Date Squad Home_Away Match_Half Minute Player Player_Href xG #> #> 1 https://fbr… 2018… Chie… Home 1 15 Ivan … /en/player… 0.02 #> 2 https://fbr… 2018… Chie… Home 1 22 Ivan … /en/player… 0.02 #> 3 https://fbr… 2018… Chie… Home 1 38 Mariu… /en/player… 0.23 #> 4 https://fbr… 2018… Chie… Home 2 56 Emanu… /en/player… 0.79 #> 5 https://fbr… 2018… Chie… Home 2 67 Ivan … /en/player… 0.03 #> 6 https://fbr… 2018… Chie… Home 2 84 Fabri… /en/player… 0.02 #> 7 https://fbr… 2018… Juve… Away 1 3 Sami … /en/player… 0.20 #> 8 https://fbr… 2018… Juve… Away 1 5 Paulo… /en/player… 0.04 #> 9 https://fbr… 2018… Juve… Away 1 6 Sami … /en/player… 0.07 #> 10 https://fbr… 2018… Juve… Away 1 9 João … /en/player… 0.66 #> # ℹ 19,800 more rows #> # ℹ 14 more variables: PSxG , Outcome , Distance , #> # `Body Part` , Notes , Player_SCA_1 , Event_SCA_1 , #> # Player_SCA_2 , Event_SCA_2 , Competition_Name , #> # Gender , Country , Tier , Season_End_Year # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_summary.html","id":null,"dir":"Reference","previous_headings":"","what":"Load pre-saved FBref match summary data — load_fb_match_summary","title":"Load pre-saved FBref match summary data — load_fb_match_summary","text":"Loading version fb_match_summary. leagues available.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_summary.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Load pre-saved FBref match summary data — load_fb_match_summary","text":"","code":"load_fb_match_summary(country, gender, tier, season_end_year = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_summary.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Load pre-saved FBref match summary data — load_fb_match_summary","text":"country three character country code gender gender competition, either \"M\" \"F\" tier tier league, ie '1st' EPL '2nd' Championship season_end_year year(s) season concludes","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_summary.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Load pre-saved FBref match summary data — load_fb_match_summary","text":"returns dataframe","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_fb_match_summary.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Load pre-saved FBref match summary data — load_fb_match_summary","text":"","code":"# \\donttest{ try({ load_fb_match_summary( country = \"ENG\", gender = \"M\", tier = \"1st\" ) load_fb_match_summary( country = c(\"ITA\", \"ESP\"), gender = \"M\", tier = \"1st\", season_end_year = 2019 ) }) #> → Data last updated 2024-05-21 18:14:02.36326289176941 UTC #> → Data last updated 2024-05-28 18:14:36.1328821182251 UTC #> # A tibble: 10,311 × 33 #> MatchURL League Match_Date Matchweek Home_Team Home_Formation Home_Score #> #> 1 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 2 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 3 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 4 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 5 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 6 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 7 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 8 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 9 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> 10 https://fbre… Serie… 2018-08-18 Serie A … Chievo 4-3-3 2 #> # ℹ 10,301 more rows #> # ℹ 26 more variables: Home_xG , Home_Goals , #> # Home_Yellow_Cards , Home_Red_Cards , Away_Team , #> # Away_Formation , Away_Score , Away_xG , Away_Goals , #> # Away_Yellow_Cards , Away_Red_Cards , Game_URL , Team , #> # Home_Away , Event_Time , Is_Pens , Event_Half , #> # Event_Type , Event_Players , Score_Progression , … # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_comp_results.html","id":null,"dir":"Reference","previous_headings":"","what":"Load match competition results — load_match_comp_results","title":"Load match competition results — load_match_comp_results","text":"Returns game results competition(s), ie League cups international competitions FBref. comp_name comes https://github.com/JaseZiv/worldfootballR_data/tree/master/data/match_results_cups#readme","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_comp_results.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Load match competition results — load_match_comp_results","text":"","code":"load_match_comp_results(comp_name)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_comp_results.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Load match competition results — load_match_comp_results","text":"comp_name three character country code","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_comp_results.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Load match competition results — load_match_comp_results","text":"returns dataframe results competition name","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_comp_results.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Load match competition results — load_match_comp_results","text":"","code":"# \\donttest{ try({ df <- load_match_comp_results( comp_name = \"Coppa Italia\" ) # for multiple competitions: cups <- c(\"FIFA Women's World Cup\", \"FIFA World Cup\") df <- load_match_comp_results( comp_name = cups ) }) #> → Data last updated 2024-05-23 17:19:03.49203395843506 UTC #> → Data last updated 2023-08-28 02:48:12.7885611057281 UTC # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_results.html","id":null,"dir":"Reference","previous_headings":"","what":"Load match results — load_match_results","title":"Load match results — load_match_results","text":"Loading version get_match_results Returns game results given league season(s) FBref","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_results.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Load match results — load_match_results","text":"","code":"load_match_results(country, gender, season_end_year, tier)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_results.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Load match results — load_match_results","text":"country three character country code gender gender competition, either \"M\" \"F\" season_end_year year(s) season concludes tier tier league, ie '1st' EPL '2nd' Championship ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_results.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Load match results — load_match_results","text":"returns dataframe results competition, season gender","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_match_results.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Load match results — load_match_results","text":"","code":"# \\donttest{ try({ df <- load_match_results( country = c(\"ITA\"), gender = \"M\", season_end_year = 2021, tier = \"1st\" ) # for results from English 1st div for men and women: df <- load_match_results( country = \"ENG\", gender = c(\"M\", \"F\"), season_end_year = 2021, tier = \"1st\" ) }) #> → Data last updated 2024-06-27 17:33:55.6623721122742 UTC #> → Data last updated 2024-05-30 17:30:36.2828381061554 UTC # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_understat_league_shots.html","id":null,"dir":"Reference","previous_headings":"","what":"Load Understat league shot locations — load_understat_league_shots","title":"Load Understat league shot locations — load_understat_league_shots","text":"Loading version understat_league_season_shots, seasons Returns shooting locations matches played selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_understat_league_shots.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Load Understat league shot locations — load_understat_league_shots","text":"","code":"load_understat_league_shots(league)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_understat_league_shots.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Load Understat league shot locations — load_understat_league_shots","text":"league available leagues Understat outlined leagues currently available Understat : \"EPL\", \"La liga\", \"Bundesliga\", \"Serie \", \"Ligue 1\", \"RFPL\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_understat_league_shots.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Load Understat league shot locations — load_understat_league_shots","text":"returns dataframe shooting locations selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/load_understat_league_shots.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Load Understat league shot locations — load_understat_league_shots","text":"","code":"if (FALSE) { try({ df <- load_understat_league_shots(league = \"Serie A\") }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_dictionary_mapping.html","id":null,"dir":"Reference","previous_headings":"","what":"Player Mapping Dictionary — player_dictionary_mapping","title":"Player Mapping Dictionary — player_dictionary_mapping","text":"Returns data frame players top 5 Euro leagues, player URL respective Transfermarkt URL. Currently players top 5 leagues since 2017-2018 season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_dictionary_mapping.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Player Mapping Dictionary — player_dictionary_mapping","text":"","code":"player_dictionary_mapping()"},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_dictionary_mapping.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Player Mapping Dictionary — player_dictionary_mapping","text":"returns dataframe FBref players respective Transfermarkt URL","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_dictionary_mapping.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Player Mapping Dictionary — player_dictionary_mapping","text":"","code":"# \\donttest{ try({ mapped_players <- player_dictionary_mapping() }) # }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_transfer_history.html","id":null,"dir":"Reference","previous_headings":"","what":"Get player transfer history — player_transfer_history","title":"Get player transfer history — player_transfer_history","text":"Returns data frame player(s) transfer history transfermarkt.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_transfer_history.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get player transfer history — player_transfer_history","text":"","code":"player_transfer_history(player_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_transfer_history.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get player transfer history — player_transfer_history","text":"player_urls player url(s) transfermarkt","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/player_transfer_history.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get player transfer history — player_transfer_history","text":"returns dataframe player transfers","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_expiring_contracts.html","id":null,"dir":"Reference","previous_headings":"","what":"Get expiring contracts — tm_expiring_contracts","title":"Get expiring contracts — tm_expiring_contracts","text":"Returns data frame players expiring contracts selected league time period","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_expiring_contracts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get expiring contracts — tm_expiring_contracts","text":"","code":"tm_expiring_contracts(country_name, contract_end_year, league_url = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_expiring_contracts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get expiring contracts — tm_expiring_contracts","text":"country_name country league's players contract_end_year year contract due expire league_url league url transfermarkt.com. used country_name available main function","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_expiring_contracts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get expiring contracts — tm_expiring_contracts","text":"returns dataframe expiring contracts selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_get_player_absence.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Player Absences — tm_get_player_absence","title":"Get Player Absences — tm_get_player_absence","text":"Returns data frame player's absences suspension transfermarkt.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_get_player_absence.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Player Absences — tm_get_player_absence","text":"","code":"tm_get_player_absence(player_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_get_player_absence.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Player Absences — tm_get_player_absence","text":"player_urls player url(s) transfermarkt","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_get_player_absence.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Player Absences — tm_get_player_absence","text":"returns dataframe","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_get_player_absence.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get Player Absences — tm_get_player_absence","text":"","code":"if (FALSE) { try({ player_urls <- c(\"https://www.transfermarkt.com/cristian-romero/profil/spieler/355915\", \"https://www.transfermarkt.com/micky-van-de-ven/profil/spieler/557459\") df <- tm_get_player_absence(player_urls) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_debutants.html","id":null,"dir":"Reference","previous_headings":"","what":"Get league debutants — tm_league_debutants","title":"Get league debutants — tm_league_debutants","text":"Returns data frame debutants selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_debutants.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get league debutants — tm_league_debutants","text":"","code":"tm_league_debutants( country_name, league_url = NA, debut_type, debut_start_year, debut_end_year )"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_debutants.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get league debutants — tm_league_debutants","text":"country_name country league's players league_url league url transfermarkt.com. used country_name available main function debut_type whether want 'league' debut 'pro' debut debut_start_year season start year beginning period want results debut_end_year season start year end period want results ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_debutants.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get league debutants — tm_league_debutants","text":"returns dataframe players debuted selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_injuries.html","id":null,"dir":"Reference","previous_headings":"","what":"Get league injuries — tm_league_injuries","title":"Get league injuries — tm_league_injuries","text":"Returns data frame currently injured players players selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_injuries.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get league injuries — tm_league_injuries","text":"","code":"tm_league_injuries(country_name, league_url = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_injuries.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get league injuries — tm_league_injuries","text":"country_name country league's players league_url league url transfermarkt.com. used country_name available main function","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_injuries.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get league injuries — tm_league_injuries","text":"returns dataframe injured players selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_team_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get transfermarkt Team URLs — tm_league_team_urls","title":"Get transfermarkt Team URLs — tm_league_team_urls","text":"Returns URLs teams given league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_team_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get transfermarkt Team URLs — tm_league_team_urls","text":"","code":"tm_league_team_urls(country_name, start_year, league_url = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_team_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get transfermarkt Team URLs — tm_league_team_urls","text":"country_name country league's players start_year start year season (2020 20/21 season) league_url league url transfermarkt.com. used country_name available main function","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_league_team_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get transfermarkt Team URLs — tm_league_team_urls","text":"returns character vector transfermarkt team URLs selected league","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_matchday_table.html","id":null,"dir":"Reference","previous_headings":"","what":"Get weekly league table — tm_matchday_table","title":"Get weekly league table — tm_matchday_table","text":"Returns league table chosen matchday transfermarkt","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_matchday_table.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get weekly league table — tm_matchday_table","text":"","code":"tm_matchday_table(country_name, start_year, matchday, league_url = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_matchday_table.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get weekly league table — tm_matchday_table","text":"country_name country league's players start_year start year season (2020 20/21 season) matchday matchweek number. Can vector matchdays league_url league url transfermarkt.com. used country_name available main function","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_matchday_table.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get weekly league table — tm_matchday_table","text":"returns dataframe table selected league matchday","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_matchday_table.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get weekly league table — tm_matchday_table","text":"","code":"if (FALSE) { try({ tm_matchday_table(country_name=\"England\", start_year=\"2020\", matchday=1) tm_matchday_table(country_name=\"England\", start_year=\"2020\", matchday=c(1:5)) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_bio.html","id":null,"dir":"Reference","previous_headings":"","what":"Get transfermarkt player bios — tm_player_bio","title":"Get transfermarkt player bios — tm_player_bio","text":"Returns data frame player bios transfermarkt.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_bio.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get transfermarkt player bios — tm_player_bio","text":"","code":"tm_player_bio(player_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_bio.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get transfermarkt player bios — tm_player_bio","text":"player_urls player url(s) transfermarkt","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_bio.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get transfermarkt player bios — tm_player_bio","text":"returns dataframe player bios","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_bio.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get transfermarkt player bios — tm_player_bio","text":"","code":"if (FALSE) { try({ player_url <- \"https://www.transfermarkt.com/eden-hazard/profil/spieler/50202\" tm_player_bio(player_url) tm_player_bio(player_urls = c(\"https://www.transfermarkt.com/eden-hazard/profil/spieler/50202\", \"https://www.transfermarkt.com/sergio-ramos/profil/spieler/25557\", \"https://www.transfermarkt.com/ivo-grbic/profil/spieler/226073\")) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_injury_history.html","id":null,"dir":"Reference","previous_headings":"","what":"Get player injury history — tm_player_injury_history","title":"Get player injury history — tm_player_injury_history","text":"Returns data frame player's injury history transfermarkt.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_injury_history.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get player injury history — tm_player_injury_history","text":"","code":"tm_player_injury_history(player_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_injury_history.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get player injury history — tm_player_injury_history","text":"player_urls player url(s) transfermarkt","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_injury_history.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get player injury history — tm_player_injury_history","text":"returns dataframe player injury history","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_market_values.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Transfermarkt player market values — tm_player_market_values","title":"Get Transfermarkt player market values — tm_player_market_values","text":"Returns data frame player valuations (Euros) transfermarkt.com Replaces deprecated function get_player_market_values","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_market_values.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Transfermarkt player market values — tm_player_market_values","text":"","code":"tm_player_market_values(country_name, start_year, league_url = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_market_values.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Transfermarkt player market values — tm_player_market_values","text":"country_name country league's players start_year start year season (2020 20/21 season) league_url league url transfermarkt.com. used country_name available main function","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_market_values.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Transfermarkt player market values — tm_player_market_values","text":"returns dataframe player valuations country/seasons","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_transfer_history.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Transfermarkt player transfer history — tm_player_transfer_history","title":"Get Transfermarkt player transfer history — tm_player_transfer_history","text":"Returns data frame player(s) transfer history transfermarkt.com Replaces deprecated function player_transfer_history","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_transfer_history.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Transfermarkt player transfer history — tm_player_transfer_history","text":"","code":"tm_player_transfer_history(player_urls, get_extra_info = TRUE)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_transfer_history.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Transfermarkt player transfer history — tm_player_transfer_history","text":"player_urls player url(s) transfermarkt get_extra_info allows users decide want scrape extra info (contract length, countries involved) ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_player_transfer_history.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Transfermarkt player transfer history — tm_player_transfer_history","text":"returns dataframe player transfers","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_squad_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get squad player stats — tm_squad_stats","title":"Get squad player stats — tm_squad_stats","text":"Returns basic stats players team season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_squad_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get squad player stats — tm_squad_stats","text":"","code":"tm_squad_stats(team_url)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_squad_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get squad player stats — tm_squad_stats","text":"team_url transfermarkt.com team url season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_squad_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get squad player stats — tm_squad_stats","text":"returns dataframe player stats team(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_staff_job_history.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Staff Member's job history — tm_staff_job_history","title":"Get Staff Member's job history — tm_staff_job_history","text":"Returns roles selected staff member(s) held performance data","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_staff_job_history.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Staff Member's job history — tm_staff_job_history","text":"","code":"tm_staff_job_history(staff_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_staff_job_history.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Staff Member's job history — tm_staff_job_history","text":"staff_urls transfermarkt.com staff(s) url (can use tm_league_staff_urls() get)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_staff_job_history.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Staff Member's job history — tm_staff_job_history","text":"returns data frame roles selected staff member(s) held performance data","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_player_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get transfermarkt Player URLs — tm_team_player_urls","title":"Get transfermarkt Player URLs — tm_team_player_urls","text":"Returns transfermarkt URLs players given team","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_player_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get transfermarkt Player URLs — tm_team_player_urls","text":"","code":"tm_team_player_urls(team_url)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_player_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get transfermarkt Player URLs — tm_team_player_urls","text":"team_url player's team URL (can tm_league_team_urls())","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_player_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get transfermarkt Player URLs — tm_team_player_urls","text":"returns character vector transfermarkt player URLs selected team","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_history.html","id":null,"dir":"Reference","previous_headings":"","what":"Get team staff history — tm_team_staff_history","title":"Get team staff history — tm_team_staff_history","text":"Returns people held selected role team's history","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_history.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get team staff history — tm_team_staff_history","text":"","code":"tm_team_staff_history(team_urls, staff_role = \"Manager\")"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_history.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get team staff history — tm_team_staff_history","text":"team_urls transfermarkt.com team(s) url season staff_role role description can found : https://github.com/JaseZiv/worldfootballR_data/blob/master/raw-data/transfermarkt_staff/tm_staff_types.csv","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_history.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get team staff history — tm_team_staff_history","text":"returns data frame selected staff roles team(s) history","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_urls.html","id":null,"dir":"Reference","previous_headings":"","what":"Get transfermarkt Club Staff URLs — tm_team_staff_urls","title":"Get transfermarkt Club Staff URLs — tm_team_staff_urls","text":"Returns transfermarkt URLs staff selected roles given team","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_urls.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get transfermarkt Club Staff URLs — tm_team_staff_urls","text":"","code":"tm_team_staff_urls(team_urls, staff_role)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_urls.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get transfermarkt Club Staff URLs — tm_team_staff_urls","text":"team_urls staff member's team URL (can tm_league_team_urls()) staff_role role staff member URLs required options including: \"Manager\", \"Assistant Manager\", \"Goalkeeping Coach\", \"Fitness Coach\", \"Conditioning Coach\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_staff_urls.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get transfermarkt Club Staff URLs — tm_team_staff_urls","text":"returns character vector transfermarkt staff URLs selected team(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfer_balances.html","id":null,"dir":"Reference","previous_headings":"","what":"Team transfer balances — tm_team_transfer_balances","title":"Team transfer balances — tm_team_transfer_balances","text":"Returns team's transfer aggregated performances chosen league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfer_balances.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Team transfer balances — tm_team_transfer_balances","text":"","code":"tm_team_transfer_balances(country_name, start_year, league_url = NA)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfer_balances.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Team transfer balances — tm_team_transfer_balances","text":"country_name country league's players start_year start year season (2020 20/21 season) league_url league url transfermarkt.com. used country_name available main function","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfer_balances.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Team transfer balances — tm_team_transfer_balances","text":"returns dataframe summarised financial transfer performance teams league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfers.html","id":null,"dir":"Reference","previous_headings":"","what":"Get team transfers — tm_team_transfers","title":"Get team transfers — tm_team_transfers","text":"Returns transfer arrivals departures given team season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfers.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get team transfers — tm_team_transfers","text":"","code":"tm_team_transfers(team_url, transfer_window = \"all\")"},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfers.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get team transfers — tm_team_transfers","text":"team_url transfermarkt.com team url season transfer_window window transfer occurred - options include \"\" , \"summer\" \"winter\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/tm_team_transfers.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get team transfers — tm_team_transfers","text":"returns dataframe team transfers","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_available_teams.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat available teams — understat_available_teams","title":"Get Understat available teams — understat_available_teams","text":"Returns available team names selected leagues","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_available_teams.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat available teams — understat_available_teams","text":"","code":"understat_available_teams(leagues)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_available_teams.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat available teams — understat_available_teams","text":"leagues available leagues Understat outlined #' leagues currently available Understat : \"EPL\", \"La liga\", \"Bundesliga\", \"Serie \", \"Ligue 1\", \"RFPL\" #' @return character vector teams names","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_available_teams.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get Understat available teams — understat_available_teams","text":"","code":"if (FALSE) { try({ understat_available_teams(leagues = c('EPL', 'La liga')) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_match_results.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat season match results — understat_league_match_results","title":"Get Understat season match results — understat_league_match_results","text":"Returns match results matches played selected league season Understat.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_match_results.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat season match results — understat_league_match_results","text":"","code":"understat_league_match_results(league, season_start_year)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_match_results.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat season match results — understat_league_match_results","text":"league available leagues Understat outlined season_start_year year season started leagues currently available Understat : \"EPL\", \"La liga\", \"Bundesliga\", \"Serie \", \"Ligue 1\", \"RFPL\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_match_results.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Understat season match results — understat_league_match_results","text":"returns dataframe match results selected league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_season_shots.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat league season shot locations — understat_league_season_shots","title":"Get Understat league season shot locations — understat_league_season_shots","text":"Returns shooting locations matches played selected league season Understat.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_season_shots.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat league season shot locations — understat_league_season_shots","text":"","code":"understat_league_season_shots(league, season_start_year)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_season_shots.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat league season shot locations — understat_league_season_shots","text":"league available leagues Understat outlined season_start_year year season started leagues currently available Understat : \"EPL\", \"La liga\", \"Bundesliga\", \"Serie \", \"Ligue 1\", \"RFPL\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_league_season_shots.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Understat league season shot locations — understat_league_season_shots","text":"returns dataframe shooting locations selected league season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_match_shots.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat match shot locations — understat_match_shots","title":"Get Understat match shot locations — understat_match_shots","text":"Returns shooting locations selected match Understat.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_match_shots.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat match shot locations — understat_match_shots","text":"","code":"understat_match_shots(match_url)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_match_shots.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat match shot locations — understat_match_shots","text":"match_url URL match played","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_match_shots.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Understat match shot locations — understat_match_shots","text":"returns dataframe shooting locations selected team season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_player_shots.html","id":null,"dir":"Reference","previous_headings":"","what":"Get all Understat shot locations for a player — understat_player_shots","title":"Get all Understat shot locations for a player — understat_player_shots","text":"Returns shooting locations selected player matches played Understat.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_player_shots.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get all Understat shot locations for a player — understat_player_shots","text":"","code":"understat_player_shots(player_url)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_player_shots.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get all Understat shot locations for a player — understat_player_shots","text":"player_url URL selected player","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_player_shots.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get all Understat shot locations for a player — understat_player_shots","text":"returns dataframe shooting locations selected player","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_meta.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat team info — understat_team_meta","title":"Get Understat team info — understat_team_meta","text":"Retrieve Understat team metadata, including team URLs. Similar `understatr::get_team_meta`.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_meta.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat team info — understat_team_meta","text":"","code":"understat_team_meta(team_names)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_meta.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat team info — understat_team_meta","text":"team_names vector team names (can just 1)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_meta.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Understat team info — understat_team_meta","text":"data.frame","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_meta.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Get Understat team info — understat_team_meta","text":"","code":"if (FALSE) { try({ understat_team_meta(team_name = c(\"Liverpool\", \"Manchester City\")) }) }"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_players_stats.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat team player stats — understat_team_players_stats","title":"Get Understat team player stats — understat_team_players_stats","text":"Retrieve Understat team player stats.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_players_stats.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat team player stats — understat_team_players_stats","text":"","code":"understat_team_players_stats(team_url)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_players_stats.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat team player stats — understat_team_players_stats","text":"team_url URL team season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_players_stats.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Understat team player stats — understat_team_players_stats","text":"dataframe player stats selected team season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_season_shots.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat team season shot locations — understat_team_season_shots","title":"Get Understat team season shot locations — understat_team_season_shots","text":"Returns shooting locations matches played selected team Understat.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_season_shots.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat team season shot locations — understat_team_season_shots","text":"","code":"understat_team_season_shots(team_url)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_season_shots.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat team season shot locations — understat_team_season_shots","text":"team_url URL team season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_season_shots.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Understat team season shot locations — understat_team_season_shots","text":"returns dataframe shooting locations selected team season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_stats_breakdown.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Understat team statistics breakdowns — understat_team_stats_breakdown","title":"Get Understat team statistics breakdowns — understat_team_stats_breakdown","text":"Returns data frame selected team(s) stats broken different ways. Breakdown groups include:","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_stats_breakdown.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Get Understat team statistics breakdowns — understat_team_stats_breakdown","text":"","code":"understat_team_stats_breakdown(team_urls)"},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_stats_breakdown.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Understat team statistics breakdowns — understat_team_stats_breakdown","text":"team_urls url(s) teams question","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_stats_breakdown.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Get Understat team statistics breakdowns — understat_team_stats_breakdown","text":"returns dataframe stat groups values","code":""},{"path":"https://jaseziv.github.io/worldfootballR/reference/understat_team_stats_breakdown.html","id":"details","dir":"Reference","previous_headings":"","what":"Details","title":"Get Understat team statistics breakdowns — understat_team_stats_breakdown","text":"\"Situation\", \"Formation\", \"Game state\", \"Timing\", \"Shot zones\", \"Attack speed\", \"Result\"","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-development-version","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR (development version)","text":"fb_league_stats() returning opponent table. (0.6.5.0001) #355 tm_player_bio() returning values player_valuation, max_player_valuation max_player_valuation_date fields. Unfortunately, max_player_valuation max_player_valuation_date fields able scraped release (0.6.5.0002) #357 fb_league_stats() returning player table hidden page load. (0.6.5.0003) #351","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"breaking-changes-development-version","dir":"Changelog","previous_headings":"","what":"Breaking Changes","title":"worldfootballR (development version)","text":"addressing issue tm_player_injury_history() #375, previously names column club renamed club_missed_games_for better represent column contain games player missed games , previously column misunderstood playing injured (0.6.5.0004)","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-6-5","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.6.5","text":"fb_league_stats() failing playing_time. (0.6.4.0001) #314 fb_advanced_match_stats() throwing errors stat tables available matches (0.6.4.0002) #315 fb_player_match_logs() failing players played multiple teams/leagues season (0.6.4.0006) #327 fb_league_stats(team_or_player = \"player\") returning duplicate player hrefs (0.6.4.0008) #331 fb_league_stats(team_or_player = \"player\") returning wrong season’s data Australian league (0.6.4.0009) #333 tm_player_market_values() returing player name valuation separate rows player_name column [#338] (https://github.com/JaseZiv/worldfootballR/issues/338) also returning NAs player_age column (0.6.4.0010) #336 fb_match_results() returns NA goals due inconsistent iconv() behavior different systems (0.6.4.0011) #326 tm_team_player_urls() fixed change server-side loading (0.6.4.0013) #342 fb_teams_urls() fixed remove lower division teams returned result playoff promotion games (0.6.4.0014) #344 tm_player_bio() column name data structure change player date birth (0.6.4.0014)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-6-5","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.6.5","text":"fb_player_season_stats() now includes ability get player’s national team stats [https://github.com/JaseZiv/worldfootballR/pull/310/files] (0.6.4.0002) fb_league_stats() now correctly scrapes non domestic competitions [https://github.com/JaseZiv/worldfootballR/pull/325] (0.6.4.0003) fb_team_match_stats() understat_available_teams() (0.6.4.0004) fb_match_shooting(), fb_advanced_match_stats(), fb_league_stats(team_or_player = \"player\") gain Player_Href column (0.6.4.0005) load_fb_advanced_stats() load_fb_match_summary() added (0.6.4.0007) tm_get_player_absence() now available get list absences suspension players transfermarkt","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"breaking-changes-0-6-4","dir":"Changelog","previous_headings":"","what":"Breaking changes","title":"worldfootballR 0.6.4","text":"fotmob functions removed due update fotmob terms service prohibiting “use automatic services (robots, spiders, indexing etc.) well methods systematic regular use.”","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-6-4","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.6.4","text":"fotmob_get_match_details() failing due change teamColors JSON element (0.6.3.0001) #271 fotmob_get_league_ids() failing due addition localizedName JSON element (0.6.3.0003) #275 fotmob_get_match_details() failing () due change teamColors JSON element (0.6.3.0003) fotmob_get_match_players() failing due addition nested JSON elements stat element (0.6.3.0004) #277 fb_season_team_stats() failing get correct home/away league table unusual layout league pages (0.6.3.0006) #282 fotmob_get_match_players() failing due mismatch list data.frame types internal stats column unnesting (0.6.3.0007) #291 fotmob_get_match_stats() failing due Fotmob additional nesting (0.6.3.0008) #295 fotmob_get_match_players() returning nested list elements stat columns (0.6.3.0010) #298 tm_player_injury_history() returning empty value club value player didn’t miss days injury #293 (0.6.3.0011) tm_team_player_urls() returning wrong player URLs due html changes (0.6.3.0012) #305 tm_player_injury_history() returning empty value club value player didn’t miss days injury #293 (0.6.3.0012) fotmob_get_match_players() returning repeated stats failing NULL case (0.6.3.0011) #298","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-6-4","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.6.4","text":"fotmob_get_match_momentum() added (0.6.2.0002) fotmob_get_league_tables() returns form table (0.6.3.0005) #279 fotmob_get_match_stats(): suppress error messages seasons without data (0.6.3.0009) #297 tm_player_injury_history() removes player number player_name variable #268 (0.6.3.0012)","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"breaking-changes-0-6-3","dir":"Changelog","previous_headings":"","what":"Breaking Changes","title":"worldfootballR 0.6.3","text":"tm_player_transfer_history() now contains additional column returned dataframe (transfer_type). column differentiate regular transfers, free transfers, loans paid loans transfers due players returning loan. fb_player_scouting_report() now accepts additional argument called league_comp_name allows user return reports specific leagues/comps. passing anything results reports returned","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-6-3","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.6.3","text":"fotmob_get_match_players() failing upcoming matches due missing stats column (0.6.2.1000) #226 tm_team_transfer_balances() failing empty team boxes collected (0.6.2.1000) #228 fotmob_get_league_matches() failing due extra purrr::map_dfr longer needed (0.6.2.2000) #229 understat functions failing due new cookie requirement (0.6.2.5000) #239 fb_player_scouting_report() failing due HTML changes FBRef (0.6.2.7000) #242 fb_league_stats(team_or_player = \"player\", stat_type = \"standard\", ...) failing since \"standard\" translated \"stats\" (0.6.2.9100) #252 fotmob_get_match_details() returned 0 rows instead 1 shots available (0.6.2.9300) fotmob_get_league_matches() changed use matches.allMatches JSON element (0.6.2.9400) #258 fotmob functions updated use httr::GET() appropriate post-processing JSON instead jsonlite::fromJSON() raw URLs (0.6.3.0000) #262","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-6-3","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.6.3","text":"check_league_name() removes repeated code. checks name leagues correct (0.6.2.3000) #232 LEAGUES replaces statement list (0.6.2.3000) #232 tm_player_transfer_history() added information, added possibility skip extraction info requires additional page load time. (0.6.2.4000) #235 fb_league_stats() added. Gets season stats teams / players selected league FBref single scrape. (0.6.2.6000) #243 fb_league_stats() uses rvest::htm_table() team_or_player = \"table\" (faster reliable), uses chromote team_or_player = \"player\". (0.6.2.7100) Use quiet = FALSE purrr::possibly() calls internally. Improve messaging unexpected outcomes fotmob_get_matches_by_date() fotmob_get_match_info(). (0.6.2.8000) #244 load_fb_match_shooting() added. (0.6.2.9000) #249 fotmob_get_league_matches() fotmob_get_league_tables gain season parameter. (0.6.2.9200) #256 fotmob_get_season_stats() internals improved (0.6.3.0000)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-062","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.6.2","title":"worldfootballR 0.6.2","text":"CRAN release: 2022-11-26","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-6-2","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.6.2","text":"tm_player_market_values() returning NAs squad column tm_ functions missing country comp_name columns due change html transfermarkt fb_match_shooting() throwing errors duplicate column names switch StatsBomb Opta FBRef fb_team_goal_logs fb_player_goal_logs gave errors columns present fotmob_get_season_stats returning lexical error #201 fotmob_get_season_stats internals changed handle new data format tm_staff_job_history() code changed due HTML changes transfermarkt.com FBRef functions calling internal function .get_match_report_page() returning ‘Major League Soccer’ away team #216 fb_match_shooting() returning wrong home away designation games team names inconsistent page #219 fb_match_summary(), fb_match_shooting() returning returning Away Team name international matches fb_match_lineups() returning ‘Major League Soccer’ away team international matches #221","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-6-2","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.6.2","text":"load_fb_big5_advanced_season_stats() now loads FBRef data provided Stats Perform (Opta) via Github releases load_match_results() now loads FBRef data provided Stats Perform (Opta) via Github releases load_match_comp_results() now loads FBRef data provided Stats Perform (Opta) via Github releases load_understat_league_shots() now loads data GitHub releases","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-061","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.6.1","title":"worldfootballR 0.6.1","text":"CRAN release: 2022-10-14","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-6-1","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.6.1","text":"fb_team_goal_logs - returns team’s season goals goals logs fb_player_goal_logs - returns player’s career goal assist logs","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-6-1","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.6.1","text":"Fotmob functions now pass user agent headers hood","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-6-1","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.6.1","text":"tm_squad_stats() throwing differing number rows error #187 .get_match_report_page() internal function used number fb_ functions throwing errors cup tie legs #174 .clean_table_names() change internal function include ’*_performance*’ column names fb_team_match_log_stats() address duplicated column names stat_type = 'keeper' #184","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"breaking-changes-0-6-1","dir":"Changelog","previous_headings":"","what":"Breaking Changes","title":"worldfootballR 0.6.1","text":"column names output fb_team_match_log_stats() now include *_Performance* end name. See #184 details","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-060","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.6.0","title":"worldfootballR 0.6.0","text":"CRAN release: 2022-08-24","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-and-deprecated-old-ones-0-6-0","dir":"Changelog","previous_headings":"","what":"New functions (and deprecated old ones)","title":"worldfootballR 0.6.0","text":"fb_advanced_match_stats() replaces get_advanced_match_stats fb_match_lineups() replaces get_match_lineups fb_match_results() replaces get_match_results fb_match_report() replaces get_match_report fb_match_shooting() replaces get_match_shooting fb_match_summary() replaces get_match_summary fb_match_urls() replaces get_match_urls fb_season_team_stats() replaces get_season_team_stats fb_team_match_results() replaces get_team_match_results tm_player_market_values() replaces get_player_market_values tm_player_transfer_history replaces player_transfer_history Improve fotmob tests checking column names instead just number columns. load_fotmob_matches_by_date(), load_fotmob_match_details(): Functions load pre stored match ids match details. fotmob_get_match_details(), fotmob_get_matches_by_date(), fotmob_get_match_players(): Nested list columns unnested default. lone exception shotmap output fotmob_get_match_players() fotmob_get_match_info() added. (#166) fb_squad_wages() designed get player wage estimates FBref via Capology","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-6-0","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.6.0","text":"load_fb_big5_advanced_season_stats() returning zero row df season selected. Now rectified fotmob_get_season_stats(): Fixed bug .fotmob_get_single_season_stats() season ids dashes, e.g. \"17709-Apertura\" Liga MX 2022/2023 error. fb_big5_advanced_season_stats() throwing error team stats. Also updated one page load, hopefully minimising risk blocked excessive page loads Elements changed FBref somewhere time v 0.5.11 released! fb_advanced_match_stats() fb_match_summary() fb_big5_advanced_season_stats() throwing error Matches played column now names MP #158 fotmob_get_league_tables(): Fix unnesting accommodate additional nesting identical names different levels. bug affected fotmob_get_season_stats(), calls fotmob_get_league_tables() #155 fotmob_get_match_players() returns stats characters #150 fotmob_get_season_stats(): Address logic extracting season ids season stats pages failing due blank stats pages offseason league. get_match_lineups() wasn’t returning away team name #147 understat_league_season_shots() error passing new season_start_year value seasons haven’t yet started match fixtures available Understat #148","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-6-0","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.6.0","text":"FBref functions now pass user agent headers hood fotmob_get_match_team_stats() added. following functions now longer return league/season metadata, including columns League, Gender, Country, Season: fb_match_summary() fb_advanced_match_stats() fb_match_report()","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-and-deprecated-old-ones-0-6-0-1","dir":"Changelog","previous_headings":"","what":"New functions (and deprecated old ones)","title":"worldfootballR 0.6.0","text":"fb_advanced_match_stats() replaces get_advanced_match_stats fb_match_lineups() replaces get_match_lineups fb_match_results() replaces get_match_results fb_match_report() replaces get_match_report fb_match_shooting() replaces get_match_shooting fb_match_summary() replaces get_match_summary fb_match_urls() replaces get_match_urls fb_season_team_stats() replaces get_season_team_stats fb_team_match_results() replaces get_team_match_results tm_player_market_values() replaces get_player_market_values tm_player_transfer_history replaces player_transfer_history Improve fotmob tests checking column names instead just number columns. load_fotmob_matches_by_date(), load_fotmob_match_details(): Functions load pre stored match ids match details. fotmob_get_match_details(), fotmob_get_matches_by_date(), fotmob_get_match_players(): Nested list columns unnested default. lone exception shotmap output fotmob_get_match_players()","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-057","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.5.7","title":"worldfootballR 0.5.7","text":"CRAN release: 2022-07-11","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-5-7","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.5.7","text":"load_understat_league_shots() Functions load pre stored shooting locations matches played since 2014/15 season five leagues available Understat site. load_match_comp_results() Functions load pre stored match results domestic international cups/competitions","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-5-7","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.5.7","text":"fotmob_get_season_stats() longer errors stats queried league offseason #136 player_transfer_history() longer throwing errors players without club #137 Increase sleep times tests FBref functions","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-056","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.5.6","title":"worldfootballR 0.5.6","text":"CRAN release: 2022-06-15","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-5-6","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.5.6","text":"respect FBref’s rate limiting rules, functions now updated default pause three seconds page loads, two seconds originally requested.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-5-6","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.5.6","text":"get_match_report() get_advanced_match_stats() - now reporting match date away team name . Additionally, Home_Goals Away_Goals text strings now clean strings (tabs line breaks removed) #128 fotmob_get_league_ids() - now uses new endpoint league ids (data script element longer data). function internally used fotmob_get_league_matches(), fotmob_get_league_tables(), fotmob_get_season_stats(), broken cached=FALSE specified. player_transfer_history() longer throwing errors retired players also addressed changed HTML transfermarkt returning data #127","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-5-3","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.5.3","text":"Now starting load functions: load_match_results() - function load pre stored data similar get_match_results() load_fb_big5_advanced_season_stats() - function load pre stored data similar fb_big5_advanced_season_stats()","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-5-3","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.5.3","text":"tm_player_bio() addresses data points don’t exist players returns NAs understat_team_stats_breakdown() now returns correct season_start_year value #119 tests vignettes fotmob stat functions changed lowercase second word stat_name #118 player_transfer_history() updated html changes Transfermarkt caused function return zero row data frame #120 fotmob_get_league_matches() fotmob_get_league_tables() changes names JSON response (fixtures -> matches, tableData -> table) #121, #122 Various fotmob functions affected addition api/ URL New names player stats outdated docs fotmob_get_season_stats()","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-5-2","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.5.2","text":"fotmob_get_league_matches fotmob_get_league_tables now check 2 places league endpoint since changes occasionally. fotmob_get_match_players gets 3 additional columns: match_id, team_id, team_name. #105 fotmob_get_season_stats gains stat_league_name can now used leagues since seasons programmatically scraped tm_player_bio() now also returns player’s maximum valuation (max_player_valuation) date max valuation recorded (max_player_valuation_date). Note: now additional two columns output Additional processing logic added fotmob_get_league_tables works properly international tournaments. stat_type argument fotmob_get_seasons_stats renamed stat_name reflect different set values takes. Valid values now equivalent options can found stats page browser, e.g. Liverpool player stats page. FBref functions now contain user defined pause (time_pause) page load abide new rate limiting rules. See . Default set 2 seconds Internal function.get_each_season_results() exported now","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-5-2","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.5.2","text":"tm_player_bio returning player number instead name also NAs valuation #109 fotmob_get_match_players failed non-domestic leagues team element id exist table element. Fix robust element assigning team ids players. fotmob_get_seasons_stats failed non-domestic leagues, even setting cached=TRUE. Fix add logic latest season given league found “See ” links generic stats page.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-0511000","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.5.1.1000","title":"worldfootballR 0.5.1.1000","text":"Set minimum R version 4.0.0","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-051","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.5.1","title":"worldfootballR 0.5.1","text":"CRAN release: 2022-03-25 Modifications based CRAN feedback updates CRAN submission","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-050","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.5.0","title":"worldfootballR 0.5.0","text":"CRAN release: 2022-03-21","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-5-0","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.5.0","text":"fb_team_match_log_stats() - get match logs selected stat types team(s) matches played season fotmob_get_league_ids() - get Fotmob’s league ids, can specified alternative country league_name fotmob_get_league_matches() fotmob_get_league_tables() fotmob_get_season_stats() - get stats one leagues, team player level fotmob_get_league_matches() - select matches one leagues fotmob_get_league_tables() - get standings one leagues fotmob_get_matches_by_date() - select matches occurring specific day(s) fotmob_get_match_details() - get shooting locations individual match fotmob_get_match_players() - extract player statistics matches","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-5-0","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.5.0","text":".clean_table_names() (internal function) now able clean tab names fb_team_match_log_stats() Added documentation fotmob_get_match_players fotmob_get_match_players()","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-5-0","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.5.0","text":"fotmob_get_league_matches fotmob_get_league_tables updated address new Fotmob league endpoint. fotmob_get_match_players() longer returning identical home away team IDs #93 Fixed multiple rows returned single player stats column returned fotmob_get_match_players() fotmob_get_league_matches fotmob_get_league_tables updated address new Fotmob league endpoint.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-0410","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.4.10","title":"worldfootballR 0.4.10","text":"CRAN release: 2022-02-08","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-4-10","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.4.10","text":"tm_squad_stats() now returns team, league information also player URLs","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-4-10","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.4.10","text":"fb_player_scouting_report() returning incorrect position comparisons cases #85 get_player_market_values() returning team URLs erroneous URLs initial scraped list, columns returning values due HTML changes transfermarkt tm_league_team_urls() returning team URLs erroneous URLs initial scraped list get_match_results() returning additional (incorrect) transfermarkt player URLs #82","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-049","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.4.9","title":"worldfootballR 0.4.9","text":"CRAN release: 2022-01-16","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-4-9","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.4.9","text":"tm_league_debutants() able extract league debutants tm_expiring_contracts() able extract expiring contracts selected league tm_league_injuries() get current injuries selected league tm_player_injury_history() get full player injury history transfermarkt selected player(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-4-9","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.4.9","text":"fb_player_scouting_report() issue player listed three positions #80 get_match_lineups() now also returns match player URLs #78 get_match_results() now includes match URLs #78 get_match_report() now includes yellow red card counts #2","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-4-9","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.4.9","text":"tm_team_player_urls() returning additional (incorrect) transfermarkt player URLs","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-4-7","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.4.7","text":"tm_team_staff_urls() allows users extract URLs selected team staff members based staff role (ie ‘Manager’, ‘Assistant Manager’, etc) tm_team_staff_history() allows users get people held selected role team’s history summary statistics tm_staff_job_history() allows users get roles selected staff member(s) held performance data role (wins, draws, losses, etc)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-4-7","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.4.7","text":"Fixed rare case duplicate socials tm_player_bio() coercing values lists","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-4-6","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.4.6","text":"fb_team_player_stats() allows users get stats team(s) player season stats","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-4-6","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.4.6","text":"get_season_team_stats() now returns additional column MLS called Conference stat_type = \"league_table\" stat_type = \"league_table_home_away\"","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-045","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.4.5","title":"worldfootballR 0.4.5","text":"CRAN release: 2021-11-25","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-4-5","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.4.5","text":"Remove errant comment examples fb_player_scouting_report()","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-4-4","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.4.4","text":"Wrap Data sources single quotes DESCRIPTION file (title /description) Fixed Warning: Unexecutable code man/fb_player_scouting_report.Rd: pos_versus = \"primary\") Wrote .pkg_message() allow users easily suppress messages outputted console setting options(mypackage.verbose = FALSE) Removed unnecessary examples Results using understat_ functions now return correct full season details (ie season_start_year = 2019, resulting season column df ‘2019/2020’)","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-4-3","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.4.3","text":"understat_team_players_stats() gets season-long player stats selected teams understat_team_stats_breakdown() gets team season shooting data broken game states understat_team_meta() created allow extraction team season URLs","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-4-2","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.4.2","text":"Fixed various transfermarkt functions broken due HTML changes site","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"breaking-changes-0-4-1","dir":"Changelog","previous_headings":"","what":"Breaking Changes","title":"worldfootballR 0.4.1","text":"Remove FotMob functions","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-4-0","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.4.0","text":"fotmob_get_matches_by_date() fotmob_get_match_details() added #61","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements--breaking-changes-0-3-6","dir":"Changelog","previous_headings":"","what":"Improvements / Breaking Changes","title":"worldfootballR 0.3.6","text":"fb_player_scouting_report() now contains additional column output (scouting_period) allows user filter period need scouting report ","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-3-6","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.3.6","text":"Fixed encoding issue Windows OS player names player_dictionary_mapping() #56 Fixed issue get_match_summary() get_match_lineups() returning results games canceled/postponed #55 Fixed tm_player_bio() throwing errors due change html Transfermarkt #57 Fixed tm_player_bio() throwing errors due another change html Transfermarkt","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-3-5","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.3.5","text":"tm_team_transfers() now includes transfer window transfer occurred #53","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-3-4","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.3.4","text":"tm_team_transfers() now also includes player URLs Transfermarkt allow joining player market values #51","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-3-4","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.3.4","text":"get_player_market_values() now returning correct current (current_club) previous (previous_club) clubs players fb_player_season_stats() returning results players even though stats available FBref #52 tm_player_bio() now returns player market valuations #50","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-3-3","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.3.3","text":"player_dictionary_mapping() returns data frame players (names FBref URLs) played top 5 Euro leagues respective Transfermarkt URL","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-3-3","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.3.3","text":"Transfermarkt functions tm_team_transfers() player_transfer_history() returning transfer prices now differentiate unknown (returning NA) free transfers (returning 0) #45 * fb_big5_advanced_season_stats() now returns player URLs FBref","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-3-3","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.3.3","text":"get_match_summary() longer throws errors one team (home away) didn’t recorded event #46 fb_player_season_stats() handles print statement stat types present players #33","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"breaking-changes-0-3-2","dir":"Changelog","previous_headings":"","what":"Breaking Changes","title":"worldfootballR 0.3.2","text":"Team data frame column returned get_match_shooting() longer exists, Squad elevated ’s place instead.","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-3-2","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.3.2","text":"get_player_market_values() returning errors seasons prior current season #41 tm_team_transfers() handles missing values teams/leagues get_match_shooting() handles extra time periods fb_player_scouting_report() now returns results Goalkeepers also #42 get_match_shooting() now handles one team (home away) record shots #43","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-3-1","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.3.1","text":"following functions now return results international matches fro FBref: get_match_urls() get_match_results() get_match_report() get_match_summary() get_match_lineups() get_match_shooting() get_advanced_match_stats() following transfermarkt function improved: tm_team_transfers() now includes column season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-3-1","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.3.1","text":"player_transfer_history() returns results even player hasn’t got club go #37 tm_player_bio() returning error player valuations available transfermarkt.com get_match_shooting() returning duplicated home shots data including away shots get_match_summary() returning Event_Players special characters used","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-3-0","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.3.0","text":"Functions extract understat.com data now available: * Shots locations data: * understat_league_season_shots() get shot location data matches league season * understat_team_season_shots() get shot locations select team * understat_match_shots() get shot locations selected match * understat_player_shots() get available shot locations games played selected player * understat_league_match_results() get results match data matches played season New transfermarkt.com functions: * tm_player_bio() get player bios transfermarkt * tm_team_transfers() get arrival departures team season * tm_squad_stats() get basic squad stats teams season * Helper functions: * tm_league_team_urls() get teams URLs league season * tm_team_player_urls() get player URLs given team","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-3-0","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.3.0","text":"get_player_market_values() transfermarkt now includes player heights, preferred foot, joined club contract expires player_transfer_history() now includes remaining contract expiry data remaining contract length (days) #34 get_match_lineups() now identifies diamond formations Progress bars now included long running functions!","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"breaking-changes-0-2-9","dir":"Changelog","previous_headings":"","what":"Breaking Changes","title":"worldfootballR 0.2.9","text":"Fbref table names changed slightly, cleaned include “__” “+/-” replaced “Plus_Minus” Column names event_time, event_type, event_players score_progression changed get_match_summary(), additional columns added","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-2-9","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.2.9","text":"fb_player_season_stats() now able accept multiple player_url values Is_Pens indicate whether event penalty shootout Event_Half indicate half event occurred (1, 2, 3, 4, 5), 3 & 4 extra time 5 penalty shootout Penalty_Number penalty shootouts, penalty taking order","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-2-9","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.2.9","text":"Fix issue #29 get_match_results() returning data seasons 2014-15 Fix issue #30 functions reading seasons data worldfootballR_data Fix issue #31 get_advanced_match_stats(), get_match_report() get_match_summary() returning results lower tier 1 leagues Fix issue #32 get_match_summary() event times causing issues extra time match half (ie 45+3 opposed 46th minute) Fix issue #33 fb_player_season_stats() players played game previously causing errors","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-2-8","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.2.8","text":"fb_player_match_logs() get player match logs season stat type (issue #26)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-2-8","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.2.8","text":"fb_player_scouting_report() now returns players full scouting report peers Men’s Big 5 Leagues European Competition last 365 days (issue 27) Removed country abbreviation Squad column data frame returned using fb_player_season_stats()","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-2-7","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.2.7","text":"get_match_shooting() get shot shot creation specific details (issue #3) get_team_match_results() get match results given team teams season","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-2-7","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.2.7","text":"get_match_lineups() now returns additional summary player performance data (shots, goals, cards, etc) original lineups output","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-2-7","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.2.7","text":"Fixed issue get_season_player_stats() returning results players played domestic comps (cups, internationals, etc) (issue #22) Fixed issue fb_big5_advanced_season_stats() returning results ‘playing_time’ stat_type (issue #23)","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-2-6","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.2.6","text":"tm_team_transfer_balances() get team total transfer income expenditure data tm_matchday_table() get league table specified matchday(s)","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-2-6","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.2.6","text":"Various transfermarkt functions refactored consistent column names","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-2-6","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.2.6","text":"Fix duplicating league URLs fb_league_urls() result including “Big 5” competition issue #19 Fix duplicating league URLs various season-level functions result including “Big 5” competition issue #20 Fix duplicated results functions","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-2-5","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.2.5","text":"Added fb_big5_advanced_season_stats() get fbref season stats players teams stats big five Euro leagues","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"new-functions-0-2-4","dir":"Changelog","previous_headings":"","what":"New functions","title":"worldfootballR 0.2.4","text":"fb_league_urls() get fbref league URLs given country, gender, season, tier fb_teams_urls() get fbref team URLs given league_url fb_player_urls() get fbref player URLs given team_url Added function retrieve player’s scouting report fb_player_scouting_report() Added function get season player stats selected player stay_type fb_player_season_stats()","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"improvements-0-2-4","dir":"Changelog","previous_headings":"","what":"Improvements","title":"worldfootballR 0.2.4","text":"Additional leagues cups now available following functions; get_match_urls(), get_match_results(), get_season_team_stats()","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-023","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.2.3","title":"worldfootballR 0.2.3","text":"Added league_url argument get_player_market_values() allow extraction non-standard (leagues stored worldfootballR_data) leagues","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-022","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.2.2","title":"worldfootballR 0.2.2","text":"Added player nationalities positions output get_player_market_values() data output","code":""},{"path":[]},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"general-changes-0-2-1","dir":"Changelog","previous_headings":"","what":"General Changes","title":"worldfootballR 0.2.1","text":"Removed internal functions longer necessary (data stored JaseZiv/worldfootballR_data instead) Usage instructions now vignettes opposed README","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"bugs-0-2-1","dir":"Changelog","previous_headings":"","what":"Bugs","title":"worldfootballR 0.2.1","text":"Fixed duplicate column name issue keeper stats #13","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-020","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.2.0","title":"worldfootballR 0.2.0","text":"Added get_player_market_values get player valuations transfermarkt.com","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-010","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.1.0","title":"worldfootballR 0.1.0","text":"Bug fixes #8 Package Logo Tests written codecov installed","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-001","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.0.1","title":"worldfootballR 0.0.1","text":"performance improvements, including limiting page reads match report data included output error handling","code":""},{"path":"https://jaseziv.github.io/worldfootballR/news/index.html","id":"worldfootballr-0009000","dir":"Changelog","previous_headings":"","what":"worldfootballR 0.0.0.9000","title":"worldfootballR 0.0.0.9000","text":"First commit package Added function get match results given tier-1 league season get_match_results() Added function extract match URLs given tier-1 league season get_match_urls() Added function get team season statistics get_season_team_stats() Added function get additional metadata matches get_match_report() Added function get match lineups selected match urls get_match_lineups() Added function get advanced match statistics players /teams get_advanced_match_statistics() Added function get match events summary get_match_summary()","code":""}]