File size: 77,914 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 |
{
"timestamp": "1462629600",
"score": "3 - 2",
"round": "37",
"teams": [
"Chelsea",
"Sunderland"
],
"lineup": {
"home": {
"tactic": "1-4-1-4-1",
"players": [
{
"hash": "vgf4LRaj",
"name": "Borini F.",
"captain": "",
"detail_link": "/player/borini-fabio/vgf4LRaj/",
"short_name": "Borini",
"shirt_number": "9",
"country": "Italy",
"facts": [
{
"type": "3",
"time": "67' Borini F. (van Aanholt P.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Fabio Borini"
},
{
"hash": "Is8awtW8",
"name": "Cattermole L.",
"captain": "(C)",
"detail_link": "/player/cattermole-lee/Is8awtW8/",
"short_name": "Cattermole",
"shirt_number": "6",
"country": "England",
"facts": [
{
"type": "1",
"time": "52' Cattermole L. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "71'",
"description": "Larsson S.",
"linked_player_hash": "OY3yOlyl"
}
],
"lineup": 8,
"starting": true,
"long_name": "Lee Barry Cattermole"
},
{
"hash": "QDtjHrsH",
"name": "Defoe J.",
"captain": "",
"detail_link": "/player/defoe-jermain/QDtjHrsH/",
"short_name": "Defoe",
"shirt_number": "18",
"country": "England",
"facts": [
{
"type": "3",
"time": "70' Defoe J. (Yedlin D.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "70' Defoe J. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Jermain Defoe"
},
{
"hash": "pKEB1MVr",
"name": "Kaboul Y.",
"captain": "",
"detail_link": "/player/kaboul-younes/pKEB1MVr/",
"short_name": "Kaboul",
"shirt_number": "15",
"country": "France",
"facts": [
{
"type": "1",
"time": "87' Kaboul Y. (Delay of game)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Younes Kaboul"
},
{
"hash": "Q7VDuZr1",
"name": "Khazri W.",
"captain": "",
"detail_link": "/player/khazri-wahbi/Q7VDuZr1/",
"short_name": "Khazri",
"shirt_number": "22",
"country": "Tunisia",
"facts": [
{
"type": "3",
"time": "41' Khazri W.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Wahbi Khazri"
},
{
"hash": "Mitwh9ZL",
"name": "Kirchhoff J.",
"captain": "",
"detail_link": "/player/kirchhoff-jan/Mitwh9ZL/",
"short_name": "Kirchhoff",
"shirt_number": "27",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "64'",
"description": "Watmore D.",
"linked_player_hash": "EF5xKj4t"
}
],
"lineup": 6,
"starting": true,
"long_name": "Jan Kirchhoff"
},
{
"hash": "z5wQhaaf",
"name": "Kone L.",
"captain": "",
"detail_link": "/player/kone-lamine/z5wQhaaf/",
"short_name": "Kone",
"shirt_number": "23",
"country": "Ivory Coast",
"facts": [
{
"type": "6",
"time": "55'",
"description": "O'Shea J.",
"linked_player_hash": "dtoEGjd5"
}
],
"lineup": 3,
"starting": true,
"long_name": "Lamine Kone"
},
{
"hash": "GKEd9ext",
"name": "Mannone V.",
"captain": "",
"detail_link": "/player/mannone-vito/GKEd9ext/",
"short_name": "Mannone",
"shirt_number": "25",
"country": "Italy",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Vito Mannone"
},
{
"hash": "GOdGE1cn",
"name": "M'Vila Y.",
"captain": "",
"detail_link": "/player/m-vila-yann/GOdGE1cn/",
"short_name": "M'Vila",
"shirt_number": "21",
"country": "France",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Yann M'Vila"
},
{
"hash": "GxbOZOLI",
"name": "van Aanholt P.",
"captain": "",
"detail_link": "/player/van-aanholt-patrick/GxbOZOLI/",
"short_name": "van Aanholt",
"shirt_number": "3",
"country": "Netherlands",
"facts": [
{
"type": "8",
"time": "67' Borini F. (van Aanholt P.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Patrick van Aanholt"
},
{
"hash": "EmByTsz3",
"name": "Yedlin D.",
"captain": "",
"detail_link": "/player/yedlin-deandre/EmByTsz3/",
"short_name": "Yedlin",
"shirt_number": "24",
"country": "USA",
"facts": [
{
"type": "8",
"time": "70' Defoe J. (Yedlin D.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "DeAndre Yedlin"
},
{
"hash": "OY3yOlyl",
"name": "Larsson S.",
"captain": "",
"detail_link": "/player/larsson-sebastian/OY3yOlyl/",
"short_name": "Larsson",
"shirt_number": "7",
"country": "Sweden",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Cattermole L.",
"linked_player_hash": "Is8awtW8"
},
{
"type": "1",
"time": "88' Larsson S. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Sebastian Larsson"
},
{
"hash": "2wrNt1bc",
"name": "Lens J.",
"captain": "",
"detail_link": "/player/lens-jeremain/2wrNt1bc/",
"short_name": "Lens",
"shirt_number": "17",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jeremain Lens"
},
{
"hash": "fJZl3mY3",
"name": "N'Doye D.",
"captain": "",
"detail_link": "/player/n-doye-dame/fJZl3mY3/",
"short_name": "N'Doye",
"shirt_number": "10",
"country": "Senegal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Dame N'Doye"
},
{
"hash": "dtoEGjd5",
"name": "O'Shea J.",
"captain": "",
"detail_link": "/player/o-shea-john/dtoEGjd5/",
"short_name": "O'Shea",
"shirt_number": "16",
"country": "Ireland",
"facts": [
{
"type": "7",
"time": "55'",
"description": "Kone L.",
"linked_player_hash": "z5wQhaaf"
}
],
"lineup": null,
"starting": false,
"long_name": "John O'Shea"
},
{
"hash": "SKTJdUtH",
"name": "Pickford J.",
"captain": "",
"detail_link": "/player/pickford-jordan/SKTJdUtH/",
"short_name": "Pickford",
"shirt_number": "13",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jordan Pickford"
},
{
"hash": "GnFDoQHr",
"name": "Rodwell J.",
"captain": "",
"detail_link": "/player/rodwell-jack/GnFDoQHr/",
"short_name": "Rodwell",
"shirt_number": "8",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jack Rodwell"
},
{
"hash": "EF5xKj4t",
"name": "Watmore D.",
"captain": "",
"detail_link": "/player/watmore-duncan/EF5xKj4t/",
"short_name": "Watmore",
"shirt_number": "41",
"country": "England",
"facts": [
{
"type": "7",
"time": "64'",
"description": "Kirchhoff J.",
"linked_player_hash": "Mitwh9ZL"
}
],
"lineup": null,
"starting": false,
"long_name": "Duncan Watmore"
}
],
"coach": [
{
"hash": "niGIuTj0",
"name": "Allardyce S.",
"captain": "",
"detail_link": "/player/allardyce-samuel/niGIuTj0/",
"short_name": "Allardyce S.",
"shirt_number": "",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Samuel Allardyce"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "CMGUADgt",
"name": "Azpilicueta C.",
"captain": "",
"detail_link": "/player/azpilicueta-cesar/CMGUADgt/",
"short_name": "Azpilicueta",
"shirt_number": "28",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "45+3' Matic N. (Azpilicueta C.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Cesar Azpilicueta"
},
{
"hash": "pKpkgR1U",
"name": "Cahill G.",
"captain": "",
"detail_link": "/player/cahill-gary/pKpkgR1U/",
"short_name": "Cahill",
"shirt_number": "24",
"country": "England",
"facts": [
{
"type": "1",
"time": "1' Cahill G. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Gary Cahill"
},
{
"hash": "vBw5nir8",
"name": "Costa D.",
"captain": "",
"detail_link": "/player/costa-diego/vBw5nir8/",
"short_name": "Costa",
"shirt_number": "19",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "14' Costa D.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Diego Costa"
},
{
"hash": "MVExOq3n",
"name": "Courtois T.",
"captain": "",
"detail_link": "/player/courtois-thibaut/MVExOq3n/",
"short_name": "Courtois",
"shirt_number": "13",
"country": "Belgium",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Thibaut Courtois"
},
{
"hash": "YXIDwoe5",
"name": "Fabregas C.",
"captain": "",
"detail_link": "/player/fabregas-cesc/YXIDwoe5/",
"short_name": "Fabregas",
"shirt_number": "4",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Cesc Fabregas"
},
{
"hash": "QH2of5sJ",
"name": "Hazard E.",
"captain": "",
"detail_link": "/player/hazard-eden/QH2of5sJ/",
"short_name": "Hazard",
"shirt_number": "10",
"country": "Belgium",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Eden Hazard"
},
{
"hash": "Qe3xUmHo",
"name": "Ivanovic B.",
"captain": "",
"detail_link": "/player/ivanovic-branislav/Qe3xUmHo/",
"short_name": "Ivanovic",
"shirt_number": "2",
"country": "Serbia",
"facts": [
{
"type": "6",
"time": "68'",
"description": "Baba A.",
"linked_player_hash": "K2yVXyhU"
}
],
"lineup": 2,
"starting": true,
"long_name": "Branislav Ivanovic"
},
{
"hash": "Kty10JVG",
"name": "Matic N.",
"captain": "",
"detail_link": "/player/matic-nemanja/Kty10JVG/",
"short_name": "Matic",
"shirt_number": "21",
"country": "Serbia",
"facts": [
{
"type": "3",
"time": "45+3' Matic N. (Azpilicueta C.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Nemanja Matic"
},
{
"hash": "8AkbVvN2",
"name": "Mikel J. O.",
"captain": "",
"detail_link": "/player/mikel-john-obi/8AkbVvN2/",
"short_name": "Mikel",
"shirt_number": "12",
"country": "Nigeria",
"facts": [
{
"type": "6",
"time": "83'",
"description": "Traore B.",
"linked_player_hash": "MwckEcbf"
}
],
"lineup": 6,
"starting": true,
"long_name": "John Obi Mikel"
},
{
"hash": "0AovoI68",
"name": "Terry J.",
"captain": "(C)",
"detail_link": "/player/terry-john/0AovoI68/",
"short_name": "Terry",
"shirt_number": "26",
"country": "England",
"facts": [
{
"type": "1",
"time": "87' Terry J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"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": "6",
"time": "80'",
"description": "Oscar",
"linked_player_hash": "KfKDzbEo"
}
],
"lineup": 8,
"starting": true,
"long_name": "Willian"
},
{
"hash": "K2yVXyhU",
"name": "Baba A.",
"captain": "",
"detail_link": "/player/baba-rahman/K2yVXyhU/",
"short_name": "Baba",
"shirt_number": "6",
"country": "Ghana",
"facts": [
{
"type": "7",
"time": "68'",
"description": "Ivanovic B.",
"linked_player_hash": "Qe3xUmHo"
}
],
"lineup": null,
"starting": false,
"long_name": "Abdul-Rahman Baba"
},
{
"hash": "xO2Ce0IG",
"name": "Begovic A.",
"captain": "",
"detail_link": "/player/begovic-asmir/xO2Ce0IG/",
"short_name": "Begovic",
"shirt_number": "1",
"country": "Bosnia and Herzegovina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Asmir Begovic"
},
{
"hash": "Crwqppk9",
"name": "Kenedy",
"captain": "",
"detail_link": "/player/kenedy/Crwqppk9/",
"short_name": "Kenedy",
"shirt_number": "16",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kenedy"
},
{
"hash": "6DpURWF8",
"name": "Loftus-Cheek R.",
"captain": "",
"detail_link": "/player/loftus-cheek-ruben/6DpURWF8/",
"short_name": "Loftus-Cheek",
"shirt_number": "36",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ruben Loftus-Cheek"
},
{
"hash": "KfKDzbEo",
"name": "Oscar",
"captain": "",
"detail_link": "/player/oscar/KfKDzbEo/",
"short_name": "Oscar",
"shirt_number": "8",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "80'",
"description": "Willian",
"linked_player_hash": "GSzdOhPI"
}
],
"lineup": null,
"starting": false,
"long_name": "Oscar"
},
{
"hash": "Acxka2u3",
"name": "Pato",
"captain": "",
"detail_link": "/player/pato-alexandre/Acxka2u3/",
"short_name": "Pato",
"shirt_number": "11",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Pato"
},
{
"hash": "MwckEcbf",
"name": "Traore B.",
"captain": "",
"detail_link": "/player/traore-bertrand/MwckEcbf/",
"short_name": "Traore",
"shirt_number": "14",
"country": "Burkina Faso",
"facts": [
{
"type": "7",
"time": "83'",
"description": "Mikel J. O.",
"linked_player_hash": "8AkbVvN2"
}
],
"lineup": null,
"starting": false,
"long_name": "Bertrand Traore"
}
],
"coach": [
{
"hash": "CGfbv5C1",
"name": "Hiddink G.",
"captain": "",
"detail_link": "/player/hiddink-guus/CGfbv5C1/",
"short_name": "Hiddink G.",
"shirt_number": "",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Guus Hiddink"
}
]
}
},
"referee": [
"Jones M."
],
"venue": [
"Stadium of Light (Sunderland)"
],
"attendance": [
"47 050"
],
"referee_matched": [
"Mike Jones"
],
"referee_found": [
"Mike Jones"
],
"coach_matched": [
"Guus Hiddink"
],
"gameHomeTeam": "Sunderland",
"home": {
"name": "Sunderland",
"detail_link": "/team/sunderland/WSzc94ws",
"hash": "WSzc94ws",
"names": [
"Sunderland",
"sunderland"
]
},
"gameAwayTeam": "Chelsea",
"away": {
"name": "Chelsea",
"detail_link": "/team/chelsea/4fGZN2oK",
"hash": "4fGZN2oK",
"names": [
"Chelsea",
"chelsea"
]
},
"gameDate": "07/05/2016 - 16:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 50:59",
"label": "",
"description": "The fans in the stadium certainly won't regret buying tickets as they witnessed a great game today. Sunderland were better today and displayed masterful control and movement. Both sides tried to combine well and to keep the ball at their feet.",
"identified": "The fans in the stadium certainly won't regret buying tickets as they witnessed a great game today. [TEAM_] were better today and displayed masterful control and movement. Both sides tried to combine well and to keep the ball at their feet.",
"anonymized": "The fans in the stadium certainly won't regret buying tickets as they witnessed a great game today. [TEAM] were better today and displayed masterful control and movement. Both sides tried to combine well and to keep the ball at their feet.",
"visibility": "shown",
"position": "3059000"
},
{
"important": true,
"gameTime": "2 - 50:43",
"label": "whistle",
"description": "The match has just finished.",
"identified": "The match has just finished.",
"anonymized": "The match has just finished.",
"visibility": "shown",
"position": "3043000"
},
{
"important": true,
"gameTime": "2 - 49:33",
"label": "yr-card",
"description": "This was really stupid from John Terry (Chelsea)! He is booked for the second time today and is forced to leave the pitch after seeing a red card in the hand of Mike Jones.",
"identified": "This was really stupid from [PLAYER_0AovoI68] ([TEAM_])! He is booked for the second time today and is forced to leave the pitch after seeing a red card in the hand of [REFEREE].",
"anonymized": "This was really stupid from [PLAYER] ([TEAM])! He is booked for the second time today and is forced to leave the pitch after seeing a red card in the hand of [REFEREE].",
"visibility": "shown",
"position": "2973000"
},
{
"important": false,
"gameTime": "2 - 48:15",
"label": "",
"description": "Good touch by Fabio Borini (Sunderland) as he receives a great pass and attempts to threaten the goalkeeper with his long-range strike. Unfortunately for him, the effort misses the net and flies well wide to the right.",
"identified": "Good touch by [PLAYER_vgf4LRaj] ([TEAM_]) as he receives a great pass and attempts to threaten the goalkeeper with his long-range strike. Unfortunately for him, the effort misses the net and flies well wide to the right.",
"anonymized": "Good touch by [PLAYER] ([TEAM]) as he receives a great pass and attempts to threaten the goalkeeper with his long-range strike. Unfortunately for him, the effort misses the net and flies well wide to the right.",
"visibility": "shown",
"position": "2895000"
},
{
"important": false,
"gameTime": "2 - 47:34",
"label": "",
"description": "A pass by Bertrand Traore (Chelsea) ends up in no man's land, and the attacking effort comes to an end.",
"identified": "A pass by [PLAYER_MwckEcbf] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end.",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end.",
"visibility": "shown",
"position": "2854000"
},
{
"important": false,
"gameTime": "2 - 46:39",
"label": "",
"description": "The Sunderland players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"identified": "The [TEAM_] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"anonymized": "The [TEAM] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"visibility": "shown",
"position": "2799000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "There will be a minimum of 5 min. of added time.",
"identified": "There will be a minimum of 5 min. of added time.",
"anonymized": "There will be a minimum of 5 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 43:45",
"label": "",
"description": "John O'Shea (Sunderland) trips an opponent with a slide tackle. Mike Jones stops the game and he could give him a card, but eventually decides on just a warning. Chelsea earn a free kick which could lead to a goal-scoring opportunity.",
"identified": "[PLAYER_dtoEGjd5] ([TEAM_]) trips an opponent with a slide tackle. [REFEREE] stops the game and he could give him a card, but eventually decides on just a warning. [TEAM_] earn a free kick which could lead to a goal-scoring opportunity.",
"anonymized": "[PLAYER] ([TEAM]) trips an opponent with a slide tackle. [REFEREE] stops the game and he could give him a card, but eventually decides on just a warning. [TEAM] earn a free kick which could lead to a goal-scoring opportunity.",
"visibility": "shown",
"position": "2625000"
},
{
"important": true,
"gameTime": "2 - 42:58",
"label": "y-card",
"description": "The referee shows the yellow card to Sebastian Larsson (Sunderland).",
"identified": "The referee shows the yellow card to [PLAYER_OY3yOlyl] ([TEAM_]).",
"anonymized": "The referee shows the yellow card to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2578000"
},
{
"important": false,
"gameTime": "2 - 42:33",
"label": "attendance",
"description": "The attendance is 47050.",
"identified": "The attendance is 47050.",
"anonymized": "The attendance is 47050.",
"visibility": "shown",
"position": "2553000"
},
{
"important": true,
"gameTime": "2 - 41:50",
"label": "y-card",
"description": "It's a yellow card for Younes Kaboul (Sunderland).",
"identified": "It's a yellow card for [PLAYER_pKEB1MVr] ([TEAM_]).",
"anonymized": "It's a yellow card for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2510000"
},
{
"important": true,
"gameTime": "2 - 41:39",
"label": "y-card",
"description": "John Terry (Chelsea) gets a yellow card. The referee Mike Jones made the right call.",
"identified": "[PLAYER_0AovoI68] ([TEAM_]) gets a yellow card. The referee [REFEREE] made the right call.",
"anonymized": "[PLAYER] ([TEAM]) gets a yellow card. The referee [REFEREE] made the right call.",
"visibility": "shown",
"position": "2499000"
},
{
"important": false,
"gameTime": "2 - 41:36",
"label": "",
"description": "John Terry (Chelsea) commits a foul after bringing down his opponent with a slide tackle. It's a free kick to Sunderland, but they probably won't attempt a direct shot on goal from here.",
"identified": "[PLAYER_0AovoI68] ([TEAM_]) commits a foul after bringing down his opponent with a slide tackle. It's a free kick to [TEAM_], but they probably won't attempt a direct shot on goal from here.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after bringing down his opponent with a slide tackle. It's a free kick to [TEAM], but they probably won't attempt a direct shot on goal from here.",
"visibility": "shown",
"position": "2496000"
},
{
"important": false,
"gameTime": "2 - 38:46",
"label": "",
"description": "Jermain Defoe (Sunderland) is penalised for a foul. Mike Jones had a clear view and blows his whistle.",
"identified": "[PLAYER_QDtjHrsH] ([TEAM_]) is penalised for a foul. [REFEREE] had a clear view and blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for a foul. [REFEREE] had a clear view and blows his whistle.",
"visibility": "shown",
"position": "2326000"
},
{
"important": true,
"gameTime": "2 - 37:51",
"label": "substitution",
"description": "Guus Hiddink has decided to make a change. Bertrand Traore (Chelsea) replaces John Obi Mikel.",
"identified": "[COACH_CGfbv5C1] has decided to make a change. [PLAYER_MwckEcbf] ([TEAM_]) replaces [PLAYER_8AkbVvN2].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "2271000"
},
{
"important": false,
"gameTime": "2 - 35:52",
"label": "",
"description": "The Chelsea players are exchanging some short passes.",
"identified": "The [TEAM_] players are exchanging some short passes.",
"anonymized": "The [TEAM] players are exchanging some short passes.",
"visibility": "shown",
"position": "2152000"
},
{
"important": true,
"gameTime": "2 - 34:39",
"label": "substitution",
"description": "Oscar (Chelsea) joins the action as a substitute, replacing Willian.",
"identified": "[PLAYER_KfKDzbEo] ([TEAM_]) joins the action as a substitute, replacing [PLAYER_GSzdOhPI].",
"anonymized": "[PLAYER] ([TEAM]) joins the action as a substitute, replacing [PLAYER].",
"visibility": "shown",
"position": "2079000"
},
{
"important": false,
"gameTime": "2 - 32:27",
"label": "",
"description": "Diego Costa (Chelsea) is caught offside by the linesman and it looks like it is the right decision despite being a very close call.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) is caught offside by the linesman and it looks like it is the right decision despite being a very close call.",
"anonymized": "[PLAYER] ([TEAM]) is caught offside by the linesman and it looks like it is the right decision despite being a very close call.",
"visibility": "shown",
"position": "1947000"
},
{
"important": false,
"gameTime": "2 - 31:58",
"label": "",
"description": "Good clearance! Diego Costa (Chelsea) received a low pass, but he didn't have time to do anything as one of the defenders quickly stole the ball off him.",
"identified": "Good clearance! [PLAYER_vBw5nir8] ([TEAM_]) received a low pass, but he didn't have time to do anything as one of the defenders quickly stole the ball off him.",
"anonymized": "Good clearance! [PLAYER] ([TEAM]) received a low pass, but he didn't have time to do anything as one of the defenders quickly stole the ball off him.",
"visibility": "shown",
"position": "1918000"
},
{
"important": false,
"gameTime": "2 - 29:55",
"label": "corner",
"description": "Wahbi Khazri (Sunderland) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"identified": "[PLAYER_Q7VDuZr1] ([TEAM_]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"visibility": "shown",
"position": "1795000"
},
{
"important": false,
"gameTime": "2 - 28:58",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) takes the corner which is cleared by the opposition's defence.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) takes the corner which is cleared by the opposition's defence.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared by the opposition's defence.",
"visibility": "shown",
"position": "1738000"
},
{
"important": true,
"gameTime": "2 - 28:53",
"label": "",
"description": "Willian (Chelsea) takes the mid-range free kick and sends it towards the roof of the net, but he is denied by the goalkeeper. Good work from Chelsea as they win a corner.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) takes the mid-range free kick and sends it towards the roof of the net, but he is denied by the goalkeeper. Good work from [TEAM_] as they win a corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the mid-range free kick and sends it towards the roof of the net, but he is denied by the goalkeeper. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "1733000"
},
{
"important": false,
"gameTime": "2 - 27:49",
"label": "",
"description": "Patrick van Aanholt (Sunderland) trips an opposition player and Mike Jones signals a foul. Chelsea have a free kick from a promising distance.",
"identified": "[PLAYER_GxbOZOLI] ([TEAM_]) trips an opposition player and [REFEREE] signals a foul. [TEAM_] have a free kick from a promising distance.",
"anonymized": "[PLAYER] ([TEAM]) trips an opposition player and [REFEREE] signals a foul. [TEAM] have a free kick from a promising distance.",
"visibility": "shown",
"position": "1669000"
},
{
"important": true,
"gameTime": "2 - 25:35",
"label": "substitution",
"description": "Today's match ends for Lee Cattermole who will be replaced by Sebastian Larsson (Sunderland).",
"identified": "Today's match ends for [PLAYER_Is8awtW8] who will be replaced by [PLAYER_OY3yOlyl] ([TEAM_]).",
"anonymized": "Today's match ends for [PLAYER] who will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1535000"
},
{
"important": true,
"gameTime": "2 - 24:50",
"label": "y-card",
"description": "Jermain Defoe (Sunderland) picks up a yellow card.",
"identified": "[PLAYER_QDtjHrsH] ([TEAM_]) picks up a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) picks up a yellow card.",
"visibility": "shown",
"position": "1490000"
},
{
"important": true,
"gameTime": "2 - 24:44",
"label": "soccer-ball",
"description": "Goal! Jermain Defoe (Sunderland) fires the rebound into the bottom left corner after the ball breaks to him in the box. The score is 3:2.",
"identified": "Goal! [PLAYER_QDtjHrsH] ([TEAM_]) fires the rebound into the bottom left corner after the ball breaks to him in the box. The score is 3:2.",
"anonymized": "Goal! [PLAYER] ([TEAM]) fires the rebound into the bottom left corner after the ball breaks to him in the box. The score is 3:2.",
"visibility": "shown",
"position": "1484000"
},
{
"important": true,
"gameTime": "2 - 22:33",
"label": "substitution",
"description": "We are about to witness a substitution. Baba Rahman (Chelsea) is replacing Branislav Ivanovic.",
"identified": "We are about to witness a substitution. [PLAYER_K2yVXyhU] ([TEAM_]) is replacing [PLAYER_Qe3xUmHo].",
"anonymized": "We are about to witness a substitution. [PLAYER] ([TEAM]) is replacing [PLAYER].",
"visibility": "shown",
"position": "1353000"
},
{
"important": true,
"gameTime": "2 - 21:49",
"label": "soccer-ball",
"description": "Goal! Patrick van Aanholt slips it to Fabio Borini (Sunderland) on the edge of the box and he finds the bottom left corner with a great effort. The score is 2:2.",
"identified": "Goal! [PLAYER_GxbOZOLI] slips it to [PLAYER_vgf4LRaj] ([TEAM_]) on the edge of the box and he finds the bottom left corner with a great effort. The score is 2:2.",
"anonymized": "Goal! [PLAYER] slips it to [PLAYER] ([TEAM]) on the edge of the box and he finds the bottom left corner with a great effort. The score is 2:2.",
"visibility": "shown",
"position": "1309000"
},
{
"important": false,
"gameTime": "2 - 20:51",
"label": "",
"description": "Lee Cattermole (Sunderland) brings his opponent down. Mike Jones has a clear sight of it and blows his whistle for a foul.",
"identified": "[PLAYER_Is8awtW8] ([TEAM_]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul.",
"visibility": "shown",
"position": "1251000"
},
{
"important": true,
"gameTime": "2 - 18:50",
"label": "substitution",
"description": "It's time for a substitution. Duncan Watmore (Sunderland) comes on in place of Jan Kirchhoff.",
"identified": "It's time for a substitution. [PLAYER_EF5xKj4t] ([TEAM_]) comes on in place of [PLAYER_Mitwh9ZL].",
"anonymized": "It's time for a substitution. [PLAYER] ([TEAM]) comes on in place of [PLAYER].",
"visibility": "shown",
"position": "1130000"
},
{
"important": false,
"gameTime": "2 - 18:38",
"label": "",
"description": "A cross from the corner kick arrives at the feet of Lee Cattermole (Sunderland), giving him an opportunity to shoot. He misses completely, way over the bar.",
"identified": "A cross from the corner kick arrives at the feet of [PLAYER_Is8awtW8] ([TEAM_]), giving him an opportunity to shoot. He misses completely, way over the bar.",
"anonymized": "A cross from the corner kick arrives at the feet of [PLAYER] ([TEAM]), giving him an opportunity to shoot. He misses completely, way over the bar.",
"visibility": "shown",
"position": "1118000"
},
{
"important": false,
"gameTime": "2 - 18:33",
"label": "corner",
"description": "Wahbi Khazri (Sunderland) will try to find the head of one of his teammates from a corner kick.",
"identified": "[PLAYER_Q7VDuZr1] ([TEAM_]) will try to find the head of one of his teammates from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will try to find the head of one of his teammates from a corner kick.",
"visibility": "shown",
"position": "1113000"
},
{
"important": false,
"gameTime": "2 - 18:19",
"label": "",
"description": "Fabio Borini (Sunderland) sends a pass into the box, but his attempt is thwarted and cleared. The referee points to the corner flag. It's a corner to Sunderland.",
"identified": "[PLAYER_vgf4LRaj] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "1099000"
},
{
"important": true,
"gameTime": "2 - 16:49",
"label": "",
"description": "Vito Mannone pulls off a great save to deny Diego Costa (Chelsea), who makes himself some space inside the box and unleashes a quick shot towards the middle of the goal.",
"identified": "[PLAYER_GKEd9ext] pulls off a great save to deny [PLAYER_vBw5nir8] ([TEAM_]), who makes himself some space inside the box and unleashes a quick shot towards the middle of the goal.",
"anonymized": "[PLAYER] pulls off a great save to deny [PLAYER] ([TEAM]), who makes himself some space inside the box and unleashes a quick shot towards the middle of the goal.",
"visibility": "shown",
"position": "1009000"
},
{
"important": false,
"gameTime": "2 - 14:36",
"label": "corner",
"description": "The resulting corner from Wahbi Khazri (Sunderland) is cleared by the opposition's defence.",
"identified": "The resulting corner from [PLAYER_Q7VDuZr1] ([TEAM_]) is cleared by the opposition's defence.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared by the opposition's defence.",
"visibility": "shown",
"position": "876000"
},
{
"important": false,
"gameTime": "2 - 14:24",
"label": "",
"description": "Fabio Borini (Sunderland) passes the ball into the box but an opposing player clears. The ball goes out of play. Sunderland are awarded a corner kick.",
"identified": "[PLAYER_vgf4LRaj] ([TEAM_]) passes the ball into the box but an opposing player clears. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) passes the ball into the box but an opposing player clears. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "864000"
},
{
"important": false,
"gameTime": "2 - 13:09",
"label": "",
"description": "Jan Kirchhoff (Sunderland) sprays a pass out to Jermain Defoe, but he can't beat his man inside the box.",
"identified": "[PLAYER_Mitwh9ZL] ([TEAM_]) sprays a pass out to [PLAYER_QDtjHrsH], but he can't beat his man inside the box.",
"anonymized": "[PLAYER] ([TEAM]) sprays a pass out to [PLAYER], but he can't beat his man inside the box.",
"visibility": "shown",
"position": "789000"
},
{
"important": false,
"gameTime": "2 - 10:52",
"label": "",
"description": "Jermain Defoe (Sunderland) finds himself in a promising position after receiving a precise pass. He pulls the trigger but only hits one of the opposition, who gets in the way of his effort.",
"identified": "[PLAYER_QDtjHrsH] ([TEAM_]) finds himself in a promising position after receiving a precise pass. He pulls the trigger but only hits one of the opposition, who gets in the way of his effort.",
"anonymized": "[PLAYER] ([TEAM]) finds himself in a promising position after receiving a precise pass. He pulls the trigger but only hits one of the opposition, who gets in the way of his effort.",
"visibility": "shown",
"position": "652000"
},
{
"important": true,
"gameTime": "2 - 09:55",
"label": "substitution",
"description": "A substitution has been made. Lamine Kone is replaced by John O'Shea (Sunderland).",
"identified": "A substitution has been made. [PLAYER_z5wQhaaf] is replaced by [PLAYER_dtoEGjd5] ([TEAM_]).",
"anonymized": "A substitution has been made. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "595000"
},
{
"important": false,
"gameTime": "2 - 08:45",
"label": "",
"description": "Cesc Fabregas (Chelsea) crosses the ball into the box from the free kick, but the defence clears the danger.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) crosses the ball into the box from the free kick, but the defence clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box from the free kick, but the defence clears the danger.",
"visibility": "shown",
"position": "525000"
},
{
"important": false,
"gameTime": "2 - 07:33",
"label": "injury",
"description": "The game is interrupted now, Eden Hazard (Chelsea) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_QH2of5sJ] ([TEAM_]) picks up a knock and the physio has to come on.",
"anonymized": "The game is interrupted now, [PLAYER] ([TEAM]) picks up a knock and the physio has to come on.",
"visibility": "shown",
"position": "453000"
},
{
"important": true,
"gameTime": "2 - 06:59",
"label": "y-card",
"description": "Lee Cattermole (Sunderland) receives a yellow card for infringement.",
"identified": "[PLAYER_Is8awtW8] ([TEAM_]) receives a yellow card for infringement.",
"anonymized": "[PLAYER] ([TEAM]) receives a yellow card for infringement.",
"visibility": "shown",
"position": "419000"
},
{
"important": false,
"gameTime": "2 - 04:55",
"label": "",
"description": "John Obi Mikel (Chelsea) commits a rough foul. Mike Jones stops the game and makes a call. Sunderland win a free kick.",
"identified": "[PLAYER_8AkbVvN2] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call. [TEAM_] win a free kick.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call. [TEAM] win a free kick.",
"visibility": "shown",
"position": "295000"
},
{
"important": true,
"gameTime": "2 - 04:14",
"label": "",
"description": "Diego Costa (Chelsea) receives a precise pass and is given time inside the box to send a promising strike towards the middle of the goal. Vito Mannone guesses his intention and denies him with a fine save.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) receives a precise pass and is given time inside the box to send a promising strike towards the middle of the goal. [PLAYER_GKEd9ext] guesses his intention and denies him with a fine save.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass and is given time inside the box to send a promising strike towards the middle of the goal. [PLAYER] guesses his intention and denies him with a fine save.",
"visibility": "shown",
"position": "254000"
},
{
"important": false,
"gameTime": "2 - 01:47",
"label": "",
"description": "Chelsea enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"identified": "[TEAM_] enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"anonymized": "[TEAM] enjoy a period of possession as they are exchanging some passes and waiting for an opportunity to strike.",
"visibility": "shown",
"position": "107000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "Everything is set for the start of the second half.",
"identified": "Everything is set for the start of the second half.",
"anonymized": "Everything is set for the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 48:59",
"label": "",
"description": "The fans in the stadium won't regret buying tickets for today's game as they have witnessed a great game so far, and nothing suggests it's going to change in the second half. Chelsea were controlling the game for most of the first half. The hosts were hammered by the visitors in every aspect of the game.",
"identified": "The fans in the stadium won't regret buying tickets for today's game as they have witnessed a great game so far, and nothing suggests it's going to change in the second half. [TEAM_] were controlling the game for most of the first half. The hosts were hammered by the visitors in every aspect of the game.",
"anonymized": "The fans in the stadium won't regret buying tickets for today's game as they have witnessed a great game so far, and nothing suggests it's going to change in the second half. [TEAM] were controlling the game for most of the first half. The hosts were hammered by the visitors in every aspect of the game.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "1 - 48:48",
"label": "whistle",
"description": "There will be nothing more to see in the first half. The whistle blowing of Mike Jones has ended it.",
"identified": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"anonymized": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"visibility": "shown",
"position": "2928000"
},
{
"important": true,
"gameTime": "1 - 47:55",
"label": "soccer-ball",
"description": "Goal! Cesar Azpilicueta gets to the ball and heads it over the defence to Nemanja Matic (Chelsea), who meets it nicely and fires in into the back of the net. 1:2.",
"identified": "Goal! [PLAYER_CMGUADgt] gets to the ball and heads it over the defence to [PLAYER_Kty10JVG] ([TEAM_]), who meets it nicely and fires in into the back of the net. 1:2.",
"anonymized": "Goal! [PLAYER] gets to the ball and heads it over the defence to [PLAYER] ([TEAM]), who meets it nicely and fires in into the back of the net. 1:2.",
"visibility": "shown",
"position": "2875000"
},
{
"important": false,
"gameTime": "1 - 47:16",
"label": "",
"description": "Neat passing move from Chelsea in order to create new attacking opportunities.",
"identified": "Neat passing move from [TEAM_] in order to create new attacking opportunities.",
"anonymized": "Neat passing move from [TEAM] in order to create new attacking opportunities.",
"visibility": "shown",
"position": "2836000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "Fourth official shows 3 min. of added time.",
"identified": "Fourth official shows 3 min. of added time.",
"anonymized": "Fourth official shows 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:57",
"label": "",
"description": "Gary Cahill (Chelsea) was too fierce in his attempt to get the ball from his opponent and Mike Jones blows for a foul. Sunderland earn a free kick.",
"identified": "[PLAYER_pKpkgR1U] ([TEAM_]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul. [TEAM_] earn a free kick.",
"anonymized": "[PLAYER] ([TEAM]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul. [TEAM] earn a free kick.",
"visibility": "shown",
"position": "2697000"
},
{
"important": false,
"gameTime": "1 - 44:05",
"label": "",
"description": "Mike Jones blows his whistle and it's Fabio Borini (Sunderland) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_vgf4LRaj] ([TEAM_]) who is penalised for an offensive foul. Good decision by the referee.",
"anonymized": "[REFEREE] blows his whistle and it's [PLAYER] ([TEAM]) who is penalised for an offensive foul. Good decision by the referee.",
"visibility": "shown",
"position": "2645000"
},
{
"important": true,
"gameTime": "1 - 40:59",
"label": "soccer-ball",
"description": "Wahbi Khazri (Sunderland) gets to the ball on the edge of the box and fires in a first-time shot without any hesitation. The strike is excellent and goes inside the right post. He couldn't have done it any better. 1:1.",
"identified": "[PLAYER_Q7VDuZr1] ([TEAM_]) gets to the ball on the edge of the box and fires in a first-time shot without any hesitation. The strike is excellent and goes inside the right post. He couldn't have done it any better. 1:1.",
"anonymized": "[PLAYER] ([TEAM]) gets to the ball on the edge of the box and fires in a first-time shot without any hesitation. The strike is excellent and goes inside the right post. He couldn't have done it any better. 1:1.",
"visibility": "shown",
"position": "2459000"
},
{
"important": false,
"gameTime": "1 - 39:30",
"label": "corner",
"description": "Cesc Fabregas (Chelsea) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates. The ball is easily cleared out of danger.",
"visibility": "shown",
"position": "2370000"
},
{
"important": false,
"gameTime": "1 - 39:22",
"label": "",
"description": "Diego Costa (Chelsea) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. Chelsea will have a chance to score from a corner.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "2362000"
},
{
"important": false,
"gameTime": "1 - 37:54",
"label": "",
"description": "Diego Costa (Chelsea) passes the ball onto Nemanja Matic, but one of the defenders dispossesses him.",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) passes the ball onto [PLAYER_Kty10JVG], but one of the defenders dispossesses him.",
"anonymized": "[PLAYER] ([TEAM]) passes the ball onto [PLAYER], but one of the defenders dispossesses him.",
"visibility": "shown",
"position": "2274000"
},
{
"important": false,
"gameTime": "1 - 36:34",
"label": "",
"description": "Jan Kirchhoff (Sunderland) gets on the end of a pass on the edge of the box but his shot is blocked.",
"identified": "[PLAYER_Mitwh9ZL] ([TEAM_]) gets on the end of a pass on the edge of the box but his shot is blocked.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass on the edge of the box but his shot is blocked.",
"visibility": "shown",
"position": "2194000"
},
{
"important": false,
"gameTime": "1 - 33:56",
"label": "injury",
"description": "Fabio Borini (Sunderland) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_vgf4LRaj] ([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": "2036000"
},
{
"important": false,
"gameTime": "1 - 33:28",
"label": "injury",
"description": "John Terry (Chelsea) is having a really tough time right now. We are about to find out how serious his injury is.",
"identified": "[PLAYER_0AovoI68] ([TEAM_]) is having a really tough time right now. We are about to find out how serious his injury is.",
"anonymized": "[PLAYER] ([TEAM]) is having a really tough time right now. We are about to find out how serious his injury is.",
"visibility": "shown",
"position": "2008000"
},
{
"important": false,
"gameTime": "1 - 32:53",
"label": "",
"description": "A pass by Cesc Fabregas (Chelsea) ends up in no man's land, and the attacking effort comes to an end.",
"identified": "A pass by [PLAYER_YXIDwoe5] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end.",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end.",
"visibility": "shown",
"position": "1973000"
},
{
"important": false,
"gameTime": "1 - 31:20",
"label": "",
"description": "Jermain Defoe (Sunderland) almost finds himself in a very promising position, but he is flagged offside by the linesman.",
"identified": "[PLAYER_QDtjHrsH] ([TEAM_]) almost finds himself in a very promising position, but he is flagged offside by the linesman.",
"anonymized": "[PLAYER] ([TEAM]) almost finds himself in a very promising position, but he is flagged offside by the linesman.",
"visibility": "shown",
"position": "1880000"
},
{
"important": false,
"gameTime": "1 - 30:44",
"label": "",
"description": "Wahbi Khazri (Sunderland) sends a lofted cross into the box which is headed clear.",
"identified": "[PLAYER_Q7VDuZr1] ([TEAM_]) sends a lofted cross into the box which is headed clear.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the box which is headed clear.",
"visibility": "shown",
"position": "1844000"
},
{
"important": false,
"gameTime": "1 - 28:41",
"label": "",
"description": "Willian (Chelsea) breaks past challenges inside the box, but puts too much pace on his pass to Diego Costa.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) breaks past challenges inside the box, but puts too much pace on his pass to [PLAYER_vBw5nir8].",
"anonymized": "[PLAYER] ([TEAM]) breaks past challenges inside the box, but puts too much pace on his pass to [PLAYER].",
"visibility": "shown",
"position": "1721000"
},
{
"important": false,
"gameTime": "1 - 27:30",
"label": "",
"description": "Eden Hazard (Chelsea) gets in a good position inside the box and is only inches away from getting on the end of a through ball from the edge of the area.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) gets in a good position inside the box and is only inches away from getting on the end of a through ball from the edge of the area.",
"anonymized": "[PLAYER] ([TEAM]) gets in a good position inside the box and is only inches away from getting on the end of a through ball from the edge of the area.",
"visibility": "shown",
"position": "1650000"
},
{
"important": true,
"gameTime": "1 - 25:33",
"label": "",
"description": "Jermain Defoe (Sunderland) attempts to convert a lofted cross as he jumps high and heads the ball to the right side of the goal. Thibaut Courtois shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"identified": "[PLAYER_QDtjHrsH] ([TEAM_]) attempts to convert a lofted cross as he jumps high and heads the ball to the right side of the goal. [PLAYER_MVExOq3n] shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"anonymized": "[PLAYER] ([TEAM]) attempts to convert a lofted cross as he jumps high and heads the ball to the right side of the goal. [PLAYER] shows his brilliant reflexes and pulls off a glorious save to stop the ball from hitting the net.",
"visibility": "shown",
"position": "1533000"
},
{
"important": false,
"gameTime": "1 - 25:08",
"label": "",
"description": "Willian (Chelsea) attempts to find John Obi Mikel, but puts far too much on the pass and the chance is gone.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) attempts to find [PLAYER_8AkbVvN2], but puts far too much on the pass and the chance is gone.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find [PLAYER], but puts far too much on the pass and the chance is gone.",
"visibility": "shown",
"position": "1508000"
},
{
"important": false,
"gameTime": "1 - 23:26",
"label": "",
"description": "Yann M'Vila (Sunderland) latches on to a precise pass on the edge of the box, but miskicks his shot and the ball goes high over the bar. Poor effort!",
"identified": "[PLAYER_GOdGE1cn] ([TEAM_]) latches on to a precise pass on the edge of the box, but miskicks his shot and the ball goes high over the bar. Poor effort!",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise pass on the edge of the box, but miskicks his shot and the ball goes high over the bar. Poor effort!",
"visibility": "shown",
"position": "1406000"
},
{
"important": false,
"gameTime": "1 - 21:42",
"label": "",
"description": "Cesc Fabregas (Chelsea) tries to find Willian, but he puts too much power on the pass.",
"identified": "[PLAYER_YXIDwoe5] ([TEAM_]) tries to find [PLAYER_GSzdOhPI], but he puts too much power on the pass.",
"anonymized": "[PLAYER] ([TEAM]) tries to find [PLAYER], but he puts too much power on the pass.",
"visibility": "shown",
"position": "1302000"
},
{
"important": false,
"gameTime": "1 - 20:58",
"label": "",
"description": "Willian (Chelsea) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders.",
"identified": "[PLAYER_GSzdOhPI] ([TEAM_]) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders.",
"visibility": "shown",
"position": "1258000"
},
{
"important": false,
"gameTime": "1 - 20:37",
"label": "",
"description": "Eden Hazard (Chelsea) sends an accurate short pass. Cesar Azpilicueta controls the ball with a fine first touch and is able to come up with a new attacking effort.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) sends an accurate short pass. [PLAYER_CMGUADgt] controls the ball with a fine first touch and is able to come up with a new attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) sends an accurate short pass. [PLAYER] controls the ball with a fine first touch and is able to come up with a new attacking effort.",
"visibility": "shown",
"position": "1237000"
},
{
"important": false,
"gameTime": "1 - 19:07",
"label": "",
"description": "Jermain Defoe (Sunderland) is forced to stop his attacking move after the linesman signals for offside.",
"identified": "[PLAYER_QDtjHrsH] ([TEAM_]) is forced to stop his attacking move after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) is forced to stop his attacking move after the linesman signals for offside.",
"visibility": "shown",
"position": "1147000"
},
{
"important": false,
"gameTime": "1 - 17:35",
"label": "",
"description": "Sunderland control the tempo of the game by exchanging some accurate short passes.",
"identified": "[TEAM_] control the tempo of the game by exchanging some accurate short passes.",
"anonymized": "[TEAM] control the tempo of the game by exchanging some accurate short passes.",
"visibility": "shown",
"position": "1055000"
},
{
"important": true,
"gameTime": "1 - 13:59",
"label": "soccer-ball",
"description": "Diego Costa (Chelsea) scores as he latches on to a pass inside the penalty box and fires a perfect low strike that goes inside the right post. What a clinical goal!",
"identified": "[PLAYER_vBw5nir8] ([TEAM_]) scores as he latches on to a pass inside the penalty box and fires a perfect low strike that goes inside the right post. What a clinical goal!",
"anonymized": "[PLAYER] ([TEAM]) scores as he latches on to a pass inside the penalty box and fires a perfect low strike that goes inside the right post. What a clinical goal!",
"visibility": "shown",
"position": "839000"
},
{
"important": false,
"gameTime": "1 - 13:10",
"label": "corner",
"description": "The corner kick from Cesc Fabregas (Chelsea) is headed out of the penalty area by one of the defenders.",
"identified": "The corner kick from [PLAYER_YXIDwoe5] ([TEAM_]) is headed out of the penalty area by one of the defenders.",
"anonymized": "The corner kick from [PLAYER] ([TEAM]) is headed out of the penalty area by one of the defenders.",
"visibility": "shown",
"position": "790000"
},
{
"important": false,
"gameTime": "1 - 12:47",
"label": "",
"description": "Eden Hazard (Chelsea) tries to send the ball in front of the goal, but the opposition's defence averts the threat. The ball goes out of play and Chelsea have been awarded a corner kick.",
"identified": "[PLAYER_QH2of5sJ] ([TEAM_]) tries to send the ball in front of the goal, but the opposition's defence averts the threat. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) tries to send the ball in front of the goal, but the opposition's defence averts the threat. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "767000"
},
{
"important": false,
"gameTime": "1 - 11:02",
"label": "",
"description": "Cesar Azpilicueta (Chelsea) and Eden Hazard have been trying to find each other with some accurate passes ever since the match started. These two definitely combine the most and are the team's most creative players.",
"identified": "[PLAYER_CMGUADgt] ([TEAM_]) and [PLAYER_QH2of5sJ] have been trying to find each other with some accurate passes ever since the match started. These two definitely combine the most and are the team's most creative players.",
"anonymized": "[PLAYER] ([TEAM]) and [PLAYER] have been trying to find each other with some accurate passes ever since the match started. These two definitely combine the most and are the team's most creative players.",
"visibility": "shown",
"position": "662000"
}
]
} |