File size: 91,442 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 |
{
"timestamp": "1442342700",
"score": "2 - 1",
"round": "1",
"teams": [
"PSV",
"Manchester United"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "82iJTw7N",
"name": "Arias S.",
"captain": "",
"detail_link": "/player/arias-santiago/82iJTw7N/",
"short_name": "Arias",
"shirt_number": "4",
"country": "Colombia",
"facts": [
{
"type": "1",
"time": "55' Arias S. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Santiago Arias"
},
{
"hash": "AiIfuEh9",
"name": "Brenet J.",
"captain": "",
"detail_link": "/player/brenet-joshua/AiIfuEh9/",
"short_name": "Brenet",
"shirt_number": "20",
"country": "Netherlands",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Joshua Brenet"
},
{
"hash": "WUL0NbT4",
"name": "Bruma J.",
"captain": "",
"detail_link": "/player/bruma-jeffrey/WUL0NbT4/",
"short_name": "Bruma",
"shirt_number": "5",
"country": "Netherlands",
"facts": [
{
"type": "1",
"time": "71' Bruma J. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Jeffrey Bruma"
},
{
"hash": "fVuRxt84",
"name": "de Jong L.",
"captain": "(C)",
"detail_link": "/player/de-jong-luuk/fVuRxt84/",
"short_name": "de Jong",
"shirt_number": "9",
"country": "Netherlands",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Luuk de Jong"
},
{
"hash": "KMjbtcfo",
"name": "Guardado A.",
"captain": "",
"detail_link": "/player/guardado-andres/KMjbtcfo/",
"short_name": "Guardado",
"shirt_number": "18",
"country": "Mexico",
"facts": [
{
"type": "6",
"time": "72'",
"description": "Schaars S.",
"linked_player_hash": "p2XRuLD3"
}
],
"lineup": 8,
"starting": true,
"long_name": "Andres Guardado"
},
{
"hash": "tMs28wMD",
"name": "Hendrix J.",
"captain": "",
"detail_link": "/player/hendrix-jorrit/tMs28wMD/",
"short_name": "Hendrix",
"shirt_number": "29",
"country": "Netherlands",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Jorrit Hendrix"
},
{
"hash": "nJc0gobR",
"name": "Lestienne M.",
"captain": "",
"detail_link": "/player/lestienne-maxime/nJc0gobR/",
"short_name": "Lestienne",
"shirt_number": "16",
"country": "Belgium",
"facts": [
{
"type": "8",
"time": "45+2' Moreno H. (Lestienne M.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "8",
"time": "57' Narsingh L. (Lestienne M.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "86'",
"description": "Locadia J.",
"linked_player_hash": "0EA6GzzT"
}
],
"lineup": 11,
"starting": true,
"long_name": "Maxime Lestienne"
},
{
"hash": "Q5Mj5mwa",
"name": "Moreno H.",
"captain": "",
"detail_link": "/player/moreno-hector/Q5Mj5mwa/",
"short_name": "Moreno",
"shirt_number": "3",
"country": "Mexico",
"facts": [
{
"type": "3",
"time": "45+2' Moreno H. (Lestienne M.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "60' Moreno H. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Hector Moreno"
},
{
"hash": "69o8nMM9",
"name": "Narsingh L.",
"captain": "",
"detail_link": "/player/narsingh-luciano/69o8nMM9/",
"short_name": "Narsingh",
"shirt_number": "11",
"country": "Netherlands",
"facts": [
{
"type": "3",
"time": "57' Narsingh L. (Lestienne M.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Luciano Narsingh"
},
{
"hash": "h6DklREE",
"name": "Propper D.",
"captain": "",
"detail_link": "/player/propper-davy/h6DklREE/",
"short_name": "Propper",
"shirt_number": "6",
"country": "Netherlands",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Davy Propper"
},
{
"hash": "IDI0wVTT",
"name": "Zoet J.",
"captain": "",
"detail_link": "/player/zoet-jeroen/IDI0wVTT/",
"short_name": "Zoet",
"shirt_number": "1",
"country": "Netherlands",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Jeroen Zoet"
},
{
"hash": "Mkhbm4fo",
"name": "de Wijs J.",
"captain": "",
"detail_link": "/player/de-wijs-jordy/Mkhbm4fo/",
"short_name": "de Wijs",
"shirt_number": "30",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jordy de Wijs"
},
{
"hash": "0EA6GzzT",
"name": "Locadia J.",
"captain": "",
"detail_link": "/player/locadia-jurgen/0EA6GzzT/",
"short_name": "Locadia",
"shirt_number": "19",
"country": "Netherlands",
"facts": [
{
"type": "7",
"time": "86'",
"description": "Lestienne M.",
"linked_player_hash": "nJc0gobR"
}
],
"lineup": null,
"starting": false,
"long_name": "Jurgen Locadia"
},
{
"hash": "0xnrVdqC",
"name": "Pasveer R.",
"captain": "",
"detail_link": "/player/pasveer-remko/0xnrVdqC/",
"short_name": "Pasveer",
"shirt_number": "22",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Remko Pasveer"
},
{
"hash": "txlUkIne",
"name": "Pereiro G.",
"captain": "",
"detail_link": "/player/pereiro-gaston/txlUkIne/",
"short_name": "Pereiro",
"shirt_number": "7",
"country": "Uruguay",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gaston Pereiro"
},
{
"hash": "nor1adyj",
"name": "Poulsen S.",
"captain": "",
"detail_link": "/player/poulsen-simon/nor1adyj/",
"short_name": "Poulsen",
"shirt_number": "14",
"country": "Denmark",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Simon Poulsen"
},
{
"hash": "p2XRuLD3",
"name": "Schaars S.",
"captain": "",
"detail_link": "/player/schaars-stijn/p2XRuLD3/",
"short_name": "Schaars",
"shirt_number": "8",
"country": "Netherlands",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Guardado A.",
"linked_player_hash": "KMjbtcfo"
}
],
"lineup": null,
"starting": false,
"long_name": "Stijn Schaars"
},
{
"hash": "jeXy2yas",
"name": "Vloet R.",
"captain": "",
"detail_link": "/player/vloet-rai/jeXy2yas/",
"short_name": "Vloet",
"shirt_number": "23",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rai Vloet"
}
],
"coach": [
{
"hash": "rVKdukne",
"name": "Cocu P.",
"captain": "",
"detail_link": "/player/cocu-phillip/rVKdukne/",
"short_name": "Cocu P.",
"shirt_number": "",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Phillip Cocu"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "U5mPqlh6",
"name": "Blind D.",
"captain": "",
"detail_link": "/player/blind-daley/U5mPqlh6/",
"short_name": "Blind",
"shirt_number": "17",
"country": "Netherlands",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Daley Blind"
},
{
"hash": "WbNknKk3",
"name": "Darmian M.",
"captain": "",
"detail_link": "/player/darmian-matteo/WbNknKk3/",
"short_name": "Darmian",
"shirt_number": "36",
"country": "Italy",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Matteo Darmian"
},
{
"hash": "d6AEQ6OD",
"name": "de Gea D.",
"captain": "",
"detail_link": "/player/de-gea-david/d6AEQ6OD/",
"short_name": "de Gea",
"shirt_number": "1",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "David de Gea"
},
{
"hash": "zo1h8MrD",
"name": "Depay M.",
"captain": "",
"detail_link": "/player/depay-memphis/zo1h8MrD/",
"short_name": "Depay",
"shirt_number": "7",
"country": "Netherlands",
"facts": [
{
"type": "3",
"time": "41' Depay M.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Memphis Depay"
},
{
"hash": "jyzWX8yk",
"name": "Herrera A.",
"captain": "",
"detail_link": "/player/herrera-ander/jyzWX8yk/",
"short_name": "Herrera",
"shirt_number": "21",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "75'",
"description": "Fellaini M.",
"linked_player_hash": "nJoIy5ih"
}
],
"lineup": 7,
"starting": true,
"long_name": "Ander Herrera"
},
{
"hash": "GrS6Vr75",
"name": "Martial A.",
"captain": "",
"detail_link": "/player/martial-anthony/GrS6Vr75/",
"short_name": "Martial",
"shirt_number": "9",
"country": "France",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Anthony Martial"
},
{
"hash": "nHlv2UfS",
"name": "Mata J.",
"captain": "",
"detail_link": "/player/mata-juan/nHlv2UfS/",
"short_name": "Mata",
"shirt_number": "8",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Juan Manuel Mata"
},
{
"hash": "Kj6ZEYc8",
"name": "Schweinsteiger B.",
"captain": "",
"detail_link": "/player/schweinsteiger-bastian/Kj6ZEYc8/",
"short_name": "Schweinsteiger",
"shirt_number": "31",
"country": "Germany",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Bastian Schweinsteiger"
},
{
"hash": "88iLXV0O",
"name": "Shaw L.",
"captain": "",
"detail_link": "/player/shaw-luke/88iLXV0O/",
"short_name": "Shaw",
"shirt_number": "23",
"country": "England",
"facts": [
{
"type": "6",
"time": "24'",
"description": "Rojo M.",
"linked_player_hash": "UZCWoIyB"
}
],
"lineup": 5,
"starting": true,
"long_name": "Luke Shaw"
},
{
"hash": "QHtOVJzh",
"name": "Smalling C.",
"captain": "(C)",
"detail_link": "/player/smalling-chris/QHtOVJzh/",
"short_name": "Smalling",
"shirt_number": "12",
"country": "England",
"facts": [
{
"type": "1",
"time": "67' Smalling C. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Chris Smalling"
},
{
"hash": "tdmI0fpF",
"name": "Young A.",
"captain": "",
"detail_link": "/player/young-ashley/tdmI0fpF/",
"short_name": "Young",
"shirt_number": "18",
"country": "England",
"facts": [
{
"type": "6",
"time": "86'",
"description": "Valencia A.",
"linked_player_hash": "Ecu9nqDs"
}
],
"lineup": 8,
"starting": true,
"long_name": "Ashley Young"
},
{
"hash": "phM8NElP",
"name": "Carrick M.",
"captain": "",
"detail_link": "/player/carrick-michael/phM8NElP/",
"short_name": "Carrick",
"shirt_number": "16",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Michael Carrick"
},
{
"hash": "nJoIy5ih",
"name": "Fellaini M.",
"captain": "",
"detail_link": "/player/fellaini-marouane/nJoIy5ih/",
"short_name": "Fellaini",
"shirt_number": "27",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "75'",
"description": "Herrera A.",
"linked_player_hash": "jyzWX8yk"
}
],
"lineup": null,
"starting": false,
"long_name": "Marouane Fellaini"
},
{
"hash": "A7pgD1ZN",
"name": "McNair P.",
"captain": "",
"detail_link": "/player/mcnair-paddy/A7pgD1ZN/",
"short_name": "McNair",
"shirt_number": "33",
"country": "Northern Ireland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Paddy McNair"
},
{
"hash": "UZCWoIyB",
"name": "Rojo M.",
"captain": "",
"detail_link": "/player/rojo-marcos/UZCWoIyB/",
"short_name": "Rojo",
"shirt_number": "5",
"country": "Argentina",
"facts": [
{
"type": "7",
"time": "24'",
"description": "Shaw L.",
"linked_player_hash": "88iLXV0O"
}
],
"lineup": null,
"starting": false,
"long_name": "Marcos Rojo"
},
{
"hash": "6TXnXzjd",
"name": "Romero S.",
"captain": "",
"detail_link": "/player/romero-sergio/6TXnXzjd/",
"short_name": "Romero",
"shirt_number": "20",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sergio Romero"
},
{
"hash": "p460ogNN",
"name": "Schneiderlin M.",
"captain": "",
"detail_link": "/player/schneiderlin-morgan/p460ogNN/",
"short_name": "Schneiderlin",
"shirt_number": "28",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Morgan Schneiderlin"
},
{
"hash": "Ecu9nqDs",
"name": "Valencia A.",
"captain": "",
"detail_link": "/player/valencia-antonio/Ecu9nqDs/",
"short_name": "Valencia",
"shirt_number": "25",
"country": "Ecuador",
"facts": [
{
"type": "7",
"time": "86'",
"description": "Young A.",
"linked_player_hash": "tdmI0fpF"
}
],
"lineup": null,
"starting": false,
"long_name": "Antonio Valencia"
}
],
"coach": [
{
"hash": "4APqpVFg",
"name": "van Gaal L.",
"captain": "",
"detail_link": "/player/van-gaal-louis/4APqpVFg/",
"short_name": "van Gaal L.",
"shirt_number": "",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Louis van Gaal"
}
]
}
},
"referee": [
"Rizzoli N."
],
"venue": [
"Philips Stadion (Eindhoven)"
],
"attendance": [
"35 292"
],
"referee_matched": [
"Nicola Rizzoli"
],
"referee_found": [
"Nicola Rizzoli"
],
"coach_matched": [
"Phillip Cocu",
"Louis van Gaal"
],
"gameHomeTeam": "PSV",
"home": {
"name": "PSV",
"detail_link": "/team/psv/M9UEHJWi",
"hash": "M9UEHJWi",
"names": [
"PSV",
"PSV (Ned)",
"psv"
]
},
"gameAwayTeam": "Manchester United",
"away": {
"name": "Manchester United",
"detail_link": "/team/manchester-united/ppjDR086",
"hash": "ppjDR086",
"names": [
"Manchester United",
"Manchester Utd",
"Manchester Utd (Eng)",
"manchester united"
]
},
"gameDate": "15/09/2015 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. The visitors played the better football overall. The home team's main weapon was fast counter-attacks, while the away side attempted to hold onto the ball for as long as possible.",
"identified": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. The visitors played the better football overall. The home team's main weapon was fast counter-attacks, while the away side attempted to hold onto the ball for as long as possible.",
"anonymized": "There was no time for the supporters to get bored during the game as it was full of action and thrilling moments. The visitors played the better football overall. The home team's main weapon was fast counter-attacks, while the away side attempted to hold onto the ball for as long as possible.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:03",
"label": "whistle",
"description": "Nothing more will happen in this game as the referee blows for full time.",
"identified": "Nothing more will happen in this game as the referee blows for full time.",
"anonymized": "Nothing more will happen in this game as the referee blows for full time.",
"visibility": "shown",
"position": "2883000"
},
{
"important": false,
"gameTime": "2 - 46:48",
"label": "",
"description": "Memphis Depay (Manchester United) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders.",
"identified": "[PLAYER_zo1h8MrD] ([TEAM_]) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) strikes the ball towards goal, but it fails to reach the target after being well blocked by one of the defenders.",
"visibility": "shown",
"position": "2808000"
},
{
"important": false,
"gameTime": "2 - 46:20",
"label": "",
"description": "Luciano Narsingh (PSV) plays a through ball but overhits it. The ball is off of the pitch and it's a goal kick for Manchester Utd.",
"identified": "[PLAYER_69o8nMM9] ([TEAM_]) plays a through ball but overhits it. The ball is off of the pitch and it's a goal kick for [TEAM_ppjDR086].",
"anonymized": "[PLAYER] ([TEAM]) plays a through ball but overhits it. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "2780000"
},
{
"important": false,
"gameTime": "2 - 45:30",
"label": "",
"description": "Memphis Depay (Manchester United) receives the ball from the set piece on the edge of the box, but fails to score because his shot is blocked.",
"identified": "[PLAYER_zo1h8MrD] ([TEAM_]) receives the ball from the set piece on the edge of the box, but fails to score because his shot is blocked.",
"anonymized": "[PLAYER] ([TEAM]) receives the ball from the set piece on the edge of the box, but fails to score because his shot is blocked.",
"visibility": "shown",
"position": "2730000"
},
{
"important": false,
"gameTime": "2 - 45:22",
"label": "",
"description": "Juan Manuel Mata (Manchester United) tries to take the opposition by surprise with a quick free kick into the box.",
"identified": "[PLAYER_nHlv2UfS] ([TEAM_]) tries to take the opposition by surprise with a quick free kick into the box.",
"anonymized": "[PLAYER] ([TEAM]) tries to take the opposition by surprise with a quick free kick into the box.",
"visibility": "shown",
"position": "2722000"
},
{
"important": false,
"gameTime": "2 - 45:17",
"label": "",
"description": "Stijn Schaars (PSV) touches the ball with his hand. Manchester Utd are awarded the free kick.",
"identified": "[PLAYER_p2XRuLD3] ([TEAM_]) touches the ball with his hand. [TEAM_ppjDR086] are awarded the free kick.",
"anonymized": "[PLAYER] ([TEAM]) touches the ball with his hand. [TEAM] are awarded the free kick.",
"visibility": "shown",
"position": "2717000"
},
{
"important": false,
"gameTime": "2 - 45:10",
"label": "corner",
"description": "Memphis Depay (Manchester United) decides to take a short corner instead of crossing into the box.",
"identified": "[PLAYER_zo1h8MrD] ([TEAM_]) decides to take a short corner instead of crossing into the box.",
"anonymized": "[PLAYER] ([TEAM]) decides to take a short corner instead of crossing into the box.",
"visibility": "shown",
"position": "2710000"
},
{
"important": false,
"gameTime": "2 - 45:03",
"label": "",
"description": "Marouane Fellaini (Manchester United) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender. Manchester Utd have been awarded a corner kick.",
"identified": "[PLAYER_nJoIy5ih] ([TEAM_]) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender. [TEAM_ppjDR086] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2703000"
},
{
"important": false,
"gameTime": "3 - 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": "2 - 44:40",
"label": "",
"description": "Bastian Schweinsteiger (Manchester United) takes a short free kick.",
"identified": "[PLAYER_Kj6ZEYc8] ([TEAM_]) takes a short free kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short free kick.",
"visibility": "shown",
"position": "2680000"
},
{
"important": false,
"gameTime": "2 - 44:18",
"label": "",
"description": "Stijn Schaars (PSV) makes a reckless foul in order to win the ball from his opponent. Nicola Rizzoli has a clear sight of it and blows his whistle. Free kick. Manchester Utd will probably just try to cross the ball in from here.",
"identified": "[PLAYER_p2XRuLD3] ([TEAM_]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle. Free kick. [TEAM_ppjDR086] will probably just try to cross the ball in from here.",
"anonymized": "[PLAYER] ([TEAM]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle. Free kick. [TEAM] will probably just try to cross the ball in from here.",
"visibility": "shown",
"position": "2658000"
},
{
"important": false,
"gameTime": "2 - 42:33",
"label": "",
"description": "Marouane Fellaini (Manchester United) unleashes a shot from 25 metres out but is unable to find the target and it goes well wide of the left post.",
"identified": "[PLAYER_nJoIy5ih] ([TEAM_]) unleashes a shot from 25 metres out but is unable to find the target and it goes well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot from 25 metres out but is unable to find the target and it goes well wide of the left post.",
"visibility": "shown",
"position": "2553000"
},
{
"important": false,
"gameTime": "2 - 42:17",
"label": "",
"description": "Antonio Valencia (Manchester United) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_Ecu9nqDs] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "2537000"
},
{
"important": true,
"gameTime": "2 - 40:26",
"label": "substitution",
"description": "Louis van Gaal has decided to introduce fresh legs, with Antonio Valencia (Manchester United) replacing Ashley Young.",
"identified": "[COACH_4APqpVFg] has decided to introduce fresh legs, with [PLAYER_Ecu9nqDs] ([TEAM_]) replacing [PLAYER_tdmI0fpF].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "2426000"
},
{
"important": true,
"gameTime": "2 - 40:09",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Maxime Lestienne departs the field of play to be replaced by Jurgen Locadia (PSV).",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_nJc0gobR] departs the field of play to be replaced by [PLAYER_0EA6GzzT] ([TEAM_]).",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] departs the field of play to be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2409000"
},
{
"important": false,
"gameTime": "2 - 39:29",
"label": "",
"description": "Anthony Martial (Manchester United) does his best to latch onto a cross into the box, but he can't get to the ball.",
"identified": "[PLAYER_GrS6Vr75] ([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": "2369000"
},
{
"important": true,
"gameTime": "2 - 38:13",
"label": "",
"description": "What a big chance! Luuk de Jong (PSV) picks up an inch-perfect pass inside the box and skies the ball well over the bar.",
"identified": "What a big chance! [PLAYER_fVuRxt84] ([TEAM_]) picks up an inch-perfect pass inside the box and skies the ball well over the bar.",
"anonymized": "What a big chance! [PLAYER] ([TEAM]) picks up an inch-perfect pass inside the box and skies the ball well over the bar.",
"visibility": "shown",
"position": "2293000"
},
{
"important": false,
"gameTime": "2 - 37:15",
"label": "",
"description": "Maxime Lestienne (PSV) shoots from the edge of the penalty area. The ball travels towards the target, but David de Gea easily deals with the threat.",
"identified": "[PLAYER_nJc0gobR] ([TEAM_]) shoots from the edge of the penalty area. The ball travels towards the target, but [PLAYER_d6AEQ6OD] easily deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) shoots from the edge of the penalty area. The ball travels towards the target, but [PLAYER] easily deals with the threat.",
"visibility": "shown",
"position": "2235000"
},
{
"important": false,
"gameTime": "2 - 36:47",
"label": "funfact",
"description": "We can have a look at the statistics now, particularly the total attempts \u2013 6:17.",
"identified": "We can have a look at the statistics now, particularly the total attempts \u2013 6:17.",
"anonymized": "We can have a look at the statistics now, particularly the total attempts \u2013 6:17.",
"visibility": "shown",
"position": "2207000"
},
{
"important": false,
"gameTime": "2 - 35:36",
"label": "",
"description": "Chance! Anthony Martial (Manchester United) was in a good position inside the box, but he couldn't connect with the pass as it was overhit.",
"identified": "Chance! [PLAYER_GrS6Vr75] ([TEAM_]) was in a good position inside the box, but he couldn't connect with the pass as it was overhit.",
"anonymized": "Chance! [PLAYER] ([TEAM]) was in a good position inside the box, but he couldn't connect with the pass as it was overhit.",
"visibility": "shown",
"position": "2136000"
},
{
"important": false,
"gameTime": "2 - 34:53",
"label": "corner",
"description": "Maxime Lestienne (PSV) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"identified": "[PLAYER_nJc0gobR] ([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": "2093000"
},
{
"important": false,
"gameTime": "2 - 34:28",
"label": "",
"description": "A fine lofted pass into the box, sent by Maxime Lestienne (PSV), is intercepted by the opposition's defence. Now PSV have a corner.",
"identified": "A fine lofted pass into the box, sent by [PLAYER_nJc0gobR] ([TEAM_]), is intercepted by the opposition's defence. Now [TEAM_] have a corner.",
"anonymized": "A fine lofted pass into the box, sent by [PLAYER] ([TEAM]), is intercepted by the opposition's defence. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "2068000"
},
{
"important": true,
"gameTime": "2 - 32:36",
"label": "",
"description": "Anthony Martial (Manchester United) receives a brilliant pass and wastes a big opportunity as his shot from inside the penalty area flies narrowly wide of the left post.",
"identified": "[PLAYER_GrS6Vr75] ([TEAM_]) receives a brilliant pass and wastes a big opportunity as his shot from inside the penalty area flies narrowly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) receives a brilliant pass and wastes a big opportunity as his shot from inside the penalty area flies narrowly wide of the left post.",
"visibility": "shown",
"position": "1956000"
},
{
"important": false,
"gameTime": "2 - 31:02",
"label": "",
"description": "Daley Blind (Manchester United) sends over a cross, but he can't find any teammate inside the box. Poor delivery. The ball is off of the pitch and it's a goal kick for PSV.",
"identified": "[PLAYER_U5mPqlh6] ([TEAM_]) sends over a cross, but he can't find any teammate inside the box. Poor delivery. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends over a cross, but he can't find any teammate inside the box. Poor delivery. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1862000"
},
{
"important": true,
"gameTime": "2 - 29:59",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Marouane Fellaini (Manchester United) will replace Ander Herrera.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_nJoIy5ih] ([TEAM_]) will replace [PLAYER_jyzWX8yk].",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) will replace [PLAYER].",
"visibility": "shown",
"position": "1799000"
},
{
"important": false,
"gameTime": "2 - 28:14",
"label": "",
"description": "Ashley Young (Manchester United) bursts into the box and pulls the trigger, but he can't beat the goalkeeper. He directed his shot towards the middle of the goal, but one of the defenders reacted brilliantly to block it.",
"identified": "[PLAYER_tdmI0fpF] ([TEAM_]) bursts into the box and pulls the trigger, but he can't beat the goalkeeper. He directed his shot towards the middle of the goal, but one of the defenders reacted brilliantly to block it.",
"anonymized": "[PLAYER] ([TEAM]) bursts into the box and pulls the trigger, but he can't beat the goalkeeper. He directed his shot towards the middle of the goal, but one of the defenders reacted brilliantly to block it.",
"visibility": "shown",
"position": "1694000"
},
{
"important": false,
"gameTime": "2 - 26:40",
"label": "corner",
"description": "The ball is whipped in from the corner by Memphis Depay (Manchester United), but one of the defenders gets it clear.",
"identified": "The ball is whipped in from the corner by [PLAYER_zo1h8MrD] ([TEAM_]), but one of the defenders gets it clear.",
"anonymized": "The ball is whipped in from the corner by [PLAYER] ([TEAM]), but one of the defenders gets it clear.",
"visibility": "shown",
"position": "1600000"
},
{
"important": true,
"gameTime": "2 - 26:24",
"label": "substitution",
"description": "Problems for Phillip Cocu as Andres Guardado is not able to play anymore. His injury is too serious and Stijn Schaars (PSV) replaces him.",
"identified": "Problems for [COACH_rVKdukne] as [PLAYER_KMjbtcfo] is not able to play anymore. His injury is too serious and [PLAYER_p2XRuLD3] ([TEAM_]) replaces him.",
"anonymized": "Problems for [COACH] as [PLAYER] is not able to play anymore. His injury is too serious and [PLAYER] ([TEAM]) replaces him.",
"visibility": "shown",
"position": "1584000"
},
{
"important": true,
"gameTime": "2 - 25:39",
"label": "y-card",
"description": "The main referee, Nicola Rizzoli, is apparently not going to tolerate any discussions. Jeffrey Bruma (PSV) is given a yellow card for dissent.",
"identified": "The main referee, [REFEREE], is apparently not going to tolerate any discussions. [PLAYER_WUL0NbT4] ([TEAM_]) is given a yellow card for dissent.",
"anonymized": "The main referee, [REFEREE], is apparently not going to tolerate any discussions. [PLAYER] ([TEAM]) is given a yellow card for dissent.",
"visibility": "shown",
"position": "1539000"
},
{
"important": false,
"gameTime": "2 - 25:31",
"label": "corner",
"description": "The referee blows his whistle, Manchester Utd are awarded a corner kick.",
"identified": "The referee blows his whistle, [TEAM_ppjDR086] are awarded a corner kick.",
"anonymized": "The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1531000"
},
{
"important": false,
"gameTime": "2 - 24:54",
"label": "corner",
"description": "This corner kick is taken with a short pass by Matteo Darmian (Manchester United).",
"identified": "This corner kick is taken with a short pass by [PLAYER_WbNknKk3] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1494000"
},
{
"important": false,
"gameTime": "2 - 24:28",
"label": "",
"description": "A cross from Matteo Darmian (Manchester United) fails to reach the box as the defence clears the ball away to safety. Manchester Utd will have a chance to score from a corner kick.",
"identified": "A cross from [PLAYER_WbNknKk3] ([TEAM_]) fails to reach the box as the defence clears the ball away to safety. [TEAM_ppjDR086] will have a chance to score from a corner kick.",
"anonymized": "A cross from [PLAYER] ([TEAM]) fails to reach the box as the defence clears the ball away to safety. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "1468000"
},
{
"important": false,
"gameTime": "2 - 24:10",
"label": "",
"description": "Andres Guardado (PSV) has picked up a minor injury, but it looks like he will be able to continue.",
"identified": "[PLAYER_KMjbtcfo] ([TEAM_]) has picked up a minor injury, but it looks like he will be able to continue.",
"anonymized": "[PLAYER] ([TEAM]) has picked up a minor injury, but it looks like he will be able to continue.",
"visibility": "shown",
"position": "1450000"
},
{
"important": false,
"gameTime": "2 - 22:05",
"label": "injury",
"description": "Andres Guardado (PSV) is having a really tough time right now. We are about to find out how serious his injury is.",
"identified": "[PLAYER_KMjbtcfo] ([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": "1325000"
},
{
"important": true,
"gameTime": "2 - 21:47",
"label": "y-card",
"description": "Nicola Rizzoli shows a yellow card to Chris Smalling (Manchester United) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_QHtOVJzh] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "1307000"
},
{
"important": false,
"gameTime": "2 - 20:48",
"label": "",
"description": "Memphis Depay (Manchester United) delivers a low pass into the box which is intercepted.",
"identified": "[PLAYER_zo1h8MrD] ([TEAM_]) delivers a low pass into the box which is intercepted.",
"anonymized": "[PLAYER] ([TEAM]) delivers a low pass into the box which is intercepted.",
"visibility": "shown",
"position": "1248000"
},
{
"important": false,
"gameTime": "2 - 19:51",
"label": "",
"description": "Memphis Depay (Manchester United) latches on to a brilliant through ball in a promising position, but one of the defenders is alert to the danger and dispossess him.",
"identified": "[PLAYER_zo1h8MrD] ([TEAM_]) latches on to a brilliant through ball in a promising position, but one of the defenders is alert to the danger and dispossess him.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a brilliant through ball in a promising position, but one of the defenders is alert to the danger and dispossess him.",
"visibility": "shown",
"position": "1191000"
},
{
"important": false,
"gameTime": "2 - 19:29",
"label": "",
"description": "Ashley Young (Manchester United) tries his luck and takes a shot from inside the box. His effort on goal is blocked by a defender.",
"identified": "[PLAYER_tdmI0fpF] ([TEAM_]) tries his luck and takes a shot from inside the box. His effort on goal is blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck and takes a shot from inside the box. His effort on goal is blocked by a defender.",
"visibility": "shown",
"position": "1169000"
},
{
"important": false,
"gameTime": "2 - 19:06",
"label": "",
"description": "Ander Herrera (Manchester United) receives a pass and tries his luck with a shot from 20 metres out. Jeroen Zoet pulls off a comfortable save to stop the effort going into the middle of the goal.",
"identified": "[PLAYER_jyzWX8yk] ([TEAM_]) receives a pass and tries his luck with a shot from 20 metres out. [PLAYER_IDI0wVTT] pulls off a comfortable save to stop the effort going into the middle of the goal.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and tries his luck with a shot from 20 metres out. [PLAYER] pulls off a comfortable save to stop the effort going into the middle of the goal.",
"visibility": "shown",
"position": "1146000"
},
{
"important": false,
"gameTime": "2 - 18:28",
"label": "",
"description": "Joshua Brenet (PSV) fashions a shot from the edge of the box after receiving an accurate pass. David de Gea makes a stunning save to stop the effort from flying into the right side of the goal.",
"identified": "[PLAYER_AiIfuEh9] ([TEAM_]) fashions a shot from the edge of the box after receiving an accurate pass. [PLAYER_d6AEQ6OD] makes a stunning save to stop the effort from flying into the right side of the goal.",
"anonymized": "[PLAYER] ([TEAM]) fashions a shot from the edge of the box after receiving an accurate pass. [PLAYER] makes a stunning save to stop the effort from flying into the right side of the goal.",
"visibility": "shown",
"position": "1108000"
},
{
"important": false,
"gameTime": "2 - 16:30",
"label": "",
"description": "Juan Manuel Mata (Manchester United) does his best to latch onto a cross into the box, but he can't get to the ball.",
"identified": "[PLAYER_nHlv2UfS] ([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": "990000"
},
{
"important": false,
"gameTime": "2 - 15:48",
"label": "",
"description": "Juan Manuel Mata (Manchester United) hammered the ball from a long-range free kick only into the defensive wall.",
"identified": "[PLAYER_nHlv2UfS] ([TEAM_]) hammered the ball from a long-range free kick only into the defensive wall.",
"anonymized": "[PLAYER] ([TEAM]) hammered the ball from a long-range free kick only into the defensive wall.",
"visibility": "shown",
"position": "948000"
},
{
"important": false,
"gameTime": "2 - 15:16",
"label": "",
"description": "Manchester Utd have a free kick.",
"identified": "[TEAM_ppjDR086] have a free kick.",
"anonymized": "[TEAM] have a free kick.",
"visibility": "shown",
"position": "916000"
},
{
"important": true,
"gameTime": "2 - 14:46",
"label": "y-card",
"description": "A yellow card for a tackle by Hector Moreno (PSV). Nicola Rizzoli doesn't hesitate at all to make this decision.",
"identified": "A yellow card for a tackle by [PLAYER_Q5Mj5mwa] ([TEAM_]). [REFEREE] doesn't hesitate at all to make this decision.",
"anonymized": "A yellow card for a tackle by [PLAYER] ([TEAM]). [REFEREE] doesn't hesitate at all to make this decision.",
"visibility": "shown",
"position": "886000"
},
{
"important": false,
"gameTime": "2 - 13:35",
"label": "",
"description": "Juan Manuel Mata (Manchester United) makes a yard for himself on the edge of the box after picking up a pass, but produces a poor effort that sails high over the bar.",
"identified": "[PLAYER_nHlv2UfS] ([TEAM_]) makes a yard for himself on the edge of the box after picking up a pass, but produces a poor effort that sails high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself on the edge of the box after picking up a pass, but produces a poor effort that sails high over the bar.",
"visibility": "shown",
"position": "815000"
},
{
"important": true,
"gameTime": "2 - 11:24",
"label": "soccer-ball",
"description": "Maxime Lestienne launches a beautiful lofted cross into the box, where Luciano Narsingh (PSV) rises high to head the ball into the right side of the goal and beyond the goalkeeper. 1:1.",
"identified": "[PLAYER_nJc0gobR] launches a beautiful lofted cross into the box, where [PLAYER_69o8nMM9] ([TEAM_]) rises high to head the ball into the right side of the goal and beyond the goalkeeper. 1:1.",
"anonymized": "[PLAYER] launches a beautiful lofted cross into the box, where [PLAYER] ([TEAM]) rises high to head the ball into the right side of the goal and beyond the goalkeeper. 1:1.",
"visibility": "shown",
"position": "684000"
},
{
"important": true,
"gameTime": "2 - 09:28",
"label": "y-card",
"description": "Santiago Arias (PSV) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. Nicola Rizzoli didn't think twice about pulling it out of his pocket.",
"identified": "[PLAYER_82iJTw7N] ([TEAM_]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"anonymized": "[PLAYER] ([TEAM]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"visibility": "shown",
"position": "568000"
},
{
"important": false,
"gameTime": "2 - 07:37",
"label": "",
"description": "Ashley Young (Manchester United) was too forceful with his tackle and Nicola Rizzoli interrupted the game to signal a free kick.",
"identified": "[PLAYER_tdmI0fpF] ([TEAM_]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick.",
"anonymized": "[PLAYER] ([TEAM]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick.",
"visibility": "shown",
"position": "457000"
},
{
"important": false,
"gameTime": "2 - 06:52",
"label": "corner",
"description": "Luciano Narsingh (PSV) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"identified": "[PLAYER_69o8nMM9] ([TEAM_]) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"anonymized": "[PLAYER] ([TEAM]) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat.",
"visibility": "shown",
"position": "412000"
},
{
"important": false,
"gameTime": "2 - 06:25",
"label": "",
"description": "Santiago Arias (PSV) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. It will be a corner kick for PSV.",
"identified": "[PLAYER_82iJTw7N] ([TEAM_]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "385000"
},
{
"important": false,
"gameTime": "2 - 05:42",
"label": "",
"description": "Memphis Depay (Manchester United) connected with a pass around the edge of the box, aimed and shot. His attempt went low towards the middle of the target, but Jeroen Zoet was alert and the score remained the same.",
"identified": "[PLAYER_zo1h8MrD] ([TEAM_]) connected with a pass around the edge of the box, aimed and shot. His attempt went low towards the middle of the target, but [PLAYER_IDI0wVTT] was alert and the score remained the same.",
"anonymized": "[PLAYER] ([TEAM]) connected with a pass around the edge of the box, aimed and shot. His attempt went low towards the middle of the target, but [PLAYER] was alert and the score remained the same.",
"visibility": "shown",
"position": "342000"
},
{
"important": false,
"gameTime": "2 - 04:47",
"label": "",
"description": "Ashley Young (Manchester United) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"identified": "[PLAYER_tdmI0fpF] ([TEAM_]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball in, but it fails to reach any of his teammates as the opposition's defence averts the threat.",
"visibility": "shown",
"position": "287000"
},
{
"important": false,
"gameTime": "2 - 03:56",
"label": "",
"description": "Manchester Utd are showing great team chemistry. They are passing the ball around seamlessly.",
"identified": "[TEAM_ppjDR086] are showing great team chemistry. They are passing the ball around seamlessly.",
"anonymized": "[TEAM] are showing great team chemistry. They are passing the ball around seamlessly.",
"visibility": "shown",
"position": "236000"
},
{
"important": false,
"gameTime": "2 - 02:35",
"label": "",
"description": "Marcos Rojo (Manchester United) crosses the ball into the box, but one of the defending players averts the threat.",
"identified": "[PLAYER_UZCWoIyB] ([TEAM_]) crosses the ball into the box, but one of the defending players averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box, but one of the defending players averts the threat.",
"visibility": "shown",
"position": "155000"
},
{
"important": false,
"gameTime": "2 - 01:40",
"label": "corner",
"description": "Memphis Depay (Manchester United) floats the ball in from the corner but it's intercepted.",
"identified": "[PLAYER_zo1h8MrD] ([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": "100000"
},
{
"important": false,
"gameTime": "2 - 01:17",
"label": "",
"description": "Anthony Martial (Manchester United) looks to break free, but an opposing player clears the ball away. Manchester Utd force their opponents to concede a corner.",
"identified": "[PLAYER_GrS6Vr75] ([TEAM_]) looks to break free, but an opposing player clears the ball away. [TEAM_ppjDR086] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "77000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The referee blows his whistle to signal the start of the second half.",
"identified": "The referee blows his whistle to signal the start of the second half.",
"anonymized": "The referee blows his whistle to signal the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 53:59",
"label": "",
"description": "Not the best game in the world so far but certainly not the worst either. Chances have been few. The visitors were superior in their performance through the first half. They were more active and precise. Both teams are attempting to hold onto the ball for as long as possible.",
"identified": "Not the best game in the world so far but certainly not the worst either. Chances have been few. The visitors were superior in their performance through the first half. They were more active and precise. Both teams are attempting to hold onto the ball for as long as possible.",
"anonymized": "Not the best game in the world so far but certainly not the worst either. Chances have been few. The visitors were superior in their performance through the first half. They were more active and precise. Both teams are attempting to hold onto the ball for as long as possible.",
"visibility": "shown",
"position": "3239000"
},
{
"important": true,
"gameTime": "1 - 53:02",
"label": "whistle",
"description": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"identified": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"anonymized": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"visibility": "shown",
"position": "3182000"
},
{
"important": false,
"gameTime": "1 - 51:45",
"label": "",
"description": "Ashley Young (Manchester United) connects with a pass inside the box, but his effort goes well wide of the left post.",
"identified": "[PLAYER_tdmI0fpF] ([TEAM_]) connects with a pass inside the box, but his effort goes well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) connects with a pass inside the box, but his effort goes well wide of the left post.",
"visibility": "shown",
"position": "3105000"
},
{
"important": false,
"gameTime": "1 - 50:27",
"label": "",
"description": "Ashley Young (Manchester United) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"identified": "[PLAYER_tdmI0fpF] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"visibility": "shown",
"position": "3027000"
},
{
"important": false,
"gameTime": "1 - 48:34",
"label": "",
"description": "Manchester Utd keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"identified": "[TEAM_ppjDR086] keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"anonymized": "[TEAM] keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"visibility": "shown",
"position": "2914000"
},
{
"important": true,
"gameTime": "1 - 46:45",
"label": "soccer-ball",
"description": "The corner from Maxime Lestienne goes into a dangerous area and finds Hector Moreno (PSV), who outjumps the defence and glances a header into the back of the net. 1:1.",
"identified": "The corner from [PLAYER_nJc0gobR] goes into a dangerous area and finds [PLAYER_Q5Mj5mwa] ([TEAM_]), who outjumps the defence and glances a header into the back of the net. 1:1.",
"anonymized": "The corner from [PLAYER] goes into a dangerous area and finds [PLAYER] ([TEAM]), who outjumps the defence and glances a header into the back of the net. 1:1.",
"visibility": "shown",
"position": "2805000"
},
{
"important": false,
"gameTime": "1 - 46:21",
"label": "corner",
"description": "Maxime Lestienne (PSV) will take a corner kick.",
"identified": "[PLAYER_nJc0gobR] ([TEAM_]) will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will take a corner kick.",
"visibility": "shown",
"position": "2781000"
},
{
"important": false,
"gameTime": "1 - 46:00",
"label": "",
"description": "Maxime Lestienne (PSV) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The referee points to the corner flag and PSV will take a corner.",
"identified": "[PLAYER_nJc0gobR] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "2760000"
},
{
"important": false,
"gameTime": "1 - 45:16",
"label": "",
"description": "The free kick into the penalty area from Hector Moreno (PSV) is cleared.",
"identified": "The free kick into the penalty area from [PLAYER_Q5Mj5mwa] ([TEAM_]) is cleared.",
"anonymized": "The free kick into the penalty area from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "2716000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "We will have 8 min. of added time.",
"identified": "We will have 8 min. of added time.",
"anonymized": "We will have 8 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:44",
"label": "",
"description": "Ashley Young (Manchester United) brings his opponent down. Nicola Rizzoli has a clear vision and blows his whistle for a foul. A free kick to PSV.",
"identified": "[PLAYER_tdmI0fpF] ([TEAM_]) brings his opponent down. [REFEREE] has a clear vision and blows his whistle for a foul. A free kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down. [REFEREE] has a clear vision and blows his whistle for a foul. A free kick to [TEAM].",
"visibility": "shown",
"position": "2684000"
},
{
"important": false,
"gameTime": "1 - 44:20",
"label": "corner",
"description": "A horde of players are waiting inside the penalty area for a cross from the corner, but Memphis Depay (Manchester United) takes it short.",
"identified": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER_zo1h8MrD] ([TEAM_]) takes it short.",
"anonymized": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER] ([TEAM]) takes it short.",
"visibility": "shown",
"position": "2660000"
},
{
"important": true,
"gameTime": "1 - 43:39",
"label": "",
"description": "Chris Smalling (Manchester United) runs with the ball towards the keeper and pulls the trigger from close range, but Jeroen Zoet anticipates his intention and makes an amazing save to stop the shot going into the middle of the target. The ball is out of play. A goal-scoring opportunity from a corner for Manchester Utd.",
"identified": "[PLAYER_QHtOVJzh] ([TEAM_]) runs with the ball towards the keeper and pulls the trigger from close range, but [PLAYER_IDI0wVTT] anticipates his intention and makes an amazing save to stop the shot going into the middle of the target. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_ppjDR086].",
"anonymized": "[PLAYER] ([TEAM]) runs with the ball towards the keeper and pulls the trigger from close range, but [PLAYER] anticipates his intention and makes an amazing save to stop the shot going into the middle of the target. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "2619000"
},
{
"important": true,
"gameTime": "1 - 42:30",
"label": "",
"description": "Chance! Memphis Depay (Manchester United) comes within inches of scoring after picking up a pass from Juan Manuel Mata, but his shot from inside the box flashes inches wide of the right post.",
"identified": "Chance! [PLAYER_zo1h8MrD] ([TEAM_]) comes within inches of scoring after picking up a pass from [PLAYER_nHlv2UfS], but his shot from inside the box flashes inches wide of the right post.",
"anonymized": "Chance! [PLAYER] ([TEAM]) comes within inches of scoring after picking up a pass from [PLAYER], but his shot from inside the box flashes inches wide of the right post.",
"visibility": "shown",
"position": "2550000"
},
{
"important": false,
"gameTime": "1 - 42:12",
"label": "",
"description": "Joshua Brenet (PSV) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"identified": "[PLAYER_AiIfuEh9] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"visibility": "shown",
"position": "2532000"
},
{
"important": true,
"gameTime": "1 - 40:52",
"label": "soccer-ball",
"description": "Memphis Depay (Manchester United) displays great tekkers inside the box leading to a fantastic goal, leaving the goalkeeper stranded.",
"identified": "[PLAYER_zo1h8MrD] ([TEAM_]) displays great tekkers inside the box leading to a fantastic goal, leaving the goalkeeper stranded.",
"anonymized": "[PLAYER] ([TEAM]) displays great tekkers inside the box leading to a fantastic goal, leaving the goalkeeper stranded.",
"visibility": "shown",
"position": "2452000"
},
{
"important": false,
"gameTime": "1 - 40:10",
"label": "",
"description": "Juan Manuel Mata (Manchester United) connects with a precise cross inside the goalmouth and shoots. One of the defending players reacts in time and clears the ball to safety.",
"identified": "[PLAYER_nHlv2UfS] ([TEAM_]) connects with a precise cross inside the goalmouth and shoots. One of the defending players reacts in time and clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) connects with a precise cross inside the goalmouth and shoots. One of the defending players reacts in time and clears the ball to safety.",
"visibility": "shown",
"position": "2410000"
},
{
"important": false,
"gameTime": "1 - 39:14",
"label": "",
"description": "Maxime Lestienne (PSV) unleashes a shot, but his effort isn't precise at all and it flies well wide of the left post.",
"identified": "[PLAYER_nJc0gobR] ([TEAM_]) unleashes a shot, but his effort isn't precise at all and it flies well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot, but his effort isn't precise at all and it flies well wide of the left post.",
"visibility": "shown",
"position": "2354000"
},
{
"important": false,
"gameTime": "1 - 38:06",
"label": "",
"description": "Maxime Lestienne (PSV) tries to send a pass but it's blocked.",
"identified": "[PLAYER_nJc0gobR] ([TEAM_]) tries to send a pass but it's blocked.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked.",
"visibility": "shown",
"position": "2286000"
},
{
"important": false,
"gameTime": "1 - 37:39",
"label": "",
"description": "Anthony Martial (Manchester United) launches himself at the ball from the free kick and produces a header which lacks accuracy, sending it just wide of the right post.",
"identified": "[PLAYER_GrS6Vr75] ([TEAM_]) launches himself at the ball from the free kick and produces a header which lacks accuracy, sending it just wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) launches himself at the ball from the free kick and produces a header which lacks accuracy, sending it just wide of the right post.",
"visibility": "shown",
"position": "2259000"
},
{
"important": false,
"gameTime": "1 - 37:27",
"label": "",
"description": "Juan Manuel Mata (Manchester United) will take the free kick.",
"identified": "[PLAYER_nHlv2UfS] ([TEAM_]) will take the free kick.",
"anonymized": "[PLAYER] ([TEAM]) will take the free kick.",
"visibility": "shown",
"position": "2247000"
},
{
"important": false,
"gameTime": "1 - 36:18",
"label": "",
"description": "Joshua Brenet (PSV) commits a rough foul. Nicola Rizzoli stops the game and makes a call. Manchester Utd win a free kick. It's a promising situation for a direct shot.",
"identified": "[PLAYER_AiIfuEh9] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call. [TEAM_ppjDR086] win a free kick. It's a promising situation for a direct shot.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call. [TEAM] win a free kick. It's a promising situation for a direct shot.",
"visibility": "shown",
"position": "2178000"
},
{
"important": false,
"gameTime": "1 - 35:08",
"label": "",
"description": "Daley Blind (Manchester United) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance.",
"identified": "[PLAYER_U5mPqlh6] ([TEAM_]) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance.",
"visibility": "shown",
"position": "2108000"
},
{
"important": false,
"gameTime": "1 - 34:18",
"label": "",
"description": "Bastian Schweinsteiger (Manchester United) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"identified": "[PLAYER_Kj6ZEYc8] ([TEAM_]) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates with a fine lofted pass, but the defence reacts well to intercept the effort.",
"visibility": "shown",
"position": "2058000"
},
{
"important": false,
"gameTime": "1 - 33:37",
"label": "corner",
"description": "Memphis Depay (Manchester United) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"identified": "[PLAYER_zo1h8MrD] ([TEAM_]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"visibility": "shown",
"position": "2017000"
},
{
"important": false,
"gameTime": "1 - 33:21",
"label": "",
"description": "The ball is cleared after Daley Blind (Manchester United) attempted to dribble past an opposing player. The referee and his assistant both point at the corner flag. Manchester Utd will have an opportunity to threaten the opposition's goal.",
"identified": "The ball is cleared after [PLAYER_U5mPqlh6] ([TEAM_]) attempted to dribble past an opposing player. The referee and his assistant both point at the corner flag. [TEAM_ppjDR086] will have an opportunity to threaten the opposition's goal.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. 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": "2001000"
},
{
"important": false,
"gameTime": "1 - 32:26",
"label": "",
"description": "An attempted cross from Ashley Young (Manchester United) is cleared.",
"identified": "An attempted cross from [PLAYER_tdmI0fpF] ([TEAM_]) is cleared.",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "1946000"
},
{
"important": false,
"gameTime": "1 - 30:49",
"label": "",
"description": "Maxime Lestienne (PSV) is forced to stop his attacking move after the linesman signals for offside.",
"identified": "[PLAYER_nJc0gobR] ([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": "1849000"
},
{
"important": false,
"gameTime": "1 - 29:49",
"label": "",
"description": "Flag goes up against Luciano Narsingh (PSV) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_69o8nMM9] ([TEAM_]) and the referee blows his whistle for offside.",
"anonymized": "Flag goes up against [PLAYER] ([TEAM]) and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "1789000"
},
{
"important": false,
"gameTime": "1 - 28:05",
"label": "",
"description": "Bastian Schweinsteiger (Manchester United) sends a long ball in, but Jeroen Zoet comfortably gathers the ball.",
"identified": "[PLAYER_Kj6ZEYc8] ([TEAM_]) sends a long ball in, but [PLAYER_IDI0wVTT] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "1685000"
},
{
"important": false,
"gameTime": "1 - 26:59",
"label": "",
"description": "Nicola Rizzoli couldn't ignore the rough tackle by Ander Herrera (Manchester United) and blew his whistle.",
"identified": "[REFEREE] couldn't ignore the rough tackle by [PLAYER_jyzWX8yk] ([TEAM_]) and blew his whistle.",
"anonymized": "[REFEREE] couldn't ignore the rough tackle by [PLAYER] ([TEAM]) and blew his whistle.",
"visibility": "shown",
"position": "1619000"
},
{
"important": false,
"gameTime": "1 - 26:17",
"label": "",
"description": "The Manchester Utd players are exchanging short passes in an attempt to create a shooting opportunity.",
"identified": "The [TEAM_ppjDR086] players are exchanging short passes in an attempt to create a shooting opportunity.",
"anonymized": "The [TEAM] players are exchanging short passes in an attempt to create a shooting opportunity.",
"visibility": "shown",
"position": "1577000"
},
{
"important": false,
"gameTime": "1 - 23:59",
"label": "corner",
"description": "Memphis Depay (Manchester United) takes the corner with a short pass.",
"identified": "[PLAYER_zo1h8MrD] ([TEAM_]) takes the corner with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner with a short pass.",
"visibility": "shown",
"position": "1439000"
},
{
"important": true,
"gameTime": "1 - 23:45",
"label": "substitution",
"description": "Louis van Gaal is forced to make a change. Luke Shaw is not able to carry on due to injury. He is replaced by Marcos Rojo (Manchester United).",
"identified": "[COACH_4APqpVFg] is forced to make a change. [PLAYER_88iLXV0O] is not able to carry on due to injury. He is replaced by [PLAYER_UZCWoIyB] ([TEAM_]).",
"anonymized": "[COACH] is forced to make a change. [PLAYER] is not able to carry on due to injury. He is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1425000"
},
{
"important": false,
"gameTime": "1 - 14:30",
"label": "injury",
"description": "The game is interrupted now, Luke Shaw (Manchester United) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_88iLXV0O] ([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": "870000"
},
{
"important": false,
"gameTime": "1 - 14:20",
"label": "",
"description": "Luke Shaw (Manchester United) races towards goal but the defender gets back well to make a challenge. Corner kick. Manchester Utd will have an opportunity.",
"identified": "[PLAYER_88iLXV0O] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. Corner kick. [TEAM_ppjDR086] will have an opportunity.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "860000"
},
{
"important": false,
"gameTime": "1 - 13:17",
"label": "",
"description": "The referee blows his whistle after Luciano Narsingh (PSV) does a good impression of a basketball player and handles the ball.",
"identified": "The referee blows his whistle after [PLAYER_69o8nMM9] ([TEAM_]) does a good impression of a basketball player and handles the ball.",
"anonymized": "The referee blows his whistle after [PLAYER] ([TEAM]) does a good impression of a basketball player and handles the ball.",
"visibility": "shown",
"position": "797000"
},
{
"important": false,
"gameTime": "1 - 12:46",
"label": "corner",
"description": "Memphis Depay (Manchester United) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"identified": "[PLAYER_zo1h8MrD] ([TEAM_]) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"anonymized": "[PLAYER] ([TEAM]) sends in the corner, but fails to find the head of any of his teammates, allowing the defence to clear.",
"visibility": "shown",
"position": "766000"
},
{
"important": false,
"gameTime": "1 - 12:23",
"label": "",
"description": "Matteo Darmian (Manchester United) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The referee points to the corner flag. It's a corner to Manchester Utd.",
"identified": "[PLAYER_WbNknKk3] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The referee points to the corner flag. It's a corner to [TEAM_ppjDR086].",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "743000"
},
{
"important": false,
"gameTime": "1 - 11:01",
"label": "",
"description": "Luciano Narsingh (PSV) times his run too early and the linesman raises his flag for offside.",
"identified": "[PLAYER_69o8nMM9] ([TEAM_]) times his run too early and the linesman raises his flag for offside.",
"anonymized": "[PLAYER] ([TEAM]) times his run too early and the linesman raises his flag for offside.",
"visibility": "shown",
"position": "661000"
},
{
"important": false,
"gameTime": "1 - 10:30",
"label": "",
"description": "Ashley Young (Manchester United) fails to pick a body out in the box with an over-hit cross to the back post. The ball is off of the pitch and it's a goal kick for PSV.",
"identified": "[PLAYER_tdmI0fpF] ([TEAM_]) fails to pick a body out in the box with an over-hit cross to the back post. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) fails to pick a body out in the box with an over-hit cross to the back post. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "630000"
}
]
} |