File size: 93,817 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 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 |
{
"timestamp": "1442058300",
"score": "3 - 1",
"round": "5",
"teams": [
"Everton",
"Chelsea"
],
"lineup": {
"home": {
"tactic": "1-4-3-1-2",
"players": [
{
"hash": "Stsozgbg",
"name": "Barkley R.",
"captain": "",
"detail_link": "/player/barkley-ross/Stsozgbg/",
"short_name": "Barkley",
"shirt_number": "20",
"country": "England",
"facts": [
{
"type": "8",
"time": "22' Naismith S. (Barkley R.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "8",
"time": "82' Naismith S. (Barkley R.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Ross Barkley"
},
{
"hash": "YRmh0zV8",
"name": "Barry G.",
"captain": "",
"detail_link": "/player/barry-gareth/YRmh0zV8/",
"short_name": "Barry",
"shirt_number": "18",
"country": "England",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Gareth Barry"
},
{
"hash": "b11Ax7xj",
"name": "Besic M.",
"captain": "",
"detail_link": "/player/besic-muhamed/b11Ax7xj/",
"short_name": "Besic",
"shirt_number": "17",
"country": "Bosnia and Herzegovina",
"facts": [
{
"type": "6",
"time": "9'",
"description": "Naismith S.",
"linked_player_hash": "tjrcdnik"
}
],
"lineup": 8,
"starting": true,
"long_name": "Muhamed Besic"
},
{
"hash": "zq8Uz4Ed",
"name": "Coleman S.",
"captain": "",
"detail_link": "/player/coleman-seamus/zq8Uz4Ed/",
"short_name": "Coleman",
"shirt_number": "23",
"country": "Ireland",
"facts": [
{
"type": "6",
"time": "77'",
"description": "Mori R.",
"linked_player_hash": "bwISPvDT"
}
],
"lineup": 2,
"starting": true,
"long_name": "Seamus Coleman"
},
{
"hash": "8EIQQCI5",
"name": "Galloway B.",
"captain": "",
"detail_link": "/player/galloway-brendan/8EIQQCI5/",
"short_name": "Galloway",
"shirt_number": "32",
"country": "Zimbabwe",
"facts": [
{
"type": "8",
"time": "17' Naismith S. (Galloway B.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "1",
"time": "65' Galloway B. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Brendan Galloway"
},
{
"hash": "SxNK5vu3",
"name": "Howard T.",
"captain": "",
"detail_link": "/player/howard-tim/SxNK5vu3/",
"short_name": "Howard",
"shirt_number": "24",
"country": "USA",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Tim Howard"
},
{
"hash": "xEcGkuQ9",
"name": "Jagielka P.",
"captain": "(C)",
"detail_link": "/player/jagielka-phil/xEcGkuQ9/",
"short_name": "Jagielka",
"shirt_number": "6",
"country": "England",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Phil Jagielka"
},
{
"hash": "Ovczyzc4",
"name": "Kone A.",
"captain": "",
"detail_link": "/player/kone-arouna/Ovczyzc4/",
"short_name": "Kone",
"shirt_number": "9",
"country": "Ivory Coast",
"facts": [
{
"type": "6",
"time": "72'",
"description": "Lennon A.",
"linked_player_hash": "WGObx1iE"
}
],
"lineup": 10,
"starting": true,
"long_name": "Arouna Kone"
},
{
"hash": "dCkG0Iw0",
"name": "Lukaku R.",
"captain": "",
"detail_link": "/player/lukaku-romelu/dCkG0Iw0/",
"short_name": "Lukaku",
"shirt_number": "10",
"country": "Belgium",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Romelu Lukaku"
},
{
"hash": "IBy588Qo",
"name": "McCarthy J.",
"captain": "",
"detail_link": "/player/mccarthy-james/IBy588Qo/",
"short_name": "McCarthy",
"shirt_number": "16",
"country": "Ireland",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "James McCarthy"
},
{
"hash": "SlLxn4xl",
"name": "Stones J.",
"captain": "",
"detail_link": "/player/stones-john/SlLxn4xl/",
"short_name": "Stones",
"shirt_number": "5",
"country": "England",
"facts": [
{
"type": "1",
"time": "87' Stones J. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "John Stones"
},
{
"hash": "WpIsmaGl",
"name": "Deulofeu G.",
"captain": "",
"detail_link": "/player/deulofeu-gerard/WpIsmaGl/",
"short_name": "Deulofeu",
"shirt_number": "19",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gerard Deulofeu"
},
{
"hash": "WGObx1iE",
"name": "Lennon A.",
"captain": "",
"detail_link": "/player/lennon-aaron/WGObx1iE/",
"short_name": "Lennon",
"shirt_number": "12",
"country": "England",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Kone A.",
"linked_player_hash": "Ovczyzc4"
}
],
"lineup": null,
"starting": false,
"long_name": "Aaron Lennon"
},
{
"hash": "v73ib9Ds",
"name": "Mirallas K.",
"captain": "",
"detail_link": "/player/mirallas-kevin/v73ib9Ds/",
"short_name": "Mirallas",
"shirt_number": "11",
"country": "Belgium",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kevin Mirallas"
},
{
"hash": "bwISPvDT",
"name": "Mori R.",
"captain": "",
"detail_link": "/player/mori-ramiro/bwISPvDT/",
"short_name": "Mori",
"shirt_number": "25",
"country": "Argentina",
"facts": [
{
"type": "7",
"time": "77'",
"description": "Coleman S.",
"linked_player_hash": "zq8Uz4Ed"
}
],
"lineup": null,
"starting": false,
"long_name": "Ramiro Mori"
},
{
"hash": "tjrcdnik",
"name": "Naismith S.",
"captain": "",
"detail_link": "/player/naismith-steven/tjrcdnik/",
"short_name": "Naismith",
"shirt_number": "14",
"country": "Scotland",
"facts": [
{
"type": "7",
"time": "9'",
"description": "Besic M.",
"linked_player_hash": "b11Ax7xj"
},
{
"type": "3",
"time": "17' Naismith S. (Galloway B.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "22' Naismith S. (Barkley R.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "82' Naismith S. (Barkley R.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Steven Naismith"
},
{
"hash": "ULHLrHXk",
"name": "Osman L.",
"captain": "",
"detail_link": "/player/osman-leon/ULHLrHXk/",
"short_name": "Osman",
"shirt_number": "21",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Leon Osman"
},
{
"hash": "4p5YvqWE",
"name": "Robles J.",
"captain": "",
"detail_link": "/player/robles-joel/4p5YvqWE/",
"short_name": "Robles",
"shirt_number": "1",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Joel Robles"
}
],
"coach": [
{
"hash": "vVKL1ADJ",
"name": "Martinez R.",
"captain": "",
"detail_link": "/player/martinez-roberto/vVKL1ADJ/",
"short_name": "Martinez R.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Roberto Martinez"
}
]
},
"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": "88' Azpilicueta C. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"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": "vBw5nir8",
"name": "Costa D.",
"captain": "",
"detail_link": "/player/costa-diego/vBw5nir8/",
"short_name": "Costa",
"shirt_number": "19",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "90+3' Costa D. (Tripping)",
"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": "6",
"time": "74'",
"description": "Willian",
"linked_player_hash": "GSzdOhPI"
}
],
"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": "Qe3xUmHo",
"name": "Ivanovic B.",
"captain": "",
"detail_link": "/player/ivanovic-branislav/Qe3xUmHo/",
"short_name": "Ivanovic",
"shirt_number": "2",
"country": "Serbia",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Branislav Ivanovic"
},
{
"hash": "Kty10JVG",
"name": "Matic N.",
"captain": "",
"detail_link": "/player/matic-nemanja/Kty10JVG/",
"short_name": "Matic",
"shirt_number": "21",
"country": "Serbia",
"facts": [
{
"type": "3",
"time": "36' Matic N. (Mikel J. O.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Nemanja Matic"
},
{
"hash": "8AkbVvN2",
"name": "Mikel J. O.",
"captain": "",
"detail_link": "/player/mikel-john-obi/8AkbVvN2/",
"short_name": "Mikel",
"shirt_number": "12",
"country": "Nigeria",
"facts": [
{
"type": "8",
"time": "36' Matic N. (Mikel J. O.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "55'",
"description": "Kenedy",
"linked_player_hash": "Crwqppk9"
}
],
"lineup": 6,
"starting": true,
"long_name": "John Obi Mikel"
},
{
"hash": "0f1tMqQl",
"name": "Pedro",
"captain": "",
"detail_link": "/player/pedro/0f1tMqQl/",
"short_name": "Pedro",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "70'",
"description": "Falcao R.",
"linked_player_hash": "2oMimkAU"
}
],
"lineup": 8,
"starting": true,
"long_name": "Pedro"
},
{
"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": "SKosf7jl",
"name": "Zouma K.",
"captain": "",
"detail_link": "/player/zouma-kurt/SKosf7jl/",
"short_name": "Zouma",
"shirt_number": "5",
"country": "France",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Kurt Zouma"
},
{
"hash": "b562tvIJ",
"name": "Blackman J.",
"captain": "",
"detail_link": "/player/blackman-jamal/b562tvIJ/",
"short_name": "Blackman",
"shirt_number": "27",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jamal Blackman"
},
{
"hash": "pKpkgR1U",
"name": "Cahill G.",
"captain": "",
"detail_link": "/player/cahill-gary/pKpkgR1U/",
"short_name": "Cahill",
"shirt_number": "24",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gary Cahill"
},
{
"hash": "2oMimkAU",
"name": "Falcao R.",
"captain": "",
"detail_link": "/player/falcao/2oMimkAU/",
"short_name": "Falcao",
"shirt_number": "9",
"country": "Colombia",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Pedro",
"linked_player_hash": "0f1tMqQl"
}
],
"lineup": null,
"starting": false,
"long_name": "Radamel Falcao"
},
{
"hash": "Crwqppk9",
"name": "Kenedy",
"captain": "",
"detail_link": "/player/kenedy/Crwqppk9/",
"short_name": "Kenedy",
"shirt_number": "16",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "55'",
"description": "Mikel J. O.",
"linked_player_hash": "8AkbVvN2"
}
],
"lineup": null,
"starting": false,
"long_name": "Kenedy"
},
{
"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": "hYsYT4nh",
"name": "Remy L.",
"captain": "",
"detail_link": "/player/remy-loic/hYsYT4nh/",
"short_name": "Remy",
"shirt_number": "18",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Loic Remy"
},
{
"hash": "GSzdOhPI",
"name": "Willian",
"captain": "",
"detail_link": "/player/willian/GSzdOhPI/",
"short_name": "Willian",
"shirt_number": "22",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Fabregas C.",
"linked_player_hash": "YXIDwoe5"
}
],
"lineup": null,
"starting": false,
"long_name": "Willian"
}
],
"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": [
"Marriner A."
],
"venue": [
"Goodison Park (Liverpool)"
],
"attendance": [
"38 311"
],
"referee_matched": [
"Andre Marriner"
],
"referee_found": [
"Andre Marriner"
],
"coach_matched": [
"Jose Mourinho",
"Roberto Martinez"
],
"gameHomeTeam": "Everton",
"home": {
"name": "Everton",
"detail_link": "/team/everton/KluSTr9s",
"hash": "KluSTr9s",
"names": [
"Everton",
"Everton (Eng)",
"everton"
]
},
"gameAwayTeam": "Chelsea",
"away": {
"name": "Chelsea",
"detail_link": "/team/chelsea/4fGZN2oK",
"hash": "4fGZN2oK",
"names": [
"Chelsea",
"chelsea"
]
},
"gameDate": "12/09/2015 - 13:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "The fans in the stadium certainly won't regret buying tickets as they witnessed a great game today. The performance of both teams was pretty much even. Both teams attempted to play possession football.",
"identified": "The fans in the stadium certainly won't regret buying tickets as they witnessed a great game today. The performance of both teams was pretty much even. Both teams attempted to play possession football.",
"anonymized": "The fans in the stadium certainly won't regret buying tickets as they witnessed a great game today. The performance of both teams was pretty much even. Both teams attempted to play possession football.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:08",
"label": "whistle",
"description": "The referee blows for the end of today's match.",
"identified": "The referee blows for the end of today's match.",
"anonymized": "The referee blows for the end of today's match.",
"visibility": "shown",
"position": "2948000"
},
{
"important": false,
"gameTime": "2 - 47:51",
"label": "",
"description": "Gareth Barry (Everton) sends a lofted pass into the penalty area from a free kick, but the opposition's defence manages to control all the attacking players and thwart the threat.",
"identified": "[PLAYER_YRmh0zV8] ([TEAM_]) sends a lofted pass into the penalty area from a free kick, but the opposition's defence manages to control all the attacking players and thwart the threat.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted pass into the penalty area from a free kick, but the opposition's defence manages to control all the attacking players and thwart the threat.",
"visibility": "shown",
"position": "2871000"
},
{
"important": true,
"gameTime": "2 - 47:13",
"label": "y-card",
"description": "Diego Costa (Chelsea) is booked after bringing down an opponent. Andre Marriner had an easy-decision to make.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"anonymized": "[PLAYER] ([TEAM]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"visibility": "shown",
"position": "2833000"
},
{
"important": false,
"gameTime": "2 - 45:55",
"label": "",
"description": "races towards goal but the defender gets back well to make a challenge.",
"identified": "races towards goal but the defender gets back well to make a challenge.",
"anonymized": "races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "2755000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"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:32",
"label": "",
"description": "John Stones (Everton) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"identified": "[PLAYER_SlLxn4xl] ([TEAM_]) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"visibility": "shown",
"position": "2612000"
},
{
"important": true,
"gameTime": "2 - 42:42",
"label": "y-card",
"description": "Cesar Azpilicueta (Chelsea) has to be very careful for the rest of the match after receiving a yellow card from the referee for a bad tackle on an opponent.",
"identified": "[PLAYER_CMGUADgt] ([TEAM_]) has to be very careful for the rest of the match after receiving a yellow card from the referee for a bad tackle on an opponent.",
"anonymized": "[PLAYER] ([TEAM]) has to be very careful for the rest of the match after receiving a yellow card from the referee for a bad tackle on an opponent.",
"visibility": "shown",
"position": "2562000"
},
{
"important": false,
"gameTime": "2 - 41:35",
"label": "",
"description": "Willian (Chelsea) attempts to find one of his teammates with a free kick, but the defence is well positioned and clears the ball away from danger.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) attempts to find one of his teammates with a free kick, but the defence is well positioned and clears the ball away from danger.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a free kick, but the defence is well positioned and clears the ball away from danger.",
"visibility": "shown",
"position": "2495000"
},
{
"important": true,
"gameTime": "2 - 41:30",
"label": "y-card",
"description": "John Stones (Everton) goes in the referee's notebook after being shown a yellow card.",
"identified": "[PLAYER_SlLxn4xl] ([TEAM_]) goes in the referee's notebook after being shown a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) goes in the referee's notebook after being shown a yellow card.",
"visibility": "shown",
"position": "2490000"
},
{
"important": false,
"gameTime": "2 - 40:46",
"label": "",
"description": "Asmir Begovic reacts well to deny a long-range free kick from James McCarthy (Everton) towards the top left corner.",
"identified": "[PLAYER_xO2Ce0IG] reacts well to deny a long-range free kick from [PLAYER_IBy588Qo] ([TEAM_]) towards the top left corner.",
"anonymized": "[PLAYER] reacts well to deny a long-range free kick from [PLAYER] ([TEAM]) towards the top left corner.",
"visibility": "shown",
"position": "2446000"
},
{
"important": false,
"gameTime": "2 - 40:09",
"label": "",
"description": "Willian (Chelsea) commits a rough challenge and Andre Marriner blows his whistle for a foul. A free kick to Everton.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) commits a rough challenge and [REFEREE] blows his whistle for a foul. A free kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) commits a rough challenge and [REFEREE] blows his whistle for a foul. A free kick to [TEAM].",
"visibility": "shown",
"position": "2409000"
},
{
"important": true,
"gameTime": "2 - 37:00",
"label": "soccer-ball",
"description": "Goal! Ross Barkley displays great vision and sends a pass to Steven Naismith (Everton), who shows brilliant composure inside the box to bury the ball into the back of the net. The score is 3:1.",
"identified": "Goal! [PLAYER_Stsozgbg] displays great vision and sends a pass to [PLAYER_tjrcdnik] ([TEAM_]), who shows brilliant composure inside the box to bury the ball into the back of the net. The score is 3:1.",
"anonymized": "Goal! [PLAYER] displays great vision and sends a pass to [PLAYER] ([TEAM]), who shows brilliant composure inside the box to bury the ball into the back of the net. The score is 3:1.",
"visibility": "shown",
"position": "2220000"
},
{
"important": false,
"gameTime": "2 - 35:11",
"label": "corner",
"description": "Willian (Chelsea) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play. The ball goes out of play and Everton will have a goal kick.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2111000"
},
{
"important": false,
"gameTime": "2 - 34:53",
"label": "",
"description": "Nemanja Matic (Chelsea) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender. Chelsea force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass inside the box and unleashes a shot which is brilliantly blocked by a defender. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "2093000"
},
{
"important": false,
"gameTime": "2 - 33:24",
"label": "corner",
"description": "Willian (Chelsea) takes the corner, but one of the defenders reacts well and rises highest to head the ball away.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) takes the corner, but one of the defenders reacts well and rises highest to head the ball away.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but one of the defenders reacts well and rises highest to head the ball away.",
"visibility": "shown",
"position": "2004000"
},
{
"important": false,
"gameTime": "2 - 33:10",
"label": "",
"description": "Willian (Chelsea) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The linesman points to the corner flag, Chelsea are going to take it.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The linesman points to the corner flag, [TEAM_] are going to take it.",
"anonymized": "[PLAYER] ([TEAM]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "1990000"
},
{
"important": false,
"gameTime": "2 - 32:46",
"label": "",
"description": "Willian (Chelsea) displays his superb passing ability after picking out Eden Hazard with a fine lofted pass to continue their attacking move.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) displays his superb passing ability after picking out [PLAYER_QH2of5sJ] with a fine lofted pass to continue their attacking move.",
"anonymized": "[PLAYER] ([TEAM]) displays his superb passing ability after picking out [PLAYER] with a fine lofted pass to continue their attacking move.",
"visibility": "shown",
"position": "1966000"
},
{
"important": false,
"gameTime": "2 - 32:16",
"label": "",
"description": "A cross from Willian (Chelsea) fails to reach the box as the defence clears the ball away to safety.",
"identified": "A cross from [PLAYER_GSzdOhPI] ([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": "1936000"
},
{
"important": true,
"gameTime": "2 - 31:39",
"label": "substitution",
"description": "Seamus Coleman is substituted due to injury. Roberto Martinez gives a chance to Ramiro Mori (Everton).",
"identified": "[PLAYER_zq8Uz4Ed] is substituted due to injury. [COACH_vVKL1ADJ] gives a chance to [PLAYER_bwISPvDT] ([TEAM_]).",
"anonymized": "[PLAYER] is substituted due to injury. [COACH] gives a chance to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1899000"
},
{
"important": false,
"gameTime": "2 - 30:08",
"label": "injury",
"description": "Seamus Coleman (Everton) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_zq8Uz4Ed] ([TEAM_]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"anonymized": "[PLAYER] ([TEAM]) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"visibility": "shown",
"position": "1808000"
},
{
"important": false,
"gameTime": "2 - 29:40",
"label": "",
"description": "Aaron Lennon (Everton) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"identified": "[PLAYER_WGObx1iE] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"visibility": "shown",
"position": "1780000"
},
{
"important": true,
"gameTime": "2 - 29:00",
"label": "substitution",
"description": "Here is a change. Cesc Fabregas is going off and Jose Mourinho gives the last tactical orders to Willian (Chelsea).",
"identified": "Here is a change. [PLAYER_YXIDwoe5] is going off and [COACH_AwXQwGFe] gives the last tactical orders to [PLAYER_GSzdOhPI] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1740000"
},
{
"important": false,
"gameTime": "2 - 28:36",
"label": "",
"description": "Seamus Coleman (Everton) is disappointed with himself because he got into a good area but produced a poor cross. The linesman signals a throw-in for Chelsea.",
"identified": "[PLAYER_zq8Uz4Ed] ([TEAM_]) is disappointed with himself because he got into a good area but produced a poor cross. The linesman signals a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) is disappointed with himself because he got into a good area but produced a poor cross. The linesman signals a throw-in for [TEAM].",
"visibility": "shown",
"position": "1716000"
},
{
"important": true,
"gameTime": "2 - 26:34",
"label": "substitution",
"description": "A substitution has been made. Arouna Kone is replaced by Aaron Lennon (Everton).",
"identified": "A substitution has been made. [PLAYER_Ovczyzc4] is replaced by [PLAYER_WGObx1iE] ([TEAM_]).",
"anonymized": "A substitution has been made. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1594000"
},
{
"important": false,
"gameTime": "2 - 25:55",
"label": "",
"description": "A precise low pass is received by Romelu Lukaku (Everton), who makes a yard for himself on the edge of the box, but his poorly placed shot sails well wide of the right post.",
"identified": "A precise low pass is received by [PLAYER_dCkG0Iw0] ([TEAM_]), who makes a yard for himself on the edge of the box, but his poorly placed shot sails well wide of the right post.",
"anonymized": "A precise low pass is received by [PLAYER] ([TEAM]), who makes a yard for himself on the edge of the box, but his poorly placed shot sails well wide of the right post.",
"visibility": "shown",
"position": "1555000"
},
{
"important": false,
"gameTime": "2 - 25:32",
"label": "corner",
"description": "Nemanja Matic (Chelsea) fails to deliver a decent cross from the corner and the ball goes out of play.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) fails to deliver a decent cross from the corner and the ball goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) fails to deliver a decent cross from the corner and the ball goes out of play.",
"visibility": "shown",
"position": "1532000"
},
{
"important": false,
"gameTime": "2 - 24:59",
"label": "",
"description": "Diego Costa (Chelsea) races towards goal but the defender gets back well to make a challenge. The ball is out of play and Chelsea manage to earn a corner.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "1499000"
},
{
"important": false,
"gameTime": "2 - 24:32",
"label": "corner",
"description": "This corner kick is taken with a short pass by Ross Barkley (Everton).",
"identified": "This corner kick is taken with a short pass by [PLAYER_Stsozgbg] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1472000"
},
{
"important": true,
"gameTime": "2 - 24:21",
"label": "substitution",
"description": "That will be all from Pedro who is being replaced by the fresh legs of Falcao (Chelsea).",
"identified": "That will be all from [PLAYER_0f1tMqQl] who is being replaced by the fresh legs of [PLAYER_2oMimkAU] ([TEAM_]).",
"anonymized": "That will be all from [PLAYER] who is being replaced by the fresh legs of [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1461000"
},
{
"important": false,
"gameTime": "2 - 23:47",
"label": "",
"description": "Another attempt to send the ball beyond the defence by Steven Naismith (Everton) is thwarted and cleared to safety. The referee points to the corner flag. It's a corner to Everton.",
"identified": "Another attempt to send the ball beyond the defence by [PLAYER_tjrcdnik] ([TEAM_]) is thwarted and cleared to safety. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "Another attempt to send the ball beyond the defence by [PLAYER] ([TEAM]) is thwarted and cleared to safety. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "1427000"
},
{
"important": false,
"gameTime": "2 - 23:14",
"label": "corner",
"description": "Ross Barkley (Everton) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"identified": "[PLAYER_Stsozgbg] ([TEAM_]) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"anonymized": "[PLAYER] ([TEAM]) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"visibility": "shown",
"position": "1394000"
},
{
"important": false,
"gameTime": "2 - 22:58",
"label": "",
"description": "Romelu Lukaku (Everton) looks to break free, but an opposing player clears the ball away. Everton force their opponents to concede a corner.",
"identified": "[PLAYER_dCkG0Iw0] ([TEAM_]) looks to break free, but an opposing player clears the ball away. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "1378000"
},
{
"important": false,
"gameTime": "2 - 22:36",
"label": "",
"description": "Asmir Begovic can hear the fans clapping for his superb goalkeeping after he magnificently stops the close-range effort from Romelu Lukaku (Everton). The ball would have probably ended up in the bottom left corner.",
"identified": "[PLAYER_xO2Ce0IG] can hear the fans clapping for his superb goalkeeping after he magnificently stops the close-range effort from [PLAYER_dCkG0Iw0] ([TEAM_]). The ball would have probably ended up in the bottom left corner.",
"anonymized": "[PLAYER] can hear the fans clapping for his superb goalkeeping after he magnificently stops the close-range effort from [PLAYER] ([TEAM]). The ball would have probably ended up in the bottom left corner.",
"visibility": "shown",
"position": "1356000"
},
{
"important": false,
"gameTime": "2 - 22:15",
"label": "corner",
"description": "Ross Barkley (Everton) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"identified": "[PLAYER_Stsozgbg] ([TEAM_]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"anonymized": "[PLAYER] ([TEAM]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"visibility": "shown",
"position": "1335000"
},
{
"important": false,
"gameTime": "2 - 21:51",
"label": "",
"description": "Steven Naismith (Everton) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The linesman makes the right call and Everton will have a corner.",
"identified": "[PLAYER_tjrcdnik] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "1311000"
},
{
"important": false,
"gameTime": "2 - 20:10",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) goes over to take the corner kick and it looks like he will send the ball into the penalty box.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) goes over to take the corner kick and it looks like he will send the ball into the penalty box.",
"anonymized": "[PLAYER] ([TEAM]) goes over to take the corner kick and it looks like he will send the ball into the penalty box.",
"visibility": "shown",
"position": "1210000"
},
{
"important": true,
"gameTime": "2 - 19:55",
"label": "y-card",
"description": "Brendan Galloway (Everton) is cautioned by the referee for a foul that he committed a little earlier.",
"identified": "[PLAYER_8EIQQCI5] ([TEAM_]) is cautioned by the referee for a foul that he committed a little earlier.",
"anonymized": "[PLAYER] ([TEAM]) is cautioned by the referee for a foul that he committed a little earlier.",
"visibility": "shown",
"position": "1195000"
},
{
"important": false,
"gameTime": "2 - 19:21",
"label": "",
"description": "Cesc Fabregas (Chelsea) serves up a nice cross, but Tim Howard punches the ball away. Chelsea will take a corner kick.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) serves up a nice cross, but [PLAYER_SxNK5vu3] punches the ball away. [TEAM_] will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but [PLAYER] punches the ball away. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "1161000"
},
{
"important": false,
"gameTime": "2 - 18:13",
"label": "",
"description": "Arouna Kone (Everton) shoots from the edge of the penalty area. The ball travels towards the target, but Asmir Begovic easily deals with the threat.",
"identified": "[PLAYER_Ovczyzc4] ([TEAM_]) shoots from the edge of the penalty area. The ball travels towards the target, but [PLAYER_xO2Ce0IG] easily deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) shoots from the edge of the penalty area. The ball travels towards the target, but [PLAYER] easily deals with the threat.",
"visibility": "shown",
"position": "1093000"
},
{
"important": false,
"gameTime": "2 - 16:19",
"label": "",
"description": "Close! Romelu Lukaku (Everton) picks up the ball in space and from inside the penalty area sends a shot inches wide of the right post.",
"identified": "Close! [PLAYER_dCkG0Iw0] ([TEAM_]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the right post.",
"anonymized": "Close! [PLAYER] ([TEAM]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the right post.",
"visibility": "shown",
"position": "979000"
},
{
"important": false,
"gameTime": "2 - 14:26",
"label": "",
"description": "fires the ball on goal, but his attempt goes well wide of the left post.",
"identified": "fires the ball on goal, but his attempt goes well wide of the left post.",
"anonymized": "fires the ball on goal, but his attempt goes well wide of the left post.",
"visibility": "shown",
"position": "866000"
},
{
"important": false,
"gameTime": "2 - 13:51",
"label": "",
"description": "Cesc Fabregas (Chelsea) shows his brilliant passing ability after picking out Branislav Ivanovic with a fine lofted pass.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) shows his brilliant passing ability after picking out [PLAYER_Qe3xUmHo] with a fine lofted pass.",
"anonymized": "[PLAYER] ([TEAM]) shows his brilliant passing ability after picking out [PLAYER] with a fine lofted pass.",
"visibility": "shown",
"position": "831000"
},
{
"important": false,
"gameTime": "2 - 12:44",
"label": "",
"description": "Great touch by Romelu Lukaku (Everton) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"identified": "Great touch by [PLAYER_dCkG0Iw0] ([TEAM_]) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"anonymized": "Great touch by [PLAYER] ([TEAM]) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"visibility": "shown",
"position": "764000"
},
{
"important": false,
"gameTime": "2 - 11:32",
"label": "",
"description": "Ross Barkley (Everton) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_Stsozgbg] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"visibility": "shown",
"position": "692000"
},
{
"important": true,
"gameTime": "2 - 10:00",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Kenedy (Chelsea) will replace John Obi Mikel.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_Crwqppk9] ([TEAM_]) will replace [PLAYER_8AkbVvN2].",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) will replace [PLAYER].",
"visibility": "shown",
"position": "600000"
},
{
"important": false,
"gameTime": "2 - 10:00",
"label": "",
"description": "John Stones (Everton) finds enough space to climb high and plants a header way over the bar. What a poor effort.",
"identified": "[PLAYER_SlLxn4xl] ([TEAM_]) finds enough space to climb high and plants a header way over the bar. What a poor effort.",
"anonymized": "[PLAYER] ([TEAM]) finds enough space to climb high and plants a header way over the bar. What a poor effort.",
"visibility": "shown",
"position": "600000"
},
{
"important": false,
"gameTime": "2 - 09:36",
"label": "corner",
"description": "Ross Barkley (Everton) will take the corner.",
"identified": "[PLAYER_Stsozgbg] ([TEAM_]) will take the corner.",
"anonymized": "[PLAYER] ([TEAM]) will take the corner.",
"visibility": "shown",
"position": "576000"
},
{
"important": false,
"gameTime": "2 - 09:10",
"label": "",
"description": "Seamus Coleman (Everton) races towards goal but the defender gets back well to make a challenge. The referee blows his whistle, Everton are awarded a corner kick.",
"identified": "[PLAYER_zq8Uz4Ed] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "550000"
},
{
"important": false,
"gameTime": "2 - 07:54",
"label": "",
"description": "Kurt Zouma (Chelsea) is moving okay again after that injury scare.",
"identified": "[PLAYER_SKosf7jl] ([TEAM_]) is moving okay again after that injury scare.",
"anonymized": "[PLAYER] ([TEAM]) is moving okay again after that injury scare.",
"visibility": "shown",
"position": "474000"
},
{
"important": false,
"gameTime": "2 - 06:12",
"label": "injury",
"description": "Kurt Zouma (Chelsea) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_SKosf7jl] ([TEAM_]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"anonymized": "[PLAYER] ([TEAM]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"visibility": "shown",
"position": "372000"
},
{
"important": false,
"gameTime": "2 - 05:49",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) swings in the corner, but it's comfortably cleared away.",
"identified": "[PLAYER_YXIDwoe5] ([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": "349000"
},
{
"important": false,
"gameTime": "2 - 05:36",
"label": "",
"description": "Diego Costa (Chelsea) tries to send a pass but it's blocked. The ball goes out of play. Chelsea are awarded a corner kick.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) tries to send a pass but it's blocked. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "336000"
},
{
"important": false,
"gameTime": "2 - 04:36",
"label": "",
"description": "Diego Costa (Chelsea) releases Eden Hazard, who latched on to his perfect through pass and can continue with his team's attack.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) releases [PLAYER_QH2of5sJ], who latched on to his perfect through pass and can continue with his team's attack.",
"anonymized": "[PLAYER] ([TEAM]) releases [PLAYER], who latched on to his perfect through pass and can continue with his team's attack.",
"visibility": "shown",
"position": "276000"
},
{
"important": false,
"gameTime": "2 - 02:50",
"label": "",
"description": "Brendan Galloway (Everton) fouls an opponent. At least that's what referee Andre Marriner signals.",
"identified": "[PLAYER_8EIQQCI5] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"visibility": "shown",
"position": "170000"
},
{
"important": false,
"gameTime": "2 - 02:09",
"label": "",
"description": "Cesc Fabregas (Chelsea) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) delivers a lovely cross into the penalty area. Nevertheless, an opposition defender is alert and averts the danger with a brilliant clearance.",
"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.",
"visibility": "shown",
"position": "129000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The second half gets underway.",
"identified": "The second half gets underway.",
"anonymized": "The second half gets underway.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 47:59",
"label": "",
"description": "Up to now it has been an action-packed game full of wonderful movements and opportunities. In terms of the overall play, the match has been fairly even so far. Both sides are using combination football to try and gain the upper hand.",
"identified": "Up to now it has been an action-packed game full of wonderful movements and opportunities. In terms of the overall play, the match has been fairly even so far. Both sides are using combination football to try and gain the upper hand.",
"anonymized": "Up to now it has been an action-packed game full of wonderful movements and opportunities. In terms of the overall play, the match has been fairly even so far. Both sides are using combination football to try and gain the upper hand.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "1 - 47:27",
"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": "2847000"
},
{
"important": false,
"gameTime": "1 - 46:55",
"label": "",
"description": "Seamus Coleman (Everton) had a good opportunity when he latched on to a cross from the wing, but his header wasn't accurate at all and the ball went well wide of the right post.",
"identified": "[PLAYER_zq8Uz4Ed] ([TEAM_]) had a good opportunity when he latched on to a cross from the wing, but his header wasn't accurate at all and the ball went well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) had a good opportunity when he latched on to a cross from the wing, but his header wasn't accurate at all and the ball went well wide of the right post.",
"visibility": "shown",
"position": "2815000"
},
{
"important": false,
"gameTime": "1 - 46:26",
"label": "",
"description": "Steven Naismith latches onto a perfect defence-splitting pass from Romelu Lukaku (Everton) and heads towards goal.",
"identified": "[PLAYER_tjrcdnik] latches onto a perfect defence-splitting pass from [PLAYER_dCkG0Iw0] ([TEAM_]) and heads towards goal.",
"anonymized": "[PLAYER] latches onto a perfect defence-splitting pass from [PLAYER] ([TEAM]) and heads towards goal.",
"visibility": "shown",
"position": "2786000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "2 min. of stoppage-time to be played.",
"identified": "2 min. of stoppage-time to be played.",
"anonymized": "2 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:46",
"label": "",
"description": "Eden Hazard passes to Pedro (Chelsea), but he produces a wild shot from the edge of the box which goes high over the bar.",
"identified": "[PLAYER_QH2of5sJ] passes to [PLAYER_0f1tMqQl] ([TEAM_]), but he produces a wild shot from the edge of the box which goes high over the bar.",
"anonymized": "[PLAYER] passes to [PLAYER] ([TEAM]), but he produces a wild shot from the edge of the box which goes high over the bar.",
"visibility": "shown",
"position": "2686000"
},
{
"important": false,
"gameTime": "1 - 43:25",
"label": "",
"description": "Cesc Fabregas (Chelsea) threads a pass through to Diego Costa, but Tim Howard breaks up the move.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) threads a pass through to [PLAYER_vBw5nir8], but [PLAYER_SxNK5vu3] breaks up the move.",
"anonymized": "[PLAYER] ([TEAM]) threads a pass through to [PLAYER], but [PLAYER] breaks up the move.",
"visibility": "shown",
"position": "2605000"
},
{
"important": false,
"gameTime": "1 - 42:23",
"label": "",
"description": "Eden Hazard (Chelsea) smashes the ball towards goal, but his effort fails to threaten the goalkeeper after going way off target.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) smashes the ball towards goal, but his effort fails to threaten the goalkeeper after going way off target.",
"anonymized": "[PLAYER] ([TEAM]) smashes the ball towards goal, but his effort fails to threaten the goalkeeper after going way off target.",
"visibility": "shown",
"position": "2543000"
},
{
"important": false,
"gameTime": "1 - 42:10",
"label": "corner",
"description": "The resulting corner from Cesc Fabregas (Chelsea) is cleared by the defence.",
"identified": "The resulting corner from [PLAYER_YXIDwoe5] ([TEAM_]) is cleared by the defence.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared by the defence.",
"visibility": "shown",
"position": "2530000"
},
{
"important": false,
"gameTime": "1 - 41:40",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear. Corner kick. Chelsea will have an opportunity.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "2500000"
},
{
"important": false,
"gameTime": "1 - 41:17",
"label": "",
"description": "Diego Costa (Chelsea) gets on the end of a pass on the edge of the box but his shot is blocked. The ball goes behind for a corner. Chelsea will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) gets on the end of a pass on the edge of the box but his shot is blocked. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass on the edge of the box but his shot is blocked. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2477000"
},
{
"important": false,
"gameTime": "1 - 40:17",
"label": "corner",
"description": "The resulting corner from Pedro (Chelsea) is cleared.",
"identified": "The resulting corner from [PLAYER_0f1tMqQl] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "2417000"
},
{
"important": false,
"gameTime": "1 - 39:51",
"label": "",
"description": "Nemanja Matic (Chelsea) creates a yard of space for himself and tries an effort from distance, but it's blocked. Chelsea get a corner.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) creates a yard of space for himself and tries an effort from distance, but it's blocked. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) creates a yard of space for himself and tries an effort from distance, but it's blocked. [TEAM] get a corner.",
"visibility": "shown",
"position": "2391000"
},
{
"important": false,
"gameTime": "1 - 38:15",
"label": "",
"description": "What a chance that is! Eden Hazard swings the ball into the box, and John Terry (Chelsea) gets in front of his man and powers his header just over the bar.",
"identified": "What a chance that is! [PLAYER_QH2of5sJ] swings the ball into the box, and [PLAYER_0AovoI68] ([TEAM_]) gets in front of his man and powers his header just over the bar.",
"anonymized": "What a chance that is! [PLAYER] swings the ball into the box, and [PLAYER] ([TEAM]) gets in front of his man and powers his header just over the bar.",
"visibility": "shown",
"position": "2295000"
},
{
"important": false,
"gameTime": "1 - 38:08",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) works the corner short.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) works the corner short.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short.",
"visibility": "shown",
"position": "2288000"
},
{
"important": false,
"gameTime": "1 - 37:46",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) takes the corner but it's cleared. The ball goes out for a corner. Chelsea can continue in their attacking effort.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) takes the corner but it's cleared. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but it's cleared. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "2266000"
},
{
"important": false,
"gameTime": "1 - 37:36",
"label": "",
"description": "Eden Hazard (Chelsea) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players. The ball is out of play and the linesman points at the corner flag. Corner to Chelsea.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) finds himself free inside the box and pulls the trigger, but his effort is brilliantly stopped by one of the defending players. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "2256000"
},
{
"important": true,
"gameTime": "1 - 35:26",
"label": "soccer-ball",
"description": "Nice piece of skill by Nemanja Matic (Chelsea). He perfectly collected a pass from John Obi Mikel, then unleashed a fantastic long-range strike which went inside the left post. The score is 2:1.",
"identified": "Nice piece of skill by [PLAYER_Kty10JVG] ([TEAM_]). He perfectly collected a pass from [PLAYER_8AkbVvN2], then unleashed a fantastic long-range strike which went inside the left post. The score is 2:1.",
"anonymized": "Nice piece of skill by [PLAYER] ([TEAM]). He perfectly collected a pass from [PLAYER], then unleashed a fantastic long-range strike which went inside the left post. The score is 2:1.",
"visibility": "shown",
"position": "2126000"
},
{
"important": false,
"gameTime": "1 - 34:03",
"label": "",
"description": "Steven Naismith (Everton) commits a foul and Andre Marriner immediately signals a free kick.",
"identified": "[PLAYER_tjrcdnik] ([TEAM_]) commits a foul and [REFEREE] immediately signals a free kick.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul and [REFEREE] immediately signals a free kick.",
"visibility": "shown",
"position": "2043000"
},
{
"important": false,
"gameTime": "1 - 33:23",
"label": "",
"description": "Ross Barkley (Everton) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"identified": "[PLAYER_Stsozgbg] ([TEAM_]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"visibility": "shown",
"position": "2003000"
},
{
"important": false,
"gameTime": "1 - 32:50",
"label": "",
"description": "Diego Costa (Chelsea) sends a cross into the box, but Tim Howard comes off his line to gather the ball.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) sends a cross into the box, but [PLAYER_SxNK5vu3] comes off his line to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but [PLAYER] comes off his line to gather the ball.",
"visibility": "shown",
"position": "1970000"
},
{
"important": false,
"gameTime": "1 - 32:09",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) takes the corner which is cleared by the opposition's defence.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) takes the corner which is cleared by the opposition's defence.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared by the opposition's defence.",
"visibility": "shown",
"position": "1929000"
},
{
"important": false,
"gameTime": "1 - 31:57",
"label": "",
"description": "A lofted cross from Branislav Ivanovic (Chelsea) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. The referee and one of his assistants signal for a corner kick to Chelsea.",
"identified": "A lofted cross from [PLAYER_Qe3xUmHo] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "A lofted cross from [PLAYER] ([TEAM]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "1917000"
},
{
"important": false,
"gameTime": "1 - 30:59",
"label": "",
"description": "John Obi Mikel (Chelsea) smashes the ball upfield and Diego Costa controls it with a great first touch.",
"identified": "[PLAYER_8AkbVvN2] ([TEAM_]) smashes the ball upfield and [PLAYER_vBw5nir8] controls it with a great first touch.",
"anonymized": "[PLAYER] ([TEAM]) smashes the ball upfield and [PLAYER] controls it with a great first touch.",
"visibility": "shown",
"position": "1859000"
},
{
"important": false,
"gameTime": "1 - 29:53",
"label": "",
"description": "Branislav Ivanovic (Chelsea) was trying to get to the ball but clattered into the legs of the opponent as well. Andre Marriner blows his whistle for an infringement.",
"identified": "[PLAYER_Qe3xUmHo] ([TEAM_]) was trying to get to the ball but clattered into the legs of the opponent as well. [REFEREE] blows his whistle for an infringement.",
"anonymized": "[PLAYER] ([TEAM]) was trying to get to the ball but clattered into the legs of the opponent as well. [REFEREE] blows his whistle for an infringement.",
"visibility": "shown",
"position": "1793000"
},
{
"important": false,
"gameTime": "1 - 28:19",
"label": "",
"description": "The ball is cleared after Branislav Ivanovic (Chelsea) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_Qe3xUmHo] ([TEAM_]) attempted to dribble past an opposing player.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player.",
"visibility": "shown",
"position": "1699000"
},
{
"important": false,
"gameTime": "1 - 27:00",
"label": "",
"description": "Nemanja Matic (Chelsea) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort.",
"anonymized": "[PLAYER] ([TEAM]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort.",
"visibility": "shown",
"position": "1620000"
},
{
"important": false,
"gameTime": "1 - 26:50",
"label": "corner",
"description": "Nemanja Matic (Chelsea) takes the corner with a short pass.",
"identified": "[PLAYER_Kty10JVG] ([TEAM_]) takes the corner with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner with a short pass.",
"visibility": "shown",
"position": "1610000"
},
{
"important": false,
"gameTime": "1 - 26:40",
"label": "",
"description": "Chelsea are just stroking the ball across the park now, but the defence is doing very well breaking up their possession. The referee and his assistant both point at the corner flag. Chelsea will have an opportunity to threaten the opposition's goal.",
"identified": "[TEAM_] are just stroking the ball across the park now, but the defence is doing very well breaking up their possession. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[TEAM] are just stroking the ball across the park now, but the defence is doing very well breaking up their possession. The referee and his assistant both point at the corner flag. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1600000"
},
{
"important": false,
"gameTime": "1 - 26:37",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) takes the corner but fails to find any of his teammates as he overhits the effort.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) takes the corner but fails to find any of his teammates as he overhits the effort.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates as he overhits the effort.",
"visibility": "shown",
"position": "1597000"
},
{
"important": false,
"gameTime": "1 - 25:50",
"label": "",
"description": "What a goal-scoring opportunity! Cesar Azpilicueta (Chelsea) finds some space inside the box and gets in a strike, but the shot is brilliantly blocked by one of the defending players sliding in. The referee points to the corner flag and Chelsea will take a corner.",
"identified": "What a goal-scoring opportunity! [PLAYER_CMGUADgt] ([TEAM_]) finds some space inside the box and gets in a strike, but the shot is brilliantly blocked by one of the defending players sliding in. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "What a goal-scoring opportunity! [PLAYER] ([TEAM]) finds some space inside the box and gets in a strike, but the shot is brilliantly blocked by one of the defending players sliding in. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "1550000"
},
{
"important": true,
"gameTime": "1 - 21:28",
"label": "soccer-ball",
"description": "Goal - 2:0! Steven Naismith (Everton) gets a shot away from the edge of the box and scores into the bottom right corner. Ross Barkley provided an assist for the goal.",
"identified": "Goal - 2:0! [PLAYER_tjrcdnik] ([TEAM_]) gets a shot away from the edge of the box and scores into the bottom right corner. [PLAYER_Stsozgbg] provided an assist for the goal.",
"anonymized": "Goal - 2:0! [PLAYER] ([TEAM]) gets a shot away from the edge of the box and scores into the bottom right corner. [PLAYER] provided an assist for the goal.",
"visibility": "shown",
"position": "1288000"
},
{
"important": false,
"gameTime": "1 - 20:48",
"label": "corner",
"description": "Ross Barkley (Everton) launches an inaccurate corner kick into the penalty area.",
"identified": "[PLAYER_Stsozgbg] ([TEAM_]) launches an inaccurate corner kick into the penalty area.",
"anonymized": "[PLAYER] ([TEAM]) launches an inaccurate corner kick into the penalty area.",
"visibility": "shown",
"position": "1248000"
},
{
"important": false,
"gameTime": "1 - 20:15",
"label": "",
"description": "James McCarthy (Everton) takes the ball on and fires in a shot from 20 metres out. Asmir Begovic stops the effort which is headed to the left post. Now Everton have a corner.",
"identified": "[PLAYER_IBy588Qo] ([TEAM_]) takes the ball on and fires in a shot from 20 metres out. [PLAYER_xO2Ce0IG] stops the effort which is headed to the left post. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the ball on and fires in a shot from 20 metres out. [PLAYER] stops the effort which is headed to the left post. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "1215000"
},
{
"important": false,
"gameTime": "1 - 19:29",
"label": "corner",
"description": "Ross Barkley (Everton) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"identified": "[PLAYER_Stsozgbg] ([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": "1169000"
},
{
"important": true,
"gameTime": "1 - 18:52",
"label": "",
"description": "A brilliant cross into the box finds Arouna Kone (Everton), who directs his header towards the left post, but the goalkeeper shows all his agility and makes an astonishing save. Everton earn a corner.",
"identified": "A brilliant cross into the box finds [PLAYER_Ovczyzc4] ([TEAM_]), who directs his header towards the left post, but the goalkeeper shows all his agility and makes an astonishing save. [TEAM_] earn a corner.",
"anonymized": "A brilliant cross into the box finds [PLAYER] ([TEAM]), who directs his header towards the left post, but the goalkeeper shows all his agility and makes an astonishing save. [TEAM] earn a corner.",
"visibility": "shown",
"position": "1132000"
},
{
"important": false,
"gameTime": "1 - 18:01",
"label": "",
"description": "Brendan Galloway (Everton) plays a terrific long ball forward to Steven Naismith, but he can't beat his man and the move breaks down.",
"identified": "[PLAYER_8EIQQCI5] ([TEAM_]) plays a terrific long ball forward to [PLAYER_tjrcdnik], but he can't beat his man and the move breaks down.",
"anonymized": "[PLAYER] ([TEAM]) plays a terrific long ball forward to [PLAYER], but he can't beat his man and the move breaks down.",
"visibility": "shown",
"position": "1081000"
},
{
"important": true,
"gameTime": "1 - 16:34",
"label": "soccer-ball",
"description": "It's a goal! Steven Naismith (Everton) makes it 1:0. He jumped highest to connect with a perfect cross from Brendan Galloway and planted his close-range header into the top right corner. Asmir Begovic was helpless.",
"identified": "It's a goal! [PLAYER_tjrcdnik] ([TEAM_]) makes it 1:0. He jumped highest to connect with a perfect cross from [PLAYER_8EIQQCI5] and planted his close-range header into the top right corner. [PLAYER_xO2Ce0IG] was helpless.",
"anonymized": "It's a goal! [PLAYER] ([TEAM]) makes it 1:0. He jumped highest to connect with a perfect cross from [PLAYER] and planted his close-range header into the top right corner. [PLAYER] was helpless.",
"visibility": "shown",
"position": "994000"
},
{
"important": false,
"gameTime": "1 - 15:14",
"label": "",
"description": "Diego Costa makes a nice run and receives a pin-point long through ball from Eden Hazard (Chelsea). It would probably have put him one-on-one with the keeper, but one of the defenders makes a great block.",
"identified": "[PLAYER_vBw5nir8] makes a nice run and receives a pin-point long through ball from [PLAYER_QH2of5sJ] ([TEAM_]). It would probably have put him one-on-one with the keeper, but one of the defenders makes a great block.",
"anonymized": "[PLAYER] makes a nice run and receives a pin-point long through ball from [PLAYER] ([TEAM]). It would probably have put him one-on-one with the keeper, but one of the defenders makes a great block.",
"visibility": "shown",
"position": "914000"
},
{
"important": false,
"gameTime": "1 - 14:18",
"label": "",
"description": "Arouna Kone (Everton) attempts to find Steven Naismith, but puts far too much on the pass and the chance is gone.",
"identified": "[PLAYER_Ovczyzc4] ([TEAM_]) attempts to find [PLAYER_tjrcdnik], but puts far too much on the pass and the chance is gone.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find [PLAYER], but puts far too much on the pass and the chance is gone.",
"visibility": "shown",
"position": "858000"
},
{
"important": false,
"gameTime": "1 - 13:19",
"label": "",
"description": "Eden Hazard (Chelsea) and Pedro 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_QH2of5sJ] ([TEAM_]) and [PLAYER_0f1tMqQl] 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": "799000"
},
{
"important": false,
"gameTime": "1 - 11:26",
"label": "",
"description": "Seamus Coleman (Everton) clips a neat ball into the box in the direction of Steven Naismith, but he can't get on the end of the pass. The ball goes out of play and Chelsea will have a goal kick.",
"identified": "[PLAYER_zq8Uz4Ed] ([TEAM_]) clips a neat ball into the box in the direction of [PLAYER_tjrcdnik], but he can't get on the end of the pass. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) clips a neat ball into the box in the direction of [PLAYER], but he can't get on the end of the pass. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "686000"
}
]
} |