commit 3e44b40c3597ae8f10069e7e3efe63978ba481c0 Author: silva guimaraes Date: Fri Jun 27 22:32:27 2025 -0300 commit inicial diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bb9c6cc --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +_build/ +.env diff --git a/.ocamlformat b/.ocamlformat new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/.ocamlformat @@ -0,0 +1 @@ + diff --git a/api.opam b/api.opam new file mode 100644 index 0000000..ab7cba2 --- /dev/null +++ b/api.opam @@ -0,0 +1,32 @@ +# This file is generated by dune, edit dune-project instead +opam-version: "2.0" +synopsis: "A short synopsis" +description: "A longer description" +maintainer: ["Maintainer Name "] +authors: ["Author Name "] +license: "LICENSE" +tags: ["add topics" "to describe" "your" "project"] +homepage: "https://github.com/username/reponame" +doc: "https://url/to/documentation" +bug-reports: "https://github.com/username/reponame/issues" +depends: [ + "dune" {>= "3.18"} + "ocaml" + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/username/reponame.git" +x-maintenance-intent: ["(latest)"] diff --git a/bin/dune b/bin/dune new file mode 100644 index 0000000..3be11a5 --- /dev/null +++ b/bin/dune @@ -0,0 +1,5 @@ +(executable + (public_name api) + (name main) + (libraries api) + (modes byte exe)) diff --git a/bin/main.ml b/bin/main.ml new file mode 100644 index 0000000..b6e1967 --- /dev/null +++ b/bin/main.ml @@ -0,0 +1,160 @@ +open Printf +open Api + +let tournaments : Lib.tournament_scrape_context list = + [ + { + id = 357; + season = 69619; + name = "CWC"; + filter_foreigners = true; + timezone_offset = None; + }; + { + id = 384; + season = 70083; + name = "LIBERTADORES"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 480; + season = 70070; + name = "SUDAMERICANA"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 373; + season = 71944; + name = "COPA DO BRASIL"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 1024; + season = 70664; + name = "COPA ARGENTINA"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 325; + season = 72034; + name = "BRA1"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 155; + season = 70268; + name = "ARG1"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 278; + season = 71306; + name = "URY1"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 11539; + season = 70681; + name = "COL1"; + filter_foreigners = false; + timezone_offset = Some ~-5; + }; + { + id = 1335; + season = 76050; + name = "COPA COLOMBIA"; + filter_foreigners = false; + timezone_offset = Some ~-5; + }; + { + id = 390; + season = 72603; + name = "BRA2"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 1221; + season = 71100; + name = "COPA CHILE"; + filter_foreigners = false; + timezone_offset = Some ~-4; + }; + { + id = 11653; + season = 71131; + name = "CHL1"; + filter_foreigners = false; + timezone_offset = Some ~-4; + }; + { + id = 11540; + season = 69799; + name = "PRY1"; + filter_foreigners = false; + timezone_offset = None; + }; + ] + +let pp (day : Unix.tm) matches = + let pp_matches matches = + matches + |> List.map (Lib.Tournament.pp day) + |> List.filter (( <> ) "") + |> String.concat "\n\n" + in + let ppd_matches = pp_matches matches in + let weekday = function + | 0 -> "sunday" + | 1 -> "monday" + | 2 -> "tuesday" + | 3 -> "wednesday" + | 4 -> "thursday" + | 5 -> "sexday" + | 6 -> "saturday" + | _ -> failwith "impossible" + in + if ppd_matches = "" then "" + else + sprintf ">%s %02d/%02d:\n%s" (weekday day.tm_wday) day.tm_mday day.tm_mon + ppd_matches + +let f () = + let fetched = Lib.fetch_all tournaments in + let today = Unix.time () |> Unix.gmtime in + let tomorrow = Unix.time () +. (60. *. 60. *. 24.) |> Unix.gmtime in + let header = "### schedules" in + let schedules = + match (pp today fetched, pp tomorrow fetched) with + | "", "" -> "" + | "", b -> b + | a, "" -> a + | a, b -> sprintf "%s\n\n%s" a b + in + let footer = + "the script messes up with the bottom right views counter so here's a more \ + realiable source:\n\n\ + ![since march 28th, 2025](https://count.getloli.com/@copalib)\n\n\ + check these [useful links](https://rentry.org/copalib) at the main page\n\n\ + ***\n" + in + let md = + sprintf "%s\n\n```text\n%s\n\nUTC-3/[local time]\n```\n\n%s" header schedules footer + in + (* print_endline md *) + Rentry.update_page md +;; + +while true do + print_endline "fetching matches..."; + f (); + print_endline "\nupdated. sleeping for 5 minutes"; + Unix.sleep 300 +done diff --git a/dune-project b/dune-project new file mode 100644 index 0000000..4cac296 --- /dev/null +++ b/dune-project @@ -0,0 +1,26 @@ +(lang dune 3.18) + +(name api) + +(generate_opam_files true) + +(source + (github username/reponame)) + +(authors "Author Name ") + +(maintainers "Maintainer Name ") + +(license LICENSE) + +(documentation https://url/to/documentation) + +(package + (name api) + (synopsis "A short synopsis") + (description "A longer description") + (depends ocaml) + (tags + ("add topics" "to describe" your project))) + +; See the complete stanza docs at https://dune.readthedocs.io/en/stable/reference/dune-project/index.html diff --git a/lib/dune b/lib/dune new file mode 100644 index 0000000..1098762 --- /dev/null +++ b/lib/dune @@ -0,0 +1,6 @@ +(library + (name api) + (public_name api) + ; (modules api rentry) + (libraries cohttp cohttp-lwt-unix cohttp-curl-lwt yojson ppx_deriving_yojson.runtime) + (preprocess (pps ppx_yojson_conv ppx_deriving.show ppx_expect))) diff --git a/lib/lib.ml b/lib/lib.ml new file mode 100644 index 0000000..6e1f0c8 --- /dev/null +++ b/lib/lib.ml @@ -0,0 +1,230 @@ +open Ppx_yojson_conv_lib.Yojson_conv.Primitives +open Printf + +type api_status = { + code : int; + description : string; + typ : string; [@key "type"] +} +[@@deriving yojson, show] + +type api_country = { alpha2 : string; alpha3 : string; name : string } +[@@yojson.allow_extra_fields] [@@deriving yojson, show] + +type api_team_colors = { primary : string; secondary : string; text : string } +[@@deriving yojson, show] + +type api_team = { + id : int; + name : string; + gender : string; + teamColors : api_team_colors; + country : api_country; +} +[@@yojson.allow_extra_fields] [@@deriving yojson, show] + +type api_tournament_info = { name : string; slug : string } +[@@yojson.allow_extra_fields] [@@deriving yojson, show] + +type api_score = { + current : int; + period1 : int; + period2 : int; + normaltime : int; +} +[@@yojson.allow_extra_fields] [@@deriving yojson, show] + +type api_time = { + injuryTime1 : int option; [@yojson.option] + injuryTime2 : int option; [@yojson.option] + currentPeriodStartTimestamp : int option; [@yojson.option] +} +[@@yojson.allow_extra_fields] [@@deriving yojson, show] + +type api_match = { + tournament : api_tournament_info; + homeTeam : api_team; + awayTeam : api_team; + (* homeScore: api_team; *) + (* awayScore: api_team; *) + status : api_status; + time : api_time; + startTimestamp : int; +} +[@@yojson.allow_extra_fields] [@@deriving yojson, show] + +type api_events = { events : api_match list } +[@@yojson.allow_extra_fields] [@@deriving yojson, show] + +type half = + | FirstHalf of { injury_time1 : int option } + | HalfTime of { injury_time1 : int } + | SecondHalf of { + injury_time1 : int; + (* second_half_start_timestamp: int; *) + injury_time2 : int option; + } +[@@deriving show] + +type time = { start_timestamp : int; half : half } [@@deriving show] + +type status = + | NotStarted of { start_timestamp : int } + | Postponed + | Canceled + | InProgress of time + | Completed of time +[@@deriving show] + +(* TODO: round info *) +type match' = { status : status; home_team : api_team; away_team : api_team } +[@@deriving show] + +type tournament_scrape_context = { + id : int; + season : int; + name : string; + filter_foreigners : bool; + timezone_offset : int option (* we assumes UTC-3 if None *); +} +[@@deriving show] + +let mmod a b = ((a mod b) + b) mod b + +let is_conmebol x = + match x.country.alpha2 with + | "AR" | "BO" | "BR" | "CL" | "CO" | "EC" | "PY" | "PE" | "UY" | "VE" -> true + | _ -> false + +module Tournament = struct + type t = { context : tournament_scrape_context; matches : match' list } + + let make context matches = { context; matches } + + let pp (day : Unix.tm) tournament = + let m = + tournament.matches + |> List.filter (fun x -> + match x.status with + | Postponed | Completed _ | Canceled -> false + | InProgress _ | NotStarted _ -> true) + |> List.filter (fun x -> + if tournament.context.filter_foreigners then + is_conmebol x.home_team || is_conmebol x.away_team + else true) + |> List.filter (fun x -> + let ts = + match x.status with + | Postponed | Canceled -> -1 + | NotStarted t -> t.start_timestamp + | InProgress t -> t.start_timestamp + | Completed t -> t.start_timestamp + in + let t = ts |> float_of_int |> Unix.localtime in + t.tm_mday = day.tm_mday) + |> List.map (fun x -> + let timestamp = + match x.status with + | Postponed | Completed _ | Canceled -> + failwith "impossible: improper filter" + | InProgress _ -> "NOW! " + | NotStarted t -> ( + let ts1 = + t.start_timestamp |> float_of_int |> Unix.localtime + in + match tournament.context.timezone_offset with + | None -> sprintf "%02d:%02d" ts1.tm_hour ts1.tm_min + | Some off -> + let ts2 = + t.start_timestamp |> float_of_int |> Unix.gmtime + in + sprintf "%02d:%02d/%02d:%02d" ts1.tm_hour ts1.tm_min + (mmod (ts2.tm_hour + off) 24) ts2.tm_min) + in + sprintf "%s | %s x %s" timestamp x.home_team.name x.away_team.name) + |> String.concat "\n" + in + if m = "" then "" + else + match tournament.context.timezone_offset with + | None -> sprintf ">%s\n%s" tournament.context.name m + | Some off -> sprintf ">%s (UTC%d)\n%s" tournament.context.name off m +end + +let ( let* ) = Lwt.bind + +let get url : string = + let http_get url = + Printf.printf "\r%-90s" url; + Stdlib.flush Stdlib.stdout; + let* resp, body = Cohttp_lwt_unix.Client.get (Uri.of_string url) in + let code = resp |> Cohttp.Response.status |> Cohttp.Code.code_of_status in + if Cohttp.Code.is_success code then + let* b = Cohttp_lwt.Body.to_string body in + Lwt.return (Ok b) + else Lwt.return (Error (Cohttp.Code.reason_phrase_of_code code)) + in + Lwt_main.run + (let* result = http_get url in + match result with + | Error str -> failwith str + | Ok result -> Lwt.return result) + +let matches_of_api_events (e : api_events) = + e.events + |> List.map (fun (m : api_match) -> + { + home_team = m.homeTeam; + away_team = m.awayTeam; + status = + (let typ = m.status.typ in + let h = + match m.time with + | { + injuryTime1 = x; + injuryTime2 = None; + currentPeriodStartTimestamp = _; + } -> + FirstHalf { injury_time1 = x } + | { + injuryTime1 = Some x; + injuryTime2 = y; + currentPeriodStartTimestamp = _; + } -> + SecondHalf + { + injury_time1 = x; + injury_time2 = y; + (* second_half_start_timestamp = z; *) + } + | { + injuryTime1 = None; + injuryTime2 = Some y; + currentPeriodStartTimestamp = _; + } -> + SecondHalf { injury_time1 = 0; injury_time2 = Some y } + in + let t = { start_timestamp = m.startTimestamp; half = h } in + match typ with + | "notstarted" -> + NotStarted { start_timestamp = m.startTimestamp } + | "postponed" -> Postponed + | "canceled" -> Canceled + | "inprogress" -> InProgress t + | "finished" -> Completed t + | _ -> failwith (sprintf "unrecognized match type: %s" typ)); + }) + +let fetch_matches ctx = + let g order = + try + sprintf + "https://www.sofascore.com/api/v1/unique-tournament/%d/season/%d/events/%s/0" + ctx.id ctx.season order + |> get |> Yojson.Safe.from_string |> api_events_of_yojson + |> matches_of_api_events + with Failure str when str = "Not Found" -> [] + in + Tournament.make ctx (List.append (g "last") (g "next")) + +let fetch_all tournaments = tournaments |> List.map fetch_matches diff --git a/lib/rentry.ml b/lib/rentry.ml new file mode 100644 index 0000000..3b7b50a --- /dev/null +++ b/lib/rentry.ml @@ -0,0 +1,54 @@ +open Cohttp + +let ( let* ) = Lwt.bind + +let update_page content = + let aux () = + let* resp, _ = + Cohttp_lwt_unix.Client.get (Uri.of_string "https://rentry.org") + in + let code = resp |> Response.status |> Code.code_of_status in + if not (Code.is_success code) then + Lwt.return (Error (Cohttp.Code.reason_phrase_of_code code)) + else + let cookies = + Cohttp.Response.headers resp |> Cookie.Set_cookie_hdr.extract + in + let token = List.assoc "csrftoken" cookies in + let _, value = token.cookie in + let form = + Cohttp_lwt.Body.of_form + [ + ("csrfmiddlewaretoken", [ value ]); + ("edit_code", [ "foo perro bar caca" ]); + ("text", [ content ]); + ] + in + let uri = Uri.of_string "https://rentry.org/copalib-schedule/edit" in + let req_headers = + Cohttp.Header.( + let h0 = init () in + let h1 = add h0 "Referer" "https://rentry.org" in + let h2 = add h1 "Content-Type" "application/x-www-form-urlencoded" in + let h3 = add h2 "User-Agent" "copabot/v0.1.0" in + let hname, hvalue = + cookies + |> List.map (fun (x : string * Cookie.Set_cookie_hdr.t) -> + let _, v = x in + v.cookie) + |> Cookie.Cookie_hdr.serialize + in + add h3 hname hvalue) + in + let* resp, _ = + Cohttp_lwt_unix.Client.post uri ?body:(Some form) + ?headers:(Some req_headers) + in + let code = resp |> Response.status |> Code.code_of_status in + if not (Code.is_success code || Code.is_redirection code) then + Lwt.return (Error (Cohttp.Code.reason_phrase_of_code code)) + else Lwt.return (Ok ()) + in + Lwt_main.run + (let* result = aux () in + match result with Error str -> failwith str | Ok _ -> Lwt.return ()) diff --git a/test/api_test.ml b/test/api_test.ml new file mode 100644 index 0000000..2bc711b --- /dev/null +++ b/test/api_test.ml @@ -0,0 +1,1120 @@ +open Api + +(* FIXME!!! *) +let events = + Yojson.Safe.from_file (Sys.getenv "PWD" ^ "/test/testdata/time1.json") + +let api_events = + try Lib.api_events_of_yojson events + with Ppx_yojson_conv_lib__Yojson_conv.Of_yojson_error (exn, _) -> + failwith (Printexc.to_string exn) + +let%expect_test _ = + print_string (Lib.show_api_events api_events); + [%expect + {| + { Api.events = + [{ Api.tournament = + { Api.name = "FIFA Club World Cup, Group F"; + slug = "fifa-club-world-cup-group-f" }; + homeTeam = + { Api.id = 7653; name = "Ulsan HD"; gender = "M"; + teamColors = + { Api.primary = "#0066ff"; secondary = "#0066ff"; text = "#0066ff" }; + country = { Api.alpha2 = "KR"; alpha3 = "KOR"; name = "South Korea" } + }; + awayTeam = + { Api.id = 7665; name = "Mamelodi Sundowns"; gender = "M"; + teamColors = + { Api.primary = "#ffe000"; secondary = "#008100"; text = "#008100" }; + country = { Api.alpha2 = "ZA"; alpha3 = "ZAF"; name = "South Africa" } + }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 3); injuryTime2 = (Some 5); + currentPeriodStartTimestamp = (Some 1750205496) }; + startTimestamp = 1750197600 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group E"; + slug = "fifa-club-world-cup-group-e" }; + homeTeam = + { Api.id = 1932; name = "CF Monterrey"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "MX"; alpha3 = "MEX"; name = "Mexico" } }; + awayTeam = + { Api.id = 2697; name = "Inter"; gender = "M"; + teamColors = + { Api.primary = "#1a57cc"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "IT"; alpha3 = "ITA"; name = "Italy" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 4); injuryTime2 = (Some 6); + currentPeriodStartTimestamp = (Some 1750212459) }; + startTimestamp = 1750208400 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group G"; + slug = "fifa-club-world-cup-group-g" }; + homeTeam = + { Api.id = 17; name = "Manchester City"; gender = "M"; + teamColors = + { Api.primary = "#66ccff"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "EN"; alpha3 = "ENG"; name = "England" } }; + awayTeam = + { Api.id = 36268; name = "Wydad Casablanca"; gender = "M"; + teamColors = + { Api.primary = "#ff0000"; secondary = "#ff0000"; text = "#ff0000" }; + country = { Api.alpha2 = "MA"; alpha3 = "MAR"; name = "Morocco" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 3); injuryTime2 = (Some 6); + currentPeriodStartTimestamp = (Some 1750266497) }; + startTimestamp = 1750262400 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group H"; + slug = "fifa-club-world-cup-group-h" }; + homeTeam = + { Api.id = 2829; name = "Real Madrid"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#004996"; text = "#004996" }; + country = { Api.alpha2 = "ES"; alpha3 = "ESP"; name = "Spain" } }; + awayTeam = + { Api.id = 21895; name = "Al-Hilal"; gender = "M"; + teamColors = + { Api.primary = "#0080ff"; secondary = "#0080ff"; text = "#0080ff" }; + country = + { Api.alpha2 = "SA"; alpha3 = "SAU"; name = "Saudi Arabia" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 5); injuryTime2 = (Some 7); + currentPeriodStartTimestamp = (Some 1750277549) }; + startTimestamp = 1750273200 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group H"; + slug = "fifa-club-world-cup-group-h" }; + homeTeam = + { Api.id = 1936; name = "CF Pachuca"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#008bce"; text = "#008bce" }; + country = { Api.alpha2 = "MX"; alpha3 = "MEX"; name = "Mexico" } }; + awayTeam = + { Api.id = 2046; name = "Red Bull Salzburg"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#ff0000"; text = "#ff0000" }; + country = { Api.alpha2 = "AT"; alpha3 = "AUT"; name = "Austria" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 1); injuryTime2 = (Some 3); + currentPeriodStartTimestamp = (Some 1750287779) }; + startTimestamp = 1750284000 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group G"; + slug = "fifa-club-world-cup-group-g" }; + homeTeam = + { Api.id = 37082; name = "Al-Ain"; gender = "M"; + teamColors = + { Api.primary = "#020c7d"; secondary = "#07017e"; text = "#07017e" }; + country = + { Api.alpha2 = "AE"; alpha3 = "ARE"; name = "United Arab Emirates" } + }; + awayTeam = + { Api.id = 2687; name = "Juventus"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "IT"; alpha3 = "ITA"; name = "Italy" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 5); injuryTime2 = (Some 3); + currentPeriodStartTimestamp = (Some 1750299060) }; + startTimestamp = 1750294800 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group A"; + slug = "fifa-club-world-cup-group-a" }; + homeTeam = + { Api.id = 1963; name = "Palmeiras"; gender = "M"; + teamColors = + { Api.primary = "#339966"; secondary = "#336633"; text = "#336633" }; + country = { Api.alpha2 = "BR"; alpha3 = "BRA"; name = "Brazil" } }; + awayTeam = + { Api.id = 6910; name = "Al Ahly FC"; gender = "M"; + teamColors = + { Api.primary = "#cc0000"; secondary = "#990000"; text = "#990000" }; + country = { Api.alpha2 = "EG"; alpha3 = "EGY"; name = "Egypt" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 6); injuryTime2 = (Some 6); + currentPeriodStartTimestamp = (Some 1750353004) }; + startTimestamp = 1750348800 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group A"; + slug = "fifa-club-world-cup-group-a" }; + homeTeam = + { Api.id = 337602; name = "Inter Miami CF"; gender = "M"; + teamColors = + { Api.primary = "#212322"; secondary = "#f6b5cc"; text = "#f6b5cc" }; + country = { Api.alpha2 = "US"; alpha3 = "USA"; name = "USA" } }; + awayTeam = + { Api.id = 3002; name = "FC Porto"; gender = "M"; + teamColors = + { Api.primary = "#194f93"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "PT"; alpha3 = "PRT"; name = "Portugal" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 2); injuryTime2 = (Some 7); + currentPeriodStartTimestamp = (Some 1750363680) }; + startTimestamp = 1750359600 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group B"; + slug = "fifa-club-world-cup-group-b" }; + homeTeam = + { Api.id = 22009; name = "Seattle Sounders FC"; gender = "M"; + teamColors = + { Api.primary = "#33cc00"; secondary = "#0066ff"; text = "#0066ff" }; + country = { Api.alpha2 = "US"; alpha3 = "USA"; name = "USA" } }; + awayTeam = + { Api.id = 2836; name = "Atl\195\169tico Madrid"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#c40000"; text = "#c40000" }; + country = { Api.alpha2 = "ES"; alpha3 = "ESP"; name = "Spain" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 3); injuryTime2 = (Some 5); + currentPeriodStartTimestamp = (Some 1750374266) }; + startTimestamp = 1750370400 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group B"; + slug = "fifa-club-world-cup-group-b" }; + homeTeam = + { Api.id = 1644; name = "Paris Saint-Germain"; gender = "M"; + teamColors = + { Api.primary = "#000066"; secondary = "#ff1541"; text = "#ff1541" }; + country = { Api.alpha2 = "FR"; alpha3 = "FRA"; name = "France" } }; + awayTeam = + { Api.id = 1958; name = "Botafogo"; gender = "M"; + teamColors = + { Api.primary = "#000000"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "BR"; alpha3 = "BRA"; name = "Brazil" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 6); injuryTime2 = (Some 6); + currentPeriodStartTimestamp = (Some 1750385379) }; + startTimestamp = 1750381200 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group C"; + slug = "fifa-club-world-cup-group-c" }; + homeTeam = + { Api.id = 3006; name = "Benfica"; gender = "M"; + teamColors = + { Api.primary = "#cc0000"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "PT"; alpha3 = "PRT"; name = "Portugal" } }; + awayTeam = + { Api.id = 6909; name = "Auckland City"; gender = "M"; + teamColors = + { Api.primary = "#000033"; secondary = "#000033"; text = "#000033" }; + country = { Api.alpha2 = "NZ"; alpha3 = "NZL"; name = "New Zealand" } + }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 4); injuryTime2 = (Some 4); + currentPeriodStartTimestamp = (Some 1750447217) }; + startTimestamp = 1750435200 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group D"; + slug = "fifa-club-world-cup-group-d" }; + homeTeam = + { Api.id = 5981; name = "Flamengo"; gender = "M"; + teamColors = + { Api.primary = "#ff0000"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "BR"; alpha3 = "BRA"; name = "Brazil" } }; + awayTeam = + { Api.id = 38; name = "Chelsea"; gender = "M"; + teamColors = + { Api.primary = "#0310a7"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "EN"; alpha3 = "ENG"; name = "England" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 3); injuryTime2 = (Some 7); + currentPeriodStartTimestamp = (Some 1750446516) }; + startTimestamp = 1750442400 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group D"; + slug = "fifa-club-world-cup-group-d" }; + homeTeam = + { Api.id = 274650; name = "Los Angeles FC"; gender = "M"; + teamColors = + { Api.primary = "#303030"; secondary = "#c39e69"; text = "#c39e69" }; + country = { Api.alpha2 = "US"; alpha3 = "USA"; name = "USA" } }; + awayTeam = + { Api.id = 59628; name = "Esp\195\169rance Tunis"; gender = "M"; + teamColors = + { Api.primary = "#ede664"; secondary = "#e04f5b"; text = "#e04f5b" }; + country = { Api.alpha2 = "TN"; alpha3 = "TUN"; name = "Tunisia" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 2); injuryTime2 = (Some 8); + currentPeriodStartTimestamp = (Some 1750460763) }; + startTimestamp = 1750456800 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group C"; + slug = "fifa-club-world-cup-group-c" }; + homeTeam = + { Api.id = 2672; name = "FC Bayern M\195\188nchen"; gender = "M"; + teamColors = + { Api.primary = "#cf142f"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "DE"; alpha3 = "DEU"; name = "Germany" } }; + awayTeam = + { Api.id = 3202; name = "Boca Juniors"; gender = "M"; + teamColors = + { Api.primary = "#003399"; secondary = "#ffcc66"; text = "#ffcc66" }; + country = { Api.alpha2 = "AR"; alpha3 = "ARG"; name = "Argentina" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 1); injuryTime2 = (Some 8); + currentPeriodStartTimestamp = (Some 1750471621) }; + startTimestamp = 1750467600 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group F"; + slug = "fifa-club-world-cup-group-f" }; + homeTeam = + { Api.id = 7665; name = "Mamelodi Sundowns"; gender = "M"; + teamColors = + { Api.primary = "#ffe000"; secondary = "#008100"; text = "#008100" }; + country = + { Api.alpha2 = "ZA"; alpha3 = "ZAF"; name = "South Africa" } }; + awayTeam = + { Api.id = 2673; name = "Borussia Dortmund"; gender = "M"; + teamColors = + { Api.primary = "#ffe600"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "DE"; alpha3 = "DEU"; name = "Germany" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 3); injuryTime2 = (Some 6); + currentPeriodStartTimestamp = (Some 1750525478) }; + startTimestamp = 1750521600 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group E"; + slug = "fifa-club-world-cup-group-e" }; + homeTeam = + { Api.id = 2697; name = "Inter"; gender = "M"; + teamColors = + { Api.primary = "#1a57cc"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "IT"; alpha3 = "ITA"; name = "Italy" } }; + awayTeam = + { Api.id = 3145; name = "Urawa Red Diamonds"; gender = "M"; + teamColors = + { Api.primary = "#cc0033"; secondary = "#cc0033"; text = "#cc0033" }; + country = { Api.alpha2 = "JP"; alpha3 = "JPN"; name = "Japan" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 2); injuryTime2 = (Some 4); + currentPeriodStartTimestamp = (Some 1750536257) }; + startTimestamp = 1750532400 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group F"; + slug = "fifa-club-world-cup-group-f" }; + homeTeam = + { Api.id = 1961; name = "Fluminense"; gender = "M"; + teamColors = + { Api.primary = "#660000"; secondary = "#006633"; text = "#006633" }; + country = { Api.alpha2 = "BR"; alpha3 = "BRA"; name = "Brazil" } }; + awayTeam = + { Api.id = 7653; name = "Ulsan HD"; gender = "M"; + teamColors = + { Api.primary = "#0066ff"; secondary = "#0066ff"; text = "#0066ff" }; + country = { Api.alpha2 = "KR"; alpha3 = "KOR"; name = "South Korea" } + }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 3); injuryTime2 = (Some 7); + currentPeriodStartTimestamp = (Some 1750547059) }; + startTimestamp = 1750543200 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group E"; + slug = "fifa-club-world-cup-group-e" }; + homeTeam = + { Api.id = 3211; name = "River Plate"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#ff0000"; text = "#ff0000" }; + country = { Api.alpha2 = "AR"; alpha3 = "ARG"; name = "Argentina" } }; + awayTeam = + { Api.id = 1932; name = "CF Monterrey"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "MX"; alpha3 = "MEX"; name = "Mexico" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 4); injuryTime2 = (Some 5); + currentPeriodStartTimestamp = (Some 1750558152) }; + startTimestamp = 1750554000 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group G"; + slug = "fifa-club-world-cup-group-g" }; + homeTeam = + { Api.id = 2687; name = "Juventus"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "IT"; alpha3 = "ITA"; name = "Italy" } }; + awayTeam = + { Api.id = 36268; name = "Wydad Casablanca"; gender = "M"; + teamColors = + { Api.primary = "#ff0000"; secondary = "#ff0000"; text = "#ff0000" }; + country = { Api.alpha2 = "MA"; alpha3 = "MAR"; name = "Morocco" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 5); injuryTime2 = (Some 5); + currentPeriodStartTimestamp = (Some 1750612108) }; + startTimestamp = 1750608000 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group H"; + slug = "fifa-club-world-cup-group-h" }; + homeTeam = + { Api.id = 2829; name = "Real Madrid"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#004996"; text = "#004996" }; + country = { Api.alpha2 = "ES"; alpha3 = "ESP"; name = "Spain" } }; + awayTeam = + { Api.id = 1936; name = "CF Pachuca"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#008bce"; text = "#008bce" }; + country = { Api.alpha2 = "MX"; alpha3 = "MEX"; name = "Mexico" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 4); injuryTime2 = (Some 5); + currentPeriodStartTimestamp = (Some 1750622911) }; + startTimestamp = 1750618800 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group H"; + slug = "fifa-club-world-cup-group-h" }; + homeTeam = + { Api.id = 2046; name = "Red Bull Salzburg"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#ff0000"; text = "#ff0000" }; + country = { Api.alpha2 = "AT"; alpha3 = "AUT"; name = "Austria" } }; + awayTeam = + { Api.id = 21895; name = "Al-Hilal"; gender = "M"; + teamColors = + { Api.primary = "#0080ff"; secondary = "#0080ff"; text = "#0080ff" }; + country = + { Api.alpha2 = "SA"; alpha3 = "SAU"; name = "Saudi Arabia" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 4); injuryTime2 = (Some 6); + currentPeriodStartTimestamp = (Some 1750633633) }; + startTimestamp = 1750629600 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group G"; + slug = "fifa-club-world-cup-group-g" }; + homeTeam = + { Api.id = 17; name = "Manchester City"; gender = "M"; + teamColors = + { Api.primary = "#66ccff"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "EN"; alpha3 = "ENG"; name = "England" } }; + awayTeam = + { Api.id = 37082; name = "Al-Ain"; gender = "M"; + teamColors = + { Api.primary = "#020c7d"; secondary = "#07017e"; text = "#07017e" }; + country = + { Api.alpha2 = "AE"; alpha3 = "ARE"; name = "United Arab Emirates" } + }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 3); injuryTime2 = (Some 3); + currentPeriodStartTimestamp = (Some 1750644487) }; + startTimestamp = 1750640400 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group B"; + slug = "fifa-club-world-cup-group-b" }; + homeTeam = + { Api.id = 2836; name = "Atl\195\169tico Madrid"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#c40000"; text = "#c40000" }; + country = { Api.alpha2 = "ES"; alpha3 = "ESP"; name = "Spain" } }; + awayTeam = + { Api.id = 1958; name = "Botafogo"; gender = "M"; + teamColors = + { Api.primary = "#000000"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "BR"; alpha3 = "BRA"; name = "Brazil" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 7); injuryTime2 = (Some 6); + currentPeriodStartTimestamp = (Some 1750709404) }; + startTimestamp = 1750705200 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group B"; + slug = "fifa-club-world-cup-group-b" }; + homeTeam = + { Api.id = 22009; name = "Seattle Sounders FC"; gender = "M"; + teamColors = + { Api.primary = "#33cc00"; secondary = "#0066ff"; text = "#0066ff" }; + country = { Api.alpha2 = "US"; alpha3 = "USA"; name = "USA" } }; + awayTeam = + { Api.id = 1644; name = "Paris Saint-Germain"; gender = "M"; + teamColors = + { Api.primary = "#000066"; secondary = "#ff1541"; text = "#ff1541" }; + country = { Api.alpha2 = "FR"; alpha3 = "FRA"; name = "France" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 1); injuryTime2 = (Some 5); + currentPeriodStartTimestamp = (Some 1750709054) }; + startTimestamp = 1750705200 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group A"; + slug = "fifa-club-world-cup-group-a" }; + homeTeam = + { Api.id = 3002; name = "FC Porto"; gender = "M"; + teamColors = + { Api.primary = "#194f93"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "PT"; alpha3 = "PRT"; name = "Portugal" } }; + awayTeam = + { Api.id = 6910; name = "Al Ahly FC"; gender = "M"; + teamColors = + { Api.primary = "#cc0000"; secondary = "#990000"; text = "#990000" }; + country = { Api.alpha2 = "EG"; alpha3 = "EGY"; name = "Egypt" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 6); injuryTime2 = (Some 6); + currentPeriodStartTimestamp = (Some 1750730985) }; + startTimestamp = 1750726800 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group A"; + slug = "fifa-club-world-cup-group-a" }; + homeTeam = + { Api.id = 337602; name = "Inter Miami CF"; gender = "M"; + teamColors = + { Api.primary = "#212322"; secondary = "#f6b5cc"; text = "#f6b5cc" }; + country = { Api.alpha2 = "US"; alpha3 = "USA"; name = "USA" } }; + awayTeam = + { Api.id = 1963; name = "Palmeiras"; gender = "M"; + teamColors = + { Api.primary = "#339966"; secondary = "#336633"; text = "#336633" }; + country = { Api.alpha2 = "BR"; alpha3 = "BRA"; name = "Brazil" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 1); injuryTime2 = (Some 4); + currentPeriodStartTimestamp = (Some 1750730720) }; + startTimestamp = 1750726800 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group C"; + slug = "fifa-club-world-cup-group-c" }; + homeTeam = + { Api.id = 6909; name = "Auckland City"; gender = "M"; + teamColors = + { Api.primary = "#000033"; secondary = "#000033"; text = "#000033" }; + country = { Api.alpha2 = "NZ"; alpha3 = "NZL"; name = "New Zealand" } + }; + awayTeam = + { Api.id = 3202; name = "Boca Juniors"; gender = "M"; + teamColors = + { Api.primary = "#003399"; secondary = "#ffcc66"; text = "#ffcc66" }; + country = { Api.alpha2 = "AR"; alpha3 = "ARG"; name = "Argentina" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 5); injuryTime2 = (Some 6); + currentPeriodStartTimestamp = (Some 1750795746) }; + startTimestamp = 1750791600 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group C"; + slug = "fifa-club-world-cup-group-c" }; + homeTeam = + { Api.id = 3006; name = "Benfica"; gender = "M"; + teamColors = + { Api.primary = "#cc0000"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "PT"; alpha3 = "PRT"; name = "Portugal" } }; + awayTeam = + { Api.id = 2672; name = "FC Bayern M\195\188nchen"; gender = "M"; + teamColors = + { Api.primary = "#cf142f"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "DE"; alpha3 = "DEU"; name = "Germany" } }; + status = { Api.code = 100; description = "Ended"; typ = "finished" }; + time = + { Api.injuryTime1 = (Some 4); injuryTime2 = (Some 8); + currentPeriodStartTimestamp = (Some 1750795726) }; + startTimestamp = 1750791600 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group D"; + slug = "fifa-club-world-cup-group-d" }; + homeTeam = + { Api.id = 274650; name = "Los Angeles FC"; gender = "M"; + teamColors = + { Api.primary = "#303030"; secondary = "#c39e69"; text = "#c39e69" }; + country = { Api.alpha2 = "US"; alpha3 = "USA"; name = "USA" } }; + awayTeam = + { Api.id = 5981; name = "Flamengo"; gender = "M"; + teamColors = + { Api.primary = "#ff0000"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "BR"; alpha3 = "BRA"; name = "Brazil" } }; + status = + { Api.code = 31; description = "Halftime"; typ = "inprogress" }; + time = + { Api.injuryTime1 = (Some 4); injuryTime2 = None; + currentPeriodStartTimestamp = (Some 1750813321) }; + startTimestamp = 1750813200 }; + { Api.tournament = + { Api.name = "FIFA Club World Cup, Group D"; + slug = "fifa-club-world-cup-group-d" }; + homeTeam = + { Api.id = 59628; name = "Esp\195\169rance Tunis"; gender = "M"; + teamColors = + { Api.primary = "#ede664"; secondary = "#e04f5b"; text = "#e04f5b" }; + country = { Api.alpha2 = "TN"; alpha3 = "TUN"; name = "Tunisia" } }; + awayTeam = + { Api.id = 38; name = "Chelsea"; gender = "M"; + teamColors = + { Api.primary = "#0310a7"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "EN"; alpha3 = "ENG"; name = "England" } }; + status = + { Api.code = 31; description = "Halftime"; typ = "inprogress" }; + time = + { Api.injuryTime1 = (Some 5); injuryTime2 = None; + currentPeriodStartTimestamp = (Some 1750813211) }; + startTimestamp = 1750813200 } + ] + } |}] + +let%expect_test _ = + let m = Lib.matches_of_api_events api_events in + print_string (String.concat "\n" (List.map Lib.show_match' m)); + [%expect + {| + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750197600; + half = + Api.SecondHalf {injury_time1 = 3; + second_half_start_timestamp = 1750205496; injury_time2 = (Some 5)} + }); + home_team = + { Api.id = 7653; name = "Ulsan HD"; gender = "M"; + teamColors = + { Api.primary = "#0066ff"; secondary = "#0066ff"; text = "#0066ff" }; + country = { Api.alpha2 = "KR"; alpha3 = "KOR"; name = "South Korea" } }; + away_team = + { Api.id = 7665; name = "Mamelodi Sundowns"; gender = "M"; + teamColors = + { Api.primary = "#ffe000"; secondary = "#008100"; text = "#008100" }; + country = { Api.alpha2 = "ZA"; alpha3 = "ZAF"; name = "South Africa" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750208400; + half = + Api.SecondHalf {injury_time1 = 4; + second_half_start_timestamp = 1750212459; injury_time2 = (Some 6)} + }); + home_team = + { Api.id = 1932; name = "CF Monterrey"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "MX"; alpha3 = "MEX"; name = "Mexico" } }; + away_team = + { Api.id = 2697; name = "Inter"; gender = "M"; + teamColors = + { Api.primary = "#1a57cc"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "IT"; alpha3 = "ITA"; name = "Italy" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750262400; + half = + Api.SecondHalf {injury_time1 = 3; + second_half_start_timestamp = 1750266497; injury_time2 = (Some 6)} + }); + home_team = + { Api.id = 17; name = "Manchester City"; gender = "M"; + teamColors = + { Api.primary = "#66ccff"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "EN"; alpha3 = "ENG"; name = "England" } }; + away_team = + { Api.id = 36268; name = "Wydad Casablanca"; gender = "M"; + teamColors = + { Api.primary = "#ff0000"; secondary = "#ff0000"; text = "#ff0000" }; + country = { Api.alpha2 = "MA"; alpha3 = "MAR"; name = "Morocco" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750273200; + half = + Api.SecondHalf {injury_time1 = 5; + second_half_start_timestamp = 1750277549; injury_time2 = (Some 7)} + }); + home_team = + { Api.id = 2829; name = "Real Madrid"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#004996"; text = "#004996" }; + country = { Api.alpha2 = "ES"; alpha3 = "ESP"; name = "Spain" } }; + away_team = + { Api.id = 21895; name = "Al-Hilal"; gender = "M"; + teamColors = + { Api.primary = "#0080ff"; secondary = "#0080ff"; text = "#0080ff" }; + country = { Api.alpha2 = "SA"; alpha3 = "SAU"; name = "Saudi Arabia" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750284000; + half = + Api.SecondHalf {injury_time1 = 1; + second_half_start_timestamp = 1750287779; injury_time2 = (Some 3)} + }); + home_team = + { Api.id = 1936; name = "CF Pachuca"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#008bce"; text = "#008bce" }; + country = { Api.alpha2 = "MX"; alpha3 = "MEX"; name = "Mexico" } }; + away_team = + { Api.id = 2046; name = "Red Bull Salzburg"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#ff0000"; text = "#ff0000" }; + country = { Api.alpha2 = "AT"; alpha3 = "AUT"; name = "Austria" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750294800; + half = + Api.SecondHalf {injury_time1 = 5; + second_half_start_timestamp = 1750299060; injury_time2 = (Some 3)} + }); + home_team = + { Api.id = 37082; name = "Al-Ain"; gender = "M"; + teamColors = + { Api.primary = "#020c7d"; secondary = "#07017e"; text = "#07017e" }; + country = + { Api.alpha2 = "AE"; alpha3 = "ARE"; name = "United Arab Emirates" } }; + away_team = + { Api.id = 2687; name = "Juventus"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "IT"; alpha3 = "ITA"; name = "Italy" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750348800; + half = + Api.SecondHalf {injury_time1 = 6; + second_half_start_timestamp = 1750353004; injury_time2 = (Some 6)} + }); + home_team = + { Api.id = 1963; name = "Palmeiras"; gender = "M"; + teamColors = + { Api.primary = "#339966"; secondary = "#336633"; text = "#336633" }; + country = { Api.alpha2 = "BR"; alpha3 = "BRA"; name = "Brazil" } }; + away_team = + { Api.id = 6910; name = "Al Ahly FC"; gender = "M"; + teamColors = + { Api.primary = "#cc0000"; secondary = "#990000"; text = "#990000" }; + country = { Api.alpha2 = "EG"; alpha3 = "EGY"; name = "Egypt" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750359600; + half = + Api.SecondHalf {injury_time1 = 2; + second_half_start_timestamp = 1750363680; injury_time2 = (Some 7)} + }); + home_team = + { Api.id = 337602; name = "Inter Miami CF"; gender = "M"; + teamColors = + { Api.primary = "#212322"; secondary = "#f6b5cc"; text = "#f6b5cc" }; + country = { Api.alpha2 = "US"; alpha3 = "USA"; name = "USA" } }; + away_team = + { Api.id = 3002; name = "FC Porto"; gender = "M"; + teamColors = + { Api.primary = "#194f93"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "PT"; alpha3 = "PRT"; name = "Portugal" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750370400; + half = + Api.SecondHalf {injury_time1 = 3; + second_half_start_timestamp = 1750374266; injury_time2 = (Some 5)} + }); + home_team = + { Api.id = 22009; name = "Seattle Sounders FC"; gender = "M"; + teamColors = + { Api.primary = "#33cc00"; secondary = "#0066ff"; text = "#0066ff" }; + country = { Api.alpha2 = "US"; alpha3 = "USA"; name = "USA" } }; + away_team = + { Api.id = 2836; name = "Atl\195\169tico Madrid"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#c40000"; text = "#c40000" }; + country = { Api.alpha2 = "ES"; alpha3 = "ESP"; name = "Spain" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750381200; + half = + Api.SecondHalf {injury_time1 = 6; + second_half_start_timestamp = 1750385379; injury_time2 = (Some 6)} + }); + home_team = + { Api.id = 1644; name = "Paris Saint-Germain"; gender = "M"; + teamColors = + { Api.primary = "#000066"; secondary = "#ff1541"; text = "#ff1541" }; + country = { Api.alpha2 = "FR"; alpha3 = "FRA"; name = "France" } }; + away_team = + { Api.id = 1958; name = "Botafogo"; gender = "M"; + teamColors = + { Api.primary = "#000000"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "BR"; alpha3 = "BRA"; name = "Brazil" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750435200; + half = + Api.SecondHalf {injury_time1 = 4; + second_half_start_timestamp = 1750447217; injury_time2 = (Some 4)} + }); + home_team = + { Api.id = 3006; name = "Benfica"; gender = "M"; + teamColors = + { Api.primary = "#cc0000"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "PT"; alpha3 = "PRT"; name = "Portugal" } }; + away_team = + { Api.id = 6909; name = "Auckland City"; gender = "M"; + teamColors = + { Api.primary = "#000033"; secondary = "#000033"; text = "#000033" }; + country = { Api.alpha2 = "NZ"; alpha3 = "NZL"; name = "New Zealand" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750442400; + half = + Api.SecondHalf {injury_time1 = 3; + second_half_start_timestamp = 1750446516; injury_time2 = (Some 7)} + }); + home_team = + { Api.id = 5981; name = "Flamengo"; gender = "M"; + teamColors = + { Api.primary = "#ff0000"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "BR"; alpha3 = "BRA"; name = "Brazil" } }; + away_team = + { Api.id = 38; name = "Chelsea"; gender = "M"; + teamColors = + { Api.primary = "#0310a7"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "EN"; alpha3 = "ENG"; name = "England" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750456800; + half = + Api.SecondHalf {injury_time1 = 2; + second_half_start_timestamp = 1750460763; injury_time2 = (Some 8)} + }); + home_team = + { Api.id = 274650; name = "Los Angeles FC"; gender = "M"; + teamColors = + { Api.primary = "#303030"; secondary = "#c39e69"; text = "#c39e69" }; + country = { Api.alpha2 = "US"; alpha3 = "USA"; name = "USA" } }; + away_team = + { Api.id = 59628; name = "Esp\195\169rance Tunis"; gender = "M"; + teamColors = + { Api.primary = "#ede664"; secondary = "#e04f5b"; text = "#e04f5b" }; + country = { Api.alpha2 = "TN"; alpha3 = "TUN"; name = "Tunisia" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750467600; + half = + Api.SecondHalf {injury_time1 = 1; + second_half_start_timestamp = 1750471621; injury_time2 = (Some 8)} + }); + home_team = + { Api.id = 2672; name = "FC Bayern M\195\188nchen"; gender = "M"; + teamColors = + { Api.primary = "#cf142f"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "DE"; alpha3 = "DEU"; name = "Germany" } }; + away_team = + { Api.id = 3202; name = "Boca Juniors"; gender = "M"; + teamColors = + { Api.primary = "#003399"; secondary = "#ffcc66"; text = "#ffcc66" }; + country = { Api.alpha2 = "AR"; alpha3 = "ARG"; name = "Argentina" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750521600; + half = + Api.SecondHalf {injury_time1 = 3; + second_half_start_timestamp = 1750525478; injury_time2 = (Some 6)} + }); + home_team = + { Api.id = 7665; name = "Mamelodi Sundowns"; gender = "M"; + teamColors = + { Api.primary = "#ffe000"; secondary = "#008100"; text = "#008100" }; + country = { Api.alpha2 = "ZA"; alpha3 = "ZAF"; name = "South Africa" } }; + away_team = + { Api.id = 2673; name = "Borussia Dortmund"; gender = "M"; + teamColors = + { Api.primary = "#ffe600"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "DE"; alpha3 = "DEU"; name = "Germany" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750532400; + half = + Api.SecondHalf {injury_time1 = 2; + second_half_start_timestamp = 1750536257; injury_time2 = (Some 4)} + }); + home_team = + { Api.id = 2697; name = "Inter"; gender = "M"; + teamColors = + { Api.primary = "#1a57cc"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "IT"; alpha3 = "ITA"; name = "Italy" } }; + away_team = + { Api.id = 3145; name = "Urawa Red Diamonds"; gender = "M"; + teamColors = + { Api.primary = "#cc0033"; secondary = "#cc0033"; text = "#cc0033" }; + country = { Api.alpha2 = "JP"; alpha3 = "JPN"; name = "Japan" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750543200; + half = + Api.SecondHalf {injury_time1 = 3; + second_half_start_timestamp = 1750547059; injury_time2 = (Some 7)} + }); + home_team = + { Api.id = 1961; name = "Fluminense"; gender = "M"; + teamColors = + { Api.primary = "#660000"; secondary = "#006633"; text = "#006633" }; + country = { Api.alpha2 = "BR"; alpha3 = "BRA"; name = "Brazil" } }; + away_team = + { Api.id = 7653; name = "Ulsan HD"; gender = "M"; + teamColors = + { Api.primary = "#0066ff"; secondary = "#0066ff"; text = "#0066ff" }; + country = { Api.alpha2 = "KR"; alpha3 = "KOR"; name = "South Korea" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750554000; + half = + Api.SecondHalf {injury_time1 = 4; + second_half_start_timestamp = 1750558152; injury_time2 = (Some 5)} + }); + home_team = + { Api.id = 3211; name = "River Plate"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#ff0000"; text = "#ff0000" }; + country = { Api.alpha2 = "AR"; alpha3 = "ARG"; name = "Argentina" } }; + away_team = + { Api.id = 1932; name = "CF Monterrey"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "MX"; alpha3 = "MEX"; name = "Mexico" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750608000; + half = + Api.SecondHalf {injury_time1 = 5; + second_half_start_timestamp = 1750612108; injury_time2 = (Some 5)} + }); + home_team = + { Api.id = 2687; name = "Juventus"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "IT"; alpha3 = "ITA"; name = "Italy" } }; + away_team = + { Api.id = 36268; name = "Wydad Casablanca"; gender = "M"; + teamColors = + { Api.primary = "#ff0000"; secondary = "#ff0000"; text = "#ff0000" }; + country = { Api.alpha2 = "MA"; alpha3 = "MAR"; name = "Morocco" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750618800; + half = + Api.SecondHalf {injury_time1 = 4; + second_half_start_timestamp = 1750622911; injury_time2 = (Some 5)} + }); + home_team = + { Api.id = 2829; name = "Real Madrid"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#004996"; text = "#004996" }; + country = { Api.alpha2 = "ES"; alpha3 = "ESP"; name = "Spain" } }; + away_team = + { Api.id = 1936; name = "CF Pachuca"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#008bce"; text = "#008bce" }; + country = { Api.alpha2 = "MX"; alpha3 = "MEX"; name = "Mexico" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750629600; + half = + Api.SecondHalf {injury_time1 = 4; + second_half_start_timestamp = 1750633633; injury_time2 = (Some 6)} + }); + home_team = + { Api.id = 2046; name = "Red Bull Salzburg"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#ff0000"; text = "#ff0000" }; + country = { Api.alpha2 = "AT"; alpha3 = "AUT"; name = "Austria" } }; + away_team = + { Api.id = 21895; name = "Al-Hilal"; gender = "M"; + teamColors = + { Api.primary = "#0080ff"; secondary = "#0080ff"; text = "#0080ff" }; + country = { Api.alpha2 = "SA"; alpha3 = "SAU"; name = "Saudi Arabia" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750640400; + half = + Api.SecondHalf {injury_time1 = 3; + second_half_start_timestamp = 1750644487; injury_time2 = (Some 3)} + }); + home_team = + { Api.id = 17; name = "Manchester City"; gender = "M"; + teamColors = + { Api.primary = "#66ccff"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "EN"; alpha3 = "ENG"; name = "England" } }; + away_team = + { Api.id = 37082; name = "Al-Ain"; gender = "M"; + teamColors = + { Api.primary = "#020c7d"; secondary = "#07017e"; text = "#07017e" }; + country = + { Api.alpha2 = "AE"; alpha3 = "ARE"; name = "United Arab Emirates" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750705200; + half = + Api.SecondHalf {injury_time1 = 7; + second_half_start_timestamp = 1750709404; injury_time2 = (Some 6)} + }); + home_team = + { Api.id = 2836; name = "Atl\195\169tico Madrid"; gender = "M"; + teamColors = + { Api.primary = "#ffffff"; secondary = "#c40000"; text = "#c40000" }; + country = { Api.alpha2 = "ES"; alpha3 = "ESP"; name = "Spain" } }; + away_team = + { Api.id = 1958; name = "Botafogo"; gender = "M"; + teamColors = + { Api.primary = "#000000"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "BR"; alpha3 = "BRA"; name = "Brazil" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750705200; + half = + Api.SecondHalf {injury_time1 = 1; + second_half_start_timestamp = 1750709054; injury_time2 = (Some 5)} + }); + home_team = + { Api.id = 22009; name = "Seattle Sounders FC"; gender = "M"; + teamColors = + { Api.primary = "#33cc00"; secondary = "#0066ff"; text = "#0066ff" }; + country = { Api.alpha2 = "US"; alpha3 = "USA"; name = "USA" } }; + away_team = + { Api.id = 1644; name = "Paris Saint-Germain"; gender = "M"; + teamColors = + { Api.primary = "#000066"; secondary = "#ff1541"; text = "#ff1541" }; + country = { Api.alpha2 = "FR"; alpha3 = "FRA"; name = "France" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750726800; + half = + Api.SecondHalf {injury_time1 = 6; + second_half_start_timestamp = 1750730985; injury_time2 = (Some 6)} + }); + home_team = + { Api.id = 3002; name = "FC Porto"; gender = "M"; + teamColors = + { Api.primary = "#194f93"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "PT"; alpha3 = "PRT"; name = "Portugal" } }; + away_team = + { Api.id = 6910; name = "Al Ahly FC"; gender = "M"; + teamColors = + { Api.primary = "#cc0000"; secondary = "#990000"; text = "#990000" }; + country = { Api.alpha2 = "EG"; alpha3 = "EGY"; name = "Egypt" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750726800; + half = + Api.SecondHalf {injury_time1 = 1; + second_half_start_timestamp = 1750730720; injury_time2 = (Some 4)} + }); + home_team = + { Api.id = 337602; name = "Inter Miami CF"; gender = "M"; + teamColors = + { Api.primary = "#212322"; secondary = "#f6b5cc"; text = "#f6b5cc" }; + country = { Api.alpha2 = "US"; alpha3 = "USA"; name = "USA" } }; + away_team = + { Api.id = 1963; name = "Palmeiras"; gender = "M"; + teamColors = + { Api.primary = "#339966"; secondary = "#336633"; text = "#336633" }; + country = { Api.alpha2 = "BR"; alpha3 = "BRA"; name = "Brazil" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750791600; + half = + Api.SecondHalf {injury_time1 = 5; + second_half_start_timestamp = 1750795746; injury_time2 = (Some 6)} + }); + home_team = + { Api.id = 6909; name = "Auckland City"; gender = "M"; + teamColors = + { Api.primary = "#000033"; secondary = "#000033"; text = "#000033" }; + country = { Api.alpha2 = "NZ"; alpha3 = "NZL"; name = "New Zealand" } }; + away_team = + { Api.id = 3202; name = "Boca Juniors"; gender = "M"; + teamColors = + { Api.primary = "#003399"; secondary = "#ffcc66"; text = "#ffcc66" }; + country = { Api.alpha2 = "AR"; alpha3 = "ARG"; name = "Argentina" } } + } + { Api.status = + (Api.Completed + { Api.start_timestamp = 1750791600; + half = + Api.SecondHalf {injury_time1 = 4; + second_half_start_timestamp = 1750795726; injury_time2 = (Some 8)} + }); + home_team = + { Api.id = 3006; name = "Benfica"; gender = "M"; + teamColors = + { Api.primary = "#cc0000"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "PT"; alpha3 = "PRT"; name = "Portugal" } }; + away_team = + { Api.id = 2672; name = "FC Bayern M\195\188nchen"; gender = "M"; + teamColors = + { Api.primary = "#cf142f"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "DE"; alpha3 = "DEU"; name = "Germany" } } + } + { Api.status = + (Api.InProgress + { Api.start_timestamp = 1750813200; + half = + Api.SecondHalf {injury_time1 = 4; + second_half_start_timestamp = 1750813321; injury_time2 = None} + }); + home_team = + { Api.id = 274650; name = "Los Angeles FC"; gender = "M"; + teamColors = + { Api.primary = "#303030"; secondary = "#c39e69"; text = "#c39e69" }; + country = { Api.alpha2 = "US"; alpha3 = "USA"; name = "USA" } }; + away_team = + { Api.id = 5981; name = "Flamengo"; gender = "M"; + teamColors = + { Api.primary = "#ff0000"; secondary = "#000000"; text = "#000000" }; + country = { Api.alpha2 = "BR"; alpha3 = "BRA"; name = "Brazil" } } + } + { Api.status = + (Api.InProgress + { Api.start_timestamp = 1750813200; + half = + Api.SecondHalf {injury_time1 = 5; + second_half_start_timestamp = 1750813211; injury_time2 = None} + }); + home_team = + { Api.id = 59628; name = "Esp\195\169rance Tunis"; gender = "M"; + teamColors = + { Api.primary = "#ede664"; secondary = "#e04f5b"; text = "#e04f5b" }; + country = { Api.alpha2 = "TN"; alpha3 = "TUN"; name = "Tunisia" } }; + away_team = + { Api.id = 38; name = "Chelsea"; gender = "M"; + teamColors = + { Api.primary = "#0310a7"; secondary = "#ffffff"; text = "#ffffff" }; + country = { Api.alpha2 = "EN"; alpha3 = "ENG"; name = "England" } } + } |}] diff --git a/test/dune b/test/dune new file mode 100644 index 0000000..7e7fc2f --- /dev/null +++ b/test/dune @@ -0,0 +1,5 @@ +(library + (name test_api) + (inline_tests) + (libraries api yojson) + (preprocess (pps ppx_expect ppx_deriving.show))) diff --git a/test/testdata/events.json b/test/testdata/events.json new file mode 100644 index 0000000..456df12 --- /dev/null +++ b/test/testdata/events.json @@ -0,0 +1,5690 @@ +{ + "events": [ + { + "tournament": { + "name": "FIFA Club World Cup, Group A", + "slug": "fifa-club-world-cup-group-a", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 773, + "isGroup": true, + "groupName": "Group A", + "id": 142879, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 A", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "kNcsccKc", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 6910, + "country": { + "alpha2": "EG", + "alpha3": "EGY", + "name": "Egypt", + "slug": "egypt" + }, + "name": "Al Ahly FC", + "slug": "al-ahly-fc", + "shortName": "Al Ahly", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 536337, + "nameCode": "AAF", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#cc0000", + "secondary": "#990000", + "text": "#990000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u043b\u044c \u0410\u0445\u043b\u0438" + }, + "shortNameTranslation": { + "ar": "\u0627\u0644\u0623\u0647\u0644\u064a" + } + } + }, + "awayTeam": { + "id": 337602, + "country": { + "alpha2": "US", + "alpha3": "USA", + "name": "USA", + "slug": "usa" + }, + "name": "Inter Miami CF", + "slug": "inter-miami-cf", + "shortName": "Inter Miami", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1315421, + "nameCode": "IMC", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#212322", + "secondary": "#f6b5cc", + "text": "#f6b5cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631 \u0645\u064a\u0627\u0645\u064a", + "ru": "\u0418\u043d\u0442\u0435\u0440 \u041c\u0430\u0439\u0430\u043c\u0438", + "hi": "\u0907\u0902\u091f\u0930 \u092e\u093f\u0906\u092e\u093f \u0938\u0940\u090d\u095e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13193616, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "inter-miami-cf-al-ahly-fc", + "startTimestamp": 1749945600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group C", + "slug": "fifa-club-world-cup-group-c", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 771, + "isGroup": true, + "groupName": "Group C", + "id": 142881, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 C", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0938\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09b8\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "xdbsjNc", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 2672, + "country": { + "alpha2": "DE", + "alpha3": "DEU", + "name": "Germany", + "slug": "germany" + }, + "name": "FC Bayern M\u00fcnchen", + "slug": "fc-bayern-munchen", + "shortName": "Bayern", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2145701, + "nameCode": "FBM", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#cf142f", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0411\u0430\u0432\u0430\u0440\u0438\u044f \u041c\u044e\u043d\u0445\u0435\u043d" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u064a\u0631\u0646", + "hi": "\u092c\u093e\u092f\u0930\u094d\u0928", + "bn": "\u09ac\u09be\u09af\u09bc\u09be\u09b0\u09cd\u09a8" + } + } + }, + "awayTeam": { + "id": 6909, + "country": { + "alpha2": "NZ", + "alpha3": "NZL", + "name": "New Zealand", + "slug": "new-zealand" + }, + "name": "Auckland City", + "slug": "auckland-city", + "shortName": "Auckland City", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 10061, + "nameCode": "ACI", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#000033", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041e\u043a\u043b\u0435\u043d\u0434 \u0421\u0438\u0442\u0438" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0643\u0644\u0627\u0646\u062f \u0633\u064a\u062a\u064a" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200279, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "auckland-city-fc-bayern-munchen", + "startTimestamp": 1750003200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group B", + "slug": "fifa-club-world-cup-group-b", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 772, + "isGroup": true, + "groupName": "Group B", + "id": 142880, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 B", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u092c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09ac\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "UHsLgb", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 1644, + "country": { + "alpha2": "FR", + "alpha3": "FRA", + "name": "France", + "slug": "france" + }, + "name": "Paris Saint-Germain", + "slug": "paris-saint-germain", + "shortName": "PSG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2215575, + "nameCode": "PSG", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#000066", + "secondary": "#ff1541", + "text": "#ff1541" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0631\u064a\u0633 \u0633\u0627\u0646 \u062c\u064a\u0631\u0645\u0627\u0646", + "ru": "\u041f\u0430\u0440\u0438 \u0421\u0435\u043d-\u0416\u0435\u0440\u043c\u0435\u043d" + }, + "shortNameTranslation": { + "hi": "\u092a\u0940\u090f\u0938\u091c\u0940", + "bn": "\u09aa\u09bf\u098f\u09b8\u099c\u09bf" + } + } + }, + "awayTeam": { + "id": 2836, + "country": { + "alpha2": "ES", + "alpha3": "ESP", + "name": "Spain", + "slug": "spain" + }, + "name": "Atl\u00e9tico Madrid", + "slug": "atletico-madrid", + "shortName": "Atl. Madrid", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1628454, + "nameCode": "AMA", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#c40000", + "text": "#c40000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434", + "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921" + }, + "shortNameTranslation": { + "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f", + "bn": "\u098f\u099f\u09bf\u098f\u09b2. \u09ae\u09be\u09a6\u09cd\u09b0\u09bf\u09a6" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200221, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "atletico-madrid-paris-saint-germain", + "startTimestamp": 1750014000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group A", + "slug": "fifa-club-world-cup-group-a", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 773, + "isGroup": true, + "groupName": "Group A", + "id": 142879, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 A", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "nOsckb", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 1963, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 552230, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u0631\u0627\u0633" + } + } + }, + "awayTeam": { + "id": 3002, + "country": { + "alpha2": "PT", + "alpha3": "PRT", + "name": "Portugal", + "slug": "portugal" + }, + "name": "FC Porto", + "slug": "fc-porto", + "shortName": "Porto", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 745278, + "nameCode": "FCP", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#194f93", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041f\u043e\u0440\u0442\u0443" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u0631\u062a\u0648", + "hi": "\u092a\u094b\u0930\u094d\u0924\u094b", + "bn": "\u09aa\u09cb\u09b0\u09cd\u09a4\u09cb" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200213, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "fc-porto-palmeiras", + "startTimestamp": 1750024800, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group B", + "slug": "fifa-club-world-cup-group-b", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 772, + "isGroup": true, + "groupName": "Group B", + "id": 142880, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 B", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u092c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09ac\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "iOsjPi", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 1958, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 315360, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "awayTeam": { + "id": 22009, + "country": { + "alpha2": "US", + "alpha3": "USA", + "name": "USA", + "slug": "usa" + }, + "name": "Seattle Sounders FC", + "slug": "seattle-sounders-fc", + "shortName": "Seattle", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 17421, + "nameCode": "SEA", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#33cc00", + "secondary": "#0066ff", + "text": "#0066ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0421\u0438\u044d\u0442\u043b \u0421\u0430\u0443\u043d\u0434\u0435\u0440\u0441" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u062a\u0644" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200234, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "seattle-sounders-fc-botafogo", + "startTimestamp": 1750039200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group D", + "slug": "fifa-club-world-cup-group-d", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 770, + "isGroup": true, + "groupName": "Group D", + "id": 142882, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 D", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0921\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09a1\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "NsaTjc", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 38, + "country": { + "alpha2": "EN", + "alpha3": "ENG", + "name": "England", + "slug": "england" + }, + "name": "Chelsea", + "slug": "chelsea", + "shortName": "Chelsea", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2279167, + "nameCode": "CHE", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#0310a7", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062a\u0634\u064a\u0644\u0633\u064a", + "ru": "\u0427\u0435\u043b\u0441\u0438", + "hi": "\u091a\u0947\u0932\u094d\u0938\u0940", + "bn": "\u099a\u09c7\u09b2\u09b8\u09bf" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "id": 274650, + "country": { + "alpha2": "US", + "alpha3": "USA", + "name": "USA", + "slug": "usa" + }, + "name": "Los Angeles FC", + "slug": "los-angeles-fc", + "shortName": "Los Angeles", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 50996, + "nameCode": "LAN", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#303030", + "secondary": "#c39e69", + "text": "#c39e69" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0646\u0627\u062f\u064a \u0644\u0648\u0633 \u0623\u0646\u062c\u0644\u0648\u0633", + "ru": "\u041b\u043e\u0441-\u0410\u043d\u0434\u0436\u0435\u043b\u0435\u0441 \u0424\u041a", + "hi": "\u0932\u0949\u0938 \u090f\u0902\u091c\u0947\u0932\u0947\u0938 \u090d\u095e\u0938\u0940" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13905339, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "winner-of-qualification-playoffs-chelsea", + "startTimestamp": 1750100400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group C", + "slug": "fifa-club-world-cup-group-c", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 771, + "isGroup": true, + "groupName": "Group C", + "id": 142881, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 C", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0938\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09b8\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "gkbscob", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 3202, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina", + "slug": "argentina" + }, + "name": "Boca Juniors", + "slug": "boca-juniors", + "shortName": "Boca Juniors", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 287135, + "nameCode": "BJU", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#003399", + "secondary": "#ffcc66", + "text": "#ffcc66" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u0643\u0627 \u062c\u0648\u0646\u064a\u0648\u0631\u0632", + "ru": "\u0411\u043e\u043a\u0430 \u0425\u0443\u043d\u0438\u043e\u0440\u0441", + "hi": "\u092c\u094b\u0915\u093e \u091c\u0942\u0928\u093f\u092f\u0930\u094d\u0938" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "id": 3006, + "country": { + "alpha2": "PT", + "alpha3": "PRT", + "name": "Portugal", + "slug": "portugal" + }, + "name": "Benfica", + "slug": "benfica", + "shortName": "Benfica", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 880784, + "nameCode": "SLB", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#cc0000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0646\u0641\u064a\u0643\u0627", + "ru": "\u0411\u0435\u043d\u0444\u0438\u043a\u0430", + "hi": "\u092c\u0947\u0928\u092b\u093f\u0915\u093e", + "bn": "\u09ac\u09c7\u09a8\u09ab\u09bf\u0995\u09be" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200247, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "boca-juniors-benfica", + "startTimestamp": 1750111200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group D", + "slug": "fifa-club-world-cup-group-d", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 770, + "isGroup": true, + "groupName": "Group D", + "id": 142882, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 D", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0921\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09a1\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "GucsDRy", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 5981, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 823963, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "awayTeam": { + "id": 59628, + "country": { + "alpha2": "TN", + "alpha3": "TUN", + "name": "Tunisia", + "slug": "tunisia" + }, + "name": "Esp\u00e9rance Tunis", + "slug": "esperance-tunis", + "shortName": "Esp\u00e9rance", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 101244, + "nameCode": "ETU", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ede664", + "secondary": "#e04f5b", + "text": "#e04f5b" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u042d\u0441\u043f\u0435\u0440\u0430\u043d\u0441 \u0421\u043f\u043e\u0440\u0442\u0438\u0432" + }, + "shortNameTranslation": { + "ar": "\u0627\u0644\u062a\u0631\u062c\u064a", + "hi": "\u090f\u0938\u094d\u092a\u0947\u0930\u093e\u0902\u0938", + "bn": "\u098f\u09b8\u09cd\u09aa\u09c7\u09b0\u09c7\u09a8\u09cd\u09b8" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200282, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "esperance-tunis-flamengo", + "startTimestamp": 1750122000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group F", + "slug": "fifa-club-world-cup-group-f", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 768, + "isGroup": true, + "groupName": "Group F", + "id": 142884, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 F", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u092b", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u09ab" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "lOsydb", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 1961, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 306170, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "awayTeam": { + "id": 2673, + "country": { + "alpha2": "DE", + "alpha3": "DEU", + "name": "Germany", + "slug": "germany" + }, + "name": "Borussia Dortmund", + "slug": "borussia-dortmund", + "shortName": "Dortmund", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1510246, + "nameCode": "BVB", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffe600", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0411\u043e\u0440\u0443\u0441\u0441\u0438\u044f \u0414\u043e\u0440\u0442\u043c\u0443\u043d\u0434" + }, + "shortNameTranslation": { + "ar": "\u062f\u0648\u0631\u062a\u0645\u0648\u0646\u062f", + "hi": "\u0921\u0949\u0930\u094d\u091f\u092e\u0941\u0902\u0921", + "bn": "\u09a1\u09b0\u09cd\u099f\u09ae\u09c1\u09a8\u09cd\u09a1" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200230, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "borussia-dortmund-fluminense", + "startTimestamp": 1750176000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group E", + "slug": "fifa-club-world-cup-group-e", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 769, + "isGroup": true, + "groupName": "Group E", + "id": 142883, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 E", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0908", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u0987" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "Vmbslob", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 3211, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina", + "slug": "argentina" + }, + "name": "River Plate", + "slug": "river-plate", + "shortName": "River Plate", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 269119, + "nameCode": "RIV", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0420\u0438\u0432\u0435\u0440 \u041f\u043b\u0435\u0439\u0442", + "bn": "\u09b0\u09bf\u09ad\u09be\u09b0 \u09aa\u09cd\u09b2\u09c7\u099f" + }, + "shortNameTranslation": { + "ar": "\u0631\u064a\u0641\u0631 \u0628\u0644\u064a\u062a", + "hi": "\u0930\u093f\u0935\u0930" + } + } + }, + "awayTeam": { + "id": 3145, + "country": { + "alpha2": "JP", + "alpha3": "JPN", + "name": "Japan", + "slug": "japan" + }, + "name": "Urawa Red Diamonds", + "slug": "urawa-red-diamonds", + "shortName": "Urawa Reds", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 16675, + "nameCode": "URD", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#cc0033", + "secondary": "#cc0033", + "text": "#cc0033" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0423\u0440\u0430\u0432\u0430 \u0420\u0435\u0434 \u0414\u0430\u0439\u043c\u043e\u043d\u0434\u0441", + "hi": "\u0909\u0930\u093e\u0935\u093e \u0930\u0947\u0921 \u0921\u093e\u092f\u092e\u0902\u0921\u094d\u0938" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0631\u0627\u0648\u0627 \u0631\u064a\u062f\u0632" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200286, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "river-plate-urawa-red-diamonds", + "startTimestamp": 1750186800, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group F", + "slug": "fifa-club-world-cup-group-f", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 768, + "isGroup": true, + "groupName": "Group F", + "id": 142884, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 F", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u092b", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u09ab" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "dddspdd", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 7653, + "country": { + "alpha2": "KR", + "alpha3": "KOR", + "name": "South Korea", + "slug": "south-korea" + }, + "name": "Ulsan HD", + "slug": "ulsan-hd", + "shortName": "Ulsan", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 24415, + "nameCode": "UHD", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#0066ff", + "secondary": "#0066ff", + "text": "#0066ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0423\u043b\u0441\u0430\u043d \u0425\u044e\u043d\u0434\u0430\u0439" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0644\u0633\u0627\u0646" + } + } + }, + "awayTeam": { + "id": 7665, + "country": { + "alpha2": "ZA", + "alpha3": "ZAF", + "name": "South Africa", + "slug": "south-africa" + }, + "name": "Mamelodi Sundowns", + "slug": "mamelodi-sundowns", + "shortName": "Sundowns", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 182029, + "nameCode": "MAM", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffe000", + "secondary": "#008100", + "text": "#008100" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041c\u0430\u043c\u0435\u043b\u043e\u0434\u0438 \u0421\u0430\u043d\u0434\u0430\u0443\u043d\u0441", + "hi": "\u092e\u093e\u092e\u0947\u0932\u094b\u0921\u0940 \u0938\u0928\u0921\u093e\u0909\u0928\u094d\u0938" + }, + "shortNameTranslation": { + "ar": "\u0635\u0646\u062f\u0627\u0648\u0646\u0632" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200289, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "mamelodi-sundowns-ulsan-hd", + "startTimestamp": 1750197600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group E", + "slug": "fifa-club-world-cup-group-e", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 769, + "isGroup": true, + "groupName": "Group E", + "id": 142883, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 E", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0908", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u0987" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "HNsXdb", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 1932, + "country": { + "alpha2": "MX", + "alpha3": "MEX", + "name": "Mexico", + "slug": "mexico" + }, + "name": "CF Monterrey", + "slug": "cf-monterrey", + "shortName": "Monterrey", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 66556, + "nameCode": "MTY", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u0648\u0646\u062a\u064a\u0631\u064a", + "ru": "\u041a\u0424 \u041c\u043e\u043d\u0442\u0435\u0440\u0440\u0435\u0439", + "hi": "\u0938\u0940\u090d\u095e \u092e\u094b\u0928\u094d\u091f\u0947\u0930\u0947" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "id": 2697, + "country": { + "alpha2": "IT", + "alpha3": "ITA", + "name": "Italy", + "slug": "italy" + }, + "name": "Inter", + "slug": "inter", + "shortName": "Inter", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1859123, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#1a57cc", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0646\u062a\u0631", + "ru": "\u0418\u043d\u0442\u0435\u0440", + "hi": "\u0907\u0902\u091f\u0930", + "bn": "\u0987\u09a8\u09cd\u099f\u09be\u09b0" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200253, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "inter-cf-monterrey", + "startTimestamp": 1750208400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group G", + "slug": "fifa-club-world-cup-group-g", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 767, + "isGroup": true, + "groupName": "Group G", + "id": 142885, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 G", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u091c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u099c\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "rstAo", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 17, + "country": { + "alpha2": "EN", + "alpha3": "ENG", + "name": "England", + "slug": "england" + }, + "name": "Manchester City", + "slug": "manchester-city", + "shortName": "Man City", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 3007196, + "nameCode": "MCI", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#66ccff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041c\u0430\u043d\u0447\u0435\u0441\u0442\u0435\u0440 \u0421\u0438\u0442\u0438" + }, + "shortNameTranslation": { + "ar": "\u0645\u0627\u0646 \u0633\u064a\u062a\u064a", + "hi": "\u092e\u0948\u0928 \u0938\u093f\u091f\u0940", + "bn": "\u09ae\u09cd\u09af\u09be\u09a8 \u09b8\u09bf\u099f\u09bf" + } + } + }, + "awayTeam": { + "id": 36268, + "country": { + "alpha2": "MA", + "alpha3": "MAR", + "name": "Morocco", + "slug": "morocco" + }, + "name": "Wydad Casablanca", + "slug": "wydad-casablanca", + "shortName": "WAC", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 143563, + "nameCode": "WCA", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0646\u0627\u062f\u064a \u0627\u0644\u0648\u062f\u0627\u062f \u0627\u0644\u0631\u064a\u0627\u0636\u064a", + "ru": "\u0412\u0438\u0434\u0430\u0434 \u0410\u041a" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200275, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "wydad-casablanca-manchester-city", + "startTimestamp": 1750262400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group H", + "slug": "fifa-club-world-cup-group-h", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 766, + "isGroup": true, + "groupName": "Group H", + "id": 142886, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 H", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u091a", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u0987\u099a" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "EgbsVMi", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 2829, + "country": { + "alpha2": "ES", + "alpha3": "ESP", + "name": "Spain", + "slug": "spain" + }, + "name": "Real Madrid", + "slug": "real-madrid", + "shortName": "Real Madrid", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 5168636, + "nameCode": "RMA", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#004996", + "text": "#004996" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f", + "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434", + "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921", + "bn": "\u09b0\u09bf\u09af\u09bc\u09be\u09b2 \u09ae\u09be\u09a6\u09cd\u09b0\u09bf\u09a6" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "id": 21895, + "country": { + "alpha2": "SA", + "alpha3": "SAU", + "name": "Saudi Arabia", + "slug": "saudi-arabia" + }, + "name": "Al-Hilal", + "slug": "al-hilal", + "shortName": "Al-Hilal", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 871060, + "nameCode": "ALH", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#0080ff", + "secondary": "#0080ff", + "text": "#0080ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0647\u0644\u0627\u0644", + "ru": "\u0410\u043b\u044c-\u0425\u0438\u043b\u0430\u043b (\u041a\u0421\u0410)", + "hi": "\u0905\u0932-\u0939\u093f\u0932\u093e\u0932", + "bn": "\u0986\u09b2-\u09b9\u09bf\u09b2\u09be\u09b2" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200270, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "al-hilal-real-madrid", + "startTimestamp": 1750273200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group H", + "slug": "fifa-club-world-cup-group-h", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 766, + "isGroup": true, + "groupName": "Group H", + "id": 142886, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 H", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u091a", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u0987\u099a" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "LNsWP", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 1936, + "country": { + "alpha2": "MX", + "alpha3": "MEX", + "name": "Mexico", + "slug": "mexico" + }, + "name": "CF Pachuca", + "slug": "cf-pachuca", + "shortName": "Pachuca", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 44168, + "nameCode": "PAC", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#008bce", + "text": "#008bce" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041a\u0424 \u041f\u0430\u0447\u0443\u043a\u0430", + "hi": "\u0938\u0940\u090d\u095e \u092a\u093e\u091a\u0941\u0915\u093e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u062a\u0634\u0648\u0643\u0627" + } + } + }, + "awayTeam": { + "id": 2046, + "country": { + "alpha2": "AT", + "alpha3": "AUT", + "name": "Austria", + "slug": "austria" + }, + "name": "Red Bull Salzburg", + "slug": "red-bull-salzburg", + "shortName": "RB Salzburg", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 236594, + "nameCode": "RBS", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0420\u0411 \u0417\u0430\u043b\u044c\u0446\u0431\u0443\u0440\u0433" + }, + "shortNameTranslation": { + "ar": "\u0622\u0631 \u0628\u064a \u0633\u0627\u0644\u0632\u0628\u0648\u0631\u062c", + "hi": "\u0906\u0930\u092c\u0940 \u0938\u093e\u0932\u094d\u091c\u093c\u092c\u0930\u094d\u0917", + "bn": "\u0986\u09b0\u09ac\u09bf \u09b8\u09be\u09b2\u099c\u09ac\u09be\u09b0\u09cd\u0997" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200296, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "red-bull-salzburg-cf-pachuca", + "startTimestamp": 1750284000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group G", + "slug": "fifa-club-world-cup-group-g", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 767, + "isGroup": true, + "groupName": "Group G", + "id": 142885, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 G", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u091c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u099c\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "MdbsHQo", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 37082, + "country": { + "alpha2": "AE", + "alpha3": "ARE", + "name": "United Arab Emirates", + "slug": "united-arab-emirates" + }, + "name": "Al-Ain", + "slug": "al-ain", + "shortName": "Al-Ain", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 63050, + "nameCode": "AIN", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#020c7d", + "secondary": "#07017e", + "text": "#07017e" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u043b\u044c-\u0410\u0439\u043d" + }, + "shortNameTranslation": { + "ar": "\u0627\u0644\u0639\u064a\u0646" + } + } + }, + "awayTeam": { + "id": 2687, + "country": { + "alpha2": "IT", + "alpha3": "ITA", + "name": "Italy", + "slug": "italy" + }, + "name": "Juventus", + "slug": "juventus", + "shortName": "Juventus", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1596378, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u064a\u0648\u0641\u0646\u062a\u0648\u0633", + "ru": "\u042e\u0432\u0435\u043d\u0442\u0443\u0441", + "hi": "\u091c\u0941\u0935\u0947\u0902\u091f\u0938", + "bn": "\u099c\u09c1\u09ad\u09c7\u09a8\u09cd\u099f\u09be\u09b8" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200293, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "al-ain-juventus", + "startTimestamp": 1750294800, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group A", + "slug": "fifa-club-world-cup-group-a", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 773, + "isGroup": true, + "groupName": "Group A", + "id": 142879, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 A", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "nOskNc", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 1963, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 552230, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u0631\u0627\u0633" + } + } + }, + "awayTeam": { + "id": 6910, + "country": { + "alpha2": "EG", + "alpha3": "EGY", + "name": "Egypt", + "slug": "egypt" + }, + "name": "Al Ahly FC", + "slug": "al-ahly-fc", + "shortName": "Al Ahly", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 536337, + "nameCode": "AAF", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#cc0000", + "secondary": "#990000", + "text": "#990000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u043b\u044c \u0410\u0445\u043b\u0438" + }, + "shortNameTranslation": { + "ar": "\u0627\u0644\u0623\u0647\u0644\u064a" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200240, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "al-ahly-fc-palmeiras", + "startTimestamp": 1750348800, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group A", + "slug": "fifa-club-world-cup-group-a", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 773, + "isGroup": true, + "groupName": "Group A", + "id": 142879, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 A", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "ckbsccKc", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 337602, + "country": { + "alpha2": "US", + "alpha3": "USA", + "name": "USA", + "slug": "usa" + }, + "name": "Inter Miami CF", + "slug": "inter-miami-cf", + "shortName": "Inter Miami", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1315421, + "nameCode": "IMC", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#212322", + "secondary": "#f6b5cc", + "text": "#f6b5cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631 \u0645\u064a\u0627\u0645\u064a", + "ru": "\u0418\u043d\u0442\u0435\u0440 \u041c\u0430\u0439\u0430\u043c\u0438", + "hi": "\u0907\u0902\u091f\u0930 \u092e\u093f\u0906\u092e\u093f \u0938\u0940\u090d\u095e" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "id": 3002, + "country": { + "alpha2": "PT", + "alpha3": "PRT", + "name": "Portugal", + "slug": "portugal" + }, + "name": "FC Porto", + "slug": "fc-porto", + "shortName": "Porto", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 745278, + "nameCode": "FCP", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#194f93", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041f\u043e\u0440\u0442\u0443" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u0631\u062a\u0648", + "hi": "\u092a\u094b\u0930\u094d\u0924\u094b", + "bn": "\u09aa\u09cb\u09b0\u09cd\u09a4\u09cb" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200219, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "inter-miami-cf-fc-porto", + "startTimestamp": 1750359600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group B", + "slug": "fifa-club-world-cup-group-b", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 772, + "isGroup": true, + "groupName": "Group B", + "id": 142880, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 B", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u092c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09ac\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "LgbsjPi", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 22009, + "country": { + "alpha2": "US", + "alpha3": "USA", + "name": "USA", + "slug": "usa" + }, + "name": "Seattle Sounders FC", + "slug": "seattle-sounders-fc", + "shortName": "Seattle", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 17421, + "nameCode": "SEA", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#33cc00", + "secondary": "#0066ff", + "text": "#0066ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0421\u0438\u044d\u0442\u043b \u0421\u0430\u0443\u043d\u0434\u0435\u0440\u0441" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u062a\u0644" + } + } + }, + "awayTeam": { + "id": 2836, + "country": { + "alpha2": "ES", + "alpha3": "ESP", + "name": "Spain", + "slug": "spain" + }, + "name": "Atl\u00e9tico Madrid", + "slug": "atletico-madrid", + "shortName": "Atl. Madrid", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1628454, + "nameCode": "AMA", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#c40000", + "text": "#c40000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434", + "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921" + }, + "shortNameTranslation": { + "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f", + "bn": "\u098f\u099f\u09bf\u098f\u09b2. \u09ae\u09be\u09a6\u09cd\u09b0\u09bf\u09a6" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200222, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "seattle-sounders-fc-atletico-madrid", + "startTimestamp": 1750370400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group B", + "slug": "fifa-club-world-cup-group-b", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 772, + "isGroup": true, + "groupName": "Group B", + "id": 142880, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 B", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u092c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09ac\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "UHsiO", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 1644, + "country": { + "alpha2": "FR", + "alpha3": "FRA", + "name": "France", + "slug": "france" + }, + "name": "Paris Saint-Germain", + "slug": "paris-saint-germain", + "shortName": "PSG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2215575, + "nameCode": "PSG", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#000066", + "secondary": "#ff1541", + "text": "#ff1541" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0631\u064a\u0633 \u0633\u0627\u0646 \u062c\u064a\u0631\u0645\u0627\u0646", + "ru": "\u041f\u0430\u0440\u0438 \u0421\u0435\u043d-\u0416\u0435\u0440\u043c\u0435\u043d" + }, + "shortNameTranslation": { + "hi": "\u092a\u0940\u090f\u0938\u091c\u0940", + "bn": "\u09aa\u09bf\u098f\u09b8\u099c\u09bf" + } + } + }, + "awayTeam": { + "id": 1958, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 315360, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200235, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "botafogo-paris-saint-germain", + "startTimestamp": 1750381200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group C", + "slug": "fifa-club-world-cup-group-c", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 771, + "isGroup": true, + "groupName": "Group C", + "id": 142881, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 C", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0938\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09b8\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "gkbsjNc", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 3006, + "country": { + "alpha2": "PT", + "alpha3": "PRT", + "name": "Portugal", + "slug": "portugal" + }, + "name": "Benfica", + "slug": "benfica", + "shortName": "Benfica", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 880784, + "nameCode": "SLB", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#cc0000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0646\u0641\u064a\u0643\u0627", + "ru": "\u0411\u0435\u043d\u0444\u0438\u043a\u0430", + "hi": "\u092c\u0947\u0928\u092b\u093f\u0915\u093e", + "bn": "\u09ac\u09c7\u09a8\u09ab\u09bf\u0995\u09be" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "id": 6909, + "country": { + "alpha2": "NZ", + "alpha3": "NZL", + "name": "New Zealand", + "slug": "new-zealand" + }, + "name": "Auckland City", + "slug": "auckland-city", + "shortName": "Auckland City", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 10061, + "nameCode": "ACI", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#000033", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041e\u043a\u043b\u0435\u043d\u0434 \u0421\u0438\u0442\u0438" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0643\u0644\u0627\u0646\u062f \u0633\u064a\u062a\u064a" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200280, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "auckland-city-benfica", + "startTimestamp": 1750435200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group D", + "slug": "fifa-club-world-cup-group-d", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 770, + "isGroup": true, + "groupName": "Group D", + "id": 142882, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 D", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0921\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09a1\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "NsGuc", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 5981, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 823963, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "awayTeam": { + "id": 38, + "country": { + "alpha2": "EN", + "alpha3": "ENG", + "name": "England", + "slug": "england" + }, + "name": "Chelsea", + "slug": "chelsea", + "shortName": "Chelsea", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2279167, + "nameCode": "CHE", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#0310a7", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062a\u0634\u064a\u0644\u0633\u064a", + "ru": "\u0427\u0435\u043b\u0441\u0438", + "hi": "\u091a\u0947\u0932\u094d\u0938\u0940", + "bn": "\u099a\u09c7\u09b2\u09b8\u09bf" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200225, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "flamengo-chelsea", + "startTimestamp": 1750442400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group D", + "slug": "fifa-club-world-cup-group-d", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 770, + "isGroup": true, + "groupName": "Group D", + "id": 142882, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 D", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0921\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09a1\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "DRysaTjc", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 274650, + "country": { + "alpha2": "US", + "alpha3": "USA", + "name": "USA", + "slug": "usa" + }, + "name": "Los Angeles FC", + "slug": "los-angeles-fc", + "shortName": "Los Angeles", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 50996, + "nameCode": "LAN", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#303030", + "secondary": "#c39e69", + "text": "#c39e69" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0646\u0627\u062f\u064a \u0644\u0648\u0633 \u0623\u0646\u062c\u0644\u0648\u0633", + "ru": "\u041b\u043e\u0441-\u0410\u043d\u0434\u0436\u0435\u043b\u0435\u0441 \u0424\u041a", + "hi": "\u0932\u0949\u0938 \u090f\u0902\u091c\u0947\u0932\u0947\u0938 \u090d\u095e\u0938\u0940" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "id": 59628, + "country": { + "alpha2": "TN", + "alpha3": "TUN", + "name": "Tunisia", + "slug": "tunisia" + }, + "name": "Esp\u00e9rance Tunis", + "slug": "esperance-tunis", + "shortName": "Esp\u00e9rance", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 101244, + "nameCode": "ETU", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ede664", + "secondary": "#e04f5b", + "text": "#e04f5b" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u042d\u0441\u043f\u0435\u0440\u0430\u043d\u0441 \u0421\u043f\u043e\u0440\u0442\u0438\u0432" + }, + "shortNameTranslation": { + "ar": "\u0627\u0644\u062a\u0631\u062c\u064a", + "hi": "\u090f\u0938\u094d\u092a\u0947\u0930\u093e\u0902\u0938", + "bn": "\u098f\u09b8\u09cd\u09aa\u09c7\u09b0\u09c7\u09a8\u09cd\u09b8" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13905341, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "winner-of-qualification-playoffs-esperance-tunis", + "startTimestamp": 1750456800, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group C", + "slug": "fifa-club-world-cup-group-c", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 771, + "isGroup": true, + "groupName": "Group C", + "id": 142881, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 C", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0938\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09b8\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "xdbscob", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 2672, + "country": { + "alpha2": "DE", + "alpha3": "DEU", + "name": "Germany", + "slug": "germany" + }, + "name": "FC Bayern M\u00fcnchen", + "slug": "fc-bayern-munchen", + "shortName": "Bayern", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2145701, + "nameCode": "FBM", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#cf142f", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0411\u0430\u0432\u0430\u0440\u0438\u044f \u041c\u044e\u043d\u0445\u0435\u043d" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u064a\u0631\u0646", + "hi": "\u092c\u093e\u092f\u0930\u094d\u0928", + "bn": "\u09ac\u09be\u09af\u09bc\u09be\u09b0\u09cd\u09a8" + } + } + }, + "awayTeam": { + "id": 3202, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina", + "slug": "argentina" + }, + "name": "Boca Juniors", + "slug": "boca-juniors", + "shortName": "Boca Juniors", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 287135, + "nameCode": "BJU", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#003399", + "secondary": "#ffcc66", + "text": "#ffcc66" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u0643\u0627 \u062c\u0648\u0646\u064a\u0648\u0631\u0632", + "ru": "\u0411\u043e\u043a\u0430 \u0425\u0443\u043d\u0438\u043e\u0440\u0441", + "hi": "\u092c\u094b\u0915\u093e \u091c\u0942\u0928\u093f\u092f\u0930\u094d\u0938" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200245, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "boca-juniors-fc-bayern-munchen", + "startTimestamp": 1750467600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group F", + "slug": "fifa-club-world-cup-group-f", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 768, + "isGroup": true, + "groupName": "Group F", + "id": 142884, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 F", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u092b", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u09ab" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "ydbspdd", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 7665, + "country": { + "alpha2": "ZA", + "alpha3": "ZAF", + "name": "South Africa", + "slug": "south-africa" + }, + "name": "Mamelodi Sundowns", + "slug": "mamelodi-sundowns", + "shortName": "Sundowns", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 182029, + "nameCode": "MAM", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffe000", + "secondary": "#008100", + "text": "#008100" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041c\u0430\u043c\u0435\u043b\u043e\u0434\u0438 \u0421\u0430\u043d\u0434\u0430\u0443\u043d\u0441", + "hi": "\u092e\u093e\u092e\u0947\u0932\u094b\u0921\u0940 \u0938\u0928\u0921\u093e\u0909\u0928\u094d\u0938" + }, + "shortNameTranslation": { + "ar": "\u0635\u0646\u062f\u0627\u0648\u0646\u0632" + } + } + }, + "awayTeam": { + "id": 2673, + "country": { + "alpha2": "DE", + "alpha3": "DEU", + "name": "Germany", + "slug": "germany" + }, + "name": "Borussia Dortmund", + "slug": "borussia-dortmund", + "shortName": "Dortmund", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1510246, + "nameCode": "BVB", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffe600", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0411\u043e\u0440\u0443\u0441\u0441\u0438\u044f \u0414\u043e\u0440\u0442\u043c\u0443\u043d\u0434" + }, + "shortNameTranslation": { + "ar": "\u062f\u0648\u0631\u062a\u0645\u0648\u0646\u062f", + "hi": "\u0921\u0949\u0930\u094d\u091f\u092e\u0941\u0902\u0921", + "bn": "\u09a1\u09b0\u09cd\u099f\u09ae\u09c1\u09a8\u09cd\u09a1" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200290, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "mamelodi-sundowns-borussia-dortmund", + "startTimestamp": 1750521600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group E", + "slug": "fifa-club-world-cup-group-e", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 769, + "isGroup": true, + "groupName": "Group E", + "id": 142883, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 E", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0908", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u0987" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "XdbsVmb", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 2697, + "country": { + "alpha2": "IT", + "alpha3": "ITA", + "name": "Italy", + "slug": "italy" + }, + "name": "Inter", + "slug": "inter", + "shortName": "Inter", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1859123, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#1a57cc", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0646\u062a\u0631", + "ru": "\u0418\u043d\u0442\u0435\u0440", + "hi": "\u0907\u0902\u091f\u0930", + "bn": "\u0987\u09a8\u09cd\u099f\u09be\u09b0" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "id": 3145, + "country": { + "alpha2": "JP", + "alpha3": "JPN", + "name": "Japan", + "slug": "japan" + }, + "name": "Urawa Red Diamonds", + "slug": "urawa-red-diamonds", + "shortName": "Urawa Reds", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 16675, + "nameCode": "URD", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#cc0033", + "secondary": "#cc0033", + "text": "#cc0033" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0423\u0440\u0430\u0432\u0430 \u0420\u0435\u0434 \u0414\u0430\u0439\u043c\u043e\u043d\u0434\u0441", + "hi": "\u0909\u0930\u093e\u0935\u093e \u0930\u0947\u0921 \u0921\u093e\u092f\u092e\u0902\u0921\u094d\u0938" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0631\u0627\u0648\u0627 \u0631\u064a\u062f\u0632" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200287, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "urawa-red-diamonds-inter", + "startTimestamp": 1750532400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group F", + "slug": "fifa-club-world-cup-group-f", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 768, + "isGroup": true, + "groupName": "Group F", + "id": 142884, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 F", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u092b", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u09ab" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "lOsddd", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 1961, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 306170, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "awayTeam": { + "id": 7653, + "country": { + "alpha2": "KR", + "alpha3": "KOR", + "name": "South Korea", + "slug": "south-korea" + }, + "name": "Ulsan HD", + "slug": "ulsan-hd", + "shortName": "Ulsan", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 24415, + "nameCode": "UHD", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#0066ff", + "secondary": "#0066ff", + "text": "#0066ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0423\u043b\u0441\u0430\u043d \u0425\u044e\u043d\u0434\u0430\u0439" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0644\u0633\u0627\u0646" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200261, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "ulsan-hd-fluminense", + "startTimestamp": 1750543200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group E", + "slug": "fifa-club-world-cup-group-e", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 769, + "isGroup": true, + "groupName": "Group E", + "id": 142883, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 E", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0908", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u0987" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "HNslob", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 3211, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina", + "slug": "argentina" + }, + "name": "River Plate", + "slug": "river-plate", + "shortName": "River Plate", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 269119, + "nameCode": "RIV", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0420\u0438\u0432\u0435\u0440 \u041f\u043b\u0435\u0439\u0442", + "bn": "\u09b0\u09bf\u09ad\u09be\u09b0 \u09aa\u09cd\u09b2\u09c7\u099f" + }, + "shortNameTranslation": { + "ar": "\u0631\u064a\u0641\u0631 \u0628\u0644\u064a\u062a", + "hi": "\u0930\u093f\u0935\u0930" + } + } + }, + "awayTeam": { + "id": 1932, + "country": { + "alpha2": "MX", + "alpha3": "MEX", + "name": "Mexico", + "slug": "mexico" + }, + "name": "CF Monterrey", + "slug": "cf-monterrey", + "shortName": "Monterrey", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 66556, + "nameCode": "MTY", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u0648\u0646\u062a\u064a\u0631\u064a", + "ru": "\u041a\u0424 \u041c\u043e\u043d\u0442\u0435\u0440\u0440\u0435\u0439", + "hi": "\u0938\u0940\u090d\u095e \u092e\u094b\u0928\u094d\u091f\u0947\u0930\u0947" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200256, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "river-plate-cf-monterrey", + "startTimestamp": 1750554000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group G", + "slug": "fifa-club-world-cup-group-g", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 767, + "isGroup": true, + "groupName": "Group G", + "id": 142885, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 G", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u091c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u099c\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "MdbstAo", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 2687, + "country": { + "alpha2": "IT", + "alpha3": "ITA", + "name": "Italy", + "slug": "italy" + }, + "name": "Juventus", + "slug": "juventus", + "shortName": "Juventus", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1596378, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u064a\u0648\u0641\u0646\u062a\u0648\u0633", + "ru": "\u042e\u0432\u0435\u043d\u0442\u0443\u0441", + "hi": "\u091c\u0941\u0935\u0947\u0902\u091f\u0938", + "bn": "\u099c\u09c1\u09ad\u09c7\u09a8\u09cd\u099f\u09be\u09b8" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "id": 36268, + "country": { + "alpha2": "MA", + "alpha3": "MAR", + "name": "Morocco", + "slug": "morocco" + }, + "name": "Wydad Casablanca", + "slug": "wydad-casablanca", + "shortName": "WAC", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 143563, + "nameCode": "WCA", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0646\u0627\u062f\u064a \u0627\u0644\u0648\u062f\u0627\u062f \u0627\u0644\u0631\u064a\u0627\u0636\u064a", + "ru": "\u0412\u0438\u0434\u0430\u0434 \u0410\u041a" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200276, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "wydad-casablanca-juventus", + "startTimestamp": 1750608000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group H", + "slug": "fifa-club-world-cup-group-h", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "id": 1468, + "country": {}, + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 338502, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 766, + "isGroup": true, + "groupName": "Group H", + "id": 142886, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 H", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u091a", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u0987\u099a" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "LNsEgb", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "id": 2829, + "country": { + "alpha2": "ES", + "alpha3": "ESP", + "name": "Spain", + "slug": "spain" + }, + "name": "Real Madrid", + "slug": "real-madrid", + "shortName": "Real Madrid", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 5168636, + "nameCode": "RMA", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#004996", + "text": "#004996" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f", + "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434", + "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921", + "bn": "\u09b0\u09bf\u09af\u09bc\u09be\u09b2 \u09ae\u09be\u09a6\u09cd\u09b0\u09bf\u09a6" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "id": 1936, + "country": { + "alpha2": "MX", + "alpha3": "MEX", + "name": "Mexico", + "slug": "mexico" + }, + "name": "CF Pachuca", + "slug": "cf-pachuca", + "shortName": "Pachuca", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 44168, + "nameCode": "PAC", + "disabled": false, + "national": false, + "type": 0, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#008bce", + "text": "#008bce" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041a\u0424 \u041f\u0430\u0447\u0443\u043a\u0430", + "hi": "\u0938\u0940\u090d\u095e \u092a\u093e\u091a\u0941\u0915\u093e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u062a\u0634\u0648\u0643\u0627" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200297, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "real-madrid-cf-pachuca", + "startTimestamp": 1750618800, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + } + ], + "hasNextPage": true +} diff --git a/test/testdata/firsthalf.json b/test/testdata/firsthalf.json new file mode 100644 index 0000000..288cbb8 --- /dev/null +++ b/test/testdata/firsthalf.json @@ -0,0 +1,2105 @@ +{ + "events": [ + { + "tournament": { + "name": "FIFA Club World Cup, Group F", + "slug": "fifa-club-world-cup-group-f", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 768, + "isGroup": true, + "groupName": "Group F", + "id": 142884, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 F", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u092b", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u09ab" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "ydbsddd", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Borussia Dortmund", + "slug": "borussia-dortmund", + "shortName": "Dortmund", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1527967, + "nameCode": "BVB", + "disabled": false, + "national": false, + "type": 0, + "id": 2673, + "country": { + "alpha2": "DE", + "alpha3": "DEU", + "name": "Germany", + "slug": "germany" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffe600", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u0631\u0648\u0633\u064a\u0627 \u062f\u0648\u0631\u062a\u0645\u0648\u0646\u062f", + "ru": "\u0411\u043e\u0440\u0443\u0441\u0441\u0438\u044f \u0414\u043e\u0440\u0442\u043c\u0443\u043d\u0434", + "hi": "\u092c\u094b\u0930\u0941\u0938\u094d\u0938\u093f\u092f\u093e \u0921\u0949\u0930\u094d\u091f\u092e\u0941\u0902\u0921" + }, + "shortNameTranslation": { + "ar": "\u062f\u0648\u0631\u062a\u0645\u0648\u0646\u062f", + "hi": "\u0921\u0949\u0930\u094d\u091f\u092e\u0941\u0902\u0921", + "bn": "\u09a1\u09b0\u09cd\u099f\u09ae\u09c1\u09a8\u09cd\u09a1" + } + } + }, + "awayTeam": { + "name": "Ulsan HD", + "slug": "ulsan-hd", + "shortName": "Ulsan", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 31677, + "nameCode": "UHD", + "disabled": false, + "national": false, + "type": 0, + "id": 7653, + "country": { + "alpha2": "KR", + "alpha3": "KOR", + "name": "South Korea", + "slug": "south-korea" + }, + "subTeams": [], + "teamColors": { + "primary": "#0066ff", + "secondary": "#0066ff", + "text": "#0066ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0423\u043b\u0441\u0430\u043d \u0425\u044e\u043d\u0434\u0430\u0439" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0644\u0633\u0627\u0646" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200277, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "ulsan-hd-borussia-dortmund", + "startTimestamp": 1750878000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group F", + "slug": "fifa-club-world-cup-group-f", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 768, + "isGroup": true, + "groupName": "Group F", + "id": 142884, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 F", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u092b", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u09ab" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "lOspdd", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Mamelodi Sundowns", + "slug": "mamelodi-sundowns", + "shortName": "Sundowns", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 192657, + "nameCode": "MAM", + "disabled": false, + "national": false, + "type": 0, + "id": 7665, + "country": { + "alpha2": "ZA", + "alpha3": "ZAF", + "name": "South Africa", + "slug": "south-africa" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffe000", + "secondary": "#008100", + "text": "#008100" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u0627\u0645\u064a\u0644\u0648\u062f\u064a \u0633\u0627\u0646\u062f\u0627\u0648\u0646\u0632", + "ru": "\u041c\u0430\u043c\u0435\u043b\u043e\u0434\u0438 \u0421\u0430\u043d\u0434\u0430\u0443\u043d\u0441", + "hi": "\u092e\u093e\u092e\u0947\u0932\u094b\u0921\u0940 \u0938\u0928\u0921\u093e\u0909\u0928\u094d\u0938" + }, + "shortNameTranslation": { + "ar": "\u0635\u0646\u062f\u0627\u0648\u0646\u0632" + } + } + }, + "awayTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 318954, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200291, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "mamelodi-sundowns-fluminense", + "startTimestamp": 1750878000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group E", + "slug": "fifa-club-world-cup-group-e", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 769, + "isGroup": true, + "groupName": "Group E", + "id": 142883, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 E", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0908", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u0987" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "Xdbslob", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Inter", + "slug": "inter", + "shortName": "Inter", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1880503, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "id": 2697, + "country": { + "alpha2": "IT", + "alpha3": "ITA", + "name": "Italy", + "slug": "italy" + }, + "subTeams": [], + "teamColors": { + "primary": "#1a57cc", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0646\u062a\u0631", + "ru": "\u0418\u043d\u0442\u0435\u0440", + "hi": "\u0907\u0902\u091f\u0930", + "bn": "\u0987\u09a8\u09cd\u099f\u09be\u09b0" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "River Plate", + "slug": "river-plate", + "shortName": "River Plate", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 281941, + "nameCode": "RPL", + "disabled": false, + "national": false, + "type": 0, + "id": 3211, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina", + "slug": "argentina" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0420\u0438\u0432\u0435\u0440 \u041f\u043b\u0435\u0439\u0442", + "bn": "\u09b0\u09bf\u09ad\u09be\u09b0 \u09aa\u09cd\u09b2\u09c7\u099f" + }, + "shortNameTranslation": { + "ar": "\u0631\u064a\u0641\u0631 \u0628\u0644\u064a\u062a", + "hi": "\u0930\u093f\u0935\u0930" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200226, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "river-plate-inter", + "startTimestamp": 1750899600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group E", + "slug": "fifa-club-world-cup-group-e", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 769, + "isGroup": true, + "groupName": "Group E", + "id": 142883, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 E", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0908", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u0987" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "HNsVmb", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Urawa Red Diamonds", + "slug": "urawa-red-diamonds", + "shortName": "Urawa Reds", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 24448, + "nameCode": "URD", + "disabled": false, + "national": false, + "type": 0, + "id": 3145, + "country": { + "alpha2": "JP", + "alpha3": "JPN", + "name": "Japan", + "slug": "japan" + }, + "subTeams": [], + "teamColors": { + "primary": "#cc0033", + "secondary": "#cc0033", + "text": "#cc0033" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0648\u0631\u0627\u0648\u0627 \u0631\u064a\u062f \u062f\u064a\u0627\u0645\u0648\u0646\u062f\u0632", + "ru": "\u0423\u0440\u0430\u0432\u0430 \u0420\u0435\u0434 \u0414\u0430\u0439\u043c\u043e\u043d\u0434\u0441", + "hi": "\u0909\u0930\u093e\u0935\u093e \u0930\u0947\u0921 \u0921\u093e\u092f\u092e\u0902\u0921\u094d\u0938" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0631\u0627\u0648\u0627 \u0631\u064a\u062f\u0632" + } + } + }, + "awayTeam": { + "name": "CF Monterrey", + "slug": "cf-monterrey", + "shortName": "Monterrey", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 77103, + "nameCode": "MTY", + "disabled": false, + "national": false, + "type": 0, + "id": 1932, + "country": { + "alpha2": "MX", + "alpha3": "MEX", + "name": "Mexico", + "slug": "mexico" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u0648\u0646\u062a\u064a\u0631\u064a", + "ru": "\u041a\u0424 \u041c\u043e\u043d\u0442\u0435\u0440\u0440\u0435\u0439", + "hi": "\u0938\u0940\u090d\u095e \u092e\u094b\u0928\u094d\u091f\u0947\u0930\u0947" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200288, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "urawa-red-diamonds-cf-monterrey", + "startTimestamp": 1750899600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group G", + "slug": "fifa-club-world-cup-group-g", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 767, + "isGroup": true, + "groupName": "Group G", + "id": 142885, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 G", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u091c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u099c\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "rMdb", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Juventus", + "slug": "juventus", + "shortName": "Juventus", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1615448, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "id": 2687, + "country": { + "alpha2": "IT", + "alpha3": "ITA", + "name": "Italy", + "slug": "italy" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u064a\u0648\u0641\u0646\u062a\u0648\u0633", + "ru": "\u042e\u0432\u0435\u043d\u0442\u0443\u0441", + "hi": "\u091c\u0941\u0935\u0947\u0902\u091f\u0938", + "bn": "\u099c\u09c1\u09ad\u09c7\u09a8\u09cd\u099f\u09be\u09b8" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Manchester City", + "slug": "manchester-city", + "shortName": "Man City", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 3033046, + "nameCode": "MCI", + "disabled": false, + "national": false, + "type": 0, + "id": 17, + "country": { + "alpha2": "EN", + "alpha3": "ENG", + "name": "England", + "slug": "england" + }, + "subTeams": [], + "teamColors": { + "primary": "#66ccff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u0633\u064a\u062a\u064a", + "ru": "\u041c\u0430\u043d\u0447\u0435\u0441\u0442\u0435\u0440 \u0421\u0438\u0442\u0438", + "hi": "\u092e\u0947\u0928\u091a\u0947\u0938\u094d\u091f\u0930 \u0938\u093f\u091f\u0940 \u090d\u095e\u0938\u0940" + }, + "shortNameTranslation": { + "ar": "\u0645\u0627\u0646 \u0633\u064a\u062a\u064a", + "hi": "\u092e\u0948\u0928 \u0938\u093f\u091f\u0940", + "bn": "\u09ae\u09cd\u09af\u09be\u09a8 \u09b8\u09bf\u099f\u09bf" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200232, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "juventus-manchester-city", + "startTimestamp": 1750964400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group G", + "slug": "fifa-club-world-cup-group-g", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 767, + "isGroup": true, + "groupName": "Group G", + "id": 142885, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 G", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u091c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u099c\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "tAosHQo", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Wydad Casablanca", + "slug": "wydad-casablanca", + "shortName": "WAC", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 158391, + "nameCode": "WCA", + "disabled": false, + "national": false, + "type": 0, + "id": 36268, + "country": { + "alpha2": "MA", + "alpha3": "MAR", + "name": "Morocco", + "slug": "morocco" + }, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0646\u0627\u062f\u064a \u0627\u0644\u0648\u062f\u0627\u062f \u0627\u0644\u0631\u064a\u0627\u0636\u064a", + "ru": "\u0412\u0438\u0434\u0430\u0434 \u0410\u041a" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Al-Ain", + "slug": "al-ain", + "shortName": "Al-Ain", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 69147, + "nameCode": "AIN", + "disabled": false, + "national": false, + "type": 0, + "id": 37082, + "country": { + "alpha2": "AE", + "alpha3": "ARE", + "name": "United Arab Emirates", + "slug": "united-arab-emirates" + }, + "subTeams": [], + "teamColors": { + "primary": "#020c7d", + "secondary": "#07017e", + "text": "#07017e" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u043b\u044c-\u0410\u0439\u043d" + }, + "shortNameTranslation": { + "ar": "\u0627\u0644\u0639\u064a\u0646" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200295, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "al-ain-wydad-casablanca", + "startTimestamp": 1750964400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group H", + "slug": "fifa-club-world-cup-group-h", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 766, + "isGroup": true, + "groupName": "Group H", + "id": 142886, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 H", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u091a", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u0987\u099a" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "WPsEgb", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Red Bull Salzburg", + "slug": "red-bull-salzburg", + "shortName": "RB Salzburg", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 242610, + "nameCode": "RBS", + "disabled": false, + "national": false, + "type": 0, + "id": 2046, + "country": { + "alpha2": "AT", + "alpha3": "AUT", + "name": "Austria", + "slug": "austria" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0420\u0411 \u0417\u0430\u043b\u044c\u0446\u0431\u0443\u0440\u0433" + }, + "shortNameTranslation": { + "ar": "\u0622\u0631 \u0628\u064a \u0633\u0627\u0644\u0632\u0628\u0648\u0631\u062c", + "hi": "\u0906\u0930\u092c\u0940 \u0938\u093e\u0932\u094d\u091c\u093c\u092c\u0930\u094d\u0917", + "bn": "\u0986\u09b0\u09ac\u09bf \u09b8\u09be\u09b2\u099c\u09ac\u09be\u09b0\u09cd\u0997" + } + } + }, + "awayTeam": { + "name": "Real Madrid", + "slug": "real-madrid", + "shortName": "Real Madrid", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 5246857, + "nameCode": "RMA", + "disabled": false, + "national": false, + "type": 0, + "id": 2829, + "country": { + "alpha2": "ES", + "alpha3": "ESP", + "name": "Spain", + "slug": "spain" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#004996", + "text": "#004996" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f", + "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434", + "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921", + "bn": "\u09b0\u09bf\u09af\u09bc\u09be\u09b2 \u09ae\u09be\u09a6\u09cd\u09b0\u09bf\u09a6" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200233, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "real-madrid-red-bull-salzburg", + "startTimestamp": 1750986000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group H", + "slug": "fifa-club-world-cup-group-h", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 766, + "isGroup": true, + "groupName": "Group H", + "id": 142886, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 H", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u091a", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u0987\u099a" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "LNsVMi", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Al-Hilal", + "slug": "al-hilal", + "shortName": "Al-Hilal", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 894682, + "nameCode": "ALH", + "disabled": false, + "national": false, + "type": 0, + "id": 21895, + "country": { + "alpha2": "SA", + "alpha3": "SAU", + "name": "Saudi Arabia", + "slug": "saudi-arabia" + }, + "subTeams": [], + "teamColors": { + "primary": "#0080ff", + "secondary": "#0080ff", + "text": "#0080ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0647\u0644\u0627\u0644", + "ru": "\u0410\u043b\u044c-\u0425\u0438\u043b\u0430\u043b (\u041a\u0421\u0410)", + "hi": "\u0905\u0932-\u0939\u093f\u0932\u093e\u0932", + "bn": "\u0986\u09b2-\u09b9\u09bf\u09b2\u09be\u09b2" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "CF Pachuca", + "slug": "cf-pachuca", + "shortName": "Pachuca", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 59464, + "nameCode": "PAC", + "disabled": false, + "national": false, + "type": 0, + "id": 1936, + "country": { + "alpha2": "MX", + "alpha3": "MEX", + "name": "Mexico", + "slug": "mexico" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#008bce", + "text": "#008bce" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a \u0625\u0641 \u0628\u0627\u0634\u0643\u0627", + "ru": "\u041a\u0424 \u041f\u0430\u0447\u0443\u043a\u0430", + "hi": "\u0938\u0940\u090d\u095e \u092a\u093e\u091a\u0941\u0915\u093e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u062a\u0634\u0648\u0643\u0627" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200298, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "al-hilal-cf-pachuca", + "startTimestamp": 1750986000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Knockout stage", + "slug": "club-world-cup", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 534, + "isGroup": false, + "isLive": false, + "id": 3888, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629 - \u0645\u0631\u062d\u0644\u0629 \u0627\u0644\u0625\u0642\u0635\u0627\u0621", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0928\u0949\u0915\u0906\u0909\u091f \u0938\u094d\u091f\u0947\u091c", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u09a8\u0995\u0986\u0989\u099f \u09b8\u09cd\u099f\u09c7\u099c" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 5, + "name": "Round of 16", + "slug": "round-of-16", + "cupRoundType": 8 + }, + "customId": "iOsnO", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 574811, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "id": 1963, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u0631\u0627\u0633" + } + } + }, + "awayTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 335340, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13385901, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "runner-up-group-winner-group", + "startTimestamp": 1751126400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Knockout stage", + "slug": "club-world-cup", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 534, + "isGroup": false, + "isLive": false, + "id": 3888, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629 - \u0645\u0631\u062d\u0644\u0629 \u0627\u0644\u0625\u0642\u0635\u0627\u0621", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0928\u0949\u0915\u0906\u0909\u091f \u0938\u094d\u091f\u0947\u091c", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u09a8\u0995\u0986\u0989\u099f \u09b8\u09cd\u099f\u09c7\u099c" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 5, + "name": "Round of 16", + "slug": "round-of-16", + "cupRoundType": 8 + }, + "customId": "UHsccKc", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Paris Saint-Germain", + "slug": "paris-saint-germain", + "shortName": "PSG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2270349, + "nameCode": "PSG", + "disabled": false, + "national": false, + "type": 0, + "id": 1644, + "country": { + "alpha2": "FR", + "alpha3": "FRA", + "name": "France", + "slug": "france" + }, + "subTeams": [], + "teamColors": { + "primary": "#000066", + "secondary": "#ff1541", + "text": "#ff1541" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0631\u064a\u0633 \u0633\u0627\u0646 \u062c\u064a\u0631\u0645\u0627\u0646", + "ru": "\u041f\u0430\u0440\u0438 \u0421\u0435\u043d-\u0416\u0435\u0440\u043c\u0435\u043d", + "hi": "\u092a\u0947\u0930\u093f\u0938 \u0938\u093e\u0901 \u091c\u0947\u0930\u094d\u092e\u093e\u0903" + }, + "shortNameTranslation": { + "hi": "\u092a\u0940\u090f\u0938\u091c\u0940", + "bn": "\u09aa\u09bf\u098f\u09b8\u099c\u09bf" + } + } + }, + "awayTeam": { + "name": "Inter Miami CF", + "slug": "inter-miami-cf", + "shortName": "Inter Miami", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1368637, + "nameCode": "IMC", + "disabled": false, + "national": false, + "type": 0, + "id": 337602, + "country": { + "alpha2": "US", + "alpha3": "USA", + "name": "USA", + "slug": "usa" + }, + "subTeams": [], + "teamColors": { + "primary": "#212322", + "secondary": "#f6b5cc", + "text": "#f6b5cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631 \u0645\u064a\u0627\u0645\u064a", + "ru": "\u0418\u043d\u0442\u0435\u0440 \u041c\u0430\u0439\u0430\u043c\u0438", + "hi": "\u0907\u0902\u091f\u0930 \u092e\u093f\u0906\u092e\u093f \u0938\u0940\u090d\u095e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13385906, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "runner-up-group-winner-group", + "startTimestamp": 1751212800, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Knockout stage", + "slug": "club-world-cup", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 534, + "isGroup": false, + "isLive": false, + "id": 3888, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629 - \u0645\u0631\u062d\u0644\u0629 \u0627\u0644\u0625\u0642\u0635\u0627\u0621", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0928\u0949\u0915\u0906\u0909\u091f \u0938\u094d\u091f\u0947\u091c", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u09a8\u0995\u0986\u0989\u099f \u09b8\u09cd\u099f\u09c7\u099c" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 5, + "name": "Round of 16", + "slug": "round-of-16", + "cupRoundType": 8 + }, + "customId": "xdbsGuc", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 848919, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "FC Bayern M\u00fcnchen", + "slug": "fc-bayern-munchen", + "shortName": "Bayern", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2178090, + "nameCode": "FBM", + "disabled": false, + "national": false, + "type": 0, + "id": 2672, + "country": { + "alpha2": "DE", + "alpha3": "DEU", + "name": "Germany", + "slug": "germany" + }, + "subTeams": [], + "teamColors": { + "primary": "#cf142f", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0411\u0430\u0432\u0430\u0440\u0438\u044f \u041c\u044e\u043d\u0445\u0435\u043d" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u064a\u0631\u0646", + "hi": "\u092c\u093e\u092f\u0930\u094d\u0928", + "bn": "\u09ac\u09be\u09af\u09bc\u09be\u09b0\u09cd\u09a8" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13385907, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "runner-up-group-winner-group", + "startTimestamp": 1751227200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + } + ], + "hasNextPage": false +} diff --git a/test/testdata/firsthalf2.json b/test/testdata/firsthalf2.json new file mode 100644 index 0000000..288cbb8 --- /dev/null +++ b/test/testdata/firsthalf2.json @@ -0,0 +1,2105 @@ +{ + "events": [ + { + "tournament": { + "name": "FIFA Club World Cup, Group F", + "slug": "fifa-club-world-cup-group-f", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 768, + "isGroup": true, + "groupName": "Group F", + "id": 142884, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 F", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u092b", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u09ab" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "ydbsddd", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Borussia Dortmund", + "slug": "borussia-dortmund", + "shortName": "Dortmund", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1527967, + "nameCode": "BVB", + "disabled": false, + "national": false, + "type": 0, + "id": 2673, + "country": { + "alpha2": "DE", + "alpha3": "DEU", + "name": "Germany", + "slug": "germany" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffe600", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u0631\u0648\u0633\u064a\u0627 \u062f\u0648\u0631\u062a\u0645\u0648\u0646\u062f", + "ru": "\u0411\u043e\u0440\u0443\u0441\u0441\u0438\u044f \u0414\u043e\u0440\u0442\u043c\u0443\u043d\u0434", + "hi": "\u092c\u094b\u0930\u0941\u0938\u094d\u0938\u093f\u092f\u093e \u0921\u0949\u0930\u094d\u091f\u092e\u0941\u0902\u0921" + }, + "shortNameTranslation": { + "ar": "\u062f\u0648\u0631\u062a\u0645\u0648\u0646\u062f", + "hi": "\u0921\u0949\u0930\u094d\u091f\u092e\u0941\u0902\u0921", + "bn": "\u09a1\u09b0\u09cd\u099f\u09ae\u09c1\u09a8\u09cd\u09a1" + } + } + }, + "awayTeam": { + "name": "Ulsan HD", + "slug": "ulsan-hd", + "shortName": "Ulsan", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 31677, + "nameCode": "UHD", + "disabled": false, + "national": false, + "type": 0, + "id": 7653, + "country": { + "alpha2": "KR", + "alpha3": "KOR", + "name": "South Korea", + "slug": "south-korea" + }, + "subTeams": [], + "teamColors": { + "primary": "#0066ff", + "secondary": "#0066ff", + "text": "#0066ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0423\u043b\u0441\u0430\u043d \u0425\u044e\u043d\u0434\u0430\u0439" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0644\u0633\u0627\u0646" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200277, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "ulsan-hd-borussia-dortmund", + "startTimestamp": 1750878000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group F", + "slug": "fifa-club-world-cup-group-f", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 768, + "isGroup": true, + "groupName": "Group F", + "id": 142884, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 F", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u092b", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u09ab" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "lOspdd", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Mamelodi Sundowns", + "slug": "mamelodi-sundowns", + "shortName": "Sundowns", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 192657, + "nameCode": "MAM", + "disabled": false, + "national": false, + "type": 0, + "id": 7665, + "country": { + "alpha2": "ZA", + "alpha3": "ZAF", + "name": "South Africa", + "slug": "south-africa" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffe000", + "secondary": "#008100", + "text": "#008100" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u0627\u0645\u064a\u0644\u0648\u062f\u064a \u0633\u0627\u0646\u062f\u0627\u0648\u0646\u0632", + "ru": "\u041c\u0430\u043c\u0435\u043b\u043e\u0434\u0438 \u0421\u0430\u043d\u0434\u0430\u0443\u043d\u0441", + "hi": "\u092e\u093e\u092e\u0947\u0932\u094b\u0921\u0940 \u0938\u0928\u0921\u093e\u0909\u0928\u094d\u0938" + }, + "shortNameTranslation": { + "ar": "\u0635\u0646\u062f\u0627\u0648\u0646\u0632" + } + } + }, + "awayTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 318954, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200291, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "mamelodi-sundowns-fluminense", + "startTimestamp": 1750878000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group E", + "slug": "fifa-club-world-cup-group-e", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 769, + "isGroup": true, + "groupName": "Group E", + "id": 142883, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 E", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0908", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u0987" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "Xdbslob", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Inter", + "slug": "inter", + "shortName": "Inter", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1880503, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "id": 2697, + "country": { + "alpha2": "IT", + "alpha3": "ITA", + "name": "Italy", + "slug": "italy" + }, + "subTeams": [], + "teamColors": { + "primary": "#1a57cc", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0646\u062a\u0631", + "ru": "\u0418\u043d\u0442\u0435\u0440", + "hi": "\u0907\u0902\u091f\u0930", + "bn": "\u0987\u09a8\u09cd\u099f\u09be\u09b0" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "River Plate", + "slug": "river-plate", + "shortName": "River Plate", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 281941, + "nameCode": "RPL", + "disabled": false, + "national": false, + "type": 0, + "id": 3211, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina", + "slug": "argentina" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0420\u0438\u0432\u0435\u0440 \u041f\u043b\u0435\u0439\u0442", + "bn": "\u09b0\u09bf\u09ad\u09be\u09b0 \u09aa\u09cd\u09b2\u09c7\u099f" + }, + "shortNameTranslation": { + "ar": "\u0631\u064a\u0641\u0631 \u0628\u0644\u064a\u062a", + "hi": "\u0930\u093f\u0935\u0930" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200226, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "river-plate-inter", + "startTimestamp": 1750899600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group E", + "slug": "fifa-club-world-cup-group-e", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 769, + "isGroup": true, + "groupName": "Group E", + "id": 142883, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 E", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0908", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u0987" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "HNsVmb", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Urawa Red Diamonds", + "slug": "urawa-red-diamonds", + "shortName": "Urawa Reds", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 24448, + "nameCode": "URD", + "disabled": false, + "national": false, + "type": 0, + "id": 3145, + "country": { + "alpha2": "JP", + "alpha3": "JPN", + "name": "Japan", + "slug": "japan" + }, + "subTeams": [], + "teamColors": { + "primary": "#cc0033", + "secondary": "#cc0033", + "text": "#cc0033" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0648\u0631\u0627\u0648\u0627 \u0631\u064a\u062f \u062f\u064a\u0627\u0645\u0648\u0646\u062f\u0632", + "ru": "\u0423\u0440\u0430\u0432\u0430 \u0420\u0435\u0434 \u0414\u0430\u0439\u043c\u043e\u043d\u0434\u0441", + "hi": "\u0909\u0930\u093e\u0935\u093e \u0930\u0947\u0921 \u0921\u093e\u092f\u092e\u0902\u0921\u094d\u0938" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0631\u0627\u0648\u0627 \u0631\u064a\u062f\u0632" + } + } + }, + "awayTeam": { + "name": "CF Monterrey", + "slug": "cf-monterrey", + "shortName": "Monterrey", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 77103, + "nameCode": "MTY", + "disabled": false, + "national": false, + "type": 0, + "id": 1932, + "country": { + "alpha2": "MX", + "alpha3": "MEX", + "name": "Mexico", + "slug": "mexico" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u0648\u0646\u062a\u064a\u0631\u064a", + "ru": "\u041a\u0424 \u041c\u043e\u043d\u0442\u0435\u0440\u0440\u0435\u0439", + "hi": "\u0938\u0940\u090d\u095e \u092e\u094b\u0928\u094d\u091f\u0947\u0930\u0947" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200288, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "urawa-red-diamonds-cf-monterrey", + "startTimestamp": 1750899600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group G", + "slug": "fifa-club-world-cup-group-g", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 767, + "isGroup": true, + "groupName": "Group G", + "id": 142885, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 G", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u091c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u099c\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "rMdb", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Juventus", + "slug": "juventus", + "shortName": "Juventus", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1615448, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "id": 2687, + "country": { + "alpha2": "IT", + "alpha3": "ITA", + "name": "Italy", + "slug": "italy" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u064a\u0648\u0641\u0646\u062a\u0648\u0633", + "ru": "\u042e\u0432\u0435\u043d\u0442\u0443\u0441", + "hi": "\u091c\u0941\u0935\u0947\u0902\u091f\u0938", + "bn": "\u099c\u09c1\u09ad\u09c7\u09a8\u09cd\u099f\u09be\u09b8" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Manchester City", + "slug": "manchester-city", + "shortName": "Man City", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 3033046, + "nameCode": "MCI", + "disabled": false, + "national": false, + "type": 0, + "id": 17, + "country": { + "alpha2": "EN", + "alpha3": "ENG", + "name": "England", + "slug": "england" + }, + "subTeams": [], + "teamColors": { + "primary": "#66ccff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u0633\u064a\u062a\u064a", + "ru": "\u041c\u0430\u043d\u0447\u0435\u0441\u0442\u0435\u0440 \u0421\u0438\u0442\u0438", + "hi": "\u092e\u0947\u0928\u091a\u0947\u0938\u094d\u091f\u0930 \u0938\u093f\u091f\u0940 \u090d\u095e\u0938\u0940" + }, + "shortNameTranslation": { + "ar": "\u0645\u0627\u0646 \u0633\u064a\u062a\u064a", + "hi": "\u092e\u0948\u0928 \u0938\u093f\u091f\u0940", + "bn": "\u09ae\u09cd\u09af\u09be\u09a8 \u09b8\u09bf\u099f\u09bf" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200232, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "juventus-manchester-city", + "startTimestamp": 1750964400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group G", + "slug": "fifa-club-world-cup-group-g", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 767, + "isGroup": true, + "groupName": "Group G", + "id": 142885, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 G", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u091c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u099c\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "tAosHQo", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Wydad Casablanca", + "slug": "wydad-casablanca", + "shortName": "WAC", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 158391, + "nameCode": "WCA", + "disabled": false, + "national": false, + "type": 0, + "id": 36268, + "country": { + "alpha2": "MA", + "alpha3": "MAR", + "name": "Morocco", + "slug": "morocco" + }, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0646\u0627\u062f\u064a \u0627\u0644\u0648\u062f\u0627\u062f \u0627\u0644\u0631\u064a\u0627\u0636\u064a", + "ru": "\u0412\u0438\u0434\u0430\u0434 \u0410\u041a" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Al-Ain", + "slug": "al-ain", + "shortName": "Al-Ain", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 69147, + "nameCode": "AIN", + "disabled": false, + "national": false, + "type": 0, + "id": 37082, + "country": { + "alpha2": "AE", + "alpha3": "ARE", + "name": "United Arab Emirates", + "slug": "united-arab-emirates" + }, + "subTeams": [], + "teamColors": { + "primary": "#020c7d", + "secondary": "#07017e", + "text": "#07017e" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u043b\u044c-\u0410\u0439\u043d" + }, + "shortNameTranslation": { + "ar": "\u0627\u0644\u0639\u064a\u0646" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200295, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "al-ain-wydad-casablanca", + "startTimestamp": 1750964400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group H", + "slug": "fifa-club-world-cup-group-h", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 766, + "isGroup": true, + "groupName": "Group H", + "id": 142886, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 H", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u091a", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u0987\u099a" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "WPsEgb", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Red Bull Salzburg", + "slug": "red-bull-salzburg", + "shortName": "RB Salzburg", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 242610, + "nameCode": "RBS", + "disabled": false, + "national": false, + "type": 0, + "id": 2046, + "country": { + "alpha2": "AT", + "alpha3": "AUT", + "name": "Austria", + "slug": "austria" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0420\u0411 \u0417\u0430\u043b\u044c\u0446\u0431\u0443\u0440\u0433" + }, + "shortNameTranslation": { + "ar": "\u0622\u0631 \u0628\u064a \u0633\u0627\u0644\u0632\u0628\u0648\u0631\u062c", + "hi": "\u0906\u0930\u092c\u0940 \u0938\u093e\u0932\u094d\u091c\u093c\u092c\u0930\u094d\u0917", + "bn": "\u0986\u09b0\u09ac\u09bf \u09b8\u09be\u09b2\u099c\u09ac\u09be\u09b0\u09cd\u0997" + } + } + }, + "awayTeam": { + "name": "Real Madrid", + "slug": "real-madrid", + "shortName": "Real Madrid", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 5246857, + "nameCode": "RMA", + "disabled": false, + "national": false, + "type": 0, + "id": 2829, + "country": { + "alpha2": "ES", + "alpha3": "ESP", + "name": "Spain", + "slug": "spain" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#004996", + "text": "#004996" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f", + "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434", + "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921", + "bn": "\u09b0\u09bf\u09af\u09bc\u09be\u09b2 \u09ae\u09be\u09a6\u09cd\u09b0\u09bf\u09a6" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200233, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "real-madrid-red-bull-salzburg", + "startTimestamp": 1750986000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group H", + "slug": "fifa-club-world-cup-group-h", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 766, + "isGroup": true, + "groupName": "Group H", + "id": 142886, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 H", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u091a", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u0987\u099a" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "LNsVMi", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Al-Hilal", + "slug": "al-hilal", + "shortName": "Al-Hilal", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 894682, + "nameCode": "ALH", + "disabled": false, + "national": false, + "type": 0, + "id": 21895, + "country": { + "alpha2": "SA", + "alpha3": "SAU", + "name": "Saudi Arabia", + "slug": "saudi-arabia" + }, + "subTeams": [], + "teamColors": { + "primary": "#0080ff", + "secondary": "#0080ff", + "text": "#0080ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0647\u0644\u0627\u0644", + "ru": "\u0410\u043b\u044c-\u0425\u0438\u043b\u0430\u043b (\u041a\u0421\u0410)", + "hi": "\u0905\u0932-\u0939\u093f\u0932\u093e\u0932", + "bn": "\u0986\u09b2-\u09b9\u09bf\u09b2\u09be\u09b2" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "CF Pachuca", + "slug": "cf-pachuca", + "shortName": "Pachuca", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 59464, + "nameCode": "PAC", + "disabled": false, + "national": false, + "type": 0, + "id": 1936, + "country": { + "alpha2": "MX", + "alpha3": "MEX", + "name": "Mexico", + "slug": "mexico" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#008bce", + "text": "#008bce" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a \u0625\u0641 \u0628\u0627\u0634\u0643\u0627", + "ru": "\u041a\u0424 \u041f\u0430\u0447\u0443\u043a\u0430", + "hi": "\u0938\u0940\u090d\u095e \u092a\u093e\u091a\u0941\u0915\u093e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u062a\u0634\u0648\u0643\u0627" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200298, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "al-hilal-cf-pachuca", + "startTimestamp": 1750986000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Knockout stage", + "slug": "club-world-cup", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 534, + "isGroup": false, + "isLive": false, + "id": 3888, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629 - \u0645\u0631\u062d\u0644\u0629 \u0627\u0644\u0625\u0642\u0635\u0627\u0621", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0928\u0949\u0915\u0906\u0909\u091f \u0938\u094d\u091f\u0947\u091c", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u09a8\u0995\u0986\u0989\u099f \u09b8\u09cd\u099f\u09c7\u099c" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 5, + "name": "Round of 16", + "slug": "round-of-16", + "cupRoundType": 8 + }, + "customId": "iOsnO", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 574811, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "id": 1963, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u0631\u0627\u0633" + } + } + }, + "awayTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 335340, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13385901, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "runner-up-group-winner-group", + "startTimestamp": 1751126400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Knockout stage", + "slug": "club-world-cup", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 534, + "isGroup": false, + "isLive": false, + "id": 3888, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629 - \u0645\u0631\u062d\u0644\u0629 \u0627\u0644\u0625\u0642\u0635\u0627\u0621", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0928\u0949\u0915\u0906\u0909\u091f \u0938\u094d\u091f\u0947\u091c", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u09a8\u0995\u0986\u0989\u099f \u09b8\u09cd\u099f\u09c7\u099c" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 5, + "name": "Round of 16", + "slug": "round-of-16", + "cupRoundType": 8 + }, + "customId": "UHsccKc", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Paris Saint-Germain", + "slug": "paris-saint-germain", + "shortName": "PSG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2270349, + "nameCode": "PSG", + "disabled": false, + "national": false, + "type": 0, + "id": 1644, + "country": { + "alpha2": "FR", + "alpha3": "FRA", + "name": "France", + "slug": "france" + }, + "subTeams": [], + "teamColors": { + "primary": "#000066", + "secondary": "#ff1541", + "text": "#ff1541" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0631\u064a\u0633 \u0633\u0627\u0646 \u062c\u064a\u0631\u0645\u0627\u0646", + "ru": "\u041f\u0430\u0440\u0438 \u0421\u0435\u043d-\u0416\u0435\u0440\u043c\u0435\u043d", + "hi": "\u092a\u0947\u0930\u093f\u0938 \u0938\u093e\u0901 \u091c\u0947\u0930\u094d\u092e\u093e\u0903" + }, + "shortNameTranslation": { + "hi": "\u092a\u0940\u090f\u0938\u091c\u0940", + "bn": "\u09aa\u09bf\u098f\u09b8\u099c\u09bf" + } + } + }, + "awayTeam": { + "name": "Inter Miami CF", + "slug": "inter-miami-cf", + "shortName": "Inter Miami", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1368637, + "nameCode": "IMC", + "disabled": false, + "national": false, + "type": 0, + "id": 337602, + "country": { + "alpha2": "US", + "alpha3": "USA", + "name": "USA", + "slug": "usa" + }, + "subTeams": [], + "teamColors": { + "primary": "#212322", + "secondary": "#f6b5cc", + "text": "#f6b5cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631 \u0645\u064a\u0627\u0645\u064a", + "ru": "\u0418\u043d\u0442\u0435\u0440 \u041c\u0430\u0439\u0430\u043c\u0438", + "hi": "\u0907\u0902\u091f\u0930 \u092e\u093f\u0906\u092e\u093f \u0938\u0940\u090d\u095e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13385906, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "runner-up-group-winner-group", + "startTimestamp": 1751212800, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Knockout stage", + "slug": "club-world-cup", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 534, + "isGroup": false, + "isLive": false, + "id": 3888, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629 - \u0645\u0631\u062d\u0644\u0629 \u0627\u0644\u0625\u0642\u0635\u0627\u0621", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0928\u0949\u0915\u0906\u0909\u091f \u0938\u094d\u091f\u0947\u091c", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u09a8\u0995\u0986\u0989\u099f \u09b8\u09cd\u099f\u09c7\u099c" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 5, + "name": "Round of 16", + "slug": "round-of-16", + "cupRoundType": 8 + }, + "customId": "xdbsGuc", + "status": { + "code": 0, + "description": "Not started", + "type": "notstarted" + }, + "homeTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 848919, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "FC Bayern M\u00fcnchen", + "slug": "fc-bayern-munchen", + "shortName": "Bayern", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2178090, + "nameCode": "FBM", + "disabled": false, + "national": false, + "type": 0, + "id": 2672, + "country": { + "alpha2": "DE", + "alpha3": "DEU", + "name": "Germany", + "slug": "germany" + }, + "subTeams": [], + "teamColors": { + "primary": "#cf142f", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0411\u0430\u0432\u0430\u0440\u0438\u044f \u041c\u044e\u043d\u0445\u0435\u043d" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u064a\u0631\u0646", + "hi": "\u092c\u093e\u092f\u0930\u094d\u0928", + "bn": "\u09ac\u09be\u09af\u09bc\u09be\u09b0\u09cd\u09a8" + } + } + }, + "homeScore": {}, + "awayScore": {}, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13385907, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "runner-up-group-winner-group", + "startTimestamp": 1751227200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + } + ], + "hasNextPage": false +} diff --git a/test/testdata/last.json b/test/testdata/last.json new file mode 100644 index 0000000..6c3816d --- /dev/null +++ b/test/testdata/last.json @@ -0,0 +1,5008 @@ +{ + "events": [{ + "tournament": { + "name": "Copa Libertadores, Group H", + "slug": "copa-libertadores-group-h", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 582, + "isGroup": true, + "groupName": "Group 8", + "isLive": false, + "id": 2935 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 5 + }, + "customId": "lobsWuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "River Plate", + "slug": "river-plate", + "shortName": "River", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 175873, + "nameCode": "RIV", + "disabled": false, + "national": false, + "type": 0, + "id": 3211, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0420\u0438\u0432\u0435\u0440 \u041f\u043b\u0435\u0439\u0442" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Libertad", + "slug": "libertad", + "shortName": "Libertad", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 31818, + "nameCode": "LIB", + "disabled": false, + "national": false, + "type": 0, + "id": 5996, + "country": { + "alpha2": "PY", + "alpha3": "PRY", + "name": "Paraguay" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041b\u0438\u0431\u0435\u0440\u0442\u0430\u0434 \u0410\u0441\u0443\u043d\u0441\u044c\u043e\u043d" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "time": { + "injuryTime1": 2, + "injuryTime2": 4, + "currentPeriodStartTimestamp": 1715736774 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1715739724 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172477, + "crowdsourcingEnabled": false, + "startTimestamp": 1715733000, + "slug": "libertad-river-plate", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group E", + "slug": "copa-libertadores-group-e", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 585, + "isGroup": true, + "groupName": "Group 5", + "isLive": false, + "id": 2932 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 5 + }, + "customId": "hnbsrxc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Millonarios", + "slug": "millonarios", + "shortName": "Millonarios", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 46322, + "nameCode": "MIL", + "disabled": false, + "national": false, + "type": 0, + "id": 6117, + "country": { + "alpha2": "CO", + "alpha3": "COL", + "name": "Colombia" + }, + "subTeams": [], + "teamColors": { + "primary": "#0000cc", + "secondary": "#0000cc", + "text": "#0000cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0646\u0627\u062f\u0649 \u0627\u0644\u0631\u064a\u0627\u0636\u064a \u0645\u064a\u0644\u0648\u0646\u0627\u0631\u064a\u0648\u0633", + "ru": "\u0424\u041a \u041c\u0438\u043b\u044c\u043e\u043d\u0430\u0440\u0438\u043e\u0441" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Palestino", + "slug": "palestino", + "shortName": "Palestino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 14631, + "nameCode": "PAL", + "national": false, + "type": 0, + "id": 3157, + "country": { + "alpha2": "CL", + "alpha3": "CHL", + "name": "Chile" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041f\u0430\u043b\u0435\u0441\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "time": { + "injuryTime1": 3, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1715742227 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1715745324 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172456, + "crowdsourcingEnabled": false, + "startTimestamp": 1715738400, + "slug": "millonarios-palestino", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group H", + "slug": "copa-libertadores-group-h", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 582, + "isGroup": true, + "groupName": "Group 8", + "isLive": false, + "id": 2935 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 5 + }, + "customId": "FobsGzc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Deportivo T\u00e1chira", + "slug": "deportivo-tachira", + "shortName": "Dep. T\u00e1chira", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 9462, + "nameCode": "TAC", + "disabled": false, + "national": false, + "type": 0, + "id": 6231, + "country": { + "alpha2": "VE", + "alpha3": "VEN", + "name": "Venezuela" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffff00", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0414\u0435\u043f\u043e\u0440\u0442\u0438\u0432\u043e \u0422\u0430\u0447\u0438\u0440\u0430" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Club Nacional de Football", + "slug": "club-nacional-de-football", + "shortName": "Nacional", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 31187, + "nameCode": "NAC", + "disabled": false, + "national": false, + "type": 0, + "id": 3230, + "country": { + "alpha2": "UY", + "alpha3": "URY", + "name": "Uruguay" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#0033ff", + "text": "#0033ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0646\u0627\u062f\u064a \u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644 \u0644\u0643\u0631\u0629 \u0627\u0644\u0642\u062f\u0645", + "ru": "\u041d\u0430\u0441\u0438\u043e\u043d\u0430\u043b\u044c \u0423\u0440\u0443" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "time": { + "injuryTime1": 1, + "injuryTime2": 4, + "currentPeriodStartTimestamp": 1715814149 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1715817102 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172517, + "homeRedCards": 1, + "crowdsourcingEnabled": false, + "startTimestamp": 1715810400, + "slug": "deportivo-tachira-club-nacional-de-football", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group C", + "slug": "copa-libertadores-group-c", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 587, + "isGroup": true, + "groupName": "Group 3", + "isLive": false, + "id": 2930 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 5 + }, + "customId": "onbsEan", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "The Strongest", + "slug": "the-strongest", + "shortName": "The Strongest", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 32130, + "nameCode": "STR", + "disabled": false, + "national": false, + "type": 0, + "id": 32529, + "country": { + "alpha2": "BO", + "alpha3": "BOL", + "name": "Bolivia" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffcc00", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062f\u064a \u0633\u062a\u0631\u0648\u0646\u062c\u0633\u062a", + "ru": "\u0421\u0442\u0440\u043e\u043d\u0433\u0435\u0441\u0442" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Huachipato", + "slug": "huachipato", + "shortName": "Huachipato", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 10332, + "nameCode": "HUA", + "national": false, + "type": 0, + "id": 3164, + "country": { + "alpha2": "CL", + "alpha3": "CHL", + "name": "Chile" + }, + "subTeams": [], + "teamColors": { + "primary": "#000066", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0647\u0648\u0627\u062a\u0634\u064a\u0628\u0627\u062a\u0648", + "ru": "\u0425\u0443\u0430\u0447\u0438\u043f\u0430\u0442\u043e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 4, + "display": 4, + "period1": 1, + "period2": 3, + "normaltime": 4 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "time": { + "injuryTime1": 2, + "injuryTime2": 4, + "currentPeriodStartTimestamp": 1715814192 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1715817147 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172433, + "awayRedCards": 1, + "crowdsourcingEnabled": false, + "startTimestamp": 1715810400, + "slug": "the-strongest-huachipato", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group C", + "slug": "copa-libertadores-group-c", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 587, + "isGroup": true, + "groupName": "Group 3", + "isLive": false, + "id": 2930 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 5 + }, + "customId": "gobsBtc", + "status": { + "code": 60, + "description": "Postponed", + "type": "postponed" + }, + "homeTeam": { + "name": "Gr\u00eamio", + "slug": "gremio", + "shortName": "Gr\u00eamio", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 180940, + "nameCode": "GPA", + "disabled": false, + "national": false, + "type": 0, + "id": 5926, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#3399ff", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Estudiantes de La Plata", + "slug": "estudiantes-de-la-plata", + "shortName": "Estudiantes", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 32429, + "nameCode": "ELP", + "disabled": false, + "national": false, + "type": 0, + "id": 3206, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina" + }, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0633\u062a\u0648\u064a\u0627\u0646\u062a\u0648\u0633 \u062f\u064a \u0644\u0627\u0628\u0644\u0627\u062f\u0627", + "ru": "\u041a\u043b\u0443\u0431 \u042d\u0441\u0442\u0443\u0434\u0438\u0430\u043d\u0442\u0435\u0441 \u0434\u0435 \u041b\u0430-\u041f\u043b\u0430\u0442\u0430" + }, + "shortNameTranslation": {} + } + }, + "homeScore": {}, + "awayScore": {}, + "coverage": -1, + "time": {}, + "changes": { + "changeTimestamp": 0 + }, + "hasGlobalHighlights": false, + "hasEventPlayerStatistics": false, + "hasEventPlayerHeatMap": false, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172440, + "crowdsourcingEnabled": false, + "startTimestamp": 1715810400, + "slug": "gremio-estudiantes-de-la-plata", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group A", + "slug": "copa-libertadores-group-a", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 589, + "isGroup": true, + "groupName": "Group 1", + "isLive": false, + "id": 2928 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 5 + }, + "customId": "lWsfnb", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Alianza Lima", + "slug": "alianza-lima", + "shortName": "Alianza Lima", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 49233, + "nameCode": "ALI", + "disabled": false, + "national": false, + "type": 0, + "id": 2311, + "country": { + "alpha2": "PE", + "alpha3": "PER", + "name": "Peru" + }, + "subTeams": [], + "teamColors": { + "primary": "#091d47", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0623\u0644\u064a\u0627\u0646\u0632\u0627 \u0644\u064a\u0645\u0627", + "ru": "\u0410\u043b\u044c\u044f\u043d\u0441\u0430 \u041b\u0438\u043c\u0430" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Colo Colo", + "slug": "colo-colo", + "shortName": "Colo-Colo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 55656, + "nameCode": "CC", + "disabled": false, + "national": false, + "type": 0, + "id": 3155, + "country": { + "alpha2": "CL", + "alpha3": "CHL", + "name": "Chile" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041a\u043e\u043b\u043e \u041a\u043e\u043b\u043e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "time": { + "injuryTime1": 5, + "injuryTime2": 7, + "currentPeriodStartTimestamp": 1715821599 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1715824863 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172421, + "awayRedCards": 2, + "crowdsourcingEnabled": false, + "startTimestamp": 1715817600, + "slug": "colo-colo-alianza-lima", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group F", + "slug": "copa-libertadores-group-f", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 584, + "isGroup": true, + "groupName": "Group 6", + "isLive": false, + "id": 2933 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 5 + }, + "customId": "nOsyUp", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 362549, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "id": 1963, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Independiente Del Valle", + "slug": "independiente-del-valle", + "shortName": "Ind. Del Valle", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 38331, + "nameCode": "IND", + "disabled": false, + "national": false, + "type": 0, + "id": 39723, + "country": { + "alpha2": "EC", + "alpha3": "ECU", + "name": "Ecuador" + }, + "subTeams": [], + "teamColors": { + "primary": "#002945", + "secondary": "#e8ac35", + "text": "#e8ac35" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0418\u043d\u0434\u0435\u043f\u0435\u043d\u0434\u044c\u0435\u043d\u0442\u0435 \u0434\u0435\u043b\u044c \u0412\u0430\u043b\u044c\u0435" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "time": { + "injuryTime1": 3, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1715823307 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1715826327 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172502, + "crowdsourcingEnabled": false, + "startTimestamp": 1715819400, + "slug": "independiente-del-valle-palmeiras", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group E", + "slug": "copa-libertadores-group-e", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 585, + "isGroup": true, + "groupName": "Group 5", + "isLive": false, + "id": 2932 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 5 + }, + "customId": "GucsjQc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 528799, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Bol\u00edvar", + "slug": "bolivar", + "shortName": "Bol\u00edvar", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 36342, + "nameCode": "BOL", + "disabled": false, + "national": false, + "type": 0, + "id": 7059, + "country": { + "alpha2": "BO", + "alpha3": "BOL", + "name": "Bolivia" + }, + "subTeams": [], + "teamColors": { + "primary": "#33ccff", + "secondary": "#330066", + "text": "#330066" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041a\u043b\u0443\u0431 \u0411\u043e\u043b\u0438\u0432\u0430\u0440" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 4, + "display": 4, + "period1": 3, + "period2": 1, + "normaltime": 4 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "time": { + "injuryTime1": 3, + "injuryTime2": 3, + "currentPeriodStartTimestamp": 1715823328 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1715826238 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172450, + "crowdsourcingEnabled": false, + "startTimestamp": 1715819400, + "slug": "bolivar-flamengo", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group G", + "slug": "copa-libertadores-group-g", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 583, + "isGroup": true, + "groupName": "Group 7", + "isLive": false, + "id": 2934 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 5 + }, + "customId": "robsFzc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Rosario Central", + "slug": "rosario-central", + "shortName": "Rosario Central", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 22860, + "nameCode": "ROS", + "disabled": false, + "national": false, + "type": 0, + "id": 3217, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina" + }, + "subTeams": [], + "teamColors": { + "primary": "#000066", + "secondary": "#ffcc00", + "text": "#ffcc00" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0420\u043e\u0441\u0430\u0440\u0438\u043e \u0426\u0435\u043d\u0442\u0440\u0430\u043b" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Caracas F.C.", + "slug": "caracas-fc", + "shortName": "Caracas", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 8147, + "nameCode": "CAR", + "disabled": false, + "national": false, + "type": 0, + "id": 6230, + "country": { + "alpha2": "VE", + "alpha3": "VEN", + "name": "Venezuela" + }, + "subTeams": [], + "teamColors": { + "primary": "#cc0000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041a\u0430\u0440\u0430\u043a\u0430\u0441 \u0424\u041a" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 4, + "display": 4, + "period1": 2, + "period2": 2, + "normaltime": 4 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "time": { + "injuryTime1": 1, + "injuryTime2": 4, + "currentPeriodStartTimestamp": 1715900491 + }, + "changes": { + "changes": ["time.injuryTime2", "status.code", "status.description", "status.type", "homeScore.period2", "homeScore.normaltime"], + "changeTimestamp": 1715903454 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172495, + "crowdsourcingEnabled": false, + "startTimestamp": 1715896800, + "slug": "caracasc-rosario-central", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group D", + "slug": "copa-libertadores-group-d", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 586, + "isGroup": true, + "groupName": "Group 4", + "isLive": false, + "id": 2931 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 5 + }, + "customId": "iOsfW", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Universitario", + "slug": "universitario", + "shortName": "Universitario", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 45634, + "nameCode": "UNI", + "disabled": false, + "national": false, + "type": 0, + "id": 2305, + "country": { + "alpha2": "PE", + "alpha3": "PER", + "name": "Peru" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffcc", + "secondary": "#ffffcc", + "text": "#ffffcc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u064a\u0648\u0646\u064a\u0641\u0631\u0633\u064a\u062a\u0627\u0631\u064a\u0648 \u062f\u064a \u062f\u064a\u0628\u0648\u0631\u062a\u0633", + "ru": "\u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0430\u0440\u0438\u043e \u0434\u0435 \u0414\u0435\u043f\u043e\u0440\u0442\u0435\u0441" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 169293, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "time": { + "injuryTime1": 2, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1715900558 + }, + "changes": { + "changes": ["time.injuryTime2", "status.code", "status.description", "status.type"], + "changeTimestamp": 1715903573 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172447, + "crowdsourcingEnabled": false, + "startTimestamp": 1715896800, + "slug": "universitario-botafogo", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group A", + "slug": "copa-libertadores-group-a", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 589, + "isGroup": true, + "groupName": "Group 1", + "isLive": false, + "id": 2928 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 5 + }, + "customId": "lOsQuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 215382, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Cerro Porte\u00f1o", + "slug": "cerro-porteno", + "shortName": "Cerro Porte\u00f1o", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 34684, + "nameCode": "CPO", + "disabled": false, + "national": false, + "type": 0, + "id": 5991, + "country": { + "alpha2": "PY", + "alpha3": "PRY", + "name": "Paraguay" + }, + "subTeams": [], + "teamColors": { + "primary": "#cc0000", + "secondary": "#003366", + "text": "#003366" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0421\u0435\u0440\u0440\u043e \u041f\u043e\u0440\u0442\u0435\u043d\u044c\u043e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "time": { + "injuryTime1": 3, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1715900623 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1715903630 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172420, + "awayRedCards": 1, + "crowdsourcingEnabled": false, + "startTimestamp": 1715896800, + "slug": "cerro-porteno-fluminense", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group F", + "slug": "copa-libertadores-group-f", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 584, + "isGroup": true, + "groupName": "Group 6", + "isLive": false, + "id": 2933 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 5 + }, + "customId": "bobsEMc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "San Lorenzo", + "slug": "san-lorenzo", + "shortName": "San Lorenzo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 30745, + "nameCode": "SLO", + "disabled": false, + "national": false, + "type": 0, + "id": 3201, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina" + }, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0421\u0430\u043d \u041b\u043e\u0440\u0435\u043d\u0446\u043e \u0434\u0435 \u0410\u043b\u044c\u043c\u0430\u0440\u0433\u043e" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Liverpool UY", + "slug": "liverpool-uy", + "shortName": "Liverpool", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 18940, + "nameCode": "LIV", + "disabled": false, + "national": false, + "type": 0, + "id": 6879, + "country": { + "alpha2": "UY", + "alpha3": "URY", + "name": "Uruguay" + }, + "subTeams": [], + "teamColors": { + "primary": "#082543", + "secondary": "#1e1e1e", + "text": "#1e1e1e" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041b\u0438\u0432\u0435\u0440\u043f\u0443\u043b\u044c \u041c\u043e\u043d\u0442\u0435\u0432\u0438\u0434\u0435\u043e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 2, + "period2": 1, + "normaltime": 3 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "time": { + "injuryTime1": 5, + "injuryTime2": 8, + "currentPeriodStartTimestamp": 1715907986 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1715911315 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172508, + "awayRedCards": 1, + "crowdsourcingEnabled": false, + "startTimestamp": 1715904000, + "slug": "liverpool-uy-san-lorenzo", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group B", + "slug": "copa-libertadores-group-b", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 588, + "isGroup": true, + "groupName": "Group 2", + "isLive": false, + "id": 2929 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 5 + }, + "customId": "GOsafc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "S\u00e3o Paulo", + "slug": "sao-paulo", + "shortName": "S\u00e3o Paulo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 298346, + "nameCode": "SPA", + "disabled": false, + "national": false, + "type": 0, + "id": 1981, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Barcelona SC", + "slug": "barcelona-sc", + "shortName": "Barcelona SC", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 41583, + "nameCode": "BSC", + "disabled": false, + "national": false, + "type": 0, + "id": 5250, + "country": { + "alpha2": "EC", + "alpha3": "ECU", + "name": "Ecuador" + }, + "subTeams": [], + "teamColors": { + "primary": "#fce000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "time": { + "injuryTime1": 1, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1715907844 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1715910870 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172524, + "crowdsourcingEnabled": false, + "startTimestamp": 1715904000, + "slug": "barcelona-sc-sao-paulo", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group G", + "slug": "copa-libertadores-group-g", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 583, + "isGroup": true, + "groupName": "Group 7", + "isLive": false, + "id": 2934 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "robsCob", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Pe\u00f1arol", + "slug": "penarol", + "shortName": "Pe\u00f1arol", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 31651, + "nameCode": "PEN", + "disabled": false, + "national": false, + "type": 0, + "id": 3227, + "country": { + "alpha2": "UY", + "alpha3": "URY", + "name": "Uruguay" + }, + "subTeams": [], + "teamColors": { + "primary": "#000000", + "secondary": "#ffc400", + "text": "#ffc400" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041a\u0410 \u041f\u0435\u043d\u044c\u044f\u0440\u043e\u043b\u044c \u041c\u043e\u043d\u0442\u0435\u0432\u0438\u0434\u0435\u043e" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Rosario Central", + "slug": "rosario-central", + "shortName": "Rosario Central", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 22860, + "nameCode": "ROS", + "disabled": false, + "national": false, + "type": 0, + "id": 3217, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina" + }, + "subTeams": [], + "teamColors": { + "primary": "#000066", + "secondary": "#ffcc00", + "text": "#ffcc00" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0420\u043e\u0441\u0430\u0440\u0438\u043e \u0426\u0435\u043d\u0442\u0440\u0430\u043b" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "time": { + "injuryTime1": 3, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1716937484 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1716940503 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172490, + "crowdsourcingEnabled": false, + "startTimestamp": 1716933600, + "slug": "penarol-rosario-central", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group G", + "slug": "copa-libertadores-group-g", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 583, + "isGroup": true, + "groupName": "Group 7", + "isLive": false, + "id": 2934 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "COsFzc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Atl\u00e9tico Mineiro", + "slug": "atletico-mineiro", + "shortName": "Atl\u00e9tico-MG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 189036, + "nameCode": "ATL", + "disabled": false, + "national": false, + "type": 0, + "id": 1977, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Caracas F.C.", + "slug": "caracas-fc", + "shortName": "Caracas", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 8147, + "nameCode": "CAR", + "disabled": false, + "national": false, + "type": 0, + "id": 6230, + "country": { + "alpha2": "VE", + "alpha3": "VEN", + "name": "Venezuela" + }, + "subTeams": [], + "teamColors": { + "primary": "#cc0000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041a\u0430\u0440\u0430\u043a\u0430\u0441 \u0424\u041a" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 4, + "display": 4, + "period1": 2, + "period2": 2, + "normaltime": 4 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "time": { + "injuryTime1": 5, + "injuryTime2": 4, + "currentPeriodStartTimestamp": 1716937551 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type", "homeScore.period2", "homeScore.normaltime"], + "changeTimestamp": 1716940503 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172498, + "awayRedCards": 1, + "crowdsourcingEnabled": false, + "startTimestamp": 1716933600, + "slug": "caracasc-atletico-mineiro", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group D", + "slug": "copa-libertadores-group-d", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 586, + "isGroup": true, + "groupName": "Group 4", + "isLive": false, + "id": 2931 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "fWshfc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "LDU", + "slug": "ldu", + "shortName": "LDU", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 38921, + "nameCode": "LDU", + "disabled": false, + "national": false, + "type": 0, + "id": 5257, + "country": { + "alpha2": "EC", + "alpha3": "ECU", + "name": "Ecuador" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041b\u0414\u0423 \u041a\u0438\u0442\u043e" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Universitario", + "slug": "universitario", + "shortName": "Universitario", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 45634, + "nameCode": "UNI", + "disabled": false, + "national": false, + "type": 0, + "id": 2305, + "country": { + "alpha2": "PE", + "alpha3": "PER", + "name": "Peru" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffcc", + "secondary": "#ffffcc", + "text": "#ffffcc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u064a\u0648\u0646\u064a\u0641\u0631\u0633\u064a\u062a\u0627\u0631\u064a\u0648 \u062f\u064a \u062f\u064a\u0628\u0648\u0631\u062a\u0633", + "ru": "\u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0430\u0440\u0438\u043e \u0434\u0435 \u0414\u0435\u043f\u043e\u0440\u0442\u0435\u0441" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "time": { + "injuryTime1": 3, + "injuryTime2": 4, + "currentPeriodStartTimestamp": 1716937398 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1716940378 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172430, + "awayRedCards": 1, + "crowdsourcingEnabled": false, + "startTimestamp": 1716933600, + "slug": "ldu-universitario", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group D", + "slug": "copa-libertadores-group-d", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 586, + "isGroup": true, + "groupName": "Group 4", + "isLive": false, + "id": 2931 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "iOsfxc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Junior Barranquilla", + "slug": "junior-barranquilla", + "shortName": "Junior Barranquilla", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 34346, + "nameCode": "JUN", + "disabled": false, + "national": false, + "type": 0, + "id": 6105, + "country": { + "alpha2": "CO", + "alpha3": "COL", + "name": "Colombia" + }, + "subTeams": [], + "teamColors": { + "primary": "#cc0000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u0414\u0436\u0443\u043d\u0438\u043e\u0440" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 169293, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "time": { + "injuryTime1": 4, + "injuryTime2": 3, + "currentPeriodStartTimestamp": 1716937676 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1716940563 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172432, + "awayRedCards": 1, + "crowdsourcingEnabled": false, + "startTimestamp": 1716933600, + "slug": "junior-barranquilla-botafogo", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group E", + "slug": "copa-libertadores-group-e", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 585, + "isGroup": true, + "groupName": "Group 5", + "isLive": false, + "id": 2932 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "hnbsjQc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Bol\u00edvar", + "slug": "bolivar", + "shortName": "Bol\u00edvar", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 36342, + "nameCode": "BOL", + "disabled": false, + "national": false, + "type": 0, + "id": 7059, + "country": { + "alpha2": "BO", + "alpha3": "BOL", + "name": "Bolivia" + }, + "subTeams": [], + "teamColors": { + "primary": "#33ccff", + "secondary": "#330066", + "text": "#330066" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041a\u043b\u0443\u0431 \u0411\u043e\u043b\u0438\u0432\u0430\u0440" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Palestino", + "slug": "palestino", + "shortName": "Palestino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 14631, + "nameCode": "PAL", + "national": false, + "type": 0, + "id": 3157, + "country": { + "alpha2": "CL", + "alpha3": "CHL", + "name": "Chile" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041f\u0430\u043b\u0435\u0441\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 1, + "period2": 2, + "normaltime": 3 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "time": { + "injuryTime1": 5, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1716945064 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1716948083 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172428, + "crowdsourcingEnabled": false, + "startTimestamp": 1716940800, + "slug": "bolivar-palestino", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group E", + "slug": "copa-libertadores-group-e", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 585, + "isGroup": true, + "groupName": "Group 5", + "isLive": false, + "id": 2932 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "Gucsrxc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 528799, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Millonarios", + "slug": "millonarios", + "shortName": "Millonarios", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 46322, + "nameCode": "MIL", + "disabled": false, + "national": false, + "type": 0, + "id": 6117, + "country": { + "alpha2": "CO", + "alpha3": "COL", + "name": "Colombia" + }, + "subTeams": [], + "teamColors": { + "primary": "#0000cc", + "secondary": "#0000cc", + "text": "#0000cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0646\u0627\u062f\u0649 \u0627\u0644\u0631\u064a\u0627\u0636\u064a \u0645\u064a\u0644\u0648\u0646\u0627\u0631\u064a\u0648\u0633", + "ru": "\u0424\u041a \u041c\u0438\u043b\u044c\u043e\u043d\u0430\u0440\u0438\u043e\u0441" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 3, + "period2": 0, + "normaltime": 3 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "time": { + "injuryTime1": 3, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1716944621 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1716947618 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172429, + "homeRedCards": 1, + "crowdsourcingEnabled": false, + "startTimestamp": 1716940800, + "slug": "millonarios-flamengo", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group C", + "slug": "copa-libertadores-group-c", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 587, + "isGroup": true, + "groupName": "Group 3", + "isLive": false, + "id": 2930 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "onbsgob", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Estudiantes de La Plata", + "slug": "estudiantes-de-la-plata", + "shortName": "Estudiantes", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 32429, + "nameCode": "ELP", + "disabled": false, + "national": false, + "type": 0, + "id": 3206, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina" + }, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0633\u062a\u0648\u064a\u0627\u0646\u062a\u0648\u0633 \u062f\u064a \u0644\u0627\u0628\u0644\u0627\u062f\u0627", + "ru": "\u041a\u043b\u0443\u0431 \u042d\u0441\u0442\u0443\u0434\u0438\u0430\u043d\u0442\u0435\u0441 \u0434\u0435 \u041b\u0430-\u041f\u043b\u0430\u0442\u0430" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Huachipato", + "slug": "huachipato", + "shortName": "Huachipato", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 10332, + "nameCode": "HUA", + "national": false, + "type": 0, + "id": 3164, + "country": { + "alpha2": "CL", + "alpha3": "CHL", + "name": "Chile" + }, + "subTeams": [], + "teamColors": { + "primary": "#000066", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0647\u0648\u0627\u062a\u0634\u064a\u0628\u0627\u062a\u0648", + "ru": "\u0425\u0443\u0430\u0447\u0438\u043f\u0430\u0442\u043e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 1, + "period2": 2, + "normaltime": 3 + }, + "awayScore": { + "current": 4, + "display": 4, + "period1": 2, + "period2": 2, + "normaltime": 4 + }, + "time": { + "injuryTime1": 2, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1717023791 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type", "awayScore.period2", "awayScore.normaltime"], + "changeTimestamp": 1717026872 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172431, + "crowdsourcingEnabled": false, + "startTimestamp": 1717020000, + "slug": "estudiantes-de-la-plata-huachipato", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group C", + "slug": "copa-libertadores-group-c", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 587, + "isGroup": true, + "groupName": "Group 3", + "isLive": false, + "id": 2930 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "BtcsEan", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Gr\u00eamio", + "slug": "gremio", + "shortName": "Gr\u00eamio", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 180940, + "nameCode": "GPA", + "disabled": false, + "national": false, + "type": 0, + "id": 5926, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#3399ff", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "The Strongest", + "slug": "the-strongest", + "shortName": "The Strongest", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 32130, + "nameCode": "STR", + "disabled": false, + "national": false, + "type": 0, + "id": 32529, + "country": { + "alpha2": "BO", + "alpha3": "BOL", + "name": "Bolivia" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffcc00", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062f\u064a \u0633\u062a\u0631\u0648\u0646\u062c\u0633\u062a", + "ru": "\u0421\u0442\u0440\u043e\u043d\u0433\u0435\u0441\u0442" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 4, + "display": 4, + "period1": 1, + "period2": 3, + "normaltime": 4 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "time": { + "injuryTime1": 1, + "injuryTime2": 3, + "currentPeriodStartTimestamp": 1717023727 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1717026621 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172427, + "crowdsourcingEnabled": false, + "startTimestamp": 1717020000, + "slug": "the-strongest-gremio", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group B", + "slug": "copa-libertadores-group-b", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 588, + "isGroup": true, + "groupName": "Group 2", + "isLive": false, + "id": 2929 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "rnbsafc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Barcelona SC", + "slug": "barcelona-sc", + "shortName": "Barcelona SC", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 41583, + "nameCode": "BSC", + "disabled": false, + "national": false, + "type": 0, + "id": 5250, + "country": { + "alpha2": "EC", + "alpha3": "ECU", + "name": "Ecuador" + }, + "subTeams": [], + "teamColors": { + "primary": "#fce000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Cobresal", + "slug": "cobresal", + "shortName": "Cobresal", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 10796, + "nameCode": "COB", + "national": false, + "type": 0, + "id": 3167, + "country": { + "alpha2": "CL", + "alpha3": "CHL", + "name": "Chile" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ff9900", + "text": "#ff9900" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0648\u0628\u0631\u064a\u0633\u0627\u0644", + "ru": "\u041a\u043e\u0431\u0440\u0435\u0441\u0430\u043b" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "time": { + "injuryTime1": 1, + "injuryTime2": 4, + "currentPeriodStartTimestamp": 1717032752 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1717035711 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172593, + "crowdsourcingEnabled": false, + "startTimestamp": 1717029000, + "slug": "barcelona-sc-cobresal", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group B", + "slug": "copa-libertadores-group-b", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 588, + "isGroup": true, + "groupName": "Group 2", + "isLive": false, + "id": 2929 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "GOskob", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "S\u00e3o Paulo", + "slug": "sao-paulo", + "shortName": "S\u00e3o Paulo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 298346, + "nameCode": "SPA", + "disabled": false, + "national": false, + "type": 0, + "id": 1981, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Talleres", + "slug": "talleres", + "shortName": "Talleres", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 26843, + "nameCode": "CAT", + "disabled": false, + "national": false, + "type": 0, + "id": 3210, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina" + }, + "subTeams": [], + "teamColors": { + "primary": "#050040", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0422\u0430\u043b\u043b\u0435\u0440\u0435\u0441 \u0434\u0435 \u041a\u043e\u0440\u0434\u043e\u0431\u0430" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "time": { + "injuryTime1": 5, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1717033184 + }, + "changes": { + "changes": ["time.injuryTime2", "status.code", "status.description", "status.type"], + "changeTimestamp": 1717036420 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172592, + "awayRedCards": 1, + "crowdsourcingEnabled": false, + "startTimestamp": 1717029000, + "slug": "talleres-sao-paulo", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group A", + "slug": "copa-libertadores-group-a", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 589, + "isGroup": true, + "groupName": "Group 1", + "isLive": false, + "id": 2928 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "fnbsQuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Cerro Porte\u00f1o", + "slug": "cerro-porteno", + "shortName": "Cerro Porte\u00f1o", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 34684, + "nameCode": "CPO", + "disabled": false, + "national": false, + "type": 0, + "id": 5991, + "country": { + "alpha2": "PY", + "alpha3": "PRY", + "name": "Paraguay" + }, + "subTeams": [], + "teamColors": { + "primary": "#cc0000", + "secondary": "#003366", + "text": "#003366" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0421\u0435\u0440\u0440\u043e \u041f\u043e\u0440\u0442\u0435\u043d\u044c\u043e" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Colo Colo", + "slug": "colo-colo", + "shortName": "Colo-Colo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 55656, + "nameCode": "CC", + "disabled": false, + "national": false, + "type": 0, + "id": 3155, + "country": { + "alpha2": "CL", + "alpha3": "CHL", + "name": "Chile" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041a\u043e\u043b\u043e \u041a\u043e\u043b\u043e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "time": { + "injuryTime1": 2, + "injuryTime2": 7, + "currentPeriodStartTimestamp": 1717032801 + }, + "changes": { + "changes": ["cardsCode", "status.code", "status.description", "status.type"], + "changeTimestamp": 1717036162 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172423, + "homeRedCards": 1, + "crowdsourcingEnabled": false, + "startTimestamp": 1717029000, + "slug": "cerro-porteno-colo-colo", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group A", + "slug": "copa-libertadores-group-a", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 589, + "isGroup": true, + "groupName": "Group 1", + "isLive": false, + "id": 2928 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "lOslW", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 215382, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Alianza Lima", + "slug": "alianza-lima", + "shortName": "Alianza Lima", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 49233, + "nameCode": "ALI", + "disabled": false, + "national": false, + "type": 0, + "id": 2311, + "country": { + "alpha2": "PE", + "alpha3": "PER", + "name": "Peru" + }, + "subTeams": [], + "teamColors": { + "primary": "#091d47", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0623\u0644\u064a\u0627\u0646\u0632\u0627 \u0644\u064a\u0645\u0627", + "ru": "\u0410\u043b\u044c\u044f\u043d\u0441\u0430 \u041b\u0438\u043c\u0430" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 0, + "period2": 3, + "normaltime": 3 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "time": { + "injuryTime1": 2, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1717032789 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1717035800 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172424, + "crowdsourcingEnabled": false, + "startTimestamp": 1717029000, + "slug": "alianza-lima-fluminense", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group F", + "slug": "copa-libertadores-group-f", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 584, + "isGroup": true, + "groupName": "Group 6", + "isLive": false, + "id": 2933 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "EMcsyUp", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Independiente Del Valle", + "slug": "independiente-del-valle", + "shortName": "Ind. Del Valle", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 38331, + "nameCode": "IND", + "disabled": false, + "national": false, + "type": 0, + "id": 39723, + "country": { + "alpha2": "EC", + "alpha3": "ECU", + "name": "Ecuador" + }, + "subTeams": [], + "teamColors": { + "primary": "#002945", + "secondary": "#e8ac35", + "text": "#e8ac35" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0418\u043d\u0434\u0435\u043f\u0435\u043d\u0434\u044c\u0435\u043d\u0442\u0435 \u0434\u0435\u043b\u044c \u0412\u0430\u043b\u044c\u0435" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Liverpool UY", + "slug": "liverpool-uy", + "shortName": "Liverpool", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 18940, + "nameCode": "LIV", + "disabled": false, + "national": false, + "type": 0, + "id": 6879, + "country": { + "alpha2": "UY", + "alpha3": "URY", + "name": "Uruguay" + }, + "subTeams": [], + "teamColors": { + "primary": "#082543", + "secondary": "#1e1e1e", + "text": "#1e1e1e" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041b\u0438\u0432\u0435\u0440\u043f\u0443\u043b\u044c \u041c\u043e\u043d\u0442\u0435\u0432\u0438\u0434\u0435\u043e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "time": { + "injuryTime1": 2, + "injuryTime2": 4, + "currentPeriodStartTimestamp": 1717110147 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1717113110 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172511, + "crowdsourcingEnabled": false, + "startTimestamp": 1717106400, + "slug": "independiente-del-valle-liverpool-uy", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group F", + "slug": "copa-libertadores-group-f", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 584, + "isGroup": true, + "groupName": "Group 6", + "isLive": false, + "id": 2933 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "nOsbob", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 362549, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "id": 1963, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "San Lorenzo", + "slug": "san-lorenzo", + "shortName": "San Lorenzo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 30745, + "nameCode": "SLO", + "disabled": false, + "national": false, + "type": 0, + "id": 3201, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina" + }, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0421\u0430\u043d \u041b\u043e\u0440\u0435\u043d\u0446\u043e \u0434\u0435 \u0410\u043b\u044c\u043c\u0430\u0440\u0433\u043e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "time": { + "injuryTime1": 3, + "injuryTime2": 4, + "currentPeriodStartTimestamp": 1717110206 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1717113214 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172506, + "crowdsourcingEnabled": false, + "startTimestamp": 1717106400, + "slug": "san-lorenzo-palmeiras", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group H", + "slug": "copa-libertadores-group-h", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 582, + "isGroup": true, + "groupName": "Group 8", + "isLive": false, + "id": 2935 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "FobsWuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Libertad", + "slug": "libertad", + "shortName": "Libertad", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 31818, + "nameCode": "LIB", + "disabled": false, + "national": false, + "type": 0, + "id": 5996, + "country": { + "alpha2": "PY", + "alpha3": "PRY", + "name": "Paraguay" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041b\u0438\u0431\u0435\u0440\u0442\u0430\u0434 \u0410\u0441\u0443\u043d\u0441\u044c\u043e\u043d" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Club Nacional de Football", + "slug": "club-nacional-de-football", + "shortName": "Nacional", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 31187, + "nameCode": "NAC", + "disabled": false, + "national": false, + "type": 0, + "id": 3230, + "country": { + "alpha2": "UY", + "alpha3": "URY", + "name": "Uruguay" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#0033ff", + "text": "#0033ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0646\u0627\u062f\u064a \u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644 \u0644\u0643\u0631\u0629 \u0627\u0644\u0642\u062f\u0645", + "ru": "\u041d\u0430\u0441\u0438\u043e\u043d\u0430\u043b\u044c \u0423\u0440\u0443" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "time": { + "injuryTime1": 2, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1717117344 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1717120360 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172478, + "crowdsourcingEnabled": false, + "startTimestamp": 1717113600, + "slug": "libertad-club-nacional-de-football", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group H", + "slug": "copa-libertadores-group-h", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 582, + "isGroup": true, + "groupName": "Group 8", + "isLive": false, + "id": 2935 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 6 + }, + "customId": "lobsGzc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "River Plate", + "slug": "river-plate", + "shortName": "River", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 175873, + "nameCode": "RIV", + "disabled": false, + "national": false, + "type": 0, + "id": 3211, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0420\u0438\u0432\u0435\u0440 \u041f\u043b\u0435\u0439\u0442" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Deportivo T\u00e1chira", + "slug": "deportivo-tachira", + "shortName": "Dep. T\u00e1chira", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 9462, + "nameCode": "TAC", + "disabled": false, + "national": false, + "type": 0, + "id": 6231, + "country": { + "alpha2": "VE", + "alpha3": "VEN", + "name": "Venezuela" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffff00", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0414\u0435\u043f\u043e\u0440\u0442\u0438\u0432\u043e \u0422\u0430\u0447\u0438\u0440\u0430" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "time": { + "injuryTime1": 3, + "injuryTime2": 3, + "currentPeriodStartTimestamp": 1717117432 + }, + "changes": { + "changes": ["status.code", "status.description", "status.type"], + "changeTimestamp": 1717120331 + }, + "hasGlobalHighlights": true, + "hasXg": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 12172479, + "awayRedCards": 1, + "crowdsourcingEnabled": false, + "startTimestamp": 1717113600, + "slug": "deportivo-tachira-river-plate", + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, { + "tournament": { + "name": "Copa Libertadores, Group C", + "slug": "copa-libertadores-group-c", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "uniqueTournament": { + "name": "CONMEBOL Libertadores", + "slug": "conmebol-libertadores", + "primaryColorHex": "#573215", + "secondaryColorHex": "#dfaf49", + "category": { + "name": "South America", + "slug": "south-america", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1470, + "country": {}, + "flag": "south-america" + }, + "userCount": 265872, + "crowdsourcingEnabled": false, + "hasPerformanceGraphFeature": false, + "id": 384, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false + }, + "priority": 587, + "isGroup": true, + "groupName": "Group 3", + "isLive": false, + "id": 2930 + }, + "season": { + "name": "Copa Libertadores 2024", + "year": "2024", + "editor": false, + "id": 57296 + }, + "roundInfo": { + "round": 4 + }, + "customId": "onbsBtc", + "status": { + "code": 31, + "description": "Halftime", + "type": "inprogress" + }, + "homeTeam": { + "name": "Huachipato", + "slug": "huachipato", + "shortName": "Huachipato", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 10332, + "nameCode": "HUA", + "national": false, + "type": 0, + "id": 3164, + "country": { + "alpha2": "CL", + "alpha3": "CHL", + "name": "Chile" + }, + "subTeams": [], + "teamColors": { + "primary": "#000066", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0647\u0648\u0627\u062a\u0634\u064a\u0628\u0627\u062a\u0648", + "ru": "\u0425\u0443\u0430\u0447\u0438\u043f\u0430\u0442\u043e" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Gr\u00eamio", + "slug": "gremio", + "shortName": "Gr\u00eamio", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 180940, + "nameCode": "GPA", + "disabled": false, + "national": false, + "type": 0, + "id": 5926, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#3399ff", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1 + }, + "time": { + "injuryTime1": 2, + "currentPeriodStartTimestamp": 1717548620 + }, + "changes": { + "changes": ["time.currentPeriodStart", "status.code", "status.description", "homeScore.period1", "awayScore.period1"], + "changeTimestamp": 1717548623 + }, + "hasGlobalHighlights": false, + "crowdsourcingDataDisplayEnabled": false, + "id": 12350573, + "crowdsourcingEnabled": false, + "startTimestamp": 1717545600, + "slug": "gremio-huachipato", + "finalResultOnly": false, + "feedLocked": false, + "isEditor": false + }], + "hasNextPage": true +} diff --git a/test/testdata/time1.json b/test/testdata/time1.json new file mode 100644 index 0000000..f909243 --- /dev/null +++ b/test/testdata/time1.json @@ -0,0 +1,6455 @@ +{ + "events": [ + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group F", + "slug": "fifa-club-world-cup-group-f", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 768, + "isGroup": true, + "groupName": "Group F", + "id": 142884, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 F", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u092b", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u09ab" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "dddspdd", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Ulsan HD", + "slug": "ulsan-hd", + "shortName": "Ulsan", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 31677, + "nameCode": "UHD", + "disabled": false, + "national": false, + "type": 0, + "id": 7653, + "country": { + "alpha2": "KR", + "alpha3": "KOR", + "name": "South Korea", + "slug": "south-korea" + }, + "subTeams": [], + "teamColors": { + "primary": "#0066ff", + "secondary": "#0066ff", + "text": "#0066ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0423\u043b\u0441\u0430\u043d \u0425\u044e\u043d\u0434\u0430\u0439" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0644\u0633\u0627\u0646" + } + } + }, + "awayTeam": { + "name": "Mamelodi Sundowns", + "slug": "mamelodi-sundowns", + "shortName": "Sundowns", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 192657, + "nameCode": "MAM", + "disabled": false, + "national": false, + "type": 0, + "id": 7665, + "country": { + "alpha2": "ZA", + "alpha3": "ZAF", + "name": "South Africa", + "slug": "south-africa" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffe000", + "secondary": "#008100", + "text": "#008100" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u0627\u0645\u064a\u0644\u0648\u062f\u064a \u0633\u0627\u0646\u062f\u0627\u0648\u0646\u0632", + "ru": "\u041c\u0430\u043c\u0435\u043b\u043e\u0434\u0438 \u0421\u0430\u043d\u0434\u0430\u0443\u043d\u0441", + "hi": "\u092e\u093e\u092e\u0947\u0932\u094b\u0921\u0940 \u0938\u0928\u0921\u093e\u0909\u0928\u094d\u0938" + }, + "shortNameTranslation": { + "ar": "\u0635\u0646\u062f\u0627\u0648\u0646\u0632" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "coverage": -1, + "time": { + "injuryTime1": 3, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1750205496 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750208506 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200289, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "mamelodi-sundowns-ulsan-hd", + "startTimestamp": 1750197600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": false, + "tournament": { + "name": "FIFA Club World Cup, Group E", + "slug": "fifa-club-world-cup-group-e", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 769, + "isGroup": true, + "groupName": "Group E", + "id": 142883, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 E", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0908", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u0987" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "HNsXdb", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "CF Monterrey", + "slug": "cf-monterrey", + "shortName": "Monterrey", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 77103, + "nameCode": "MTY", + "disabled": false, + "national": false, + "type": 0, + "id": 1932, + "country": { + "alpha2": "MX", + "alpha3": "MEX", + "name": "Mexico", + "slug": "mexico" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u0648\u0646\u062a\u064a\u0631\u064a", + "ru": "\u041a\u0424 \u041c\u043e\u043d\u0442\u0435\u0440\u0440\u0435\u0439", + "hi": "\u0938\u0940\u090d\u095e \u092e\u094b\u0928\u094d\u091f\u0947\u0930\u0947" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Inter", + "slug": "inter", + "shortName": "Inter", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1880503, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "id": 2697, + "country": { + "alpha2": "IT", + "alpha3": "ITA", + "name": "Italy", + "slug": "italy" + }, + "subTeams": [], + "teamColors": { + "primary": "#1a57cc", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0646\u062a\u0631", + "ru": "\u0418\u043d\u0442\u0435\u0440", + "hi": "\u0907\u0902\u091f\u0930", + "bn": "\u0987\u09a8\u09cd\u099f\u09be\u09b0" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "coverage": -1, + "time": { + "injuryTime1": 4, + "injuryTime2": 6, + "currentPeriodStartTimestamp": 1750212459 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750215533 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200253, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "inter-cf-monterrey", + "startTimestamp": 1750208400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group G", + "slug": "fifa-club-world-cup-group-g", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 767, + "isGroup": true, + "groupName": "Group G", + "id": 142885, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 G", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u091c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u099c\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "rstAo", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Manchester City", + "slug": "manchester-city", + "shortName": "Man City", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 3033046, + "nameCode": "MCI", + "disabled": false, + "national": false, + "type": 0, + "id": 17, + "country": { + "alpha2": "EN", + "alpha3": "ENG", + "name": "England", + "slug": "england" + }, + "subTeams": [], + "teamColors": { + "primary": "#66ccff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u0633\u064a\u062a\u064a", + "ru": "\u041c\u0430\u043d\u0447\u0435\u0441\u0442\u0435\u0440 \u0421\u0438\u0442\u0438", + "hi": "\u092e\u0947\u0928\u091a\u0947\u0938\u094d\u091f\u0930 \u0938\u093f\u091f\u0940 \u090d\u095e\u0938\u0940" + }, + "shortNameTranslation": { + "ar": "\u0645\u0627\u0646 \u0633\u064a\u062a\u064a", + "hi": "\u092e\u0948\u0928 \u0938\u093f\u091f\u0940", + "bn": "\u09ae\u09cd\u09af\u09be\u09a8 \u09b8\u09bf\u099f\u09bf" + } + } + }, + "awayTeam": { + "name": "Wydad Casablanca", + "slug": "wydad-casablanca", + "shortName": "WAC", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 158391, + "nameCode": "WCA", + "disabled": false, + "national": false, + "type": 0, + "id": 36268, + "country": { + "alpha2": "MA", + "alpha3": "MAR", + "name": "Morocco", + "slug": "morocco" + }, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0646\u0627\u062f\u064a \u0627\u0644\u0648\u062f\u0627\u062f \u0627\u0644\u0631\u064a\u0627\u0636\u064a", + "ru": "\u0412\u0438\u0434\u0430\u0434 \u0410\u041a" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "coverage": -1, + "time": { + "injuryTime1": 3, + "injuryTime2": 6, + "currentPeriodStartTimestamp": 1750266497 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750269569 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200275, + "homeRedCards": 1, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "wydad-casablanca-manchester-city", + "startTimestamp": 1750262400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": false, + "tournament": { + "name": "FIFA Club World Cup, Group H", + "slug": "fifa-club-world-cup-group-h", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 766, + "isGroup": true, + "groupName": "Group H", + "id": 142886, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 H", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u091a", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u0987\u099a" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "EgbsVMi", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Real Madrid", + "slug": "real-madrid", + "shortName": "Real Madrid", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 5246857, + "nameCode": "RMA", + "disabled": false, + "national": false, + "type": 0, + "id": 2829, + "country": { + "alpha2": "ES", + "alpha3": "ESP", + "name": "Spain", + "slug": "spain" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#004996", + "text": "#004996" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f", + "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434", + "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921", + "bn": "\u09b0\u09bf\u09af\u09bc\u09be\u09b2 \u09ae\u09be\u09a6\u09cd\u09b0\u09bf\u09a6" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Al-Hilal", + "slug": "al-hilal", + "shortName": "Al-Hilal", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 894682, + "nameCode": "ALH", + "disabled": false, + "national": false, + "type": 0, + "id": 21895, + "country": { + "alpha2": "SA", + "alpha3": "SAU", + "name": "Saudi Arabia", + "slug": "saudi-arabia" + }, + "subTeams": [], + "teamColors": { + "primary": "#0080ff", + "secondary": "#0080ff", + "text": "#0080ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0647\u0644\u0627\u0644", + "ru": "\u0410\u043b\u044c-\u0425\u0438\u043b\u0430\u043b (\u041a\u0421\u0410)", + "hi": "\u0905\u0932-\u0939\u093f\u0932\u093e\u0932", + "bn": "\u0986\u09b2-\u09b9\u09bf\u09b2\u09be\u09b2" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "coverage": -1, + "time": { + "injuryTime1": 5, + "injuryTime2": 7, + "currentPeriodStartTimestamp": 1750277549 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750280827 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200270, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "al-hilal-real-madrid", + "startTimestamp": 1750273200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group H", + "slug": "fifa-club-world-cup-group-h", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 766, + "isGroup": true, + "groupName": "Group H", + "id": 142886, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 H", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u091a", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u0987\u099a" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "LNsWP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "CF Pachuca", + "slug": "cf-pachuca", + "shortName": "Pachuca", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 59464, + "nameCode": "PAC", + "disabled": false, + "national": false, + "type": 0, + "id": 1936, + "country": { + "alpha2": "MX", + "alpha3": "MEX", + "name": "Mexico", + "slug": "mexico" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#008bce", + "text": "#008bce" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a \u0625\u0641 \u0628\u0627\u0634\u0643\u0627", + "ru": "\u041a\u0424 \u041f\u0430\u0447\u0443\u043a\u0430", + "hi": "\u0938\u0940\u090d\u095e \u092a\u093e\u091a\u0941\u0915\u093e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u062a\u0634\u0648\u0643\u0627" + } + } + }, + "awayTeam": { + "name": "Red Bull Salzburg", + "slug": "red-bull-salzburg", + "shortName": "RB Salzburg", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 242610, + "nameCode": "RBS", + "disabled": false, + "national": false, + "type": 0, + "id": 2046, + "country": { + "alpha2": "AT", + "alpha3": "AUT", + "name": "Austria", + "slug": "austria" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0420\u0411 \u0417\u0430\u043b\u044c\u0446\u0431\u0443\u0440\u0433" + }, + "shortNameTranslation": { + "ar": "\u0622\u0631 \u0628\u064a \u0633\u0627\u0644\u0632\u0628\u0648\u0631\u062c", + "hi": "\u0906\u0930\u092c\u0940 \u0938\u093e\u0932\u094d\u091c\u093c\u092c\u0930\u094d\u0917", + "bn": "\u0986\u09b0\u09ac\u09bf \u09b8\u09be\u09b2\u099c\u09ac\u09be\u09b0\u09cd\u0997" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "coverage": -1, + "time": { + "injuryTime1": 1, + "injuryTime2": 3, + "currentPeriodStartTimestamp": 1750287779 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750296599 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200296, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "red-bull-salzburg-cf-pachuca", + "startTimestamp": 1750284000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group G", + "slug": "fifa-club-world-cup-group-g", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 767, + "isGroup": true, + "groupName": "Group G", + "id": 142885, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 G", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u091c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u099c\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 1 + }, + "customId": "MdbsHQo", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Al-Ain", + "slug": "al-ain", + "shortName": "Al-Ain", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 69147, + "nameCode": "AIN", + "disabled": false, + "national": false, + "type": 0, + "id": 37082, + "country": { + "alpha2": "AE", + "alpha3": "ARE", + "name": "United Arab Emirates", + "slug": "united-arab-emirates" + }, + "subTeams": [], + "teamColors": { + "primary": "#020c7d", + "secondary": "#07017e", + "text": "#07017e" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u043b\u044c-\u0410\u0439\u043d" + }, + "shortNameTranslation": { + "ar": "\u0627\u0644\u0639\u064a\u0646" + } + } + }, + "awayTeam": { + "name": "Juventus", + "slug": "juventus", + "shortName": "Juventus", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1615448, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "id": 2687, + "country": { + "alpha2": "IT", + "alpha3": "ITA", + "name": "Italy", + "slug": "italy" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u064a\u0648\u0641\u0646\u062a\u0648\u0633", + "ru": "\u042e\u0432\u0435\u043d\u0442\u0443\u0441", + "hi": "\u091c\u0941\u0935\u0947\u0902\u091f\u0938", + "bn": "\u099c\u09c1\u09ad\u09c7\u09a8\u09cd\u099f\u09be\u09b8" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 5, + "display": 5, + "period1": 4, + "period2": 1, + "normaltime": 5 + }, + "coverage": -1, + "time": { + "injuryTime1": 5, + "injuryTime2": 3, + "currentPeriodStartTimestamp": 1750299060 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750301953 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200293, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "al-ain-juventus", + "startTimestamp": 1750294800, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": false, + "tournament": { + "name": "FIFA Club World Cup, Group A", + "slug": "fifa-club-world-cup-group-a", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 773, + "isGroup": true, + "groupName": "Group A", + "id": 142879, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 A", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "nOskNc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 574811, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "id": 1963, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u0631\u0627\u0633" + } + } + }, + "awayTeam": { + "name": "Al Ahly FC", + "slug": "al-ahly-fc", + "shortName": "Al Ahly", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 561363, + "nameCode": "AAF", + "disabled": false, + "national": false, + "type": 0, + "id": 6910, + "country": { + "alpha2": "EG", + "alpha3": "EGY", + "name": "Egypt", + "slug": "egypt" + }, + "subTeams": [], + "teamColors": { + "primary": "#cc0000", + "secondary": "#990000", + "text": "#990000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u043b\u044c \u0410\u0445\u043b\u0438" + }, + "shortNameTranslation": { + "ar": "\u0627\u0644\u0623\u0647\u0644\u064a" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "coverage": -1, + "time": { + "injuryTime1": 6, + "injuryTime2": 6, + "currentPeriodStartTimestamp": 1750353004 + }, + "changes": { + "changes": [ + "time.currentPeriodStart" + ], + "changeTimestamp": 1750359157 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200240, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "al-ahly-fc-palmeiras", + "startTimestamp": 1750348800, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group A", + "slug": "fifa-club-world-cup-group-a", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 773, + "isGroup": true, + "groupName": "Group A", + "id": 142879, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 A", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "ckbsccKc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Inter Miami CF", + "slug": "inter-miami-cf", + "shortName": "Inter Miami", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1368637, + "nameCode": "IMC", + "disabled": false, + "national": false, + "type": 0, + "id": 337602, + "country": { + "alpha2": "US", + "alpha3": "USA", + "name": "USA", + "slug": "usa" + }, + "subTeams": [], + "teamColors": { + "primary": "#212322", + "secondary": "#f6b5cc", + "text": "#f6b5cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631 \u0645\u064a\u0627\u0645\u064a", + "ru": "\u0418\u043d\u0442\u0435\u0440 \u041c\u0430\u0439\u0430\u043c\u0438", + "hi": "\u0907\u0902\u091f\u0930 \u092e\u093f\u0906\u092e\u093f \u0938\u0940\u090d\u095e" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "FC Porto", + "slug": "fc-porto", + "shortName": "Porto", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 764359, + "nameCode": "FPO", + "disabled": false, + "national": false, + "type": 0, + "id": 3002, + "country": { + "alpha2": "PT", + "alpha3": "PRT", + "name": "Portugal", + "slug": "portugal" + }, + "subTeams": [], + "teamColors": { + "primary": "#194f93", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0641 \u0633\u064a \u0628\u0648\u0631\u062a\u0648", + "ru": "\u041f\u043e\u0440\u0442\u0443", + "hi": "\u090d\u095e\u0938\u0940 \u092a\u094b\u0930\u094d\u091f\u094b" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u0631\u062a\u0648", + "hi": "\u092a\u094b\u0930\u094d\u0924\u094b", + "bn": "\u09aa\u09cb\u09b0\u09cd\u09a4\u09cb" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "coverage": -1, + "time": { + "injuryTime1": 2, + "injuryTime2": 7, + "currentPeriodStartTimestamp": 1750363680 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750366820 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200219, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "inter-miami-cf-fc-porto", + "startTimestamp": 1750359600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group B", + "slug": "fifa-club-world-cup-group-b", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 772, + "isGroup": true, + "groupName": "Group B", + "id": 142880, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 B", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u092c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09ac\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "LgbsjPi", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Seattle Sounders FC", + "slug": "seattle-sounders-fc", + "shortName": "Seattle", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 28231, + "nameCode": "SSF", + "disabled": false, + "national": false, + "type": 0, + "id": 22009, + "country": { + "alpha2": "US", + "alpha3": "USA", + "name": "USA", + "slug": "usa" + }, + "subTeams": [], + "teamColors": { + "primary": "#33cc00", + "secondary": "#0066ff", + "text": "#0066ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0421\u0438\u044d\u0442\u043b \u0421\u0430\u0443\u043d\u0434\u0435\u0440\u0441" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u062a\u0644" + } + } + }, + "awayTeam": { + "name": "Atl\u00e9tico Madrid", + "slug": "atletico-madrid", + "shortName": "Atl. Madrid", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1656571, + "nameCode": "AMA", + "disabled": false, + "national": false, + "type": 0, + "id": 2836, + "country": { + "alpha2": "ES", + "alpha3": "ESP", + "name": "Spain", + "slug": "spain" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#c40000", + "text": "#c40000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434", + "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921" + }, + "shortNameTranslation": { + "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f", + "bn": "\u098f\u099f\u09bf\u098f\u09b2. \u09ae\u09be\u09a6\u09cd\u09b0\u09bf\u09a6" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 3, + "display": 3, + "period1": 1, + "period2": 2, + "normaltime": 3 + }, + "coverage": -1, + "time": { + "injuryTime1": 3, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1750374266 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750377273 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200222, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "seattle-sounders-fc-atletico-madrid", + "startTimestamp": 1750370400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": false, + "tournament": { + "name": "FIFA Club World Cup, Group B", + "slug": "fifa-club-world-cup-group-b", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 772, + "isGroup": true, + "groupName": "Group B", + "id": 142880, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 B", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u092c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09ac\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "UHsiO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Paris Saint-Germain", + "slug": "paris-saint-germain", + "shortName": "PSG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2270349, + "nameCode": "PSG", + "disabled": false, + "national": false, + "type": 0, + "id": 1644, + "country": { + "alpha2": "FR", + "alpha3": "FRA", + "name": "France", + "slug": "france" + }, + "subTeams": [], + "teamColors": { + "primary": "#000066", + "secondary": "#ff1541", + "text": "#ff1541" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0631\u064a\u0633 \u0633\u0627\u0646 \u062c\u064a\u0631\u0645\u0627\u0646", + "ru": "\u041f\u0430\u0440\u0438 \u0421\u0435\u043d-\u0416\u0435\u0440\u043c\u0435\u043d", + "hi": "\u092a\u0947\u0930\u093f\u0938 \u0938\u093e\u0901 \u091c\u0947\u0930\u094d\u092e\u093e\u0903" + }, + "shortNameTranslation": { + "hi": "\u092a\u0940\u090f\u0938\u091c\u0940", + "bn": "\u09aa\u09bf\u098f\u09b8\u099c\u09bf" + } + } + }, + "awayTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 335340, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "coverage": -1, + "time": { + "injuryTime1": 6, + "injuryTime2": 6, + "currentPeriodStartTimestamp": 1750385379 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750388479 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200235, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "botafogo-paris-saint-germain", + "startTimestamp": 1750381200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group C", + "slug": "fifa-club-world-cup-group-c", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 771, + "isGroup": true, + "groupName": "Group C", + "id": 142881, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 C", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0938\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09b8\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "gkbsjNc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Benfica", + "slug": "benfica", + "shortName": "Benfica", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 895936, + "nameCode": "BEN", + "disabled": false, + "national": false, + "type": 0, + "id": 3006, + "country": { + "alpha2": "PT", + "alpha3": "PRT", + "name": "Portugal", + "slug": "portugal" + }, + "subTeams": [], + "teamColors": { + "primary": "#cc0000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0646\u0641\u064a\u0643\u0627", + "ru": "\u0411\u0435\u043d\u0444\u0438\u043a\u0430", + "hi": "\u092c\u0947\u0928\u092b\u093f\u0915\u093e", + "bn": "\u09ac\u09c7\u09a8\u09ab\u09bf\u0995\u09be" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Auckland City", + "slug": "auckland-city", + "shortName": "Auckland City", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 22376, + "nameCode": "ACI", + "disabled": false, + "national": false, + "type": 0, + "id": 6909, + "country": { + "alpha2": "NZ", + "alpha3": "NZL", + "name": "New Zealand", + "slug": "new-zealand" + }, + "subTeams": [], + "teamColors": { + "primary": "#000033", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041e\u043a\u043b\u0435\u043d\u0434 \u0421\u0438\u0442\u0438" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0643\u0644\u0627\u0646\u062f \u0633\u064a\u062a\u064a" + } + } + }, + "homeScore": { + "current": 6, + "display": 6, + "period1": 1, + "period2": 5, + "normaltime": 6 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "coverage": -1, + "time": { + "periodLength": 2700, + "overtimeLength": 900, + "totalPeriodCount": 2, + "injuryTime1": 4, + "injuryTime2": 4, + "currentPeriodStartTimestamp": 1750447217 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type", + "homeScore.period2", + "homeScore.normaltime" + ], + "changeTimestamp": 1750450411 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200280, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "auckland-city-benfica", + "startTimestamp": 1750435200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group D", + "slug": "fifa-club-world-cup-group-d", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 770, + "isGroup": true, + "groupName": "Group D", + "id": 142882, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 D", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0921\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09a1\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "NsGuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 848919, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "Chelsea", + "slug": "chelsea", + "shortName": "Chelsea", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2311098, + "nameCode": "CHE", + "disabled": false, + "national": false, + "type": 0, + "id": 38, + "country": { + "alpha2": "EN", + "alpha3": "ENG", + "name": "England", + "slug": "england" + }, + "subTeams": [], + "teamColors": { + "primary": "#0310a7", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062a\u0634\u064a\u0644\u0633\u064a", + "ru": "\u0427\u0435\u043b\u0441\u0438", + "hi": "\u091a\u0947\u0932\u094d\u0938\u0940", + "bn": "\u099a\u09c7\u09b2\u09b8\u09bf" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 0, + "period2": 3, + "normaltime": 3 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "coverage": -1, + "time": { + "injuryTime1": 3, + "injuryTime2": 7, + "currentPeriodStartTimestamp": 1750446516 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750449651 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200225, + "awayRedCards": 1, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "flamengo-chelsea", + "startTimestamp": 1750442400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": false, + "tournament": { + "name": "FIFA Club World Cup, Group D", + "slug": "fifa-club-world-cup-group-d", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 770, + "isGroup": true, + "groupName": "Group D", + "id": 142882, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 D", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0921\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09a1\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "DRysaTjc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Los Angeles FC", + "slug": "los-angeles-fc", + "shortName": "Los Angeles", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 62214, + "nameCode": "LAF", + "disabled": false, + "national": false, + "type": 0, + "id": 274650, + "country": { + "alpha2": "US", + "alpha3": "USA", + "name": "USA", + "slug": "usa" + }, + "subTeams": [], + "teamColors": { + "primary": "#303030", + "secondary": "#c39e69", + "text": "#c39e69" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0646\u0627\u062f\u064a \u0644\u0648\u0633 \u0623\u0646\u062c\u0644\u0648\u0633", + "ru": "\u041b\u043e\u0441-\u0410\u043d\u0434\u0436\u0435\u043b\u0435\u0441 \u0424\u041a", + "hi": "\u0932\u0949\u0938 \u090f\u0902\u091c\u0947\u0932\u0947\u0938 \u090d\u095e\u0938\u0940" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Esp\u00e9rance Tunis", + "slug": "esperance-tunis", + "shortName": "Esp\u00e9rance", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 113710, + "nameCode": "ETU", + "disabled": false, + "national": false, + "type": 0, + "id": 59628, + "country": { + "alpha2": "TN", + "alpha3": "TUN", + "name": "Tunisia", + "slug": "tunisia" + }, + "subTeams": [], + "teamColors": { + "primary": "#ede664", + "secondary": "#e04f5b", + "text": "#e04f5b" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u042d\u0441\u043f\u0435\u0440\u0430\u043d\u0441 \u0421\u043f\u043e\u0440\u0442\u0438\u0432" + }, + "shortNameTranslation": { + "ar": "\u0627\u0644\u062a\u0631\u062c\u064a", + "hi": "\u090f\u0938\u094d\u092a\u0947\u0930\u093e\u0902\u0938", + "bn": "\u098f\u09b8\u09cd\u09aa\u09c7\u09b0\u09c7\u09a8\u09cd\u09b8" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "time": { + "injuryTime1": 2, + "injuryTime2": 8, + "currentPeriodStartTimestamp": 1750460763 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750464201 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13905341, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "winner-of-qualification-playoffs-esperance-tunis", + "startTimestamp": 1750456800, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group C", + "slug": "fifa-club-world-cup-group-c", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 771, + "isGroup": true, + "groupName": "Group C", + "id": 142881, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 C", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0938\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09b8\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "xdbscob", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "FC Bayern M\u00fcnchen", + "slug": "fc-bayern-munchen", + "shortName": "Bayern", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2178090, + "nameCode": "FBM", + "disabled": false, + "national": false, + "type": 0, + "id": 2672, + "country": { + "alpha2": "DE", + "alpha3": "DEU", + "name": "Germany", + "slug": "germany" + }, + "subTeams": [], + "teamColors": { + "primary": "#cf142f", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0411\u0430\u0432\u0430\u0440\u0438\u044f \u041c\u044e\u043d\u0445\u0435\u043d" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u064a\u0631\u0646", + "hi": "\u092c\u093e\u092f\u0930\u094d\u0928", + "bn": "\u09ac\u09be\u09af\u09bc\u09be\u09b0\u09cd\u09a8" + } + } + }, + "awayTeam": { + "name": "Boca Juniors", + "slug": "boca-juniors", + "shortName": "Boca Juniors", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 301671, + "nameCode": "BJU", + "disabled": false, + "national": false, + "type": 0, + "id": 3202, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina", + "slug": "argentina" + }, + "subTeams": [], + "teamColors": { + "primary": "#003399", + "secondary": "#ffcc66", + "text": "#ffcc66" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u0643\u0627 \u062c\u0648\u0646\u064a\u0648\u0631\u0632", + "ru": "\u0411\u043e\u043a\u0430 \u0425\u0443\u043d\u0438\u043e\u0440\u0441", + "hi": "\u092c\u094b\u0915\u093e \u091c\u0942\u0928\u093f\u092f\u0930\u094d\u0938" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "coverage": -1, + "time": { + "injuryTime1": 1, + "injuryTime2": 8, + "currentPeriodStartTimestamp": 1750471621 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750474810 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200245, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "boca-juniors-fc-bayern-munchen", + "startTimestamp": 1750467600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group F", + "slug": "fifa-club-world-cup-group-f", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 768, + "isGroup": true, + "groupName": "Group F", + "id": 142884, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 F", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u092b", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u09ab" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "ydbspdd", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Mamelodi Sundowns", + "slug": "mamelodi-sundowns", + "shortName": "Sundowns", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 192657, + "nameCode": "MAM", + "disabled": false, + "national": false, + "type": 0, + "id": 7665, + "country": { + "alpha2": "ZA", + "alpha3": "ZAF", + "name": "South Africa", + "slug": "south-africa" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffe000", + "secondary": "#008100", + "text": "#008100" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u0627\u0645\u064a\u0644\u0648\u062f\u064a \u0633\u0627\u0646\u062f\u0627\u0648\u0646\u0632", + "ru": "\u041c\u0430\u043c\u0435\u043b\u043e\u0434\u0438 \u0421\u0430\u043d\u0434\u0430\u0443\u043d\u0441", + "hi": "\u092e\u093e\u092e\u0947\u0932\u094b\u0921\u0940 \u0938\u0928\u0921\u093e\u0909\u0928\u094d\u0938" + }, + "shortNameTranslation": { + "ar": "\u0635\u0646\u062f\u0627\u0648\u0646\u0632" + } + } + }, + "awayTeam": { + "name": "Borussia Dortmund", + "slug": "borussia-dortmund", + "shortName": "Dortmund", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1527967, + "nameCode": "BVB", + "disabled": false, + "national": false, + "type": 0, + "id": 2673, + "country": { + "alpha2": "DE", + "alpha3": "DEU", + "name": "Germany", + "slug": "germany" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffe600", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u0631\u0648\u0633\u064a\u0627 \u062f\u0648\u0631\u062a\u0645\u0648\u0646\u062f", + "ru": "\u0411\u043e\u0440\u0443\u0441\u0441\u0438\u044f \u0414\u043e\u0440\u0442\u043c\u0443\u043d\u0434", + "hi": "\u092c\u094b\u0930\u0941\u0938\u094d\u0938\u093f\u092f\u093e \u0921\u0949\u0930\u094d\u091f\u092e\u0941\u0902\u0921" + }, + "shortNameTranslation": { + "ar": "\u062f\u0648\u0631\u062a\u0645\u0648\u0646\u062f", + "hi": "\u0921\u0949\u0930\u094d\u091f\u092e\u0941\u0902\u0921", + "bn": "\u09a1\u09b0\u09cd\u099f\u09ae\u09c1\u09a8\u09cd\u09a1" + } + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 1, + "period2": 2, + "normaltime": 3 + }, + "awayScore": { + "current": 4, + "display": 4, + "period1": 3, + "period2": 1, + "normaltime": 4 + }, + "coverage": -1, + "time": { + "injuryTime1": 3, + "injuryTime2": 6, + "currentPeriodStartTimestamp": 1750525478 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750528579 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200290, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "mamelodi-sundowns-borussia-dortmund", + "startTimestamp": 1750521600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group E", + "slug": "fifa-club-world-cup-group-e", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 769, + "isGroup": true, + "groupName": "Group E", + "id": 142883, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 E", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0908", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u0987" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "XdbsVmb", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Inter", + "slug": "inter", + "shortName": "Inter", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1880503, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "id": 2697, + "country": { + "alpha2": "IT", + "alpha3": "ITA", + "name": "Italy", + "slug": "italy" + }, + "subTeams": [], + "teamColors": { + "primary": "#1a57cc", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0646\u062a\u0631", + "ru": "\u0418\u043d\u0442\u0435\u0440", + "hi": "\u0907\u0902\u091f\u0930", + "bn": "\u0987\u09a8\u09cd\u099f\u09be\u09b0" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Urawa Red Diamonds", + "slug": "urawa-red-diamonds", + "shortName": "Urawa Reds", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 24448, + "nameCode": "URD", + "disabled": false, + "national": false, + "type": 0, + "id": 3145, + "country": { + "alpha2": "JP", + "alpha3": "JPN", + "name": "Japan", + "slug": "japan" + }, + "subTeams": [], + "teamColors": { + "primary": "#cc0033", + "secondary": "#cc0033", + "text": "#cc0033" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0648\u0631\u0627\u0648\u0627 \u0631\u064a\u062f \u062f\u064a\u0627\u0645\u0648\u0646\u062f\u0632", + "ru": "\u0423\u0440\u0430\u0432\u0430 \u0420\u0435\u0434 \u0414\u0430\u0439\u043c\u043e\u043d\u0434\u0441", + "hi": "\u0909\u0930\u093e\u0935\u093e \u0930\u0947\u0921 \u0921\u093e\u092f\u092e\u0902\u0921\u094d\u0938" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0631\u0627\u0648\u0627 \u0631\u064a\u062f\u0632" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "coverage": -1, + "time": { + "injuryTime1": 2, + "injuryTime2": 4, + "currentPeriodStartTimestamp": 1750536257 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type", + "homeScore.period2", + "homeScore.normaltime" + ], + "changeTimestamp": 1750539240 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200287, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "urawa-red-diamonds-inter", + "startTimestamp": 1750532400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group F", + "slug": "fifa-club-world-cup-group-f", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 768, + "isGroup": true, + "groupName": "Group F", + "id": 142884, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 F", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u092b", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u09ab" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "lOsddd", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 318954, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "awayTeam": { + "name": "Ulsan HD", + "slug": "ulsan-hd", + "shortName": "Ulsan", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 31677, + "nameCode": "UHD", + "disabled": false, + "national": false, + "type": 0, + "id": 7653, + "country": { + "alpha2": "KR", + "alpha3": "KOR", + "name": "South Korea", + "slug": "south-korea" + }, + "subTeams": [], + "teamColors": { + "primary": "#0066ff", + "secondary": "#0066ff", + "text": "#0066ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0423\u043b\u0441\u0430\u043d \u0425\u044e\u043d\u0434\u0430\u0439" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0644\u0633\u0627\u0646" + } + } + }, + "homeScore": { + "current": 4, + "display": 4, + "period1": 1, + "period2": 3, + "normaltime": 4 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "coverage": -1, + "time": { + "injuryTime1": 3, + "injuryTime2": 7, + "currentPeriodStartTimestamp": 1750547059 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750550220 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200261, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "ulsan-hd-fluminense", + "startTimestamp": 1750543200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": false, + "tournament": { + "name": "FIFA Club World Cup, Group E", + "slug": "fifa-club-world-cup-group-e", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 769, + "isGroup": true, + "groupName": "Group E", + "id": 142883, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 E", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0908", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u0987" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "HNslob", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "River Plate", + "slug": "river-plate", + "shortName": "River Plate", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 281941, + "nameCode": "RPL", + "disabled": false, + "national": false, + "type": 0, + "id": 3211, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina", + "slug": "argentina" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0420\u0438\u0432\u0435\u0440 \u041f\u043b\u0435\u0439\u0442", + "bn": "\u09b0\u09bf\u09ad\u09be\u09b0 \u09aa\u09cd\u09b2\u09c7\u099f" + }, + "shortNameTranslation": { + "ar": "\u0631\u064a\u0641\u0631 \u0628\u0644\u064a\u062a", + "hi": "\u0930\u093f\u0935\u0930" + } + } + }, + "awayTeam": { + "name": "CF Monterrey", + "slug": "cf-monterrey", + "shortName": "Monterrey", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 77103, + "nameCode": "MTY", + "disabled": false, + "national": false, + "type": 0, + "id": 1932, + "country": { + "alpha2": "MX", + "alpha3": "MEX", + "name": "Mexico", + "slug": "mexico" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u0648\u0646\u062a\u064a\u0631\u064a", + "ru": "\u041a\u0424 \u041c\u043e\u043d\u0442\u0435\u0440\u0440\u0435\u0439", + "hi": "\u0938\u0940\u090d\u095e \u092e\u094b\u0928\u094d\u091f\u0947\u0930\u0947" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "coverage": -1, + "time": { + "injuryTime1": 4, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1750558152 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750561170 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200256, + "homeRedCards": 1, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "river-plate-cf-monterrey", + "startTimestamp": 1750554000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group G", + "slug": "fifa-club-world-cup-group-g", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 767, + "isGroup": true, + "groupName": "Group G", + "id": 142885, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 G", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u091c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u099c\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "MdbstAo", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Juventus", + "slug": "juventus", + "shortName": "Juventus", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1615448, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "id": 2687, + "country": { + "alpha2": "IT", + "alpha3": "ITA", + "name": "Italy", + "slug": "italy" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u064a\u0648\u0641\u0646\u062a\u0648\u0633", + "ru": "\u042e\u0432\u0435\u043d\u0442\u0443\u0441", + "hi": "\u091c\u0941\u0935\u0947\u0902\u091f\u0938", + "bn": "\u099c\u09c1\u09ad\u09c7\u09a8\u09cd\u099f\u09be\u09b8" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Wydad Casablanca", + "slug": "wydad-casablanca", + "shortName": "WAC", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 158391, + "nameCode": "WCA", + "disabled": false, + "national": false, + "type": 0, + "id": 36268, + "country": { + "alpha2": "MA", + "alpha3": "MAR", + "name": "Morocco", + "slug": "morocco" + }, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0646\u0627\u062f\u064a \u0627\u0644\u0648\u062f\u0627\u062f \u0627\u0644\u0631\u064a\u0627\u0636\u064a", + "ru": "\u0412\u0438\u0434\u0430\u0434 \u0410\u041a" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 4, + "display": 4, + "period1": 2, + "period2": 2, + "normaltime": 4 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "coverage": -1, + "time": { + "injuryTime1": 5, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1750612108 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type", + "homeScore.period2", + "homeScore.normaltime" + ], + "changeTimestamp": 1750615122 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200276, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "wydad-casablanca-juventus", + "startTimestamp": 1750608000, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group H", + "slug": "fifa-club-world-cup-group-h", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 766, + "isGroup": true, + "groupName": "Group H", + "id": 142886, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 H", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u091a", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u0987\u099a" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "LNsEgb", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Real Madrid", + "slug": "real-madrid", + "shortName": "Real Madrid", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 5246857, + "nameCode": "RMA", + "disabled": false, + "national": false, + "type": 0, + "id": 2829, + "country": { + "alpha2": "ES", + "alpha3": "ESP", + "name": "Spain", + "slug": "spain" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#004996", + "text": "#004996" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f", + "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434", + "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921", + "bn": "\u09b0\u09bf\u09af\u09bc\u09be\u09b2 \u09ae\u09be\u09a6\u09cd\u09b0\u09bf\u09a6" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "CF Pachuca", + "slug": "cf-pachuca", + "shortName": "Pachuca", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 59464, + "nameCode": "PAC", + "disabled": false, + "national": false, + "type": 0, + "id": 1936, + "country": { + "alpha2": "MX", + "alpha3": "MEX", + "name": "Mexico", + "slug": "mexico" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#008bce", + "text": "#008bce" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a \u0625\u0641 \u0628\u0627\u0634\u0643\u0627", + "ru": "\u041a\u0424 \u041f\u0430\u0447\u0443\u043a\u0430", + "hi": "\u0938\u0940\u090d\u095e \u092a\u093e\u091a\u0941\u0915\u093e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u062a\u0634\u0648\u0643\u0627" + } + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 2, + "period2": 1, + "normaltime": 3 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "coverage": -1, + "time": { + "injuryTime1": 4, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1750622911 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750626071 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200297, + "homeRedCards": 1, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "real-madrid-cf-pachuca", + "startTimestamp": 1750618800, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group H", + "slug": "fifa-club-world-cup-group-h", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 766, + "isGroup": true, + "groupName": "Group H", + "id": 142886, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 H", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f\u091a", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f\u0987\u099a" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "WPsVMi", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Red Bull Salzburg", + "slug": "red-bull-salzburg", + "shortName": "RB Salzburg", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 242610, + "nameCode": "RBS", + "disabled": false, + "national": false, + "type": 0, + "id": 2046, + "country": { + "alpha2": "AT", + "alpha3": "AUT", + "name": "Austria", + "slug": "austria" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0420\u0411 \u0417\u0430\u043b\u044c\u0446\u0431\u0443\u0440\u0433" + }, + "shortNameTranslation": { + "ar": "\u0622\u0631 \u0628\u064a \u0633\u0627\u0644\u0632\u0628\u0648\u0631\u062c", + "hi": "\u0906\u0930\u092c\u0940 \u0938\u093e\u0932\u094d\u091c\u093c\u092c\u0930\u094d\u0917", + "bn": "\u0986\u09b0\u09ac\u09bf \u09b8\u09be\u09b2\u099c\u09ac\u09be\u09b0\u09cd\u0997" + } + } + }, + "awayTeam": { + "name": "Al-Hilal", + "slug": "al-hilal", + "shortName": "Al-Hilal", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 894682, + "nameCode": "ALH", + "disabled": false, + "national": false, + "type": 0, + "id": 21895, + "country": { + "alpha2": "SA", + "alpha3": "SAU", + "name": "Saudi Arabia", + "slug": "saudi-arabia" + }, + "subTeams": [], + "teamColors": { + "primary": "#0080ff", + "secondary": "#0080ff", + "text": "#0080ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0647\u0644\u0627\u0644", + "ru": "\u0410\u043b\u044c-\u0425\u0438\u043b\u0430\u043b (\u041a\u0421\u0410)", + "hi": "\u0905\u0932-\u0939\u093f\u0932\u093e\u0932", + "bn": "\u0986\u09b2-\u09b9\u09bf\u09b2\u09be\u09b2" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "coverage": -1, + "time": { + "injuryTime1": 4, + "injuryTime2": 6, + "currentPeriodStartTimestamp": 1750633633 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750636703 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200271, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "al-hilal-red-bull-salzburg", + "startTimestamp": 1750629600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group G", + "slug": "fifa-club-world-cup-group-g", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 767, + "isGroup": true, + "groupName": "Group G", + "id": 142885, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 G", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u091c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u099c\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 2 + }, + "customId": "rsHQo", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Manchester City", + "slug": "manchester-city", + "shortName": "Man City", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 3033046, + "nameCode": "MCI", + "disabled": false, + "national": false, + "type": 0, + "id": 17, + "country": { + "alpha2": "EN", + "alpha3": "ENG", + "name": "England", + "slug": "england" + }, + "subTeams": [], + "teamColors": { + "primary": "#66ccff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u0627\u0646\u0634\u0633\u062a\u0631 \u0633\u064a\u062a\u064a", + "ru": "\u041c\u0430\u043d\u0447\u0435\u0441\u0442\u0435\u0440 \u0421\u0438\u0442\u0438", + "hi": "\u092e\u0947\u0928\u091a\u0947\u0938\u094d\u091f\u0930 \u0938\u093f\u091f\u0940 \u090d\u095e\u0938\u0940" + }, + "shortNameTranslation": { + "ar": "\u0645\u0627\u0646 \u0633\u064a\u062a\u064a", + "hi": "\u092e\u0948\u0928 \u0938\u093f\u091f\u0940", + "bn": "\u09ae\u09cd\u09af\u09be\u09a8 \u09b8\u09bf\u099f\u09bf" + } + } + }, + "awayTeam": { + "name": "Al-Ain", + "slug": "al-ain", + "shortName": "Al-Ain", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 69147, + "nameCode": "AIN", + "disabled": false, + "national": false, + "type": 0, + "id": 37082, + "country": { + "alpha2": "AE", + "alpha3": "ARE", + "name": "United Arab Emirates", + "slug": "united-arab-emirates" + }, + "subTeams": [], + "teamColors": { + "primary": "#020c7d", + "secondary": "#07017e", + "text": "#07017e" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u043b\u044c-\u0410\u0439\u043d" + }, + "shortNameTranslation": { + "ar": "\u0627\u0644\u0639\u064a\u0646" + } + } + }, + "homeScore": { + "current": 6, + "display": 6, + "period1": 3, + "period2": 3, + "normaltime": 6 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "coverage": -1, + "time": { + "injuryTime1": 3, + "injuryTime2": 3, + "currentPeriodStartTimestamp": 1750644487 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750647404 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200294, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "al-ain-manchester-city", + "startTimestamp": 1750640400, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": false, + "tournament": { + "name": "FIFA Club World Cup, Group B", + "slug": "fifa-club-world-cup-group-b", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 772, + "isGroup": true, + "groupName": "Group B", + "id": 142880, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 B", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u092c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09ac\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "iOsLgb", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Atl\u00e9tico Madrid", + "slug": "atletico-madrid", + "shortName": "Atl. Madrid", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1656571, + "nameCode": "AMA", + "disabled": false, + "national": false, + "type": 0, + "id": 2836, + "country": { + "alpha2": "ES", + "alpha3": "ESP", + "name": "Spain", + "slug": "spain" + }, + "subTeams": [], + "teamColors": { + "primary": "#ffffff", + "secondary": "#c40000", + "text": "#c40000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434", + "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921" + }, + "shortNameTranslation": { + "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f", + "bn": "\u098f\u099f\u09bf\u098f\u09b2. \u09ae\u09be\u09a6\u09cd\u09b0\u09bf\u09a6" + } + } + }, + "awayTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 335340, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "coverage": -1, + "time": { + "injuryTime1": 7, + "injuryTime2": 6, + "currentPeriodStartTimestamp": 1750709404 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750712478 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200236, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "atletico-madrid-botafogo", + "startTimestamp": 1750705200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group B", + "slug": "fifa-club-world-cup-group-b", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 772, + "isGroup": true, + "groupName": "Group B", + "id": 142880, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 B", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u092c\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09ac\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "UHsjPi", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Seattle Sounders FC", + "slug": "seattle-sounders-fc", + "shortName": "Seattle", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 28231, + "nameCode": "SSF", + "disabled": false, + "national": false, + "type": 0, + "id": 22009, + "country": { + "alpha2": "US", + "alpha3": "USA", + "name": "USA", + "slug": "usa" + }, + "subTeams": [], + "teamColors": { + "primary": "#33cc00", + "secondary": "#0066ff", + "text": "#0066ff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0421\u0438\u044d\u0442\u043b \u0421\u0430\u0443\u043d\u0434\u0435\u0440\u0441" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u062a\u0644" + } + } + }, + "awayTeam": { + "name": "Paris Saint-Germain", + "slug": "paris-saint-germain", + "shortName": "PSG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2270349, + "nameCode": "PSG", + "disabled": false, + "national": false, + "type": 0, + "id": 1644, + "country": { + "alpha2": "FR", + "alpha3": "FRA", + "name": "France", + "slug": "france" + }, + "subTeams": [], + "teamColors": { + "primary": "#000066", + "secondary": "#ff1541", + "text": "#ff1541" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0631\u064a\u0633 \u0633\u0627\u0646 \u062c\u064a\u0631\u0645\u0627\u0646", + "ru": "\u041f\u0430\u0440\u0438 \u0421\u0435\u043d-\u0416\u0435\u0440\u043c\u0435\u043d", + "hi": "\u092a\u0947\u0930\u093f\u0938 \u0938\u093e\u0901 \u091c\u0947\u0930\u094d\u092e\u093e\u0903" + }, + "shortNameTranslation": { + "hi": "\u092a\u0940\u090f\u0938\u091c\u0940", + "bn": "\u09aa\u09bf\u098f\u09b8\u099c\u09bf" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "coverage": -1, + "time": { + "injuryTime1": 1, + "injuryTime2": 5, + "currentPeriodStartTimestamp": 1750709054 + }, + "changes": { + "changes": [ + "time.injuryTime2", + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750712055 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200223, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "seattle-sounders-fc-paris-saint-germain", + "startTimestamp": 1750705200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": true, + "tournament": { + "name": "FIFA Club World Cup, Group A", + "slug": "fifa-club-world-cup-group-a", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 773, + "isGroup": true, + "groupName": "Group A", + "id": 142879, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 A", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "ckbskNc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "FC Porto", + "slug": "fc-porto", + "shortName": "Porto", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 764359, + "nameCode": "FPO", + "disabled": false, + "national": false, + "type": 0, + "id": 3002, + "country": { + "alpha2": "PT", + "alpha3": "PRT", + "name": "Portugal", + "slug": "portugal" + }, + "subTeams": [], + "teamColors": { + "primary": "#194f93", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0641 \u0633\u064a \u0628\u0648\u0631\u062a\u0648", + "ru": "\u041f\u043e\u0440\u0442\u0443", + "hi": "\u090d\u095e\u0938\u0940 \u092a\u094b\u0930\u094d\u091f\u094b" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u0631\u062a\u0648", + "hi": "\u092a\u094b\u0930\u094d\u0924\u094b", + "bn": "\u09aa\u09cb\u09b0\u09cd\u09a4\u09cb" + } + } + }, + "awayTeam": { + "name": "Al Ahly FC", + "slug": "al-ahly-fc", + "shortName": "Al Ahly", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 561363, + "nameCode": "AAF", + "disabled": false, + "national": false, + "type": 0, + "id": 6910, + "country": { + "alpha2": "EG", + "alpha3": "EGY", + "name": "Egypt", + "slug": "egypt" + }, + "subTeams": [], + "teamColors": { + "primary": "#cc0000", + "secondary": "#990000", + "text": "#990000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0410\u043b\u044c \u0410\u0445\u043b\u0438" + }, + "shortNameTranslation": { + "ar": "\u0627\u0644\u0623\u0647\u0644\u064a" + } + } + }, + "homeScore": { + "current": 4, + "display": 4, + "period1": 1, + "period2": 3, + "normaltime": 4 + }, + "awayScore": { + "current": 4, + "display": 4, + "period1": 2, + "period2": 2, + "normaltime": 4 + }, + "coverage": -1, + "time": { + "injuryTime1": 6, + "injuryTime2": 6, + "currentPeriodStartTimestamp": 1750730985 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750734053 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200242, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "al-ahly-fc-fc-porto", + "startTimestamp": 1750726800, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": false, + "tournament": { + "name": "FIFA Club World Cup, Group A", + "slug": "fifa-club-world-cup-group-a", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 773, + "isGroup": true, + "groupName": "Group A", + "id": 142879, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 A", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u090f", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u098f" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "nOsccKc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Inter Miami CF", + "slug": "inter-miami-cf", + "shortName": "Inter Miami", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 1368637, + "nameCode": "IMC", + "disabled": false, + "national": false, + "type": 0, + "id": 337602, + "country": { + "alpha2": "US", + "alpha3": "USA", + "name": "USA", + "slug": "usa" + }, + "subTeams": [], + "teamColors": { + "primary": "#212322", + "secondary": "#f6b5cc", + "text": "#f6b5cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631 \u0645\u064a\u0627\u0645\u064a", + "ru": "\u0418\u043d\u0442\u0435\u0440 \u041c\u0430\u0439\u0430\u043c\u0438", + "hi": "\u0907\u0902\u091f\u0930 \u092e\u093f\u0906\u092e\u093f \u0938\u0940\u090d\u095e" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 574811, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "id": 1963, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u0631\u0627\u0633" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "coverage": -1, + "time": { + "injuryTime1": 1, + "injuryTime2": 4, + "currentPeriodStartTimestamp": 1750730720 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750733701 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200220, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "inter-miami-cf-palmeiras", + "startTimestamp": 1750726800, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": false, + "tournament": { + "name": "FIFA Club World Cup, Group C", + "slug": "fifa-club-world-cup-group-c", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 771, + "isGroup": true, + "groupName": "Group C", + "id": 142881, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 C", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0938\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09b8\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "cobsjNc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Auckland City", + "slug": "auckland-city", + "shortName": "Auckland City", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 22376, + "nameCode": "ACI", + "disabled": false, + "national": false, + "type": 0, + "id": 6909, + "country": { + "alpha2": "NZ", + "alpha3": "NZL", + "name": "New Zealand", + "slug": "new-zealand" + }, + "subTeams": [], + "teamColors": { + "primary": "#000033", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u041e\u043a\u043b\u0435\u043d\u0434 \u0421\u0438\u0442\u0438" + }, + "shortNameTranslation": { + "ar": "\u0623\u0648\u0643\u0644\u0627\u0646\u062f \u0633\u064a\u062a\u064a" + } + } + }, + "awayTeam": { + "name": "Boca Juniors", + "slug": "boca-juniors", + "shortName": "Boca Juniors", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 301671, + "nameCode": "BJU", + "disabled": false, + "national": false, + "type": 0, + "id": 3202, + "country": { + "alpha2": "AR", + "alpha3": "ARG", + "name": "Argentina", + "slug": "argentina" + }, + "subTeams": [], + "teamColors": { + "primary": "#003399", + "secondary": "#ffcc66", + "text": "#ffcc66" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u0643\u0627 \u062c\u0648\u0646\u064a\u0648\u0631\u0632", + "ru": "\u0411\u043e\u043a\u0430 \u0425\u0443\u043d\u0438\u043e\u0440\u0441", + "hi": "\u092c\u094b\u0915\u093e \u091c\u0942\u0928\u093f\u092f\u0930\u094d\u0938" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "coverage": -1, + "time": { + "injuryTime1": 5, + "injuryTime2": 6, + "currentPeriodStartTimestamp": 1750795746 + }, + "changes": { + "changes": [ + "time.currentPeriodStart" + ], + "changeTimestamp": 1750802182 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200281, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "auckland-city-boca-juniors", + "startTimestamp": 1750791600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "correctAiInsight": false, + "tournament": { + "name": "FIFA Club World Cup, Group C", + "slug": "fifa-club-world-cup-group-c", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 771, + "isGroup": true, + "groupName": "Group C", + "id": 142881, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 C", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0938\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09b8\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "xdbsgkb", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Benfica", + "slug": "benfica", + "shortName": "Benfica", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 895936, + "nameCode": "BEN", + "disabled": false, + "national": false, + "type": 0, + "id": 3006, + "country": { + "alpha2": "PT", + "alpha3": "PRT", + "name": "Portugal", + "slug": "portugal" + }, + "subTeams": [], + "teamColors": { + "primary": "#cc0000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0646\u0641\u064a\u0643\u0627", + "ru": "\u0411\u0435\u043d\u0444\u0438\u043a\u0430", + "hi": "\u092c\u0947\u0928\u092b\u093f\u0915\u093e", + "bn": "\u09ac\u09c7\u09a8\u09ab\u09bf\u0995\u09be" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "FC Bayern M\u00fcnchen", + "slug": "fc-bayern-munchen", + "shortName": "Bayern", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2178090, + "nameCode": "FBM", + "disabled": false, + "national": false, + "type": 0, + "id": 2672, + "country": { + "alpha2": "DE", + "alpha3": "DEU", + "name": "Germany", + "slug": "germany" + }, + "subTeams": [], + "teamColors": { + "primary": "#cf142f", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0411\u0430\u0432\u0430\u0440\u0438\u044f \u041c\u044e\u043d\u0445\u0435\u043d" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u064a\u0631\u0646", + "hi": "\u092c\u093e\u092f\u0930\u094d\u0928", + "bn": "\u09ac\u09be\u09af\u09bc\u09be\u09b0\u09cd\u09a8" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "coverage": -1, + "time": { + "injuryTime1": 4, + "injuryTime2": 8, + "currentPeriodStartTimestamp": 1750795726 + }, + "changes": { + "changes": [ + "status.code", + "status.description", + "status.type" + ], + "changeTimestamp": 1750798927 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200224, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "benfica-fc-bayern-munchen", + "startTimestamp": 1750791600, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group D", + "slug": "fifa-club-world-cup-group-d", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 770, + "isGroup": true, + "groupName": "Group D", + "id": 142882, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 D", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0921\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09a1\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "GucsaTjc", + "status": { + "code": 31, + "description": "Halftime", + "type": "inprogress" + }, + "homeTeam": { + "name": "Los Angeles FC", + "slug": "los-angeles-fc", + "shortName": "Los Angeles", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 62214, + "nameCode": "LAF", + "disabled": false, + "national": false, + "type": 0, + "id": 274650, + "country": { + "alpha2": "US", + "alpha3": "USA", + "name": "USA", + "slug": "usa" + }, + "subTeams": [], + "teamColors": { + "primary": "#303030", + "secondary": "#c39e69", + "text": "#c39e69" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0646\u0627\u062f\u064a \u0644\u0648\u0633 \u0623\u0646\u062c\u0644\u0648\u0633", + "ru": "\u041b\u043e\u0441-\u0410\u043d\u0434\u0436\u0435\u043b\u0435\u0441 \u0424\u041a", + "hi": "\u0932\u0949\u0938 \u090f\u0902\u091c\u0947\u0932\u0947\u0938 \u090d\u095e\u0938\u0940" + }, + "shortNameTranslation": {} + } + }, + "awayTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 848919, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "country": { + "alpha2": "BR", + "alpha3": "BRA", + "name": "Brazil", + "slug": "brazil" + }, + "subTeams": [], + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "normaltime": 0 + }, + "time": { + "injuryTime1": 4, + "currentPeriodStartTimestamp": 1750813321 + }, + "changes": { + "changes": [ + "status.code", + "status.description" + ], + "changeTimestamp": 1750816294 + }, + "hasGlobalHighlights": false, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13905340, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "winner-of-qualification-playoffs-flamengo", + "startTimestamp": 1750813200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + }, + { + "tournament": { + "name": "FIFA Club World Cup, Group D", + "slug": "fifa-club-world-cup-group-d", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "uniqueTournament": { + "name": "FIFA Club World Cup", + "slug": "club-world-championship", + "primaryColorHex": "#8d1536", + "secondaryColorHex": "#0bbda4", + "category": { + "name": "World", + "slug": "world", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 1468, + "country": {}, + "flag": "international", + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u0639\u0627\u0644\u0645", + "hi": "\u0935\u093f\u0936\u094d\u0935", + "bn": "\u09ac\u09bf\u09b6\u09cd\u09ac" + }, + "shortNameTranslation": {} + } + }, + "userCount": 578285, + "hasPerformanceGraphFeature": false, + "id": 357, + "country": {}, + "hasEventPlayerStatistics": true, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629", + "hi": "\u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u091a\u0948\u0902\u092a\u093f\u092f\u0928\u0936\u093f\u092a", + "bn": "\u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1 \u099a\u09cd\u09af\u09be\u09ae\u09cd\u09aa\u09bf\u09af\u09bc\u09a8\u09b6\u09bf\u09aa" + }, + "shortNameTranslation": {} + } + }, + "priority": 770, + "isGroup": true, + "groupName": "Group D", + "id": 142882, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0623\u0633 \u0627\u0644\u0639\u0627\u0644\u0645 \u0644\u0644\u0623\u0646\u062f\u064a\u0629\u060c \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629 D", + "hi": "\u092b\u0940\u092b\u093e \u0915\u094d\u0932\u092c \u0935\u0930\u094d\u0932\u094d\u0921 \u0915\u092a, \u0917\u094d\u0930\u0941\u092a \u0921\u0940", + "bn": "\u09ab\u09bf\u09ab\u09be \u0995\u09cd\u09b2\u09be\u09ac \u0993\u09af\u09bc\u09be\u09b0\u09cd\u09b2\u09cd\u09a1\u0995\u09be\u09aa, \u0997\u09cd\u09b0\u09c1\u09aa \u09a1\u09bf" + }, + "shortNameTranslation": {} + } + }, + "season": { + "name": "FIFA Club World Cup 2025", + "year": "2025", + "editor": false, + "seasonCoverageInfo": {}, + "id": 69619 + }, + "roundInfo": { + "round": 3 + }, + "customId": "NsDRy", + "status": { + "code": 31, + "description": "Halftime", + "type": "inprogress" + }, + "homeTeam": { + "name": "Esp\u00e9rance Tunis", + "slug": "esperance-tunis", + "shortName": "Esp\u00e9rance", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 113710, + "nameCode": "ETU", + "disabled": false, + "national": false, + "type": 0, + "id": 59628, + "country": { + "alpha2": "TN", + "alpha3": "TUN", + "name": "Tunisia", + "slug": "tunisia" + }, + "subTeams": [], + "teamColors": { + "primary": "#ede664", + "secondary": "#e04f5b", + "text": "#e04f5b" + }, + "fieldTranslations": { + "nameTranslation": { + "ru": "\u042d\u0441\u043f\u0435\u0440\u0430\u043d\u0441 \u0421\u043f\u043e\u0440\u0442\u0438\u0432" + }, + "shortNameTranslation": { + "ar": "\u0627\u0644\u062a\u0631\u062c\u064a", + "hi": "\u090f\u0938\u094d\u092a\u0947\u0930\u093e\u0902\u0938", + "bn": "\u098f\u09b8\u09cd\u09aa\u09c7\u09b0\u09c7\u09a8\u09cd\u09b8" + } + } + }, + "awayTeam": { + "name": "Chelsea", + "slug": "chelsea", + "shortName": "Chelsea", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 2311098, + "nameCode": "CHE", + "disabled": false, + "national": false, + "type": 0, + "id": 38, + "country": { + "alpha2": "EN", + "alpha3": "ENG", + "name": "England", + "slug": "england" + }, + "subTeams": [], + "teamColors": { + "primary": "#0310a7", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062a\u0634\u064a\u0644\u0633\u064a", + "ru": "\u0427\u0435\u043b\u0441\u0438", + "hi": "\u091a\u0947\u0932\u094d\u0938\u0940", + "bn": "\u099a\u09c7\u09b2\u09b8\u09bf" + }, + "shortNameTranslation": {} + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 2, + "normaltime": 2 + }, + "coverage": -1, + "time": { + "injuryTime1": 5, + "currentPeriodStartTimestamp": 1750813211 + }, + "changes": { + "changes": [ + "awayScore.period1", + "awayScore.normaltime" + ], + "changeTimestamp": 1750816363 + }, + "hasGlobalHighlights": true, + "hasEventPlayerStatistics": true, + "hasEventPlayerHeatMap": true, + "detailId": 1, + "crowdsourcingDataDisplayEnabled": false, + "id": 13200285, + "varInProgress": { + "homeTeam": false, + "awayTeam": false + }, + "slug": "esperance-tunis-chelsea", + "startTimestamp": 1750813200, + "finalResultOnly": false, + "feedLocked": true, + "isEditor": false + } + ], + "hasNextPage": true +}