File size: 89,228 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 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 |
{
"timestamp": "1442066400",
"score": "0 - 6",
"round": "3",
"teams": [
"Espanyol",
"Real Madrid"
],
"lineup": {
"home": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "dpRLkUnA",
"name": "Alvarez V.",
"captain": "",
"detail_link": "/player/alvarez-victor/dpRLkUnA/",
"short_name": "Alvarez",
"shirt_number": "5",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Victor Alvarez"
},
{
"hash": "I5wpPbNu",
"name": "Arbilla A.",
"captain": "",
"detail_link": "/player/arbilla-anaitz/I5wpPbNu/",
"short_name": "Arbilla",
"shirt_number": "23",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Anaitz Arbilla"
},
{
"hash": "Eoeam8Xf",
"name": "Caicedo F.",
"captain": "",
"detail_link": "/player/caicedo-felipe/Eoeam8Xf/",
"short_name": "Caicedo",
"shirt_number": "20",
"country": "Ecuador",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Felipe Caicedo"
},
{
"hash": "GYRV1t4h",
"name": "Ciani M.",
"captain": "",
"detail_link": "/player/ciani-michael/GYRV1t4h/",
"short_name": "Ciani",
"shirt_number": "15",
"country": "France",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Montanes P.",
"linked_player_hash": "WAorJn39"
}
],
"lineup": 3,
"starting": true,
"long_name": "Michael Ciani"
},
{
"hash": "r5rLTJOE",
"name": "Duarte R.",
"captain": "",
"detail_link": "/player/duarte-ruben/r5rLTJOE/",
"short_name": "Duarte",
"shirt_number": "3",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Ruben Duarte"
},
{
"hash": "4ScdNNhe",
"name": "Gonzalez A.",
"captain": "",
"detail_link": "/player/alvaro/4ScdNNhe/",
"short_name": "Gonzalez",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "16' Gonzalez A. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Alvaro Gonzalez"
},
{
"hash": "4rpQeIAP",
"name": "Lopez J.",
"captain": "(C)",
"detail_link": "/player/lopez-javi/4rpQeIAP/",
"short_name": "Lopez",
"shirt_number": "16",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Canas J.",
"linked_player_hash": "MPJuofoj"
}
],
"lineup": 8,
"starting": true,
"long_name": "Javi Lopez"
},
{
"hash": "rZes9CKA",
"name": "Lopez P.",
"captain": "",
"detail_link": "/player/lopez-pau/rZes9CKA/",
"short_name": "Lopez",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Pau Lopez"
},
{
"hash": "UwfDD083",
"name": "Moreno G.",
"captain": "",
"detail_link": "/player/moreno-gerard/UwfDD083/",
"short_name": "Moreno",
"shirt_number": "7",
"country": "Spain",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Gerard Moreno"
},
{
"hash": "0tOkXfCH",
"name": "Sanchez V.",
"captain": "",
"detail_link": "/player/sanchez-victor-mata/0tOkXfCH/",
"short_name": "Sanchez",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "65'",
"description": "Joan Jordan",
"linked_player_hash": "v7lhr0kA"
}
],
"lineup": 7,
"starting": true,
"long_name": "Victor Sanchez"
},
{
"hash": "rFMIs7n0",
"name": "Sevilla S.",
"captain": "",
"detail_link": "/player/sevilla-salva/rFMIs7n0/",
"short_name": "Sevilla",
"shirt_number": "8",
"country": "Spain",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Salva Sevilla"
},
{
"hash": "6wVqSqO0",
"name": "Bardi F.",
"captain": "",
"detail_link": "/player/bardi-francesco/6wVqSqO0/",
"short_name": "Bardi",
"shirt_number": "1",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Francesco Bardi"
},
{
"hash": "MPJuofoj",
"name": "Canas J.",
"captain": "",
"detail_link": "/player/canas-jose/MPJuofoj/",
"short_name": "Canas",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Lopez J.",
"linked_player_hash": "4rpQeIAP"
},
{
"type": "1",
"time": "66' Canas J. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Jose Canas"
},
{
"hash": "fHHxCGrE",
"name": "Fuentes J. R.",
"captain": "",
"detail_link": "/player/fuentes-juan-rafael/fHHxCGrE/",
"short_name": "Fuentes",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Juan Rafael Fuentes"
},
{
"hash": "v7lhr0kA",
"name": "Joan Jordan",
"captain": "",
"detail_link": "/player/joan-jordan/v7lhr0kA/",
"short_name": "Joan Jordan",
"shirt_number": "19",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "65'",
"description": "Sanchez V.",
"linked_player_hash": "0tOkXfCH"
}
],
"lineup": null,
"starting": false,
"long_name": "Joan Jordan"
},
{
"hash": "WAorJn39",
"name": "Montanes P.",
"captain": "",
"detail_link": "/player/montanes-paco/WAorJn39/",
"short_name": "Montanes",
"shirt_number": "11",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Ciani M.",
"linked_player_hash": "GYRV1t4h"
}
],
"lineup": null,
"starting": false,
"long_name": "Paco Montanes"
},
{
"hash": "p8RSvp74",
"name": "Raillo A.",
"captain": "",
"detail_link": "/player/raillo-antonio/p8RSvp74/",
"short_name": "Raillo",
"shirt_number": "24",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Antonio Raillo"
},
{
"hash": "YqtgOOMN",
"name": "Sylla M.",
"captain": "",
"detail_link": "/player/sylla-mamadou/YqtgOOMN/",
"short_name": "Sylla",
"shirt_number": "28",
"country": "Senegal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mamadou Sylla"
}
],
"coach": [
{
"hash": "O0reUJHU",
"name": "Sergio",
"captain": "",
"detail_link": "/player/gonzalez-sergio/O0reUJHU/",
"short_name": "Sergio",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sergio"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "4SPjLLiR",
"name": "Bale G.",
"captain": "",
"detail_link": "/player/bale-gareth/4SPjLLiR/",
"short_name": "Bale",
"shirt_number": "11",
"country": "Wales",
"facts": [
{
"type": "8",
"time": "20' Ronaldo C. (Bale G.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "8",
"time": "61' Ronaldo C. (Bale G.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Gareth Bale"
},
{
"hash": "tpV0VX0S",
"name": "Benzema K.",
"captain": "",
"detail_link": "/player/benzema-karim/tpV0VX0S/",
"short_name": "Benzema",
"shirt_number": "9",
"country": "France",
"facts": [
{
"type": "3",
"time": "28' Benzema K. (Ronaldo C.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "36' Benzema K. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "63'",
"description": "Lucas",
"linked_player_hash": "pEjBDsSH"
}
],
"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": "Ukeq3c0b",
"name": "Casemiro",
"captain": "",
"detail_link": "/player/casemiro/Ukeq3c0b/",
"short_name": "Casemiro",
"shirt_number": "14",
"country": "Brazil",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Casemiro"
},
{
"hash": "ULLmpdEb",
"name": "Isco",
"captain": "",
"detail_link": "/player/isco/ULLmpdEb/",
"short_name": "Isco",
"shirt_number": "22",
"country": "Spain",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Isco"
},
{
"hash": "zmAm2AEH",
"name": "Marcelo",
"captain": "",
"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": [
{
"type": "8",
"time": "7' Ronaldo C. (Modric L.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "56'",
"description": "Kovacic M.",
"linked_player_hash": "4f084TL7"
}
],
"lineup": 7,
"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": "db8mbBaO",
"name": "Ramos S.",
"captain": "(C)",
"detail_link": "/player/ramos-sergio/db8mbBaO/",
"short_name": "Ramos",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "75'",
"description": "Varane R.",
"linked_player_hash": "t20vQIvC"
}
],
"lineup": 4,
"starting": true,
"long_name": "Sergio Ramos"
},
{
"hash": "WGOY4FSt",
"name": "Ronaldo C.",
"captain": "",
"detail_link": "/player/ronaldo-cristiano/WGOY4FSt/",
"short_name": "Ronaldo",
"shirt_number": "7",
"country": "Portugal",
"facts": [
{
"type": "3",
"time": "7' Ronaldo C. (Modric L.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "20' Ronaldo C. (Bale G.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "8",
"time": "28' Benzema K. (Ronaldo C.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "61' Ronaldo C. (Bale G.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "81' Ronaldo C. (Lucas)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Cristiano Ronaldo"
},
{
"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": "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": "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": "56'",
"description": "Modric L.",
"linked_player_hash": "bZWyoJnA"
},
{
"type": "1",
"time": "69' Kovacic M. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Mateo Kovacic"
},
{
"hash": "CloE7jjr",
"name": "Kroos T.",
"captain": "",
"detail_link": "/player/kroos-toni/CloE7jjr/",
"short_name": "Kroos",
"shirt_number": "8",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Toni Kroos"
},
{
"hash": "pEjBDsSH",
"name": "Lucas",
"captain": "",
"detail_link": "/player/lucas/pEjBDsSH/",
"short_name": "Vazquez",
"shirt_number": "18",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "63'",
"description": "Benzema K.",
"linked_player_hash": "tpV0VX0S"
},
{
"type": "8",
"time": "81' Ronaldo C. (Lucas)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Lucas Vazquez"
},
{
"hash": "t20vQIvC",
"name": "Varane R.",
"captain": "",
"detail_link": "/player/varane-raphael/t20vQIvC/",
"short_name": "Varane",
"shirt_number": "2",
"country": "France",
"facts": [
{
"type": "7",
"time": "75'",
"description": "Ramos S.",
"linked_player_hash": "db8mbBaO"
}
],
"lineup": null,
"starting": false,
"long_name": "Raphael Varane"
}
],
"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"
}
]
}
},
"referee": [
"Bikandi I."
],
"venue": [
"RCDE Stadium (Cornella de Llobregat)"
],
"attendance": [
"32 155"
],
"referee_matched": [
"Inaki Bikandi"
],
"referee_found": [
"Inaki Bikandi"
],
"coach_matched": [
"Rafael Benitez",
"Sergio"
],
"gameHomeTeam": "Espanyol",
"home": {
"name": "Espanyol",
"detail_link": "/team/espanyol/QFfPdh1J",
"hash": "QFfPdh1J",
"names": [
"Espanyol",
"Espanyol (Esp)",
"espanyol"
]
},
"gameAwayTeam": "Real Madrid",
"away": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameDate": "12/09/2015 - 16:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 45:59",
"label": "",
"description": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. The Real Madrid fans must be pleased with the performance of their team. They were absolutely the better of the two sides. The home side was creating their opportunities using lightning-fast counter-attacks. The tactic of the away side was slow build-up play.",
"identified": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. The [TEAM_] fans must be pleased with the performance of their team. They were absolutely the better of the two sides. The home side was creating their opportunities using lightning-fast counter-attacks. The tactic of the away side was slow build-up play.",
"anonymized": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. The [TEAM] fans must be pleased with the performance of their team. They were absolutely the better of the two sides. The home side was creating their opportunities using lightning-fast counter-attacks. The tactic of the away side was slow build-up play.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "2 - 45:12",
"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": "2712000"
},
{
"important": false,
"gameTime": "2 - 44:06",
"label": "",
"description": "Felipe Caicedo (Espanyol) unleashes a shot, but it's well wide of the left-hand post.",
"identified": "[PLAYER_Eoeam8Xf] ([TEAM_]) unleashes a shot, but it's well wide of the left-hand post.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot, but it's well wide of the left-hand post.",
"visibility": "shown",
"position": "2646000"
},
{
"important": false,
"gameTime": "2 - 43:16",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) commits a foul after unfairly battling his opponent for the ball.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) commits a foul after unfairly battling his opponent for the ball.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after unfairly battling his opponent for the ball.",
"visibility": "shown",
"position": "2596000"
},
{
"important": false,
"gameTime": "2 - 42:59",
"label": "corner",
"description": "The ball is whipped in from the corner by Isco (Real Madrid), but one of the defenders gets it clear.",
"identified": "The ball is whipped in from the corner by [PLAYER_ULLmpdEb] ([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": "2579000"
},
{
"important": false,
"gameTime": "2 - 42:35",
"label": "",
"description": "goes on a mazy run through the defence and gets within shooting range inside the box, but his effort to the bottom right corner is thwarted by Pau Lopez (Espanyol). The ball goes out of play. Real Madrid are awarded a corner kick.",
"identified": "goes on a mazy run through the defence and gets within shooting range inside the box, but his effort to the bottom right corner is thwarted by [PLAYER_rZes9CKA] ([TEAM_]). The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "goes on a mazy run through the defence and gets within shooting range inside the box, but his effort to the bottom right corner is thwarted by [PLAYER] ([TEAM]). The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2555000"
},
{
"important": false,
"gameTime": "2 - 42:23",
"label": "",
"description": "Real Madrid are showing great team chemistry. They are passing the ball around seamlessly.",
"identified": "[TEAM_] are showing great team chemistry. They are passing the ball around seamlessly.",
"anonymized": "[TEAM] are showing great team chemistry. They are passing the ball around seamlessly.",
"visibility": "shown",
"position": "2543000"
},
{
"important": false,
"gameTime": "2 - 39:59",
"label": "corner",
"description": "Isco (Real Madrid) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"identified": "[PLAYER_ULLmpdEb] ([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": "2399000"
},
{
"important": false,
"gameTime": "2 - 39:46",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The linesman makes the right call and Real Madrid will have a corner.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "2386000"
},
{
"important": true,
"gameTime": "2 - 38:37",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) latches on to a lofted pass and strikes the ball! His attempt flies narrowly wide of the right post.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) latches on to a lofted pass and strikes the ball! His attempt flies narrowly wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a lofted pass and strikes the ball! His attempt flies narrowly wide of the right post.",
"visibility": "shown",
"position": "2317000"
},
{
"important": false,
"gameTime": "2 - 37:35",
"label": "",
"description": "A pass from Salva Sevilla (Espanyol) is intercepted by Keylor Navas and the move breaks down.",
"identified": "A pass from [PLAYER_rFMIs7n0] ([TEAM_]) is intercepted by [PLAYER_dQEusiKl] and the move breaks down.",
"anonymized": "A pass from [PLAYER] ([TEAM]) is intercepted by [PLAYER] and the move breaks down.",
"visibility": "shown",
"position": "2255000"
},
{
"important": true,
"gameTime": "2 - 35:41",
"label": "soccer-ball",
"description": "Goal! plays a pass to the feet of Cristiano Ronaldo (Real Madrid), and he shoots into the bottom right corner from inside the box. It's 0:6.",
"identified": "Goal! plays a pass to the feet of [PLAYER_WGOY4FSt] ([TEAM_]), and he shoots into the bottom right corner from inside the box. It's 0:6.",
"anonymized": "Goal! plays a pass to the feet of [PLAYER] ([TEAM]), and he shoots into the bottom right corner from inside the box. It's 0:6.",
"visibility": "shown",
"position": "2141000"
},
{
"important": false,
"gameTime": "2 - 34:26",
"label": "",
"description": "Victor Alvarez (Espanyol) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_dpRLkUnA] ([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": "2066000"
},
{
"important": false,
"gameTime": "2 - 32:10",
"label": "",
"description": "The Espanyol players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"identified": "The [TEAM_] players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"anonymized": "The [TEAM] players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"visibility": "shown",
"position": "1930000"
},
{
"important": true,
"gameTime": "2 - 29:21",
"label": "substitution",
"description": "We are about to witness a substitution. Raphael Varane (Real Madrid) is replacing Sergio Ramos.",
"identified": "We are about to witness a substitution. [PLAYER_t20vQIvC] ([TEAM_]) is replacing [PLAYER_db8mbBaO].",
"anonymized": "We are about to witness a substitution. [PLAYER] ([TEAM]) is replacing [PLAYER].",
"visibility": "shown",
"position": "1761000"
},
{
"important": false,
"gameTime": "2 - 28:35",
"label": "corner",
"description": "The resulting corner from Isco (Real Madrid) is cleared by the opposition's defence.",
"identified": "The resulting corner from [PLAYER_ULLmpdEb] ([TEAM_]) is cleared by the opposition's defence.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared by the opposition's defence.",
"visibility": "shown",
"position": "1715000"
},
{
"important": false,
"gameTime": "2 - 28:32",
"label": "",
"description": "whips a promising cross into the box, but the opposition's defence intercepts the ball. Real Madrid have a corner.",
"identified": "whips a promising cross into the box, but the opposition's defence intercepts the ball. [TEAM_] have a corner.",
"anonymized": "whips a promising cross into the box, but the opposition's defence intercepts the ball. [TEAM] have a corner.",
"visibility": "shown",
"position": "1712000"
},
{
"important": true,
"gameTime": "2 - 27:27",
"label": "",
"description": "Salva Sevilla (Espanyol) blows a clear opportunity! He sends a rebound from close range narrowly wide of the left post.",
"identified": "[PLAYER_rFMIs7n0] ([TEAM_]) blows a clear opportunity! He sends a rebound from close range narrowly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) blows a clear opportunity! He sends a rebound from close range narrowly wide of the left post.",
"visibility": "shown",
"position": "1647000"
},
{
"important": true,
"gameTime": "2 - 27:04",
"label": "",
"description": "Gerard Moreno (Espanyol) attempts to convert a lofted cross as he jumps high and heads the ball to the bottom left corner. Keylor Navas shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"identified": "[PLAYER_UwfDD083] ([TEAM_]) attempts to convert a lofted cross as he jumps high and heads the ball to the bottom left corner. [PLAYER_dQEusiKl] shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"anonymized": "[PLAYER] ([TEAM]) attempts to convert a lofted cross as he jumps high and heads the ball to the bottom left corner. [PLAYER] shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"visibility": "shown",
"position": "1624000"
},
{
"important": false,
"gameTime": "2 - 26:33",
"label": "",
"description": "Ruben Duarte (Espanyol) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. It's a throw-in for Espanyol.",
"identified": "[PLAYER_r5rLTJOE] ([TEAM_]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. It's a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. It's a throw-in for [TEAM].",
"visibility": "shown",
"position": "1593000"
},
{
"important": false,
"gameTime": "2 - 26:18",
"label": "attendance",
"description": "The attendance for today's match is 32155.",
"identified": "The attendance for today's match is 32155.",
"anonymized": "The attendance for today's match is 32155.",
"visibility": "shown",
"position": "1578000"
},
{
"important": false,
"gameTime": "2 - 25:14",
"label": "",
"description": "Jose Canas (Espanyol) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision!",
"identified": "[PLAYER_MPJuofoj] ([TEAM_]) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision!",
"anonymized": "[PLAYER] ([TEAM]) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision!",
"visibility": "shown",
"position": "1514000"
},
{
"important": true,
"gameTime": "2 - 23:20",
"label": "y-card",
"description": "Mateo Kovacic (Real Madrid) tackles a bit over-zealously and Inaki Bikandi blows for a foul. Mateo Kovacic (Real Madrid) is literally asking for a yellow card with his behaviour. The referee agrees and books him.",
"identified": "[PLAYER_4f084TL7] ([TEAM_]) tackles a bit over-zealously and [REFEREE] blows for a foul. [PLAYER_4f084TL7] ([TEAM_]) is literally asking for a yellow card with his behaviour. The referee agrees and books him.",
"anonymized": "[PLAYER] ([TEAM]) tackles a bit over-zealously and [REFEREE] blows for a foul. [PLAYER] ([TEAM]) is literally asking for a yellow card with his behaviour. The referee agrees and books him.",
"visibility": "shown",
"position": "1400000"
},
{
"important": true,
"gameTime": "2 - 20:54",
"label": "y-card",
"description": "Jose Canas (Espanyol) is shown a yellow card by the referee for making a challenge on his opponent, but he looks angry with the decision.",
"identified": "[PLAYER_MPJuofoj] ([TEAM_]) is shown a yellow card by the referee for making a challenge on his opponent, but he looks angry with the decision.",
"anonymized": "[PLAYER] ([TEAM]) is shown a yellow card by the referee for making a challenge on his opponent, but he looks angry with the decision.",
"visibility": "shown",
"position": "1254000"
},
{
"important": true,
"gameTime": "2 - 19:29",
"label": "substitution",
"description": "Substitution. Victor Sanchez did his best and is replaced by Joan Jordan (Espanyol).",
"identified": "Substitution. [PLAYER_0tOkXfCH] did his best and is replaced by [PLAYER_v7lhr0kA] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] did his best and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1169000"
},
{
"important": false,
"gameTime": "2 - 19:06",
"label": "corner",
"description": "Salva Sevilla (Espanyol) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"identified": "[PLAYER_rFMIs7n0] ([TEAM_]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"visibility": "shown",
"position": "1146000"
},
{
"important": false,
"gameTime": "2 - 18:41",
"label": "",
"description": "Victor Sanchez (Espanyol) delivers a low pass into the box which is intercepted. The ball goes behind for a corner. Espanyol will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_0tOkXfCH] ([TEAM_]) delivers a low pass into the box which is intercepted. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) delivers a low pass into the box which is intercepted. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1121000"
},
{
"important": true,
"gameTime": "2 - 17:21",
"label": "substitution",
"description": "That's the end of the game for Karim Benzema, who is replaced by Lucas (Real Madrid).",
"identified": "That's the end of the game for [PLAYER_tpV0VX0S], who is replaced by [PLAYER_pEjBDsSH] ([TEAM_]).",
"anonymized": "That's the end of the game for [PLAYER], who is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1041000"
},
{
"important": true,
"gameTime": "2 - 15:50",
"label": "soccer-ball",
"description": "Goal! Gareth Bale puts the ball on a plate for Cristiano Ronaldo (Real Madrid), who scores with a simple close-range finish. It's 0:5.",
"identified": "Goal! [PLAYER_4SPjLLiR] puts the ball on a plate for [PLAYER_WGOY4FSt] ([TEAM_]), who scores with a simple close-range finish. It's 0:5.",
"anonymized": "Goal! [PLAYER] puts the ball on a plate for [PLAYER] ([TEAM]), who scores with a simple close-range finish. It's 0:5.",
"visibility": "shown",
"position": "950000"
},
{
"important": false,
"gameTime": "2 - 15:39",
"label": "corner",
"description": "The corner kick from Salva Sevilla (Espanyol) is headed out of the penalty area by one of the defenders.",
"identified": "The corner kick from [PLAYER_rFMIs7n0] ([TEAM_]) is headed out of the penalty area by one of the defenders.",
"anonymized": "The corner kick from [PLAYER] ([TEAM]) is headed out of the penalty area by one of the defenders.",
"visibility": "shown",
"position": "939000"
},
{
"important": false,
"gameTime": "2 - 15:24",
"label": "",
"description": "Salva Sevilla (Espanyol) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. Espanyol force their opponents to concede a corner.",
"identified": "[PLAYER_rFMIs7n0] ([TEAM_]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "924000"
},
{
"important": false,
"gameTime": "2 - 15:00",
"label": "corner",
"description": "Isco (Real Madrid) steps up to take the corner, but the ball just sails in among the defenders.",
"identified": "[PLAYER_ULLmpdEb] ([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": "900000"
},
{
"important": false,
"gameTime": "2 - 14:16",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Daniel Carvajal (Real Madrid). The ball is out of play and the linesman points at the corner flag. Corner to Real Madrid.",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_rZh5FTHE] ([TEAM_]). The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]). The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "856000"
},
{
"important": false,
"gameTime": "2 - 13:29",
"label": "",
"description": "Another attempt to send the ball beyond the defence by Casemiro (Real Madrid) is thwarted and cleared to safety.",
"identified": "Another attempt to send the ball beyond the defence by [PLAYER_Ukeq3c0b] ([TEAM_]) is thwarted and cleared to safety.",
"anonymized": "Another attempt to send the ball beyond the defence by [PLAYER] ([TEAM]) is thwarted and cleared to safety.",
"visibility": "shown",
"position": "809000"
},
{
"important": true,
"gameTime": "2 - 10:24",
"label": "substitution",
"description": "Rafael Benitez prepares a substitution. Luka Modric is replaced by Mateo Kovacic (Real Madrid).",
"identified": "[COACH_4fN6car1] prepares a substitution. [PLAYER_bZWyoJnA] is replaced by [PLAYER_4f084TL7] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "624000"
},
{
"important": false,
"gameTime": "2 - 10:01",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is off of the pitch and it's a goal kick for Espanyol.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "601000"
},
{
"important": false,
"gameTime": "2 - 05:51",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) fails to pick a body out in the box with an over-hit chip pass.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) fails to pick a body out in the box with an over-hit chip pass.",
"anonymized": "[PLAYER] ([TEAM]) fails to pick a body out in the box with an over-hit chip pass.",
"visibility": "shown",
"position": "351000"
},
{
"important": false,
"gameTime": "2 - 05:38",
"label": "",
"description": "Gerard Moreno (Espanyol) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves Inaki Bikandi with no other option than to blow for a foul.",
"identified": "[PLAYER_UwfDD083] ([TEAM_]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul.",
"anonymized": "[PLAYER] ([TEAM]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul.",
"visibility": "shown",
"position": "338000"
},
{
"important": false,
"gameTime": "2 - 04:56",
"label": "corner",
"description": "Isco (Real Madrid) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"anonymized": "[PLAYER] ([TEAM]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"visibility": "shown",
"position": "296000"
},
{
"important": false,
"gameTime": "2 - 04:54",
"label": "",
"description": "Casemiro (Real Madrid) gets to the rebound outside the box and doesn't hesitate to shoot on goal. It was a promising attempt, but one of the defending players got in the way and blocked it. The referee and one of his assistants signal for a corner kick to Real Madrid.",
"identified": "[PLAYER_Ukeq3c0b] ([TEAM_]) gets to the rebound outside the box and doesn't hesitate to shoot on goal. It was a promising attempt, but one of the defending players got in the way and blocked it. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound outside the box and doesn't hesitate to shoot on goal. It was a promising attempt, but one of the defending players got in the way and blocked it. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "294000"
},
{
"important": false,
"gameTime": "2 - 04:52",
"label": "corner",
"description": "Luka Modric (Real Madrid) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"visibility": "shown",
"position": "292000"
},
{
"important": false,
"gameTime": "2 - 04:34",
"label": "",
"description": "The defence is alert as they clear a dangerous cross from Gareth Bale (Real Madrid). Real Madrid have been awarded a corner kick.",
"identified": "The defence is alert as they clear a dangerous cross from [PLAYER_4SPjLLiR] ([TEAM_]). [TEAM_] have been awarded a corner kick.",
"anonymized": "The defence is alert as they clear a dangerous cross from [PLAYER] ([TEAM]). [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "274000"
},
{
"important": false,
"gameTime": "2 - 03:21",
"label": "",
"description": "A pass from Karim Benzema (Real Madrid) is intercepted by Pau Lopez and the move breaks down.",
"identified": "A pass from [PLAYER_tpV0VX0S] ([TEAM_]) is intercepted by [PLAYER_rZes9CKA] and the move breaks down.",
"anonymized": "A pass from [PLAYER] ([TEAM]) is intercepted by [PLAYER] and the move breaks down.",
"visibility": "shown",
"position": "201000"
},
{
"important": false,
"gameTime": "2 - 02:40",
"label": "",
"description": "Daniel Carvajal (Real Madrid) controls a cross inside the six-yard box, but sends his shot slightly wide of the right post.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) controls a cross inside the six-yard box, but sends his shot slightly wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) controls a cross inside the six-yard box, but sends his shot slightly wide of the right post.",
"visibility": "shown",
"position": "160000"
},
{
"important": false,
"gameTime": "2 - 00:50",
"label": "",
"description": "Anaitz Arbilla (Espanyol) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players.",
"identified": "[PLAYER_I5wpPbNu] ([TEAM_]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players.",
"visibility": "shown",
"position": "50000"
},
{
"important": true,
"gameTime": "2 - 00:02",
"label": "substitution",
"description": "The need to improve in the second half has brought about a change. Michael Ciani comes off for Paco Montanes (Espanyol).",
"identified": "The need to improve in the second half has brought about a change. [PLAYER_GYRV1t4h] comes off for [PLAYER_WAorJn39] ([TEAM_]).",
"anonymized": "The need to improve in the second half has brought about a change. [PLAYER] comes off for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "The teams are back out for the second half and here is a change on the pitch. Sergio gives a chance to Jose Canas (Espanyol) and Javi Lopez is off.",
"identified": "The teams are back out for the second half and here is a change on the pitch. [COACH_O0reUJHU] gives a chance to [PLAYER_MPJuofoj] ([TEAM_]) and [PLAYER_rZes9CKA] is off.",
"anonymized": "The teams are back out for the second half and here is a change on the pitch. [COACH] gives a chance to [PLAYER] ([TEAM]) and [PLAYER] is off.",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"identified": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"anonymized": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "The fans must be pleased so far with the entertainment on the pitch. Let's hope the players don't lose their passion and determination during the half-time break. Real Madrid have arguably been the better of the two sides in the first half. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"identified": "The fans must be pleased so far with the entertainment on the pitch. Let's hope the players don't lose their passion and determination during the half-time break. [TEAM_] have arguably been the better of the two sides in the first half. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"anonymized": "The fans must be pleased so far with the entertainment on the pitch. Let's hope the players don't lose their passion and determination during the half-time break. [TEAM] have arguably been the better of the two sides in the first half. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:02",
"label": "whistle",
"description": "Inaki Bikandi has ended the first half by blowing the whistle.",
"identified": "[REFEREE] has ended the first half by blowing the whistle.",
"anonymized": "[REFEREE] has ended the first half by blowing the whistle.",
"visibility": "shown",
"position": "2762000"
},
{
"important": false,
"gameTime": "1 - 45:39",
"label": "",
"description": "The ball is cleared after Gerard Moreno (Espanyol) attempted to dribble past an opposing player. The ball goes out of play and Real Madrid will have a goal kick.",
"identified": "The ball is cleared after [PLAYER_UwfDD083] ([TEAM_]) attempted to dribble past an opposing player. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2739000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "We will have 1 min. of added time.",
"identified": "We will have 1 min. of added time.",
"anonymized": "We will have 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:54",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) fails to send a pass into the box as his effort is cut out.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) fails to send a pass into the box as his effort is cut out.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out.",
"visibility": "shown",
"position": "2694000"
},
{
"important": false,
"gameTime": "1 - 43:55",
"label": "",
"description": "Gerard Moreno (Espanyol) receives a precise pass inside the box and takes a shot that flies just wide of the right post.",
"identified": "[PLAYER_UwfDD083] ([TEAM_]) receives a precise pass inside the box and takes a shot that flies just wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass inside the box and takes a shot that flies just wide of the right post.",
"visibility": "shown",
"position": "2635000"
},
{
"important": true,
"gameTime": "1 - 43:19",
"label": "",
"description": "OFF THE POST! Karim Benzema (Real Madrid) drifts into the box to give his teammate support. He receives a fantastic pass and shoots from close range, but it crashes against the left post. It could have been a brilliant goal, unlucky.",
"identified": "OFF THE POST! [PLAYER_tpV0VX0S] ([TEAM_]) drifts into the box to give his teammate support. He receives a fantastic pass and shoots from close range, but it crashes against the left post. It could have been a brilliant goal, unlucky.",
"anonymized": "OFF THE POST! [PLAYER] ([TEAM]) drifts into the box to give his teammate support. He receives a fantastic pass and shoots from close range, but it crashes against the left post. It could have been a brilliant goal, unlucky.",
"visibility": "shown",
"position": "2599000"
},
{
"important": false,
"gameTime": "1 - 42:39",
"label": "",
"description": "Javi Lopez (Espanyol) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_rZes9CKA] ([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": "2559000"
},
{
"important": false,
"gameTime": "1 - 40:01",
"label": "",
"description": "Luka Modric (Real Madrid) sends a long ball in, but Pau Lopez comfortably gathers the ball.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) sends a long ball in, but [PLAYER_rZes9CKA] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "2401000"
},
{
"important": false,
"gameTime": "1 - 38:47",
"label": "",
"description": "Gareth Bale (Real Madrid) is caught offside!",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "2327000"
},
{
"important": false,
"gameTime": "1 - 38:19",
"label": "",
"description": "Sergio Ramos (Real Madrid) is moving okay again after that injury scare.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) is moving okay again after that injury scare.",
"anonymized": "[PLAYER] ([TEAM]) is moving okay again after that injury scare.",
"visibility": "shown",
"position": "2299000"
},
{
"important": false,
"gameTime": "1 - 37:08",
"label": "injury",
"description": "Sergio Ramos (Real Madrid) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"anonymized": "[PLAYER] ([TEAM]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"visibility": "shown",
"position": "2228000"
},
{
"important": false,
"gameTime": "1 - 36:47",
"label": "",
"description": "Victor Sanchez (Espanyol) receives the ball from the set piece on the edge of the box, but fails to score because his shot is blocked.",
"identified": "[PLAYER_0tOkXfCH] ([TEAM_]) receives the ball from the set piece on the edge of the box, but fails to score because his shot is blocked.",
"anonymized": "[PLAYER] ([TEAM]) receives the ball from the set piece on the edge of the box, but fails to score because his shot is blocked.",
"visibility": "shown",
"position": "2207000"
},
{
"important": false,
"gameTime": "1 - 36:23",
"label": "",
"description": "Salva Sevilla (Espanyol) takes the ball and sets it for the free kick.",
"identified": "[PLAYER_rFMIs7n0] ([TEAM_]) takes the ball and sets it for the free kick.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball and sets it for the free kick.",
"visibility": "shown",
"position": "2183000"
},
{
"important": true,
"gameTime": "1 - 35:53",
"label": "y-card",
"description": "A yellow card is awarded to Karim Benzema (Real Madrid).",
"identified": "A yellow card is awarded to [PLAYER_tpV0VX0S] ([TEAM_]).",
"anonymized": "A yellow card is awarded to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2153000"
},
{
"important": false,
"gameTime": "1 - 35:29",
"label": "",
"description": "Karim Benzema (Real Madrid) was too fierce in his attempt to get the ball from his opponent and Inaki Bikandi blows for a foul. Espanyol have been awarded a free kick.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul. [TEAM_] have been awarded a free kick.",
"anonymized": "[PLAYER] ([TEAM]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul. [TEAM] have been awarded a free kick.",
"visibility": "shown",
"position": "2129000"
},
{
"important": false,
"gameTime": "1 - 35:03",
"label": "corner",
"description": "A dangerous looking corner kick from Salva Sevilla (Espanyol) is cleared to safety by the defence.",
"identified": "A dangerous looking corner kick from [PLAYER_rFMIs7n0] ([TEAM_]) is cleared to safety by the defence.",
"anonymized": "A dangerous looking corner kick from [PLAYER] ([TEAM]) is cleared to safety by the defence.",
"visibility": "shown",
"position": "2103000"
},
{
"important": false,
"gameTime": "1 - 34:48",
"label": "",
"description": "What a great touch by Gerard Moreno (Espanyol) as he controls a fine pass into the box and takes a shot to the right side of the goal, but an opposing player makes a clearance. Great defending. Espanyol have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "What a great touch by [PLAYER_UwfDD083] ([TEAM_]) as he controls a fine pass into the box and takes a shot to the right side of the goal, but an opposing player makes a clearance. Great defending. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "What a great touch by [PLAYER] ([TEAM]) as he controls a fine pass into the box and takes a shot to the right side of the goal, but an opposing player makes a clearance. Great defending. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "2088000"
},
{
"important": false,
"gameTime": "1 - 34:07",
"label": "",
"description": "Felipe Caicedo (Espanyol) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender.",
"identified": "[PLAYER_Eoeam8Xf] ([TEAM_]) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender.",
"visibility": "shown",
"position": "2047000"
},
{
"important": false,
"gameTime": "1 - 33:18",
"label": "",
"description": "The foul by Gerard Moreno (Espanyol) was seen by Inaki Bikandi who didn't hesitate to blow the whistle.",
"identified": "The foul by [PLAYER_UwfDD083] ([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": "1998000"
},
{
"important": false,
"gameTime": "1 - 32:07",
"label": "",
"description": "Casemiro (Real Madrid) receives a precise pass and threatens the keeper with a long-range shot. His attempt goes miles wide of the left post.",
"identified": "[PLAYER_Ukeq3c0b] ([TEAM_]) receives a precise pass and threatens the keeper with a long-range shot. His attempt goes miles wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass and threatens the keeper with a long-range shot. His attempt goes miles wide of the left post.",
"visibility": "shown",
"position": "1927000"
},
{
"important": false,
"gameTime": "1 - 31:36",
"label": "",
"description": "Luka Modric (Real Madrid) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "1896000"
},
{
"important": false,
"gameTime": "1 - 30:22",
"label": "",
"description": "Gerard Moreno (Espanyol) misses a good chance to score. A perfect cross into the box finds Gerard Moreno (Espanyol) who rises for a header, but he sends the ball well over the bar.",
"identified": "[PLAYER_UwfDD083] ([TEAM_]) misses a good chance to score. A perfect cross into the box finds [PLAYER_UwfDD083] ([TEAM_]) who rises for a header, but he sends the ball well over the bar.",
"anonymized": "[PLAYER] ([TEAM]) misses a good chance to score. A perfect cross into the box finds [PLAYER] ([TEAM]) who rises for a header, but he sends the ball well over the bar.",
"visibility": "shown",
"position": "1822000"
},
{
"important": false,
"gameTime": "1 - 29:51",
"label": "",
"description": "The game is interrupted as Cristiano Ronaldo (Real Madrid) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_WGOY4FSt] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "1791000"
},
{
"important": true,
"gameTime": "1 - 27:42",
"label": "soccer-ball",
"description": "It's 0:4! Cristiano Ronaldo feeds Karim Benzema (Real Madrid) inside the box, who is unmarked and buries the ball in the bottom right corner.",
"identified": "It's 0:4! [PLAYER_WGOY4FSt] feeds [PLAYER_tpV0VX0S] ([TEAM_]) inside the box, who is unmarked and buries the ball in the bottom right corner.",
"anonymized": "It's 0:4! [PLAYER] feeds [PLAYER] ([TEAM]) inside the box, who is unmarked and buries the ball in the bottom right corner.",
"visibility": "shown",
"position": "1662000"
},
{
"important": false,
"gameTime": "1 - 27:40",
"label": "",
"description": "Sergio Ramos (Real Madrid) latches on to a well-placed cross from the free kick on the edge of the box and attempts to surprise the goalkeeper with a quick header towards the net. Unfortunately for him, the keeper was quicker and denies him.",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) latches on to a well-placed cross from the free kick on the edge of the box and attempts to surprise the goalkeeper with a quick header towards the net. Unfortunately for him, the keeper was quicker and denies him.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a well-placed cross from the free kick on the edge of the box and attempts to surprise the goalkeeper with a quick header towards the net. Unfortunately for him, the keeper was quicker and denies him.",
"visibility": "shown",
"position": "1660000"
},
{
"important": false,
"gameTime": "1 - 26:02",
"label": "",
"description": "Anaitz Arbilla (Espanyol) makes a reckless foul in order to win the ball from his opponent. Inaki Bikandi has a clear sight of it and blows his whistle. A free kick has been awarded to Real Madrid.",
"identified": "[PLAYER_I5wpPbNu] ([TEAM_]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle. A free kick has been awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "1562000"
},
{
"important": false,
"gameTime": "1 - 24:57",
"label": "",
"description": "Salva Sevilla (Espanyol) fires a strong shot to the middle of the goal and the save is unexpectedly difficult for Keylor Navas.",
"identified": "[PLAYER_rFMIs7n0] ([TEAM_]) fires a strong shot to the middle of the goal and the save is unexpectedly difficult for [PLAYER_dQEusiKl].",
"anonymized": "[PLAYER] ([TEAM]) fires a strong shot to the middle of the goal and the save is unexpectedly difficult for [PLAYER].",
"visibility": "shown",
"position": "1497000"
},
{
"important": false,
"gameTime": "1 - 23:27",
"label": "",
"description": "Salva Sevilla (Espanyol) fails to find a teammate across the pitch with a long ball.",
"identified": "[PLAYER_rFMIs7n0] ([TEAM_]) fails to find a teammate across the pitch with a long ball.",
"anonymized": "[PLAYER] ([TEAM]) fails to find a teammate across the pitch with a long ball.",
"visibility": "shown",
"position": "1407000"
},
{
"important": false,
"gameTime": "1 - 22:22",
"label": "",
"description": "Casemiro (Real Madrid) commits a foul after making a slide tackle on his opponent.",
"identified": "[PLAYER_Ukeq3c0b] ([TEAM_]) commits a foul after making a slide tackle on his opponent.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after making a slide tackle on his opponent.",
"visibility": "shown",
"position": "1342000"
},
{
"important": false,
"gameTime": "1 - 21:00",
"label": "",
"description": "Victor Sanchez (Espanyol) commits a rough foul. Inaki Bikandi stops the game and makes a call.",
"identified": "[PLAYER_0tOkXfCH] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"visibility": "shown",
"position": "1260000"
},
{
"important": true,
"gameTime": "1 - 19:55",
"label": "soccer-ball",
"description": "It's in the back of the net! Gareth Bale plays it into the box, and Cristiano Ronaldo (Real Madrid) gets on the end of the cross to put it into the back of the net. 0:2.",
"identified": "It's in the back of the net! [PLAYER_4SPjLLiR] plays it into the box, and [PLAYER_WGOY4FSt] ([TEAM_]) gets on the end of the cross to put it into the back of the net. 0:2.",
"anonymized": "It's in the back of the net! [PLAYER] plays it into the box, and [PLAYER] ([TEAM]) gets on the end of the cross to put it into the back of the net. 0:2.",
"visibility": "shown",
"position": "1195000"
},
{
"important": false,
"gameTime": "1 - 18:58",
"label": "",
"description": "Luka Modric (Real Madrid) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"visibility": "shown",
"position": "1138000"
},
{
"important": true,
"gameTime": "1 - 16:56",
"label": "soccer-ball",
"description": "Cristiano Ronaldo (Real Madrid) takes the penalty and scores! He buries the ball into the bottom right corner!",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) takes the penalty and scores! He buries the ball into the bottom right corner!",
"anonymized": "[PLAYER] ([TEAM]) takes the penalty and scores! He buries the ball into the bottom right corner!",
"visibility": "shown",
"position": "1016000"
},
{
"important": true,
"gameTime": "1 - 16:00",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) will take the responsibility and he is already preparing the ball.",
"identified": "[PLAYER_WGOY4FSt] ([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": "960000"
},
{
"important": true,
"gameTime": "1 - 15:10",
"label": "y-card",
"description": "gets a yellow card.",
"identified": "gets a yellow card.",
"anonymized": "gets a yellow card.",
"visibility": "shown",
"position": "910000"
},
{
"important": true,
"gameTime": "1 - 15:05",
"label": "penalty",
"description": "Victor Alvarez (Espanyol) performs a sliding tackle but catches his opponent's legs. The referee blows his whistle for an infringement. The referee points to the penalty spot. Real Madrid are awarded a penalty kick!",
"identified": "[PLAYER_dpRLkUnA] ([TEAM_]) performs a sliding tackle but catches his opponent's legs. The referee blows his whistle for an infringement. The referee points to the penalty spot. [TEAM_] are awarded a penalty kick!",
"anonymized": "[PLAYER] ([TEAM]) performs a sliding tackle but catches his opponent's legs. The referee blows his whistle for an infringement. The referee points to the penalty spot. [TEAM] are awarded a penalty kick!",
"visibility": "shown",
"position": "905000"
},
{
"important": false,
"gameTime": "1 - 14:30",
"label": "",
"description": "Dangerous play by Victor Sanchez (Espanyol). Inaki Bikandi blows his whistle for a foul.",
"identified": "Dangerous play by [PLAYER_0tOkXfCH] ([TEAM_]). [REFEREE] blows his whistle for a foul.",
"anonymized": "Dangerous play by [PLAYER] ([TEAM]). [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "870000"
},
{
"important": false,
"gameTime": "1 - 14:03",
"label": "",
"description": "A crossfield pass from Ruben Duarte (Espanyol) fails to find any of his teammates.",
"identified": "A crossfield pass from [PLAYER_r5rLTJOE] ([TEAM_]) fails to find any of his teammates.",
"anonymized": "A crossfield pass from [PLAYER] ([TEAM]) fails to find any of his teammates.",
"visibility": "shown",
"position": "843000"
},
{
"important": false,
"gameTime": "1 - 13:28",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) is in a clear offside position and the linesman raises his flag.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) is in a clear offside position and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is in a clear offside position and the linesman raises his flag.",
"visibility": "shown",
"position": "808000"
},
{
"important": false,
"gameTime": "1 - 12:45",
"label": "",
"description": "Luka Modric (Real Madrid) attempts to slip the ball through the defence, but is unable to find any of his teammates.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) attempts to slip the ball through the defence, but is unable to find any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) attempts to slip the ball through the defence, but is unable to find any of his teammates.",
"visibility": "shown",
"position": "765000"
},
{
"important": false,
"gameTime": "1 - 11:51",
"label": "",
"description": "Salva Sevilla (Espanyol) looks to break free, but an opposing player clears the ball away. The ball is out of play. Real Madrid will take a throw-in.",
"identified": "[PLAYER_rFMIs7n0] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The ball is out of play. [TEAM_] will take a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The ball is out of play. [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "711000"
},
{
"important": false,
"gameTime": "1 - 10:50",
"label": "",
"description": "Inaki Bikandi blows for a foul after Javi Lopez (Espanyol) was too aggressive in the battle for the ball.",
"identified": "[REFEREE] blows for a foul after [PLAYER_rZes9CKA] ([TEAM_]) was too aggressive in the battle for the ball.",
"anonymized": "[REFEREE] blows for a foul after [PLAYER] ([TEAM]) was too aggressive in the battle for the ball.",
"visibility": "shown",
"position": "650000"
},
{
"important": false,
"gameTime": "1 - 10:36",
"label": "",
"description": "Victor Alvarez (Espanyol) tries to send a pass but it's blocked.",
"identified": "[PLAYER_dpRLkUnA] ([TEAM_]) tries to send a pass but it's blocked.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked.",
"visibility": "shown",
"position": "636000"
},
{
"important": false,
"gameTime": "1 - 10:12",
"label": "",
"description": "Gareth Bale (Real Madrid) finds himself beyond the last defender but the linesman raises his flag for offside.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) finds himself beyond the last defender but the linesman raises his flag for offside.",
"anonymized": "[PLAYER] ([TEAM]) finds himself beyond the last defender but the linesman raises his flag for offside.",
"visibility": "shown",
"position": "612000"
}
]
} |