File size: 55,448 Bytes
da6403b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 |
{
"timestamp": "1493227800",
"score": "7 - 1",
"round": "34",
"teams": [
"Barcelona",
"Osasuna"
],
"lineup": {
"home": {
"tactic": "1-3-4-3",
"players": [
{
"hash": "Ey0zWJG1",
"name": "Alcacer P.",
"captain": "",
"detail_link": "/player/alcacer-paco/Ey0zWJG1/",
"short_name": "Alcacer",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "64' Alcacer P. (Mascherano J.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "86' Alcacer P. (Suarez D.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Paco Alcacer"
},
{
"hash": "CU4pL3ue",
"name": "Busquets S.",
"captain": "",
"detail_link": "/player/busquets-sergio/CU4pL3ue/",
"short_name": "Busquets",
"shirt_number": "5",
"country": "Spain",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Sergio Busquets"
},
{
"hash": "v9Ux4sua",
"name": "Digne L.",
"captain": "",
"detail_link": "/player/digne-lucas/v9Ux4sua/",
"short_name": "Digne",
"shirt_number": "19",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Lucas Digne"
},
{
"hash": "dIFDILve",
"name": "Gomes A.",
"captain": "",
"detail_link": "/player/gomes-andre/dIFDILve/",
"short_name": "Gomes",
"shirt_number": "21",
"country": "Portugal",
"facts": [
{
"type": "3",
"time": "30' Gomes A. (Rakitic I.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "57' Gomes A.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Andre Gomes"
},
{
"hash": "ns2Bmt54",
"name": "Mascherano J.",
"captain": "",
"detail_link": "/player/mascherano-javier/ns2Bmt54/",
"short_name": "Mascherano",
"shirt_number": "14",
"country": "Argentina",
"facts": [
{
"type": "8",
"time": "64' Alcacer P. (Mascherano J.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Javier Mascherano"
},
{
"hash": "vgOOdZbd",
"name": "Messi L.",
"captain": "(C)",
"detail_link": "/player/messi-lionel/vgOOdZbd/",
"short_name": "Messi",
"shirt_number": "10",
"country": "Argentina",
"facts": [
{
"type": "3",
"time": "12' Messi L.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "61' Messi L. (Rakitic I.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "63'",
"description": "Alena C.",
"linked_player_hash": "vP5uwPQf"
}
],
"lineup": 9,
"starting": true,
"long_name": "Lionel Messi"
},
{
"hash": "fRBrHCRh",
"name": "Pique G.",
"captain": "",
"detail_link": "/player/pique-gerard/fRBrHCRh/",
"short_name": "Pique",
"shirt_number": "3",
"country": "Spain",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Gerard Pique"
},
{
"hash": "pC6dfyG5",
"name": "Rakitic I.",
"captain": "",
"detail_link": "/player/rakitic-ivan/pC6dfyG5/",
"short_name": "Rakitic",
"shirt_number": "4",
"country": "Croatia",
"facts": [
{
"type": "8",
"time": "30' Gomes A. (Rakitic I.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "8",
"time": "61' Messi L. (Rakitic I.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Ivan Rakitic"
},
{
"hash": "xWwucZ71",
"name": "Suarez D.",
"captain": "",
"detail_link": "/player/suarez-denis/xWwucZ71/",
"short_name": "Suarez",
"shirt_number": "6",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "86' Alcacer P. (Suarez D.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Denis Suarez"
},
{
"hash": "byxc46yl",
"name": "ter Stegen M.",
"captain": "",
"detail_link": "/player/ter-stegen-marc-andre/byxc46yl/",
"short_name": "ter Stegen",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Marc-Andre ter Stegen"
},
{
"hash": "K0HKnqmK",
"name": "Turan A.",
"captain": "",
"detail_link": "/player/turan-arda/K0HKnqmK/",
"short_name": "Turan",
"shirt_number": "7",
"country": "Turkey",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Arda Turan"
},
{
"hash": "42SIX9sl",
"name": "Alba J.",
"captain": "",
"detail_link": "/player/alba-jordi/42SIX9sl/",
"short_name": "Alba",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jordi Alba"
},
{
"hash": "vP5uwPQf",
"name": "Alena C.",
"captain": "",
"detail_link": "/player/alena-carles/vP5uwPQf/",
"short_name": "Alena",
"shirt_number": "28",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "63'",
"description": "Messi L.",
"linked_player_hash": "vgOOdZbd"
}
],
"lineup": null,
"starting": false,
"long_name": "Carles Alena"
},
{
"hash": "25zBQ1q4",
"name": "Cillessen J.",
"captain": "",
"detail_link": "/player/cillessen-jasper/25zBQ1q4/",
"short_name": "Cillessen",
"shirt_number": "13",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jasper Cillessen"
},
{
"hash": "E7AksdFj",
"name": "Iniesta A.",
"captain": "",
"detail_link": "/player/iniesta-andres/E7AksdFj/",
"short_name": "Iniesta",
"shirt_number": "8",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Andres Iniesta"
},
{
"hash": "W2R804U4",
"name": "Roberto S.",
"captain": "",
"detail_link": "/player/roberto-sergi/W2R804U4/",
"short_name": "Roberto",
"shirt_number": "20",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sergi Roberto"
},
{
"hash": "dUShzrBp",
"name": "Suarez L.",
"captain": "",
"detail_link": "/player/suarez-luis/dUShzrBp/",
"short_name": "Suarez",
"shirt_number": "9",
"country": "Uruguay",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luis Suarez"
},
{
"hash": "zsH7aMfI",
"name": "Umtiti S.",
"captain": "",
"detail_link": "/player/umtiti-samuel/zsH7aMfI/",
"short_name": "Umtiti",
"shirt_number": "23",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Samuel Umtiti"
}
],
"coach": [
{
"hash": "8MdrBIUb",
"name": "Enrique L.",
"captain": "",
"detail_link": "/player/enrique-luis/8MdrBIUb/",
"short_name": "Enrique L.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luis Enrique"
}
]
},
"away": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "6ymj1g0J",
"name": "Bunuel A.",
"captain": "",
"detail_link": "/player/bunuel-aitor/6ymj1g0J/",
"short_name": "Redrado",
"shirt_number": "34",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Aitor Bunuel Redrado"
},
{
"hash": "AyBsmmHa",
"name": "de las Cuevas M.",
"captain": "",
"detail_link": "/player/miguel/AyBsmmHa/",
"short_name": "de las Cuevas",
"shirt_number": "20",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Miguel de las Cuevas"
},
{
"hash": "GlXukwsK",
"name": "Fausto A.",
"captain": "",
"detail_link": "/player/fausto-antonio/GlXukwsK/",
"short_name": "Fausto",
"shirt_number": "14",
"country": "Spain",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Antonio Fausto"
},
{
"hash": "fHHxCGrE",
"name": "Fuentes J. R.",
"captain": "",
"detail_link": "/player/fuentes-juan-rafael/fHHxCGrE/",
"short_name": "Fuentes",
"shirt_number": "16",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Juan Rafael Fuentes"
},
{
"hash": "YFnwQwJd",
"name": "Leon S.",
"captain": "",
"detail_link": "/player/leon-sergio/YFnwQwJd/",
"short_name": "Leon",
"shirt_number": "7",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "73'",
"description": "Kodro K.",
"linked_player_hash": "WCweaAkN"
}
],
"lineup": 11,
"starting": true,
"long_name": "Sergio Leon"
},
{
"hash": "rgVTOlu1",
"name": "Merida F.",
"captain": "",
"detail_link": "/player/merida-fran/rgVTOlu1/",
"short_name": "Merida",
"shirt_number": "18",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "79'",
"description": "Causic G.",
"linked_player_hash": "zRnrLdnd"
}
],
"lineup": 8,
"starting": true,
"long_name": "Fran Merida"
},
{
"hash": "fNMzyzxr",
"name": "Mondragon J.",
"captain": "",
"detail_link": "/player/mondragon-jhon/fNMzyzxr/",
"short_name": "Mondragon",
"shirt_number": "37",
"country": "Colombia",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Jhon Mondragon"
},
{
"hash": "b7OXkpt3",
"name": "Romero J.",
"captain": "",
"detail_link": "/player/romero-jaime/b7OXkpt3/",
"short_name": "Romero",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "72'",
"description": "Olavide M.",
"linked_player_hash": "v703fwm2"
}
],
"lineup": 10,
"starting": true,
"long_name": "Jaime Romero"
},
{
"hash": "rgeidr8F",
"name": "Sanjurjo O.",
"captain": "(C)",
"detail_link": "/player/oier/rgeidr8F/",
"short_name": "Sanjurjo",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Oier Sanjurjo"
},
{
"hash": "A3ywEtVi",
"name": "Sirigu S.",
"captain": "",
"detail_link": "/player/sirigu-salvatore/A3ywEtVi/",
"short_name": "Sirigu",
"shirt_number": "25",
"country": "Italy",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Salvatore Sirigu"
},
{
"hash": "QVf2BrOO",
"name": "Torres R.",
"captain": "",
"detail_link": "/player/torres-roberto/QVf2BrOO/",
"short_name": "Torres",
"shirt_number": "10",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "48' Torres R.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Roberto Torres"
},
{
"hash": "KxtC5I27",
"name": "Barja K.",
"captain": "",
"detail_link": "/player/barja-enrique/KxtC5I27/",
"short_name": "Barja",
"shirt_number": "30",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kike Barja"
},
{
"hash": "zRnrLdnd",
"name": "Causic G.",
"captain": "",
"detail_link": "/player/causic-goran/zRnrLdnd/",
"short_name": "Causic",
"shirt_number": "8",
"country": "Serbia",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Merida F.",
"linked_player_hash": "rgVTOlu1"
}
],
"lineup": null,
"starting": false,
"long_name": "Goran Causic"
},
{
"hash": "rTha6jsL",
"name": "Clerc C.",
"captain": "",
"detail_link": "/player/clerc-carlos/rTha6jsL/",
"short_name": "Clerc",
"shirt_number": "21",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Carlos Clerc"
},
{
"hash": "zRzdjdYn",
"name": "Fernandez M.",
"captain": "",
"detail_link": "/player/fernandez-mario/zRzdjdYn/",
"short_name": "Fernandez",
"shirt_number": "1",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mario Fernandez"
},
{
"hash": "WCweaAkN",
"name": "Kodro K.",
"captain": "",
"detail_link": "/player/kodro-kenan/WCweaAkN/",
"short_name": "Kodro",
"shirt_number": "19",
"country": "Bosnia and Herzegovina",
"facts": [
{
"type": "7",
"time": "73'",
"description": "Leon S.",
"linked_player_hash": "YFnwQwJd"
}
],
"lineup": null,
"starting": false,
"long_name": "Kenan Kodro"
},
{
"hash": "ttWzIJ9H",
"name": "Marquez I.",
"captain": "",
"detail_link": "/player/marquez-ivan/ttWzIJ9H/",
"short_name": "Marquez Alvarez",
"shirt_number": "33",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ivan Marquez Alvarez"
},
{
"hash": "v703fwm2",
"name": "Olavide M.",
"captain": "",
"detail_link": "/player/olavide-miguel/v703fwm2/",
"short_name": "Olavide",
"shirt_number": "35",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Romero J.",
"linked_player_hash": "b7OXkpt3"
}
],
"lineup": null,
"starting": false,
"long_name": "Miguel Olavide"
}
],
"coach": [
{
"hash": "GMr0Yq5o",
"name": "Vasiljevic P.",
"captain": "",
"detail_link": "/player/vasiljevic-petar/GMr0Yq5o/",
"short_name": "Vasiljevic P.",
"shirt_number": "",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Petar Vasiljevic"
}
]
}
},
"referee": [
"Munuera Montero J."
],
"venue": [
"Camp Nou (Barcelona)"
],
"attendance": [
"63 989"
],
"referee_matched": [
"Jose Luis Munuera Montero"
],
"referee_found": [
"Jose Luis Munuera Montero"
],
"coach_matched": [
"Petar Vasiljevic"
],
"gameHomeTeam": "Barcelona",
"home": {
"name": "Barcelona",
"detail_link": "/team/barcelona/SKbpVP5K",
"hash": "SKbpVP5K",
"names": [
"Barcelona",
"barcelona"
]
},
"gameAwayTeam": "Osasuna",
"away": {
"name": "Osasuna",
"detail_link": "/team/osasuna/ETdxjU8a",
"hash": "ETdxjU8a",
"names": [
"Osasuna",
"osasuna"
]
},
"gameDate": "26/04/2017 - 19:30",
"annotations": [
{
"important": true,
"gameTime": "2 - 47:00",
"gt_gameTime": "",
"label": "whistle",
"description": "The match has just finished.",
"identified": "The match has just finished.",
"anonymized": "The match has just finished.",
"visibility": "shown",
"position": "2820000"
},
{
"important": false,
"gameTime": "2 - 45:39",
"gt_gameTime": "",
"label": "attendance",
"description": "The attendance for today's match is 63989.",
"identified": "The attendance for today's match is 63989.",
"anonymized": "The attendance for today's match is 63989.",
"visibility": "shown",
"position": "2739000"
},
{
"important": false,
"gameTime": "2 - 45:12",
"gt_gameTime": "",
"label": "corner",
"description": "A horde of players are waiting inside the penalty area for a cross from the corner, but Ivan Rakitic (Barcelona) takes it short.",
"identified": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER_pC6dfyG5] ([TEAM_]) takes it short.",
"anonymized": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER] ([TEAM]) takes it short.",
"visibility": "shown",
"position": "2712000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"gt_gameTime": "",
"label": "time",
"description": "There will be a minimum of 2 min. of added time.",
"identified": "There will be a minimum of 2 min. of added time.",
"anonymized": "There will be a minimum of 2 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 40:15",
"gt_gameTime": "2 - 40:42",
"label": "soccer-ball",
"description": "Goal! Denis Suarez displays great vision and sends a pass to Paco Alcacer (Barcelona), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 7:1.",
"identified": "Goal! [PLAYER_xWwucZ71] displays great vision and sends a pass to [PLAYER_Ey0zWJG1] ([TEAM_]), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 7:1.",
"anonymized": "Goal! [PLAYER] displays great vision and sends a pass to [PLAYER] ([TEAM]), who shows brilliant composure inside the box to bury the ball from close range in the back of the net. The score is 7:1.",
"visibility": "shown",
"position": "2415000"
},
{
"important": false,
"gameTime": "2 - 40:10",
"gt_gameTime": "2 - 39:38",
"label": "",
"description": "Carles Alena (Barcelona) got on the ball on the edge of the box and blazed a first-time shot well over the bar.",
"identified": "[PLAYER_vP5uwPQf] ([TEAM_]) got on the ball on the edge of the box and blazed a first-time shot well over the bar.",
"anonymized": "[PLAYER] ([TEAM]) got on the ball on the edge of the box and blazed a first-time shot well over the bar.",
"visibility": "shown",
"position": "2410000"
},
{
"important": false,
"gameTime": "2 - 36:03",
"gt_gameTime": "2 - 35:37",
"label": "corner",
"description": "Roberto Torres (Osasuna) floats the ball in from the corner but it's intercepted.",
"identified": "[PLAYER_QVf2BrOO] ([TEAM_]) floats the ball in from the corner but it's intercepted.",
"anonymized": "[PLAYER] ([TEAM]) floats the ball in from the corner but it's intercepted.",
"visibility": "shown",
"position": "2163000"
},
{
"important": true,
"gameTime": "2 - 33:54",
"gt_gameTime": "2 - 33:27",
"label": "substitution",
"description": "That's the end of the game for Fran Merida, who is replaced by Goran Causic (Osasuna).",
"identified": "That's the end of the game for [PLAYER_rgVTOlu1], who is replaced by [PLAYER_zRnrLdnd] ([TEAM_]).",
"anonymized": "That's the end of the game for [PLAYER], who is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2034000"
},
{
"important": false,
"gameTime": "2 - 29:30",
"gt_gameTime": "2 - 29:01",
"label": "corner",
"description": "The ball is whipped in from the corner by Ivan Rakitic (Barcelona), but one of the defenders gets it clear.",
"identified": "The ball is whipped in from the corner by [PLAYER_pC6dfyG5] ([TEAM_]), but one of the defenders gets it clear.",
"anonymized": "The ball is whipped in from the corner by [PLAYER] ([TEAM]), but one of the defenders gets it clear.",
"visibility": "shown",
"position": "1770000"
},
{
"important": false,
"gameTime": "2 - 27:35",
"gt_gameTime": "2 - 27:09",
"label": "corner",
"description": "Ivan Rakitic (Barcelona) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"identified": "[PLAYER_pC6dfyG5] ([TEAM_]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"visibility": "shown",
"position": "1655000"
},
{
"important": true,
"gameTime": "2 - 27:26",
"gt_gameTime": "2 - 27:00",
"label": "substitution",
"description": "Petar Vasiljevic has decided to make a change. Kenan Kodro (Osasuna) replaces Sergio Leon.",
"identified": "[COACH_GMr0Yq5o] has decided to make a change. [PLAYER_WCweaAkN] ([TEAM_]) replaces [PLAYER_YFnwQwJd].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1646000"
},
{
"important": true,
"gameTime": "2 - 26:20",
"gt_gameTime": "2 - 26:20",
"label": "substitution",
"description": "It's time for a substitution. That's the last involvement from Jaime Romero as he is replaced by Miguel Olavide (Osasuna).",
"identified": "It's time for a substitution. That's the last involvement from [PLAYER_b7OXkpt3] as he is replaced by [PLAYER_AyBsmmHa] ([TEAM_]).",
"anonymized": "It's time for a substitution. That's the last involvement from [PLAYER] as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1580000"
},
{
"important": true,
"gameTime": "2 - 22:00",
"gt_gameTime": "2 - 21:40",
"label": "soccer-ball",
"description": "Javier Mascherano (Barcelona) steps up to take the penalty and converts it with a shot into the roof of the net.",
"identified": "[PLAYER_ns2Bmt54] ([TEAM_]) steps up to take the penalty and converts it with a shot into the roof of the net.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the penalty and converts it with a shot into the roof of the net.",
"visibility": "shown",
"position": "1320000"
},
{
"important": true,
"gameTime": "2 - 21:50",
"gt_gameTime": "2 - 21:28",
"label": "",
"description": "Javier Mascherano (Barcelona) will take the responsibility and he is already preparing the ball.",
"identified": "[PLAYER_ns2Bmt54] ([TEAM_]) will take the responsibility and he is already preparing the ball.",
"anonymized": "[PLAYER] ([TEAM]) will take the responsibility and he is already preparing the ball.",
"visibility": "shown",
"position": "1310000"
},
{
"important": true,
"gameTime": "2 - 21:45",
"gt_gameTime": "2 - 20:54",
"label": "penalty",
"description": "Fran Merida (Osasuna) trips an opponent with a slide tackle. Jose Luis Munuera Montero stops the game and he could give him a card, but eventually decides on just a warning. A penalty is awarded to Barcelona!",
"identified": "[PLAYER_rgVTOlu1] ([TEAM_]) trips an opponent with a slide tackle. [REFEREE] stops the game and he could give him a card, but eventually decides on just a warning. A penalty is awarded to [TEAM_]!",
"anonymized": "[PLAYER] ([TEAM]) trips an opponent with a slide tackle. [REFEREE] stops the game and he could give him a card, but eventually decides on just a warning. A penalty is awarded to [TEAM]!",
"visibility": "shown",
"position": "1305000"
},
{
"important": true,
"gameTime": "2 - 18:58",
"gt_gameTime": "2 - 18:34",
"label": "soccer-ball",
"description": "GOAL! Paco Alcacer (Barcelona) collects a pass and from inside the box he lifts the ball over Salvatore Sirigu, who was off his line. What a finish that is! 5:1.",
"identified": "GOAL! [PLAYER_Ey0zWJG1] ([TEAM_]) collects a pass and from inside the box he lifts the ball over [PLAYER_A3ywEtVi], who was off his line. What a finish that is! 5:1.",
"anonymized": "GOAL! [PLAYER] ([TEAM]) collects a pass and from inside the box he lifts the ball over [PLAYER], who was off his line. What a finish that is! 5:1.",
"visibility": "shown",
"position": "1138000"
},
{
"important": false,
"gameTime": "2 - 18:30",
"gt_gameTime": "",
"label": "corner",
"description": "Ivan Rakitic (Barcelona) takes the corner kick but the ball only finds the head of an opponent.",
"identified": "[PLAYER_pC6dfyG5] ([TEAM_]) takes the corner kick but the ball only finds the head of an opponent.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick but the ball only finds the head of an opponent.",
"visibility": "shown",
"position": "1110000"
},
{
"important": true,
"gameTime": "2 - 17:13",
"gt_gameTime": "2 - 17:11",
"label": "substitution",
"description": "The referee signals a substitution. Carles Alena (Barcelona) is brought on as a substitute for Lionel Messi.",
"identified": "The referee signals a substitution. [PLAYER_vP5uwPQf] ([TEAM_]) is brought on as a substitute for [PLAYER_vgOOdZbd].",
"anonymized": "The referee signals a substitution. [PLAYER] ([TEAM]) is brought on as a substitute for [PLAYER].",
"visibility": "shown",
"position": "1033000"
},
{
"important": true,
"gameTime": "2 - 15:06",
"gt_gameTime": "2 - 15:49",
"label": "soccer-ball",
"description": "Lionel Messi (Barcelona) receives a great pass from his teammate and strikes a very powerful shot towards goal that goes inside of the right post!",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) receives a great pass from his teammate and strikes a very powerful shot towards goal that goes inside of the right post!",
"anonymized": "[PLAYER] ([TEAM]) receives a great pass from his teammate and strikes a very powerful shot towards goal that goes inside of the right post!",
"visibility": "shown",
"position": "906000"
},
{
"important": true,
"gameTime": "2 - 11:45",
"gt_gameTime": "2 - 11:55",
"label": "soccer-ball",
"description": "Goal! Andre Gomes (Barcelona) fires the rebound into the bottom right corner after the ball breaks to him in the box. The score is 3:1.",
"identified": "Goal! [PLAYER_dIFDILve] ([TEAM_]) fires the rebound into the bottom right corner after the ball breaks to him in the box. The score is 3:1.",
"anonymized": "Goal! [PLAYER] ([TEAM]) fires the rebound into the bottom right corner after the ball breaks to him in the box. The score is 3:1.",
"visibility": "shown",
"position": "705000"
},
{
"important": true,
"gameTime": "2 - 11:40",
"gt_gameTime": "2 - 11:52",
"label": "",
"description": "Corner kick falls to Gerard Pique (Barcelona), who attempts to finish. Luck is not on his side today as the ball crashes against the right post.",
"identified": "Corner kick falls to [PLAYER_fRBrHCRh] ([TEAM_]), who attempts to finish. Luck is not on his side today as the ball crashes against the right post.",
"anonymized": "Corner kick falls to [PLAYER] ([TEAM]), who attempts to finish. Luck is not on his side today as the ball crashes against the right post.",
"visibility": "shown",
"position": "700000"
},
{
"important": false,
"gameTime": "2 - 11:30",
"gt_gameTime": "2 - 11:24",
"label": "corner",
"description": "Ivan Rakitic (Barcelona) is heading toward the corner flag to take the set piece.",
"identified": "[PLAYER_pC6dfyG5] ([TEAM_]) is heading toward the corner flag to take the set piece.",
"anonymized": "[PLAYER] ([TEAM]) is heading toward the corner flag to take the set piece.",
"visibility": "shown",
"position": "690000"
},
{
"important": false,
"gameTime": "2 - 11:19",
"gt_gameTime": "2 - 11:08",
"label": "",
"description": "Gerard Pique (Barcelona) gets himself onto the end of the corner, but his header is blocked. The ball is out of play. A goal-scoring opportunity from a corner for Barcelona.",
"identified": "[PLAYER_fRBrHCRh] ([TEAM_]) gets himself onto the end of the corner, but his header is blocked. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) gets himself onto the end of the corner, but his header is blocked. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "679000"
},
{
"important": false,
"gameTime": "2 - 11:10",
"gt_gameTime": "2 - 10:52",
"label": "corner",
"description": "Ivan Rakitic (Barcelona) will take the corner.",
"identified": "[PLAYER_pC6dfyG5] ([TEAM_]) will take the corner.",
"anonymized": "[PLAYER] ([TEAM]) will take the corner.",
"visibility": "shown",
"position": "670000"
},
{
"important": false,
"gameTime": "2 - 10:36",
"gt_gameTime": "2 - 10:21",
"label": "",
"description": "Lionel Messi (Barcelona) is having a lively performance. He is causing problems and wanting the ball at every opportunity.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) is having a lively performance. He is causing problems and wanting the ball at every opportunity.",
"anonymized": "[PLAYER] ([TEAM]) is having a lively performance. He is causing problems and wanting the ball at every opportunity.",
"visibility": "shown",
"position": "636000"
},
{
"important": true,
"gameTime": "2 - 04:55",
"gt_gameTime": "",
"label": "",
"description": "Javier Mascherano (Barcelona) meets a nice cross deep inside the 18-yard box and produces a fine header towards the right post, but the goalkeeper is well positioned and punches the ball away, deflecting it onto the post.",
"identified": "[PLAYER_ns2Bmt54] ([TEAM_]) meets a nice cross deep inside the 18-yard box and produces a fine header towards the right post, but the goalkeeper is well positioned and punches the ball away, deflecting it onto the post.",
"anonymized": "[PLAYER] ([TEAM]) meets a nice cross deep inside the 18-yard box and produces a fine header towards the right post, but the goalkeeper is well positioned and punches the ball away, deflecting it onto the post.",
"visibility": "shown",
"position": "295000"
},
{
"important": false,
"gameTime": "2 - 04:37",
"gt_gameTime": "",
"label": "corner",
"description": "Ivan Rakitic (Barcelona) takes the corner, but it's intercepted by the defender.",
"identified": "[PLAYER_pC6dfyG5] ([TEAM_]) takes the corner, but it's intercepted by the defender.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but it's intercepted by the defender.",
"visibility": "shown",
"position": "277000"
},
{
"important": true,
"gameTime": "2 - 02:26",
"gt_gameTime": "",
"label": "soccer-ball",
"description": "It's a goal! Roberto Torres (Osasuna) scores a beautiful goal from the resulting free kick. The ball ends up inside the left post. Superb strike!",
"identified": "It's a goal! [PLAYER_QVf2BrOO] ([TEAM_]) scores a beautiful goal from the resulting free kick. The ball ends up inside the left post. Superb strike!",
"anonymized": "It's a goal! [PLAYER] ([TEAM]) scores a beautiful goal from the resulting free kick. The ball ends up inside the left post. Superb strike!",
"visibility": "shown",
"position": "146000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"gt_gameTime": "",
"label": "whistle",
"description": "Everything is set for the start of the second half.",
"identified": "Everything is set for the start of the second half.",
"anonymized": "Everything is set for the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "1 - 45:03",
"gt_gameTime": "1 - 44:58",
"label": "whistle",
"description": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"identified": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"anonymized": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"visibility": "shown",
"position": "2703000"
},
{
"important": false,
"gameTime": "1 - 44:40",
"gt_gameTime": "1 - 44:31",
"label": "",
"description": "Sergio Leon (Osasuna) and Antonio Fausto attempt to exchange short two-yard passes, but the opposition's defence intercepts the ball.",
"identified": "[PLAYER_YFnwQwJd] ([TEAM_]) and [PLAYER_GlXukwsK] attempt to exchange short two-yard passes, but the opposition's defence intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) and [PLAYER] attempt to exchange short two-yard passes, but the opposition's defence intercepts the ball.",
"visibility": "shown",
"position": "2680000"
},
{
"important": false,
"gameTime": "1 - 39:06",
"gt_gameTime": "1 - 38:58",
"label": "",
"description": "Paco Alcacer (Barcelona) leaps highest around the penalty spot to meet a cross from the free kick and produces a promising goal-bound header towards the right post, but Salvatore Sirigu pulls off a fine save to deny him.",
"identified": "[PLAYER_Ey0zWJG1] ([TEAM_]) leaps highest around the penalty spot to meet a cross from the free kick and produces a promising goal-bound header towards the right post, but [PLAYER_A3ywEtVi] pulls off a fine save to deny him.",
"anonymized": "[PLAYER] ([TEAM]) leaps highest around the penalty spot to meet a cross from the free kick and produces a promising goal-bound header towards the right post, but [PLAYER] pulls off a fine save to deny him.",
"visibility": "shown",
"position": "2346000"
},
{
"important": false,
"gameTime": "1 - 36:38",
"gt_gameTime": "1 - 36:35",
"label": "",
"description": "Salvatore Sirigu doesn't have to worry about that one. Javier Mascherano puts a cross in towards Arda Turan (Barcelona), who is unable to keep his header on target from the centre of the box. He sends the ball well wide of the left post.",
"identified": "[PLAYER_A3ywEtVi] doesn't have to worry about that one. [PLAYER_ns2Bmt54] puts a cross in towards [PLAYER_K0HKnqmK] ([TEAM_]), who is unable to keep his header on target from the centre of the box. He sends the ball well wide of the left post.",
"anonymized": "[PLAYER] doesn't have to worry about that one. [PLAYER] puts a cross in towards [PLAYER] ([TEAM]), who is unable to keep his header on target from the centre of the box. He sends the ball well wide of the left post.",
"visibility": "shown",
"position": "2198000"
},
{
"important": false,
"gameTime": "1 - 32:56",
"gt_gameTime": "1 - 32:48",
"label": "",
"description": "Andre Gomes (Barcelona) fails to beat the offside trap. The flag goes up and the referee blows his whistle.",
"identified": "[PLAYER_dIFDILve] ([TEAM_]) fails to beat the offside trap. The flag goes up and the referee blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) fails to beat the offside trap. The flag goes up and the referee blows his whistle.",
"visibility": "shown",
"position": "1976000"
},
{
"important": true,
"gameTime": "1 - 29:34",
"gt_gameTime": "1 - 29:49",
"label": "soccer-ball",
"description": "Goal! Andre Gomes (Barcelona) unleashes a first-time shot from inside the box and beats the goalkeeper inside the right post. 2:0.",
"identified": "Goal! [PLAYER_dIFDILve] ([TEAM_]) unleashes a first-time shot from inside the box and beats the goalkeeper inside the right post. 2:0.",
"anonymized": "Goal! [PLAYER] ([TEAM]) unleashes a first-time shot from inside the box and beats the goalkeeper inside the right post. 2:0.",
"visibility": "shown",
"position": "1774000"
},
{
"important": false,
"gameTime": "1 - 29:30",
"gt_gameTime": "",
"label": "corner",
"description": "Ivan Rakitic (Barcelona) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"identified": "[PLAYER_pC6dfyG5] ([TEAM_]) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"visibility": "shown",
"position": "1770000"
},
{
"important": false,
"gameTime": "1 - 29:22",
"gt_gameTime": "1 - 29:17",
"label": "",
"description": "Lionel Messi (Barcelona) blasts the ball from just outside the box, but his attempt is blocked by the defender. Barcelona get a corner.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) blasts the ball from just outside the box, but his attempt is blocked by the defender. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) blasts the ball from just outside the box, but his attempt is blocked by the defender. [TEAM] get a corner.",
"visibility": "shown",
"position": "1762000"
},
{
"important": false,
"gameTime": "1 - 25:31",
"gt_gameTime": "1 - 25:27",
"label": "",
"description": "A promising first-time strike from inside the box by Lionel Messi (Barcelona), but his attempt goes just wide of the target.",
"identified": "A promising first-time strike from inside the box by [PLAYER_vgOOdZbd] ([TEAM_]), but his attempt goes just wide of the target.",
"anonymized": "A promising first-time strike from inside the box by [PLAYER] ([TEAM]), but his attempt goes just wide of the target.",
"visibility": "shown",
"position": "1531000"
},
{
"important": false,
"gameTime": "1 - 25:00",
"gt_gameTime": "1 - 25:01",
"label": "",
"description": "Ivan Rakitic (Barcelona) sends an accurate pass to Andre Gomes, who controls the ball with a fine first touch.",
"identified": "[PLAYER_pC6dfyG5] ([TEAM_]) sends an accurate pass to [PLAYER_dIFDILve], who controls the ball with a fine first touch.",
"anonymized": "[PLAYER] ([TEAM]) sends an accurate pass to [PLAYER], who controls the ball with a fine first touch.",
"visibility": "shown",
"position": "1500000"
},
{
"important": false,
"gameTime": "1 - 19:14",
"gt_gameTime": "1 - 19:45",
"label": "",
"description": "The Barcelona players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"identified": "The [TEAM_] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"anonymized": "The [TEAM] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"visibility": "shown",
"position": "1154000"
},
{
"important": false,
"gameTime": "1 - 15:24",
"gt_gameTime": "1 - 15:03",
"label": "corner",
"description": "The corner from Ivan Rakitic (Barcelona) is hurriedly cleared.",
"identified": "The corner from [PLAYER_pC6dfyG5] ([TEAM_]) is hurriedly cleared.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is hurriedly cleared.",
"visibility": "shown",
"position": "924000"
},
{
"important": false,
"gameTime": "1 - 14:08",
"gt_gameTime": "1 - 14:25",
"label": "corner",
"description": "The resulting corner from Ivan Rakitic (Barcelona) comes to nothing.",
"identified": "The resulting corner from [PLAYER_pC6dfyG5] ([TEAM_]) comes to nothing.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) comes to nothing.",
"visibility": "shown",
"position": "848000"
},
{
"important": false,
"gameTime": "1 - 13:52",
"gt_gameTime": "1 - 13:48",
"label": "",
"description": "Lucas Digne (Barcelona) volleys the ball towards goal from the edge of the penalty box, but one of the defenders blocks his shot. Barcelona force their opponents to concede a corner.",
"identified": "[PLAYER_v9Ux4sua] ([TEAM_]) volleys the ball towards goal from the edge of the penalty box, but one of the defenders blocks his shot. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) volleys the ball towards goal from the edge of the penalty box, but one of the defenders blocks his shot. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "832000"
},
{
"important": true,
"gameTime": "1 - 12:00",
"gt_gameTime": "1 - 11:44",
"label": "soccer-ball",
"description": "Goal! Lionel Messi (Barcelona) skips past challenges and from close range brilliantly chips the ball over Salvatore Sirigu. 1:0. Wonderful individual effort.",
"identified": "Goal! [PLAYER_vgOOdZbd] ([TEAM_]) skips past challenges and from close range brilliantly chips the ball over [PLAYER_A3ywEtVi]. 1:0. Wonderful individual effort.",
"anonymized": "Goal! [PLAYER] ([TEAM]) skips past challenges and from close range brilliantly chips the ball over [PLAYER]. 1:0. Wonderful individual effort.",
"visibility": "shown",
"position": "720000"
}
]
} |