File size: 82,275 Bytes
23b035e |
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 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 |
{
"timestamp": "1442671200",
"score": "1 - 0",
"round": "4",
"teams": [
"Real Madrid",
"Granada CF"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "tpV0VX0S",
"name": "Benzema K.",
"captain": "",
"detail_link": "/player/benzema-karim/tpV0VX0S/",
"short_name": "Benzema",
"shirt_number": "9",
"country": "France",
"facts": [
{
"type": "3",
"time": "55' Benzema K. (Isco)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "77'",
"description": "Cheryshev D.",
"linked_player_hash": "rRBOMfjm"
}
],
"lineup": 11,
"starting": true,
"long_name": "Karim Benzema"
},
{
"hash": "rZh5FTHE",
"name": "Carvajal D.",
"captain": "",
"detail_link": "/player/carvajal-daniel/rZh5FTHE/",
"short_name": "Carvajal",
"shirt_number": "15",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Daniel Carvajal"
},
{
"hash": "ULLmpdEb",
"name": "Isco",
"captain": "",
"detail_link": "/player/isco/ULLmpdEb/",
"short_name": "Isco",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "43' Isco (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "8",
"time": "55' Benzema K. (Isco)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "85'",
"description": "Casemiro",
"linked_player_hash": "Ukeq3c0b"
}
],
"lineup": 9,
"starting": true,
"long_name": "Isco"
},
{
"hash": "CloE7jjr",
"name": "Kroos T.",
"captain": "",
"detail_link": "/player/kroos-toni/CloE7jjr/",
"short_name": "Kroos",
"shirt_number": "8",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "62'",
"description": "Kovacic M.",
"linked_player_hash": "4f084TL7"
}
],
"lineup": 7,
"starting": true,
"long_name": "Toni Kroos"
},
{
"hash": "pEjBDsSH",
"name": "Lucas",
"captain": "",
"detail_link": "/player/lucas/pEjBDsSH/",
"short_name": "Vazquez",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Lucas Vazquez"
},
{
"hash": "zmAm2AEH",
"name": "Marcelo",
"captain": "(C)",
"detail_link": "/player/marcelo/zmAm2AEH/",
"short_name": "Marcelo",
"shirt_number": "12",
"country": "Brazil",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Marcelo"
},
{
"hash": "bZWyoJnA",
"name": "Modric L.",
"captain": "",
"detail_link": "/player/modric-luka/bZWyoJnA/",
"short_name": "Modric",
"shirt_number": "19",
"country": "Croatia",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Luka Modric"
},
{
"hash": "dQEusiKl",
"name": "Navas K.",
"captain": "",
"detail_link": "/player/navas-keylor/dQEusiKl/",
"short_name": "Navas",
"shirt_number": "1",
"country": "Costa Rica",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Keylor Navas"
},
{
"hash": "2y9qaipI",
"name": "Pepe",
"captain": "",
"detail_link": "/player/pepe/2y9qaipI/",
"short_name": "Pepe",
"shirt_number": "3",
"country": "Portugal",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Pepe"
},
{
"hash": "WGOY4FSt",
"name": "Ronaldo C.",
"captain": "",
"detail_link": "/player/ronaldo-cristiano/WGOY4FSt/",
"short_name": "Ronaldo",
"shirt_number": "7",
"country": "Portugal",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Cristiano Ronaldo"
},
{
"hash": "t20vQIvC",
"name": "Varane R.",
"captain": "",
"detail_link": "/player/varane-raphael/t20vQIvC/",
"short_name": "Varane",
"shirt_number": "2",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Raphael Varane"
},
{
"hash": "CO9bjrLo",
"name": "Arbeloa A.",
"captain": "",
"detail_link": "/player/arbeloa-alvaro/CO9bjrLo/",
"short_name": "Arbeloa",
"shirt_number": "17",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alvaro Arbeloa"
},
{
"hash": "Ukeq3c0b",
"name": "Casemiro",
"captain": "",
"detail_link": "/player/casemiro/Ukeq3c0b/",
"short_name": "Casemiro",
"shirt_number": "14",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "85'",
"description": "Isco",
"linked_player_hash": "ULLmpdEb"
}
],
"lineup": null,
"starting": false,
"long_name": "Casemiro"
},
{
"hash": "l43b8dXD",
"name": "Casilla K.",
"captain": "",
"detail_link": "/player/casilla-francisco/l43b8dXD/",
"short_name": "Casilla",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kiko Casilla"
},
{
"hash": "rRBOMfjm",
"name": "Cheryshev D.",
"captain": "",
"detail_link": "/player/cheryshev-denis/rRBOMfjm/",
"short_name": "Cheryshev",
"shirt_number": "21",
"country": "Russia",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Benzema K.",
"linked_player_hash": "tpV0VX0S"
}
],
"lineup": null,
"starting": false,
"long_name": "Denis Cheryshev"
},
{
"hash": "8Wp8ZCLG",
"name": "Fernandez N.",
"captain": "",
"detail_link": "/player/nacho/8Wp8ZCLG/",
"short_name": "Fernandez",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nacho Fernandez"
},
{
"hash": "6BdSXunk",
"name": "Jese",
"captain": "",
"detail_link": "/player/jese/6BdSXunk/",
"short_name": "Jese",
"shirt_number": "20",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jese"
},
{
"hash": "4f084TL7",
"name": "Kovacic M.",
"captain": "",
"detail_link": "/player/kovacic-mateo/4f084TL7/",
"short_name": "Kovacic",
"shirt_number": "16",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "62'",
"description": "Kroos T.",
"linked_player_hash": "CloE7jjr"
}
],
"lineup": null,
"starting": false,
"long_name": "Mateo Kovacic"
}
],
"coach": [
{
"hash": "4fN6car1",
"name": "Benitez R.",
"captain": "",
"detail_link": "/player/benitez-rafael/4fN6car1/",
"short_name": "Benitez R.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rafael Benitez"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "h81ElhF9",
"name": "Biraghi C.",
"captain": "",
"detail_link": "/player/biraghi-cristiano/h81ElhF9/",
"short_name": "Biraghi",
"shirt_number": "3",
"country": "Italy",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Cristiano Biraghi"
},
{
"hash": "hlH73dEj",
"name": "Doria",
"captain": "",
"detail_link": "/player/doria/hlH73dEj/",
"short_name": "Doria",
"shirt_number": "12",
"country": "Brazil",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Doria"
},
{
"hash": "8fNPeO0k",
"name": "El Arabi Y.",
"captain": "(C)",
"detail_link": "/player/el-arabi-youseff/8fNPeO0k/",
"short_name": "El Arabi",
"shirt_number": "9",
"country": "Morocco",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Youssef El Arabi"
},
{
"hash": "E34WEy2D",
"name": "Fernandez A.",
"captain": "",
"detail_link": "/player/fernandez-andres/E34WEy2D/",
"short_name": "Fernandez",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Andres Fernandez"
},
{
"hash": "t8N0zblL",
"name": "Krhin R.",
"captain": "",
"detail_link": "/player/krhin-rene/t8N0zblL/",
"short_name": "Krhin",
"shirt_number": "21",
"country": "Slovenia",
"facts": [
{
"type": "1",
"time": "80' Krhin R. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Rene Krhin"
},
{
"hash": "dntx1Lgf",
"name": "Lomban D.",
"captain": "",
"detail_link": "/player/lomban-david/dntx1Lgf/",
"short_name": "Lomban",
"shirt_number": "2",
"country": "Spain",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "David Lomban"
},
{
"hash": "ERGVVjyO",
"name": "Lopes M.",
"captain": "",
"detail_link": "/player/lopes-miguel/ERGVVjyO/",
"short_name": "Lopes",
"shirt_number": "25",
"country": "Portugal",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Miguel Lopes"
},
{
"hash": "EDPjpUC2",
"name": "Marquez J.",
"captain": "",
"detail_link": "/player/marquez-javier/EDPjpUC2/",
"short_name": "Marquez",
"shirt_number": "8",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "70' Marquez J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Javier Marquez"
},
{
"hash": "GUK7yL4Q",
"name": "Mendez E.",
"captain": "",
"detail_link": "/player/mendez-edgar/GUK7yL4Q/",
"short_name": "Mendez",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "35' Mendez E. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "77'",
"description": "Lopez N.",
"linked_player_hash": "IaW0oy2c"
}
],
"lineup": 10,
"starting": true,
"long_name": "Edgar Mendez"
},
{
"hash": "4Y21LMg6",
"name": "Rochina R.",
"captain": "",
"detail_link": "/player/rochina-ruben/4Y21LMg6/",
"short_name": "Rochina",
"shirt_number": "23",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "67'",
"description": "Rico F.",
"linked_player_hash": "Qa2fmScQ"
}
],
"lineup": 9,
"starting": true,
"long_name": "Ruben Rochina"
},
{
"hash": "QHFpL8c2",
"name": "Success I.",
"captain": "",
"detail_link": "/player/success-isaac/QHFpL8c2/",
"short_name": "Success",
"shirt_number": "11",
"country": "Nigeria",
"facts": [
{
"type": "6",
"time": "61'",
"description": "Ibanez R.",
"linked_player_hash": "xWF7Cnzf"
}
],
"lineup": 8,
"starting": true,
"long_name": "Isaac Success"
},
{
"hash": "hEjc0P8e",
"name": "Babin J.",
"captain": "",
"detail_link": "/player/babin-jean-sylvain/hEjc0P8e/",
"short_name": "Babin",
"shirt_number": "6",
"country": "Martinique",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jean-Sylvain Babin"
},
{
"hash": "fLmkHT61",
"name": "Bifouma T.",
"captain": "",
"detail_link": "/player/bifouma-thievy/fLmkHT61/",
"short_name": "Bifouma",
"shirt_number": "16",
"country": "Republic of the Congo",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Thievy Bifouma"
},
{
"hash": "65F8DTep",
"name": "Foulquier D.",
"captain": "",
"detail_link": "/player/foulquier-dimitri/65F8DTep/",
"short_name": "Foulquier",
"shirt_number": "22",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Dimitri Foulquier"
},
{
"hash": "xWF7Cnzf",
"name": "Ibanez R.",
"captain": "",
"detail_link": "/player/ibanez-robert/xWF7Cnzf/",
"short_name": "Ibanez",
"shirt_number": "7",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "61'",
"description": "Success I.",
"linked_player_hash": "QHFpL8c2"
}
],
"lineup": null,
"starting": false,
"long_name": "Rober Ibanez"
},
{
"hash": "2PSAGsv8",
"name": "Kelava I.",
"captain": "",
"detail_link": "/player/kelava-ivan/2PSAGsv8/",
"short_name": "Kelava",
"shirt_number": "1",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ivan Kelava"
},
{
"hash": "IaW0oy2c",
"name": "Lopez N.",
"captain": "",
"detail_link": "/player/lopez-nicolas/IaW0oy2c/",
"short_name": "Lopez",
"shirt_number": "15",
"country": "Uruguay",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Mendez E.",
"linked_player_hash": "GUK7yL4Q"
}
],
"lineup": null,
"starting": false,
"long_name": "Nicolas Lopez"
},
{
"hash": "Qa2fmScQ",
"name": "Rico F.",
"captain": "",
"detail_link": "/player/rico-fran/Qa2fmScQ/",
"short_name": "Rico",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "67'",
"description": "Rochina R.",
"linked_player_hash": "4Y21LMg6"
}
],
"lineup": null,
"starting": false,
"long_name": "Fran Rico"
}
],
"coach": [
{
"hash": "A7v4ruhp",
"name": "Sandoval J.",
"captain": "",
"detail_link": "/player/sandoval-jose-ramon/A7v4ruhp/",
"short_name": "Sandoval J.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jose Ramon Sandoval"
}
]
}
},
"referee": [
"Munuera J."
],
"venue": [
"Estadio Santiago Bernab\u00e9u (Madrid)"
],
"attendance": [
"71 786"
],
"referee_matched": [
"Juan Martinez Munuera"
],
"referee_found": [
"Juan Martinez Munuera"
],
"coach_matched": [
"Rafael Benitez",
"Jose Ramon Sandoval"
],
"gameHomeTeam": "Real Madrid",
"home": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameAwayTeam": "Granada CF",
"away": {
"name": "Granada CF",
"detail_link": "/team/granada-cf/EXuxl1xP",
"hash": "EXuxl1xP",
"names": [
"Granada CF",
"Granada CF (Esp)",
"granada cf"
]
},
"gameDate": "19/09/2015 - 16:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "Most of the fans probably aren't overly pleased with the development of the game as it wasn't very exciting. Real Madrid were better today and displayed masterful control and movement. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"identified": "Most of the fans probably aren't overly pleased with the development of the game as it wasn't very exciting. [TEAM_] were better today and displayed masterful control and movement. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"anonymized": "Most of the fans probably aren't overly pleased with the development of the game as it wasn't very exciting. [TEAM] were better today and displayed masterful control and movement. The home team made a lot of passes and attempted to maintain possession. The away side's tactic was counter-attacking.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:04",
"label": "whistle",
"description": "The referee blows his whistle for the final time to end this match.",
"identified": "The referee blows his whistle for the final time to end this match.",
"anonymized": "The referee blows his whistle for the final time to end this match.",
"visibility": "shown",
"position": "2944000"
},
{
"important": false,
"gameTime": "2 - 46:34",
"label": "attendance",
"description": "The attendance for today's match is 71786.",
"identified": "The attendance for today's match is 71786.",
"anonymized": "The attendance for today's match is 71786.",
"visibility": "shown",
"position": "2794000"
},
{
"important": false,
"gameTime": "2 - 45:52",
"label": "corner",
"description": "The resulting corner, taken by Luka Modric (Real Madrid), comes to nothing.",
"identified": "The resulting corner, taken by [PLAYER_bZWyoJnA] ([TEAM_]), comes to nothing.",
"anonymized": "The resulting corner, taken by [PLAYER] ([TEAM]), comes to nothing.",
"visibility": "shown",
"position": "2752000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "",
"description": "A lofted cross from is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. Real Madrid get a corner.",
"identified": "A lofted cross from is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. [TEAM_] get a corner.",
"anonymized": "A lofted cross from is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. [TEAM] get a corner.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:59",
"label": "time",
"description": "There will be a minimum of 4 min. of added time.",
"identified": "There will be a minimum of 4 min. of added time.",
"anonymized": "There will be a minimum of 4 min. of added time.",
"visibility": "shown",
"position": "2699000"
},
{
"important": false,
"gameTime": "2 - 44:06",
"label": "",
"description": "Javier Marquez (Granada CF) decides to have a shot at goal from the free kick, but it hits the defensive wall.",
"identified": "[PLAYER_EDPjpUC2] ([TEAM_]) decides to have a shot at goal from the free kick, but it hits the defensive wall.",
"anonymized": "[PLAYER] ([TEAM]) decides to have a shot at goal from the free kick, but it hits the defensive wall.",
"visibility": "shown",
"position": "2646000"
},
{
"important": false,
"gameTime": "2 - 43:29",
"label": "",
"description": "Poor challenge! Pepe (Real Madrid) is penalised for tripping and Juan Martinez Munuera blows his whistle. Granada CF win a free kick. It's a promising situation for a direct shot.",
"identified": "Poor challenge! [PLAYER_2y9qaipI] ([TEAM_]) is penalised for tripping and [REFEREE] blows his whistle. [TEAM_] win a free kick. It's a promising situation for a direct shot.",
"anonymized": "Poor challenge! [PLAYER] ([TEAM]) is penalised for tripping and [REFEREE] blows his whistle. [TEAM] win a free kick. It's a promising situation for a direct shot.",
"visibility": "shown",
"position": "2609000"
},
{
"important": false,
"gameTime": "2 - 41:50",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) picks up a long through ball, but Andres Fernandez deserves praise for a brilliant reaction and interception.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) picks up a long through ball, but [PLAYER_8Wp8ZCLG] deserves praise for a brilliant reaction and interception.",
"anonymized": "[PLAYER] ([TEAM]) picks up a long through ball, but [PLAYER] deserves praise for a brilliant reaction and interception.",
"visibility": "shown",
"position": "2510000"
},
{
"important": true,
"gameTime": "2 - 39:55",
"label": "substitution",
"description": "Rafael Benitez has decided to substitute Isco and he is replaced by Casemiro (Real Madrid).",
"identified": "[COACH_4fN6car1] has decided to substitute [PLAYER_ULLmpdEb] and he is replaced by [PLAYER_Ukeq3c0b] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2395000"
},
{
"important": true,
"gameTime": "2 - 38:36",
"label": "",
"description": "What a chance! The ball rebounds out to Denis Cheryshev (Real Madrid) and his strike from the edge of the box goes narrowly wide of the right post. The ball is off of the pitch and it's a goal kick for Granada CF.",
"identified": "What a chance! The ball rebounds out to [PLAYER_rRBOMfjm] ([TEAM_]) and his strike from the edge of the box goes narrowly wide of the right post. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "What a chance! The ball rebounds out to [PLAYER] ([TEAM]) and his strike from the edge of the box goes narrowly wide of the right post. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2316000"
},
{
"important": false,
"gameTime": "2 - 37:23",
"label": "",
"description": "Javier Marquez (Granada CF) brings an opponent down and Juan Martinez Munuera interrupts the game. Real Madrid are awarded a free kick.",
"identified": "[PLAYER_EDPjpUC2] ([TEAM_]) brings an opponent down and [REFEREE] interrupts the game. [TEAM_] are awarded a free kick.",
"anonymized": "[PLAYER] ([TEAM]) brings an opponent down and [REFEREE] interrupts the game. [TEAM] are awarded a free kick.",
"visibility": "shown",
"position": "2243000"
},
{
"important": false,
"gameTime": "2 - 35:31",
"label": "",
"description": "Real Madrid keep possession of the ball by producing one-two passes, but an opponent steps in and wins the ball.",
"identified": "[TEAM_] keep possession of the ball by producing one-two passes, but an opponent steps in and wins the ball.",
"anonymized": "[TEAM] keep possession of the ball by producing one-two passes, but an opponent steps in and wins the ball.",
"visibility": "shown",
"position": "2131000"
},
{
"important": true,
"gameTime": "2 - 34:34",
"label": "y-card",
"description": "A yellow card for a tackle by Rene Krhin (Granada CF). Juan Martinez Munuera doesn't hesitate at all to make this decision.",
"identified": "A yellow card for a tackle by [PLAYER_t8N0zblL] ([TEAM_]). [REFEREE] doesn't hesitate at all to make this decision.",
"anonymized": "A yellow card for a tackle by [PLAYER] ([TEAM]). [REFEREE] doesn't hesitate at all to make this decision.",
"visibility": "shown",
"position": "2074000"
},
{
"important": true,
"gameTime": "2 - 31:59",
"label": "substitution",
"description": "Here is a change. Karim Benzema is going off and Rafael Benitez gives the last tactical orders to Denis Cheryshev (Real Madrid).",
"identified": "Here is a change. [PLAYER_tpV0VX0S] is going off and [COACH_4fN6car1] gives the last tactical orders to [PLAYER_rRBOMfjm] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1919000"
},
{
"important": true,
"gameTime": "2 - 31:48",
"label": "substitution",
"description": "We are about to witness a subsitution. Nicolas Lopez (Granada CF) for Edgar Mendez.",
"identified": "We are about to witness a subsitution. [PLAYER_IaW0oy2c] ([TEAM_]) for [PLAYER_GUK7yL4Q].",
"anonymized": "We are about to witness a subsitution. [PLAYER] ([TEAM]) for [PLAYER].",
"visibility": "shown",
"position": "1908000"
},
{
"important": false,
"gameTime": "2 - 29:22",
"label": "",
"description": "Rene Krhin (Granada CF) wins the ball after the corner kick and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"identified": "[PLAYER_t8N0zblL] ([TEAM_]) wins the ball after the corner kick and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) wins the ball after the corner kick and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"visibility": "shown",
"position": "1762000"
},
{
"important": false,
"gameTime": "2 - 28:24",
"label": "corner",
"description": "Fran Rico (Granada CF) goes over to take the corner kick and it looks like he will send the ball into the penalty box.",
"identified": "[PLAYER_Qa2fmScQ] ([TEAM_]) goes over to take the corner kick and it looks like he will send the ball into the penalty box.",
"anonymized": "[PLAYER] ([TEAM]) goes over to take the corner kick and it looks like he will send the ball into the penalty box.",
"visibility": "shown",
"position": "1704000"
},
{
"important": false,
"gameTime": "2 - 28:05",
"label": "",
"description": "Youssef El Arabi (Granada CF) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball goes out of play. Granada CF are awarded a corner kick.",
"identified": "[PLAYER_8fNPeO0k] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1685000"
},
{
"important": false,
"gameTime": "2 - 27:10",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) fails to produce a decent enough free kick for a player of his ability and the only target that he finds is the wall of defenders in front of him.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) fails to produce a decent enough free kick for a player of his ability and the only target that he finds is the wall of defenders in front of him.",
"anonymized": "[PLAYER] ([TEAM]) fails to produce a decent enough free kick for a player of his ability and the only target that he finds is the wall of defenders in front of him.",
"visibility": "shown",
"position": "1630000"
},
{
"important": false,
"gameTime": "2 - 26:59",
"label": "",
"description": "A player from Granada CF takes his opponent down, the referee blows his whistle for a foul. Real Madrid earn a free kick which could lead to a goal-scoring opportunity.",
"identified": "A player from [TEAM_] takes his opponent down, the referee blows his whistle for a foul. [TEAM_] earn a free kick which could lead to a goal-scoring opportunity.",
"anonymized": "A player from [TEAM] takes his opponent down, the referee blows his whistle for a foul. [TEAM] earn a free kick which could lead to a goal-scoring opportunity.",
"visibility": "shown",
"position": "1619000"
},
{
"important": false,
"gameTime": "2 - 25:59",
"label": "",
"description": "Luka Modric (Real Madrid) whips a long ball in from the free kick which is intercepted by Andres Fernandez.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) whips a long ball in from the free kick which is intercepted by [PLAYER_8Wp8ZCLG].",
"anonymized": "[PLAYER] ([TEAM]) whips a long ball in from the free kick which is intercepted by [PLAYER].",
"visibility": "shown",
"position": "1559000"
},
{
"important": true,
"gameTime": "2 - 24:55",
"label": "y-card",
"description": "Javier Marquez (Granada CF) takes out his opponent with a horrific tackle and is relieved when the referee only shows him a yellow card.",
"identified": "[PLAYER_EDPjpUC2] ([TEAM_]) takes out his opponent with a horrific tackle and is relieved when the referee only shows him a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) takes out his opponent with a horrific tackle and is relieved when the referee only shows him a yellow card.",
"visibility": "shown",
"position": "1495000"
},
{
"important": false,
"gameTime": "2 - 24:22",
"label": "corner",
"description": "Luka Modric (Real Madrid) steps up to take the corner, but the ball just sails in among the defenders.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) steps up to take the corner, but the ball just sails in among the defenders.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner, but the ball just sails in among the defenders.",
"visibility": "shown",
"position": "1462000"
},
{
"important": false,
"gameTime": "2 - 24:08",
"label": "",
"description": "sends a pass into the box, but his attempt is thwarted and cleared. The ball goes behind for a corner. Real Madrid will have an opportunity to threaten the opposition's goal.",
"identified": "sends a pass into the box, but his attempt is thwarted and cleared. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "sends a pass into the box, but his attempt is thwarted and cleared. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1448000"
},
{
"important": false,
"gameTime": "2 - 22:34",
"label": "corner",
"description": "Luka Modric (Real Madrid) takes the corner which is cleared.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) takes the corner which is cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared.",
"visibility": "shown",
"position": "1354000"
},
{
"important": false,
"gameTime": "2 - 22:20",
"label": "",
"description": "Karim Benzema (Real Madrid) whips a promising cross into the box, but the opposition's defence intercepts the ball. Real Madrid have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) whips a promising cross into the box, but the opposition's defence intercepts the ball. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "[PLAYER] ([TEAM]) whips a promising cross into the box, but the opposition's defence intercepts the ball. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "1340000"
},
{
"important": true,
"gameTime": "2 - 21:40",
"label": "substitution",
"description": "Jose Ramon Sandoval prepares a substitution. Ruben Rochina is replaced by Fran Rico (Granada CF).",
"identified": "[COACH_A7v4ruhp] prepares a substitution. [PLAYER_4Y21LMg6] is replaced by [PLAYER_Qa2fmScQ] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1300000"
},
{
"important": false,
"gameTime": "2 - 20:30",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) jinks his way past two defenders and from the edge of the box has an effort which goes just wide of the right post.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) jinks his way past two defenders and from the edge of the box has an effort which goes just wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) jinks his way past two defenders and from the edge of the box has an effort which goes just wide of the right post.",
"visibility": "shown",
"position": "1230000"
},
{
"important": false,
"gameTime": "2 - 20:07",
"label": "",
"description": "A dangerous towering header by Raphael Varane (Real Madrid) from around the penalty spot goes just over the bar. This corner kick didn't change the score.",
"identified": "A dangerous towering header by [PLAYER_t20vQIvC] ([TEAM_]) from around the penalty spot goes just over the bar. This corner kick didn't change the score.",
"anonymized": "A dangerous towering header by [PLAYER] ([TEAM]) from around the penalty spot goes just over the bar. This corner kick didn't change the score.",
"visibility": "shown",
"position": "1207000"
},
{
"important": false,
"gameTime": "2 - 19:20",
"label": "corner",
"description": "will try to find the head of one of his teammates from a corner kick.",
"identified": "will try to find the head of one of his teammates from a corner kick.",
"anonymized": "will try to find the head of one of his teammates from a corner kick.",
"visibility": "shown",
"position": "1160000"
},
{
"important": false,
"gameTime": "2 - 18:52",
"label": "",
"description": "Great solo effort by Cristiano Ronaldo (Real Madrid) as he tricks his way past two defenders before firing in a drive from long range towards the bottom right corner. The goalkeeper is alert and makes a save. The ball is out of play and the linesman points at the corner flag. Corner to Real Madrid.",
"identified": "Great solo effort by [PLAYER_WGOY4FSt] ([TEAM_]) as he tricks his way past two defenders before firing in a drive from long range towards the bottom right corner. The goalkeeper is alert and makes a save. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "Great solo effort by [PLAYER] ([TEAM]) as he tricks his way past two defenders before firing in a drive from long range towards the bottom right corner. The goalkeeper is alert and makes a save. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "1132000"
},
{
"important": false,
"gameTime": "2 - 18:22",
"label": "",
"description": "Real Madrid are dominating the game at the moment by exchanging a combination of one or two touch passes. Great harmony between the players.",
"identified": "[TEAM_] are dominating the game at the moment by exchanging a combination of one or two touch passes. Great harmony between the players.",
"anonymized": "[TEAM] are dominating the game at the moment by exchanging a combination of one or two touch passes. Great harmony between the players.",
"visibility": "shown",
"position": "1102000"
},
{
"important": true,
"gameTime": "2 - 16:17",
"label": "substitution",
"description": "Rafael Benitez has decided to introduce fresh legs, with Mateo Kovacic (Real Madrid) replacing Toni Kroos.",
"identified": "[COACH_4fN6car1] has decided to introduce fresh legs, with [PLAYER_4f084TL7] ([TEAM_]) replacing [PLAYER_CloE7jjr].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "977000"
},
{
"important": true,
"gameTime": "2 - 15:46",
"label": "substitution",
"description": "Isaac Success comes off the pitch to be replaced by Robert Ibanez (Granada CF).",
"identified": "[PLAYER_QHFpL8c2] comes off the pitch to be replaced by [PLAYER_xWF7Cnzf] ([TEAM_]).",
"anonymized": "[PLAYER] comes off the pitch to be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "946000"
},
{
"important": false,
"gameTime": "2 - 13:50",
"label": "",
"description": "Youssef El Arabi (Granada CF) dribbled past his opponents before finding himself in a great position to strike. But his low attempt from just outside of the box went straight towards the middle of the goal and Keylor Navas made a comfortable save.",
"identified": "[PLAYER_8fNPeO0k] ([TEAM_]) dribbled past his opponents before finding himself in a great position to strike. But his low attempt from just outside of the box went straight towards the middle of the goal and [PLAYER_dQEusiKl] made a comfortable save.",
"anonymized": "[PLAYER] ([TEAM]) dribbled past his opponents before finding himself in a great position to strike. But his low attempt from just outside of the box went straight towards the middle of the goal and [PLAYER] made a comfortable save.",
"visibility": "shown",
"position": "830000"
},
{
"important": false,
"gameTime": "2 - 13:15",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) rises above the defending players to meet the corner kick. His precise header looks to be going under the crossbar, but Andres Fernandez is alert and somehow manages to keep the ball out.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) rises above the defending players to meet the corner kick. His precise header looks to be going under the crossbar, but [PLAYER_8Wp8ZCLG] is alert and somehow manages to keep the ball out.",
"anonymized": "[PLAYER] ([TEAM]) rises above the defending players to meet the corner kick. His precise header looks to be going under the crossbar, but [PLAYER] is alert and somehow manages to keep the ball out.",
"visibility": "shown",
"position": "795000"
},
{
"important": false,
"gameTime": "2 - 12:53",
"label": "corner",
"description": "There's an opportunity for Toni Kroos (Real Madrid) to deliver the ball into the box from a corner.",
"identified": "There's an opportunity for [PLAYER_CloE7jjr] ([TEAM_]) to deliver the ball into the box from a corner.",
"anonymized": "There's an opportunity for [PLAYER] ([TEAM]) to deliver the ball into the box from a corner.",
"visibility": "shown",
"position": "773000"
},
{
"important": false,
"gameTime": "2 - 12:29",
"label": "",
"description": "The ball is cleared after Marcelo (Real Madrid) attempted to dribble past an opposing player. Real Madrid have been awarded a corner kick.",
"identified": "The ball is cleared after [PLAYER_zmAm2AEH] ([TEAM_]) attempted to dribble past an opposing player. [TEAM_] have been awarded a corner kick.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "749000"
},
{
"important": true,
"gameTime": "2 - 09:44",
"label": "soccer-ball",
"description": "A perfect lofted pass from Isco finds Karim Benzema (Real Madrid), who jumps highest and steers a close-range header in the countermovement of the goalkeeper. His effort was both strong and precise, and Andres Fernandez had no chance of stopping that. 0:0.",
"identified": "A perfect lofted pass from [PLAYER_ULLmpdEb] finds [PLAYER_tpV0VX0S] ([TEAM_]), who jumps highest and steers a close-range header in the countermovement of the goalkeeper. His effort was both strong and precise, and [PLAYER_8Wp8ZCLG] had no chance of stopping that. 0:0.",
"anonymized": "A perfect lofted pass from [PLAYER] finds [PLAYER] ([TEAM]), who jumps highest and steers a close-range header in the countermovement of the goalkeeper. His effort was both strong and precise, and [PLAYER] had no chance of stopping that. 0:0.",
"visibility": "shown",
"position": "584000"
},
{
"important": false,
"gameTime": "2 - 08:56",
"label": "",
"description": "Juan Martinez Munuera blows the whistle, Javier Marquez (Granada CF) is penalised for a foul. Free kick. Real Madrid will probably just try to cross the ball in from here.",
"identified": "[REFEREE] blows the whistle, [PLAYER_EDPjpUC2] ([TEAM_]) is penalised for a foul. Free kick. [TEAM_] will probably just try to cross the ball in from here.",
"anonymized": "[REFEREE] blows the whistle, [PLAYER] ([TEAM]) is penalised for a foul. Free kick. [TEAM] will probably just try to cross the ball in from here.",
"visibility": "shown",
"position": "536000"
},
{
"important": true,
"gameTime": "2 - 06:20",
"label": "",
"description": "What a chance that is! Isaac Success (Granada CF) finds himself in a promising position after receiving a pass on the edge of the box. His attempt goes just over the bar.",
"identified": "What a chance that is! [PLAYER_QHFpL8c2] ([TEAM_]) finds himself in a promising position after receiving a pass on the edge of the box. His attempt goes just over the bar.",
"anonymized": "What a chance that is! [PLAYER] ([TEAM]) finds himself in a promising position after receiving a pass on the edge of the box. His attempt goes just over the bar.",
"visibility": "shown",
"position": "380000"
},
{
"important": false,
"gameTime": "2 - 05:16",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) cracks a volley from just outside the box, but his miskick goes skyward. The ball is off of the pitch and it's a goal kick for Granada CF.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) cracks a volley from just outside the box, but his miskick goes skyward. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) cracks a volley from just outside the box, but his miskick goes skyward. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "316000"
},
{
"important": false,
"gameTime": "2 - 03:50",
"label": "",
"description": "Real Madrid keep possession of the ball by producing short passes and one-two passes from player to player.",
"identified": "[TEAM_] keep possession of the ball by producing short passes and one-two passes from player to player.",
"anonymized": "[TEAM] keep possession of the ball by producing short passes and one-two passes from player to player.",
"visibility": "shown",
"position": "230000"
},
{
"important": false,
"gameTime": "2 - 03:03",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Isco (Real Madrid).",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_ULLmpdEb] ([TEAM_]).",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "183000"
},
{
"important": false,
"gameTime": "2 - 00:48",
"label": "",
"description": "A great solo effort from Cristiano Ronaldo (Real Madrid) and he attempts to surprise the goalkeeper with a long-range shot low towards the middle of the goal. Andres Fernandez has a clear view of it and makes a comfortable save.",
"identified": "A great solo effort from [PLAYER_WGOY4FSt] ([TEAM_]) and he attempts to surprise the goalkeeper with a long-range shot low towards the middle of the goal. [PLAYER_8Wp8ZCLG] has a clear view of it and makes a comfortable save.",
"anonymized": "A great solo effort from [PLAYER] ([TEAM]) and he attempts to surprise the goalkeeper with a long-range shot low towards the middle of the goal. [PLAYER] has a clear view of it and makes a comfortable save.",
"visibility": "shown",
"position": "48000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The referee blows his whistle to signal the start of the second half.",
"identified": "The referee blows his whistle to signal the start of the second half.",
"anonymized": "The referee blows his whistle to signal the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "Well, a decent first half here. It's certainly not boring, but not the best match either. Real Madrid dominated the opening period and easily created the most chances. The home team are playing possession football, while the away team look to find a weakness in the opposition's defence mainly with their rapid counter-attacks.",
"identified": "Well, a decent first half here. It's certainly not boring, but not the best match either. [TEAM_] dominated the opening period and easily created the most chances. The home team are playing possession football, while the away team look to find a weakness in the opposition's defence mainly with their rapid counter-attacks.",
"anonymized": "Well, a decent first half here. It's certainly not boring, but not the best match either. [TEAM] dominated the opening period and easily created the most chances. The home team are playing possession football, while the away team look to find a weakness in the opposition's defence mainly with their rapid counter-attacks.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:27",
"label": "whistle",
"description": "The match has reached half-time.",
"identified": "The match has reached half-time.",
"anonymized": "The match has reached half-time.",
"visibility": "shown",
"position": "2727000"
},
{
"important": false,
"gameTime": "1 - 44:57",
"label": "",
"description": "Karim Benzema (Real Madrid) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance.",
"visibility": "shown",
"position": "2697000"
},
{
"important": false,
"gameTime": "1 - 44:14",
"label": "",
"description": "Karim Benzema (Real Madrid) tries to find Cristiano Ronaldo, but he puts too much power on the pass.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) tries to find [PLAYER_WGOY4FSt], but he puts too much power on the pass.",
"anonymized": "[PLAYER] ([TEAM]) tries to find [PLAYER], but he puts too much power on the pass.",
"visibility": "shown",
"position": "2654000"
},
{
"important": false,
"gameTime": "1 - 43:30",
"label": "",
"description": "A rebound falls at the feet of Miguel Lopes (Granada CF) who unleashes a shot from long range towards the goal. However, his effort is poor and it flies high over the crossbar.",
"identified": "A rebound falls at the feet of [PLAYER_ERGVVjyO] ([TEAM_]) who unleashes a shot from long range towards the goal. However, his effort is poor and it flies high over the crossbar.",
"anonymized": "A rebound falls at the feet of [PLAYER] ([TEAM]) who unleashes a shot from long range towards the goal. However, his effort is poor and it flies high over the crossbar.",
"visibility": "shown",
"position": "2610000"
},
{
"important": true,
"gameTime": "1 - 42:49",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Isco (Real Madrid) was quite harsh and Juan Martinez Munuera didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_ULLmpdEb] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"anonymized": "This yellow card was deserved. The tackle by [PLAYER] ([TEAM]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"visibility": "shown",
"position": "2569000"
},
{
"important": true,
"gameTime": "1 - 40:57",
"label": "",
"description": "That was close by Isco (Real Madrid)! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the left post.",
"identified": "That was close by [PLAYER_ULLmpdEb] ([TEAM_])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the left post.",
"anonymized": "That was close by [PLAYER] ([TEAM])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the left post.",
"visibility": "shown",
"position": "2457000"
},
{
"important": false,
"gameTime": "1 - 38:28",
"label": "",
"description": "Isaac Success (Granada CF) latches on to a precise defence-splitting pass and drills a nice strike from a promising distance towards the middle of the goal. Keylor Navas has a clear sight of it and makes a comfortable save.",
"identified": "[PLAYER_QHFpL8c2] ([TEAM_]) latches on to a precise defence-splitting pass and drills a nice strike from a promising distance towards the middle of the goal. [PLAYER_dQEusiKl] has a clear sight of it and makes a comfortable save.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise defence-splitting pass and drills a nice strike from a promising distance towards the middle of the goal. [PLAYER] has a clear sight of it and makes a comfortable save.",
"visibility": "shown",
"position": "2308000"
},
{
"important": false,
"gameTime": "1 - 37:11",
"label": "",
"description": "The linesman raises his flag. Cristiano Ronaldo (Real Madrid) is adjudged offside.",
"identified": "The linesman raises his flag. [PLAYER_WGOY4FSt] ([TEAM_]) is adjudged offside.",
"anonymized": "The linesman raises his flag. [PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "2231000"
},
{
"important": false,
"gameTime": "1 - 35:30",
"label": "",
"description": "The foul by Karim Benzema (Real Madrid) was seen by Juan Martinez Munuera who didn't hesitate to blow the whistle.",
"identified": "The foul by [PLAYER_tpV0VX0S] ([TEAM_]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"anonymized": "The foul by [PLAYER] ([TEAM]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"visibility": "shown",
"position": "2130000"
},
{
"important": true,
"gameTime": "1 - 34:42",
"label": "y-card",
"description": "Edgar Mendez (Granada CF) commits a foul and is shown a yellow card without any hesitation from the referee.",
"identified": "[PLAYER_GUK7yL4Q] ([TEAM_]) commits a foul and is shown a yellow card without any hesitation from the referee.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul and is shown a yellow card without any hesitation from the referee.",
"visibility": "shown",
"position": "2082000"
},
{
"important": false,
"gameTime": "1 - 32:12",
"label": "",
"description": "Granada CF are happy showing off their ball keeping skills and that is only interrupted when the defender steps in.",
"identified": "[TEAM_] are happy showing off their ball keeping skills and that is only interrupted when the defender steps in.",
"anonymized": "[TEAM] are happy showing off their ball keeping skills and that is only interrupted when the defender steps in.",
"visibility": "shown",
"position": "1932000"
},
{
"important": true,
"gameTime": "1 - 30:29",
"label": "",
"description": "Luka Modric (Real Madrid) darts into the penalty area to latch on to a pass, and he unleashes a low shot in the direction of the right post. Andres Fernandez is alert and denies him with a nice save.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) darts into the penalty area to latch on to a pass, and he unleashes a low shot in the direction of the right post. [PLAYER_8Wp8ZCLG] is alert and denies him with a nice save.",
"anonymized": "[PLAYER] ([TEAM]) darts into the penalty area to latch on to a pass, and he unleashes a low shot in the direction of the right post. [PLAYER] is alert and denies him with a nice save.",
"visibility": "shown",
"position": "1829000"
},
{
"important": false,
"gameTime": "1 - 27:46",
"label": "",
"description": "Karim Benzema (Real Madrid) produces a dangerous low pass into the penalty area, but the defence manage to cut it out.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) produces a dangerous low pass into the penalty area, but the defence manage to cut it out.",
"anonymized": "[PLAYER] ([TEAM]) produces a dangerous low pass into the penalty area, but the defence manage to cut it out.",
"visibility": "shown",
"position": "1666000"
},
{
"important": false,
"gameTime": "1 - 26:22",
"label": "",
"description": "Real Madrid are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"identified": "[TEAM_] are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"anonymized": "[TEAM] are showcasing great team work by exchanging some short passes and one-two passes, waiting to open the opposition's defence and hit them swiftly on the break.",
"visibility": "shown",
"position": "1582000"
},
{
"important": false,
"gameTime": "1 - 24:33",
"label": "",
"description": "The free kick into the box finds Youseff El Arabi (Granada CF), who directs his header into the middle of the goal, but the keeper pulls off a fantastic reflex save. Great goalkeeping.",
"identified": "The free kick into the box finds [PLAYER_8fNPeO0k] ([TEAM_]), who directs his header into the middle of the goal, but the keeper pulls off a fantastic reflex save. Great goalkeeping.",
"anonymized": "The free kick into the box finds [PLAYER] ([TEAM]), who directs his header into the middle of the goal, but the keeper pulls off a fantastic reflex save. Great goalkeeping.",
"visibility": "shown",
"position": "1473000"
},
{
"important": false,
"gameTime": "1 - 24:02",
"label": "",
"description": "Isco (Real Madrid) fouls an opponent. At least that's what referee Juan Martinez Munuera signals. Granada CF are awarded a free kick. Let's see what they create from this.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM_] are awarded a free kick. Let's see what they create from this.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM] are awarded a free kick. Let's see what they create from this.",
"visibility": "shown",
"position": "1442000"
},
{
"important": false,
"gameTime": "1 - 23:35",
"label": "",
"description": "The corner kick is deflected to Isco (Real Madrid), who immediately sends in a long-range shot. However, he hits the ball poorly and it goes high over the bar. The ball is off of the pitch and it's a goal kick for Granada CF.",
"identified": "The corner kick is deflected to [PLAYER_ULLmpdEb] ([TEAM_]), who immediately sends in a long-range shot. However, he hits the ball poorly and it goes high over the bar. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "The corner kick is deflected to [PLAYER] ([TEAM]), who immediately sends in a long-range shot. However, he hits the ball poorly and it goes high over the bar. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1415000"
},
{
"important": false,
"gameTime": "1 - 23:29",
"label": "corner",
"description": "Luka Modric (Real Madrid) will take the corner.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) will take the corner.",
"anonymized": "[PLAYER] ([TEAM]) will take the corner.",
"visibility": "shown",
"position": "1409000"
},
{
"important": false,
"gameTime": "1 - 22:37",
"label": "",
"description": "Real Madrid show off their ball retention skills as they exchange one-two passes and the move is only interrupted when the final pass is intercepted. The linesman points to the corner flag, Real Madrid are going to take it.",
"identified": "[TEAM_] show off their ball retention skills as they exchange one-two passes and the move is only interrupted when the final pass is intercepted. The linesman points to the corner flag, [TEAM_] are going to take it.",
"anonymized": "[TEAM] show off their ball retention skills as they exchange one-two passes and the move is only interrupted when the final pass is intercepted. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "1357000"
},
{
"important": false,
"gameTime": "1 - 22:20",
"label": "corner",
"description": "The corner from Luka Modric (Real Madrid) is hurriedly cleared.",
"identified": "The corner from [PLAYER_bZWyoJnA] ([TEAM_]) is hurriedly cleared.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is hurriedly cleared.",
"visibility": "shown",
"position": "1340000"
},
{
"important": false,
"gameTime": "1 - 21:50",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) tries his luck from a long-range free kick and the ball is aimed to low to the middle, but Andres Fernandez is alert and thwarts the effort. Good work from Real Madrid as they win a corner.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) tries his luck from a long-range free kick and the ball is aimed to low to the middle, but [PLAYER_8Wp8ZCLG] is alert and thwarts the effort. Good work from [TEAM_] as they win a corner.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck from a long-range free kick and the ball is aimed to low to the middle, but [PLAYER] is alert and thwarts the effort. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "1310000"
},
{
"important": false,
"gameTime": "1 - 20:39",
"label": "",
"description": "Edgar Mendez (Granada CF) brings his opponent down. Juan Martinez Munuera has a clear sight of it and blows his whistle for a foul. Real Madrid have been awarded a free kick.",
"identified": "[PLAYER_GUK7yL4Q] ([TEAM_]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul. [TEAM_] have been awarded a free kick.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul. [TEAM] have been awarded a free kick.",
"visibility": "shown",
"position": "1239000"
},
{
"important": false,
"gameTime": "1 - 19:46",
"label": "",
"description": "Youseff El Arabi (Granada CF) is forced to stop his attacking move after the linesman signals for offside.",
"identified": "[PLAYER_8fNPeO0k] ([TEAM_]) is forced to stop his attacking move after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) is forced to stop his attacking move after the linesman signals for offside.",
"visibility": "shown",
"position": "1186000"
},
{
"important": true,
"gameTime": "1 - 18:54",
"label": "",
"description": "A neat pass is well received by Cristiano Ronaldo (Real Madrid), who is lurking on the edge of the box and strikes the ball towards the bottom right corner, but the goalkeeper makes an incredible save to block his shot.",
"identified": "A neat pass is well received by [PLAYER_WGOY4FSt] ([TEAM_]), who is lurking on the edge of the box and strikes the ball towards the bottom right corner, but the goalkeeper makes an incredible save to block his shot.",
"anonymized": "A neat pass is well received by [PLAYER] ([TEAM]), who is lurking on the edge of the box and strikes the ball towards the bottom right corner, but the goalkeeper makes an incredible save to block his shot.",
"visibility": "shown",
"position": "1134000"
},
{
"important": false,
"gameTime": "1 - 17:24",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) attempts to find Karim Benzema, but puts far too much on the pass and the chance is gone. The ball goes out of play and Granada CF will have a goal kick.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) attempts to find [PLAYER_tpV0VX0S], but puts far too much on the pass and the chance is gone. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find [PLAYER], but puts far too much on the pass and the chance is gone. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1044000"
},
{
"important": false,
"gameTime": "1 - 16:30",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) races towards goal but the defender gets back well to make a challenge.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "990000"
},
{
"important": false,
"gameTime": "1 - 15:11",
"label": "",
"description": "Cristiano Biraghi (Granada CF) commits a rough foul. Juan Martinez Munuera stops the game and makes a call. It's a free kick to Real Madrid, but it's in no position for a direct shot on goal.",
"identified": "[PLAYER_h81ElhF9] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call. It's a free kick to [TEAM_], but it's in no position for a direct shot on goal.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call. It's a free kick to [TEAM], but it's in no position for a direct shot on goal.",
"visibility": "shown",
"position": "911000"
},
{
"important": false,
"gameTime": "1 - 13:28",
"label": "",
"description": "Isco (Real Madrid) tries his luck with a low long-range effort after receiving a precise pass, but Andres Fernandez has a clear view of it and makes a comfortable save.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) tries his luck with a low long-range effort after receiving a precise pass, but [PLAYER_8Wp8ZCLG] has a clear view of it and makes a comfortable save.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck with a low long-range effort after receiving a precise pass, but [PLAYER] has a clear view of it and makes a comfortable save.",
"visibility": "shown",
"position": "808000"
},
{
"important": false,
"gameTime": "1 - 13:19",
"label": "corner",
"description": "Luka Modric (Real Madrid) goes over to take the corner kick and it looks like he will swing the ball into the penalty box.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) goes over to take the corner kick and it looks like he will swing the ball into the penalty box.",
"anonymized": "[PLAYER] ([TEAM]) goes over to take the corner kick and it looks like he will swing the ball into the penalty box.",
"visibility": "shown",
"position": "799000"
},
{
"important": false,
"gameTime": "1 - 12:34",
"label": "",
"description": "Luka Modric (Real Madrid) looks to break free, but an opposing player clears the ball away. The ball is out of play and Real Madrid manage to earn a corner.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "754000"
},
{
"important": false,
"gameTime": "1 - 11:52",
"label": "",
"description": "Karim Benzema (Real Madrid) flights in the cross, but the defender is alert and clears to safety.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) flights in the cross, but the defender is alert and clears to safety.",
"anonymized": "[PLAYER] ([TEAM]) flights in the cross, but the defender is alert and clears to safety.",
"visibility": "shown",
"position": "712000"
},
{
"important": false,
"gameTime": "1 - 11:11",
"label": "corner",
"description": "Toni Kroos (Real Madrid) works the corner short instead of sending the ball into the penalty area.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) works the corner short instead of sending the ball into the penalty area.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short instead of sending the ball into the penalty area.",
"visibility": "shown",
"position": "671000"
},
{
"important": false,
"gameTime": "1 - 10:54",
"label": "",
"description": "Real Madrid are happy to keep the ball as they wait for gaps in defence to open up. However, an opposing player steps in and clears. The ball goes out for a corner. Real Madrid can continue in their attacking effort.",
"identified": "[TEAM_] are happy to keep the ball as they wait for gaps in defence to open up. However, an opposing player steps in and clears. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[TEAM] are happy to keep the ball as they wait for gaps in defence to open up. However, an opposing player steps in and clears. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "654000"
}
]
} |