File size: 83,069 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 |
{
"timestamp": "1458399600",
"score": "2 - 2",
"round": "31",
"teams": [
"West Ham",
"Chelsea"
],
"lineup": {
"home": {
"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": [],
"lineup": 5,
"starting": true,
"long_name": "Cesar Azpilicueta"
},
{
"hash": "pKpkgR1U",
"name": "Cahill G.",
"captain": "",
"detail_link": "/player/cahill-gary/pKpkgR1U/",
"short_name": "Cahill",
"shirt_number": "24",
"country": "England",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Gary Cahill"
},
{
"hash": "MVExOq3n",
"name": "Courtois T.",
"captain": "",
"detail_link": "/player/courtois-thibaut/MVExOq3n/",
"short_name": "Courtois",
"shirt_number": "13",
"country": "Belgium",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Thibaut Courtois"
},
{
"hash": "YXIDwoe5",
"name": "Fabregas C.",
"captain": "",
"detail_link": "/player/fabregas-cesc/YXIDwoe5/",
"short_name": "Fabregas",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "45+3' Fabregas C.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "90+1' Fabregas C. (Handling)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Cesc Fabregas"
},
{
"hash": "Qe3xUmHo",
"name": "Ivanovic B.",
"captain": "",
"detail_link": "/player/ivanovic-branislav/Qe3xUmHo/",
"short_name": "Ivanovic",
"shirt_number": "2",
"country": "Serbia",
"facts": [
{
"type": "1",
"time": "16' Ivanovic B. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Branislav Ivanovic"
},
{
"hash": "Crwqppk9",
"name": "Kenedy",
"captain": "",
"detail_link": "/player/kenedy/Crwqppk9/",
"short_name": "Kenedy",
"shirt_number": "16",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Pedro",
"linked_player_hash": "0f1tMqQl"
}
],
"lineup": 10,
"starting": true,
"long_name": "Kenedy"
},
{
"hash": "8AkbVvN2",
"name": "Mikel J. O.",
"captain": "",
"detail_link": "/player/mikel-john-obi/8AkbVvN2/",
"short_name": "Mikel",
"shirt_number": "12",
"country": "Nigeria",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "John Obi Mikel"
},
{
"hash": "KfKDzbEo",
"name": "Oscar",
"captain": "",
"detail_link": "/player/oscar/KfKDzbEo/",
"short_name": "Oscar",
"shirt_number": "8",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "84'",
"description": "Loftus-Cheek R.",
"linked_player_hash": "6DpURWF8"
}
],
"lineup": 9,
"starting": true,
"long_name": "Oscar"
},
{
"hash": "hYsYT4nh",
"name": "Remy L.",
"captain": "",
"detail_link": "/player/remy-loic/hYsYT4nh/",
"short_name": "Remy",
"shirt_number": "18",
"country": "France",
"facts": [
{
"type": "6",
"time": "62'",
"description": "Traore B.",
"linked_player_hash": "MwckEcbf"
}
],
"lineup": 11,
"starting": true,
"long_name": "Loic Remy"
},
{
"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": "90+1' Willian (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Willian"
},
{
"hash": "K2yVXyhU",
"name": "Baba A.",
"captain": "",
"detail_link": "/player/baba-rahman/K2yVXyhU/",
"short_name": "Baba",
"shirt_number": "6",
"country": "Ghana",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Abdul-Rahman Baba"
},
{
"hash": "xO2Ce0IG",
"name": "Begovic A.",
"captain": "",
"detail_link": "/player/begovic-asmir/xO2Ce0IG/",
"short_name": "Begovic",
"shirt_number": "1",
"country": "Bosnia and Herzegovina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Asmir Begovic"
},
{
"hash": "6DpURWF8",
"name": "Loftus-Cheek R.",
"captain": "",
"detail_link": "/player/loftus-cheek-ruben/6DpURWF8/",
"short_name": "Loftus-Cheek",
"shirt_number": "36",
"country": "England",
"facts": [
{
"type": "7",
"time": "84'",
"description": "Oscar",
"linked_player_hash": "KfKDzbEo"
}
],
"lineup": null,
"starting": false,
"long_name": "Ruben Loftus-Cheek"
},
{
"hash": "Kty10JVG",
"name": "Matic N.",
"captain": "",
"detail_link": "/player/matic-nemanja/Kty10JVG/",
"short_name": "Matic",
"shirt_number": "21",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nemanja Matic"
},
{
"hash": "Acxka2u3",
"name": "Pato",
"captain": "",
"detail_link": "/player/pato-alexandre/Acxka2u3/",
"short_name": "Pato",
"shirt_number": "11",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Pato"
},
{
"hash": "0f1tMqQl",
"name": "Pedro",
"captain": "",
"detail_link": "/player/pedro/0f1tMqQl/",
"short_name": "Pedro",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Kenedy",
"linked_player_hash": "Crwqppk9"
}
],
"lineup": null,
"starting": false,
"long_name": "Pedro"
},
{
"hash": "MwckEcbf",
"name": "Traore B.",
"captain": "",
"detail_link": "/player/traore-bertrand/MwckEcbf/",
"short_name": "Traore",
"shirt_number": "14",
"country": "Burkina Faso",
"facts": [
{
"type": "7",
"time": "62'",
"description": "Remy L.",
"linked_player_hash": "hYsYT4nh"
}
],
"lineup": null,
"starting": false,
"long_name": "Bertrand Traore"
}
],
"coach": [
{
"hash": "CGfbv5C1",
"name": "Hiddink G.",
"captain": "",
"detail_link": "/player/hiddink-guus/CGfbv5C1/",
"short_name": "Hiddink G.",
"shirt_number": "",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Guus Hiddink"
}
]
},
"away": {
"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": [
{
"type": "1",
"time": "89' Adrian (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 1,
"starting": true,
"long_name": "Adrian"
},
{
"hash": "p8tt85Xn",
"name": "Antonio M.",
"captain": "",
"detail_link": "/player/antonio-michail/p8tt85Xn/",
"short_name": "Antonio",
"shirt_number": "30",
"country": "Jamaica",
"facts": [
{
"type": "1",
"time": "88' Antonio M. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Michail Antonio"
},
{
"hash": "fcMqoMcH",
"name": "Cresswell A.",
"captain": "",
"detail_link": "/player/cresswell-aaron/fcMqoMcH/",
"short_name": "Cresswell",
"shirt_number": "3",
"country": "England",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Aaron Cresswell"
},
{
"hash": "pb3Gmuff",
"name": "Kouyate C.",
"captain": "",
"detail_link": "/player/kouyate-cheikhou/pb3Gmuff/",
"short_name": "Kouyate",
"shirt_number": "8",
"country": "Senegal",
"facts": [
{
"type": "1",
"time": "64' Kouyate C. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"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": "3",
"time": "17' Lanzini M.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "82'",
"description": "Obiang P.",
"linked_player_hash": "nodnKnAs"
}
],
"lineup": 9,
"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": [],
"lineup": 7,
"starting": true,
"long_name": "Mark Noble"
},
{
"hash": "xtEnn3rQ",
"name": "Ogbonna A.",
"captain": "",
"detail_link": "/player/ogbonna-angelo/xtEnn3rQ/",
"short_name": "Ogbonna",
"shirt_number": "21",
"country": "Italy",
"facts": [
{
"type": "1",
"time": "45+3' Ogbonna A. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Angelo Ogbonna"
},
{
"hash": "8QcadiBC",
"name": "Payet D.",
"captain": "",
"detail_link": "/player/payet-dimitri/8QcadiBC/",
"short_name": "Payet",
"shirt_number": "27",
"country": "France",
"facts": [
{
"type": "8",
"time": "61' Carroll A. (Payet D.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Dimitri Payet"
},
{
"hash": "fFavcxiR",
"name": "Reid W.",
"captain": "",
"detail_link": "/player/reid-winston/fFavcxiR/",
"short_name": "Reid",
"shirt_number": "2",
"country": "New Zealand",
"facts": [
{
"type": "1",
"time": "45+2' Reid W. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Winston Reid"
},
{
"hash": "8nuyj4TG",
"name": "Sakho D.",
"captain": "",
"detail_link": "/player/sakho-diafra/8nuyj4TG/",
"short_name": "Sakho",
"shirt_number": "15",
"country": "Senegal",
"facts": [
{
"type": "6",
"time": "60'",
"description": "Carroll A.",
"linked_player_hash": "fsQHmhiO"
}
],
"lineup": 11,
"starting": true,
"long_name": "Diafra Sakho"
},
{
"hash": "KELXYJ3s",
"name": "Valencia E.",
"captain": "",
"detail_link": "/player/valencia-enner/KELXYJ3s/",
"short_name": "Valencia",
"shirt_number": "11",
"country": "Ecuador",
"facts": [
{
"type": "6",
"time": "75'",
"description": "Emenike E.",
"linked_player_hash": "AHxDoU8N"
}
],
"lineup": 8,
"starting": true,
"long_name": "Enner Valencia"
},
{
"hash": "fsQHmhiO",
"name": "Carroll A.",
"captain": "",
"detail_link": "/player/carroll-andy/fsQHmhiO/",
"short_name": "Carroll",
"shirt_number": "9",
"country": "England",
"facts": [
{
"type": "7",
"time": "60'",
"description": "Sakho D.",
"linked_player_hash": "8nuyj4TG"
},
{
"type": "3",
"time": "61' Carroll A. (Payet D.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Andy Carroll"
},
{
"hash": "AHxDoU8N",
"name": "Emenike E.",
"captain": "",
"detail_link": "/player/emenike-emmanuel/AHxDoU8N/",
"short_name": "Emenike",
"shirt_number": "29",
"country": "Nigeria",
"facts": [
{
"type": "7",
"time": "75'",
"description": "Valencia E.",
"linked_player_hash": "KELXYJ3s"
}
],
"lineup": null,
"starting": false,
"long_name": "Emmanuel Emenike"
},
{
"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": "OG45aBIn",
"name": "O'Brien J.",
"captain": "",
"detail_link": "/player/o-brien-joey/OG45aBIn/",
"short_name": "O'Brien",
"shirt_number": "17",
"country": "Ireland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Joey O'Brien"
},
{
"hash": "KC0NKT7S",
"name": "Oxford R.",
"captain": "",
"detail_link": "/player/oxford-reece/KC0NKT7S/",
"short_name": "Oxford",
"shirt_number": "35",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Reece Oxford"
},
{
"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": "CW3rsOvB",
"name": "Song A.",
"captain": "",
"detail_link": "/player/song-alex/CW3rsOvB/",
"short_name": "Song",
"shirt_number": "4",
"country": "Cameroon",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alex Song"
}
],
"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"
}
]
}
},
"referee": [
"Madley R."
],
"venue": [
"Stamford Bridge (London)"
],
"attendance": [
"41 623"
],
"referee_matched": [
"Robert Madley"
],
"referee_found": [
"Robert Madley"
],
"coach_matched": [
"Guus Hiddink"
],
"gameHomeTeam": "Chelsea",
"home": {
"name": "Chelsea",
"detail_link": "/team/chelsea/4fGZN2oK",
"hash": "4fGZN2oK",
"names": [
"Chelsea",
"chelsea"
]
},
"gameAwayTeam": "West Ham",
"away": {
"name": "West Ham",
"detail_link": "/team/west-ham/Cxq57r8g",
"hash": "Cxq57r8g",
"names": [
"West Ham",
"West Ham (Eng)",
"west ham"
]
},
"gameDate": "19/03/2016 - 16:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 50:59",
"label": "",
"description": "What an entertaining encounter between these two teams. Let's hope there will more of the same in their other games. The home team had more of the game. The strategy of the home side was to control the pace of the match with possession style football. Whereas the strategy of the away side was a bit risky and reliant on solid defending to dispossess the opponent and break fast.",
"identified": "What an entertaining encounter between these two teams. Let's hope there will more of the same in their other games. The home team had more of the game. The strategy of the home side was to control the pace of the match with possession style football. Whereas the strategy of the away side was a bit risky and reliant on solid defending to dispossess the opponent and break fast.",
"anonymized": "What an entertaining encounter between these two teams. Let's hope there will more of the same in their other games. The home team had more of the game. The strategy of the home side was to control the pace of the match with possession style football. Whereas the strategy of the away side was a bit risky and reliant on solid defending to dispossess the opponent and break fast.",
"visibility": "shown",
"position": "3059000"
},
{
"important": true,
"gameTime": "2 - 50:50",
"label": "whistle",
"description": "There will be no more action in this match as the referee signals full time.",
"identified": "There will be no more action in this match as the referee signals full time.",
"anonymized": "There will be no more action in this match as the referee signals full time.",
"visibility": "shown",
"position": "3050000"
},
{
"important": true,
"gameTime": "2 - 50:17",
"label": "",
"description": "Ruben Loftus-Cheek (Chelsea) receives a precise pass inside the box and takes a shot that flies just wide of the left post.",
"identified": "[PLAYER_6DpURWF8] ([TEAM_]) receives a precise pass inside the box and takes a shot that flies just wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass inside the box and takes a shot that flies just wide of the left post.",
"visibility": "shown",
"position": "3017000"
},
{
"important": false,
"gameTime": "2 - 46:50",
"label": "",
"description": "Dimitri Payet (West Ham) stands over the free kick and opts to take it himself, sending it towards the right post only for Thibaut Courtois to dive and make a save.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) stands over the free kick and opts to take it himself, sending it towards the right post only for [PLAYER_MVExOq3n] to dive and make a save.",
"anonymized": "[PLAYER] ([TEAM]) stands over the free kick and opts to take it himself, sending it towards the right post only for [PLAYER] to dive and make a save.",
"visibility": "shown",
"position": "2810000"
},
{
"important": true,
"gameTime": "2 - 45:35",
"label": "y-card",
"description": "That will be a yellow card for one of the players. The one who gets booked is Willian (Chelsea).",
"identified": "That will be a yellow card for one of the players. The one who gets booked is [PLAYER_GSzdOhPI] ([TEAM_]).",
"anonymized": "That will be a yellow card for one of the players. The one who gets booked is [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2735000"
},
{
"important": true,
"gameTime": "2 - 45:18",
"label": "y-card",
"description": "Cesc Fabregas (Chelsea) sees a yellow card. He should be more careful because one more challenge like that could result in a red card.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) sees a yellow card. He should be more careful because one more challenge like that could result in a red card.",
"anonymized": "[PLAYER] ([TEAM]) sees a yellow card. He should be more careful because one more challenge like that could result in a red card.",
"visibility": "shown",
"position": "2718000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "We will have 5 min. of added time.",
"identified": "We will have 5 min. of added time.",
"anonymized": "We will have 5 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 43:45",
"label": "y-card",
"description": "Adrian (West Ham) says more than he should have to the referee and is shown a yellow card.",
"identified": "[PLAYER_CEm70uDg] ([TEAM_]) says more than he should have to the referee and is shown a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) says more than he should have to the referee and is shown a yellow card.",
"visibility": "shown",
"position": "2625000"
},
{
"important": true,
"gameTime": "2 - 43:25",
"label": "soccer-ball",
"description": "Cesc Fabregas (Chelsea) steps up to take the penalty and leaves the keeper helpless with a shot into the bottom right corner.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) steps up to take the penalty and leaves the keeper helpless with a shot into the bottom right corner.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the penalty and leaves the keeper helpless with a shot into the bottom right corner.",
"visibility": "shown",
"position": "2605000"
},
{
"important": true,
"gameTime": "2 - 42:48",
"label": "",
"description": "Cesc Fabregas (Chelsea) is heading towards the penalty spot to take it.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) is heading towards the penalty spot to take it.",
"anonymized": "[PLAYER] ([TEAM]) is heading towards the penalty spot to take it.",
"visibility": "shown",
"position": "2568000"
},
{
"important": true,
"gameTime": "2 - 42:44",
"label": "y-card",
"description": "The foul by Michail Antonio (West Ham) is worthy of a card and a yellow is duly shown by Robert Madley.",
"identified": "The foul by [PLAYER_p8tt85Xn] ([TEAM_]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"anonymized": "The foul by [PLAYER] ([TEAM]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"visibility": "shown",
"position": "2564000"
},
{
"important": true,
"gameTime": "2 - 42:33",
"label": "penalty",
"description": "A clumsy foul by Michail Antonio (West Ham) and Robert Madley blows his whistle. The referee points to the penalty spot. Chelsea are awarded a penalty kick!",
"identified": "A clumsy foul by [PLAYER_p8tt85Xn] ([TEAM_]) and [REFEREE] blows his whistle. The referee points to the penalty spot. [TEAM_] are awarded a penalty kick!",
"anonymized": "A clumsy foul by [PLAYER] ([TEAM]) and [REFEREE] blows his whistle. The referee points to the penalty spot. [TEAM] are awarded a penalty kick!",
"visibility": "shown",
"position": "2553000"
},
{
"important": false,
"gameTime": "2 - 41:50",
"label": "corner",
"description": "The resulting corner, taken by Dimitri Payet (West Ham), comes to nothing.",
"identified": "The resulting corner, taken by [PLAYER_8QcadiBC] ([TEAM_]), comes to nothing.",
"anonymized": "The resulting corner, taken by [PLAYER] ([TEAM]), comes to nothing.",
"visibility": "shown",
"position": "2510000"
},
{
"important": false,
"gameTime": "2 - 41:34",
"label": "",
"description": "Emmanuel Emenike (West Ham) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders. The ball goes out of play. West Ham are awarded a corner kick.",
"identified": "[PLAYER_AHxDoU8N] ([TEAM_]) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2494000"
},
{
"important": true,
"gameTime": "2 - 39:00",
"label": "substitution",
"description": "Guus Hiddink has decided to introduce fresh legs, with Ruben Loftus-Cheek (Chelsea) replacing Oscar.",
"identified": "[COACH_CGfbv5C1] has decided to introduce fresh legs, with [PLAYER_6DpURWF8] ([TEAM_]) replacing [PLAYER_KfKDzbEo].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "2340000"
},
{
"important": false,
"gameTime": "2 - 37:22",
"label": "",
"description": "Gary Cahill (Chelsea) didn't manage to convert the resulting corner kick into a goal. He produced a header from a dangerous position inside the box, but his attempt went well wide of the right post.",
"identified": "[PLAYER_pKpkgR1U] ([TEAM_]) didn't manage to convert the resulting corner kick into a goal. He produced a header from a dangerous position inside the box, but his attempt went well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) didn't manage to convert the resulting corner kick into a goal. He produced a header from a dangerous position inside the box, but his attempt went well wide of the right post.",
"visibility": "shown",
"position": "2242000"
},
{
"important": false,
"gameTime": "2 - 37:16",
"label": "corner",
"description": "It will be a corner kick. It is a great opportunity for their players who are good in the air to get into the penalty area.",
"identified": "It will be a corner kick. It is a great opportunity for their players who are good in the air to get into the penalty area.",
"anonymized": "It will be a corner kick. It is a great opportunity for their players who are good in the air to get into the penalty area.",
"visibility": "shown",
"position": "2236000"
},
{
"important": true,
"gameTime": "2 - 36:43",
"label": "substitution",
"description": "Substitution. Manuel Lanzini did his best and is replaced by Pedro Obiang (West Ham).",
"identified": "Substitution. [PLAYER_QT3lIj4N] did his best and is replaced by [PLAYER_0f1tMqQl] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] did his best and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2203000"
},
{
"important": false,
"gameTime": "2 - 36:06",
"label": "",
"description": "Cesc Fabregas (Chelsea) misses a good chance to score. An inch-perfect cross into the box finds Cesc Fabregas (Chelsea) who rises for a header, but sends the ball well over the bar. Good work from Chelsea as they win a corner.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) misses a good chance to score. An inch-perfect cross into the box finds [PLAYER_YXIDwoe5] ([TEAM_]) who rises for a header, but sends the ball well over the bar. Good work from [TEAM_] as they win a corner.",
"anonymized": "[PLAYER] ([TEAM]) misses a good chance to score. An inch-perfect cross into the box finds [PLAYER] ([TEAM]) who rises for a header, but sends the ball well over the bar. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "2166000"
},
{
"important": false,
"gameTime": "2 - 35:11",
"label": "corner",
"description": "The resulting corner from Dimitri Payet (West Ham) only finds one of the defenders, who heads it out of danger.",
"identified": "The resulting corner from [PLAYER_8QcadiBC] ([TEAM_]) only finds one of the defenders, who heads it out of danger.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) only finds one of the defenders, who heads it out of danger.",
"visibility": "shown",
"position": "2111000"
},
{
"important": false,
"gameTime": "2 - 34:31",
"label": "",
"description": "Andy Carroll (West Ham) rises highest from the corner to head at goal, but his effort towards the middle of the goal is comfortably saved by the goalkeeper. The ball is out of play and West Ham manage to earn a corner.",
"identified": "[PLAYER_fsQHmhiO] ([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. The ball is out of play and [TEAM_] manage to earn a corner.",
"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. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "2071000"
},
{
"important": false,
"gameTime": "2 - 34:19",
"label": "corner",
"description": "Dimitri Payet (West Ham) goes over to take the corner kick and it looks like he will swing the ball into the penalty box.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) goes over to take the corner kick and it looks like he will swing the ball into the penalty box.",
"anonymized": "[PLAYER] ([TEAM]) goes over to take the corner kick and it looks like he will swing the ball into the penalty box.",
"visibility": "shown",
"position": "2059000"
},
{
"important": false,
"gameTime": "2 - 33:55",
"label": "corner",
"description": "Dimitri Payet (West Ham) takes the corner but fails to find any of his teammates. West Ham earn a corner.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) takes the corner but fails to find any of his teammates. [TEAM_] earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates. [TEAM] earn a corner.",
"visibility": "shown",
"position": "2035000"
},
{
"important": false,
"gameTime": "2 - 33:35",
"label": "",
"description": "Dimitri Payet (West Ham) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender. The referee points to the corner flag and West Ham will take a corner.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "2015000"
},
{
"important": false,
"gameTime": "2 - 31:30",
"label": "",
"description": "John Terry (Chelsea) connects with the corner kick around the penalty spot, but steers his header inches over the bar.",
"identified": "[PLAYER_0AovoI68] ([TEAM_]) connects with the corner kick around the penalty spot, but steers his header inches over the bar.",
"anonymized": "[PLAYER] ([TEAM]) connects with the corner kick around the penalty spot, but steers his header inches over the bar.",
"visibility": "shown",
"position": "1890000"
},
{
"important": false,
"gameTime": "2 - 31:21",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) takes the corner.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) takes the corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner.",
"visibility": "shown",
"position": "1881000"
},
{
"important": false,
"gameTime": "2 - 31:09",
"label": "",
"description": "Branislav Ivanovic (Chelsea) tries to pass the ball into the penalty area but it's blocked. Corner kick. Chelsea will have an opportunity.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) tries to pass the ball into the penalty area but it's blocked. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "[PLAYER] ([TEAM]) tries to pass the ball into the penalty area but it's blocked. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "1869000"
},
{
"important": true,
"gameTime": "2 - 30:00",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Emmanuel Emenike (West Ham) is coming onto the pitch as Enner Valencia cannot continue after picking up an injury.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_AHxDoU8N] ([TEAM_]) is coming onto the pitch as [PLAYER_KELXYJ3s] cannot continue after picking up an injury.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) is coming onto the pitch as [PLAYER] cannot continue after picking up an injury.",
"visibility": "shown",
"position": "1800000"
},
{
"important": false,
"gameTime": "2 - 29:36",
"label": "",
"description": "Cesc Fabregas (Chelsea) gets to a rebound inside the goalmouth, but even from this distance he misses the target and fails to score.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) gets to a rebound inside the goalmouth, but even from this distance he misses the target and fails to score.",
"anonymized": "[PLAYER] ([TEAM]) gets to a rebound inside the goalmouth, but even from this distance he misses the target and fails to score.",
"visibility": "shown",
"position": "1776000"
},
{
"important": false,
"gameTime": "2 - 27:15",
"label": "",
"description": "Cesc Fabregas (Chelsea) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"anonymized": "[PLAYER] ([TEAM]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"visibility": "shown",
"position": "1635000"
},
{
"important": false,
"gameTime": "2 - 27:06",
"label": "corner",
"description": "Willian (Chelsea) will take a corner kick.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will take a corner kick.",
"visibility": "shown",
"position": "1626000"
},
{
"important": false,
"gameTime": "2 - 26:35",
"label": "",
"description": "Oscar (Chelsea) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. The ball is out of play. Chelsea win a corner kick.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. The ball is out of play. [TEAM_] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "1595000"
},
{
"important": false,
"gameTime": "2 - 23:50",
"label": "",
"description": "John Obi Mikel (Chelsea) gets in a header from the resulting free kick. It lacks accuracy, however, to bother the keeper and the ball goes a few metres over the bar.",
"identified": "[PLAYER_8AkbVvN2] ([TEAM_]) gets in a header from the resulting free kick. It lacks accuracy, however, to bother the keeper and the ball goes a few metres over the bar.",
"anonymized": "[PLAYER] ([TEAM]) gets in a header from the resulting free kick. It lacks accuracy, however, to bother the keeper and the ball goes a few metres over the bar.",
"visibility": "shown",
"position": "1430000"
},
{
"important": false,
"gameTime": "2 - 23:07",
"label": "",
"description": "That's a free kick to Chelsea. Michail Antonio (West Ham) trips an opponent with a slide tackle. Robert Madley stops the game and he could give him a card, but eventually decides on just a warning.",
"identified": "That's a free kick to [TEAM_]. [PLAYER_p8tt85Xn] ([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": "That's a free kick to [TEAM]. [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": "1387000"
},
{
"important": true,
"gameTime": "2 - 18:06",
"label": "y-card",
"description": "Cheikhou Kouyate (West Ham) picks up a yellow card for an infringement.",
"identified": "[PLAYER_pb3Gmuff] ([TEAM_]) picks up a yellow card for an infringement.",
"anonymized": "[PLAYER] ([TEAM]) picks up a yellow card for an infringement.",
"visibility": "shown",
"position": "1086000"
},
{
"important": true,
"gameTime": "2 - 17:00",
"label": "substitution",
"description": "Guus Hiddink has decided to substitute Loic Remy and he is replaced by Bertrand Traore (Chelsea).",
"identified": "[COACH_CGfbv5C1] has decided to substitute [PLAYER_hYsYT4nh] and he is replaced by [PLAYER_MwckEcbf] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1020000"
},
{
"important": true,
"gameTime": "2 - 15:59",
"label": "soccer-ball",
"description": "Andrew Carroll (West Ham) has acres of space after latching on to a precise pass into the box. He doesn't hesitate to unleash a great effort which ends up in the bottom left corner.",
"identified": "[PLAYER_fsQHmhiO] ([TEAM_]) has acres of space after latching on to a precise pass into the box. He doesn't hesitate to unleash a great effort which ends up in the bottom left corner.",
"anonymized": "[PLAYER] ([TEAM]) has acres of space after latching on to a precise pass into the box. He doesn't hesitate to unleash a great effort which ends up in the bottom left corner.",
"visibility": "shown",
"position": "959000"
},
{
"important": false,
"gameTime": "2 - 15:58",
"label": "",
"description": "Adrian blocks Loic Remy (Chelsea)'s effort from the edge of the box.",
"identified": "[PLAYER_CEm70uDg] blocks [PLAYER_hYsYT4nh] ([TEAM_])'s effort from the edge of the box.",
"anonymized": "[PLAYER] blocks [PLAYER] ([TEAM])'s effort from the edge of the box.",
"visibility": "shown",
"position": "958000"
},
{
"important": true,
"gameTime": "2 - 14:37",
"label": "substitution",
"description": "Diafra Sakho goes off the pitch and Andy Carroll (West Ham) comes on.",
"identified": "[PLAYER_8nuyj4TG] goes off the pitch and [PLAYER_fsQHmhiO] ([TEAM_]) comes on.",
"anonymized": "[PLAYER] goes off the pitch and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "877000"
},
{
"important": false,
"gameTime": "2 - 13:03",
"label": "attendance",
"description": "The attendance for today's match is 41623.",
"identified": "The attendance for today's match is 41623.",
"anonymized": "The attendance for today's match is 41623.",
"visibility": "shown",
"position": "783000"
},
{
"important": true,
"gameTime": "2 - 12:39",
"label": "",
"description": "Aaron Cresswell (West Ham) picks up a pass inside the box and unleashes a shot goalwards that crashes against the bar. It could have been a brilliant goal, unlucky.",
"identified": "[PLAYER_fcMqoMcH] ([TEAM_]) picks up a pass inside the box and unleashes a shot goalwards that crashes against the bar. It could have been a brilliant goal, unlucky.",
"anonymized": "[PLAYER] ([TEAM]) picks up a pass inside the box and unleashes a shot goalwards that crashes against the bar. It could have been a brilliant goal, unlucky.",
"visibility": "shown",
"position": "759000"
},
{
"important": false,
"gameTime": "2 - 12:17",
"label": "corner",
"description": "Pedro (Chelsea) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_0f1tMqQl] ([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": "737000"
},
{
"important": false,
"gameTime": "2 - 12:07",
"label": "",
"description": "Pedro (Chelsea) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance. Chelsea have been awarded a corner kick.",
"identified": "[PLAYER_0f1tMqQl] ([TEAM_]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "727000"
},
{
"important": false,
"gameTime": "2 - 10:02",
"label": "corner",
"description": "The corner from Willian (Chelsea) is cleared away by the defence.",
"identified": "The corner from [PLAYER_GSzdOhPI] ([TEAM_]) is cleared away by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is cleared away by the defence.",
"visibility": "shown",
"position": "602000"
},
{
"important": false,
"gameTime": "2 - 09:51",
"label": "corner",
"description": "Willian (Chelsea) takes the corner but it's cleared. The ball goes out of play. Chelsea are awarded a corner kick.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) takes the corner but it's cleared. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but it's cleared. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "591000"
},
{
"important": false,
"gameTime": "2 - 09:38",
"label": "",
"description": "Chelsea force a corner. Their opponents will face another attacking threat. Branislav Ivanovic (Chelsea) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"identified": "[TEAM_] force a corner. Their opponents will face another attacking threat. [PLAYER_Qe3xUmHo] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"anonymized": "[TEAM] force a corner. Their opponents will face another attacking threat. [PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"visibility": "shown",
"position": "578000"
},
{
"important": false,
"gameTime": "2 - 07:26",
"label": "",
"description": "John Terry (Chelsea) outjumped the defenders to meet the ball from the free kick and plants a precise header from deep inside the box towards the net! The goalkeeper shows his reflexes and superbly keeps the ball out!",
"identified": "[PLAYER_0AovoI68] ([TEAM_]) outjumped the defenders to meet the ball from the free kick and plants a precise header from deep inside the box towards the net! The goalkeeper shows his reflexes and superbly keeps the ball out!",
"anonymized": "[PLAYER] ([TEAM]) outjumped the defenders to meet the ball from the free kick and plants a precise header from deep inside the box towards the net! The goalkeeper shows his reflexes and superbly keeps the ball out!",
"visibility": "shown",
"position": "446000"
},
{
"important": false,
"gameTime": "2 - 06:40",
"label": "",
"description": "Cheikhou Kouyate (West Ham) fouls an opponent. At least that's what referee Robert Madley signals. Chelsea have a free kick.",
"identified": "[PLAYER_pb3Gmuff] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM_] have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM] have a free kick.",
"visibility": "shown",
"position": "400000"
},
{
"important": true,
"gameTime": "2 - 05:26",
"label": "",
"description": "Oscar (Chelsea) does well to meet a cross from Branislav Ivanovic, but he directs his shot just wide of the left post.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) does well to meet a cross from [PLAYER_Qe3xUmHo], but he directs his shot just wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) does well to meet a cross from [PLAYER], but he directs his shot just wide of the left post.",
"visibility": "shown",
"position": "326000"
},
{
"important": false,
"gameTime": "2 - 02:51",
"label": "",
"description": "Diafra Sakho (West Ham) fails to beat the offside trap and the linesman puts his flag up.",
"identified": "[PLAYER_8nuyj4TG] ([TEAM_]) fails to beat the offside trap and the linesman puts his flag up.",
"anonymized": "[PLAYER] ([TEAM]) fails to beat the offside trap and the linesman puts his flag up.",
"visibility": "shown",
"position": "171000"
},
{
"important": true,
"gameTime": "2 - 00:10",
"label": "substitution",
"description": "It is time for a substitution. Pedro (Chelsea) is on for .",
"identified": "It is time for a substitution. [PLAYER_0f1tMqQl] ([TEAM_]) is on for .",
"anonymized": "It is time for a substitution. [PLAYER] ([TEAM]) is on for .",
"visibility": "shown",
"position": "10000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The whistle blows and Robert Madley starts the second half.",
"identified": "The whistle blows and [REFEREE] starts the second half.",
"anonymized": "The whistle blows and [REFEREE] starts the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 49:00",
"label": "",
"description": "Not the best game in the world so far but certainly not the worst either. Chances have been few. In terms of the overall play, the match has been fairly even so far. The home team makes a lot of passes and attempts to maintain possession, while the visitors look to counter-attack.",
"identified": "Not the best game in the world so far but certainly not the worst either. Chances have been few. In terms of the overall play, the match has been fairly even so far. The home team makes a lot of passes and attempts to maintain possession, while the visitors look to counter-attack.",
"anonymized": "Not the best game in the world so far but certainly not the worst either. Chances have been few. In terms of the overall play, the match has been fairly even so far. The home team makes a lot of passes and attempts to maintain possession, while the visitors look to counter-attack.",
"visibility": "shown",
"position": "2940000"
},
{
"important": true,
"gameTime": "1 - 48:59",
"label": "whistle",
"description": "Robert Madley has ended the first half by blowing the whistle.",
"identified": "[REFEREE] has ended the first half by blowing the whistle.",
"anonymized": "[REFEREE] has ended the first half by blowing the whistle.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "1 - 47:56",
"label": "soccer-ball",
"description": "Cesc Fabregas (Chelsea) scores a beautiful goal from the resulting free kick. He bends the ball into the top left corner. A technically stunning goal.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) scores a beautiful goal from the resulting free kick. He bends the ball into the top left corner. A technically stunning goal.",
"anonymized": "[PLAYER] ([TEAM]) scores a beautiful goal from the resulting free kick. He bends the ball into the top left corner. A technically stunning goal.",
"visibility": "shown",
"position": "2876000"
},
{
"important": true,
"gameTime": "1 - 47:33",
"label": "y-card",
"description": "Angelo Ogbonna (West Ham) receives a yellow card.",
"identified": "[PLAYER_xtEnn3rQ] ([TEAM_]) receives a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) receives a yellow card.",
"visibility": "shown",
"position": "2853000"
},
{
"important": true,
"gameTime": "1 - 47:00",
"label": "y-card",
"description": "Winston Reid (West Ham) is booked by the referee.",
"identified": "[PLAYER_fFavcxiR] ([TEAM_]) is booked by the referee.",
"anonymized": "[PLAYER] ([TEAM]) is booked by the referee.",
"visibility": "shown",
"position": "2820000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "5 additional min. will be played.",
"identified": "5 additional min. will be played.",
"anonymized": "5 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 42:48",
"label": "",
"description": "Mark Noble (West Ham) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_GxzuJFFG] ([TEAM_]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"visibility": "shown",
"position": "2568000"
},
{
"important": false,
"gameTime": "1 - 41:32",
"label": "corner",
"description": "Willian (Chelsea) floats the ball in from the corner but it's intercepted.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) floats the ball in from the corner but it's intercepted.",
"anonymized": "[PLAYER] ([TEAM]) floats the ball in from the corner but it's intercepted.",
"visibility": "shown",
"position": "2492000"
},
{
"important": false,
"gameTime": "1 - 41:22",
"label": "",
"description": "The ball is cleared after Branislav Ivanovic (Chelsea) attempted to dribble past an opposing player. Chelsea have been awarded a corner kick.",
"identified": "The ball is cleared after [PLAYER_Qe3xUmHo] ([TEAM_]) attempted to dribble past an opposing player. [TEAM_] have been awarded a corner kick.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2482000"
},
{
"important": false,
"gameTime": "1 - 40:21",
"label": "",
"description": "Willian (Chelsea) struck with a long-range free kick. His attempt flew just wide of the left post. The goalkeeper was lucky there.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) struck with a long-range free kick. His attempt flew just wide of the left post. The goalkeeper was lucky there.",
"anonymized": "[PLAYER] ([TEAM]) struck with a long-range free kick. His attempt flew just wide of the left post. The goalkeeper was lucky there.",
"visibility": "shown",
"position": "2421000"
},
{
"important": false,
"gameTime": "1 - 37:51",
"label": "injury",
"description": "The game is interrupted now, picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, picks up a knock and the physio has to come on.",
"anonymized": "The game is interrupted now, picks up a knock and the physio has to come on.",
"visibility": "shown",
"position": "2271000"
},
{
"important": false,
"gameTime": "1 - 37:21",
"label": "",
"description": "Cheikhou Kouyate (West Ham) robs an opponent of the ball and explodes in anger when Robert Madley blows for a foul. Chelsea will take a free kick.",
"identified": "[PLAYER_pb3Gmuff] ([TEAM_]) robs an opponent of the ball and explodes in anger when [REFEREE] blows for a foul. [TEAM_] will take a free kick.",
"anonymized": "[PLAYER] ([TEAM]) robs an opponent of the ball and explodes in anger when [REFEREE] blows for a foul. [TEAM] will take a free kick.",
"visibility": "shown",
"position": "2241000"
},
{
"important": false,
"gameTime": "1 - 37:06",
"label": "corner",
"description": "Willian (Chelsea) whips in the corner, but one of the defending players gets a head on it and intercepts.",
"identified": "[PLAYER_GSzdOhPI] ([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": "2226000"
},
{
"important": false,
"gameTime": "1 - 36:53",
"label": "",
"description": "The referee blows his whistle, Chelsea are awarded a corner kick. An attempted cross from Branislav Ivanovic (Chelsea) is cleared.",
"identified": "The referee blows his whistle, [TEAM_] are awarded a corner kick. An attempted cross from [PLAYER_Qe3xUmHo] ([TEAM_]) is cleared.",
"anonymized": "The referee blows his whistle, [TEAM] are awarded a corner kick. An attempted cross from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "2213000"
},
{
"important": false,
"gameTime": "1 - 32:54",
"label": "",
"description": "The referee blows his whistle, a clear handball by Manuel Lanzini (West Ham).",
"identified": "The referee blows his whistle, a clear handball by [PLAYER_QT3lIj4N] ([TEAM_]).",
"anonymized": "The referee blows his whistle, a clear handball by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1974000"
},
{
"important": false,
"gameTime": "1 - 31:14",
"label": "corner",
"description": "Dimitri Payet (West Ham) swings in the corner, but it's comfortably cleared away.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) swings in the corner, but it's comfortably cleared away.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but it's comfortably cleared away.",
"visibility": "shown",
"position": "1874000"
},
{
"important": false,
"gameTime": "1 - 30:50",
"label": "",
"description": "Aaron Cresswell (West Ham) connects with an accurate pass inside the box and fires the ball to the bottom right corner, but one of the defending players steps in to block the effort. West Ham win a corner.",
"identified": "[PLAYER_fcMqoMcH] ([TEAM_]) connects with an accurate pass inside the box and fires the ball to the bottom right corner, but one of the defending players steps in to block the effort. [TEAM_] win a corner.",
"anonymized": "[PLAYER] ([TEAM]) connects with an accurate pass inside the box and fires the ball to the bottom right corner, but one of the defending players steps in to block the effort. [TEAM] win a corner.",
"visibility": "shown",
"position": "1850000"
},
{
"important": false,
"gameTime": "1 - 30:13",
"label": "",
"description": "John Obi Mikel (Chelsea) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves Robert Madley with no other option than to blow for a foul.",
"identified": "[PLAYER_8AkbVvN2] ([TEAM_]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul.",
"anonymized": "[PLAYER] ([TEAM]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul.",
"visibility": "shown",
"position": "1813000"
},
{
"important": false,
"gameTime": "1 - 27:58",
"label": "corner",
"description": "Willian (Chelsea) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"visibility": "shown",
"position": "1678000"
},
{
"important": false,
"gameTime": "1 - 27:30",
"label": "",
"description": "Willian (Chelsea) receives a sweet pass inside the box, but his effort on goal is blocked by the defender. The ball goes behind for a corner. Chelsea will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1650000"
},
{
"important": false,
"gameTime": "1 - 25:06",
"label": "",
"description": "skips perfectly past challenges but misdirects his shot from the edge of the box. The ball flies a few yards over the bar.",
"identified": "skips perfectly past challenges but misdirects his shot from the edge of the box. The ball flies a few yards over the bar.",
"anonymized": "skips perfectly past challenges but misdirects his shot from the edge of the box. The ball flies a few yards over the bar.",
"visibility": "shown",
"position": "1506000"
},
{
"important": false,
"gameTime": "1 - 23:28",
"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": "1408000"
},
{
"important": false,
"gameTime": "1 - 23:21",
"label": "",
"description": "Dimitri Payet (West Ham) slides a pass forward, but one of the defenders cuts it out. West Ham force their opponents to concede a corner.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) slides a pass forward, but one of the defenders cuts it out. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) slides a pass forward, but one of the defenders cuts it out. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "1401000"
},
{
"important": false,
"gameTime": "1 - 21:14",
"label": "",
"description": "Branislav Ivanovic (Chelsea) misses a promising opportunity! He rises for a cross and unleashes a poor header from near the penalty spot. The ball floats high over the crossbar!",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) misses a promising opportunity! He rises for a cross and unleashes a poor header from near the penalty spot. The ball floats high over the crossbar!",
"anonymized": "[PLAYER] ([TEAM]) misses a promising opportunity! He rises for a cross and unleashes a poor header from near the penalty spot. The ball floats high over the crossbar!",
"visibility": "shown",
"position": "1274000"
},
{
"important": false,
"gameTime": "1 - 20:58",
"label": "corner",
"description": "The corner from Willian (Chelsea) is intercepted by Adrian.",
"identified": "The corner from [PLAYER_GSzdOhPI] ([TEAM_]) is intercepted by [PLAYER_CEm70uDg].",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by [PLAYER].",
"visibility": "shown",
"position": "1258000"
},
{
"important": false,
"gameTime": "1 - 20:22",
"label": "",
"description": "Now Chelsea have a corner. creates himself some space and attempts to put the ball into the box. However, the defender gets an important foot in to clear.",
"identified": "Now [TEAM_] have a corner. creates himself some space and attempts to put the ball into the box. However, the defender gets an important foot in to clear.",
"anonymized": "Now [TEAM] have a corner. creates himself some space and attempts to put the ball into the box. However, the defender gets an important foot in to clear.",
"visibility": "shown",
"position": "1222000"
},
{
"important": false,
"gameTime": "1 - 18:48",
"label": "corner",
"description": "The resulting corner from Dimitri Payet (West Ham) is cleared.",
"identified": "The resulting corner from [PLAYER_8QcadiBC] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "1128000"
},
{
"important": false,
"gameTime": "1 - 18:35",
"label": "",
"description": "This shall not pass! Dimitri Payet (West Ham) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender. West Ham get a corner.",
"identified": "This shall not pass! [PLAYER_8QcadiBC] ([TEAM_]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender. [TEAM_] get a corner.",
"anonymized": "This shall not pass! [PLAYER] ([TEAM]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender. [TEAM] get a corner.",
"visibility": "shown",
"position": "1115000"
},
{
"important": true,
"gameTime": "1 - 16:56",
"label": "soccer-ball",
"description": "Manuel Lanzini (West Ham) controls the ball with a great first touch just outside the penalty area after receiving a pass and smashes the ball into the roof of the net to give the goalkeeper no chance!",
"identified": "[PLAYER_QT3lIj4N] ([TEAM_]) controls the ball with a great first touch just outside the penalty area after receiving a pass and smashes the ball into the roof of the net to give the goalkeeper no chance!",
"anonymized": "[PLAYER] ([TEAM]) controls the ball with a great first touch just outside the penalty area after receiving a pass and smashes the ball into the roof of the net to give the goalkeeper no chance!",
"visibility": "shown",
"position": "1016000"
},
{
"important": true,
"gameTime": "1 - 15:30",
"label": "y-card",
"description": "Branislav Ivanovic (Chelsea) is awarded a yellow card. The referee showed him no mercy.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) is awarded a yellow card. The referee showed him no mercy.",
"anonymized": "[PLAYER] ([TEAM]) is awarded a yellow card. The referee showed him no mercy.",
"visibility": "shown",
"position": "930000"
},
{
"important": false,
"gameTime": "1 - 10:55",
"label": "",
"description": "Winston Reid (West Ham) outjumps the defence to meet the resulting corner and heads the ball towards the middle of the goal. The long-range header is not powerful enough, and the keeper comfortably makes a save.",
"identified": "[PLAYER_fFavcxiR] ([TEAM_]) outjumps the defence to meet the resulting corner and heads the ball towards the middle of the goal. The long-range header is not powerful enough, and the keeper comfortably makes a save.",
"anonymized": "[PLAYER] ([TEAM]) outjumps the defence to meet the resulting corner and heads the ball towards the middle of the goal. The long-range header is not powerful enough, and the keeper comfortably makes a save.",
"visibility": "shown",
"position": "655000"
},
{
"important": false,
"gameTime": "1 - 10:48",
"label": "corner",
"description": "Dimitri Payet (West Ham) is about to take a corner kick.",
"identified": "[PLAYER_8QcadiBC] ([TEAM_]) is about to take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) is about to take a corner kick.",
"visibility": "shown",
"position": "648000"
},
{
"important": false,
"gameTime": "1 - 10:25",
"label": "",
"description": "Enner Valencia (West Ham) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_KELXYJ3s] ([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": "625000"
}
]
} |