File size: 85,964 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 |
{
"timestamp": "1446295500",
"score": "1 - 3",
"round": "11",
"teams": [
"Chelsea",
"Liverpool"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "CMGUADgt",
"name": "Azpilicueta C.",
"captain": "",
"detail_link": "/player/azpilicueta-cesar/CMGUADgt/",
"short_name": "Azpilicueta",
"shirt_number": "28",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "4' Ramires (Azpilicueta C.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "76'",
"description": "Falcao R.",
"linked_player_hash": "2oMimkAU"
}
],
"lineup": 5,
"starting": true,
"long_name": "Cesar Azpilicueta"
},
{
"hash": "xO2Ce0IG",
"name": "Begovic A.",
"captain": "",
"detail_link": "/player/begovic-asmir/xO2Ce0IG/",
"short_name": "Begovic",
"shirt_number": "1",
"country": "Bosnia and Herzegovina",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Asmir Begovic"
},
{
"hash": "pKpkgR1U",
"name": "Cahill G.",
"captain": "",
"detail_link": "/player/cahill-gary/pKpkgR1U/",
"short_name": "Cahill",
"shirt_number": "24",
"country": "England",
"facts": [],
"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": 11,
"starting": true,
"long_name": "Diego Costa"
},
{
"hash": "QH2of5sJ",
"name": "Hazard E.",
"captain": "",
"detail_link": "/player/hazard-eden/QH2of5sJ/",
"short_name": "Hazard",
"shirt_number": "10",
"country": "Belgium",
"facts": [
{
"type": "6",
"time": "59'",
"description": "Kenedy",
"linked_player_hash": "Crwqppk9"
}
],
"lineup": 9,
"starting": true,
"long_name": "Eden Hazard"
},
{
"hash": "8AkbVvN2",
"name": "Mikel J. O.",
"captain": "",
"detail_link": "/player/mikel-john-obi/8AkbVvN2/",
"short_name": "Mikel",
"shirt_number": "12",
"country": "Nigeria",
"facts": [
{
"type": "1",
"time": "66' Mikel J. O. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "70'",
"description": "Fabregas C.",
"linked_player_hash": "YXIDwoe5"
}
],
"lineup": 7,
"starting": true,
"long_name": "John Obi Mikel"
},
{
"hash": "KfKDzbEo",
"name": "Oscar",
"captain": "",
"detail_link": "/player/oscar/KfKDzbEo/",
"short_name": "Oscar",
"shirt_number": "8",
"country": "Brazil",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Oscar"
},
{
"hash": "8APqwh2k",
"name": "Ramires",
"captain": "",
"detail_link": "/player/ramires/8APqwh2k/",
"short_name": "Ramires",
"shirt_number": "7",
"country": "Brazil",
"facts": [
{
"type": "3",
"time": "4' Ramires (Azpilicueta C.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Ramires"
},
{
"hash": "0AovoI68",
"name": "Terry J.",
"captain": "(C)",
"detail_link": "/player/terry-john/0AovoI68/",
"short_name": "Terry",
"shirt_number": "26",
"country": "England",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "John Terry"
},
{
"hash": "GSzdOhPI",
"name": "Willian",
"captain": "",
"detail_link": "/player/willian/GSzdOhPI/",
"short_name": "Willian",
"shirt_number": "22",
"country": "Brazil",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Willian"
},
{
"hash": "SKosf7jl",
"name": "Zouma K.",
"captain": "",
"detail_link": "/player/zouma-kurt/SKosf7jl/",
"short_name": "Zouma",
"shirt_number": "5",
"country": "France",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Kurt Zouma"
},
{
"hash": "fakD0SWJ",
"name": "Amelia M.",
"captain": "",
"detail_link": "/player/amelia-marco/fakD0SWJ/",
"short_name": "Amelia",
"shirt_number": "32",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marco Amelia"
},
{
"hash": "K2yVXyhU",
"name": "Baba A.",
"captain": "",
"detail_link": "/player/baba-rahman/K2yVXyhU/",
"short_name": "Baba",
"shirt_number": "6",
"country": "Ghana",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Abdul-Rahman Baba"
},
{
"hash": "YXIDwoe5",
"name": "Fabregas C.",
"captain": "",
"detail_link": "/player/fabregas-cesc/YXIDwoe5/",
"short_name": "Fabregas",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Mikel J. O.",
"linked_player_hash": "8AkbVvN2"
}
],
"lineup": null,
"starting": false,
"long_name": "Cesc Fabregas"
},
{
"hash": "2oMimkAU",
"name": "Falcao R.",
"captain": "",
"detail_link": "/player/falcao/2oMimkAU/",
"short_name": "Falcao",
"shirt_number": "9",
"country": "Colombia",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Azpilicueta C.",
"linked_player_hash": "CMGUADgt"
}
],
"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": "59'",
"description": "Hazard E.",
"linked_player_hash": "QH2of5sJ"
}
],
"lineup": null,
"starting": false,
"long_name": "Kenedy"
},
{
"hash": "Kty10JVG",
"name": "Matic N.",
"captain": "",
"detail_link": "/player/matic-nemanja/Kty10JVG/",
"short_name": "Matic",
"shirt_number": "21",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nemanja Matic"
},
{
"hash": "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"
}
],
"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"
}
]
},
"away": {
"tactic": "1-4-3-2-1",
"players": [
{
"hash": "YJu3hSpk",
"name": "Can E.",
"captain": "",
"detail_link": "/player/can-emre/YJu3hSpk/",
"short_name": "Can",
"shirt_number": "23",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "65' Can E. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Emre Can"
},
{
"hash": "Eo9X2cTu",
"name": "Clyne N.",
"captain": "",
"detail_link": "/player/clyne-nathaniel/Eo9X2cTu/",
"short_name": "Clyne",
"shirt_number": "2",
"country": "England",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Nathaniel Clyne"
},
{
"hash": "QP6r8H7O",
"name": "Coutinho",
"captain": "",
"detail_link": "/player/coutinho/QP6r8H7O/",
"short_name": "Coutinho",
"shirt_number": "10",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "24' Coutinho (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "3",
"time": "45+3' Coutinho (Firmino R.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "74' Coutinho (Benteke C.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Philippe Coutinho"
},
{
"hash": "CCNtplZe",
"name": "Firmino R.",
"captain": "",
"detail_link": "/player/firmino-roberto/CCNtplZe/",
"short_name": "Firmino",
"shirt_number": "11",
"country": "Brazil",
"facts": [
{
"type": "8",
"time": "45+3' Coutinho (Firmino R.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "76'",
"description": "Ibe J.",
"linked_player_hash": "thMRxyKg"
}
],
"lineup": 11,
"starting": true,
"long_name": "Roberto Firmino"
},
{
"hash": "65ZQWgft",
"name": "Lallana A.",
"captain": "",
"detail_link": "/player/lallana-adam/65ZQWgft/",
"short_name": "Lallana",
"shirt_number": "20",
"country": "England",
"facts": [
{
"type": "6",
"time": "90+1'",
"description": "Lovren D.",
"linked_player_hash": "GAcQF9Z6"
}
],
"lineup": 9,
"starting": true,
"long_name": "Adam Lallana"
},
{
"hash": "t41Fn0KA",
"name": "Lucas Leiva",
"captain": "",
"detail_link": "/player/lucas-leiva/t41Fn0KA/",
"short_name": "Lucas Leiva",
"shirt_number": "21",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "58' Lucas Leiva (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Lucas Leiva"
},
{
"hash": "YVcnMAp6",
"name": "Mignolet S.",
"captain": "",
"detail_link": "/player/mignolet-simon/YVcnMAp6/",
"short_name": "Mignolet",
"shirt_number": "22",
"country": "Belgium",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Simon Mignolet"
},
{
"hash": "QLY3kAEt",
"name": "Milner J.",
"captain": "(C)",
"detail_link": "/player/milner-james/QLY3kAEt/",
"short_name": "Milner",
"shirt_number": "7",
"country": "England",
"facts": [
{
"type": "6",
"time": "64'",
"description": "Benteke C.",
"linked_player_hash": "lAh68Xxm"
}
],
"lineup": 6,
"starting": true,
"long_name": "James Milner"
},
{
"hash": "pdBI3oS8",
"name": "Moreno A.",
"captain": "",
"detail_link": "/player/moreno-alberto/pdBI3oS8/",
"short_name": "Moreno",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Alberto Moreno"
},
{
"hash": "6ssHEkoB",
"name": "Sakho M.",
"captain": "",
"detail_link": "/player/sakho-mamadou/6ssHEkoB/",
"short_name": "Sakho",
"shirt_number": "17",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Mamadou Sakho"
},
{
"hash": "Sl3SuxSj",
"name": "Skrtel M.",
"captain": "",
"detail_link": "/player/skrtel-martin/Sl3SuxSj/",
"short_name": "Skrtel",
"shirt_number": "37",
"country": "Slovakia",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Martin Skrtel"
},
{
"hash": "IeoNr67S",
"name": "Allen J.",
"captain": "",
"detail_link": "/player/allen-joe/IeoNr67S/",
"short_name": "Allen",
"shirt_number": "24",
"country": "Wales",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Joe Allen"
},
{
"hash": "lAh68Xxm",
"name": "Benteke C.",
"captain": "",
"detail_link": "/player/benteke-christian/lAh68Xxm/",
"short_name": "Benteke",
"shirt_number": "9",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "64'",
"description": "Milner J.",
"linked_player_hash": "QLY3kAEt"
},
{
"type": "8",
"time": "74' Coutinho (Benteke C.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "83' Benteke C. (Ibe J.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "86' Benteke C. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Christian Benteke"
},
{
"hash": "Eaz4EAXu",
"name": "Bogdan A.",
"captain": "",
"detail_link": "/player/bogdan-adam/Eaz4EAXu/",
"short_name": "Bogdan",
"shirt_number": "34",
"country": "Hungary",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Adam Bogdan"
},
{
"hash": "thMRxyKg",
"name": "Ibe J.",
"captain": "",
"detail_link": "/player/ibe-jordon/thMRxyKg/",
"short_name": "Ibe",
"shirt_number": "33",
"country": "England",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Firmino R.",
"linked_player_hash": "CCNtplZe"
},
{
"type": "8",
"time": "83' Benteke C. (Ibe J.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Jordon Ibe"
},
{
"hash": "GAcQF9Z6",
"name": "Lovren D.",
"captain": "",
"detail_link": "/player/lovren-dejan/GAcQF9Z6/",
"short_name": "Lovren",
"shirt_number": "6",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "90+1'",
"description": "Lallana A.",
"linked_player_hash": "65ZQWgft"
}
],
"lineup": null,
"starting": false,
"long_name": "Dejan Lovren"
},
{
"hash": "UDrn6tE8",
"name": "Randall C.",
"captain": "",
"detail_link": "/player/randall-connor/UDrn6tE8/",
"short_name": "Randall",
"shirt_number": "56",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Connor Randall"
},
{
"hash": "AFdx2nBi",
"name": "Teixeira J. C.",
"captain": "",
"detail_link": "/player/teixeira-joao-carlos/AFdx2nBi/",
"short_name": "Teixeira",
"shirt_number": "53",
"country": "Portugal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Joao Carlos Teixeira"
}
],
"coach": [
{
"hash": "x6CvOHH9",
"name": "Klopp J.",
"captain": "",
"detail_link": "/player/klopp-jurgen/x6CvOHH9/",
"short_name": "Klopp J.",
"shirt_number": "",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jurgen Klopp"
}
]
}
},
"referee": [
"Clattenburg M."
],
"venue": [
"Stamford Bridge (London)"
],
"attendance": [
"41 577"
],
"referee_matched": [],
"referee_found": [
"Mark Clattenburg"
],
"coach_matched": [
"Jose Mourinho"
],
"gameHomeTeam": "Chelsea",
"home": {
"name": "Chelsea",
"detail_link": "/team/chelsea/4fGZN2oK",
"hash": "4fGZN2oK",
"names": [
"Chelsea",
"chelsea"
]
},
"gameAwayTeam": "Liverpool",
"away": {
"name": "Liverpool",
"detail_link": "/team/liverpool/lId4TMwf",
"hash": "lId4TMwf",
"names": [
"Liverpool",
"Liverpool (Eng)",
"liverpool"
]
},
"gameDate": "31/10/2015 - 13:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. The visitors certainly had the better of things. The home team tried to prevail using combination football, while the away players attempted to win the ball back as quickly as possible every time they lost possession.",
"identified": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. The visitors certainly had the better of things. The home team tried to prevail using combination football, while the away players attempted to win the ball back as quickly as possible every time they lost possession.",
"anonymized": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. The visitors certainly had the better of things. The home team tried to prevail using combination football, while the away players attempted to win the ball back as quickly as possible every time they lost possession.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:28",
"label": "whistle",
"description": "That's the end of the match.",
"identified": "That's the end of the match.",
"anonymized": "That's the end of the match.",
"visibility": "shown",
"position": "2968000"
},
{
"important": false,
"gameTime": "2 - 48:08",
"label": "",
"description": "A cross by Kurt Zouma (Chelsea) from the side of the pitch flies into the box, but fails to find its intended target as the aim was poor.",
"identified": "A cross by [PLAYER_SKosf7jl] ([TEAM_]) from the side of the pitch flies into the box, but fails to find its intended target as the aim was poor.",
"anonymized": "A cross by [PLAYER] ([TEAM]) from the side of the pitch flies into the box, but fails to find its intended target as the aim was poor.",
"visibility": "shown",
"position": "2888000"
},
{
"important": false,
"gameTime": "2 - 46:18",
"label": "corner",
"description": "A horde of players are waiting inside the penalty area for a cross from the corner, but Philippe Coutinho (Liverpool) takes it short.",
"identified": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER_QP6r8H7O] ([TEAM_]) takes it short.",
"anonymized": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER] ([TEAM]) takes it short.",
"visibility": "shown",
"position": "2778000"
},
{
"important": false,
"gameTime": "2 - 46:01",
"label": "",
"description": "Philippe Coutinho (Liverpool) displays brilliant individual ability, gets inside the box and pulls the trigger. His promising effort is blocked by one of the defenders. The ball is out of play and the linesman points at the corner flag. Corner to Liverpool.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) displays brilliant individual ability, gets inside the box and pulls the trigger. His promising effort is blocked by one of the defenders. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) displays brilliant individual ability, gets inside the box and pulls the trigger. His promising effort is blocked by one of the defenders. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "2761000"
},
{
"important": true,
"gameTime": "2 - 45:50",
"label": "substitution",
"description": "A substitution has been made. Adam Lallana is replaced by Dejan Lovren (Liverpool).",
"identified": "A substitution has been made. [PLAYER_65ZQWgft] is replaced by [PLAYER_GAcQF9Z6] ([TEAM_]).",
"anonymized": "A substitution has been made. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2750000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "4 additional min. will be played.",
"identified": "4 additional min. will be played.",
"anonymized": "4 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 43:07",
"label": "",
"description": "The Chelsea players are displaying brilliant short passes and great ball movement. They are waiting to open the opposition's defence and hit them swiftly on the break.",
"identified": "The [TEAM_] players are displaying brilliant short passes and great ball movement. They are waiting to open the opposition's defence and hit them swiftly on the break.",
"anonymized": "The [TEAM] players are displaying brilliant short passes and great ball movement. They are waiting to open the opposition's defence and hit them swiftly on the break.",
"visibility": "shown",
"position": "2587000"
},
{
"important": true,
"gameTime": "2 - 40:08",
"label": "y-card",
"description": "Mark Clattenburg shows a yellow card to Christian Benteke (Liverpool) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_lAh68Xxm] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "2408000"
},
{
"important": true,
"gameTime": "2 - 37:32",
"label": "soccer-ball",
"description": "Christian Benteke (Liverpool) makes a great solo run and pulls the trigger from inside the box, beating Asmir Begovic with a strike into the bottom left corner. He makes it 1:3.",
"identified": "[PLAYER_lAh68Xxm] ([TEAM_]) makes a great solo run and pulls the trigger from inside the box, beating [PLAYER_xO2Ce0IG] with a strike into the bottom left corner. He makes it 1:3.",
"anonymized": "[PLAYER] ([TEAM]) makes a great solo run and pulls the trigger from inside the box, beating [PLAYER] with a strike into the bottom left corner. He makes it 1:3.",
"visibility": "shown",
"position": "2252000"
},
{
"important": false,
"gameTime": "2 - 36:40",
"label": "",
"description": "Willian (Chelsea) attempts to find one of his teammates with a cross from the resultant free kick, but he fails to hit the ball properly and sends it off the pitch.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) attempts to find one of his teammates with a cross from the resultant free kick, but he fails to hit the ball properly and sends it off the pitch.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a cross from the resultant free kick, but he fails to hit the ball properly and sends it off the pitch.",
"visibility": "shown",
"position": "2200000"
},
{
"important": false,
"gameTime": "2 - 36:01",
"label": "",
"description": "Emre Can (Liverpool) fouls an opponent. At least that's what referee Mark Clattenburg signals. Chelsea will take a free kick.",
"identified": "[PLAYER_YJu3hSpk] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM_] will take a free kick.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM] will take a free kick.",
"visibility": "shown",
"position": "2161000"
},
{
"important": false,
"gameTime": "2 - 35:17",
"label": "",
"description": "Emre Can (Liverpool) sends a long ball in, but Asmir Begovic comfortably gathers the ball.",
"identified": "[PLAYER_YJu3hSpk] ([TEAM_]) sends a long ball in, but [PLAYER_xO2Ce0IG] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "2117000"
},
{
"important": false,
"gameTime": "2 - 34:55",
"label": "corner",
"description": "Alberto Moreno (Liverpool) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_pdBI3oS8] ([TEAM_]) decides to speed play up with a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up with a short corner kick.",
"visibility": "shown",
"position": "2095000"
},
{
"important": false,
"gameTime": "2 - 34:33",
"label": "",
"description": "Jordon Ibe (Liverpool) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players. It will be a corner kick for Liverpool.",
"identified": "[PLAYER_thMRxyKg] ([TEAM_]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "2073000"
},
{
"important": false,
"gameTime": "2 - 33:59",
"label": "",
"description": "Diego Costa (Chelsea) produces an attempt from the edge of the box which would have most likely endangered the goalkeeper, but one of the defending players blocked it, so we can only speculate about the outcome.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) produces an attempt from the edge of the box which would have most likely endangered the goalkeeper, but one of the defending players blocked it, so we can only speculate about the outcome.",
"anonymized": "[PLAYER] ([TEAM]) produces an attempt from the edge of the box which would have most likely endangered the goalkeeper, but one of the defending players blocked it, so we can only speculate about the outcome.",
"visibility": "shown",
"position": "2039000"
},
{
"important": false,
"gameTime": "2 - 31:36",
"label": "corner",
"description": "The goalkeeper punched the ball away after Philippe Coutinho (Liverpool) took the corner.",
"identified": "The goalkeeper punched the ball away after [PLAYER_QP6r8H7O] ([TEAM_]) took the corner.",
"anonymized": "The goalkeeper punched the ball away after [PLAYER] ([TEAM]) took the corner.",
"visibility": "shown",
"position": "1896000"
},
{
"important": false,
"gameTime": "2 - 31:09",
"label": "",
"description": "Alberto Moreno (Liverpool) produced a promising shot towards the bottom left corner after his wonderful solo run, but Asmir Begovic thwarted him with a fabulous save and the score remains the same. The referee and his assistant both point at the corner flag. Liverpool will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_pdBI3oS8] ([TEAM_]) produced a promising shot towards the bottom left corner after his wonderful solo run, but [PLAYER_xO2Ce0IG] thwarted him with a fabulous save and the score remains the same. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) produced a promising shot towards the bottom left corner after his wonderful solo run, but [PLAYER] thwarted him with a fabulous save and the score remains the same. 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": "1869000"
},
{
"important": true,
"gameTime": "2 - 30:56",
"label": "substitution",
"description": "Jose Mourinho has decided to make a change. Falcao (Chelsea) replaces Cesar Azpilicueta.",
"identified": "[COACH_AwXQwGFe] has decided to make a change. [PLAYER_2oMimkAU] ([TEAM_]) replaces [PLAYER_CMGUADgt].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1856000"
},
{
"important": true,
"gameTime": "2 - 30:55",
"label": "substitution",
"description": "It is time for a substitution. Jordon Ibe (Liverpool) is on for Roberto Firmino.",
"identified": "It is time for a substitution. [PLAYER_thMRxyKg] ([TEAM_]) is on for [PLAYER_CCNtplZe].",
"anonymized": "It is time for a substitution. [PLAYER] ([TEAM]) is on for [PLAYER].",
"visibility": "shown",
"position": "1855000"
},
{
"important": true,
"gameTime": "2 - 28:58",
"label": "soccer-ball",
"description": "Goal! Philippe Coutinho (Liverpool) picks up the ball inside the box, finds himself in a good position and fires in a shot which is deflected past Asmir Begovic. He makes it 1:2.",
"identified": "Goal! [PLAYER_QP6r8H7O] ([TEAM_]) picks up the ball inside the box, finds himself in a good position and fires in a shot which is deflected past [PLAYER_xO2Ce0IG]. He makes it 1:2.",
"anonymized": "Goal! [PLAYER] ([TEAM]) picks up the ball inside the box, finds himself in a good position and fires in a shot which is deflected past [PLAYER]. He makes it 1:2.",
"visibility": "shown",
"position": "1738000"
},
{
"important": false,
"gameTime": "2 - 28:23",
"label": "",
"description": "Diego Costa (Chelsea) is flagged for offside.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) is flagged for offside.",
"anonymized": "[PLAYER] ([TEAM]) is flagged for offside.",
"visibility": "shown",
"position": "1703000"
},
{
"important": false,
"gameTime": "2 - 27:57",
"label": "",
"description": "Philippe Coutinho (Liverpool) sends a long cross over to Roberto Firmino, but Asmir Begovic comes forward to gather the ball.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) sends a long cross over to [PLAYER_CCNtplZe], but [PLAYER_xO2Ce0IG] comes forward to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long cross over to [PLAYER], but [PLAYER] comes forward to gather the ball.",
"visibility": "shown",
"position": "1677000"
},
{
"important": false,
"gameTime": "2 - 26:43",
"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": "1603000"
},
{
"important": false,
"gameTime": "2 - 26:04",
"label": "",
"description": "A great solo effort from Oscar (Chelsea) and he attempts to surprise the goalkeeper with a long-range shot towards the underside of the crossbar, but Simon Mignolet has a clear view of it and makes a comfortable save. Chelsea force a corner. Their opponents will face another attacking threat.",
"identified": "A great solo effort from [PLAYER_KfKDzbEo] ([TEAM_]) and he attempts to surprise the goalkeeper with a long-range shot towards the underside of the crossbar, but [PLAYER_YVcnMAp6] has a clear view of it and makes a comfortable save. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "A great solo effort from [PLAYER] ([TEAM]) and he attempts to surprise the goalkeeper with a long-range shot towards the underside of the crossbar, but [PLAYER] has a clear view of it and makes a comfortable save. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "1564000"
},
{
"important": true,
"gameTime": "2 - 24:54",
"label": "substitution",
"description": "The substitution has been made. Cesc Fabregas (Chelsea) has replaced John Obi Mikel.",
"identified": "The substitution has been made. [PLAYER_YXIDwoe5] ([TEAM_]) has replaced [PLAYER_8AkbVvN2].",
"anonymized": "The substitution has been made. [PLAYER] ([TEAM]) has replaced [PLAYER].",
"visibility": "shown",
"position": "1494000"
},
{
"important": false,
"gameTime": "2 - 22:35",
"label": "",
"description": "Lucas Leiva (Liverpool) was trying to get to the ball but clattered into the legs of the opponent as well. Mark Clattenburg blows his whistle for an infringement.",
"identified": "[PLAYER_t41Fn0KA] ([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": "1355000"
},
{
"important": true,
"gameTime": "2 - 21:00",
"label": "y-card",
"description": "John Obi Mikel (Chelsea) is booked after bringing down an opponent. Mark Clattenburg had an easy-decision to make.",
"identified": "[PLAYER_8AkbVvN2] ([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": "1260000"
},
{
"important": false,
"gameTime": "2 - 19:38",
"label": "",
"description": "Willian (Chelsea) puts a cross into the box from the free kick, but the defender gets there first.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) puts a cross into the box from the free kick, but the defender gets there first.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the free kick, but the defender gets there first.",
"visibility": "shown",
"position": "1178000"
},
{
"important": true,
"gameTime": "2 - 19:10",
"label": "y-card",
"description": "Emre Can (Liverpool) receives a yellow card for a nasty tackle.",
"identified": "[PLAYER_YJu3hSpk] ([TEAM_]) receives a yellow card for a nasty tackle.",
"anonymized": "[PLAYER] ([TEAM]) receives a yellow card for a nasty tackle.",
"visibility": "shown",
"position": "1150000"
},
{
"important": true,
"gameTime": "2 - 18:17",
"label": "substitution",
"description": "Substitution. James Milner will be replaced by Christian Benteke (Liverpool).",
"identified": "Substitution. [PLAYER_QLY3kAEt] will be replaced by [PLAYER_lAh68Xxm] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1097000"
},
{
"important": false,
"gameTime": "2 - 17:17",
"label": "",
"description": "A precise low pass is received by Adam Lallana (Liverpool), who makes a yard for himself on the edge of the box, but his poorly placed shot sails well wide of the left post.",
"identified": "A precise low pass is received by [PLAYER_65ZQWgft] ([TEAM_]), who makes a yard for himself on the edge of the box, but his poorly placed shot sails well wide of the left 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 left post.",
"visibility": "shown",
"position": "1037000"
},
{
"important": false,
"gameTime": "2 - 15:58",
"label": "",
"description": "Ramires (Chelsea) meets a cross just outside the area and gets in a strike from a promising position, but the shot is blocked by the defender.",
"identified": "[PLAYER_8APqwh2k] ([TEAM_]) meets a cross just outside the area and gets in a strike from a promising position, but the shot is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) meets a cross just outside the area and gets in a strike from a promising position, but the shot is blocked by the defender.",
"visibility": "shown",
"position": "958000"
},
{
"important": false,
"gameTime": "2 - 14:27",
"label": "",
"description": "jinks his way past two defenders and from the edge of the box has an effort which goes just wide of the left post.",
"identified": "jinks his way past two defenders and from the edge of the box has an effort which goes just wide of the left post.",
"anonymized": "jinks his way past two defenders and from the edge of the box has an effort which goes just wide of the left post.",
"visibility": "shown",
"position": "867000"
},
{
"important": true,
"gameTime": "2 - 13:22",
"label": "substitution",
"description": "Jose Mourinho prepares a substitution. Eden Hazard is replaced by Kenedy (Chelsea).",
"identified": "[COACH_AwXQwGFe] prepares a substitution. [PLAYER_QH2of5sJ] is replaced by [PLAYER_Crwqppk9] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "802000"
},
{
"important": true,
"gameTime": "2 - 12:52",
"label": "y-card",
"description": "Lucas Leiva (Liverpool) receives a yellow card for infringement.",
"identified": "[PLAYER_t41Fn0KA] ([TEAM_]) receives a yellow card for infringement.",
"anonymized": "[PLAYER] ([TEAM]) receives a yellow card for infringement.",
"visibility": "shown",
"position": "772000"
},
{
"important": false,
"gameTime": "2 - 10:16",
"label": "",
"description": "Roberto Firmino (Liverpool) has a sight of goal, fires a shot in from distance towards the bottom left corner and forces a good save out of Asmir Begovic.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) has a sight of goal, fires a shot in from distance towards the bottom left corner and forces a good save out of [PLAYER_xO2Ce0IG].",
"anonymized": "[PLAYER] ([TEAM]) has a sight of goal, fires a shot in from distance towards the bottom left corner and forces a good save out of [PLAYER].",
"visibility": "shown",
"position": "616000"
},
{
"important": false,
"gameTime": "2 - 09:33",
"label": "",
"description": "Alberto Moreno (Liverpool) gets on the ball and beats an opponent, but his run is stopped by the referee Mark Clattenburg who sees an offensive foul.",
"identified": "[PLAYER_pdBI3oS8] ([TEAM_]) gets on the ball and beats an opponent, but his run is stopped by the referee [REFEREE] who sees an offensive foul.",
"anonymized": "[PLAYER] ([TEAM]) gets on the ball and beats an opponent, but his run is stopped by the referee [REFEREE] who sees an offensive foul.",
"visibility": "shown",
"position": "573000"
},
{
"important": false,
"gameTime": "2 - 07:26",
"label": "corner",
"description": "Adam Lallana (Liverpool) takes the corner with a short pass.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) takes the corner with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner with a short pass.",
"visibility": "shown",
"position": "446000"
},
{
"important": false,
"gameTime": "2 - 07:02",
"label": "corner",
"description": "Adam Lallana (Liverpool) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat. The referee and one of his assistants signal for a corner kick to Liverpool.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) launches the ball from the resulting corner, but one of the defenders is first to the ball and deals with the threat. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "422000"
},
{
"important": false,
"gameTime": "2 - 06:29",
"label": "",
"description": "Liverpool players are playing combination football and attempting to create a goal-scoring opportunity, but they will have to wait for that as they have just lost possession due to a poor pass. Liverpool will take a corner kick.",
"identified": "[TEAM_] players are playing combination football and attempting to create a goal-scoring opportunity, but they will have to wait for that as they have just lost possession due to a poor pass. [TEAM_] will take a corner kick.",
"anonymized": "[TEAM] players are playing combination football and attempting to create a goal-scoring opportunity, but they will have to wait for that as they have just lost possession due to a poor pass. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "389000"
},
{
"important": false,
"gameTime": "2 - 06:08",
"label": "",
"description": "The resulting set piece, sent into the penalty area by Philippe Coutinho (Liverpool), was easily dealt with by one of the defenders.",
"identified": "The resulting set piece, sent into the penalty area by [PLAYER_QP6r8H7O] ([TEAM_]), was easily dealt with by one of the defenders.",
"anonymized": "The resulting set piece, sent into the penalty area by [PLAYER] ([TEAM]), was easily dealt with by one of the defenders.",
"visibility": "shown",
"position": "368000"
},
{
"important": false,
"gameTime": "2 - 05:57",
"label": "",
"description": "Ramires (Chelsea) was holding his opponent and can be glad he didn't receive a yellow card. Liverpool are given a free kick. Will they create any chance from that?",
"identified": "[PLAYER_8APqwh2k] ([TEAM_]) was holding his opponent and can be glad he didn't receive a yellow card. [TEAM_] are given a free kick. Will they create any chance from that?",
"anonymized": "[PLAYER] ([TEAM]) was holding his opponent and can be glad he didn't receive a yellow card. [TEAM] are given a free kick. Will they create any chance from that?",
"visibility": "shown",
"position": "357000"
},
{
"important": false,
"gameTime": "2 - 04:38",
"label": "",
"description": "Poor challenge! Diego Costa (Chelsea) is penalised for tripping and Mark Clattenburg blows his whistle. Liverpool have a free kick.",
"identified": "Poor challenge! [PLAYER_vBw5nir8] ([TEAM_]) is penalised for tripping and [REFEREE] blows his whistle. [TEAM_] have a free kick.",
"anonymized": "Poor challenge! [PLAYER] ([TEAM]) is penalised for tripping and [REFEREE] blows his whistle. [TEAM] have a free kick.",
"visibility": "shown",
"position": "278000"
},
{
"important": false,
"gameTime": "2 - 03:53",
"label": "",
"description": "Roberto Firmino (Liverpool) sprays a pass out to James Milner, but he can't beat his man inside the box. The ball goes out of play and Chelsea will have a goal kick.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) sprays a pass out to [PLAYER_QLY3kAEt], but he can't beat his man inside the box. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) sprays a pass out to [PLAYER], but he can't beat his man inside the box. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "233000"
},
{
"important": false,
"gameTime": "2 - 01:42",
"label": "",
"description": "Half-chance! Willian (Chelsea) plays a pass into the box, but Simon Mignolet reacts well to snuff out the attack.",
"identified": "Half-chance! [PLAYER_GSzdOhPI] ([TEAM_]) plays a pass into the box, but [PLAYER_YVcnMAp6] reacts well to snuff out the attack.",
"anonymized": "Half-chance! [PLAYER] ([TEAM]) plays a pass into the box, but [PLAYER] reacts well to snuff out the attack.",
"visibility": "shown",
"position": "102000"
},
{
"important": false,
"gameTime": "2 - 01:26",
"label": "",
"description": "The ball is cleared after Oscar (Chelsea) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_KfKDzbEo] ([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": "86000"
},
{
"important": false,
"gameTime": "2 - 00:44",
"label": "",
"description": "Kurt Zouma (Chelsea) decides to speed play up by quickly sending the free kick into the box.",
"identified": "[PLAYER_SKosf7jl] ([TEAM_]) decides to speed play up by quickly sending the free kick into the box.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up by quickly sending the free kick into the box.",
"visibility": "shown",
"position": "44000"
},
{
"important": false,
"gameTime": "2 - 00:21",
"label": "",
"description": "Alberto Moreno (Liverpool) brings an opponent down and Mark Clattenburg interrupts the game.",
"identified": "[PLAYER_pdBI3oS8] ([TEAM_]) brings an opponent down and [REFEREE] interrupts the game.",
"anonymized": "[PLAYER] ([TEAM]) brings an opponent down and [REFEREE] interrupts the game.",
"visibility": "shown",
"position": "21000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The second half has just started.",
"identified": "The second half has just started.",
"anonymized": "The second half has just started.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 48:59",
"label": "",
"description": "We can hope that the managers will be able to motivate the players and stir them to improve their performance for after the half-time break. We haven't seen really exciting football in the previous 45 minutes. There wasn't any evident superiority by either side during the first half. The home side are playing 'kick and rush' football, which is the exact opposite of the away team who are making a lot of passes and attempting to maintain possession.",
"identified": "We can hope that the managers will be able to motivate the players and stir them to improve their performance for after the half-time break. We haven't seen really exciting football in the previous 45 minutes. There wasn't any evident superiority by either side during the first half. The home side are playing 'kick and rush' football, which is the exact opposite of the away team who are making a lot of passes and attempting to maintain possession.",
"anonymized": "We can hope that the managers will be able to motivate the players and stir them to improve their performance for after the half-time break. We haven't seen really exciting football in the previous 45 minutes. There wasn't any evident superiority by either side during the first half. The home side are playing 'kick and rush' football, which is the exact opposite of the away team who are making a lot of passes and attempting to maintain possession.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "1 - 48:41",
"label": "whistle",
"description": "The end of the first half.",
"identified": "The end of the first half.",
"anonymized": "The end of the first half.",
"visibility": "shown",
"position": "2921000"
},
{
"important": true,
"gameTime": "1 - 47:40",
"label": "soccer-ball",
"description": "Philippe Coutinho (Liverpool) takes a great first touch to control a killer pass on the edge of the box and curls the ball inside the left post in trademark fashion.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) takes a great first touch to control a killer pass on the edge of the box and curls the ball inside the left post in trademark fashion.",
"anonymized": "[PLAYER] ([TEAM]) takes a great first touch to control a killer pass on the edge of the box and curls the ball inside the left post in trademark fashion.",
"visibility": "shown",
"position": "2860000"
},
{
"important": false,
"gameTime": "1 - 45:30",
"label": "",
"description": "The linesman signals that Lucas Leiva (Liverpool) is offside and the referee confirms the decision.",
"identified": "The linesman signals that [PLAYER_t41Fn0KA] ([TEAM_]) is offside and the referee confirms the decision.",
"anonymized": "The linesman signals that [PLAYER] ([TEAM]) is offside and the referee confirms the decision.",
"visibility": "shown",
"position": "2730000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "We will have 2 min. of added time.",
"identified": "We will have 2 min. of added time.",
"anonymized": "We will have 2 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:51",
"label": "",
"description": "James Milner (Liverpool) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"anonymized": "[PLAYER] ([TEAM]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"visibility": "shown",
"position": "2691000"
},
{
"important": false,
"gameTime": "1 - 44:15",
"label": "",
"description": "Emre Can (Liverpool) slides a pass forward, but one of the defenders cuts it out.",
"identified": "[PLAYER_YJu3hSpk] ([TEAM_]) slides a pass forward, but one of the defenders cuts it out.",
"anonymized": "[PLAYER] ([TEAM]) slides a pass forward, but one of the defenders cuts it out.",
"visibility": "shown",
"position": "2655000"
},
{
"important": false,
"gameTime": "1 - 42:34",
"label": "",
"description": "The referee blows his whistle as Adam Lallana (Liverpool) was too aggressive in his challenge. Chelsea win a free kick.",
"identified": "The referee blows his whistle as [PLAYER_65ZQWgft] ([TEAM_]) was too aggressive in his challenge. [TEAM_] win a free kick.",
"anonymized": "The referee blows his whistle as [PLAYER] ([TEAM]) was too aggressive in his challenge. [TEAM] win a free kick.",
"visibility": "shown",
"position": "2554000"
},
{
"important": false,
"gameTime": "1 - 40:25",
"label": "",
"description": "Diego Costa (Chelsea) makes a driving run into the box but he cannot work any space for a shot.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) makes a driving run into the box but he cannot work any space for a shot.",
"anonymized": "[PLAYER] ([TEAM]) makes a driving run into the box but he cannot work any space for a shot.",
"visibility": "shown",
"position": "2425000"
},
{
"important": false,
"gameTime": "1 - 38:01",
"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": "2281000"
},
{
"important": false,
"gameTime": "1 - 37:19",
"label": "injury",
"description": "Kurt Zouma (Chelsea) is asking for medical treatment, but he will have to leave the pitch in order to receive help from the physio.",
"identified": "[PLAYER_SKosf7jl] ([TEAM_]) is asking for medical treatment, but he will have to leave the pitch in order to receive help from the physio.",
"anonymized": "[PLAYER] ([TEAM]) is asking for medical treatment, but he will have to leave the pitch in order to receive help from the physio.",
"visibility": "shown",
"position": "2239000"
},
{
"important": false,
"gameTime": "1 - 36:37",
"label": "",
"description": "Lucas Leiva (Liverpool) rises above the defenders and places a towering header low towards the middle of the goal, but Asmir Begovic is prepared and thwarts him.",
"identified": "[PLAYER_t41Fn0KA] ([TEAM_]) rises above the defenders and places a towering header low towards the middle of the goal, but [PLAYER_xO2Ce0IG] is prepared and thwarts him.",
"anonymized": "[PLAYER] ([TEAM]) rises above the defenders and places a towering header low towards the middle of the goal, but [PLAYER] is prepared and thwarts him.",
"visibility": "shown",
"position": "2197000"
},
{
"important": false,
"gameTime": "1 - 35:28",
"label": "",
"description": "Foul! James Milner (Liverpool) is penalised for pulling back his opponent. Chelsea have been awarded a free kick.",
"identified": "Foul! [PLAYER_QLY3kAEt] ([TEAM_]) is penalised for pulling back his opponent. [TEAM_] have been awarded a free kick.",
"anonymized": "Foul! [PLAYER] ([TEAM]) is penalised for pulling back his opponent. [TEAM] have been awarded a free kick.",
"visibility": "shown",
"position": "2128000"
},
{
"important": false,
"gameTime": "1 - 34:40",
"label": "",
"description": "A cross into the box from Alberto Moreno (Liverpool) is cleared.",
"identified": "A cross into the box from [PLAYER_pdBI3oS8] ([TEAM_]) is cleared.",
"anonymized": "A cross into the box from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "2080000"
},
{
"important": false,
"gameTime": "1 - 32:26",
"label": "",
"description": "Alberto Moreno (Liverpool) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"identified": "[PLAYER_pdBI3oS8] ([TEAM_]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"visibility": "shown",
"position": "1946000"
},
{
"important": false,
"gameTime": "1 - 31:59",
"label": "",
"description": "The game is interrupted as Diego Costa (Chelsea) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_vBw5nir8] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "1919000"
},
{
"important": false,
"gameTime": "1 - 31:38",
"label": "",
"description": "John Obi Mikel (Chelsea) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_8AkbVvN2] ([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": "1898000"
},
{
"important": false,
"gameTime": "1 - 29:32",
"label": "",
"description": "Willian (Chelsea) floats the free kick into the box, but it's easily cleared by the first man.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) floats the free kick into the box, but it's easily cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) floats the free kick into the box, but it's easily cleared by the first man.",
"visibility": "shown",
"position": "1772000"
},
{
"important": false,
"gameTime": "1 - 28:35",
"label": "",
"description": "Emre Can (Liverpool) is penalised after knocking an opponent down. There is a free kick near the sideline to Chelsea.",
"identified": "[PLAYER_YJu3hSpk] ([TEAM_]) is penalised after knocking an opponent down. There is a free kick near the sideline to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) is penalised after knocking an opponent down. There is a free kick near the sideline to [TEAM].",
"visibility": "shown",
"position": "1715000"
},
{
"important": false,
"gameTime": "1 - 27:30",
"label": "",
"description": "The linesman raises his flag for offside before Adam Lallana (Liverpool) heads on.",
"identified": "The linesman raises his flag for offside before [PLAYER_65ZQWgft] ([TEAM_]) heads on.",
"anonymized": "The linesman raises his flag for offside before [PLAYER] ([TEAM]) heads on.",
"visibility": "shown",
"position": "1650000"
},
{
"important": false,
"gameTime": "1 - 27:15",
"label": "",
"description": "Nathaniel Clyne (Liverpool) tries to take the opposition by surprise with a quick free kick into the box.",
"identified": "[PLAYER_Eo9X2cTu] ([TEAM_]) tries to take the opposition by surprise with a quick free kick into the box.",
"anonymized": "[PLAYER] ([TEAM]) tries to take the opposition by surprise with a quick free kick into the box.",
"visibility": "shown",
"position": "1635000"
},
{
"important": false,
"gameTime": "1 - 26:40",
"label": "",
"description": "Diego Costa (Chelsea) makes a bad challenge and the referee blows his whistle for a foul. Liverpool earn a free kick.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) makes a bad challenge and the referee blows his whistle for a foul. [TEAM_] earn a free kick.",
"anonymized": "[PLAYER] ([TEAM]) makes a bad challenge and the referee blows his whistle for a foul. [TEAM] earn a free kick.",
"visibility": "shown",
"position": "1600000"
},
{
"important": false,
"gameTime": "1 - 25:21",
"label": "",
"description": "Adam Lallana (Liverpool) wastes a huge opportunity! He receives a precise cross inside the penalty area and releases a quick shot that sails towards the middle of a goal. His effort, however, lacks power and the goalkeeper makes a comfortable save.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) wastes a huge opportunity! He receives a precise cross inside the penalty area and releases a quick shot that sails towards the middle of a goal. His effort, however, lacks power and the goalkeeper makes a comfortable save.",
"anonymized": "[PLAYER] ([TEAM]) wastes a huge opportunity! He receives a precise cross inside the penalty area and releases a quick shot that sails towards the middle of a goal. His effort, however, lacks power and the goalkeeper makes a comfortable save.",
"visibility": "shown",
"position": "1521000"
},
{
"important": false,
"gameTime": "1 - 23:35",
"label": "",
"description": "Willian (Chelsea) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"anonymized": "[PLAYER] ([TEAM]) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"visibility": "shown",
"position": "1415000"
},
{
"important": true,
"gameTime": "1 - 23:08",
"label": "y-card",
"description": "Philippe Coutinho (Liverpool) has received a yellow card for his foul.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) has received a yellow card for his foul.",
"anonymized": "[PLAYER] ([TEAM]) has received a yellow card for his foul.",
"visibility": "shown",
"position": "1388000"
},
{
"important": false,
"gameTime": "1 - 21:44",
"label": "corner",
"description": "The corner from Alberto Moreno (Liverpool) is intercepted by Asmir Begovic.",
"identified": "The corner from [PLAYER_pdBI3oS8] ([TEAM_]) is intercepted by [PLAYER_xO2Ce0IG].",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by [PLAYER].",
"visibility": "shown",
"position": "1304000"
},
{
"important": false,
"gameTime": "1 - 21:24",
"label": "",
"description": "Liverpool are happy to keep the ball as they wait for gaps in defence to open up. However, an opposing player steps in and clears. The ball goes out for a corner. Liverpool can continue in their attacking effort.",
"identified": "[TEAM_] are happy to keep the ball as they wait for gaps in defence to open up. However, an opposing player steps in and clears. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[TEAM] are happy to keep the ball as they wait for gaps in defence to open up. However, an opposing player steps in and clears. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "1284000"
},
{
"important": false,
"gameTime": "1 - 20:27",
"label": "",
"description": "Chelsea continue the game with a quickly taken free kick.",
"identified": "[TEAM_] continue the game with a quickly taken free kick.",
"anonymized": "[TEAM] continue the game with a quickly taken free kick.",
"visibility": "shown",
"position": "1227000"
},
{
"important": false,
"gameTime": "1 - 20:05",
"label": "",
"description": "A clumsy foul by Emre Can (Liverpool) and Mark Clattenburg blows his whistle.",
"identified": "A clumsy foul by [PLAYER_YJu3hSpk] ([TEAM_]) and [REFEREE] blows his whistle.",
"anonymized": "A clumsy foul by [PLAYER] ([TEAM]) and [REFEREE] blows his whistle.",
"visibility": "shown",
"position": "1205000"
},
{
"important": false,
"gameTime": "1 - 18:31",
"label": "",
"description": "Adam Lallana (Liverpool) finds his way to a rebound on the edge of the box, shoots low to the middle of the goal, but the keeper is ready and denies him.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) finds his way to a rebound on the edge of the box, shoots low to the middle of the goal, but the keeper is ready and denies him.",
"anonymized": "[PLAYER] ([TEAM]) finds his way to a rebound on the edge of the box, shoots low to the middle of the goal, but the keeper is ready and denies him.",
"visibility": "shown",
"position": "1111000"
},
{
"important": false,
"gameTime": "1 - 17:26",
"label": "corner",
"description": "Asmir Begovic leaps to intercept the corner kick from Philippe Coutinho (Liverpool).",
"identified": "[PLAYER_xO2Ce0IG] leaps to intercept the corner kick from [PLAYER_QP6r8H7O] ([TEAM_]).",
"anonymized": "[PLAYER] leaps to intercept the corner kick from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1046000"
},
{
"important": false,
"gameTime": "1 - 17:11",
"label": "",
"description": "Philippe Coutinho (Liverpool) looks to break free, but an opposing player clears the ball away. The ball goes out of play. Liverpool are awarded a corner kick.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1031000"
},
{
"important": false,
"gameTime": "1 - 16:10",
"label": "",
"description": "The Liverpool players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"identified": "The [TEAM_] players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"anonymized": "The [TEAM] players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"visibility": "shown",
"position": "970000"
},
{
"important": false,
"gameTime": "1 - 14:33",
"label": "",
"description": "Nathaniel Clyne (Liverpool) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the left post.",
"identified": "[PLAYER_Eo9X2cTu] ([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.",
"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.",
"visibility": "shown",
"position": "873000"
},
{
"important": false,
"gameTime": "1 - 13:38",
"label": "",
"description": "Adam Lallana (Liverpool) should know this behaviour is beyond the rules. He was too careless with his challenge and left Mark Clattenburg no option but to blow his whistle. Free kick. Chelsea will probably just try to cross the ball in from here.",
"identified": "[PLAYER_65ZQWgft] ([TEAM_]) should know this behaviour is beyond the rules. He was too careless with his challenge and left [REFEREE] no option but to blow his whistle. Free kick. [TEAM_] will probably just try to cross the ball in from here.",
"anonymized": "[PLAYER] ([TEAM]) should know this behaviour is beyond the rules. He was too careless with his challenge and left [REFEREE] no option but to blow his whistle. Free kick. [TEAM] will probably just try to cross the ball in from here.",
"visibility": "shown",
"position": "818000"
},
{
"important": false,
"gameTime": "1 - 12:58",
"label": "",
"description": "Oscar (Chelsea) serves up a nice cross, but the defence clears the danger.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) serves up a nice cross, but the defence clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but the defence clears the danger.",
"visibility": "shown",
"position": "778000"
},
{
"important": false,
"gameTime": "1 - 11:32",
"label": "",
"description": "Roberto Firmino (Liverpool) sends a teasing cross into the area, but Asmir Begovic intercepts the ball.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_xO2Ce0IG] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "692000"
},
{
"important": false,
"gameTime": "1 - 10:51",
"label": "",
"description": "Adam Lallana (Liverpool) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_65ZQWgft] ([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": "651000"
},
{
"important": false,
"gameTime": "1 - 10:19",
"label": "",
"description": "Nathaniel Clyne (Liverpool) takes the free kick and immediately restarts play with a short pass.",
"identified": "[PLAYER_Eo9X2cTu] ([TEAM_]) takes the free kick and immediately restarts play with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the free kick and immediately restarts play with a short pass.",
"visibility": "shown",
"position": "619000"
},
{
"important": false,
"gameTime": "1 - 10:02",
"label": "",
"description": "Cesar Azpilicueta (Chelsea) brings down his opponent with a very late tackle. A free kick is awarded to Liverpool.",
"identified": "[PLAYER_CMGUADgt] ([TEAM_]) brings down his opponent with a very late tackle. A free kick is awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) brings down his opponent with a very late tackle. A free kick is awarded to [TEAM].",
"visibility": "shown",
"position": "602000"
}
]
} |