File size: 78,267 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 |
{
"timestamp": "1460210400",
"score": "4 - 0",
"round": "32",
"teams": [
"Real Madrid",
"Eibar"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "CO9bjrLo",
"name": "Arbeloa A.",
"captain": "",
"detail_link": "/player/arbeloa-alvaro/CO9bjrLo/",
"short_name": "Arbeloa",
"shirt_number": "17",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Alvaro Arbeloa"
},
{
"hash": "rZh5FTHE",
"name": "Carvajal D.",
"captain": "",
"detail_link": "/player/carvajal-daniel/rZh5FTHE/",
"short_name": "Carvajal",
"shirt_number": "15",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "63'",
"description": "Danilo",
"linked_player_hash": "KUjvgUhB"
}
],
"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": "6",
"time": "54'",
"description": "Kovacic M.",
"linked_player_hash": "4f084TL7"
}
],
"lineup": 7,
"starting": true,
"long_name": "Casemiro"
},
{
"hash": "l43b8dXD",
"name": "Casilla K.",
"captain": "",
"detail_link": "/player/casilla-francisco/l43b8dXD/",
"short_name": "Casilla",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"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": 4,
"starting": true,
"long_name": "Nacho Fernandez"
},
{
"hash": "ULLmpdEb",
"name": "Isco",
"captain": "",
"detail_link": "/player/isco/ULLmpdEb/",
"short_name": "Isco",
"shirt_number": "22",
"country": "Spain",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Isco"
},
{
"hash": "6BdSXunk",
"name": "Jese",
"captain": "",
"detail_link": "/player/jese/6BdSXunk/",
"short_name": "Jese",
"shirt_number": "20",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "19' Ronaldo C. (Jese)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "39' Jese (Ronaldo C.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "76'",
"description": "Mayoral B.",
"linked_player_hash": "8OTCRUh0"
}
],
"lineup": 10,
"starting": true,
"long_name": "Jese"
},
{
"hash": "pEjBDsSH",
"name": "Lucas",
"captain": "",
"detail_link": "/player/lucas/pEjBDsSH/",
"short_name": "Vazquez",
"shirt_number": "18",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "18' Lucas (Ronaldo C.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Lucas Vazquez"
},
{
"hash": "2y9qaipI",
"name": "Pepe",
"captain": "(C)",
"detail_link": "/player/pepe/2y9qaipI/",
"short_name": "Pepe",
"shirt_number": "3",
"country": "Portugal",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Pepe"
},
{
"hash": "MPaioN57",
"name": "Rodriguez J.",
"captain": "",
"detail_link": "/player/rodriguez-james/MPaioN57/",
"short_name": "Rodriguez",
"shirt_number": "10",
"country": "Colombia",
"facts": [
{
"type": "3",
"time": "5' Rodriguez J.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "James Rodriguez"
},
{
"hash": "WGOY4FSt",
"name": "Ronaldo C.",
"captain": "",
"detail_link": "/player/ronaldo-cristiano/WGOY4FSt/",
"short_name": "Ronaldo",
"shirt_number": "7",
"country": "Portugal",
"facts": [
{
"type": "8",
"time": "18' Lucas (Ronaldo C.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "19' Ronaldo C. (Jese)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "8",
"time": "39' Jese (Ronaldo C.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Cristiano Ronaldo"
},
{
"hash": "4SPjLLiR",
"name": "Bale G.",
"captain": "",
"detail_link": "/player/bale-gareth/4SPjLLiR/",
"short_name": "Bale",
"shirt_number": "11",
"country": "Wales",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gareth Bale"
},
{
"hash": "KUjvgUhB",
"name": "Danilo",
"captain": "",
"detail_link": "/player/danilo/KUjvgUhB/",
"short_name": "Danilo",
"shirt_number": "23",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "63'",
"description": "Carvajal D.",
"linked_player_hash": "rZh5FTHE"
},
{
"type": "1",
"time": "78' Danilo (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Danilo"
},
{
"hash": "4f084TL7",
"name": "Kovacic M.",
"captain": "",
"detail_link": "/player/kovacic-mateo/4f084TL7/",
"short_name": "Kovacic",
"shirt_number": "16",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "54'",
"description": "Casemiro",
"linked_player_hash": "Ukeq3c0b"
}
],
"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": "zmAm2AEH",
"name": "Marcelo",
"captain": "",
"detail_link": "/player/marcelo/zmAm2AEH/",
"short_name": "Marcelo",
"shirt_number": "12",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marcelo"
},
{
"hash": "8OTCRUh0",
"name": "Mayoral B.",
"captain": "",
"detail_link": "/player/mayoral-borja/8OTCRUh0/",
"short_name": "Mayoral",
"shirt_number": "29",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Jese",
"linked_player_hash": "6BdSXunk"
}
],
"lineup": null,
"starting": false,
"long_name": "Borja Mayoral"
},
{
"hash": "8pgzl3LK",
"name": "Yanez R.",
"captain": "",
"detail_link": "/player/yanez-ruben/8pgzl3LK/",
"short_name": "Yanez",
"shirt_number": "31",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ruben Yanez"
}
],
"coach": [
{
"hash": "b7zuQEqO",
"name": "Zidane Z.",
"captain": "",
"detail_link": "/player/zidane-zinedine/b7zuQEqO/",
"short_name": "Zidane Z.",
"shirt_number": "",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Zinedine Zidane"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "nTxpOTze",
"name": "Adrian",
"captain": "",
"detail_link": "/player/adrian/nTxpOTze/",
"short_name": "Adrian",
"shirt_number": "24",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Baston B.",
"linked_player_hash": "jVMqoxah"
}
],
"lineup": 9,
"starting": true,
"long_name": "Adrian"
},
{
"hash": "tvHMBqV4",
"name": "Capa A.",
"captain": "",
"detail_link": "/player/capa-ander/tvHMBqV4/",
"short_name": "Capa",
"shirt_number": "7",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Ander Capa"
},
{
"hash": "rF4Be8Yj",
"name": "Enrich S.",
"captain": "",
"detail_link": "/player/enrich-sergio/rF4Be8Yj/",
"short_name": "Enrich",
"shirt_number": "9",
"country": "Spain",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Sergio Enrich"
},
{
"hash": "ferBlfmN",
"name": "Escalante G.",
"captain": "",
"detail_link": "/player/escalante-gonzalo/ferBlfmN/",
"short_name": "Escalante",
"shirt_number": "5",
"country": "Argentina",
"facts": [
{
"type": "1",
"time": "62' Escalante G. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Gonzalo Escalante"
},
{
"hash": "UmJD3Lxo",
"name": "Garcia D.",
"captain": "(C)",
"detail_link": "/player/garcia-dani/UmJD3Lxo/",
"short_name": "Garcia",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "3' Garcia D. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Dani Garcia"
},
{
"hash": "jqs3NapT",
"name": "Jota",
"captain": "",
"detail_link": "/player/jota/jqs3NapT/",
"short_name": "Jota",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Junca D.",
"linked_player_hash": "EFHWV7vB"
}
],
"lineup": 10,
"starting": true,
"long_name": "Jota"
},
{
"hash": "6sNAjHu1",
"name": "Keko",
"captain": "",
"detail_link": "/player/keko/6sNAjHu1/",
"short_name": "Keko",
"shirt_number": "20",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "72'",
"description": "Hajrovic I.",
"linked_player_hash": "OOMNXLc2"
}
],
"lineup": 8,
"starting": true,
"long_name": "Keko"
},
{
"hash": "OnkPmMCT",
"name": "Luna A.",
"captain": "",
"detail_link": "/player/luna-antonio/OnkPmMCT/",
"short_name": "Luna",
"shirt_number": "19",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Antonio Luna"
},
{
"hash": "nohsrKg9",
"name": "Pantic A.",
"captain": "",
"detail_link": "/player/pantic-aleksandar/nohsrKg9/",
"short_name": "Pantic",
"shirt_number": "3",
"country": "Serbia",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Aleksandar Pantic"
},
{
"hash": "xlCfgKS2",
"name": "Ramis I.",
"captain": "",
"detail_link": "/player/ramis-ivan/xlCfgKS2/",
"short_name": "Ramis",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "68' Ramis I. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Ivan Ramis"
},
{
"hash": "xQHpC8xB",
"name": "Riesgo A.",
"captain": "",
"detail_link": "/player/riesgo-asier/xQHpC8xB/",
"short_name": "Riesgo",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Asier Riesgo"
},
{
"hash": "b385IeJn",
"name": "Ansotegi I.",
"captain": "",
"detail_link": "/player/ansotegi-ion/b385IeJn/",
"short_name": "Ansotegi",
"shirt_number": "2",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ion Ansotegi"
},
{
"hash": "jVMqoxah",
"name": "Baston B.",
"captain": "",
"detail_link": "/player/baston-borja/jVMqoxah/",
"short_name": "Baston",
"shirt_number": "18",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Adrian",
"linked_player_hash": "nTxpOTze"
}
],
"lineup": null,
"starting": false,
"long_name": "Borja Baston"
},
{
"hash": "KdYI1QAn",
"name": "Berjon S.",
"captain": "",
"detail_link": "/player/berjon-saul/KdYI1QAn/",
"short_name": "Berjon",
"shirt_number": "21",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Saul Berjon"
},
{
"hash": "OOMNXLc2",
"name": "Hajrovic I.",
"captain": "",
"detail_link": "/player/hajrovic-izet/OOMNXLc2/",
"short_name": "Hajrovic",
"shirt_number": "11",
"country": "Bosnia and Herzegovina",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Keko",
"linked_player_hash": "6sNAjHu1"
}
],
"lineup": null,
"starting": false,
"long_name": "Izet Hajrovic"
},
{
"hash": "xrLbfBdj",
"name": "Inui T.",
"captain": "",
"detail_link": "/player/inui-takashi/xrLbfBdj/",
"short_name": "Inui",
"shirt_number": "8",
"country": "Japan",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Takashi Inui"
},
{
"hash": "hSRo81UT",
"name": "Irureta X.",
"captain": "",
"detail_link": "/player/irureta-xabi/hSRo81UT/",
"short_name": "Irureta",
"shirt_number": "1",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Xabi Irureta"
},
{
"hash": "EFHWV7vB",
"name": "Junca D.",
"captain": "",
"detail_link": "/player/junca-david/EFHWV7vB/",
"short_name": "Junca",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Jota",
"linked_player_hash": "jqs3NapT"
}
],
"lineup": null,
"starting": false,
"long_name": "David Junca"
}
],
"coach": [
{
"hash": "vy8l9QZi",
"name": "Mendilibar J.",
"captain": "",
"detail_link": "/player/mendilibar-jose/vy8l9QZi/",
"short_name": "Mendilibar J.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jose Mendilibar"
}
]
}
},
"referee": [
"Sanchez J."
],
"venue": [
"Estadio Santiago Bernab\u00e9u (Madrid)"
],
"attendance": [
"70 689"
],
"referee_matched": [
"Jose Sanchez"
],
"referee_found": [
"Jose Sanchez"
],
"coach_matched": [
"Zinedine Zidane",
"Jose Mendilibar"
],
"gameHomeTeam": "Real Madrid",
"home": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameAwayTeam": "Eibar",
"away": {
"name": "Eibar",
"detail_link": "/team/eibar/OEsEpExD",
"hash": "OEsEpExD",
"names": [
"Eibar",
"eibar"
]
},
"gameDate": "09/04/2016 - 16:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 46:59",
"label": "",
"description": "It was an attractive offensive game and the fans have no reason to be upset. The home side dominated today's game. The home team tried to prevail using combination football unlike the away players who attempted to beat the opposition's defence using mostly counter-attacks.",
"identified": "It was an attractive offensive game and the fans have no reason to be upset. The home side dominated today's game. The home team tried to prevail using combination football unlike the away players who attempted to beat the opposition's defence using mostly counter-attacks.",
"anonymized": "It was an attractive offensive game and the fans have no reason to be upset. The home side dominated today's game. The home team tried to prevail using combination football unlike the away players who attempted to beat the opposition's defence using mostly counter-attacks.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "2 - 46:57",
"label": "whistle",
"description": "Jose Sanchez is looking at his watch and immediately ends this match.",
"identified": "[REFEREE] is looking at his watch and immediately ends this match.",
"anonymized": "[REFEREE] is looking at his watch and immediately ends this match.",
"visibility": "shown",
"position": "2817000"
},
{
"important": false,
"gameTime": "2 - 45:45",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) takes a mid-range shot, but the ball sails high over the bar.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) takes a mid-range shot, but the ball sails high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) takes a mid-range shot, but the ball sails high over the bar.",
"visibility": "shown",
"position": "2745000"
},
{
"important": false,
"gameTime": "2 - 45:30",
"label": "",
"description": "Mateo Kovacic (Real Madrid) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender.",
"identified": "[PLAYER_4f084TL7] ([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": "2730000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "2 additional min. will be played.",
"identified": "2 additional min. will be played.",
"anonymized": "2 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:45",
"label": "attendance",
"description": "The attendance for today's match is 70689.",
"identified": "The attendance for today's match is 70689.",
"anonymized": "The attendance for today's match is 70689.",
"visibility": "shown",
"position": "2685000"
},
{
"important": false,
"gameTime": "2 - 38:43",
"label": "",
"description": "One of the players from Real Madrid times his run too early and the referee blows his whistle for offside.",
"identified": "One of the players from [TEAM_] times his run too early and the referee blows his whistle for offside.",
"anonymized": "One of the players from [TEAM] times his run too early and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "2323000"
},
{
"important": false,
"gameTime": "2 - 38:21",
"label": "corner",
"description": "The ball is whipped in from the corner by Izet Hajrovic (Eibar), but one of the defenders gets it clear.",
"identified": "The ball is whipped in from the corner by [PLAYER_OOMNXLc2] ([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": "2301000"
},
{
"important": false,
"gameTime": "2 - 38:20",
"label": "",
"description": "The keeper doesn't have to worry about this one. Danilo (Real Madrid) sacrificed accuracy for power, and thus his attempt went well wide of the left post.",
"identified": "The keeper doesn't have to worry about this one. [PLAYER_KUjvgUhB] ([TEAM_]) sacrificed accuracy for power, and thus his attempt went well wide of the left post.",
"anonymized": "The keeper doesn't have to worry about this one. [PLAYER] ([TEAM]) sacrificed accuracy for power, and thus his attempt went well wide of the left post.",
"visibility": "shown",
"position": "2300000"
},
{
"important": false,
"gameTime": "2 - 37:38",
"label": "",
"description": "A lofted cross from Izet Hajrovic (Eibar) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. Eibar have a corner.",
"identified": "A lofted cross from [PLAYER_OOMNXLc2] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. [TEAM_] have 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] have a corner.",
"visibility": "shown",
"position": "2258000"
},
{
"important": false,
"gameTime": "2 - 36:01",
"label": "",
"description": "Isco (Real Madrid) fails to pick a body out in the box with an over-hit chip pass. The ball is off of the pitch and it's a goal kick for Eibar.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) fails to pick a body out in the box with an over-hit chip pass. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) fails to pick a body out in the box with an over-hit chip pass. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2161000"
},
{
"important": true,
"gameTime": "2 - 34:36",
"label": "",
"description": "CHANCE! Borja Baston (Eibar) rises high to meet the resultant corner kick and attempts to steer his fine header past the goalkeeper, but only hits the crossbar!",
"identified": "CHANCE! [PLAYER_jVMqoxah] ([TEAM_]) rises high to meet the resultant corner kick and attempts to steer his fine header past the goalkeeper, but only hits the crossbar!",
"anonymized": "CHANCE! [PLAYER] ([TEAM]) rises high to meet the resultant corner kick and attempts to steer his fine header past the goalkeeper, but only hits the crossbar!",
"visibility": "shown",
"position": "2076000"
},
{
"important": false,
"gameTime": "2 - 34:25",
"label": "corner",
"description": "The referee awards a corner and Izet Hajrovic (Eibar) goes over to take it.",
"identified": "The referee awards a corner and [PLAYER_OOMNXLc2] ([TEAM_]) goes over to take it.",
"anonymized": "The referee awards a corner and [PLAYER] ([TEAM]) goes over to take it.",
"visibility": "shown",
"position": "2065000"
},
{
"important": true,
"gameTime": "2 - 33:00",
"label": "y-card",
"description": "Jose Sanchez shows a yellow card to Danilo (Real Madrid), who isn't surprised as the tackle was really hard and late.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_KUjvgUhB] ([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": "1980000"
},
{
"important": false,
"gameTime": "2 - 32:55",
"label": "",
"description": "Izet Hajrovic (Eibar) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The ball is out of play. Eibar will have a chance to score from a corner.",
"identified": "[PLAYER_OOMNXLc2] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "1975000"
},
{
"important": false,
"gameTime": "2 - 32:50",
"label": "",
"description": "The ball is cleared after Izet Hajrovic (Eibar) attempted to dribble past an opposing player. It's a throw-in for Eibar.",
"identified": "The ball is cleared after [PLAYER_OOMNXLc2] ([TEAM_]) attempted to dribble past an opposing player. It's a throw-in for [TEAM_].",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. It's a throw-in for [TEAM].",
"visibility": "shown",
"position": "1970000"
},
{
"important": true,
"gameTime": "2 - 30:01",
"label": "substitution",
"description": "Zinedine Zidane has decided to introduce fresh legs, with Borja Mayoral (Real Madrid) replacing Jese.",
"identified": "[COACH_b7zuQEqO] has decided to introduce fresh legs, with [PLAYER_8OTCRUh0] ([TEAM_]) replacing [PLAYER_6BdSXunk].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "1801000"
},
{
"important": true,
"gameTime": "2 - 28:46",
"label": "",
"description": "Golden chance! Cristiano Ronaldo (Real Madrid) meets a cross in the box and finds some space for a shot. He produces an inaccurate effort that goes wide of the left post.",
"identified": "Golden chance! [PLAYER_WGOY4FSt] ([TEAM_]) meets a cross in the box and finds some space for a shot. He produces an inaccurate effort that goes wide of the left post.",
"anonymized": "Golden chance! [PLAYER] ([TEAM]) meets a cross in the box and finds some space for a shot. He produces an inaccurate effort that goes wide of the left post.",
"visibility": "shown",
"position": "1726000"
},
{
"important": false,
"gameTime": "2 - 28:05",
"label": "",
"description": "Some neat passing and movement from Real 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": "1685000"
},
{
"important": true,
"gameTime": "2 - 26:33",
"label": "substitution",
"description": "Substitution. Izet Hajrovic (Eibar) in, Keko out.",
"identified": "Substitution. [PLAYER_OOMNXLc2] ([TEAM_]) in, [PLAYER_6sNAjHu1] out.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) in, [PLAYER] out.",
"visibility": "shown",
"position": "1593000"
},
{
"important": false,
"gameTime": "2 - 24:17",
"label": "",
"description": "A pass by Mateo Kovacic (Real Madrid) ends up in no man's land, and the attacking effort comes to an end.",
"identified": "A pass by [PLAYER_4f084TL7] ([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": "1457000"
},
{
"important": true,
"gameTime": "2 - 22:58",
"label": "y-card",
"description": "Jose Sanchez shows a yellow card to Ivan Ramis (Eibar) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_xlCfgKS2] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "1378000"
},
{
"important": false,
"gameTime": "2 - 21:53",
"label": "",
"description": "Lucas (Real Madrid) sends a lofted cross into the box which is headed clear.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) sends a lofted cross into the box which is headed clear.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the box which is headed clear.",
"visibility": "shown",
"position": "1313000"
},
{
"important": false,
"gameTime": "2 - 20:55",
"label": "corner",
"description": "Asier Riesgo leaps to intercept the corner kick from James Rodriguez (Real Madrid).",
"identified": "[PLAYER_xQHpC8xB] leaps to intercept the corner kick from [PLAYER_MPaioN57] ([TEAM_]).",
"anonymized": "[PLAYER] leaps to intercept the corner kick from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1255000"
},
{
"important": false,
"gameTime": "2 - 20:40",
"label": "",
"description": "A cross from Jese (Real Madrid) fails to reach the box as the defence clears the ball away to safety. Real Madrid get a corner.",
"identified": "A cross from [PLAYER_6BdSXunk] ([TEAM_]) fails to reach the box as the defence clears the ball away to safety. [TEAM_] get a corner.",
"anonymized": "A cross from [PLAYER] ([TEAM]) fails to reach the box as the defence clears the ball away to safety. [TEAM] get a corner.",
"visibility": "shown",
"position": "1240000"
},
{
"important": false,
"gameTime": "2 - 19:26",
"label": "",
"description": "Keko (Eibar) is adjudged to have been offside when making his run.",
"identified": "[PLAYER_6sNAjHu1] ([TEAM_]) is adjudged to have been offside when making his run.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged to have been offside when making his run.",
"visibility": "shown",
"position": "1166000"
},
{
"important": true,
"gameTime": "2 - 18:00",
"label": "substitution",
"description": "Daniel Carvajal comes off the pitch to be replaced by Danilo (Real Madrid).",
"identified": "[PLAYER_rZh5FTHE] comes off the pitch to be replaced by [PLAYER_KUjvgUhB] ([TEAM_]).",
"anonymized": "[PLAYER] comes off the pitch to be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1080000"
},
{
"important": true,
"gameTime": "2 - 17:00",
"label": "y-card",
"description": "Gonzalo Escalante (Eibar) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but Jose Sanchez ignores the protests.",
"identified": "[PLAYER_ferBlfmN] ([TEAM_]) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but [REFEREE] ignores the protests.",
"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.",
"visibility": "shown",
"position": "1020000"
},
{
"important": false,
"gameTime": "2 - 14:46",
"label": "corner",
"description": "David Junca (Eibar) takes a short corner kick.",
"identified": "[PLAYER_EFHWV7vB] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "886000"
},
{
"important": false,
"gameTime": "2 - 14:12",
"label": "",
"description": "Sergio Enrich (Eibar) attempts to whip a quick pass into the box, but Borja Baston was not able to dribble past the opponent's defence and loses the ball. Eibar force a corner. They send men into the box.",
"identified": "[PLAYER_rF4Be8Yj] ([TEAM_]) attempts to whip a quick pass into the box, but [PLAYER_jVMqoxah] was not able to dribble past the opponent's defence and loses the ball. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) attempts to whip a quick pass into the box, but [PLAYER] was not able to dribble past the opponent's defence and loses the ball. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "852000"
},
{
"important": false,
"gameTime": "2 - 13:15",
"label": "",
"description": "Sergio Enrich (Eibar) escapes without any punishment from the referee after using excessive force to foul his opponent.",
"identified": "[PLAYER_rF4Be8Yj] ([TEAM_]) escapes without any punishment from the referee after using excessive force to foul his opponent.",
"anonymized": "[PLAYER] ([TEAM]) escapes without any punishment from the referee after using excessive force to foul his opponent.",
"visibility": "shown",
"position": "795000"
},
{
"important": false,
"gameTime": "2 - 10:55",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"visibility": "shown",
"position": "655000"
},
{
"important": true,
"gameTime": "2 - 08:55",
"label": "",
"description": "David Junca (Eibar) shoots after receiving a good pass. His effort from the edge of the box goes just wide of the right post.",
"identified": "[PLAYER_EFHWV7vB] ([TEAM_]) shoots after receiving a good pass. His effort from the edge of the box goes just wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) shoots after receiving a good pass. His effort from the edge of the box goes just wide of the right post.",
"visibility": "shown",
"position": "535000"
},
{
"important": true,
"gameTime": "2 - 08:10",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Mateo Kovacic (Real Madrid) comes onto the pitch so that Casemiro can be given a rest.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_4f084TL7] ([TEAM_]) comes onto the pitch so that [PLAYER_Ukeq3c0b] can be given a rest.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) comes onto the pitch so that [PLAYER] can be given a rest.",
"visibility": "shown",
"position": "490000"
},
{
"important": false,
"gameTime": "2 - 06:55",
"label": "corner",
"description": "The corner from James Rodriguez (Real Madrid) is hurriedly cleared.",
"identified": "The corner from [PLAYER_MPaioN57] ([TEAM_]) is hurriedly cleared.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is hurriedly cleared.",
"visibility": "shown",
"position": "415000"
},
{
"important": false,
"gameTime": "2 - 06:43",
"label": "",
"description": "Jese (Real Madrid) sends a pass into the box, but his attempt is thwarted and cleared. The referee and one of his assistants signal for a corner kick to Real Madrid.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "403000"
},
{
"important": false,
"gameTime": "2 - 06:18",
"label": "",
"description": "Jese (Real Madrid) slips past one challenge, but is unable to feed a low pass into the path of one of his teammates.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) slips past one challenge, but is unable to feed a low pass into the path of one of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) slips past one challenge, but is unable to feed a low pass into the path of one of his teammates.",
"visibility": "shown",
"position": "378000"
},
{
"important": false,
"gameTime": "2 - 05:25",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) was close to scoring after he unleashed a powerful shot which went a whisker wide of the left post.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) was close to scoring after he unleashed a powerful shot which went a whisker wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) was close to scoring after he unleashed a powerful shot which went a whisker wide of the left post.",
"visibility": "shown",
"position": "325000"
},
{
"important": false,
"gameTime": "2 - 04:59",
"label": "corner",
"description": "The corner kick from David Junca (Eibar) is headed out of the penalty area by one of the defenders.",
"identified": "The corner kick from [PLAYER_EFHWV7vB] ([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": "299000"
},
{
"important": false,
"gameTime": "2 - 04:58",
"label": "",
"description": "Keko (Eibar) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The linesman points to the corner flag, Eibar are going to take it.",
"identified": "[PLAYER_6sNAjHu1] ([TEAM_]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The linesman points to the corner flag, [TEAM_] are going to take it.",
"anonymized": "[PLAYER] ([TEAM]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "298000"
},
{
"important": false,
"gameTime": "2 - 03:30",
"label": "corner",
"description": "James Rodriguez (Real Madrid) takes the corner, but the goalkeeper jumps and gathers the ball.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) takes the corner, but the goalkeeper jumps and gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but the goalkeeper jumps and gathers the ball.",
"visibility": "shown",
"position": "210000"
},
{
"important": false,
"gameTime": "2 - 03:26",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of Asier Riesgo. Corner kick. Real Madrid will have an opportunity.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER_xQHpC8xB]. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "[PLAYER] ([TEAM]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER]. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "206000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "Half-time substitution. Jose Mendilibar decided to make a change. Jota is replaced by David Junca (Eibar).",
"identified": "Half-time substitution. [COACH_vy8l9QZi] decided to make a change. [PLAYER_jqs3NapT] is replaced by [PLAYER_EFHWV7vB] ([TEAM_]).",
"anonymized": "Half-time substitution. [COACH] decided to make a change. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "The need to improve in the second half has brought about a change. Adrian comes off for Borja Baston (Eibar).",
"identified": "The need to improve in the second half has brought about a change. [PLAYER_nTxpOTze] comes off for [PLAYER_jVMqoxah] ([TEAM_]).",
"anonymized": "The need to improve in the second half has brought about a change. [PLAYER] comes off for [PLAYER] ([TEAM]).",
"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 - 45:59",
"label": "",
"description": "We have seen an attractive offensive game so far and the fans have nothing to complain about. The hosts are enjoying a clear advantage over the opposition. The home team are playing possession football, while the away team look to find a weakness in the opposition's defence mainly with their rapid counter-attacks.",
"identified": "We have seen an attractive offensive game so far and the fans have nothing to complain about. The hosts are enjoying a clear advantage over the opposition. The home team are playing possession football, while the away team look to find a weakness in the opposition's defence mainly with their rapid counter-attacks.",
"anonymized": "We have seen an attractive offensive game so far and the fans have nothing to complain about. The hosts are enjoying a clear advantage over the opposition. The home team are playing possession football, while the away team look to find a weakness in the opposition's defence mainly with their rapid counter-attacks.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:58",
"label": "whistle",
"description": "The first half of today's match has just finished.",
"identified": "The first half of today's match has just finished.",
"anonymized": "The first half of today's match has just finished.",
"visibility": "shown",
"position": "2758000"
},
{
"important": false,
"gameTime": "1 - 45:45",
"label": "corner",
"description": "Isco (Real Madrid) decides to take a short corner instead of crossing into the box.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) decides to take a short corner instead of crossing into the box.",
"anonymized": "[PLAYER] ([TEAM]) decides to take a short corner instead of crossing into the box.",
"visibility": "shown",
"position": "2745000"
},
{
"important": false,
"gameTime": "1 - 45:28",
"label": "",
"description": "Isco (Real Madrid) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players. The ball is out of play. A goal-scoring opportunity from a corner for Real Madrid.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "2728000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "Fourth official shows 1 min. of added time.",
"identified": "Fourth official shows 1 min. of added time.",
"anonymized": "Fourth official shows 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 42:35",
"label": "",
"description": "Jota (Eibar) sends a cross into the box, but Francisco Casilla comes off his line to gather the ball.",
"identified": "[PLAYER_jqs3NapT] ([TEAM_]) sends a cross into the box, but [PLAYER_l43b8dXD] 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": "2555000"
},
{
"important": false,
"gameTime": "1 - 42:05",
"label": "",
"description": "What a save from Asier Riesgo! Cristiano Ronaldo (Real Madrid) jumps high to meet a cross and glances a promising header from close range, but the goalkeeper pulls off a brilliant stop to keep it out.",
"identified": "What a save from [PLAYER_xQHpC8xB]! [PLAYER_WGOY4FSt] ([TEAM_]) jumps high to meet a cross and glances a promising header from close range, but the goalkeeper pulls off a brilliant stop to keep it out.",
"anonymized": "What a save from [PLAYER]! [PLAYER] ([TEAM]) jumps high to meet a cross and glances a promising header from close range, but the goalkeeper pulls off a brilliant stop to keep it out.",
"visibility": "shown",
"position": "2525000"
},
{
"important": false,
"gameTime": "1 - 40:50",
"label": "",
"description": "Aleksandar Pantic (Eibar) rises highest from the corner to head at goal, but his effort towards the middle of the goal is comfortably saved by the goalkeeper.",
"identified": "[PLAYER_nohsrKg9] ([TEAM_]) rises highest from the corner to head at goal, but his effort towards the middle of the goal is comfortably saved by the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) rises highest from the corner to head at goal, but his effort towards the middle of the goal is comfortably saved by the goalkeeper.",
"visibility": "shown",
"position": "2450000"
},
{
"important": false,
"gameTime": "1 - 40:27",
"label": "corner",
"description": "Jota (Eibar) will deliver the ball into the penalty box from a corner kick.",
"identified": "[PLAYER_jqs3NapT] ([TEAM_]) will deliver the ball into the penalty box from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will deliver the ball into the penalty box from a corner kick.",
"visibility": "shown",
"position": "2427000"
},
{
"important": false,
"gameTime": "1 - 40:04",
"label": "",
"description": "Keko (Eibar) fails to find any of his teammates inside the box as his pass is blocked. Eibar will take a corner kick.",
"identified": "[PLAYER_6sNAjHu1] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked. [TEAM_] will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "2404000"
},
{
"important": true,
"gameTime": "1 - 38:59",
"label": "soccer-ball",
"description": "Goal! Cristiano Ronaldo rounded the goalkeeper and sent a sweet pass to Jese (Real Madrid), who had an easy finish to put it into an empty net. 4:0.",
"identified": "Goal! [PLAYER_WGOY4FSt] rounded the goalkeeper and sent a sweet pass to [PLAYER_6BdSXunk] ([TEAM_]), who had an easy finish to put it into an empty net. 4:0.",
"anonymized": "Goal! [PLAYER] rounded the goalkeeper and sent a sweet pass to [PLAYER] ([TEAM]), who had an easy finish to put it into an empty net. 4:0.",
"visibility": "shown",
"position": "2339000"
},
{
"important": false,
"gameTime": "1 - 37:54",
"label": "",
"description": "Ivan Ramis (Eibar) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"identified": "[PLAYER_xlCfgKS2] ([TEAM_]) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"anonymized": "[PLAYER] ([TEAM]) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"visibility": "shown",
"position": "2274000"
},
{
"important": false,
"gameTime": "1 - 37:26",
"label": "",
"description": "James Rodriguez (Real Madrid) stands over the resultant free kick from mid-range, but his shot goes just over the crossbar. It could have been a fantastic goal!",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) stands over the resultant free kick from mid-range, but his shot goes just over the crossbar. It could have been a fantastic goal!",
"anonymized": "[PLAYER] ([TEAM]) stands over the resultant free kick from mid-range, but his shot goes just over the crossbar. It could have been a fantastic goal!",
"visibility": "shown",
"position": "2246000"
},
{
"important": false,
"gameTime": "1 - 36:32",
"label": "",
"description": "Lucas (Real Madrid) is moving okay again after that injury scare.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) is moving okay again after that injury scare.",
"anonymized": "[PLAYER] ([TEAM]) is moving okay again after that injury scare.",
"visibility": "shown",
"position": "2192000"
},
{
"important": false,
"gameTime": "1 - 35:56",
"label": "injury",
"description": "Ivan Ramis (Eibar) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_xlCfgKS2] ([TEAM_]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"anonymized": "[PLAYER] ([TEAM]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"visibility": "shown",
"position": "2156000"
},
{
"important": false,
"gameTime": "1 - 35:34",
"label": "injury",
"description": "The game is interrupted now, Lucas (Real Madrid) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_pEjBDsSH] ([TEAM_]) picks up a knock and the physio has to come on.",
"anonymized": "The game is interrupted now, [PLAYER] ([TEAM]) picks up a knock and the physio has to come on.",
"visibility": "shown",
"position": "2134000"
},
{
"important": false,
"gameTime": "1 - 34:29",
"label": "",
"description": "Casemiro (Real Madrid) brings an opponent down and Jose Sanchez interrupts the game.",
"identified": "[PLAYER_Ukeq3c0b] ([TEAM_]) brings an opponent down and [REFEREE] interrupts the game.",
"anonymized": "[PLAYER] ([TEAM]) brings an opponent down and [REFEREE] interrupts the game.",
"visibility": "shown",
"position": "2069000"
},
{
"important": false,
"gameTime": "1 - 33:14",
"label": "corner",
"description": "James Rodriguez (Real Madrid) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"identified": "[PLAYER_MPaioN57] ([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": "1994000"
},
{
"important": false,
"gameTime": "1 - 32:39",
"label": "",
"description": "A cross into the box from Cristiano Ronaldo (Real Madrid) is cleared. The ball is out of play and Real Madrid manage to earn a corner.",
"identified": "A cross into the box from [PLAYER_WGOY4FSt] ([TEAM_]) is cleared. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "A cross into the box from [PLAYER] ([TEAM]) is cleared. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "1959000"
},
{
"important": false,
"gameTime": "1 - 32:21",
"label": "corner",
"description": "Jota (Eibar) takes the corner which is cleared.",
"identified": "[PLAYER_jqs3NapT] ([TEAM_]) takes the corner which is cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared.",
"visibility": "shown",
"position": "1941000"
},
{
"important": false,
"gameTime": "1 - 31:52",
"label": "",
"description": "Keko (Eibar) sends a cross into the box, but the opposition's defence clears the ball to safety. Eibar will have a chance to score from a corner kick.",
"identified": "[PLAYER_6sNAjHu1] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball to safety. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball to safety. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "1912000"
},
{
"important": false,
"gameTime": "1 - 28:27",
"label": "corner",
"description": "A horde of players are waiting inside the penalty area for a cross from the corner, but Isco (Real Madrid) takes it short.",
"identified": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER_ULLmpdEb] ([TEAM_]) takes it short.",
"anonymized": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER] ([TEAM]) takes it short.",
"visibility": "shown",
"position": "1707000"
},
{
"important": false,
"gameTime": "1 - 28:13",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) races towards goal but the defender gets back well to make a challenge. The ball is out of play and the linesman points at the corner flag. Corner to Real Madrid.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "1693000"
},
{
"important": false,
"gameTime": "1 - 27:19",
"label": "",
"description": "tries to find Jota (Eibar), but he puts too much power on the pass.",
"identified": "tries to find [PLAYER_jqs3NapT] ([TEAM_]), but he puts too much power on the pass.",
"anonymized": "tries to find [PLAYER] ([TEAM]), but he puts too much power on the pass.",
"visibility": "shown",
"position": "1639000"
},
{
"important": false,
"gameTime": "1 - 24:27",
"label": "corner",
"description": "Jota (Eibar) takes the corner but fails to find any of his teammates.",
"identified": "[PLAYER_jqs3NapT] ([TEAM_]) takes the corner but fails to find any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates.",
"visibility": "shown",
"position": "1467000"
},
{
"important": false,
"gameTime": "1 - 24:10",
"label": "",
"description": "Nacho (Real Madrid) has picked up a minor injury, but it looks like he will be able to continue.",
"identified": "[PLAYER_8Wp8ZCLG] ([TEAM_]) has picked up a minor injury, but it looks like he will be able to continue.",
"anonymized": "[PLAYER] ([TEAM]) has picked up a minor injury, but it looks like he will be able to continue.",
"visibility": "shown",
"position": "1450000"
},
{
"important": false,
"gameTime": "1 - 23:58",
"label": "",
"description": "Jota (Eibar) flights in the cross, but the defender is alert and clears to safety. Eibar have been awarded a corner kick.",
"identified": "[PLAYER_jqs3NapT] ([TEAM_]) flights in the cross, but the defender is alert and clears to safety. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) flights in the cross, but the defender is alert and clears to safety. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1438000"
},
{
"important": false,
"gameTime": "1 - 22:35",
"label": "injury",
"description": "Nacho (Real Madrid) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_8Wp8ZCLG] ([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": "1355000"
},
{
"important": false,
"gameTime": "1 - 21:58",
"label": "",
"description": "Jota (Eibar) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_jqs3NapT] ([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": "1318000"
},
{
"important": true,
"gameTime": "1 - 19:00",
"label": "soccer-ball",
"description": "Goal - 3:0! Jese laid the ball off to Cristiano Ronaldo (Real Madrid), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"identified": "Goal - 3:0! [PLAYER_6BdSXunk] laid the ball off to [PLAYER_WGOY4FSt] ([TEAM_]), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"anonymized": "Goal - 3:0! [PLAYER] laid the ball off to [PLAYER] ([TEAM]), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"visibility": "shown",
"position": "1140000"
},
{
"important": true,
"gameTime": "1 - 17:27",
"label": "soccer-ball",
"description": "Wonderful movement! Cristiano Ronaldo is in a good position inside the box but decides to pass the ball to Lucas (Real Madrid), who keeps his cool and blasts the ball inside the left post. What a finish that is \u2013 2:0.",
"identified": "Wonderful movement! [PLAYER_WGOY4FSt] is in a good position inside the box but decides to pass the ball to [PLAYER_pEjBDsSH] ([TEAM_]), who keeps his cool and blasts the ball inside the left post. What a finish that is \u2013 2:0.",
"anonymized": "Wonderful movement! [PLAYER] is in a good position inside the box but decides to pass the ball to [PLAYER] ([TEAM]), who keeps his cool and blasts the ball inside the left post. What a finish that is \u2013 2:0.",
"visibility": "shown",
"position": "1047000"
},
{
"important": false,
"gameTime": "1 - 15:55",
"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": "955000"
},
{
"important": false,
"gameTime": "1 - 14:12",
"label": "",
"description": "Jese (Real Madrid) looks to break free, but his touch lets him down and he loses the ball. The ball goes out of play and Eibar will have a goal kick.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) looks to break free, but his touch lets him down and he loses the ball. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but his touch lets him down and he loses the ball. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "852000"
},
{
"important": false,
"gameTime": "1 - 13:16",
"label": "",
"description": "Isco (Real Madrid) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"visibility": "shown",
"position": "796000"
},
{
"important": false,
"gameTime": "1 - 11:39",
"label": "",
"description": "What a poor attempt! Keko (Eibar) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"identified": "What a poor attempt! [PLAYER_6sNAjHu1] ([TEAM_]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"anonymized": "What a poor attempt! [PLAYER] ([TEAM]) drives another shot towards goal - this time from further out, but it couldn't have been worse if he had shot blindfolded. The ball goes into the stands.",
"visibility": "shown",
"position": "699000"
}
]
} |