File size: 89,225 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 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 |
{
"timestamp": "1443983400",
"score": "1 - 1",
"round": "7",
"teams": [
"Real Madrid",
"Atl. Madrid"
],
"lineup": {
"home": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "McWkid34",
"name": "Correa A.",
"captain": "",
"detail_link": "/player/correa-angel/McWkid34/",
"short_name": "Correa",
"shirt_number": "16",
"country": "Argentina",
"facts": [
{
"type": "1",
"time": "39' Correa A. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "58'",
"description": "Vietto L.",
"linked_player_hash": "KtpJdyan"
}
],
"lineup": 10,
"starting": true,
"long_name": "Angel Correa"
},
{
"hash": "CCTRYs3a",
"name": "Filipe Luis",
"captain": "",
"detail_link": "/player/luis-filipe/CCTRYs3a/",
"short_name": "Filipe Luis",
"shirt_number": "3",
"country": "Brazil",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Filipe Luis"
},
{
"hash": "Q3asrkFf",
"name": "Gabi",
"captain": "(C)",
"detail_link": "/player/gabi/Q3asrkFf/",
"short_name": "Gabi",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "17' Gabi (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Gabi"
},
{
"hash": "IgRLzKhM",
"name": "Gimenez J. M.",
"captain": "",
"detail_link": "/player/gimenez-jose/IgRLzKhM/",
"short_name": "Gimenez",
"shirt_number": "24",
"country": "Uruguay",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Jose Maria Gimenez"
},
{
"hash": "AXQzJq3b",
"name": "Godin D.",
"captain": "",
"detail_link": "/player/godin-diego/AXQzJq3b/",
"short_name": "Godin",
"shirt_number": "2",
"country": "Uruguay",
"facts": [
{
"type": "1",
"time": "88' Godin D. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Diego Godin"
},
{
"hash": "OxCa1jdT",
"name": "Griezmann A.",
"captain": "",
"detail_link": "/player/griezmann-antoine/OxCa1jdT/",
"short_name": "Griezmann",
"shirt_number": "7",
"country": "France",
"facts": [
{
"type": "1",
"time": "82' Griezmann A. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Antoine Griezmann"
},
{
"hash": "jLwtE6Rq",
"name": "Juanfran",
"captain": "",
"detail_link": "/player/juanfran/jLwtE6Rq/",
"short_name": "Juanfran",
"shirt_number": "20",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "60' Juanfran (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Juanfran"
},
{
"hash": "SYy8ZHN9",
"name": "Oblak J.",
"captain": "",
"detail_link": "/player/oblak-jan/SYy8ZHN9/",
"short_name": "Oblak",
"shirt_number": "13",
"country": "Slovenia",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Jan Oblak"
},
{
"hash": "lxBoIH5p",
"name": "Tiago",
"captain": "",
"detail_link": "/player/tiago/lxBoIH5p/",
"short_name": "Tiago",
"shirt_number": "5",
"country": "Portugal",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Tiago"
},
{
"hash": "65srZ2Lb",
"name": "Torres F.",
"captain": "",
"detail_link": "/player/torres-fernando/65srZ2Lb/",
"short_name": "Torres",
"shirt_number": "9",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "64'",
"description": "Martinez J.",
"linked_player_hash": "zkwG1qoB"
}
],
"lineup": 11,
"starting": true,
"long_name": "Fernando Torres"
},
{
"hash": "6cK1wOfD",
"name": "Torres O.",
"captain": "",
"detail_link": "/player/torres-oliver/6cK1wOfD/",
"short_name": "Torres",
"shirt_number": "10",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Carrasco Y.",
"linked_player_hash": "lzccuuAC"
}
],
"lineup": 9,
"starting": true,
"long_name": "Oliver Torres"
},
{
"hash": "lzccuuAC",
"name": "Carrasco Y.",
"captain": "",
"detail_link": "/player/carrasco-yannick/lzccuuAC/",
"short_name": "Carrasco",
"shirt_number": "21",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Torres O.",
"linked_player_hash": "6cK1wOfD"
}
],
"lineup": null,
"starting": false,
"long_name": "Yannick Carrasco"
},
{
"hash": "zkwG1qoB",
"name": "Martinez J.",
"captain": "",
"detail_link": "/player/martinez-jackson/zkwG1qoB/",
"short_name": "Martinez",
"shirt_number": "11",
"country": "Colombia",
"facts": [
{
"type": "7",
"time": "64'",
"description": "Torres F.",
"linked_player_hash": "65srZ2Lb"
}
],
"lineup": null,
"starting": false,
"long_name": "Jackson Martinez"
},
{
"hash": "IJ9sTzj2",
"name": "Moya M. A.",
"captain": "",
"detail_link": "/player/moya-miguel-angel/IJ9sTzj2/",
"short_name": "Moya",
"shirt_number": "1",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Miguel Angel Moya"
},
{
"hash": "hSbvVwW7",
"name": "Niguez S.",
"captain": "",
"detail_link": "/player/niguez-saul/hSbvVwW7/",
"short_name": "Niguez",
"shirt_number": "17",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Saul Niguez"
},
{
"hash": "rXcV9ZCT",
"name": "Savic S.",
"captain": "",
"detail_link": "/player/savic-stefan/rXcV9ZCT/",
"short_name": "Savic",
"shirt_number": "15",
"country": "Montenegro",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Stefan Savic"
},
{
"hash": "zVlV5pWr",
"name": "Siqueira G.",
"captain": "",
"detail_link": "/player/siqueira-guilherme/zVlV5pWr/",
"short_name": "Siqueira",
"shirt_number": "4",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Guilherme Siqueira"
},
{
"hash": "KtpJdyan",
"name": "Vietto L.",
"captain": "",
"detail_link": "/player/vietto-luciano/KtpJdyan/",
"short_name": "Vietto",
"shirt_number": "23",
"country": "Argentina",
"facts": [
{
"type": "7",
"time": "58'",
"description": "Correa A.",
"linked_player_hash": "McWkid34"
},
{
"type": "1",
"time": "79' Vietto L. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "3",
"time": "83' Vietto L.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Luciano Vietto"
}
],
"coach": [
{
"hash": "AZ18LjKN",
"name": "Simeone D.",
"captain": "",
"detail_link": "/player/simeone-diego/AZ18LjKN/",
"short_name": "Simeone D.",
"shirt_number": "",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Diego Simeone"
}
]
},
"away": {
"tactic": "1-4-3-3",
"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": "9' Benzema K. (Carvajal D.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "77'",
"description": "Kovacic M.",
"linked_player_hash": "4f084TL7"
}
],
"lineup": 10,
"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": [
{
"type": "8",
"time": "9' Benzema K. (Carvajal D.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "42'",
"description": "Arbeloa A.",
"linked_player_hash": "CO9bjrLo"
}
],
"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": [
{
"type": "1",
"time": "61' Casemiro (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Casemiro"
},
{
"hash": "ULLmpdEb",
"name": "Isco",
"captain": "",
"detail_link": "/player/isco/ULLmpdEb/",
"short_name": "Isco",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "66'",
"description": "Bale G.",
"linked_player_hash": "4SPjLLiR"
}
],
"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": [],
"lineup": 6,
"starting": true,
"long_name": "Toni Kroos"
},
{
"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": [],
"lineup": 8,
"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": "db8mbBaO",
"name": "Ramos S.",
"captain": "(C)",
"detail_link": "/player/ramos-sergio/db8mbBaO/",
"short_name": "Ramos",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "21' Ramos S. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"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": [],
"lineup": 11,
"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": [
{
"type": "1",
"time": "59' Varane R. (Elbowing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"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": [
{
"type": "7",
"time": "42'",
"description": "Carvajal D.",
"linked_player_hash": "rZh5FTHE"
},
{
"type": "1",
"time": "89' Arbeloa A. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Alvaro Arbeloa"
},
{
"hash": "4SPjLLiR",
"name": "Bale G.",
"captain": "",
"detail_link": "/player/bale-gareth/4SPjLLiR/",
"short_name": "Bale",
"shirt_number": "11",
"country": "Wales",
"facts": [
{
"type": "7",
"time": "66'",
"description": "Isco",
"linked_player_hash": "ULLmpdEb"
}
],
"lineup": null,
"starting": false,
"long_name": "Gareth Bale"
},
{
"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": "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": "77'",
"description": "Benzema K.",
"linked_player_hash": "tpV0VX0S"
}
],
"lineup": null,
"starting": false,
"long_name": "Mateo Kovacic"
},
{
"hash": "pEjBDsSH",
"name": "Lucas",
"captain": "",
"detail_link": "/player/lucas/pEjBDsSH/",
"short_name": "Vazquez",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lucas Vazquez"
}
],
"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": [
"Mallenco A."
],
"venue": [
"Estadio Vicente Calder\u00f3n (Madrid)"
],
"attendance": [
"53 079"
],
"referee_matched": [
"Alberto Undiano Mallenco"
],
"referee_found": [
"Alberto Undiano Mallenco"
],
"coach_matched": [
"Rafael Benitez",
"Diego Simeone"
],
"gameHomeTeam": "Atl. Madrid",
"home": {
"name": "Atl. Madrid",
"detail_link": "/team/atl-madrid/jaarqpLQ",
"hash": "jaarqpLQ",
"names": [
"Atl. Madrid",
"atl madrid"
]
},
"gameAwayTeam": "Real Madrid",
"away": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameDate": "04/10/2015 - 20:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "Let's hope the players will show us more in future games as today's one was rather average, without many exciting moments. A very even game was seen on the pitch today. The hosts displayed good teamplay with a lot of passes. The visiting side patiently waited in their own half to dispossess the opponent and hit them on the break.",
"identified": "Let's hope the players will show us more in future games as today's one was rather average, without many exciting moments. A very even game was seen on the pitch today. The hosts displayed good teamplay with a lot of passes. The visiting side patiently waited in their own half to dispossess the opponent and hit them on the break.",
"anonymized": "Let's hope the players will show us more in future games as today's one was rather average, without many exciting moments. A very even game was seen on the pitch today. The hosts displayed good teamplay with a lot of passes. The visiting side patiently waited in their own half to dispossess the opponent and hit them on the break.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:11",
"label": "whistle",
"description": "That's all for today as the game is over.",
"identified": "That's all for today as the game is over.",
"anonymized": "That's all for today as the game is over.",
"visibility": "shown",
"position": "2891000"
},
{
"important": false,
"gameTime": "2 - 47:10",
"label": "corner",
"description": "The resulting corner comes to nothing as Gabi (Atl. Madrid) sends it out of play.",
"identified": "The resulting corner comes to nothing as [PLAYER_Q3asrkFf] ([TEAM_]) sends it out of play.",
"anonymized": "The resulting corner comes to nothing as [PLAYER] ([TEAM]) sends it out of play.",
"visibility": "shown",
"position": "2830000"
},
{
"important": false,
"gameTime": "2 - 46:55",
"label": "",
"description": "An attempted cross from Yannick Carrasco (Atl. Madrid) is cleared. Corner kick. Atl. Madrid will have an opportunity.",
"identified": "An attempted cross from [PLAYER_lzccuuAC] ([TEAM_]) is cleared. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "2815000"
},
{
"important": false,
"gameTime": "2 - 46:38",
"label": "",
"description": "Jan Oblak makes a good save! Cristiano Ronaldo (Real Madrid) easily weaves through the defence and fires in from long range. His shot goes towards the middle of the goal but is saved by the keeper!",
"identified": "[PLAYER_SYy8ZHN9] makes a good save! [PLAYER_WGOY4FSt] ([TEAM_]) easily weaves through the defence and fires in from long range. His shot goes towards the middle of the goal but is saved by the keeper!",
"anonymized": "[PLAYER] makes a good save! [PLAYER] ([TEAM]) easily weaves through the defence and fires in from long range. His shot goes towards the middle of the goal but is saved by the keeper!",
"visibility": "shown",
"position": "2798000"
},
{
"important": true,
"gameTime": "2 - 46:10",
"label": "",
"description": "Diego Godin (Atl. Madrid) gets himself onto the end of the corner, but his header is blocked.",
"identified": "[PLAYER_AXQzJq3b] ([TEAM_]) gets himself onto the end of the corner, but his header is blocked.",
"anonymized": "[PLAYER] ([TEAM]) gets himself onto the end of the corner, but his header is blocked.",
"visibility": "shown",
"position": "2770000"
},
{
"important": false,
"gameTime": "2 - 45:53",
"label": "corner",
"description": "The referee points to the corner flag. It's a corner to Atl. Madrid.",
"identified": "The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "2753000"
},
{
"important": true,
"gameTime": "2 - 45:39",
"label": "",
"description": "Jackson Martinez (Atl. Madrid) takes a shot from the edge of the box after a brilliant solo effort. The ball heads towards the right post, but the goalkeeper denies him with a fantastic save.",
"identified": "[PLAYER_zkwG1qoB] ([TEAM_]) takes a shot from the edge of the box after a brilliant solo effort. The ball heads towards the right post, but the goalkeeper denies him with a fantastic save.",
"anonymized": "[PLAYER] ([TEAM]) takes a shot from the edge of the box after a brilliant solo effort. The ball heads towards the right post, but the goalkeeper denies him with a fantastic save.",
"visibility": "shown",
"position": "2739000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "3 additional min. will be played.",
"identified": "3 additional min. will be played.",
"anonymized": "3 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:23",
"label": "",
"description": "Atl. Madrid try to maintain the tempo of the game by taking a quick free kick.",
"identified": "[TEAM_] try to maintain the tempo of the game by taking a quick free kick.",
"anonymized": "[TEAM] try to maintain the tempo of the game by taking a quick free kick.",
"visibility": "shown",
"position": "2663000"
},
{
"important": true,
"gameTime": "2 - 43:54",
"label": "y-card",
"description": "Today's referee Alberto Undiano Mallenco rightly decides to book Alvaro Arbeloa (Real Madrid) for his harsh tackle. Atl. Madrid earn a free kick.",
"identified": "Today's referee [REFEREE] rightly decides to book [PLAYER_CO9bjrLo] ([TEAM_]) for his harsh tackle. [TEAM_] earn a free kick.",
"anonymized": "Today's referee [REFEREE] rightly decides to book [PLAYER] ([TEAM]) for his harsh tackle. [TEAM] earn a free kick.",
"visibility": "shown",
"position": "2634000"
},
{
"important": false,
"gameTime": "2 - 43:16",
"label": "",
"description": "Toni Kroos (Real Madrid) puts a cross into the box from the free kick, but the defender gets there first.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) puts a cross into the box from the free kick, but the defender gets there first.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the free kick, but the defender gets there first.",
"visibility": "shown",
"position": "2596000"
},
{
"important": true,
"gameTime": "2 - 42:30",
"label": "y-card",
"description": "Diego Godin (Atl. Madrid) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but Alberto Undiano Mallenco ignores the protests. Real Madrid win a free kick and will be able to apply some pressure on the opposition goal.",
"identified": "[PLAYER_AXQzJq3b] ([TEAM_]) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but [REFEREE] ignores the protests. [TEAM_] win a free kick and will be able to apply some pressure on the opposition goal.",
"anonymized": "[PLAYER] ([TEAM]) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but [REFEREE] ignores the protests. [TEAM] win a free kick and will be able to apply some pressure on the opposition goal.",
"visibility": "shown",
"position": "2550000"
},
{
"important": false,
"gameTime": "2 - 40:59",
"label": "",
"description": "Marcelo (Real Madrid) sends a long ball in, but Jan Oblak comfortably gathers the ball.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) sends a long ball in, but [PLAYER_SYy8ZHN9] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "2459000"
},
{
"important": false,
"gameTime": "2 - 40:07",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) sends a cross into the box, but Jan Oblak comes off his line to gather the ball.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) sends a cross into the box, but [PLAYER_SYy8ZHN9] comes off his line to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but [PLAYER] comes off his line to gather the ball.",
"visibility": "shown",
"position": "2407000"
},
{
"important": true,
"gameTime": "2 - 38:00",
"label": "soccer-ball",
"description": "Goal 1:1! Luciano Vietto (Atl. Madrid) taps home from close range after the rebound fell kindly into his path.",
"identified": "Goal 1:1! [PLAYER_KtpJdyan] ([TEAM_]) taps home from close range after the rebound fell kindly into his path.",
"anonymized": "Goal 1:1! [PLAYER] ([TEAM]) taps home from close range after the rebound fell kindly into his path.",
"visibility": "shown",
"position": "2280000"
},
{
"important": true,
"gameTime": "2 - 37:00",
"label": "y-card",
"description": "Alberto Undiano Mallenco shows the yellow card to Antoine Griezmann (Atl. Madrid) for a heavy challenge.",
"identified": "[REFEREE] shows the yellow card to [PLAYER_OxCa1jdT] ([TEAM_]) for a heavy challenge.",
"anonymized": "[REFEREE] shows the yellow card to [PLAYER] ([TEAM]) for a heavy challenge.",
"visibility": "shown",
"position": "2220000"
},
{
"important": true,
"gameTime": "2 - 35:06",
"label": "",
"description": "Luciano Vietto (Atl. Madrid) jumps for a cross in the goal area and produces a fine header which goes narrowly wide of the right post! What a huge opportunity!",
"identified": "[PLAYER_KtpJdyan] ([TEAM_]) jumps for a cross in the goal area and produces a fine header which goes narrowly wide of the right post! What a huge opportunity!",
"anonymized": "[PLAYER] ([TEAM]) jumps for a cross in the goal area and produces a fine header which goes narrowly wide of the right post! What a huge opportunity!",
"visibility": "shown",
"position": "2106000"
},
{
"important": false,
"gameTime": "2 - 34:43",
"label": "",
"description": "Yannick Carrasco (Atl. Madrid) tries to send a pass but it's blocked.",
"identified": "[PLAYER_lzccuuAC] ([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": "2083000"
},
{
"important": true,
"gameTime": "2 - 33:42",
"label": "y-card",
"description": "The foul by Luciano Vietto (Atl. Madrid) is worthy of a card and a yellow is duly shown by Alberto Undiano Mallenco.",
"identified": "The foul by [PLAYER_KtpJdyan] ([TEAM_]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"anonymized": "The foul by [PLAYER] ([TEAM]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"visibility": "shown",
"position": "2022000"
},
{
"important": false,
"gameTime": "2 - 32:40",
"label": "",
"description": "Luka Modric (Real Madrid) unleashes a shot from 30 metres out but is unable to find the target and it goes well wide of the left post.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) unleashes a shot from 30 metres out but is unable to find the target and it goes well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot from 30 metres out but is unable to find the target and it goes well wide of the left post.",
"visibility": "shown",
"position": "1960000"
},
{
"important": false,
"gameTime": "2 - 32:07",
"label": "",
"description": "Alvaro Arbeloa (Real Madrid) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"identified": "[PLAYER_CO9bjrLo] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"visibility": "shown",
"position": "1927000"
},
{
"important": true,
"gameTime": "2 - 31:22",
"label": "substitution",
"description": "That's the end of the game for Karim Benzema, who is replaced by Mateo Kovacic (Real Madrid).",
"identified": "That's the end of the game for [PLAYER_tpV0VX0S], who is replaced by [PLAYER_4f084TL7] ([TEAM_]).",
"anonymized": "That's the end of the game for [PLAYER], who is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1882000"
},
{
"important": true,
"gameTime": "2 - 29:18",
"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": "1758000"
},
{
"important": true,
"gameTime": "2 - 28:49",
"label": "",
"description": "Jackson Martinez (Atl. Madrid) finds himself some space inside the box, collects a rebound and sends an effort in on goal. Keylor Navas pulls off a fantastic reflex save to stop the ball going low into the middle of the target.",
"identified": "[PLAYER_zkwG1qoB] ([TEAM_]) finds himself some space inside the box, collects a rebound and sends an effort in on goal. [PLAYER_dQEusiKl] pulls off a fantastic reflex save to stop the ball going low into the middle of the target.",
"anonymized": "[PLAYER] ([TEAM]) finds himself some space inside the box, collects a rebound and sends an effort in on goal. [PLAYER] pulls off a fantastic reflex save to stop the ball going low into the middle of the target.",
"visibility": "shown",
"position": "1729000"
},
{
"important": false,
"gameTime": "2 - 28:17",
"label": "",
"description": "Alberto Undiano Mallenco blows his whistle as Jackson Martinez (Atl. Madrid) used excessive force in the tackle during an attack.",
"identified": "[REFEREE] blows his whistle as [PLAYER_zkwG1qoB] ([TEAM_]) used excessive force in the tackle during an attack.",
"anonymized": "[REFEREE] blows his whistle as [PLAYER] ([TEAM]) used excessive force in the tackle during an attack.",
"visibility": "shown",
"position": "1697000"
},
{
"important": false,
"gameTime": "2 - 27:30",
"label": "corner",
"description": "Gabi (Atl. Madrid) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"identified": "[PLAYER_Q3asrkFf] ([TEAM_]) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"anonymized": "[PLAYER] ([TEAM]) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"visibility": "shown",
"position": "1650000"
},
{
"important": false,
"gameTime": "2 - 27:06",
"label": "",
"description": "A lofted cross from Yannick Carrasco (Atl. Madrid) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. Atl. Madrid win a corner.",
"identified": "A lofted cross from [PLAYER_lzccuuAC] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. [TEAM_] win a corner.",
"anonymized": "A lofted cross from [PLAYER] ([TEAM]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. [TEAM] win a corner.",
"visibility": "shown",
"position": "1626000"
},
{
"important": false,
"gameTime": "2 - 25:59",
"label": "",
"description": "Marcelo (Real Madrid) sends over a cross, but he can't find any teammate inside the box. Poor delivery.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) sends over a cross, but he can't find any teammate inside the box. Poor delivery.",
"anonymized": "[PLAYER] ([TEAM]) sends over a cross, but he can't find any teammate inside the box. Poor delivery.",
"visibility": "shown",
"position": "1559000"
},
{
"important": false,
"gameTime": "2 - 24:21",
"label": "",
"description": "A pass by Yannick Carrasco (Atl. Madrid) ends up in no man's land, and the attacking effort comes to an end.",
"identified": "A pass by [PLAYER_lzccuuAC] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end.",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end.",
"visibility": "shown",
"position": "1461000"
},
{
"important": false,
"gameTime": "2 - 23:25",
"label": "",
"description": "Antoine Griezmann (Atl. Madrid) attempts a long crossfield pass, but the defence does well to intercept the ball.",
"identified": "[PLAYER_OxCa1jdT] ([TEAM_]) attempts a long crossfield pass, but the defence does well to intercept the ball.",
"anonymized": "[PLAYER] ([TEAM]) attempts a long crossfield pass, but the defence does well to intercept the ball.",
"visibility": "shown",
"position": "1405000"
},
{
"important": false,
"gameTime": "2 - 22:01",
"label": "",
"description": "Yannick Carrasco (Atl. Madrid) did his best to latch onto a through ball, but it was too strong. The ball goes out of play and Real Madrid will have a goal kick.",
"identified": "[PLAYER_lzccuuAC] ([TEAM_]) did his best to latch onto a through ball, but it was too strong. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) did his best to latch onto a through ball, but it was too strong. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "1321000"
},
{
"important": false,
"gameTime": "2 - 21:17",
"label": "",
"description": "Yannick Carrasco (Atl. Madrid) serves up a nice cross, but the defence clears the danger.",
"identified": "[PLAYER_lzccuuAC] ([TEAM_]) serves up a nice cross, but the defence clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but the defence clears the danger.",
"visibility": "shown",
"position": "1277000"
},
{
"important": true,
"gameTime": "2 - 20:23",
"label": "substitution",
"description": "We are about to witness a subsitution. Gareth Bale (Real Madrid) for Isco.",
"identified": "We are about to witness a subsitution. [PLAYER_4SPjLLiR] ([TEAM_]) for [PLAYER_ULLmpdEb].",
"anonymized": "We are about to witness a subsitution. [PLAYER] ([TEAM]) for [PLAYER].",
"visibility": "shown",
"position": "1223000"
},
{
"important": true,
"gameTime": "2 - 18:17",
"label": "substitution",
"description": "Diego Simeone has decided to introduce fresh legs, with Jackson Martinez (Atl. Madrid) replacing Fernando Torres.",
"identified": "[COACH_AZ18LjKN] has decided to introduce fresh legs, with [PLAYER_zkwG1qoB] ([TEAM_]) replacing [PLAYER_65srZ2Lb].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "1097000"
},
{
"important": false,
"gameTime": "2 - 17:48",
"label": "",
"description": "Marcelo (Real Madrid) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"visibility": "shown",
"position": "1068000"
},
{
"important": false,
"gameTime": "2 - 17:17",
"label": "",
"description": "Real Madrid are playing possession football and controlling the game at present. They are exchanging inch-perfect passes from player to player, making it difficult for the opposition to win the ball.",
"identified": "[TEAM_] are playing possession football and controlling the game at present. They are exchanging inch-perfect passes from player to player, making it difficult for the opposition to win the ball.",
"anonymized": "[TEAM] are playing possession football and controlling the game at present. They are exchanging inch-perfect passes from player to player, making it difficult for the opposition to win the ball.",
"visibility": "shown",
"position": "1037000"
},
{
"important": true,
"gameTime": "2 - 16:00",
"label": "y-card",
"description": "Casemiro (Real Madrid) sees a yellow card from Alberto Undiano Mallenco after he sent one of the opposing players to the ground.",
"identified": "[PLAYER_Ukeq3c0b] ([TEAM_]) sees a yellow card from [REFEREE] after he sent one of the opposing players to the ground.",
"anonymized": "[PLAYER] ([TEAM]) sees a yellow card from [REFEREE] after he sent one of the opposing players to the ground.",
"visibility": "shown",
"position": "960000"
},
{
"important": true,
"gameTime": "2 - 14:58",
"label": "y-card",
"description": "Today's referee Alberto Undiano Mallenco rightly decides to book Juanfran (Atl. Madrid) for his harsh tackle.",
"identified": "Today's referee [REFEREE] rightly decides to book [PLAYER_jLwtE6Rq] ([TEAM_]) for his harsh tackle.",
"anonymized": "Today's referee [REFEREE] rightly decides to book [PLAYER] ([TEAM]) for his harsh tackle.",
"visibility": "shown",
"position": "898000"
},
{
"important": true,
"gameTime": "2 - 14:19",
"label": "",
"description": "Fernando Torres (Atl. Madrid) receives the ball inside the box from the resulting free kick, but fails to score as his shot is blocked by one of the defenders.",
"identified": "[PLAYER_65srZ2Lb] ([TEAM_]) receives the ball inside the box from the resulting free kick, but fails to score as his shot is blocked by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) receives the ball inside the box from the resulting free kick, but fails to score as his shot is blocked by one of the defenders.",
"visibility": "shown",
"position": "859000"
},
{
"important": true,
"gameTime": "2 - 13:46",
"label": "y-card",
"description": "A yellow card for a tackle by Raphael Varane (Real Madrid). Alberto Undiano Mallenco doesn't hesitate at all to make this decision. It's a free kick to Atl. Madrid, but it's in no position for a direct shot on goal.",
"identified": "A yellow card for a tackle by [PLAYER_t20vQIvC] ([TEAM_]). [REFEREE] doesn't hesitate at all to make this decision. It's a free kick to [TEAM_], but it's in no position for a direct shot on goal.",
"anonymized": "A yellow card for a tackle by [PLAYER] ([TEAM]). [REFEREE] doesn't hesitate at all to make this decision. It's a free kick to [TEAM], but it's in no position for a direct shot on goal.",
"visibility": "shown",
"position": "826000"
},
{
"important": true,
"gameTime": "2 - 12:35",
"label": "substitution",
"description": "Substitution. Angel Correa makes way for Luciano Vietto (Atl. Madrid).",
"identified": "Substitution. [PLAYER_McWkid34] makes way for [PLAYER_KtpJdyan] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] makes way for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "755000"
},
{
"important": false,
"gameTime": "2 - 12:00",
"label": "",
"description": "Diego Godin (Atl. Madrid) makes a slide tackle, but referee Alberto Undiano Mallenco blows for a foul.",
"identified": "[PLAYER_AXQzJq3b] ([TEAM_]) makes a slide tackle, but referee [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a slide tackle, but referee [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "720000"
},
{
"important": false,
"gameTime": "2 - 11:38",
"label": "attendance",
"description": "The attendance is 53079.",
"identified": "The attendance is 53079.",
"anonymized": "The attendance is 53079.",
"visibility": "shown",
"position": "698000"
},
{
"important": false,
"gameTime": "2 - 10:23",
"label": "",
"description": "A player from Atl. Madrid commits an attacking foul. The referee blows his whistle.",
"identified": "A player from [TEAM_] commits an attacking foul. The referee blows his whistle.",
"anonymized": "A player from [TEAM] commits an attacking foul. The referee blows his whistle.",
"visibility": "shown",
"position": "623000"
},
{
"important": false,
"gameTime": "2 - 09:27",
"label": "",
"description": "Yannick Carrasco (Atl. Madrid) takes the free kick but it is cleared by the first defender.",
"identified": "[PLAYER_lzccuuAC] ([TEAM_]) takes the free kick but it is cleared by the first defender.",
"anonymized": "[PLAYER] ([TEAM]) takes the free kick but it is cleared by the first defender.",
"visibility": "shown",
"position": "567000"
},
{
"important": false,
"gameTime": "2 - 08:35",
"label": "",
"description": "Alberto Undiano Mallenco interrupts the game for a tactical foul by Alvaro Arbeloa (Real Madrid). A free kick has been awarded to Atl. Madrid.",
"identified": "[REFEREE] interrupts the game for a tactical foul by [PLAYER_CO9bjrLo] ([TEAM_]). A free kick has been awarded to [TEAM_].",
"anonymized": "[REFEREE] interrupts the game for a tactical foul by [PLAYER] ([TEAM]). A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "515000"
},
{
"important": false,
"gameTime": "2 - 07:38",
"label": "",
"description": "Alberto Undiano Mallenco couldn't ignore the rough tackle by Jose Maria Gimenez (Atl. Madrid) and blew his whistle.",
"identified": "[REFEREE] couldn't ignore the rough tackle by [PLAYER_IgRLzKhM] ([TEAM_]) and blew his whistle.",
"anonymized": "[REFEREE] couldn't ignore the rough tackle by [PLAYER] ([TEAM]) and blew his whistle.",
"visibility": "shown",
"position": "458000"
},
{
"important": false,
"gameTime": "2 - 07:17",
"label": "",
"description": "Filipe Luis (Atl. Madrid) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"identified": "[PLAYER_CCTRYs3a] ([TEAM_]) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"visibility": "shown",
"position": "437000"
},
{
"important": false,
"gameTime": "2 - 06:36",
"label": "",
"description": "Tiago (Atl. Madrid) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"identified": "[PLAYER_lxBoIH5p] ([TEAM_]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"anonymized": "[PLAYER] ([TEAM]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"visibility": "shown",
"position": "396000"
},
{
"important": false,
"gameTime": "2 - 05:03",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the left post.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the left post.",
"visibility": "shown",
"position": "303000"
},
{
"important": true,
"gameTime": "2 - 04:18",
"label": "",
"description": "Fernando Torres (Atl. Madrid) receives a well-played pass inside the penalty area and shoots. His effort sails well wide of the left post.",
"identified": "[PLAYER_65srZ2Lb] ([TEAM_]) receives a well-played pass inside the penalty area and shoots. His effort sails well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) receives a well-played pass inside the penalty area and shoots. His effort sails well wide of the left post.",
"visibility": "shown",
"position": "258000"
},
{
"important": false,
"gameTime": "2 - 03:52",
"label": "",
"description": "Alberto Undiano Mallenco blows his whistle and it's Toni Kroos (Real Madrid) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_CloE7jjr] ([TEAM_]) who is penalised for an offensive foul. Good decision by the referee.",
"anonymized": "[REFEREE] blows his whistle and it's [PLAYER] ([TEAM]) who is penalised for an offensive foul. Good decision by the referee.",
"visibility": "shown",
"position": "232000"
},
{
"important": false,
"gameTime": "2 - 03:18",
"label": "",
"description": "Luka Modric (Real Madrid) pulls the shirt of his opponent and the referee stops play for a foul.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) pulls the shirt of his opponent and the referee stops play for a foul.",
"anonymized": "[PLAYER] ([TEAM]) pulls the shirt of his opponent and the referee stops play for a foul.",
"visibility": "shown",
"position": "198000"
},
{
"important": false,
"gameTime": "2 - 02:37",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) sends a pass into the box, but his attempt is thwarted and cleared.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared.",
"visibility": "shown",
"position": "157000"
},
{
"important": false,
"gameTime": "2 - 01:13",
"label": "",
"description": "Antoine Griezmann (Atl. Madrid) flights in the cross, but the defender is alert and clears to safety.",
"identified": "[PLAYER_OxCa1jdT] ([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": "73000"
},
{
"important": true,
"gameTime": "2 - 00:02",
"label": "substitution",
"description": "The teams are back out for the second half and here is a change on the pitch. Diego Simeone gives a chance to Yannick Carrasco (Atl. Madrid) and Oliver Torres is off.",
"identified": "The teams are back out for the second half and here is a change on the pitch. [COACH_AZ18LjKN] gives a chance to [PLAYER_lzccuuAC] ([TEAM_]) and [PLAYER_65srZ2Lb] 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": "2000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The half-time break is over and the second half is about to start.",
"identified": "The half-time break is over and the second half is about to start.",
"anonymized": "The half-time break is over and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "The opening 45 minutes weren't very eventful and the game could be described as an average one. There wasn't any evident superiority by either side during the first half. Both teams are attempting to hold onto the ball for as long as possible.",
"identified": "The opening 45 minutes weren't very eventful and the game could be described as an average one. There wasn't any evident superiority by either side during the first half. Both teams are attempting to hold onto the ball for as long as possible.",
"anonymized": "The opening 45 minutes weren't very eventful and the game could be described as an average one. There wasn't any evident superiority by either side during the first half. Both teams are attempting to hold onto the ball for as long as possible.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:07",
"label": "whistle",
"description": "The end of the first half.",
"identified": "The end of the first half.",
"anonymized": "The end of the first half.",
"visibility": "shown",
"position": "2767000"
},
{
"important": false,
"gameTime": "1 - 45:31",
"label": "",
"description": "Toni Kroos (Real Madrid) sends a teasing cross into the area, but Jan Oblak intercepts the ball.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_SYy8ZHN9] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "2731000"
},
{
"important": false,
"gameTime": "1 - 45:24",
"label": "corner",
"description": "Real Madrid take a short corner instead of sending the ball into the penalty area.",
"identified": "[TEAM_] take a short corner instead of sending the ball into the penalty area.",
"anonymized": "[TEAM] take a short corner instead of sending the ball into the penalty area.",
"visibility": "shown",
"position": "2724000"
},
{
"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:58",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) attempts to scoop the ball into the box over the defence, but one of the defending players makes a timely intervention. The ball is out of play. Real Madrid win a corner kick.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) attempts to scoop the ball into the box over the defence, but one of the defending players makes a timely intervention. The ball is out of play. [TEAM_] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) attempts to scoop the ball into the box over the defence, but one of the defending players makes a timely intervention. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "2698000"
},
{
"important": false,
"gameTime": "1 - 43:26",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"anonymized": "[PLAYER] ([TEAM]) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"visibility": "shown",
"position": "2606000"
},
{
"important": false,
"gameTime": "1 - 42:22",
"label": "",
"description": "Alberto Undiano Mallenco has a clear sight and sees a foul from Antoine Griezmann (Atl. Madrid).",
"identified": "[REFEREE] has a clear sight and sees a foul from [PLAYER_OxCa1jdT] ([TEAM_]).",
"anonymized": "[REFEREE] has a clear sight and sees a foul from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2542000"
},
{
"important": true,
"gameTime": "1 - 41:08",
"label": "substitution",
"description": "Rafael Benitez is forced to make a change. Daniel Carvajal is unable to continue due to injury, Alvaro Arbeloa (Real Madrid) comes on.",
"identified": "[COACH_4fN6car1] is forced to make a change. [PLAYER_rZh5FTHE] is unable to continue due to injury, [PLAYER_CO9bjrLo] ([TEAM_]) comes on.",
"anonymized": "[COACH] is forced to make a change. [PLAYER] is unable to continue due to injury, [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "2468000"
},
{
"important": false,
"gameTime": "1 - 39:56",
"label": "injury",
"description": "Looks like Daniel Carvajal (Real Madrid) is struggling after picking up a knock. Hopefully he can run it off.",
"identified": "Looks like [PLAYER_rZh5FTHE] ([TEAM_]) is struggling after picking up a knock. Hopefully he can run it off.",
"anonymized": "Looks like [PLAYER] ([TEAM]) is struggling after picking up a knock. Hopefully he can run it off.",
"visibility": "shown",
"position": "2396000"
},
{
"important": true,
"gameTime": "1 - 39:00",
"label": "y-card",
"description": "Angel Correa (Atl. Madrid) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. Alberto Undiano Mallenco didn't think twice about pulling it out of his pocket.",
"identified": "[PLAYER_McWkid34] ([TEAM_]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"anonymized": "[PLAYER] ([TEAM]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"visibility": "shown",
"position": "2340000"
},
{
"important": false,
"gameTime": "1 - 37:56",
"label": "",
"description": "Close! Cristiano Ronaldo (Real Madrid) takes the resultant free kick from 32 metres out and his shot goes just over the crossbar. The ball is off of the pitch and it's a goal kick for Atl. Madrid.",
"identified": "Close! [PLAYER_WGOY4FSt] ([TEAM_]) takes the resultant free kick from 32 metres out and his shot goes just over the crossbar. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "Close! [PLAYER] ([TEAM]) takes the resultant free kick from 32 metres out and his shot goes just over the crossbar. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2276000"
},
{
"important": false,
"gameTime": "1 - 37:00",
"label": "",
"description": "Alberto Undiano Mallenco blows his whistle after Oliver Torres (Atl. Madrid) kicks an opponent's legs instead of the ball. Real Madrid win a free kick.",
"identified": "[REFEREE] blows his whistle after [PLAYER_65srZ2Lb] ([TEAM_]) kicks an opponent's legs instead of the ball. [TEAM_] win a free kick.",
"anonymized": "[REFEREE] blows his whistle after [PLAYER] ([TEAM]) kicks an opponent's legs instead of the ball. [TEAM] win a free kick.",
"visibility": "shown",
"position": "2220000"
},
{
"important": false,
"gameTime": "1 - 36:12",
"label": "",
"description": "The linesman raises his flag for offside before Fernando Torres (Atl. Madrid) heads on.",
"identified": "The linesman raises his flag for offside before [PLAYER_65srZ2Lb] ([TEAM_]) heads on.",
"anonymized": "The linesman raises his flag for offside before [PLAYER] ([TEAM]) heads on.",
"visibility": "shown",
"position": "2172000"
},
{
"important": false,
"gameTime": "1 - 35:00",
"label": "",
"description": "Some neat passing and movement from Atl. Madrid as they ping around some short passes in order to create a new attacking opportunity.",
"identified": "Some neat passing and movement from [TEAM_] as they ping around some short passes in order to create a new attacking opportunity.",
"anonymized": "Some neat passing and movement from [TEAM] as they ping around some short passes in order to create a new attacking opportunity.",
"visibility": "shown",
"position": "2100000"
},
{
"important": true,
"gameTime": "1 - 33:25",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) receives a precise pass on the edge of the box and has an effort on goal. Unfortunately for him, his strike flies inches high over the bar.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) receives a precise pass on the edge of the box and has an effort on goal. Unfortunately for him, his strike flies inches high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass on the edge of the box and has an effort on goal. Unfortunately for him, his strike flies inches high over the bar.",
"visibility": "shown",
"position": "2005000"
},
{
"important": false,
"gameTime": "1 - 31:44",
"label": "",
"description": "An opponent rises to his feet after being downed by Antoine Griezmann (Atl. Madrid). Alberto Undiano Mallenco saw the sliding tackle and blows for a foul.",
"identified": "An opponent rises to his feet after being downed by [PLAYER_OxCa1jdT] ([TEAM_]). [REFEREE] saw the sliding tackle and blows for a foul.",
"anonymized": "An opponent rises to his feet after being downed by [PLAYER] ([TEAM]). [REFEREE] saw the sliding tackle and blows for a foul.",
"visibility": "shown",
"position": "1904000"
},
{
"important": false,
"gameTime": "1 - 29:45",
"label": "",
"description": "Alberto Undiano Mallenco interrupts the game. One of the players from Atl. Madrid won the ball, but his effort is adjudged unfair.",
"identified": "[REFEREE] interrupts the game. One of the players from [TEAM_] won the ball, but his effort is adjudged unfair.",
"anonymized": "[REFEREE] interrupts the game. One of the players from [TEAM] won the ball, but his effort is adjudged unfair.",
"visibility": "shown",
"position": "1785000"
},
{
"important": false,
"gameTime": "1 - 28:32",
"label": "corner",
"description": "Gabi (Atl. Madrid) works the corner short.",
"identified": "[PLAYER_Q3asrkFf] ([TEAM_]) works the corner short.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short.",
"visibility": "shown",
"position": "1712000"
},
{
"important": false,
"gameTime": "1 - 28:00",
"label": "",
"description": "Antoine Griezmann (Atl. Madrid) slaloms his way past challenges, but an opposing player does well to get the ball away. The referee and his assistant both point at the corner flag. Atl. Madrid will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_OxCa1jdT] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. The referee and his assistant both point at the corner flag. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1680000"
},
{
"important": false,
"gameTime": "1 - 27:48",
"label": "",
"description": "Real Madrid are showing great team-chemistry. They are passing the ball around seamlessly but finally one of the defending players makes an interception.",
"identified": "[TEAM_] are showing great team-chemistry. They are passing the ball around seamlessly but finally one of the defending players makes an interception.",
"anonymized": "[TEAM] are showing great team-chemistry. They are passing the ball around seamlessly but finally one of the defending players makes an interception.",
"visibility": "shown",
"position": "1668000"
},
{
"important": false,
"gameTime": "1 - 25:45",
"label": "",
"description": "Gabi (Atl. Madrid) attempted to send a defence-splitting pass into space where Fernando Torres was lurking. It could have put him one-on-one with the goalkeeper, but one of the defending players somehow manages to avert the threat.",
"identified": "[PLAYER_Q3asrkFf] ([TEAM_]) attempted to send a defence-splitting pass into space where [PLAYER_65srZ2Lb] was lurking. It could have put him one-on-one with the goalkeeper, but one of the defending players somehow manages to avert the threat.",
"anonymized": "[PLAYER] ([TEAM]) attempted to send a defence-splitting pass into space where [PLAYER] was lurking. It could have put him one-on-one with the goalkeeper, but one of the defending players somehow manages to avert the threat.",
"visibility": "shown",
"position": "1545000"
},
{
"important": false,
"gameTime": "1 - 24:38",
"label": "",
"description": "Atl. 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": "1478000"
},
{
"important": false,
"gameTime": "1 - 22:37",
"label": "corner",
"description": "Gabi (Atl. Madrid) floats the ball in from the corner but it's intercepted.",
"identified": "[PLAYER_Q3asrkFf] ([TEAM_]) floats the ball in from the corner but it's intercepted.",
"anonymized": "[PLAYER] ([TEAM]) floats the ball in from the corner but it's intercepted.",
"visibility": "shown",
"position": "1357000"
},
{
"important": true,
"gameTime": "1 - 21:58",
"label": "penalty-missed",
"description": "Keylor Navas dives to the left side of the goal and brilliantly saves the penalty taken by Antoine Griezmann (Atl. Madrid)! Atl. Madrid will have a chance to score from a corner kick.",
"identified": "[PLAYER_dQEusiKl] dives to the left side of the goal and brilliantly saves the penalty taken by [PLAYER_OxCa1jdT] ([TEAM_])! [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] dives to the left side of the goal and brilliantly saves the penalty taken by [PLAYER] ([TEAM])! [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "1318000"
},
{
"important": true,
"gameTime": "1 - 21:52",
"label": "",
"description": "Antoine Griezmann (Atl. Madrid) is going to take the penalty!",
"identified": "[PLAYER_OxCa1jdT] ([TEAM_]) is going to take the penalty!",
"anonymized": "[PLAYER] ([TEAM]) is going to take the penalty!",
"visibility": "shown",
"position": "1312000"
},
{
"important": true,
"gameTime": "1 - 20:57",
"label": "y-card",
"description": "Alberto Undiano Mallenco shows a yellow card to Sergio Ramos (Real Madrid) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_db8mbBaO] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "1257000"
},
{
"important": true,
"gameTime": "1 - 20:55",
"label": "penalty",
"description": "Sergio Ramos (Real Madrid) tackles a bit over-zealously and Alberto Undiano Mallenco blows for a foul. Atl. Madrid are given a penalty!",
"identified": "[PLAYER_db8mbBaO] ([TEAM_]) tackles a bit over-zealously and [REFEREE] blows for a foul. [TEAM_] are given a penalty!",
"anonymized": "[PLAYER] ([TEAM]) tackles a bit over-zealously and [REFEREE] blows for a foul. [TEAM] are given a penalty!",
"visibility": "shown",
"position": "1255000"
},
{
"important": false,
"gameTime": "1 - 18:28",
"label": "",
"description": "Real Madrid hold the ball and display nice passing from player to player.",
"identified": "[TEAM_] hold the ball and display nice passing from player to player.",
"anonymized": "[TEAM] hold the ball and display nice passing from player to player.",
"visibility": "shown",
"position": "1108000"
},
{
"important": true,
"gameTime": "1 - 17:00",
"label": "y-card",
"description": "Alberto Undiano Mallenco shows a yellow card to Gabi (Atl. Madrid), who isn't surprised as the tackle was really hard and late.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_Q3asrkFf] ([TEAM_]), who isn't surprised as the tackle was really hard and late.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]), who isn't surprised as the tackle was really hard and late.",
"visibility": "shown",
"position": "1020000"
},
{
"important": false,
"gameTime": "1 - 16:31",
"label": "",
"description": "Juanfran (Atl. Madrid) delivers a crossfield pass, but the ball is cut out before it reaches its intended target.",
"identified": "[PLAYER_jLwtE6Rq] ([TEAM_]) delivers a crossfield pass, but the ball is cut out before it reaches its intended target.",
"anonymized": "[PLAYER] ([TEAM]) delivers a crossfield pass, but the ball is cut out before it reaches its intended target.",
"visibility": "shown",
"position": "991000"
},
{
"important": false,
"gameTime": "1 - 15:25",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat.",
"anonymized": "[PLAYER] ([TEAM]) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat.",
"visibility": "shown",
"position": "925000"
},
{
"important": true,
"gameTime": "1 - 14:44",
"label": "",
"description": "Lovely skill from Angel Correa (Atl. Madrid) as he gets away from defenders and unleashes a shot from 20 metres out, but his effort goes just wide of the right post.",
"identified": "Lovely skill from [PLAYER_McWkid34] ([TEAM_]) as he gets away from defenders and unleashes a shot from 20 metres out, but his effort goes just wide of the right post.",
"anonymized": "Lovely skill from [PLAYER] ([TEAM]) as he gets away from defenders and unleashes a shot from 20 metres out, but his effort goes just wide of the right post.",
"visibility": "shown",
"position": "884000"
},
{
"important": false,
"gameTime": "1 - 13:45",
"label": "",
"description": "Karim Benzema (Real Madrid) is picked out by one of his teammates with a brilliant long-range cross, but he doesn't control the ball well and the defence eliminates the danger without any problem.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) is picked out by one of his teammates with a brilliant long-range cross, but he doesn't control the ball well and the defence eliminates the danger without any problem.",
"anonymized": "[PLAYER] ([TEAM]) is picked out by one of his teammates with a brilliant long-range cross, but he doesn't control the ball well and the defence eliminates the danger without any problem.",
"visibility": "shown",
"position": "825000"
},
{
"important": false,
"gameTime": "1 - 12:24",
"label": "",
"description": "Keylor Navas displays his ability to read the game and clears the danger after Fernando Torres (Atl. Madrid) threatened to latch onto a through ball from just outside the box.",
"identified": "[PLAYER_dQEusiKl] displays his ability to read the game and clears the danger after [PLAYER_65srZ2Lb] ([TEAM_]) threatened to latch onto a through ball from just outside the box.",
"anonymized": "[PLAYER] displays his ability to read the game and clears the danger after [PLAYER] ([TEAM]) threatened to latch onto a through ball from just outside the box.",
"visibility": "shown",
"position": "744000"
},
{
"important": true,
"gameTime": "1 - 10:56",
"label": "",
"description": "Close! Angel Correa (Atl. Madrid) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post. The ball goes out of play and Real Madrid will have a goal kick.",
"identified": "Close! [PLAYER_McWkid34] ([TEAM_]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "Close! [PLAYER] ([TEAM]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "656000"
},
{
"important": false,
"gameTime": "1 - 10:23",
"label": "",
"description": "The Atl. Madrid players are displaying brilliant short passes and great ball movement. They are waiting to open the opposition's defence and hit them swiftly on the break.",
"identified": "The [TEAM_] players are displaying brilliant short passes and great ball movement. They are waiting to open the opposition's defence and hit them swiftly on the break.",
"anonymized": "The [TEAM] players are displaying brilliant short passes and great ball movement. They are waiting to open the opposition's defence and hit them swiftly on the break.",
"visibility": "shown",
"position": "623000"
}
]
} |