File size: 83,443 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 |
{
"timestamp": "1480172400",
"score": "2 - 0",
"round": "13",
"teams": [
"Liverpool",
"Sunderland"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "YJu3hSpk",
"name": "Can E.",
"captain": "",
"detail_link": "/player/can-emre/YJu3hSpk/",
"short_name": "Can",
"shirt_number": "23",
"country": "Germany",
"facts": [],
"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": "6",
"time": "34'",
"description": "Origi D.",
"linked_player_hash": "jeRaNgKg"
}
],
"lineup": 11,
"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": "6",
"time": "87'",
"description": "Lucas Leiva",
"linked_player_hash": "t41Fn0KA"
}
],
"lineup": 10,
"starting": true,
"long_name": "Roberto Firmino"
},
{
"hash": "UFMlUD6r",
"name": "Henderson J.",
"captain": "(C)",
"detail_link": "/player/henderson-jordan/UFMlUD6r/",
"short_name": "Henderson",
"shirt_number": "14",
"country": "England",
"facts": [
{
"type": "8",
"time": "75' Origi D. (Henderson J.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Jordan Henderson"
},
{
"hash": "MgWRUFHG",
"name": "Karius L.",
"captain": "",
"detail_link": "/player/karius-loris/MgWRUFHG/",
"short_name": "Karius",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Loris Karius"
},
{
"hash": "GAcQF9Z6",
"name": "Lovren D.",
"captain": "",
"detail_link": "/player/lovren-dejan/GAcQF9Z6/",
"short_name": "Lovren",
"shirt_number": "6",
"country": "Croatia",
"facts": [
{
"type": "1",
"time": "67' Lovren D. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Dejan Lovren"
},
{
"hash": "xxskxOU0",
"name": "Mane S.",
"captain": "",
"detail_link": "/player/mane-sadio/xxskxOU0/",
"short_name": "Mane",
"shirt_number": "19",
"country": "Senegal",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Sadio Mane"
},
{
"hash": "tpHWp8Am",
"name": "Matip J.",
"captain": "",
"detail_link": "/player/matip-joel/tpHWp8Am/",
"short_name": "Matip",
"shirt_number": "32",
"country": "Cameroon",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Joel Matip"
},
{
"hash": "QLY3kAEt",
"name": "Milner J.",
"captain": "",
"detail_link": "/player/milner-james/QLY3kAEt/",
"short_name": "Milner",
"shirt_number": "7",
"country": "England",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "James Milner"
},
{
"hash": "f9KgUUZu",
"name": "Wijnaldum G.",
"captain": "",
"detail_link": "/player/wijnaldum-georginio/f9KgUUZu/",
"short_name": "Wijnaldum",
"shirt_number": "5",
"country": "Netherlands",
"facts": [
{
"type": "6",
"time": "90+2'",
"description": "Woodburn B.",
"linked_player_hash": "GtwTJa8L"
}
],
"lineup": 6,
"starting": true,
"long_name": "Georginio Wijnaldum"
},
{
"hash": "EkjYoT1f",
"name": "Ejaria O.",
"captain": "",
"detail_link": "/player/ejaria-oviemuno/EkjYoT1f/",
"short_name": "Ejaria",
"shirt_number": "53",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Oviemuno Ejaria"
},
{
"hash": "l2KDCxTO",
"name": "Klavan R.",
"captain": "",
"detail_link": "/player/klavan-ragnar/l2KDCxTO/",
"short_name": "Klavan",
"shirt_number": "17",
"country": "Estonia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ragnar Klavan"
},
{
"hash": "t41Fn0KA",
"name": "Lucas Leiva",
"captain": "",
"detail_link": "/player/lucas-leiva/t41Fn0KA/",
"short_name": "Lucas Leiva",
"shirt_number": "21",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "87'",
"description": "Firmino R.",
"linked_player_hash": "CCNtplZe"
}
],
"lineup": null,
"starting": false,
"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": null,
"starting": false,
"long_name": "Simon Mignolet"
},
{
"hash": "pdBI3oS8",
"name": "Moreno A.",
"captain": "",
"detail_link": "/player/moreno-alberto/pdBI3oS8/",
"short_name": "Moreno",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alberto Moreno"
},
{
"hash": "jeRaNgKg",
"name": "Origi D.",
"captain": "",
"detail_link": "/player/origi-divock/jeRaNgKg/",
"short_name": "Origi",
"shirt_number": "27",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "34'",
"description": "Coutinho",
"linked_player_hash": "QP6r8H7O"
},
{
"type": "3",
"time": "75' Origi D. (Henderson J.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Divock Origi"
},
{
"hash": "GtwTJa8L",
"name": "Woodburn B.",
"captain": "",
"detail_link": "/player/woodburn-benjamin/GtwTJa8L/",
"short_name": "Woodburn",
"shirt_number": "58",
"country": "Wales",
"facts": [
{
"type": "7",
"time": "90+2'",
"description": "Wijnaldum G.",
"linked_player_hash": "f9KgUUZu"
}
],
"lineup": null,
"starting": false,
"long_name": "Benjamin Woodburn"
}
],
"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"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "EcLl5I9F",
"name": "Anichebe V.",
"captain": "",
"detail_link": "/player/anichebe-victor/EcLl5I9F/",
"short_name": "Anichebe",
"shirt_number": "28",
"country": "Nigeria",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Victor Anichebe"
},
{
"hash": "QDtjHrsH",
"name": "Defoe J.",
"captain": "",
"detail_link": "/player/defoe-jermain/QDtjHrsH/",
"short_name": "Defoe",
"shirt_number": "18",
"country": "England",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Jermain Defoe"
},
{
"hash": "pj0IHOI1",
"name": "Denayer J.",
"captain": "",
"detail_link": "/player/denayer-jason/pj0IHOI1/",
"short_name": "Denayer",
"shirt_number": "4",
"country": "Belgium",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Jason Denayer"
},
{
"hash": "K81tpGcq",
"name": "Jones B.",
"captain": "",
"detail_link": "/player/jones-billy/K81tpGcq/",
"short_name": "Jones",
"shirt_number": "2",
"country": "England",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Billy Jones"
},
{
"hash": "z5wQhaaf",
"name": "Kone L.",
"captain": "",
"detail_link": "/player/kone-lamine/z5wQhaaf/",
"short_name": "Kone",
"shirt_number": "23",
"country": "Ivory Coast",
"facts": [
{
"type": "1",
"time": "60' Kone L. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Lamine Kone"
},
{
"hash": "6L8O1396",
"name": "Ndong D.",
"captain": "",
"detail_link": "/player/ndong-didier/6L8O1396/",
"short_name": "Ndong",
"shirt_number": "17",
"country": "Gabon",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Didier Ndong"
},
{
"hash": "dtoEGjd5",
"name": "O'Shea J.",
"captain": "(C)",
"detail_link": "/player/o-shea-john/dtoEGjd5/",
"short_name": "O'Shea",
"shirt_number": "16",
"country": "Ireland",
"facts": [
{
"type": "1",
"time": "64' O'Shea J. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"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": 1,
"starting": true,
"long_name": "Jordan Pickford"
},
{
"hash": "zaIHqcIq",
"name": "Pienaar S.",
"captain": "",
"detail_link": "/player/pienaar-steven/zaIHqcIq/",
"short_name": "Pienaar",
"shirt_number": "20",
"country": "South Africa",
"facts": [
{
"type": "1",
"time": "70' Pienaar S. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "79'",
"description": "Gooch L.",
"linked_player_hash": "4GY5jrfM"
}
],
"lineup": 8,
"starting": true,
"long_name": "Steven Pienaar"
},
{
"hash": "GxbOZOLI",
"name": "van Aanholt P.",
"captain": "",
"detail_link": "/player/van-aanholt-patrick/GxbOZOLI/",
"short_name": "van Aanholt",
"shirt_number": "3",
"country": "Netherlands",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Patrick van Aanholt"
},
{
"hash": "EF5xKj4t",
"name": "Watmore D.",
"captain": "",
"detail_link": "/player/watmore-duncan/EF5xKj4t/",
"short_name": "Watmore",
"shirt_number": "14",
"country": "England",
"facts": [
{
"type": "6",
"time": "79'",
"description": "Januzaj A.",
"linked_player_hash": "6qyeYCYO"
}
],
"lineup": 9,
"starting": true,
"long_name": "Duncan Watmore"
},
{
"hash": "4GY5jrfM",
"name": "Gooch L.",
"captain": "",
"detail_link": "/player/gooch-lynden/4GY5jrfM/",
"short_name": "Gooch",
"shirt_number": "46",
"country": "USA",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Pienaar S.",
"linked_player_hash": "zaIHqcIq"
}
],
"lineup": null,
"starting": false,
"long_name": "Lynden Gooch"
},
{
"hash": "6qyeYCYO",
"name": "Januzaj A.",
"captain": "",
"detail_link": "/player/januzaj-adnan/6qyeYCYO/",
"short_name": "Januzaj",
"shirt_number": "44",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Watmore D.",
"linked_player_hash": "EF5xKj4t"
}
],
"lineup": null,
"starting": false,
"long_name": "Adnan Januzaj"
},
{
"hash": "Q7VDuZr1",
"name": "Khazri W.",
"captain": "",
"detail_link": "/player/khazri-wahbi/Q7VDuZr1/",
"short_name": "Khazri",
"shirt_number": "10",
"country": "Tunisia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Wahbi Khazri"
},
{
"hash": "OY3yOlyl",
"name": "Larsson S.",
"captain": "",
"detail_link": "/player/larsson-sebastian/OY3yOlyl/",
"short_name": "Larsson",
"shirt_number": "7",
"country": "Sweden",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sebastian Larsson"
},
{
"hash": "GYpYLFS1",
"name": "Love D.",
"captain": "",
"detail_link": "/player/love-donald/GYpYLFS1/",
"short_name": "Love",
"shirt_number": "22",
"country": "Scotland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Donald Love"
},
{
"hash": "GKEd9ext",
"name": "Mannone V.",
"captain": "",
"detail_link": "/player/mannone-vito/GKEd9ext/",
"short_name": "Mannone",
"shirt_number": "1",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Vito Mannone"
},
{
"hash": "8bvxeNAG",
"name": "Manquillo J.",
"captain": "",
"detail_link": "/player/manquillo-javier/8bvxeNAG/",
"short_name": "Manquillo",
"shirt_number": "21",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Javier Manquillo"
}
],
"coach": [
{
"hash": "hUGEt9yf",
"name": "Moyes D.",
"captain": "",
"detail_link": "/player/moyes-david/hUGEt9yf/",
"short_name": "Moyes D.",
"shirt_number": "",
"country": "Scotland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "David Moyes"
}
]
}
},
"referee": [
"Taylor A."
],
"venue": [
"Anfield (Liverpool)"
],
"attendance": [
"53 114"
],
"referee_matched": [
"Anthony Taylor"
],
"referee_found": [
"Anthony Taylor"
],
"coach_matched": [
"David William Moyes"
],
"gameHomeTeam": "Liverpool",
"home": {
"name": "Liverpool",
"detail_link": "/team/liverpool/lId4TMwf",
"hash": "lId4TMwf",
"names": [
"Liverpool",
"Liverpool (Eng)",
"liverpool"
]
},
"gameAwayTeam": "Sunderland",
"away": {
"name": "Sunderland",
"detail_link": "/team/sunderland/WSzc94ws",
"hash": "WSzc94ws",
"names": [
"Sunderland",
"sunderland"
]
},
"gameDate": "26/11/2016 - 16:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. The game was controlled by the home side. The home team played possession football and the away players really focused on a well-organized defence.",
"identified": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. The game was controlled by the home side. The home team played possession football and the away players really focused on a well-organized defence.",
"anonymized": "According to the statistics, the match was pretty entertaining. There were plenty of thrilling moments. The game was controlled by the home side. The home team played possession football and the away players really focused on a well-organized defence.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:08",
"label": "whistle",
"description": "That's it for today, Anthony Taylor has blown his whistle and the game is over.",
"identified": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"anonymized": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"visibility": "shown",
"position": "2888000"
},
{
"important": true,
"gameTime": "2 - 46:56",
"label": "substitution",
"description": "Substitution. Benjamin Woodburn (Liverpool) in, Georginio Wijnaldum out.",
"identified": "Substitution. [PLAYER_GtwTJa8L] ([TEAM_]) in, [PLAYER_f9KgUUZu] out.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) in, [PLAYER] out.",
"visibility": "shown",
"position": "2816000"
},
{
"important": false,
"gameTime": "2 - 46:40",
"label": "",
"description": "Nathaniel Clyne (Liverpool) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies well wide of the right post.",
"identified": "[PLAYER_Eo9X2cTu] ([TEAM_]) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies well wide of the right post.",
"visibility": "shown",
"position": "2800000"
},
{
"important": true,
"gameTime": "2 - 45:40",
"label": "soccer-ball",
"description": "James Milner (Liverpool) confidently powers his spot-kick into the left side of the goal.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) confidently powers his spot-kick into the left side of the goal.",
"anonymized": "[PLAYER] ([TEAM]) confidently powers his spot-kick into the left side of the goal.",
"visibility": "shown",
"position": "2740000"
},
{
"important": true,
"gameTime": "2 - 45:20",
"label": "",
"description": "James Milner (Liverpool) is heading towards the penalty spot to take it.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) is heading towards the penalty spot to take it.",
"anonymized": "[PLAYER] ([TEAM]) is heading towards the penalty spot to take it.",
"visibility": "shown",
"position": "2720000"
},
{
"important": true,
"gameTime": "2 - 45:10",
"label": "penalty",
"description": "Referee Anthony Taylor sees the trip by Didier Ndong (Sunderland) and doesn't hesitate to blow his whistle. It's a penalty! What an opportunity to score for Liverpool.",
"identified": "Referee [REFEREE] sees the trip by [PLAYER_6L8O1396] ([TEAM_]) and doesn't hesitate to blow his whistle. It's a penalty! What an opportunity to score for [TEAM_].",
"anonymized": "Referee [REFEREE] sees the trip by [PLAYER] ([TEAM]) and doesn't hesitate to blow his whistle. It's a penalty! What an opportunity to score for [TEAM].",
"visibility": "shown",
"position": "2710000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "3 min. of stoppage-time to be played.",
"identified": "3 min. of stoppage-time to be played.",
"anonymized": "3 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 41:42",
"label": "corner",
"description": "The corner kick from Jordan Henderson (Liverpool) is headed out of the penalty area by one of the defenders.",
"identified": "The corner kick from [PLAYER_UFMlUD6r] ([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": "2502000"
},
{
"important": true,
"gameTime": "2 - 41:41",
"label": "substitution",
"description": "It is time for a substitution. Lucas Leiva (Liverpool) is on for Roberto Firmino.",
"identified": "It is time for a substitution. [PLAYER_t41Fn0KA] ([TEAM_]) is on for [PLAYER_CCNtplZe].",
"anonymized": "It is time for a substitution. [PLAYER] ([TEAM]) is on for [PLAYER].",
"visibility": "shown",
"position": "2501000"
},
{
"important": true,
"gameTime": "2 - 41:01",
"label": "",
"description": "Emre Can (Liverpool) dribbles into space and finds himself in a shooting position, but his shot from the edge of the box is bravely blocked. The referee points to the corner flag and Liverpool will take a corner.",
"identified": "[PLAYER_YJu3hSpk] ([TEAM_]) dribbles into space and finds himself in a shooting position, but his shot from the edge of the box is bravely blocked. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) dribbles into space and finds himself in a shooting position, but his shot from the edge of the box is bravely blocked. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "2461000"
},
{
"important": false,
"gameTime": "2 - 38:45",
"label": "",
"description": "Roberto Firmino (Liverpool) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"anonymized": "[PLAYER] ([TEAM]) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"visibility": "shown",
"position": "2325000"
},
{
"important": false,
"gameTime": "2 - 37:59",
"label": "injury",
"description": "Roberto Firmino (Liverpool) is clearly asking for some medical attention with his painful gestures. The extent of his injury is yet to be discovered.",
"identified": "[PLAYER_CCNtplZe] ([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": "2279000"
},
{
"important": false,
"gameTime": "2 - 37:28",
"label": "",
"description": "Jordan Henderson (Liverpool) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"identified": "[PLAYER_UFMlUD6r] ([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": "2248000"
},
{
"important": false,
"gameTime": "2 - 35:13",
"label": "",
"description": "Half-chance! James Milner (Liverpool) plays a pass into the box, but Jordan Pickford reacts well to snuff out the attack.",
"identified": "Half-chance! [PLAYER_QLY3kAEt] ([TEAM_]) plays a pass into the box, but [PLAYER_SKTJdUtH] 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": "2113000"
},
{
"important": true,
"gameTime": "2 - 33:56",
"label": "substitution",
"description": "David William Moyes decides to make a substitution. Duncan Watmore will be replaced by Adnan Januzaj (Sunderland).",
"identified": "[COACH_hUGEt9yf] decides to make a substitution. [PLAYER_EF5xKj4t] will be replaced by [PLAYER_6qyeYCYO] ([TEAM_]).",
"anonymized": "[COACH] decides to make a substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2036000"
},
{
"important": true,
"gameTime": "2 - 33:39",
"label": "substitution",
"description": "Substitution. Lynden Gooch (Sunderland) replaces Steven Pienaar.",
"identified": "Substitution. [PLAYER_4GY5jrfM] ([TEAM_]) replaces [PLAYER_zaIHqcIq].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "2019000"
},
{
"important": false,
"gameTime": "2 - 32:53",
"label": "",
"description": "Joel Matip (Liverpool) jumps for a header from the corner kick, but fails to steer the ball into the goal as it flies high over the bar.",
"identified": "[PLAYER_tpHWp8Am] ([TEAM_]) jumps for a header from the corner kick, but fails to steer the ball into the goal as it flies high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) jumps for a header from the corner kick, but fails to steer the ball into the goal as it flies high over the bar.",
"visibility": "shown",
"position": "1973000"
},
{
"important": false,
"gameTime": "2 - 32:37",
"label": "corner",
"description": "James Milner (Liverpool) will deliver the corner kick.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) will deliver the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will deliver the corner kick.",
"visibility": "shown",
"position": "1957000"
},
{
"important": false,
"gameTime": "2 - 32:25",
"label": "",
"description": "James Milner (Liverpool) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The referee and his assistant both point at the corner flag. Liverpool will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. 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]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. 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": "1945000"
},
{
"important": true,
"gameTime": "2 - 29:07",
"label": "soccer-ball",
"description": "Goal - 1:0! Divock Origi (Liverpool) tries his luck from the edge of the box and scores with an accurate shot inside the right post. Jordan Henderson provided an assist for the goal.",
"identified": "Goal - 1:0! [PLAYER_jeRaNgKg] ([TEAM_]) tries his luck from the edge of the box and scores with an accurate shot inside the right post. [PLAYER_UFMlUD6r] provided an assist for the goal.",
"anonymized": "Goal - 1:0! [PLAYER] ([TEAM]) tries his luck from the edge of the box and scores with an accurate shot inside the right post. [PLAYER] provided an assist for the goal.",
"visibility": "shown",
"position": "1747000"
},
{
"important": false,
"gameTime": "2 - 28:16",
"label": "corner",
"description": "James Milner (Liverpool) swings in a cross from the corner, but Jordan Pickford reads it well and gathers the ball.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) swings in a cross from the corner, but [PLAYER_SKTJdUtH] reads it well and gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross from the corner, but [PLAYER] reads it well and gathers the ball.",
"visibility": "shown",
"position": "1696000"
},
{
"important": false,
"gameTime": "2 - 28:02",
"label": "corner",
"description": "James Milner (Liverpool) whips in the corner, but one of the defending players gets a head on it and intercepts. Liverpool force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) whips in the corner, but one of the defending players gets a head on it and intercepts. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) whips in the corner, but one of the defending players gets a head on it and intercepts. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "1682000"
},
{
"important": true,
"gameTime": "2 - 27:48",
"label": "",
"description": "Sadio Mane (Liverpool) gets to the ball from the resulting corner and tries his luck with a shot, but one of the defenders steps in to block the effort. The ball is out of play and Liverpool manage to earn a corner.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) gets to the ball from the resulting corner and tries his luck with a shot, but one of the defenders steps in to block the effort. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) gets to the ball from the resulting corner and tries his luck with a shot, but one of the defenders steps in to block the effort. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "1668000"
},
{
"important": false,
"gameTime": "2 - 27:34",
"label": "corner",
"description": "Jordan Henderson (Liverpool) prepares to take a corner kick.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) prepares to take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) prepares to take a corner kick.",
"visibility": "shown",
"position": "1654000"
},
{
"important": false,
"gameTime": "2 - 27:07",
"label": "",
"description": "Sadio Mane (Liverpool) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. The ball goes out of play. Liverpool are awarded a corner kick.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find his teammate with a pass from outside the box, but the opposition's defence is quick to react and thwarts the attack. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1627000"
},
{
"important": false,
"gameTime": "2 - 25:58",
"label": "",
"description": "Jordan Henderson (Liverpool) takes a shot from a mid-range free kick and the ball flies inches wide of the left post!",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) takes a shot from a mid-range free kick and the ball flies inches wide of the left post!",
"anonymized": "[PLAYER] ([TEAM]) takes a shot from a mid-range free kick and the ball flies inches wide of the left post!",
"visibility": "shown",
"position": "1558000"
},
{
"important": true,
"gameTime": "2 - 24:58",
"label": "y-card",
"description": "Steven Pienaar (Sunderland) takes his opponent down and receives a yellow card from the referee.",
"identified": "[PLAYER_zaIHqcIq] ([TEAM_]) takes his opponent down and receives a yellow card from the referee.",
"anonymized": "[PLAYER] ([TEAM]) takes his opponent down and receives a yellow card from the referee.",
"visibility": "shown",
"position": "1498000"
},
{
"important": false,
"gameTime": "2 - 24:39",
"label": "",
"description": "Roberto Firmino (Liverpool) slips past one challenge, but is unable to feed a low pass into the path of one of his teammates.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) slips past one challenge, but is unable to feed a low pass into the path of one of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) slips past one challenge, but is unable to feed a low pass into the path of one of his teammates.",
"visibility": "shown",
"position": "1479000"
},
{
"important": false,
"gameTime": "2 - 23:51",
"label": "",
"description": "Roberto Firmino (Liverpool) wriggles into space inside the box with excellent ball control, but his effort on goal is well blocked. Roberto Firmino (Liverpool) is the first to arrive to a rebound inside the penalty area and unleashes a quick strike towards the middle of the target that beats the keeper. One of the defenders, however, makes a goal-line clearance.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) wriggles into space inside the box with excellent ball control, but his effort on goal is well blocked. [PLAYER_CCNtplZe] ([TEAM_]) is the first to arrive to a rebound inside the penalty area and unleashes a quick strike towards the middle of the target that beats the keeper. One of the defenders, however, makes a goal-line clearance.",
"anonymized": "[PLAYER] ([TEAM]) wriggles into space inside the box with excellent ball control, but his effort on goal is well blocked. [PLAYER] ([TEAM]) is the first to arrive to a rebound inside the penalty area and unleashes a quick strike towards the middle of the target that beats the keeper. One of the defenders, however, makes a goal-line clearance.",
"visibility": "shown",
"position": "1431000"
},
{
"important": false,
"gameTime": "2 - 23:27",
"label": "",
"description": "Victor Anichebe (Sunderland) misses a good chance to score. An inch-perfect cross into the box finds Victor Anichebe (Sunderland) who rises for a header, but sends the ball well over the bar.",
"identified": "[PLAYER_EcLl5I9F] ([TEAM_]) misses a good chance to score. An inch-perfect cross into the box finds [PLAYER_EcLl5I9F] ([TEAM_]) who rises for a header, but sends the ball well over the bar.",
"anonymized": "[PLAYER] ([TEAM]) misses a good chance to score. An inch-perfect cross into the box finds [PLAYER] ([TEAM]) who rises for a header, but sends the ball well over the bar.",
"visibility": "shown",
"position": "1407000"
},
{
"important": true,
"gameTime": "2 - 23:10",
"label": "",
"description": "Duncan Watmore (Sunderland) dribbles into the box, but Loris Karius is quick enough to come off his line and stop him.",
"identified": "[PLAYER_EF5xKj4t] ([TEAM_]) dribbles into the box, but [PLAYER_MgWRUFHG] is quick enough to come off his line and stop him.",
"anonymized": "[PLAYER] ([TEAM]) dribbles into the box, but [PLAYER] is quick enough to come off his line and stop him.",
"visibility": "shown",
"position": "1390000"
},
{
"important": false,
"gameTime": "2 - 22:23",
"label": "",
"description": "Patrick van Aanholt (Sunderland) wasted an opportunity to score from the free kick from about 22 metres out. His attempt hit the defensive wall.",
"identified": "[PLAYER_GxbOZOLI] ([TEAM_]) wasted an opportunity to score from the free kick from about 22 metres out. His attempt hit the defensive wall.",
"anonymized": "[PLAYER] ([TEAM]) wasted an opportunity to score from the free kick from about 22 metres out. His attempt hit the defensive wall.",
"visibility": "shown",
"position": "1343000"
},
{
"important": true,
"gameTime": "2 - 21:40",
"label": "y-card",
"description": "What was Dejan Lovren (Liverpool) thinking? He will not get away with that. The referee shows him a yellow card.",
"identified": "What was [PLAYER_GAcQF9Z6] ([TEAM_]) thinking? He will not get away with that. The referee shows him a yellow card.",
"anonymized": "What was [PLAYER] ([TEAM]) thinking? He will not get away with that. The referee shows him a yellow card.",
"visibility": "shown",
"position": "1300000"
},
{
"important": true,
"gameTime": "2 - 19:38",
"label": "",
"description": "What an opportunity that was! The ball rebounded out to Emre Can (Liverpool), whose shot from the edge of the box goes a whisker wide of the right post.",
"identified": "What an opportunity that was! The ball rebounded out to [PLAYER_YJu3hSpk] ([TEAM_]), whose shot from the edge of the box goes a whisker wide of the right post.",
"anonymized": "What an opportunity that was! The ball rebounded out to [PLAYER] ([TEAM]), whose shot from the edge of the box goes a whisker wide of the right post.",
"visibility": "shown",
"position": "1178000"
},
{
"important": true,
"gameTime": "2 - 18:39",
"label": "y-card",
"description": "John O'Shea (Sunderland) is shown a yellow card by the referee for making a challenge on his opponent, but he looks angry with the decision.",
"identified": "[PLAYER_dtoEGjd5] ([TEAM_]) is shown a yellow card by the referee for making a challenge on his opponent, but he looks angry with the decision.",
"anonymized": "[PLAYER] ([TEAM]) is shown a yellow card by the referee for making a challenge on his opponent, but he looks angry with the decision.",
"visibility": "shown",
"position": "1119000"
},
{
"important": false,
"gameTime": "2 - 18:17",
"label": "corner",
"description": "Patrick van Aanholt (Sunderland) takes the corner which is cleared by the opposition's defence.",
"identified": "[PLAYER_GxbOZOLI] ([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": "1097000"
},
{
"important": false,
"gameTime": "2 - 17:40",
"label": "",
"description": "Victor Anichebe (Sunderland) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. Sunderland force a corner. They send men into the box.",
"identified": "[PLAYER_EcLl5I9F] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "1060000"
},
{
"important": false,
"gameTime": "2 - 17:06",
"label": "",
"description": "Jordan Henderson (Liverpool) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"identified": "[PLAYER_UFMlUD6r] ([TEAM_]) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"anonymized": "[PLAYER] ([TEAM]) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"visibility": "shown",
"position": "1026000"
},
{
"important": false,
"gameTime": "2 - 15:17",
"label": "",
"description": "Lamine Kone (Sunderland) quickly takes the free kick with a short pass.",
"identified": "[PLAYER_z5wQhaaf] ([TEAM_]) quickly takes the free kick with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) quickly takes the free kick with a short pass.",
"visibility": "shown",
"position": "917000"
},
{
"important": true,
"gameTime": "2 - 14:16",
"label": "y-card",
"description": "Lamine Kone (Sunderland) receives a yellow card from the referee for a foul that he committed a little earlier.",
"identified": "[PLAYER_z5wQhaaf] ([TEAM_]) receives a yellow card from the referee for a foul that he committed a little earlier.",
"anonymized": "[PLAYER] ([TEAM]) receives a yellow card from the referee for a foul that he committed a little earlier.",
"visibility": "shown",
"position": "856000"
},
{
"important": true,
"gameTime": "2 - 12:57",
"label": "",
"description": "Roberto Firmino (Liverpool) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the right side of the net, but Jordan Pickford leaps like a salmon to deny him.",
"identified": "[PLAYER_CCNtplZe] ([TEAM_]) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the right side of the net, but [PLAYER_SKTJdUtH] leaps like a salmon to deny him.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise pass and finds himself one-on-one with the keeper. He fires a low shot towards the right side of the net, but [PLAYER] leaps like a salmon to deny him.",
"visibility": "shown",
"position": "777000"
},
{
"important": false,
"gameTime": "2 - 11:45",
"label": "corner",
"description": "The resulting corner from Jordan Henderson (Liverpool) is cleared by the defence.",
"identified": "The resulting corner from [PLAYER_UFMlUD6r] ([TEAM_]) is cleared by the defence.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared by the defence.",
"visibility": "shown",
"position": "705000"
},
{
"important": false,
"gameTime": "2 - 11:31",
"label": "",
"description": "Nathaniel Clyne (Liverpool) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The referee signals a corner kick to Liverpool.",
"identified": "[PLAYER_Eo9X2cTu] ([TEAM_]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "691000"
},
{
"important": false,
"gameTime": "2 - 10:11",
"label": "",
"description": "Georginio Wijnaldum (Liverpool) does his best to latch onto a cross into the box, but he can't get to the ball.",
"identified": "[PLAYER_f9KgUUZu] ([TEAM_]) does his best to latch onto a cross into the box, but he can't get to the ball.",
"anonymized": "[PLAYER] ([TEAM]) does his best to latch onto a cross into the box, but he can't get to the ball.",
"visibility": "shown",
"position": "611000"
},
{
"important": false,
"gameTime": "2 - 08:50",
"label": "",
"description": "Roberto Firmino (Liverpool) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_CCNtplZe] ([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": "530000"
},
{
"important": false,
"gameTime": "2 - 07:41",
"label": "",
"description": "Georginio Wijnaldum (Liverpool) receives a lofted pass from out wide and shoots from close range, but the ball flies way past the left-hand post.",
"identified": "[PLAYER_f9KgUUZu] ([TEAM_]) receives a lofted pass from out wide and shoots from close range, but the ball flies way past the left-hand post.",
"anonymized": "[PLAYER] ([TEAM]) receives a lofted pass from out wide and shoots from close range, but the ball flies way past the left-hand post.",
"visibility": "shown",
"position": "461000"
},
{
"important": false,
"gameTime": "2 - 05:33",
"label": "",
"description": "A pass by Roberto Firmino (Liverpool) ends up in no man's land, and the attacking effort comes to an end. It's a throw-in for Liverpool.",
"identified": "A pass by [PLAYER_CCNtplZe] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end. It's a throw-in for [TEAM_].",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end. It's a throw-in for [TEAM].",
"visibility": "shown",
"position": "333000"
},
{
"important": false,
"gameTime": "2 - 04:35",
"label": "",
"description": "A neat pass is well received by Sadio Mane (Liverpool), who is lurking on the edge of the box and strikes the ball on goal. The goalkeeper makes a decent save to block his shot.",
"identified": "A neat pass is well received by [PLAYER_xxskxOU0] ([TEAM_]), who is lurking on the edge of the box and strikes the ball on goal. The goalkeeper makes a decent save to block his shot.",
"anonymized": "A neat pass is well received by [PLAYER] ([TEAM]), who is lurking on the edge of the box and strikes the ball on goal. The goalkeeper makes a decent save to block his shot.",
"visibility": "shown",
"position": "275000"
},
{
"important": false,
"gameTime": "2 - 03:47",
"label": "",
"description": "Nathaniel Clyne (Liverpool) makes a driving run into the box but he cannot work any space for a shot.",
"identified": "[PLAYER_Eo9X2cTu] ([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": "227000"
},
{
"important": false,
"gameTime": "2 - 02:59",
"label": "",
"description": "Liverpool are bossing possession at the moment by exchanging some precise passes from player to player.",
"identified": "[TEAM_] are bossing possession at the moment by exchanging some precise passes from player to player.",
"anonymized": "[TEAM] are bossing possession at the moment by exchanging some precise passes from player to player.",
"visibility": "shown",
"position": "179000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The half-time break is over and the second half is about to start.",
"identified": "The half-time break is over and the second half is about to start.",
"anonymized": "The half-time break is over and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 49:59",
"label": "",
"description": "Well, a decent first half here. It's certainly not boring, but not the best match either. The home side is easily dictating the tempo in this game. The home team tries to prevail using combination football, while the away team adopt a defensive style of play.",
"identified": "Well, a decent first half here. It's certainly not boring, but not the best match either. The home side is easily dictating the tempo in this game. The home team tries to prevail using combination football, while the away team adopt a defensive style of play.",
"anonymized": "Well, a decent first half here. It's certainly not boring, but not the best match either. The home side is easily dictating the tempo in this game. The home team tries to prevail using combination football, while the away team adopt a defensive style of play.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "1 - 49:04",
"label": "whistle",
"description": "The match has reached half-time.",
"identified": "The match has reached half-time.",
"anonymized": "The match has reached half-time.",
"visibility": "shown",
"position": "2944000"
},
{
"important": false,
"gameTime": "1 - 48:42",
"label": "",
"description": "Sadio Mane (Liverpool) receives a precise pass and is given time inside the box to send a low strike towards the middle of the goal. Jordan Pickford guesses his intention and denies him with a fine save.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) receives a precise pass and is given time inside the box to send a low strike towards the middle of the goal. [PLAYER_SKTJdUtH] 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 low strike towards the middle of the goal. [PLAYER] guesses his intention and denies him with a fine save.",
"visibility": "shown",
"position": "2922000"
},
{
"important": false,
"gameTime": "1 - 47:12",
"label": "",
"description": "Dejan Lovren (Liverpool) collects a wonderful lead pass and creates some space to smash the ball goalwards from long range. His shot goes painfully wide of the left post!",
"identified": "[PLAYER_GAcQF9Z6] ([TEAM_]) collects a wonderful lead pass and creates some space to smash the ball goalwards from long range. His shot goes painfully wide of the left post!",
"anonymized": "[PLAYER] ([TEAM]) collects a wonderful lead pass and creates some space to smash the ball goalwards from long range. His shot goes painfully wide of the left post!",
"visibility": "shown",
"position": "2832000"
},
{
"important": false,
"gameTime": "1 - 45:48",
"label": "",
"description": "Emre Can (Liverpool) missed a great opportunity! He finds himself some space near the penalty spot and plants a header goalwards which lacks both power and accuracy. The ball goes well wide of the right post!",
"identified": "[PLAYER_YJu3hSpk] ([TEAM_]) missed a great opportunity! He finds himself some space near the penalty spot and plants a header goalwards which lacks both power and accuracy. The ball goes well wide of the right post!",
"anonymized": "[PLAYER] ([TEAM]) missed a great opportunity! He finds himself some space near the penalty spot and plants a header goalwards which lacks both power and accuracy. The ball goes well wide of the right post!",
"visibility": "shown",
"position": "2748000"
},
{
"important": false,
"gameTime": "1 - 45:28",
"label": "",
"description": "Georginio Wijnaldum (Liverpool) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball.",
"identified": "[PLAYER_f9KgUUZu] ([TEAM_]) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball.",
"visibility": "shown",
"position": "2728000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "We will have 4 min. of added time.",
"identified": "We will have 4 min. of added time.",
"anonymized": "We will have 4 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 43:31",
"label": "",
"description": "Divock Origi (Liverpool) fails to find any of his teammates inside the box as his pass is blocked.",
"identified": "[PLAYER_jeRaNgKg] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked.",
"visibility": "shown",
"position": "2611000"
},
{
"important": false,
"gameTime": "1 - 41:09",
"label": "",
"description": "Emre Can (Liverpool) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"identified": "[PLAYER_YJu3hSpk] ([TEAM_]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"anonymized": "[PLAYER] ([TEAM]) timed his run perfectly to connect with the resulting corner kick, but his finish from around the penalty spot was rather poor as it went way over the bar.",
"visibility": "shown",
"position": "2469000"
},
{
"important": false,
"gameTime": "1 - 40:57",
"label": "corner",
"description": "The referee awards a corner and Jordan Henderson (Liverpool) goes over to take it.",
"identified": "The referee awards a corner and [PLAYER_UFMlUD6r] ([TEAM_]) goes over to take it.",
"anonymized": "The referee awards a corner and [PLAYER] ([TEAM]) goes over to take it.",
"visibility": "shown",
"position": "2457000"
},
{
"important": false,
"gameTime": "1 - 40:47",
"label": "",
"description": "Sadio Mane (Liverpool) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders. Liverpool will take a corner kick.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders. [TEAM_] will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "2447000"
},
{
"important": false,
"gameTime": "1 - 39:13",
"label": "",
"description": "Liverpool 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": "2353000"
},
{
"important": true,
"gameTime": "1 - 36:53",
"label": "",
"description": "Dejan Lovren (Liverpool) leaps high deep inside the box to meet a beautiful cross from the resultant free kick. He glances a header goalwards, but it goes narrowly wide of the right post.",
"identified": "[PLAYER_GAcQF9Z6] ([TEAM_]) leaps high deep inside the box to meet a beautiful cross from the resultant free kick. He glances a header goalwards, but it goes narrowly wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) leaps high deep inside the box to meet a beautiful cross from the resultant free kick. He glances a header goalwards, but it goes narrowly wide of the right post.",
"visibility": "shown",
"position": "2213000"
},
{
"important": false,
"gameTime": "1 - 35:58",
"label": "",
"description": "Divock Origi (Liverpool) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_jeRaNgKg] ([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": "2158000"
},
{
"important": true,
"gameTime": "1 - 33:41",
"label": "substitution",
"description": "That's the end of the game for Philippe Coutinho, who is replaced by Divock Origi (Liverpool).",
"identified": "That's the end of the game for [PLAYER_QP6r8H7O], who is replaced by [PLAYER_jeRaNgKg] ([TEAM_]).",
"anonymized": "That's the end of the game for [PLAYER], who is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2021000"
},
{
"important": false,
"gameTime": "1 - 30:01",
"label": "injury",
"description": "Philippe Coutinho (Liverpool) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_QP6r8H7O] ([TEAM_]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"anonymized": "[PLAYER] ([TEAM]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"visibility": "shown",
"position": "1801000"
},
{
"important": false,
"gameTime": "1 - 29:29",
"label": "",
"description": "The ball is cleared after Philippe Coutinho (Liverpool) attempted to dribble past an opposing player. The ball has crossed the sideline. Liverpool are taking a throw-in.",
"identified": "The ball is cleared after [PLAYER_QP6r8H7O] ([TEAM_]) attempted to dribble past an opposing player. The ball has crossed the sideline. [TEAM_] are taking a throw-in.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The ball has crossed the sideline. [TEAM] are taking a throw-in.",
"visibility": "shown",
"position": "1769000"
},
{
"important": false,
"gameTime": "1 - 27:15",
"label": "",
"description": "James Milner (Liverpool) sends a long cross over to Sadio Mane, but Jordan Pickford comes forward to gather the ball.",
"identified": "[PLAYER_QLY3kAEt] ([TEAM_]) sends a long cross over to [PLAYER_xxskxOU0], but [PLAYER_SKTJdUtH] 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": "1635000"
},
{
"important": false,
"gameTime": "1 - 24:45",
"label": "",
"description": "Georginio Wijnaldum (Liverpool) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies well wide of the left post.",
"identified": "[PLAYER_f9KgUUZu] ([TEAM_]) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself and goes for goal from long range. It never troubles the goalkeeper as it flies well wide of the left post.",
"visibility": "shown",
"position": "1485000"
},
{
"important": false,
"gameTime": "1 - 23:09",
"label": "",
"description": "Sadio Mane (Liverpool) has a sight of goal and shoots from distance, but Jordan Pickford is equal to it.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) has a sight of goal and shoots from distance, but [PLAYER_SKTJdUtH] is equal to it.",
"anonymized": "[PLAYER] ([TEAM]) has a sight of goal and shoots from distance, but [PLAYER] is equal to it.",
"visibility": "shown",
"position": "1389000"
},
{
"important": false,
"gameTime": "1 - 22:55",
"label": "corner",
"description": "Patrick van Aanholt (Sunderland) floats the ball in from the corner but it's intercepted.",
"identified": "[PLAYER_GxbOZOLI] ([TEAM_]) floats the ball in from the corner but it's intercepted.",
"anonymized": "[PLAYER] ([TEAM]) floats the ball in from the corner but it's intercepted.",
"visibility": "shown",
"position": "1375000"
},
{
"important": false,
"gameTime": "1 - 22:45",
"label": "",
"description": "Steven Pienaar (Sunderland) sends a pass into the box, but his attempt is thwarted and cleared. The ball goes behind for a corner. Sunderland will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_zaIHqcIq] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1365000"
},
{
"important": false,
"gameTime": "1 - 22:07",
"label": "",
"description": "Good touch by Patrick van Aanholt (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_GxbOZOLI] ([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": "1327000"
},
{
"important": true,
"gameTime": "1 - 20:41",
"label": "",
"description": "CLOSE! Roberto Firmino (Liverpool) shows off his amazing skills with a solo run to the edge of the box before fashioning a shot that whistles over the bar. The ball is off of the pitch and it's a goal kick for Sunderland.",
"identified": "CLOSE! [PLAYER_CCNtplZe] ([TEAM_]) shows off his amazing skills with a solo run to the edge of the box before fashioning a shot that whistles over the bar. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "CLOSE! [PLAYER] ([TEAM]) shows off his amazing skills with a solo run to the edge of the box before fashioning a shot that whistles over the bar. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1241000"
},
{
"important": false,
"gameTime": "1 - 19:42",
"label": "",
"description": "Flag up against Jermain Defoe (Sunderland). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_QDtjHrsH] ([TEAM_]). He had space to move into behind the defence, but he went too soon.",
"anonymized": "Flag up against [PLAYER] ([TEAM]). He had space to move into behind the defence, but he went too soon.",
"visibility": "shown",
"position": "1182000"
},
{
"important": false,
"gameTime": "1 - 18:06",
"label": "corner",
"description": "Patrick van Aanholt (Sunderland) takes the corner kick but the ball only finds the head of an opponent.",
"identified": "[PLAYER_GxbOZOLI] ([TEAM_]) takes the corner kick but the ball only finds the head of an opponent.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick but the ball only finds the head of an opponent.",
"visibility": "shown",
"position": "1086000"
},
{
"important": true,
"gameTime": "1 - 16:50",
"label": "",
"description": "Steven Pienaar (Sunderland) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at Loris Karius. The ball goes out of play. Sunderland are awarded a corner kick.",
"identified": "[PLAYER_zaIHqcIq] ([TEAM_]) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at [PLAYER_MgWRUFHG]. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at [PLAYER]. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1010000"
},
{
"important": false,
"gameTime": "1 - 16:20",
"label": "corner",
"description": "Nothing comes of the resulting corner from Patrick van Aanholt (Sunderland). The defence is alert and manages to cut it out.",
"identified": "Nothing comes of the resulting corner from [PLAYER_GxbOZOLI] ([TEAM_]). The defence is alert and manages to cut it out.",
"anonymized": "Nothing comes of the resulting corner from [PLAYER] ([TEAM]). The defence is alert and manages to cut it out.",
"visibility": "shown",
"position": "980000"
},
{
"important": false,
"gameTime": "1 - 16:10",
"label": "",
"description": "Steven Pienaar (Sunderland) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. It will be a corner kick for Sunderland.",
"identified": "[PLAYER_zaIHqcIq] ([TEAM_]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "970000"
},
{
"important": false,
"gameTime": "1 - 15:24",
"label": "",
"description": "The defence had a hard time blocking out the strike from Jermain Defoe (Sunderland). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate.",
"identified": "The defence had a hard time blocking out the strike from [PLAYER_QDtjHrsH] ([TEAM_]). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate.",
"anonymized": "The defence had a hard time blocking out the strike from [PLAYER] ([TEAM]). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate.",
"visibility": "shown",
"position": "924000"
},
{
"important": true,
"gameTime": "1 - 14:22",
"label": "",
"description": "Georginio Wijnaldum (Liverpool) produces a ferocious strike from the edge of the box. His dangerous effort towards the right post is blocked by Jordan Pickford, who pulls off a superb save to keep the ball out of the net.",
"identified": "[PLAYER_f9KgUUZu] ([TEAM_]) produces a ferocious strike from the edge of the box. His dangerous effort towards the right post is blocked by [PLAYER_SKTJdUtH], who pulls off a superb save to keep the ball out of the net.",
"anonymized": "[PLAYER] ([TEAM]) produces a ferocious strike from the edge of the box. His dangerous effort towards the right post is blocked by [PLAYER], who pulls off a superb save to keep the ball out of the net.",
"visibility": "shown",
"position": "862000"
},
{
"important": false,
"gameTime": "1 - 12:45",
"label": "corner",
"description": "The resulting corner from Philippe Coutinho (Liverpool) is cleared.",
"identified": "The resulting corner from [PLAYER_QP6r8H7O] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "765000"
},
{
"important": false,
"gameTime": "1 - 12:28",
"label": "",
"description": "Sadio Mane (Liverpool) tries to slide the ball through to a teammate but it's well blocked by a defender. Liverpool have a corner.",
"identified": "[PLAYER_xxskxOU0] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender. [TEAM] have a corner.",
"visibility": "shown",
"position": "748000"
}
]
} |