File size: 92,217 Bytes
da6403b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 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 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 |
{
"timestamp": "1445695200",
"score": "2 - 1",
"round": "10",
"teams": [
"West Ham",
"Chelsea"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "CEm70uDg",
"name": "Adrian",
"captain": "",
"detail_link": "/player/adrian/CEm70uDg/",
"short_name": "Adrian",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Adrian"
},
{
"hash": "8vByEDhp",
"name": "Collins J.",
"captain": "",
"detail_link": "/player/collins-james/8vByEDhp/",
"short_name": "Collins",
"shirt_number": "19",
"country": "Wales",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "James Collins"
},
{
"hash": "fcMqoMcH",
"name": "Cresswell A.",
"captain": "",
"detail_link": "/player/cresswell-aaron/fcMqoMcH/",
"short_name": "Cresswell",
"shirt_number": "3",
"country": "England",
"facts": [
{
"type": "8",
"time": "79' Carroll A. (Cresswell A.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Aaron Cresswell"
},
{
"hash": "6ow40c7A",
"name": "Jenkinson C.",
"captain": "",
"detail_link": "/player/jenkinson-carl/6ow40c7A/",
"short_name": "Jenkinson",
"shirt_number": "12",
"country": "England",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Carl Jenkinson"
},
{
"hash": "pb3Gmuff",
"name": "Kouyate C.",
"captain": "",
"detail_link": "/player/kouyate-cheikhou/pb3Gmuff/",
"short_name": "Kouyate",
"shirt_number": "8",
"country": "Senegal",
"facts": [
{
"type": "1",
"time": "74' Kouyate C. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Cheikhou Kouyate"
},
{
"hash": "QT3lIj4N",
"name": "Lanzini M.",
"captain": "",
"detail_link": "/player/lanzini-manuel/QT3lIj4N/",
"short_name": "Lanzini",
"shirt_number": "28",
"country": "Argentina",
"facts": [
{
"type": "6",
"time": "82'",
"description": "Obiang P.",
"linked_player_hash": "nodnKnAs"
}
],
"lineup": 8,
"starting": true,
"long_name": "Manuel Lanzini"
},
{
"hash": "GxzuJFFG",
"name": "Noble M.",
"captain": "(C)",
"detail_link": "/player/noble-mark/GxzuJFFG/",
"short_name": "Noble",
"shirt_number": "16",
"country": "England",
"facts": [
{
"type": "6",
"time": "90+2'",
"description": "Ogbonna A.",
"linked_player_hash": "xtEnn3rQ"
}
],
"lineup": 6,
"starting": true,
"long_name": "Mark Noble"
},
{
"hash": "8QcadiBC",
"name": "Payet D.",
"captain": "",
"detail_link": "/player/payet-dimitri/8QcadiBC/",
"short_name": "Payet",
"shirt_number": "27",
"country": "France",
"facts": [
{
"type": "8",
"time": "17' Zarate M. (Payet D.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Dimitri Payet"
},
{
"hash": "8nuyj4TG",
"name": "Sakho D.",
"captain": "",
"detail_link": "/player/sakho-diafra/8nuyj4TG/",
"short_name": "Sakho",
"shirt_number": "15",
"country": "Senegal",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Diafra Sakho"
},
{
"hash": "QDQPXCES",
"name": "Tomkins J.",
"captain": "",
"detail_link": "/player/tomkins-james/QDQPXCES/",
"short_name": "Tomkins",
"shirt_number": "5",
"country": "England",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "James Tomkins"
},
{
"hash": "jiUBDadB",
"name": "Zarate M.",
"captain": "",
"detail_link": "/player/zarate-mauro/jiUBDadB/",
"short_name": "Zarate",
"shirt_number": "10",
"country": "Argentina",
"facts": [
{
"type": "3",
"time": "17' Zarate M. (Payet D.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "69'",
"description": "Carroll A.",
"linked_player_hash": "fsQHmhiO"
}
],
"lineup": 10,
"starting": true,
"long_name": "Mauro Zarate"
},
{
"hash": "p8tt85Xn",
"name": "Antonio M.",
"captain": "",
"detail_link": "/player/antonio-michail/p8tt85Xn/",
"short_name": "Antonio",
"shirt_number": "30",
"country": "Jamaica",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Michail Antonio"
},
{
"hash": "fsQHmhiO",
"name": "Carroll A.",
"captain": "",
"detail_link": "/player/carroll-andy/fsQHmhiO/",
"short_name": "Carroll",
"shirt_number": "9",
"country": "England",
"facts": [
{
"type": "7",
"time": "69'",
"description": "Zarate M.",
"linked_player_hash": "jiUBDadB"
},
{
"type": "3",
"time": "79' Carroll A. (Cresswell A.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Andy Carroll"
},
{
"hash": "ney22TbN",
"name": "Jelavic N.",
"captain": "",
"detail_link": "/player/jelavic-nikica/ney22TbN/",
"short_name": "Jelavic",
"shirt_number": "26",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nikica Jelavic"
},
{
"hash": "nodnKnAs",
"name": "Obiang P.",
"captain": "",
"detail_link": "/player/obiang-pedro/nodnKnAs/",
"short_name": "Obiang",
"shirt_number": "14",
"country": "Equatorial Guinea",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Lanzini M.",
"linked_player_hash": "QT3lIj4N"
}
],
"lineup": null,
"starting": false,
"long_name": "Pedro Obiang"
},
{
"hash": "xtEnn3rQ",
"name": "Ogbonna A.",
"captain": "",
"detail_link": "/player/ogbonna-angelo/xtEnn3rQ/",
"short_name": "Ogbonna",
"shirt_number": "21",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "90+2'",
"description": "Noble M.",
"linked_player_hash": "GxzuJFFG"
}
],
"lineup": null,
"starting": false,
"long_name": "Angelo Ogbonna"
},
{
"hash": "8QL8VjKD",
"name": "Randolph D.",
"captain": "",
"detail_link": "/player/randolph-darren/8QL8VjKD/",
"short_name": "Randolph",
"shirt_number": "1",
"country": "Ireland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Darren Randolph"
},
{
"hash": "KELXYJ3s",
"name": "Valencia E.",
"captain": "",
"detail_link": "/player/valencia-enner/KELXYJ3s/",
"short_name": "Valencia",
"shirt_number": "11",
"country": "Ecuador",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Enner Valencia"
}
],
"coach": [
{
"hash": "ttxiu0fC",
"name": "Bilic S.",
"captain": "",
"detail_link": "/player/bilic-slaven/ttxiu0fC/",
"short_name": "Bilic S.",
"shirt_number": "",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Slaven Bilic"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "CMGUADgt",
"name": "Azpilicueta C.",
"captain": "",
"detail_link": "/player/azpilicueta-cesar/CMGUADgt/",
"short_name": "Azpilicueta",
"shirt_number": "28",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "24' Azpilicueta C. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "87'",
"description": "Baba A.",
"linked_player_hash": "K2yVXyhU"
}
],
"lineup": 5,
"starting": true,
"long_name": "Cesar Azpilicueta"
},
{
"hash": "xO2Ce0IG",
"name": "Begovic A.",
"captain": "",
"detail_link": "/player/begovic-asmir/xO2Ce0IG/",
"short_name": "Begovic",
"shirt_number": "1",
"country": "Bosnia and Herzegovina",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Asmir Begovic"
},
{
"hash": "pKpkgR1U",
"name": "Cahill G.",
"captain": "",
"detail_link": "/player/cahill-gary/pKpkgR1U/",
"short_name": "Cahill",
"shirt_number": "24",
"country": "England",
"facts": [
{
"type": "3",
"time": "56' Cahill G. (Zouma K.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Gary Cahill"
},
{
"hash": "vBw5nir8",
"name": "Costa D.",
"captain": "",
"detail_link": "/player/costa-diego/vBw5nir8/",
"short_name": "Costa",
"shirt_number": "19",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "45' Costa D. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Diego Costa"
},
{
"hash": "YXIDwoe5",
"name": "Fabregas C.",
"captain": "",
"detail_link": "/player/fabregas-cesc/YXIDwoe5/",
"short_name": "Fabregas",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "45' Fabregas C. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "46'",
"description": "Mikel J. O.",
"linked_player_hash": "8AkbVvN2"
}
],
"lineup": 9,
"starting": true,
"long_name": "Cesc Fabregas"
},
{
"hash": "QH2of5sJ",
"name": "Hazard E.",
"captain": "",
"detail_link": "/player/hazard-eden/QH2of5sJ/",
"short_name": "Hazard",
"shirt_number": "10",
"country": "Belgium",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Eden Hazard"
},
{
"hash": "Kty10JVG",
"name": "Matic N.",
"captain": "",
"detail_link": "/player/matic-nemanja/Kty10JVG/",
"short_name": "Matic",
"shirt_number": "21",
"country": "Serbia",
"facts": [
{
"type": "1",
"time": "35' Matic N. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Nemanja Matic"
},
{
"hash": "8APqwh2k",
"name": "Ramires",
"captain": "",
"detail_link": "/player/ramires/8APqwh2k/",
"short_name": "Ramires",
"shirt_number": "7",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "82'",
"description": "Falcao R.",
"linked_player_hash": "2oMimkAU"
}
],
"lineup": 7,
"starting": true,
"long_name": "Ramires"
},
{
"hash": "0AovoI68",
"name": "Terry J.",
"captain": "(C)",
"detail_link": "/player/terry-john/0AovoI68/",
"short_name": "Terry",
"shirt_number": "26",
"country": "England",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "John Terry"
},
{
"hash": "GSzdOhPI",
"name": "Willian",
"captain": "",
"detail_link": "/player/willian/GSzdOhPI/",
"short_name": "Willian",
"shirt_number": "22",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "82' Willian (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Willian"
},
{
"hash": "SKosf7jl",
"name": "Zouma K.",
"captain": "",
"detail_link": "/player/zouma-kurt/SKosf7jl/",
"short_name": "Zouma",
"shirt_number": "5",
"country": "France",
"facts": [
{
"type": "8",
"time": "56' Cahill G. (Zouma K.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Kurt Zouma"
},
{
"hash": "fakD0SWJ",
"name": "Amelia M.",
"captain": "",
"detail_link": "/player/amelia-marco/fakD0SWJ/",
"short_name": "Amelia",
"shirt_number": "32",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marco Amelia"
},
{
"hash": "K2yVXyhU",
"name": "Baba A.",
"captain": "",
"detail_link": "/player/baba-rahman/K2yVXyhU/",
"short_name": "Baba",
"shirt_number": "6",
"country": "Ghana",
"facts": [
{
"type": "7",
"time": "87'",
"description": "Azpilicueta C.",
"linked_player_hash": "CMGUADgt"
}
],
"lineup": null,
"starting": false,
"long_name": "Abdul-Rahman Baba"
},
{
"hash": "2oMimkAU",
"name": "Falcao R.",
"captain": "",
"detail_link": "/player/falcao/2oMimkAU/",
"short_name": "Falcao",
"shirt_number": "9",
"country": "Colombia",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Ramires",
"linked_player_hash": "8APqwh2k"
}
],
"lineup": null,
"starting": false,
"long_name": "Radamel Falcao"
},
{
"hash": "6DpURWF8",
"name": "Loftus-Cheek R.",
"captain": "",
"detail_link": "/player/loftus-cheek-ruben/6DpURWF8/",
"short_name": "Loftus-Cheek",
"shirt_number": "36",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ruben Loftus-Cheek"
},
{
"hash": "8AkbVvN2",
"name": "Mikel J. O.",
"captain": "",
"detail_link": "/player/mikel-john-obi/8AkbVvN2/",
"short_name": "Mikel",
"shirt_number": "12",
"country": "Nigeria",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Fabregas C.",
"linked_player_hash": "YXIDwoe5"
},
{
"type": "1",
"time": "90+5' Mikel J. O. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "John Obi Mikel"
},
{
"hash": "KfKDzbEo",
"name": "Oscar",
"captain": "",
"detail_link": "/player/oscar/KfKDzbEo/",
"short_name": "Oscar",
"shirt_number": "8",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Oscar"
},
{
"hash": "MwckEcbf",
"name": "Traore B.",
"captain": "",
"detail_link": "/player/traore-bertrand/MwckEcbf/",
"short_name": "Traore",
"shirt_number": "14",
"country": "Burkina Faso",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Bertrand Traore"
}
],
"coach": [
{
"hash": "AwXQwGFe",
"name": "Mourinho J.",
"captain": "",
"detail_link": "/player/mourinho-jose/AwXQwGFe/",
"short_name": "Mourinho J.",
"shirt_number": "",
"country": "Portugal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jose Mourinho"
}
]
}
},
"referee": [
"Moss J."
],
"venue": [
"Boleyn Ground (London)"
],
"attendance": [
"34 977"
],
"referee_matched": [
"Jonathan Moss"
],
"referee_found": [
"Jonathan Moss"
],
"coach_matched": [
"Jose Mourinho"
],
"gameHomeTeam": "West Ham",
"home": {
"name": "West Ham",
"detail_link": "/team/west-ham/Cxq57r8g",
"hash": "Cxq57r8g",
"names": [
"West Ham",
"West Ham (Eng)",
"west ham"
]
},
"gameAwayTeam": "Chelsea",
"away": {
"name": "Chelsea",
"detail_link": "/team/chelsea/4fGZN2oK",
"hash": "4fGZN2oK",
"names": [
"Chelsea",
"chelsea"
]
},
"gameDate": "24/10/2015 - 16:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 50:59",
"gt_gameTime": "",
"label": "",
"description": "The fans in the stadium certainly won't regret buying tickets as they witnessed a great game today. The hosts were superior today. The home team's main weapon was fast counter-attacks, while the away side attempted to hold onto the ball for as long as possible.",
"identified": "The fans in the stadium certainly won't regret buying tickets as they witnessed a great game today. The hosts were superior today. The home team's main weapon was fast counter-attacks, while the away side attempted to hold onto the ball for as long as possible.",
"anonymized": "The fans in the stadium certainly won't regret buying tickets as they witnessed a great game today. The hosts were superior today. The home team's main weapon was fast counter-attacks, while the away side attempted to hold onto the ball for as long as possible.",
"visibility": "shown",
"position": "3059000"
},
{
"important": true,
"gameTime": "2 - 50:43",
"gt_gameTime": "",
"label": "whistle",
"description": "Nothing more will happen in this game as the referee blows for full time.",
"identified": "Nothing more will happen in this game as the referee blows for full time.",
"anonymized": "Nothing more will happen in this game as the referee blows for full time.",
"visibility": "shown",
"position": "3043000"
},
{
"important": true,
"gameTime": "2 - 49:39",
"gt_gameTime": "2 - 49:30",
"label": "y-card",
"description": "Jonathan Moss shows a yellow card to John Obi Mikel (Chelsea), who isn't surprised as the tackle was really hard and late.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_8AkbVvN2] ([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": "2979000"
},
{
"important": false,
"gameTime": "2 - 47:18",
"gt_gameTime": "",
"label": "attendance",
"description": "The attendance for today's match is 34977.",
"identified": "The attendance for today's match is 34977.",
"anonymized": "The attendance for today's match is 34977.",
"visibility": "shown",
"position": "2838000"
},
{
"important": false,
"gameTime": "2 - 46:22",
"gt_gameTime": "2 - 47:17",
"label": "",
"description": "Willian (Chelsea) crosses the ball into the box from the free kick, but the defence clears the danger.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) crosses the ball into the box from the free kick, but the defence clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box from the free kick, but the defence clears the danger.",
"visibility": "shown",
"position": "2782000"
},
{
"important": true,
"gameTime": "2 - 46:01",
"gt_gameTime": "2 - 45:55",
"label": "substitution",
"description": "The substitution has been made. Angelo Ogbonna (West Ham) has replaced Mark Noble.",
"identified": "The substitution has been made. [PLAYER_xtEnn3rQ] ([TEAM_]) has replaced [PLAYER_GxzuJFFG].",
"anonymized": "The substitution has been made. [PLAYER] ([TEAM]) has replaced [PLAYER].",
"visibility": "shown",
"position": "2761000"
},
{
"important": false,
"gameTime": "2 - 45:14",
"gt_gameTime": "2 - 45:13",
"label": "",
"description": "Jonathan Moss blows his whistle after Diafra Sakho (West Ham) kicks an opponent's legs instead of the ball. Chelsea have a free kick from a promising distance.",
"identified": "[REFEREE] blows his whistle after [PLAYER_8nuyj4TG] ([TEAM_]) kicks an opponent's legs instead of the ball. [TEAM_] have a free kick from a promising distance.",
"anonymized": "[REFEREE] blows his whistle after [PLAYER] ([TEAM]) kicks an opponent's legs instead of the ball. [TEAM] have a free kick from a promising distance.",
"visibility": "shown",
"position": "2714000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"gt_gameTime": "",
"label": "time",
"description": "Fourth official shows 4 min. of added time.",
"identified": "Fourth official shows 4 min. of added time.",
"anonymized": "Fourth official shows 4 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 43:21",
"gt_gameTime": "",
"label": "funfact",
"description": "We can have a look at the statistics now, particularly the total attempts \u2013 12:9.",
"identified": "We can have a look at the statistics now, particularly the total attempts \u2013 12:9.",
"anonymized": "We can have a look at the statistics now, particularly the total attempts \u2013 12:9.",
"visibility": "shown",
"position": "2601000"
},
{
"important": false,
"gameTime": "2 - 42:32",
"gt_gameTime": "2 - 42:08",
"label": "",
"description": "What a poor attempt! Pedro Obiang (West Ham) 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_nodnKnAs] ([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": "2552000"
},
{
"important": false,
"gameTime": "2 - 41:57",
"gt_gameTime": "2 - 41:48",
"label": "corner",
"description": "Dimitri Payet (West Ham) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"anonymized": "[PLAYER] ([TEAM]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"visibility": "shown",
"position": "2517000"
},
{
"important": false,
"gameTime": "2 - 41:35",
"gt_gameTime": "2 - 41:22",
"label": "",
"description": "Mark Noble (West Ham) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. West Ham have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "[PLAYER_GxzuJFFG] ([TEAM_]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "[PLAYER] ([TEAM]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "2495000"
},
{
"important": false,
"gameTime": "2 - 41:27",
"gt_gameTime": "2 - 41:17",
"label": "corner",
"description": "Dimitri Payet (West Ham) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) decides to speed play up with a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up with a short corner kick.",
"visibility": "shown",
"position": "2487000"
},
{
"important": true,
"gameTime": "2 - 41:14",
"gt_gameTime": "2 - 40:55",
"label": "substitution",
"description": "Substitution. Baba Rahman (Chelsea) has come on for Cesar Azpilicueta.",
"identified": "Substitution. [PLAYER_K2yVXyhU] ([TEAM_]) has come on for [PLAYER_CMGUADgt].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) has come on for [PLAYER].",
"visibility": "shown",
"position": "2474000"
},
{
"important": false,
"gameTime": "2 - 40:40",
"gt_gameTime": "2 - 40:37",
"label": "",
"description": "The ball is cleared after Cheikhou Kouyate (West Ham) attempted to dribble past an opposing player. The referee and one of his assistants signal for a corner kick to West Ham.",
"identified": "The ball is cleared after [PLAYER_pb3Gmuff] ([TEAM_]) attempted to dribble past an opposing player. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "2440000"
},
{
"important": false,
"gameTime": "2 - 39:35",
"gt_gameTime": "2 - 39:32",
"label": "",
"description": "Willian (Chelsea) whips in the resulting set piece but it's cleared.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) whips in the resulting set piece but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) whips in the resulting set piece but it's cleared.",
"visibility": "shown",
"position": "2375000"
},
{
"important": false,
"gameTime": "2 - 39:09",
"gt_gameTime": "2 - 38:40",
"label": "",
"description": "An opponent rises to his feet after being downed by Andy Carroll (West Ham). Jonathan Moss saw the sliding tackle and blows for a foul.",
"identified": "An opponent rises to his feet after being downed by [PLAYER_fsQHmhiO] ([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": "2349000"
},
{
"important": true,
"gameTime": "2 - 36:55",
"gt_gameTime": "2 - 36:53",
"label": "substitution",
"description": "Here is a change. Ramires is going off and Jose Mourinho gives the last tactical orders to Falcao (Chelsea).",
"identified": "Here is a change. [PLAYER_8APqwh2k] is going off and [COACH_AwXQwGFe] gives the last tactical orders to [PLAYER_2oMimkAU] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2215000"
},
{
"important": true,
"gameTime": "2 - 36:50",
"gt_gameTime": "2 - 36:21",
"label": "substitution",
"description": "That will be all from Manuel Lanzini who is being replaced by the fresh legs of Pedro Obiang (West Ham).",
"identified": "That will be all from [PLAYER_QT3lIj4N] who is being replaced by the fresh legs of [PLAYER_nodnKnAs] ([TEAM_]).",
"anonymized": "That will be all from [PLAYER] who is being replaced by the fresh legs of [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2210000"
},
{
"important": true,
"gameTime": "2 - 36:15",
"gt_gameTime": "2 - 35:48",
"label": "y-card",
"description": "Willian (Chelsea) is booked.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) is booked.",
"anonymized": "[PLAYER] ([TEAM]) is booked.",
"visibility": "shown",
"position": "2175000"
},
{
"important": false,
"gameTime": "2 - 34:55",
"gt_gameTime": "2 - 34:39",
"label": "",
"description": "Willian (Chelsea) tries to hit a shot towards goal from long range, but he miskicks the ball and it flies high over the crossbar.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) tries to hit a shot towards goal from long range, but he miskicks the ball and it flies high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) tries to hit a shot towards goal from long range, but he miskicks the ball and it flies high over the crossbar.",
"visibility": "shown",
"position": "2095000"
},
{
"important": true,
"gameTime": "2 - 33:44",
"gt_gameTime": "2 - 33:15",
"label": "soccer-ball",
"description": "Andy Carroll (West Ham) jumps for a cross and plants a perfect header inside the left post.",
"identified": "[PLAYER_fsQHmhiO] ([TEAM_]) jumps for a cross and plants a perfect header inside the left post.",
"anonymized": "[PLAYER] ([TEAM]) jumps for a cross and plants a perfect header inside the left post.",
"visibility": "shown",
"position": "2024000"
},
{
"important": false,
"gameTime": "2 - 32:49",
"gt_gameTime": "2 - 32:47",
"label": "",
"description": "Manuel Lanzini (West Ham) blasts the ball from just outside the box, but his attempt is blocked by the defender.",
"identified": "[PLAYER_QT3lIj4N] ([TEAM_]) blasts the ball from just outside the box, but his attempt is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) blasts the ball from just outside the box, but his attempt is blocked by the defender.",
"visibility": "shown",
"position": "1969000"
},
{
"important": false,
"gameTime": "2 - 32:28",
"gt_gameTime": "2 - 32:25",
"label": "",
"description": "Ramires (Chelsea) gets on the end of a pass on the edge of the box but his shot is blocked.",
"identified": "[PLAYER_8APqwh2k] ([TEAM_]) gets on the end of a pass on the edge of the box but his shot is blocked.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass on the edge of the box but his shot is blocked.",
"visibility": "shown",
"position": "1948000"
},
{
"important": false,
"gameTime": "2 - 32:07",
"gt_gameTime": "2 - 32:05",
"label": "corner",
"description": "The corner from Dimitri Payet (West Ham) is intercepted by the defence.",
"identified": "The corner from [PLAYER_8QcadiBC] ([TEAM_]) is intercepted by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "1927000"
},
{
"important": false,
"gameTime": "2 - 31:08",
"gt_gameTime": "2 - 31:07",
"label": "",
"description": "Aaron Cresswell (West Ham) swings a cross into the box, but it's far too close to Asmir Begovic, who smothers the ball.",
"identified": "[PLAYER_fcMqoMcH] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_xO2Ce0IG], who smothers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings a cross into the box, but it's far too close to [PLAYER], who smothers the ball.",
"visibility": "shown",
"position": "1868000"
},
{
"important": false,
"gameTime": "2 - 29:27",
"gt_gameTime": "2 - 29:23",
"label": "",
"description": "The cross into the penalty area from Dimitri Payet (West Ham) needed to be more accurate in order to create a goal-scoring opportunity for his team.",
"identified": "The cross into the penalty area from [PLAYER_8QcadiBC] ([TEAM_]) needed to be more accurate in order to create a goal-scoring opportunity for his team.",
"anonymized": "The cross into the penalty area from [PLAYER] ([TEAM]) needed to be more accurate in order to create a goal-scoring opportunity for his team.",
"visibility": "shown",
"position": "1767000"
},
{
"important": true,
"gameTime": "2 - 28:43",
"gt_gameTime": "2 - 28:31",
"label": "y-card",
"description": "Cheikhou Kouyate (West Ham) picks up a yellow card for a foul.",
"identified": "[PLAYER_pb3Gmuff] ([TEAM_]) picks up a yellow card for a foul.",
"anonymized": "[PLAYER] ([TEAM]) picks up a yellow card for a foul.",
"visibility": "shown",
"position": "1723000"
},
{
"important": false,
"gameTime": "2 - 27:22",
"gt_gameTime": "2 - 27:19",
"label": "",
"description": "The game is pretty dull as West Ham are just passing the ball from player to player. Nothing lasts forever, though, and they finally make a mistake, allowing the opposition to pick up the ball.",
"identified": "The game is pretty dull as [TEAM_] are just passing the ball from player to player. Nothing lasts forever, though, and they finally make a mistake, allowing the opposition to pick up the ball.",
"anonymized": "The game is pretty dull as [TEAM] are just passing the ball from player to player. Nothing lasts forever, though, and they finally make a mistake, allowing the opposition to pick up the ball.",
"visibility": "shown",
"position": "1642000"
},
{
"important": false,
"gameTime": "2 - 24:01",
"gt_gameTime": "2 - 24:15",
"label": "",
"description": "Dimitri Payet (West Ham) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it.",
"anonymized": "[PLAYER] ([TEAM]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it.",
"visibility": "shown",
"position": "1441000"
},
{
"important": true,
"gameTime": "2 - 23:03",
"gt_gameTime": "2 - 22:51",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Andrew Carroll (West Ham) replaces Mauro Zarate.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_fsQHmhiO] ([TEAM_]) replaces [PLAYER_jiUBDadB].",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1383000"
},
{
"important": false,
"gameTime": "2 - 22:39",
"gt_gameTime": "2 - 22:36",
"label": "",
"description": "One of the players from West Ham 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": "1359000"
},
{
"important": false,
"gameTime": "2 - 22:18",
"gt_gameTime": "2 - 22:04",
"label": "",
"description": "Dimitri Payet (West Ham) shoots from outside the box, but his effort is blocked.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) shoots from outside the box, but his effort is blocked.",
"anonymized": "[PLAYER] ([TEAM]) shoots from outside the box, but his effort is blocked.",
"visibility": "shown",
"position": "1338000"
},
{
"important": false,
"gameTime": "2 - 19:47",
"gt_gameTime": "2 - 19:40",
"label": "",
"description": "The linesman raises his flag. Diego Costa (Chelsea) is adjudged offside.",
"identified": "The linesman raises his flag. [PLAYER_vBw5nir8] ([TEAM_]) is adjudged offside.",
"anonymized": "The linesman raises his flag. [PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "1187000"
},
{
"important": false,
"gameTime": "2 - 19:40",
"gt_gameTime": "2 - 19:34",
"label": "",
"description": "Willian (Chelsea) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"anonymized": "[PLAYER] ([TEAM]) delivers a poor cross from a free kick as one of the defenders comfortably clears it away.",
"visibility": "shown",
"position": "1180000"
},
{
"important": false,
"gameTime": "2 - 18:57",
"gt_gameTime": "2 - 18:56",
"label": "",
"description": "Carl Jenkinson (West Ham) fouls an opponent. At least that's what referee Jonathan Moss signals. That's a free kick to Chelsea.",
"identified": "[PLAYER_6ow40c7A] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals. That's a free kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals. That's a free kick to [TEAM].",
"visibility": "shown",
"position": "1137000"
},
{
"important": false,
"gameTime": "2 - 16:35",
"gt_gameTime": "2 - 16:26",
"label": "injury",
"description": "Ramires (Chelsea) is having a really tough time right now. We are about to find out how serious his injury is.",
"identified": "[PLAYER_8APqwh2k] ([TEAM_]) is having a really tough time right now. We are about to find out how serious his injury is.",
"anonymized": "[PLAYER] ([TEAM]) is having a really tough time right now. We are about to find out how serious his injury is.",
"visibility": "shown",
"position": "995000"
},
{
"important": false,
"gameTime": "2 - 15:57",
"gt_gameTime": "2 - 15:46",
"label": "corner",
"description": "Dimitri Payet (West Ham) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety.",
"visibility": "shown",
"position": "957000"
},
{
"important": false,
"gameTime": "2 - 15:23",
"gt_gameTime": "2 - 15:18",
"label": "",
"description": "Aaron Cresswell (West Ham) tries to slide the ball through to a teammate but it's well blocked by a defender. West Ham will have a chance to score from a corner kick.",
"identified": "[PLAYER_fcMqoMcH] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "923000"
},
{
"important": false,
"gameTime": "2 - 14:07",
"gt_gameTime": "2 - 14:06",
"label": "",
"description": "Mauro Zarate (West Ham) unleashes a powerful first-time volley towards goal, but his effort is blocked after the goalkeeper uses his agility to make a save.",
"identified": "[PLAYER_jiUBDadB] ([TEAM_]) unleashes a powerful first-time volley towards goal, but his effort is blocked after the goalkeeper uses his agility to make a save.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a powerful first-time volley towards goal, but his effort is blocked after the goalkeeper uses his agility to make a save.",
"visibility": "shown",
"position": "847000"
},
{
"important": false,
"gameTime": "2 - 12:46",
"gt_gameTime": "2 - 12:43",
"label": "",
"description": "Willian (Chelsea) whips a long ball in from the free kick which is intercepted by Adrian.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) whips a long ball in from the free kick which is intercepted by [PLAYER_CEm70uDg].",
"anonymized": "[PLAYER] ([TEAM]) whips a long ball in from the free kick which is intercepted by [PLAYER].",
"visibility": "shown",
"position": "766000"
},
{
"important": true,
"gameTime": "2 - 10:54",
"gt_gameTime": "2 - 10:26",
"label": "soccer-ball",
"description": "Gary Cahill (Chelsea) scores from the corner kick. The ball slipped through the box to Gary Cahill (Chelsea) and he slotted it past the goalkeeper.",
"identified": "[PLAYER_pKpkgR1U] ([TEAM_]) scores from the corner kick. The ball slipped through the box to [PLAYER_pKpkgR1U] ([TEAM_]) and he slotted it past the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) scores from the corner kick. The ball slipped through the box to [PLAYER] ([TEAM]) and he slotted it past the goalkeeper.",
"visibility": "shown",
"position": "654000"
},
{
"important": false,
"gameTime": "2 - 10:13",
"gt_gameTime": "2 - 10:21",
"label": "corner",
"description": "Willian (Chelsea) will try to find the head of one of his teammates from a corner kick.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) will try to find the head of one of his teammates from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will try to find the head of one of his teammates from a corner kick.",
"visibility": "shown",
"position": "613000"
},
{
"important": false,
"gameTime": "2 - 10:05",
"gt_gameTime": "2 - 09:49",
"label": "",
"description": "A cross from Eden Hazard (Chelsea) fails to reach the box as the defence clears the ball away to safety.",
"identified": "A cross from [PLAYER_QH2of5sJ] ([TEAM_]) fails to reach the box as the defence clears the ball away to safety.",
"anonymized": "A cross from [PLAYER] ([TEAM]) fails to reach the box as the defence clears the ball away to safety.",
"visibility": "shown",
"position": "605000"
},
{
"important": false,
"gameTime": "2 - 08:10",
"gt_gameTime": "2 - 08:08",
"label": "",
"description": "Mark Noble (West Ham) is flagged for offside.",
"identified": "[PLAYER_GxzuJFFG] ([TEAM_]) is flagged for offside.",
"anonymized": "[PLAYER] ([TEAM]) is flagged for offside.",
"visibility": "shown",
"position": "490000"
},
{
"important": false,
"gameTime": "2 - 07:34",
"gt_gameTime": "2 - 07:32",
"label": "",
"description": "A pass by Aaron Cresswell (West Ham) ends up in no man's land, and the attacking effort comes to an end.",
"identified": "A pass by [PLAYER_fcMqoMcH] ([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": "454000"
},
{
"important": false,
"gameTime": "2 - 07:11",
"gt_gameTime": "2 - 07:08",
"label": "",
"description": "Jonathan Moss blows his whistle and it's Diego Costa (Chelsea) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_vBw5nir8] ([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": "431000"
},
{
"important": false,
"gameTime": "2 - 05:24",
"gt_gameTime": "2 - 05:19",
"label": "",
"description": "Eden Hazard (Chelsea) sends a chip pass into the box, but Adrian is quickest to intercept the ball.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) sends a chip pass into the box, but [PLAYER_CEm70uDg] is quickest to intercept the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a chip pass into the box, but [PLAYER] is quickest to intercept the ball.",
"visibility": "shown",
"position": "324000"
},
{
"important": false,
"gameTime": "2 - 04:42",
"gt_gameTime": "2 - 04:44",
"label": "",
"description": "A crossfield pass from Carl Jenkinson (West Ham) fails to find any of his teammates. The ball goes out of play and Chelsea will have a goal kick.",
"identified": "A crossfield pass from [PLAYER_6ow40c7A] ([TEAM_]) fails to find any of his teammates. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "A crossfield pass from [PLAYER] ([TEAM]) fails to find any of his teammates. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "282000"
},
{
"important": false,
"gameTime": "2 - 04:00",
"gt_gameTime": "2 - 03:59",
"label": "",
"description": "Ramires (Chelsea) trips an opponent with a slide tackle. Jonathan Moss stops the game and he could give him a card, but eventually decides on just a warning.",
"identified": "[PLAYER_8APqwh2k] ([TEAM_]) trips an opponent with a slide tackle. [REFEREE] stops the game and he could give him a card, but eventually decides on just a warning.",
"anonymized": "[PLAYER] ([TEAM]) trips an opponent with a slide tackle. [REFEREE] stops the game and he could give him a card, but eventually decides on just a warning.",
"visibility": "shown",
"position": "240000"
},
{
"important": false,
"gameTime": "2 - 01:59",
"gt_gameTime": "2 - 01:59",
"label": "",
"description": "Diego Costa (Chelsea) is adjudged offside.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) is adjudged offside.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "119000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"gt_gameTime": "",
"label": "substitution",
"description": "Half-time substitution. Cesc Fabregas is replaced by John Obi Mikel (Chelsea).",
"identified": "Half-time substitution. [PLAYER_YXIDwoe5] is replaced by [PLAYER_8AkbVvN2] ([TEAM_]).",
"anonymized": "Half-time substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"gt_gameTime": "2 - 00:01",
"label": "whistle",
"description": "Everything is set for the start of the second half.",
"identified": "Everything is set for the start of the second half.",
"anonymized": "Everything is set for the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 47:59",
"gt_gameTime": "",
"label": "",
"description": "There was certainly plenty of action during that opening 45 minutes. It has been a tight contest so far. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"identified": "There was certainly plenty of action during that opening 45 minutes. It has been a tight contest so far. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"anonymized": "There was certainly plenty of action during that opening 45 minutes. It has been a tight contest so far. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "1 - 47:31",
"gt_gameTime": "",
"label": "whistle",
"description": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"identified": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"anonymized": "That is it for the first half after the referee blows his whistle and the players head to their respective dressing rooms.",
"visibility": "shown",
"position": "2851000"
},
{
"important": false,
"gameTime": "1 - 45:47",
"gt_gameTime": "1 - 45:42",
"label": "",
"description": "The resulting set piece, sent into the penalty area by Dimitri Payet (West Ham), was easily dealt with by one of the defenders.",
"identified": "The resulting set piece, sent into the penalty area by [PLAYER_8QcadiBC] ([TEAM_]), was easily dealt with by one of the defenders.",
"anonymized": "The resulting set piece, sent into the penalty area by [PLAYER] ([TEAM]), was easily dealt with by one of the defenders.",
"visibility": "shown",
"position": "2747000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"gt_gameTime": "",
"label": "time",
"description": "There will be a minimum of 2 min. of added time.",
"identified": "There will be a minimum of 2 min. of added time.",
"anonymized": "There will be a minimum of 2 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 44:30",
"gt_gameTime": "1 - 44:53",
"label": "y-card",
"description": "The main referee, Jonathan Moss, is apparently not going to tolerate any discussions. Cesc Fabregas (Chelsea) is given a yellow card for dissent.",
"identified": "The main referee, [REFEREE], is apparently not going to tolerate any discussions. [PLAYER_YXIDwoe5] ([TEAM_]) is given a yellow card for dissent.",
"anonymized": "The main referee, [REFEREE], is apparently not going to tolerate any discussions. [PLAYER] ([TEAM]) is given a yellow card for dissent.",
"visibility": "shown",
"position": "2670000"
},
{
"important": true,
"gameTime": "1 - 44:25",
"gt_gameTime": "1 - 44:18",
"label": "y-card",
"description": "Diego Costa (Chelsea) is booked for saying more than Jonathan Moss was willing to tolerate.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) is booked for saying more than [REFEREE] was willing to tolerate.",
"anonymized": "[PLAYER] ([TEAM]) is booked for saying more than [REFEREE] was willing to tolerate.",
"visibility": "shown",
"position": "2665000"
},
{
"important": true,
"gameTime": "1 - 43:14",
"gt_gameTime": "1 - 43:55",
"label": "yr-card",
"description": "Jonathan Moss blows his whistle and Nemanja Matic (Chelsea) is shown a second yellow card for his foul. His manager will not be pleased. He has lot of time to think about it as he walks off.",
"identified": "[REFEREE] blows his whistle and [PLAYER_Kty10JVG] ([TEAM_]) is shown a second yellow card for his foul. His manager will not be pleased. He has lot of time to think about it as he walks off.",
"anonymized": "[REFEREE] blows his whistle and [PLAYER] ([TEAM]) is shown a second yellow card for his foul. His manager will not be pleased. He has lot of time to think about it as he walks off.",
"visibility": "shown",
"position": "2594000"
},
{
"important": true,
"gameTime": "1 - 41:53",
"gt_gameTime": "1 - 41:48",
"label": "",
"description": "Cesc Fabregas (Chelsea) has a goal ruled out for offside!",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) has a goal ruled out for offside!",
"anonymized": "[PLAYER] ([TEAM]) has a goal ruled out for offside!",
"visibility": "shown",
"position": "2513000"
},
{
"important": false,
"gameTime": "1 - 41:34",
"gt_gameTime": "1 - 41:32",
"label": "corner",
"description": "Dimitri Payet (West Ham) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"anonymized": "[PLAYER] ([TEAM]) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"visibility": "shown",
"position": "2494000"
},
{
"important": false,
"gameTime": "1 - 41:13",
"gt_gameTime": "1 - 41:12",
"label": "",
"description": "West Ham are just stroking the ball across the park now, but the defence is doing very well breaking up their possession. The ball is out of play. A goal-scoring opportunity from a corner for West Ham.",
"identified": "[TEAM_] are just stroking the ball across the park now, but the defence is doing very well breaking up their possession. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "[TEAM] are just stroking the ball across the park now, but the defence is doing very well breaking up their possession. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "2473000"
},
{
"important": true,
"gameTime": "1 - 38:25",
"gt_gameTime": "1 - 38:23",
"label": "",
"description": "Dimitri Payet slides a brilliant pass into Manuel Lanzini (West Ham), but his shot from inside the box goes a whisker over the crossbar.",
"identified": "[PLAYER_8QcadiBC] slides a brilliant pass into [PLAYER_QT3lIj4N] ([TEAM_]), but his shot from inside the box goes a whisker over the crossbar.",
"anonymized": "[PLAYER] slides a brilliant pass into [PLAYER] ([TEAM]), but his shot from inside the box goes a whisker over the crossbar.",
"visibility": "shown",
"position": "2305000"
},
{
"important": false,
"gameTime": "1 - 37:43",
"gt_gameTime": "1 - 37:40",
"label": "",
"description": "Eden Hazard (Chelsea) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_QH2of5sJ] ([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": "2263000"
},
{
"important": false,
"gameTime": "1 - 35:50",
"gt_gameTime": "1 - 35:20",
"label": "",
"description": "James Collins (West Ham) latches on to a well-placed cross from the free kick on the edge of the box and attempts to surprise the goalkeeper with a quick header towards the net. Unfortunately for him, the keeper was quicker and denies him.",
"identified": "[PLAYER_8vByEDhp] ([TEAM_]) latches on to a well-placed cross from the free kick on the edge of the box and attempts to surprise the goalkeeper with a quick header towards the net. Unfortunately for him, the keeper was quicker and denies him.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a well-placed cross from the free kick on the edge of the box and attempts to surprise the goalkeeper with a quick header towards the net. Unfortunately for him, the keeper was quicker and denies him.",
"visibility": "shown",
"position": "2150000"
},
{
"important": true,
"gameTime": "1 - 34:48",
"gt_gameTime": "1 - 34:34",
"label": "y-card",
"description": "Nemanja Matic (Chelsea) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but Jonathan Moss ignores the protests.",
"identified": "[PLAYER_Kty10JVG] ([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": "2088000"
},
{
"important": true,
"gameTime": "1 - 34:40",
"gt_gameTime": "1 - 34:15",
"label": "",
"description": "Kurt Zouma (Chelsea) darts to the edge of the box to meet the ball from the free kick and sends a header towards the right post. One of the defending players gets in its way and blocks it.",
"identified": "[PLAYER_SKosf7jl] ([TEAM_]) darts to the edge of the box to meet the ball from the free kick and sends a header towards the right post. One of the defending players gets in its way and blocks it.",
"anonymized": "[PLAYER] ([TEAM]) darts to the edge of the box to meet the ball from the free kick and sends a header towards the right post. One of the defending players gets in its way and blocks it.",
"visibility": "shown",
"position": "2080000"
},
{
"important": false,
"gameTime": "1 - 34:06",
"gt_gameTime": "1 - 34:10",
"label": "corner",
"description": "Corner kick. Cesc Fabregas (Chelsea) is ready to send the ball into the box.",
"identified": "Corner kick. [PLAYER_YXIDwoe5] ([TEAM_]) is ready to send the ball into the box.",
"anonymized": "Corner kick. [PLAYER] ([TEAM]) is ready to send the ball into the box.",
"visibility": "shown",
"position": "2046000"
},
{
"important": false,
"gameTime": "1 - 33:56",
"gt_gameTime": "1 - 33:55",
"label": "",
"description": "Cesc Fabregas (Chelsea) tries to send a pass but it's blocked.",
"identified": "[PLAYER_YXIDwoe5] ([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": "2036000"
},
{
"important": false,
"gameTime": "1 - 32:32",
"gt_gameTime": "1 - 32:29",
"label": "",
"description": "Willian (Chelsea) produces a mid-range free kick and sends a daisy-cutter towards the left post, but the goalkeeper makes a good save and stops his effort.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) produces a mid-range free kick and sends a daisy-cutter towards the left post, but the goalkeeper makes a good save and stops his effort.",
"anonymized": "[PLAYER] ([TEAM]) produces a mid-range free kick and sends a daisy-cutter towards the left post, but the goalkeeper makes a good save and stops his effort.",
"visibility": "shown",
"position": "1952000"
},
{
"important": false,
"gameTime": "1 - 31:23",
"gt_gameTime": "1 - 31:24",
"label": "",
"description": "A player from West Ham commits a rough challenge. Jonathan Moss blows for a foul and keeps the game under control. Chelsea are awarded a free kick from a dangerous position.",
"identified": "A player from [TEAM_] commits a rough challenge. [REFEREE] blows for a foul and keeps the game under control. [TEAM_] are awarded a free kick from a dangerous position.",
"anonymized": "A player from [TEAM] commits a rough challenge. [REFEREE] blows for a foul and keeps the game under control. [TEAM] are awarded a free kick from a dangerous position.",
"visibility": "shown",
"position": "1883000"
},
{
"important": false,
"gameTime": "1 - 30:19",
"gt_gameTime": "1 - 30:17",
"label": "corner",
"description": "The corner from Cesc Fabregas is intercepted by Adrian (West Ham).",
"identified": "The corner from [PLAYER_YXIDwoe5] is intercepted by [PLAYER_CEm70uDg] ([TEAM_]).",
"anonymized": "The corner from [PLAYER] is intercepted by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1819000"
},
{
"important": false,
"gameTime": "1 - 29:50",
"gt_gameTime": "1 - 29:49",
"label": "",
"description": "Ramires (Chelsea) sends the ball into the box from the side of the pitch, but his cross is blocked. Chelsea get a corner.",
"identified": "[PLAYER_8APqwh2k] ([TEAM_]) sends the ball into the box from the side of the pitch, but his cross is blocked. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends the ball into the box from the side of the pitch, but his cross is blocked. [TEAM] get a corner.",
"visibility": "shown",
"position": "1790000"
},
{
"important": false,
"gameTime": "1 - 28:23",
"gt_gameTime": "1 - 28:23",
"label": "",
"description": "Ramires (Chelsea) looks to break free, but his touch lets him down and he loses the ball. The ball is off of the pitch and it's a goal kick for West Ham.",
"identified": "[PLAYER_8APqwh2k] ([TEAM_]) looks to break free, but his touch lets him down and he loses the ball. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but his touch lets him down and he loses the ball. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1703000"
},
{
"important": false,
"gameTime": "1 - 27:40",
"gt_gameTime": "1 - 27:25",
"label": "",
"description": "The Chelsea players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"identified": "The [TEAM_] players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"anonymized": "The [TEAM] players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"visibility": "shown",
"position": "1660000"
},
{
"important": false,
"gameTime": "1 - 24:51",
"gt_gameTime": "1 - 24:52",
"label": "",
"description": "Ramires (Chelsea) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies into the stands.",
"identified": "[PLAYER_8APqwh2k] ([TEAM_]) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies into the stands.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies into the stands.",
"visibility": "shown",
"position": "1491000"
},
{
"important": false,
"gameTime": "1 - 24:15",
"gt_gameTime": "1 - 24:10",
"label": "",
"description": "The free kick from long range, taken by West Ham, is intercepted by one of the defenders.",
"identified": "The free kick from long range, taken by [TEAM_], is intercepted by one of the defenders.",
"anonymized": "The free kick from long range, taken by [TEAM], is intercepted by one of the defenders.",
"visibility": "shown",
"position": "1455000"
},
{
"important": true,
"gameTime": "1 - 23:46",
"gt_gameTime": "1 - 23:36",
"label": "y-card",
"description": "Today's referee Jonathan Moss rightly decides to book Cesar Azpilicueta (Chelsea) for his harsh tackle.",
"identified": "Today's referee [REFEREE] rightly decides to book [PLAYER_CMGUADgt] ([TEAM_]) for his harsh tackle.",
"anonymized": "Today's referee [REFEREE] rightly decides to book [PLAYER] ([TEAM]) for his harsh tackle.",
"visibility": "shown",
"position": "1426000"
},
{
"important": false,
"gameTime": "1 - 23:03",
"gt_gameTime": "1 - 22:35",
"label": "",
"description": "Chelsea are ruled offside.",
"identified": "[TEAM_] are ruled offside.",
"anonymized": "[TEAM] are ruled offside.",
"visibility": "shown",
"position": "1383000"
},
{
"important": false,
"gameTime": "1 - 22:11",
"gt_gameTime": "1 - 22:09",
"label": "",
"description": "Dimitri Payet (West Ham) sends a long ball in, but Asmir Begovic comfortably gathers the ball.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) sends a long ball in, but [PLAYER_xO2Ce0IG] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "1331000"
},
{
"important": false,
"gameTime": "1 - 21:29",
"gt_gameTime": "1 - 21:27",
"label": "",
"description": "Cesar Azpilicueta (Chelsea) clearly holds his opponent to prevent him from getting the ball and the referee immediately stops play.",
"identified": "[PLAYER_CMGUADgt] ([TEAM_]) clearly holds his opponent to prevent him from getting the ball and the referee immediately stops play.",
"anonymized": "[PLAYER] ([TEAM]) clearly holds his opponent to prevent him from getting the ball and the referee immediately stops play.",
"visibility": "shown",
"position": "1289000"
},
{
"important": false,
"gameTime": "1 - 20:39",
"gt_gameTime": "1 - 20:38",
"label": "",
"description": "Cesc Fabregas (Chelsea) and Diego Costa try to prise open the opposition with a series of short passes, but one of the defenders steps in and puts an end to the move.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) and [PLAYER_vBw5nir8] try to prise open the opposition with a series of short passes, but one of the defenders steps in and puts an end to the move.",
"anonymized": "[PLAYER] ([TEAM]) and [PLAYER] try to prise open the opposition with a series of short passes, but one of the defenders steps in and puts an end to the move.",
"visibility": "shown",
"position": "1239000"
},
{
"important": false,
"gameTime": "1 - 20:16",
"gt_gameTime": "1 - 19:45",
"label": "",
"description": "Carl Jenkinson (West Ham) unleashed a powerful long-range strike, but the ball was blocked by a defender on its way.",
"identified": "[PLAYER_6ow40c7A] ([TEAM_]) unleashed a powerful long-range strike, but the ball was blocked by a defender on its way.",
"anonymized": "[PLAYER] ([TEAM]) unleashed a powerful long-range strike, but the ball was blocked by a defender on its way.",
"visibility": "shown",
"position": "1216000"
},
{
"important": false,
"gameTime": "1 - 19:06",
"gt_gameTime": "1 - 19:05",
"label": "",
"description": "Mark Noble (West Ham) attempts a long crossfield pass, but the defence does well to intercept the ball. The ball has crossed the sideline. West Ham are taking a throw-in.",
"identified": "[PLAYER_GxzuJFFG] ([TEAM_]) attempts a long crossfield pass, but the defence does well to intercept the ball. The ball has crossed the sideline. [TEAM_] are taking a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) attempts a long crossfield pass, but the defence does well to intercept the ball. The ball has crossed the sideline. [TEAM] are taking a throw-in.",
"visibility": "shown",
"position": "1146000"
},
{
"important": true,
"gameTime": "1 - 16:54",
"gt_gameTime": "1 - 16:24",
"label": "soccer-ball",
"description": "Goal! Mauro Zarate (West Ham) picks up the ball from a rebound and from the edge of the box he unleashes a low shot into the bottom right corner. Asmir Begovic is unable to keep the ball out of the net. It's 1:0.",
"identified": "Goal! [PLAYER_jiUBDadB] ([TEAM_]) picks up the ball from a rebound and from the edge of the box he unleashes a low shot into the bottom right corner. [PLAYER_xO2Ce0IG] is unable to keep the ball out of the net. It's 1:0.",
"anonymized": "Goal! [PLAYER] ([TEAM]) picks up the ball from a rebound and from the edge of the box he unleashes a low shot into the bottom right corner. [PLAYER] is unable to keep the ball out of the net. It's 1:0.",
"visibility": "shown",
"position": "1014000"
},
{
"important": false,
"gameTime": "1 - 16:50",
"gt_gameTime": "1 - 16:21",
"label": "corner",
"description": "The corner from Dimitri Payet (West Ham) is hurriedly cleared.",
"identified": "The corner from [PLAYER_8QcadiBC] ([TEAM_]) is hurriedly cleared.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is hurriedly cleared.",
"visibility": "shown",
"position": "1010000"
},
{
"important": false,
"gameTime": "1 - 16:07",
"gt_gameTime": "1 - 16:03",
"label": "",
"description": "Dimitri Payet (West Ham) stands over the free kick and opts to take it himself, sending it towards the top of net only for Asmir Begovic to dive and make a save. The linesman makes the right call and West Ham will have a corner.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) stands over the free kick and opts to take it himself, sending it towards the top of net only for [PLAYER_xO2Ce0IG] to dive and make a save. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) stands over the free kick and opts to take it himself, sending it towards the top of net only for [PLAYER] to dive and make a save. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "967000"
},
{
"important": false,
"gameTime": "1 - 15:02",
"gt_gameTime": "1 - 15:02",
"label": "",
"description": "Cesc Fabregas (Chelsea) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again. West Ham earn a free kick which could lead to a goal-scoring opportunity.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again. [TEAM_] earn a free kick which could lead to a goal-scoring opportunity.",
"anonymized": "[PLAYER] ([TEAM]) commits a minor foul to interrupt the attacking move of his opponent and is warned by the referee that he will get a yellow card if he does it again. [TEAM] earn a free kick which could lead to a goal-scoring opportunity.",
"visibility": "shown",
"position": "902000"
},
{
"important": false,
"gameTime": "1 - 14:00",
"gt_gameTime": "1 - 13:53",
"label": "",
"description": "Diego Costa (Chelsea) reacts well near the penalty spot to connect with the resulting corner, but fails to direct his header into the back of the net. The ball goes well wide of the left post.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) reacts well near the penalty spot to connect with the resulting corner, but fails to direct his header into the back of the net. The ball goes well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) reacts well near the penalty spot to connect with the resulting corner, but fails to direct his header into the back of the net. The ball goes well wide of the left post.",
"visibility": "shown",
"position": "840000"
},
{
"important": false,
"gameTime": "1 - 13:28",
"gt_gameTime": "1 - 13:44",
"label": "corner",
"description": "Willian (Chelsea) looks like he will be the one to take the corner kick.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) looks like he will be the one to take the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks like he will be the one to take the corner kick.",
"visibility": "shown",
"position": "808000"
},
{
"important": false,
"gameTime": "1 - 13:23",
"gt_gameTime": "1 - 13:17",
"label": "",
"description": "Diego Costa (Chelsea) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) races towards goal but the defender gets back well to make a challenge.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "803000"
},
{
"important": false,
"gameTime": "1 - 12:07",
"gt_gameTime": "1 - 12:04",
"label": "",
"description": "Willian (Chelsea) sends a pass into the box, but his attempt is thwarted and cleared.",
"identified": "[PLAYER_GSzdOhPI] ([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": "727000"
},
{
"important": false,
"gameTime": "1 - 10:48",
"gt_gameTime": "1 - 10:44",
"label": "corner",
"description": "Dimitri Payet (West Ham) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"visibility": "shown",
"position": "648000"
},
{
"important": false,
"gameTime": "1 - 10:22",
"gt_gameTime": "1 - 10:21",
"label": "",
"description": "Aaron Cresswell (West Ham) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. The referee signals a corner kick to West Ham.",
"identified": "[PLAYER_fcMqoMcH] ([TEAM_]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "622000"
}
]
} |