File size: 97,057 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 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 |
{
"timestamp": "1448394300",
"score": "0 - 4",
"round": "5",
"teams": [
"Maccabi Tel Aviv",
"Chelsea"
],
"lineup": {
"home": {
"tactic": "1-4-3-2-1",
"players": [
{
"hash": "6k7x54LR",
"name": "Alberman G.",
"captain": "",
"detail_link": "/player/alberman-gal/6k7x54LR/",
"short_name": "Alberman",
"shirt_number": "6",
"country": "Israel",
"facts": [
{
"type": "6",
"time": "85'",
"description": "Azulay Shlomy Y.",
"linked_player_hash": "WYj9DJ7J"
}
],
"lineup": 7,
"starting": true,
"long_name": "Gal Alberman"
},
{
"hash": "8SpJMfae",
"name": "Ben Haim T.",
"captain": "",
"detail_link": "/player/ben-haim-tal/8SpJMfae/",
"short_name": "Ben Haim",
"shirt_number": "26",
"country": "Israel",
"facts": [
{
"type": "2",
"time": "41' Ben Haim T. (Tripping)",
"description": "Red Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Tal Ben Haim"
},
{
"hash": "bNGAPwBJ",
"name": "Ben Haim T. II.",
"captain": "",
"detail_link": "/player/ben-haim-ii-tal/bNGAPwBJ/",
"short_name": "Ben Haim II.",
"shirt_number": "11",
"country": "Israel",
"facts": [
{
"type": "6",
"time": "80'",
"description": "Ben Basat E.",
"linked_player_hash": "GAiGlfit"
}
],
"lineup": 9,
"starting": true,
"long_name": "Tal Ben Haim II."
},
{
"hash": "j31zIqVd",
"name": "Ben Harush O.",
"captain": "",
"detail_link": "/player/ben-harush-omri/j31zIqVd/",
"short_name": "Ben Harush",
"shirt_number": "20",
"country": "Israel",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Omri Ben Harush"
},
{
"hash": "UwUiqD0a",
"name": "Dasa E.",
"captain": "",
"detail_link": "/player/dasa-elazar/UwUiqD0a/",
"short_name": "Dasa",
"shirt_number": "2",
"country": "Israel",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Eli Dasa"
},
{
"hash": "x8leIGfB",
"name": "Garcia C.",
"captain": "",
"detail_link": "/player/garcia-carlos/x8leIGfB/",
"short_name": "Garcia",
"shirt_number": "31",
"country": "Spain",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Carlos Garcia"
},
{
"hash": "UkZpcQXE",
"name": "Igiebor N.",
"captain": "",
"detail_link": "/player/igiebor-nosa/UkZpcQXE/",
"short_name": "Igiebor",
"shirt_number": "40",
"country": "Nigeria",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Nosa Igiebor"
},
{
"hash": "M7qIc3lc",
"name": "Peretz D.",
"captain": "",
"detail_link": "/player/peretz-dor/M7qIc3lc/",
"short_name": "Peretz",
"shirt_number": "42",
"country": "Israel",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Dor Peretz"
},
{
"hash": "tSMzkEdC",
"name": "Rajkovic P.",
"captain": "",
"detail_link": "/player/rajkovic-predrag/tSMzkEdC/",
"short_name": "Rajkovic",
"shirt_number": "95",
"country": "Serbia",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Predrag Rajkovic"
},
{
"hash": "2s9LzQjD",
"name": "Rikan A.",
"captain": "",
"detail_link": "/player/rikan-avi/2s9LzQjD/",
"short_name": "Rikan",
"shirt_number": "22",
"country": "Israel",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Avi Rikan"
},
{
"hash": "UmW7stEd",
"name": "Zahavi E.",
"captain": "(C)",
"detail_link": "/player/zahavi-eran/UmW7stEd/",
"short_name": "Zahavi",
"shirt_number": "7",
"country": "Israel",
"facts": [
{
"type": "6",
"time": "89'",
"description": "Itzhaki B.",
"linked_player_hash": "6Tw560ma"
}
],
"lineup": 11,
"starting": true,
"long_name": "Eran Zahavi"
},
{
"hash": "WYj9DJ7J",
"name": "Azulay Shlomy Y.",
"captain": "",
"detail_link": "/player/azulay-shlomy-yosef/WYj9DJ7J/",
"short_name": "Azulay Shlomy",
"shirt_number": "16",
"country": "Israel",
"facts": [
{
"type": "7",
"time": "85'",
"description": "Alberman G.",
"linked_player_hash": "6k7x54LR"
}
],
"lineup": null,
"starting": false,
"long_name": "Yosef Azulay Shlomy"
},
{
"hash": "GAiGlfit",
"name": "Ben Basat E.",
"captain": "",
"detail_link": "/player/ben-basat-eden/GAiGlfit/",
"short_name": "Ben Basat",
"shirt_number": "9",
"country": "Israel",
"facts": [
{
"type": "7",
"time": "80'",
"description": "Ben Haim T. II.",
"linked_player_hash": "bNGAPwBJ"
}
],
"lineup": null,
"starting": false,
"long_name": "Eden Ben Basat"
},
{
"hash": "6Tw560ma",
"name": "Itzhaki B.",
"captain": "",
"detail_link": "/player/itzhaki-barak/6Tw560ma/",
"short_name": "Itzhaki",
"shirt_number": "10",
"country": "Israel",
"facts": [
{
"type": "7",
"time": "89'",
"description": "Zahavi E.",
"linked_player_hash": "UmW7stEd"
}
],
"lineup": null,
"starting": false,
"long_name": "Barak Itzhaki"
},
{
"hash": "dtW6LQwA",
"name": "Lifshitz D.",
"captain": "",
"detail_link": "/player/lifshitz-daniel/dtW6LQwA/",
"short_name": "Lifshitz",
"shirt_number": "1",
"country": "Israel",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Daniel Lifshitz"
},
{
"hash": "Q9tJZQ4b",
"name": "Mitrovic N.",
"captain": "",
"detail_link": "/player/mitrovic-nikola/Q9tJZQ4b/",
"short_name": "Mitrovic",
"shirt_number": "24",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nikola Mitrovic"
},
{
"hash": "dUrkzeEk",
"name": "Tibi E.",
"captain": "",
"detail_link": "/player/tibi-eitan/dUrkzeEk/",
"short_name": "Tibi",
"shirt_number": "18",
"country": "Israel",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Eitan Tibi"
},
{
"hash": "Gp8TG2d7",
"name": "Vermouth G.",
"captain": "",
"detail_link": "/player/vermouth-gil/Gp8TG2d7/",
"short_name": "Vermouth",
"shirt_number": "28",
"country": "Israel",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gil Vermouth"
}
],
"coach": [
{
"hash": "fafwzN9B",
"name": "Jokanovic S.",
"captain": "",
"detail_link": "/player/jokanovic-slavisa/fafwzN9B/",
"short_name": "Jokanovic S.",
"shirt_number": "",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Slavisa Jokanovic"
}
]
},
"away": {
"tactic": "1-4-1-2-3",
"players": [
{
"hash": "CMGUADgt",
"name": "Azpilicueta C.",
"captain": "",
"detail_link": "/player/azpilicueta-cesar/CMGUADgt/",
"short_name": "Azpilicueta",
"shirt_number": "28",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Cesar Azpilicueta"
},
{
"hash": "K2yVXyhU",
"name": "Baba A.",
"captain": "",
"detail_link": "/player/baba-rahman/K2yVXyhU/",
"short_name": "Baba",
"shirt_number": "6",
"country": "Ghana",
"facts": [
{
"type": "8",
"time": "77' Oscar (Baba A.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"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": 1,
"starting": true,
"long_name": "Asmir Begovic"
},
{
"hash": "pKpkgR1U",
"name": "Cahill G.",
"captain": "",
"detail_link": "/player/cahill-gary/pKpkgR1U/",
"short_name": "Cahill",
"shirt_number": "24",
"country": "England",
"facts": [
{
"type": "3",
"time": "20' Cahill G.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Gary Cahill"
},
{
"hash": "vBw5nir8",
"name": "Costa D.",
"captain": "",
"detail_link": "/player/costa-diego/vBw5nir8/",
"short_name": "Costa",
"shirt_number": "19",
"country": "Spain",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Diego Costa"
},
{
"hash": "YXIDwoe5",
"name": "Fabregas C.",
"captain": "",
"detail_link": "/player/fabregas-cesc/YXIDwoe5/",
"short_name": "Fabregas",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "84' Fabregas C. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"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": [
{
"type": "6",
"time": "69'",
"description": "Pedro",
"linked_player_hash": "0f1tMqQl"
}
],
"lineup": 11,
"starting": true,
"long_name": "Eden Hazard"
},
{
"hash": "Kty10JVG",
"name": "Matic N.",
"captain": "",
"detail_link": "/player/matic-nemanja/Kty10JVG/",
"short_name": "Matic",
"shirt_number": "21",
"country": "Serbia",
"facts": [
{
"type": "1",
"time": "59' Matic N. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Nemanja Matic"
},
{
"hash": "KfKDzbEo",
"name": "Oscar",
"captain": "",
"detail_link": "/player/oscar/KfKDzbEo/",
"short_name": "Oscar",
"shirt_number": "8",
"country": "Brazil",
"facts": [
{
"type": "3",
"time": "77' Oscar (Baba A.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "8",
"time": "90+1' Zouma K. (Oscar)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Oscar"
},
{
"hash": "0AovoI68",
"name": "Terry J.",
"captain": "(C)",
"detail_link": "/player/terry-john/0AovoI68/",
"short_name": "Terry",
"shirt_number": "26",
"country": "England",
"facts": [
{
"type": "6",
"time": "72'",
"description": "Zouma K.",
"linked_player_hash": "SKosf7jl"
}
],
"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": "3",
"time": "73' Willian",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "79'",
"description": "Remy L.",
"linked_player_hash": "hYsYT4nh"
}
],
"lineup": 9,
"starting": true,
"long_name": "Willian"
},
{
"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": "Qe3xUmHo",
"name": "Ivanovic B.",
"captain": "",
"detail_link": "/player/ivanovic-branislav/Qe3xUmHo/",
"short_name": "Ivanovic",
"shirt_number": "2",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Branislav Ivanovic"
},
{
"hash": "6DpURWF8",
"name": "Loftus-Cheek R.",
"captain": "",
"detail_link": "/player/loftus-cheek-ruben/6DpURWF8/",
"short_name": "Loftus-Cheek",
"shirt_number": "36",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ruben Loftus-Cheek"
},
{
"hash": "8AkbVvN2",
"name": "Mikel J. O.",
"captain": "",
"detail_link": "/player/mikel-john-obi/8AkbVvN2/",
"short_name": "Mikel",
"shirt_number": "12",
"country": "Nigeria",
"facts": [],
"lineup": null,
"starting": false,
"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": "7",
"time": "69'",
"description": "Hazard E.",
"linked_player_hash": "QH2of5sJ"
}
],
"lineup": null,
"starting": false,
"long_name": "Pedro"
},
{
"hash": "hYsYT4nh",
"name": "Remy L.",
"captain": "",
"detail_link": "/player/remy-loic/hYsYT4nh/",
"short_name": "Remy",
"shirt_number": "18",
"country": "France",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Willian",
"linked_player_hash": "GSzdOhPI"
}
],
"lineup": null,
"starting": false,
"long_name": "Loic Remy"
},
{
"hash": "SKosf7jl",
"name": "Zouma K.",
"captain": "",
"detail_link": "/player/zouma-kurt/SKosf7jl/",
"short_name": "Zouma",
"shirt_number": "5",
"country": "France",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Terry J.",
"linked_player_hash": "0AovoI68"
},
{
"type": "3",
"time": "90+1' Zouma K. (Oscar)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Kurt Zouma"
}
],
"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": [
"Mallenco A."
],
"venue": [
"Bloomfield Stadium (Tel-Aviv)"
],
"attendance": [
"29 121"
],
"referee_matched": [
"Alberto Undiano Mallenco"
],
"referee_found": [
"Alberto Undiano Mallenco"
],
"coach_matched": [
"Slavisa Jokanovic",
"Jose Mourinho"
],
"gameHomeTeam": "Maccabi Tel Aviv",
"home": {
"name": "Maccabi Tel Aviv",
"detail_link": "/team/maccabi-tel-aviv/req5XE5Q",
"hash": "req5XE5Q",
"names": [
"Maccabi Tel Aviv",
"Maccabi Tel Aviv (Isr)",
"maccabi tel aviv"
]
},
"gameAwayTeam": "Chelsea",
"away": {
"name": "Chelsea",
"detail_link": "/team/chelsea/4fGZN2oK",
"hash": "4fGZN2oK",
"names": [
"Chelsea",
"chelsea"
]
},
"gameDate": "24/11/2015 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. The away team was superior on the pitch today. The home side were defending patiently to win the ball off the opponent and launch the counter. However, the away side moved the ball around and were waiting for a gap to appear in the home side's defence.",
"identified": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. The away team was superior on the pitch today. The home side were defending patiently to win the ball off the opponent and launch the counter. However, the away side moved the ball around and were waiting for a gap to appear in the home side's defence.",
"anonymized": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. The away team was superior on the pitch today. The home side were defending patiently to win the ball off the opponent and launch the counter. However, the away side moved the ball around and were waiting for a gap to appear in the home side's defence.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:40",
"label": "whistle",
"description": "The referee blows his whistle for the final time to end this match.",
"identified": "The referee blows his whistle for the final time to end this match.",
"anonymized": "The referee blows his whistle for the final time to end this match.",
"visibility": "shown",
"position": "2920000"
},
{
"important": true,
"gameTime": "2 - 45:59",
"label": "soccer-ball",
"description": "Oscar takes over corner duties and expertly finds Kurt Zouma (Chelsea), who jumps highest and coolly plants a bullet header into the middle of the goal. The score is now 0:2.",
"identified": "[PLAYER_KfKDzbEo] takes over corner duties and expertly finds [PLAYER_SKosf7jl] ([TEAM_]), who jumps highest and coolly plants a bullet header into the middle of the goal. The score is now 0:2.",
"anonymized": "[PLAYER] takes over corner duties and expertly finds [PLAYER] ([TEAM]), who jumps highest and coolly plants a bullet header into the middle of the goal. The score is now 0:2.",
"visibility": "shown",
"position": "2759000"
},
{
"important": false,
"gameTime": "2 - 45:58",
"label": "corner",
"description": "Oscar (Chelsea) goes over to take the corner kick and it looks like he will send the ball into the penalty box.",
"identified": "[PLAYER_KfKDzbEo] ([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": "2758000"
},
{
"important": false,
"gameTime": "2 - 45:02",
"label": "",
"description": "Diego Costa (Chelsea) receives a sweet pass inside the box, but his effort on goal is blocked by the defender. The ball goes out of play. Chelsea are awarded a corner kick.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2702000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "We will have 3 min. of added time.",
"identified": "We will have 3 min. of added time.",
"anonymized": "We will have 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:48",
"label": "corner",
"description": "Eden Ben Basat (Maccabi Tel Aviv) works the corner short.",
"identified": "[PLAYER_GAiGlfit] ([TEAM_]) works the corner short.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short.",
"visibility": "shown",
"position": "2688000"
},
{
"important": false,
"gameTime": "2 - 44:10",
"label": "",
"description": "Yosef Azulay Shlomy (Maccabi Tel Aviv) collects a pass and has an effort from distance which is blocked. Maccabi Tel Aviv have been awarded a corner kick.",
"identified": "[PLAYER_WYj9DJ7J] ([TEAM_]) collects a pass and has an effort from distance which is blocked. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and has an effort from distance which is blocked. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2650000"
},
{
"important": true,
"gameTime": "2 - 43:30",
"label": "substitution",
"description": "Substitution. Eran Zahavi makes his way off the pitch and Barak Itzhaki (Maccabi Tel Aviv) comes on as his replacement.",
"identified": "Substitution. [PLAYER_UmW7stEd] makes his way off the pitch and [PLAYER_6Tw560ma] ([TEAM_]) comes on as his replacement.",
"anonymized": "Substitution. [PLAYER] makes his way off the pitch and [PLAYER] ([TEAM]) comes on as his replacement.",
"visibility": "shown",
"position": "2610000"
},
{
"important": false,
"gameTime": "2 - 42:57",
"label": "",
"description": "Pedro (Chelsea) makes a good run with the ball, but his shot from the edge of the penalty area goes just wide of the left post. Terrific solo effort, though. The ball goes out of play and Maccabi Tel Aviv will have a goal kick.",
"identified": "[PLAYER_0f1tMqQl] ([TEAM_]) makes a good run with the ball, but his shot from the edge of the penalty area goes just wide of the left post. Terrific solo effort, though. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) makes a good run with the ball, but his shot from the edge of the penalty area goes just wide of the left post. Terrific solo effort, though. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2577000"
},
{
"important": false,
"gameTime": "2 - 42:19",
"label": "",
"description": "Chelsea seem to be finding their feet as they enjoy some possession. Great movement by the offensive players allows the defenders to set up the attack.",
"identified": "[TEAM_] seem to be finding their feet as they enjoy some possession. Great movement by the offensive players allows the defenders to set up the attack.",
"anonymized": "[TEAM] seem to be finding their feet as they enjoy some possession. Great movement by the offensive players allows the defenders to set up the attack.",
"visibility": "shown",
"position": "2539000"
},
{
"important": false,
"gameTime": "2 - 40:49",
"label": "",
"description": "Pedro (Chelsea) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the left post. The ball is off of the pitch and it's a goal kick for Maccabi Tel Aviv.",
"identified": "[PLAYER_0f1tMqQl] ([TEAM_]) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the left post. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the left post. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2449000"
},
{
"important": true,
"gameTime": "2 - 39:39",
"label": "substitution",
"description": "A substitution has been made. Gal Alberman is replaced by Yosef Azulay Shlomy (Maccabi Tel Aviv).",
"identified": "A substitution has been made. [PLAYER_6k7x54LR] is replaced by [PLAYER_WYj9DJ7J] ([TEAM_]).",
"anonymized": "A substitution has been made. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2379000"
},
{
"important": true,
"gameTime": "2 - 38:46",
"label": "y-card",
"description": "The foul by Cesc Fabregas (Chelsea) is worthy of a card and a yellow is duly shown by Alberto Undiano Mallenco.",
"identified": "The foul by [PLAYER_YXIDwoe5] ([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": "2326000"
},
{
"important": false,
"gameTime": "2 - 38:14",
"label": "",
"description": "Baba Rahman (Chelsea) fails to send a pass into the box as his effort is cut out.",
"identified": "[PLAYER_K2yVXyhU] ([TEAM_]) fails to send a pass into the box as his effort is cut out.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out.",
"visibility": "shown",
"position": "2294000"
},
{
"important": false,
"gameTime": "2 - 37:52",
"label": "",
"description": "A clumsy foul by Nosa Igiebor (Maccabi Tel Aviv) and Alberto Undiano Mallenco blows his whistle.",
"identified": "A clumsy foul by [PLAYER_UkZpcQXE] ([TEAM_]) and [REFEREE] blows his whistle.",
"anonymized": "A clumsy foul by [PLAYER] ([TEAM]) and [REFEREE] blows his whistle.",
"visibility": "shown",
"position": "2272000"
},
{
"important": false,
"gameTime": "2 - 37:23",
"label": "",
"description": "The linesman raises his flag for offside before Pedro (Chelsea) heads on.",
"identified": "The linesman raises his flag for offside before [PLAYER_0f1tMqQl] ([TEAM_]) heads on.",
"anonymized": "The linesman raises his flag for offside before [PLAYER] ([TEAM]) heads on.",
"visibility": "shown",
"position": "2243000"
},
{
"important": false,
"gameTime": "2 - 36:50",
"label": "",
"description": "Pedro (Chelsea) was too fierce in his attempt to get the ball from his opponent and Alberto Undiano Mallenco blows for a foul.",
"identified": "[PLAYER_0f1tMqQl] ([TEAM_]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "2210000"
},
{
"important": false,
"gameTime": "2 - 36:08",
"label": "",
"description": "Diego Costa (Chelsea) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) races towards goal but the defender gets back well to make a challenge.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "2168000"
},
{
"important": false,
"gameTime": "2 - 34:46",
"label": "",
"description": "Some neat passing and movement from Chelsea as they ping around some short passes in order to create a new attacking opportunity.",
"identified": "Some neat passing and movement from [TEAM_] as they ping around some short passes in order to create a new attacking opportunity.",
"anonymized": "Some neat passing and movement from [TEAM] as they ping around some short passes in order to create a new attacking opportunity.",
"visibility": "shown",
"position": "2086000"
},
{
"important": true,
"gameTime": "2 - 34:35",
"label": "substitution",
"description": "Slavisa Jokanovic prepares a substitution. Tal Ben Haim II. is replaced by Eden Ben Basat (Maccabi Tel Aviv).",
"identified": "[COACH_fafwzN9B] prepares a substitution. [PLAYER_bNGAPwBJ] is replaced by [PLAYER_GAiGlfit] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2075000"
},
{
"important": true,
"gameTime": "2 - 33:15",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Loic Remy (Chelsea) comes onto the pitch so that Willian can be given a rest.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_hYsYT4nh] ([TEAM_]) comes onto the pitch so that [PLAYER_GSzdOhPI] can be given a rest.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) comes onto the pitch so that [PLAYER] can be given a rest.",
"visibility": "shown",
"position": "1995000"
},
{
"important": true,
"gameTime": "2 - 31:37",
"label": "soccer-ball",
"description": "It's a goal! Oscar (Chelsea) does well to meet a cross inside the box and strikes a perfect header past the goalkeeper into the middle of the goal.",
"identified": "It's a goal! [PLAYER_KfKDzbEo] ([TEAM_]) does well to meet a cross inside the box and strikes a perfect header past the goalkeeper into the middle of the goal.",
"anonymized": "It's a goal! [PLAYER] ([TEAM]) does well to meet a cross inside the box and strikes a perfect header past the goalkeeper into the middle of the goal.",
"visibility": "shown",
"position": "1897000"
},
{
"important": false,
"gameTime": "2 - 30:50",
"label": "",
"description": "Omri Ben Harush (Maccabi Tel Aviv) sends over a cross, but he can't find any teammate inside the box. Poor delivery.",
"identified": "[PLAYER_j31zIqVd] ([TEAM_]) sends over a cross, but he can't find any teammate inside the box. Poor delivery.",
"anonymized": "[PLAYER] ([TEAM]) sends over a cross, but he can't find any teammate inside the box. Poor delivery.",
"visibility": "shown",
"position": "1850000"
},
{
"important": false,
"gameTime": "2 - 30:50",
"label": "",
"description": "Oscar (Chelsea) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_KfKDzbEo] ([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": "1850000"
},
{
"important": false,
"gameTime": "2 - 28:54",
"label": "",
"description": "Alberto Undiano Mallenco blows his whistle. Abdul Rahman Baba (Chelsea) commits a foul after dangerous play. It's a free kick to Maccabi Tel Aviv, but it's in no position for a direct shot on goal.",
"identified": "[REFEREE] blows his whistle. [PLAYER_K2yVXyhU] ([TEAM_]) commits a foul after dangerous play. It's a free kick to [TEAM_], but it's in no position for a direct shot on goal.",
"anonymized": "[REFEREE] blows his whistle. [PLAYER] ([TEAM]) commits a foul after dangerous play. It's a free kick to [TEAM], but it's in no position for a direct shot on goal.",
"visibility": "shown",
"position": "1734000"
},
{
"important": true,
"gameTime": "2 - 27:43",
"label": "soccer-ball",
"description": "Willian (Chelsea) takes the free kick and beats the goalkeeper with a shot which goes inside the left post. Simply stunning!",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) takes the free kick and beats the goalkeeper with a shot which goes inside the left post. Simply stunning!",
"anonymized": "[PLAYER] ([TEAM]) takes the free kick and beats the goalkeeper with a shot which goes inside the left post. Simply stunning!",
"visibility": "shown",
"position": "1663000"
},
{
"important": true,
"gameTime": "2 - 26:16",
"label": "substitution",
"description": "Jose Mourinho is forced to make a change. John Terry is not able to carry on due to injury. He is replaced by Kurt Zouma (Chelsea).",
"identified": "[COACH_AwXQwGFe] is forced to make a change. [PLAYER_0AovoI68] is not able to carry on due to injury. He is replaced by [PLAYER_SKosf7jl] ([TEAM_]).",
"anonymized": "[COACH] is forced to make a change. [PLAYER] is not able to carry on due to injury. He is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1576000"
},
{
"important": false,
"gameTime": "2 - 25:29",
"label": "injury",
"description": "John Terry (Chelsea) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_0AovoI68] ([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": "1529000"
},
{
"important": false,
"gameTime": "2 - 24:28",
"label": "",
"description": "Gal Alberman (Maccabi Tel Aviv) commits a rough challenge and Alberto Undiano Mallenco blows his whistle for a foul. Chelsea earn a free kick which could lead to a goal-scoring opportunity.",
"identified": "[PLAYER_6k7x54LR] ([TEAM_]) commits a rough challenge and [REFEREE] blows his whistle for a foul. [TEAM_] earn a free kick which could lead to a goal-scoring opportunity.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough challenge and [REFEREE] blows his whistle for a foul. [TEAM] earn a free kick which could lead to a goal-scoring opportunity.",
"visibility": "shown",
"position": "1468000"
},
{
"important": true,
"gameTime": "2 - 23:59",
"label": "substitution",
"description": "Here comes a substitution. Pedro (Chelsea) is brought on as a substitute for Eden Hazard.",
"identified": "Here comes a substitution. [PLAYER_0f1tMqQl] ([TEAM_]) is brought on as a substitute for [PLAYER_QH2of5sJ].",
"anonymized": "Here comes a substitution. [PLAYER] ([TEAM]) is brought on as a substitute for [PLAYER].",
"visibility": "shown",
"position": "1439000"
},
{
"important": false,
"gameTime": "2 - 20:44",
"label": "",
"description": "Flag goes up against Tal Ben Haim II. (Maccabi Tel Aviv) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_bNGAPwBJ] ([TEAM_]) and the referee blows his whistle for offside.",
"anonymized": "Flag goes up against [PLAYER] ([TEAM]) and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "1244000"
},
{
"important": false,
"gameTime": "2 - 19:18",
"label": "",
"description": "Cesc Fabregas (Chelsea) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_YXIDwoe5] ([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": "1158000"
},
{
"important": false,
"gameTime": "2 - 18:38",
"label": "corner",
"description": "Eran Zahavi (Maccabi Tel Aviv) takes the corner which is cleared.",
"identified": "[PLAYER_UmW7stEd] ([TEAM_]) takes the corner which is cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared.",
"visibility": "shown",
"position": "1118000"
},
{
"important": true,
"gameTime": "2 - 17:38",
"label": "",
"description": "Eran Zahavi (Maccabi Tel Aviv) collects the ball on the edge of the box and produces a precise shot which would have ended inside the left post, if Asmir Begovic hadn't pulled off a wonderful save. The ball is out of play and Maccabi Tel Aviv manage to earn a corner.",
"identified": "[PLAYER_UmW7stEd] ([TEAM_]) collects the ball on the edge of the box and produces a precise shot which would have ended inside the left post, if [PLAYER_xO2Ce0IG] hadn't pulled off a wonderful save. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) collects the ball on the edge of the box and produces a precise shot which would have ended inside the left post, if [PLAYER] hadn't pulled off a wonderful save. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "1058000"
},
{
"important": true,
"gameTime": "2 - 17:08",
"label": "",
"description": "Oscar (Chelsea) picks up a lofted cross inside the box and fires a quick shot to the middle of the goal. His promising effort is kept out by Predrag Rajkovic, who pulls off a stunning save!",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) picks up a lofted cross inside the box and fires a quick shot to the middle of the goal. His promising effort is kept out by [PLAYER_tSMzkEdC], who pulls off a stunning save!",
"anonymized": "[PLAYER] ([TEAM]) picks up a lofted cross inside the box and fires a quick shot to the middle of the goal. His promising effort is kept out by [PLAYER], who pulls off a stunning save!",
"visibility": "shown",
"position": "1028000"
},
{
"important": false,
"gameTime": "2 - 16:45",
"label": "",
"description": "A neat pass is well received by Eden Hazard (Chelsea), who is lurking on the edge of the box and strikes the ball towards the bottom left corner, but the goalkeeper makes an incredible save to block his shot.",
"identified": "A neat pass is well received by [PLAYER_QH2of5sJ] ([TEAM_]), who is lurking on the edge of the box and strikes the ball towards the bottom left corner, but the goalkeeper makes an incredible save to block his shot.",
"anonymized": "A neat pass is well received by [PLAYER] ([TEAM]), who is lurking on the edge of the box and strikes the ball towards the bottom left corner, but the goalkeeper makes an incredible save to block his shot.",
"visibility": "shown",
"position": "1005000"
},
{
"important": false,
"gameTime": "2 - 16:11",
"label": "corner",
"description": "Predrag Rajkovic leaps to collect the ball from the corner which was sent over by Willian (Chelsea).",
"identified": "[PLAYER_tSMzkEdC] leaps to collect the ball from the corner which was sent over by [PLAYER_GSzdOhPI] ([TEAM_]).",
"anonymized": "[PLAYER] leaps to collect the ball from the corner which was sent over by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "971000"
},
{
"important": false,
"gameTime": "2 - 15:53",
"label": "",
"description": "Oscar (Chelsea) looks to break free, but an opposing player clears the ball away. The ball goes out for a corner. Chelsea can continue in their attacking effort.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "953000"
},
{
"important": false,
"gameTime": "2 - 14:53",
"label": "",
"description": "Willian makes a nice run and receives a pin-point long through ball from Cesc Fabregas (Chelsea). It would probably have put him one-on-one with the keeper, but one of the defenders makes a great block.",
"identified": "[PLAYER_GSzdOhPI] makes a nice run and receives a pin-point long through ball from [PLAYER_YXIDwoe5] ([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": "893000"
},
{
"important": true,
"gameTime": "2 - 13:33",
"label": "y-card",
"description": "Today's referee Alberto Undiano Mallenco rightly decides to book Nemanja Matic (Chelsea) for his harsh tackle.",
"identified": "Today's referee [REFEREE] rightly decides to book [PLAYER_Kty10JVG] ([TEAM_]) for his harsh tackle.",
"anonymized": "Today's referee [REFEREE] rightly decides to book [PLAYER] ([TEAM]) for his harsh tackle.",
"visibility": "shown",
"position": "813000"
},
{
"important": false,
"gameTime": "2 - 13:05",
"label": "",
"description": "Gary Cahill (Chelsea) commits a foul after bringing down his opponent with a slide tackle. That's a free kick to Maccabi Tel Aviv.",
"identified": "[PLAYER_pKpkgR1U] ([TEAM_]) commits a foul after bringing down his opponent with a slide tackle. That's a free kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after bringing down his opponent with a slide tackle. That's a free kick to [TEAM].",
"visibility": "shown",
"position": "785000"
},
{
"important": false,
"gameTime": "2 - 12:07",
"label": "",
"description": "Cesar Azpilicueta (Chelsea) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"identified": "[PLAYER_CMGUADgt] ([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": "727000"
},
{
"important": false,
"gameTime": "2 - 11:20",
"label": "",
"description": "Some patient build-up play from Chelsea as they look to unlock the defence.",
"identified": "Some patient build-up play from [TEAM_] as they look to unlock the defence.",
"anonymized": "Some patient build-up play from [TEAM] as they look to unlock the defence.",
"visibility": "shown",
"position": "680000"
},
{
"important": false,
"gameTime": "2 - 10:25",
"label": "",
"description": "Tal Ben Haim II. (Maccabi Tel Aviv) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it. The ball is off of the pitch and it's a goal kick for Chelsea.",
"identified": "[PLAYER_bNGAPwBJ] ([TEAM_]) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "625000"
},
{
"important": false,
"gameTime": "2 - 09:22",
"label": "",
"description": "Abdul Rahman Baba (Chelsea) produces a dangerous low pass into the penalty area, but the defence manage to cut it out. The ball goes out of play and Maccabi Tel Aviv will have a goal kick.",
"identified": "[PLAYER_K2yVXyhU] ([TEAM_]) produces a dangerous low pass into the penalty area, but the defence manage to cut it out. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) produces a dangerous low pass into the penalty area, but the defence manage to cut it out. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "562000"
},
{
"important": false,
"gameTime": "2 - 07:59",
"label": "",
"description": "Diego Costa (Chelsea) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_vBw5nir8] ([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": "479000"
},
{
"important": false,
"gameTime": "2 - 06:54",
"label": "",
"description": "Diego Costa (Chelsea) is adjudged offside.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) is adjudged offside.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "414000"
},
{
"important": false,
"gameTime": "2 - 06:53",
"label": "",
"description": "Eden Hazard (Chelsea) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "413000"
},
{
"important": false,
"gameTime": "2 - 06:19",
"label": "",
"description": "The linesman raises his flag. Cesc Fabregas (Chelsea) is adjudged offside.",
"identified": "The linesman raises his flag. [PLAYER_YXIDwoe5] ([TEAM_]) is adjudged offside.",
"anonymized": "The linesman raises his flag. [PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "379000"
},
{
"important": false,
"gameTime": "2 - 06:18",
"label": "",
"description": "Chelsea hold the ball and display nice passing from player to player.",
"identified": "[TEAM_] hold the ball and display nice passing from player to player.",
"anonymized": "[TEAM] hold the ball and display nice passing from player to player.",
"visibility": "shown",
"position": "378000"
},
{
"important": false,
"gameTime": "2 - 05:38",
"label": "",
"description": "Carlos Garcia (Maccabi Tel Aviv) times his run too early and the linesman raises his flag for offside.",
"identified": "[PLAYER_x8leIGfB] ([TEAM_]) times his run too early and the linesman raises his flag for offside.",
"anonymized": "[PLAYER] ([TEAM]) times his run too early and the linesman raises his flag for offside.",
"visibility": "shown",
"position": "338000"
},
{
"important": false,
"gameTime": "2 - 05:08",
"label": "corner",
"description": "The corner from Eran Zahavi (Maccabi Tel Aviv) is intercepted by the defence.",
"identified": "The corner from [PLAYER_UmW7stEd] ([TEAM_]) is intercepted by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "308000"
},
{
"important": false,
"gameTime": "2 - 04:35",
"label": "",
"description": "Asmir Begovic can hear the fans clapping for his superb goalkeeping after he magnificently stops the close-range effort from Elazar Dasa (Maccabi Tel Aviv). The ball would have probably ended up inside the right post. The linesman points to the corner flag, Maccabi Tel Aviv are going to take it.",
"identified": "[PLAYER_xO2Ce0IG] can hear the fans clapping for his superb goalkeeping after he magnificently stops the close-range effort from [PLAYER_UwUiqD0a] ([TEAM_]). The ball would have probably ended up inside the right post. The linesman points to the corner flag, [TEAM_] are going to take it.",
"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 inside the right post. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "275000"
},
{
"important": false,
"gameTime": "2 - 03:56",
"label": "",
"description": "Diego Costa (Chelsea) is offside and the linesman raises his flag.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "236000"
},
{
"important": false,
"gameTime": "2 - 03:13",
"label": "",
"description": "Cesar Azpilicueta (Chelsea) attempts to send a pass but the effort is blocked.",
"identified": "[PLAYER_CMGUADgt] ([TEAM_]) attempts to send a pass but the effort is blocked.",
"anonymized": "[PLAYER] ([TEAM]) attempts to send a pass but the effort is blocked.",
"visibility": "shown",
"position": "193000"
},
{
"important": false,
"gameTime": "2 - 02:13",
"label": "",
"description": "The linesman raises his flag as one of the players from Chelsea was in an offside position.",
"identified": "The linesman raises his flag as one of the players from [TEAM_] was in an offside position.",
"anonymized": "The linesman raises his flag as one of the players from [TEAM] was in an offside position.",
"visibility": "shown",
"position": "133000"
},
{
"important": false,
"gameTime": "2 - 02:04",
"label": "",
"description": "Eden Hazard (Chelsea) attempts to whip a quick pass into the box, but Baba Rahman was not able to dribble past the opponent's defence and loses the ball.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) attempts to whip a quick pass into the box, but [PLAYER_K2yVXyhU] was not able to dribble past the opponent's defence and loses the ball.",
"anonymized": "[PLAYER] ([TEAM]) attempts to whip a quick pass into the box, but [PLAYER] was not able to dribble past the opponent's defence and loses the ball.",
"visibility": "shown",
"position": "124000"
},
{
"important": false,
"gameTime": "2 - 01:14",
"label": "",
"description": "From a seemingly non-threatining position, an indirect free kick is taken by Eran Zahavi (Maccabi Tel Aviv) which creates a surprising opportunity, but the opposition's defence is alert and thwarts his attempt at last possible moment.",
"identified": "From a seemingly non-threatining position, an indirect free kick is taken by [PLAYER_UmW7stEd] ([TEAM_]) which creates a surprising opportunity, but the opposition's defence is alert and thwarts his attempt at last possible moment.",
"anonymized": "From a seemingly non-threatining position, an indirect free kick is taken by [PLAYER] ([TEAM]) which creates a surprising opportunity, but the opposition's defence is alert and thwarts his attempt at last possible moment.",
"visibility": "shown",
"position": "74000"
},
{
"important": false,
"gameTime": "2 - 00:56",
"label": "",
"description": "Gary Cahill (Chelsea) was too forceful with his tackle and Alberto Undiano Mallenco interrupted the game to signal a free kick.",
"identified": "[PLAYER_pKpkgR1U] ([TEAM_]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick.",
"anonymized": "[PLAYER] ([TEAM]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick.",
"visibility": "shown",
"position": "56000"
},
{
"important": false,
"gameTime": "2 - 00:25",
"label": "",
"description": "Tal Ben Haim II. is not given a chance to finish after receiving a sweet pass by Eran Zahavi (Maccabi Tel Aviv). The ball is behind the touchline and Maccabi Tel Aviv will take a throw-in.",
"identified": "[PLAYER_bNGAPwBJ] is not given a chance to finish after receiving a sweet pass by [PLAYER_UmW7stEd] ([TEAM_]). The ball is behind the touchline and [TEAM_] will take a throw-in.",
"anonymized": "[PLAYER] is not given a chance to finish after receiving a sweet pass by [PLAYER] ([TEAM]). The ball is behind the touchline and [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "25000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"identified": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"anonymized": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:01",
"label": "",
"description": "The opening 45 minutes weren't very eventful and the game could be described as an average one. The visitors were more active and dominated the home side in the first half, who weren't able to keep up. The home side relies mostly on counter-attacks for their chances, while the away team adopts the opposite approach of possession football.",
"identified": "The opening 45 minutes weren't very eventful and the game could be described as an average one. The visitors were more active and dominated the home side in the first half, who weren't able to keep up. The home side relies mostly on counter-attacks for their chances, while the away team adopts the opposite approach of possession football.",
"anonymized": "The opening 45 minutes weren't very eventful and the game could be described as an average one. The visitors were more active and dominated the home side in the first half, who weren't able to keep up. The home side relies mostly on counter-attacks for their chances, while the away team adopts the opposite approach of possession football.",
"visibility": "shown",
"position": "2701000"
},
{
"important": true,
"gameTime": "1 - 44:59",
"label": "whistle",
"description": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"identified": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"anonymized": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"visibility": "shown",
"position": "2699000"
},
{
"important": false,
"gameTime": "1 - 44:07",
"label": "",
"description": "Abdul Rahman Baba (Chelsea) looks to break free, but an opposing player clears the ball away. The ball goes out of play and Maccabi Tel Aviv will have a goal kick.",
"identified": "[PLAYER_K2yVXyhU] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2647000"
},
{
"important": false,
"gameTime": "1 - 43:35",
"label": "corner",
"description": "Willian (Chelsea) quickly takes the corner kick with a short pass.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) quickly takes the corner kick with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) quickly takes the corner kick with a short pass.",
"visibility": "shown",
"position": "2615000"
},
{
"important": false,
"gameTime": "1 - 43:16",
"label": "",
"description": "Diego Costa (Chelsea) races towards goal but the defender gets back well to make a challenge. Corner kick. Chelsea will have an opportunity.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "2596000"
},
{
"important": false,
"gameTime": "1 - 42:36",
"label": "",
"description": "Eden Hazard (Chelsea) picks up a pass and unleashes a low shot towards goal, but he can't generate enough power to trouble Predrag Rajkovic.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) picks up a pass and unleashes a low shot towards goal, but he can't generate enough power to trouble [PLAYER_tSMzkEdC].",
"anonymized": "[PLAYER] ([TEAM]) picks up a pass and unleashes a low shot towards goal, but he can't generate enough power to trouble [PLAYER].",
"visibility": "shown",
"position": "2556000"
},
{
"important": false,
"gameTime": "1 - 42:19",
"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": "2539000"
},
{
"important": false,
"gameTime": "1 - 42:00",
"label": "",
"description": "Oscar (Chelsea) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is out of play. A goal-scoring opportunity from a corner for Chelsea.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "2520000"
},
{
"important": true,
"gameTime": "1 - 40:09",
"label": "r-card",
"description": "Tal Ben Haim (Maccabi Tel Aviv) knows that the game is over for him after receiving a red card from the referee for fouling his opponent!",
"identified": "[PLAYER_bNGAPwBJ] ([TEAM_]) knows that the game is over for him after receiving a red card from the referee for fouling his opponent!",
"anonymized": "[PLAYER] ([TEAM]) knows that the game is over for him after receiving a red card from the referee for fouling his opponent!",
"visibility": "shown",
"position": "2409000"
},
{
"important": false,
"gameTime": "1 - 39:28",
"label": "",
"description": "Tal Ben Haim (Maccabi Tel Aviv) makes a slide tackle, but referee Alberto Undiano Mallenco blows for a foul.",
"identified": "[PLAYER_bNGAPwBJ] ([TEAM_]) makes a slide tackle, but referee [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a slide tackle, but referee [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "2368000"
},
{
"important": false,
"gameTime": "1 - 39:12",
"label": "",
"description": "Eran Zahavi (Maccabi Tel Aviv) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_UmW7stEd] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "2352000"
},
{
"important": false,
"gameTime": "1 - 38:54",
"label": "",
"description": "Oscar (Chelsea) receives an accurate pass and attempts to threaten the goalkeeper with his long-range strike. Unfortunately for him, his effort goes high above the crossbar. The ball goes out of play and Maccabi Tel Aviv will have a goal kick.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) receives an accurate pass and attempts to threaten the goalkeeper with his long-range strike. Unfortunately for him, his effort goes high above the crossbar. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) receives an accurate pass and attempts to threaten the goalkeeper with his long-range strike. Unfortunately for him, his effort goes high above the crossbar. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2334000"
},
{
"important": false,
"gameTime": "1 - 38:17",
"label": "corner",
"description": "Willian (Chelsea) takes a short corner kick.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "2297000"
},
{
"important": false,
"gameTime": "1 - 38:03",
"label": "",
"description": "Diego Costa (Chelsea) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball goes out of play. Chelsea are awarded a corner kick.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2283000"
},
{
"important": false,
"gameTime": "1 - 36:52",
"label": "",
"description": "Cesar Azpilicueta (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_CMGUADgt] ([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": "2212000"
},
{
"important": false,
"gameTime": "1 - 36:04",
"label": "",
"description": "Willian (Chelsea) fires the resultant free kick towards the left post, but the keeper makes a brilliant save and denies him the chance to score.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) fires the resultant free kick towards the left post, but the keeper makes a brilliant save and denies him the chance to score.",
"anonymized": "[PLAYER] ([TEAM]) fires the resultant free kick towards the left post, but the keeper makes a brilliant save and denies him the chance to score.",
"visibility": "shown",
"position": "2164000"
},
{
"important": false,
"gameTime": "1 - 34:49",
"label": "",
"description": "Alberto Undiano Mallenco has a clear sight and sees a foul from Carlos Garcia (Maccabi Tel Aviv). Chelsea have been awarded a free kick.",
"identified": "[REFEREE] has a clear sight and sees a foul from [PLAYER_x8leIGfB] ([TEAM_]). [TEAM_] have been awarded a free kick.",
"anonymized": "[REFEREE] has a clear sight and sees a foul from [PLAYER] ([TEAM]). [TEAM] have been awarded a free kick.",
"visibility": "shown",
"position": "2089000"
},
{
"important": false,
"gameTime": "1 - 33:46",
"label": "",
"description": "Omri Ben Harush (Maccabi Tel Aviv) receives a pass and tries his luck with a long-range powerful effort. His poorly placed shot lacks accuracy and flies way over the crossbar. The ball goes out of play and Chelsea will have a goal kick.",
"identified": "[PLAYER_j31zIqVd] ([TEAM_]) receives a pass and tries his luck with a long-range powerful effort. His poorly placed shot lacks accuracy and flies way over the crossbar. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and tries his luck with a long-range powerful effort. His poorly placed shot lacks accuracy and flies way over the crossbar. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2026000"
},
{
"important": false,
"gameTime": "1 - 32:38",
"label": "",
"description": "The Maccabi Tel Aviv players are exchanging short passes in an attempt to create a shooting opportunity.",
"identified": "The [TEAM_] players are exchanging short passes in an attempt to create a shooting opportunity.",
"anonymized": "The [TEAM] players are exchanging short passes in an attempt to create a shooting opportunity.",
"visibility": "shown",
"position": "1958000"
},
{
"important": false,
"gameTime": "1 - 31:39",
"label": "",
"description": "Diego Costa (Chelsea) attempts to find his teammate with a short pass into the box. Eden Hazard collects the ball, but his attack is thwarted by the defence.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) attempts to find his teammate with a short pass into the box. [PLAYER_QH2of5sJ] collects the ball, but his attack is thwarted by the defence.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a short pass into the box. [PLAYER] collects the ball, but his attack is thwarted by the defence.",
"visibility": "shown",
"position": "1899000"
},
{
"important": false,
"gameTime": "1 - 29:52",
"label": "",
"description": "Diego Costa (Chelsea) had a good opportunity when he latched on to a cross from the wing, but his strike wasn't accurate at all and the ball went well over the bar. The ball is off of the pitch and it's a goal kick for Maccabi Tel Aviv.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) had a good opportunity when he latched on to a cross from the wing, but his strike wasn't accurate at all and the ball went well over the bar. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) had a good opportunity when he latched on to a cross from the wing, but his strike wasn't accurate at all and the ball went well over the bar. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1792000"
},
{
"important": false,
"gameTime": "1 - 29:26",
"label": "",
"description": "Chelsea are playing some nice combination football, sending it precisely from player to player, but a defender shows good anticipation and ends the move with a good block.",
"identified": "[TEAM_] are playing some nice combination football, sending it precisely from player to player, but a defender shows good anticipation and ends the move with a good block.",
"anonymized": "[TEAM] are playing some nice combination football, sending it precisely from player to player, but a defender shows good anticipation and ends the move with a good block.",
"visibility": "shown",
"position": "1766000"
},
{
"important": false,
"gameTime": "1 - 26:33",
"label": "corner",
"description": "The corner by Tal Ben Haim II. (Maccabi Tel Aviv) lacks accuracy as it's hit with too much power.",
"identified": "The corner by [PLAYER_bNGAPwBJ] ([TEAM_]) lacks accuracy as it's hit with too much power.",
"anonymized": "The corner by [PLAYER] ([TEAM]) lacks accuracy as it's hit with too much power.",
"visibility": "shown",
"position": "1593000"
},
{
"important": false,
"gameTime": "1 - 26:20",
"label": "",
"description": "The ball is cleared after Dor Peretz (Maccabi Tel Aviv) attempted to dribble past an opposing player. Maccabi Tel Aviv get a corner.",
"identified": "The ball is cleared after [PLAYER_M7qIc3lc] ([TEAM_]) attempted to dribble past an opposing player. [TEAM_] get a corner.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. [TEAM] get a corner.",
"visibility": "shown",
"position": "1580000"
},
{
"important": false,
"gameTime": "1 - 26:01",
"label": "",
"description": "Cesar Azpilicueta (Chelsea) finds his teammate inside the box with a sweet pass. However, Willian wasn't able to finish and lost the ball.",
"identified": "[PLAYER_CMGUADgt] ([TEAM_]) finds his teammate inside the box with a sweet pass. However, [PLAYER_GSzdOhPI] wasn't able to finish and lost the ball.",
"anonymized": "[PLAYER] ([TEAM]) finds his teammate inside the box with a sweet pass. However, [PLAYER] wasn't able to finish and lost the ball.",
"visibility": "shown",
"position": "1561000"
},
{
"important": false,
"gameTime": "1 - 24:57",
"label": "",
"description": "Flag up against Nosa Igiebor (Maccabi Tel Aviv). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_UkZpcQXE] ([TEAM_]). He had space to move into behind the defence, but he went too soon.",
"anonymized": "Flag up against [PLAYER] ([TEAM]). He had space to move into behind the defence, but he went too soon.",
"visibility": "shown",
"position": "1497000"
},
{
"important": false,
"gameTime": "1 - 24:09",
"label": "",
"description": "A spell of possession for Maccabi Tel Aviv in an attempt to control the game.",
"identified": "A spell of possession for [TEAM_] in an attempt to control the game.",
"anonymized": "A spell of possession for [TEAM] in an attempt to control the game.",
"visibility": "shown",
"position": "1449000"
},
{
"important": false,
"gameTime": "1 - 23:26",
"label": "",
"description": "Eden Hazard (Chelsea) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "1406000"
},
{
"important": false,
"gameTime": "1 - 22:11",
"label": "",
"description": "Omri Ben Harush (Maccabi Tel Aviv) commits a rough foul. Alberto Undiano Mallenco stops the game and makes a call.",
"identified": "[PLAYER_j31zIqVd] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"visibility": "shown",
"position": "1331000"
},
{
"important": true,
"gameTime": "1 - 19:59",
"label": "soccer-ball",
"description": "A shot is blocked but the rebound lands at the feet of Gary Cahill (Chelsea) who fires the ball into the back of the net.",
"identified": "A shot is blocked but the rebound lands at the feet of [PLAYER_pKpkgR1U] ([TEAM_]) who fires the ball into the back of the net.",
"anonymized": "A shot is blocked but the rebound lands at the feet of [PLAYER] ([TEAM]) who fires the ball into the back of the net.",
"visibility": "shown",
"position": "1199000"
},
{
"important": true,
"gameTime": "1 - 19:58",
"label": "",
"description": "Gary Cahill (Chelsea) connects with the resulting corner kick deep into the box, but the keeper gets a glove to his header and pushes it onto the left post.",
"identified": "[PLAYER_pKpkgR1U] ([TEAM_]) connects with the resulting corner kick deep into the box, but the keeper gets a glove to his header and pushes it onto the left post.",
"anonymized": "[PLAYER] ([TEAM]) connects with the resulting corner kick deep into the box, but the keeper gets a glove to his header and pushes it onto the left post.",
"visibility": "shown",
"position": "1198000"
},
{
"important": false,
"gameTime": "1 - 19:28",
"label": "corner",
"description": "Corner kick. Willian (Chelsea) is ready to send the ball into the box.",
"identified": "Corner kick. [PLAYER_GSzdOhPI] ([TEAM_]) is ready to send the ball into the box.",
"anonymized": "Corner kick. [PLAYER] ([TEAM]) is ready to send the ball into the box.",
"visibility": "shown",
"position": "1168000"
},
{
"important": false,
"gameTime": "1 - 19:27",
"label": "",
"description": "Oscar (Chelsea) races towards goal but the defender gets back well to make a challenge. The ball goes out of play and Chelsea have been awarded a corner kick.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "1167000"
},
{
"important": false,
"gameTime": "1 - 19:01",
"label": "",
"description": "Cesc Fabregas (Chelsea) makes a yard for himself on the edge of the box after picking up a pass, but produces a poor effort that sails high over the bar. The ball is off of the pitch and it's a goal kick for Maccabi Tel Aviv.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) makes a yard for himself on the edge of the box after picking up a pass, but produces a poor effort that sails high over the bar. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself on the edge of the box after picking up a pass, but produces a poor effort that sails high over the bar. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1141000"
},
{
"important": false,
"gameTime": "1 - 18:01",
"label": "",
"description": "Tal Ben Haim (Maccabi Tel Aviv) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision!",
"identified": "[PLAYER_bNGAPwBJ] ([TEAM_]) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision!",
"anonymized": "[PLAYER] ([TEAM]) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision!",
"visibility": "shown",
"position": "1081000"
},
{
"important": false,
"gameTime": "1 - 16:48",
"label": "",
"description": "Some great controlled play and passing from Maccabi Tel Aviv. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"identified": "Some great controlled play and passing from [TEAM_]. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"anonymized": "Some great controlled play and passing from [TEAM]. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"visibility": "shown",
"position": "1008000"
},
{
"important": false,
"gameTime": "1 - 16:25",
"label": "",
"description": "Diego Costa (Chelsea) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_vBw5nir8] ([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": "985000"
},
{
"important": false,
"gameTime": "1 - 14:57",
"label": "",
"description": "Baba Rahman (Chelsea) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat.",
"identified": "[PLAYER_K2yVXyhU] ([TEAM_]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat.",
"visibility": "shown",
"position": "897000"
},
{
"important": false,
"gameTime": "1 - 14:07",
"label": "",
"description": "This should have been a goal! Willian (Chelsea) sends a killer pass into the box, but Diego Costa can't trick the opposition's defence and loses possession.",
"identified": "This should have been a goal! [PLAYER_GSzdOhPI] ([TEAM_]) sends a killer pass into the box, but [PLAYER_vBw5nir8] can't trick the opposition's defence and loses possession.",
"anonymized": "This should have been a goal! [PLAYER] ([TEAM]) sends a killer pass into the box, but [PLAYER] can't trick the opposition's defence and loses possession.",
"visibility": "shown",
"position": "847000"
},
{
"important": false,
"gameTime": "1 - 12:36",
"label": "",
"description": "Tal Ben Haim II. (Maccabi Tel Aviv) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_bNGAPwBJ] ([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": "756000"
},
{
"important": false,
"gameTime": "1 - 11:27",
"label": "",
"description": "Eden Hazard (Chelsea) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "687000"
},
{
"important": false,
"gameTime": "1 - 10:56",
"label": "",
"description": "Baba Rahman (Chelsea) fails to pick a body out in the box with an over-hit chip pass.",
"identified": "[PLAYER_K2yVXyhU] ([TEAM_]) fails to pick a body out in the box with an over-hit chip pass.",
"anonymized": "[PLAYER] ([TEAM]) fails to pick a body out in the box with an over-hit chip pass.",
"visibility": "shown",
"position": "656000"
}
]
} |