File size: 73,305 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 |
{
"timestamp": "1424530800",
"score": "2 - 1",
"round": "26",
"teams": [
"Manchester United",
"Swansea"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "tnl7ejng",
"name": "Cork J.",
"captain": "",
"detail_link": "/player/cork-jack/tnl7ejng/",
"short_name": "Cork",
"shirt_number": "24",
"country": "England",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Jack Cork"
},
{
"hash": "bRKKNZwj",
"name": "Fabianski L.",
"captain": "",
"detail_link": "/player/fabianski-lukasz/bRKKNZwj/",
"short_name": "Fabianski",
"shirt_number": "1",
"country": "Poland",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Lukasz Fabianski"
},
{
"hash": "YZonEVG7",
"name": "Fernandez F.",
"captain": "",
"detail_link": "/player/fernandez-federico/YZonEVG7/",
"short_name": "Fernandez",
"shirt_number": "33",
"country": "Argentina",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Federico Fernandez"
},
{
"hash": "Mm0xdwMH",
"name": "Gomis B.",
"captain": "",
"detail_link": "/player/gomis-bafetimbi/Mm0xdwMH/",
"short_name": "Gomis",
"shirt_number": "18",
"country": "France",
"facts": [
{
"type": "3",
"time": "73' Gomis B. (Shelvey J.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Bafetimbi Gomis"
},
{
"hash": "lvIuQ5nP",
"name": "Ki Sung-Yueng",
"captain": "",
"detail_link": "/player/ki-sung-yong/lvIuQ5nP/",
"short_name": "Ki",
"shirt_number": "4",
"country": "South Korea",
"facts": [
{
"type": "3",
"time": "30' Ki Sung-Yueng (Shelvey J.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Sung-Yueng Ki"
},
{
"hash": "UNKNumiC",
"name": "Naughton K.",
"captain": "",
"detail_link": "/player/naughton-kyle/UNKNumiC/",
"short_name": "Naughton",
"shirt_number": "26",
"country": "England",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Kyle Naughton"
},
{
"hash": "WhxKEDEE",
"name": "Routledge W.",
"captain": "",
"detail_link": "/player/routledge-wayne/WhxKEDEE/",
"short_name": "Routledge",
"shirt_number": "15",
"country": "England",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Wayne Routledge"
},
{
"hash": "2Lhgl7Mf",
"name": "Shelvey J.",
"captain": "",
"detail_link": "/player/shelvey-jonjo/2Lhgl7Mf/",
"short_name": "Shelvey",
"shirt_number": "8",
"country": "England",
"facts": [
{
"type": "8",
"time": "30' Ki Sung-Yueng (Shelvey J.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "8",
"time": "73' Gomis B. (Shelvey J.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "1",
"time": "90+1' Shelvey J. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "90+4'",
"description": "Amat J.",
"linked_player_hash": "2Jwz26pn"
}
],
"lineup": 9,
"starting": true,
"long_name": "Jonjo Shelvey"
},
{
"hash": "C2SeP04b",
"name": "Sigurdsson G.",
"captain": "",
"detail_link": "/player/sigurdsson-gylfi/C2SeP04b/",
"short_name": "Sigurdsson",
"shirt_number": "23",
"country": "Iceland",
"facts": [
{
"type": "6",
"time": "74'",
"description": "Montero J.",
"linked_player_hash": "htIVKP2s"
}
],
"lineup": 8,
"starting": true,
"long_name": "Gylfi Sigurdsson"
},
{
"hash": "Kl5eRahS",
"name": "Taylor N.",
"captain": "",
"detail_link": "/player/taylor-neil/Kl5eRahS/",
"short_name": "Taylor",
"shirt_number": "3",
"country": "Wales",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Neil Taylor"
},
{
"hash": "UwgmtQNp",
"name": "Williams A.",
"captain": "(C)",
"detail_link": "/player/williams-ashley/UwgmtQNp/",
"short_name": "Williams",
"shirt_number": "6",
"country": "Wales",
"facts": [
{
"type": "1",
"time": "88' Williams A. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Ashley Williams"
},
{
"hash": "2Jwz26pn",
"name": "Amat J.",
"captain": "",
"detail_link": "/player/amat-jordi/2Jwz26pn/",
"short_name": "Amat",
"shirt_number": "2",
"country": "Indonesia",
"facts": [
{
"type": "7",
"time": "90+4'",
"description": "Shelvey J.",
"linked_player_hash": "2Lhgl7Mf"
}
],
"lineup": null,
"starting": false,
"long_name": "Jordi Amat"
},
{
"hash": "WUDWNs32",
"name": "Britton L.",
"captain": "",
"detail_link": "/player/britton-leon/WUDWNs32/",
"short_name": "Britton",
"shirt_number": "7",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Leon Britton"
},
{
"hash": "xE7M2g16",
"name": "Emnes M.",
"captain": "",
"detail_link": "/player/emnes-marvin/xE7M2g16/",
"short_name": "Emnes",
"shirt_number": "11",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marvin Emnes"
},
{
"hash": "htIVKP2s",
"name": "Montero J.",
"captain": "",
"detail_link": "/player/montero-jefferson/htIVKP2s/",
"short_name": "Montero",
"shirt_number": "20",
"country": "Ecuador",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Sigurdsson G.",
"linked_player_hash": "C2SeP04b"
}
],
"lineup": null,
"starting": false,
"long_name": "Jefferson Montero"
},
{
"hash": "IiXMC1Q9",
"name": "Oliveira N.",
"captain": "",
"detail_link": "/player/oliveira-nelson/IiXMC1Q9/",
"short_name": "Oliveira",
"shirt_number": "17",
"country": "Portugal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nelson Oliveira"
},
{
"hash": "OW25Qv2E",
"name": "Rangel A.",
"captain": "",
"detail_link": "/player/rangel-angel/OW25Qv2E/",
"short_name": "Rangel",
"shirt_number": "22",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Angel Rangel"
},
{
"hash": "lb8GyFcr",
"name": "Tremmel G.",
"captain": "",
"detail_link": "/player/tremmel-gerhard/lb8GyFcr/",
"short_name": "Tremmel",
"shirt_number": "25",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gerhard Tremmel"
}
],
"coach": [
{
"hash": "QFc63Hf1",
"name": "Monk G.",
"captain": "",
"detail_link": "/player/monk-garry/QFc63Hf1/",
"short_name": "Monk G.",
"shirt_number": "",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Garry Monk"
}
]
},
"away": {
"tactic": "1-4-3-1-2",
"players": [
{
"hash": "U5mPqlh6",
"name": "Blind D.",
"captain": "",
"detail_link": "/player/blind-daley/U5mPqlh6/",
"short_name": "Blind",
"shirt_number": "17",
"country": "Netherlands",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Daley Blind"
},
{
"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": "SISkkDSQ",
"name": "Di Maria A.",
"captain": "",
"detail_link": "/player/di-maria-angel/SISkkDSQ/",
"short_name": "Di Maria",
"shirt_number": "7",
"country": "Argentina",
"facts": [
{
"type": "8",
"time": "28' Herrera A. (Di Maria A.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "79'",
"description": "Mata J.",
"linked_player_hash": "nHlv2UfS"
}
],
"lineup": 8,
"starting": true,
"long_name": "Angel Di Maria"
},
{
"hash": "nJoIy5ih",
"name": "Fellaini M.",
"captain": "",
"detail_link": "/player/fellaini-marouane/nJoIy5ih/",
"short_name": "Fellaini",
"shirt_number": "31",
"country": "Belgium",
"facts": [
{
"type": "1",
"time": "45' Fellaini M. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Marouane Fellaini"
},
{
"hash": "jyzWX8yk",
"name": "Herrera A.",
"captain": "",
"detail_link": "/player/herrera-ander/jyzWX8yk/",
"short_name": "Herrera",
"shirt_number": "21",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "28' Herrera A. (Di Maria A.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Ander Herrera"
},
{
"hash": "tOqz9FFa",
"name": "Jones P.",
"captain": "",
"detail_link": "/player/jones-phil/tOqz9FFa/",
"short_name": "Jones",
"shirt_number": "4",
"country": "England",
"facts": [
{
"type": "1",
"time": "48' Jones P. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Phil Jones"
},
{
"hash": "A7pgD1ZN",
"name": "McNair P.",
"captain": "",
"detail_link": "/player/mcnair-paddy/A7pgD1ZN/",
"short_name": "McNair",
"shirt_number": "33",
"country": "Northern Ireland",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Valencia A.",
"linked_player_hash": "Ecu9nqDs"
}
],
"lineup": 2,
"starting": true,
"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": "1",
"time": "88' Rojo M. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Marcos Rojo"
},
{
"hash": "WfXv1DCa",
"name": "Rooney W.",
"captain": "(C)",
"detail_link": "/player/rooney-wayne/WfXv1DCa/",
"short_name": "Rooney",
"shirt_number": "10",
"country": "England",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Wayne Rooney"
},
{
"hash": "88iLXV0O",
"name": "Shaw L.",
"captain": "",
"detail_link": "/player/shaw-luke/88iLXV0O/",
"short_name": "Shaw",
"shirt_number": "3",
"country": "England",
"facts": [
{
"type": "6",
"time": "58'",
"description": "Young A.",
"linked_player_hash": "tdmI0fpF"
}
],
"lineup": 5,
"starting": true,
"long_name": "Luke Shaw"
},
{
"hash": "0vgcq6un",
"name": "van Persie R.",
"captain": "",
"detail_link": "/player/van-persie-robin/0vgcq6un/",
"short_name": "van Persie",
"shirt_number": "20",
"country": "Netherlands",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Robin van Persie"
},
{
"hash": "2oMimkAU",
"name": "Falcao R.",
"captain": "",
"detail_link": "/player/falcao/2oMimkAU/",
"short_name": "Falcao",
"shirt_number": "9",
"country": "Colombia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Radamel Falcao"
},
{
"hash": "6qyeYCYO",
"name": "Januzaj A.",
"captain": "",
"detail_link": "/player/januzaj-adnan/6qyeYCYO/",
"short_name": "Januzaj",
"shirt_number": "11",
"country": "Belgium",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Adnan Januzaj"
},
{
"hash": "nHlv2UfS",
"name": "Mata J.",
"captain": "",
"detail_link": "/player/mata-juan/nHlv2UfS/",
"short_name": "Mata",
"shirt_number": "8",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Di Maria A.",
"linked_player_hash": "SISkkDSQ"
}
],
"lineup": null,
"starting": false,
"long_name": "Juan Manuel Mata"
},
{
"hash": "QHtOVJzh",
"name": "Smalling C.",
"captain": "",
"detail_link": "/player/smalling-chris/QHtOVJzh/",
"short_name": "Smalling",
"shirt_number": "12",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Chris Smalling"
},
{
"hash": "nkfZl0h4",
"name": "Valdes V.",
"captain": "",
"detail_link": "/player/valdes-victor/nkfZl0h4/",
"short_name": "Valdes",
"shirt_number": "32",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Victor Valdes"
},
{
"hash": "Ecu9nqDs",
"name": "Valencia A.",
"captain": "",
"detail_link": "/player/valencia-antonio/Ecu9nqDs/",
"short_name": "Valencia",
"shirt_number": "25",
"country": "Ecuador",
"facts": [
{
"type": "7",
"time": "46'",
"description": "McNair P.",
"linked_player_hash": "A7pgD1ZN"
}
],
"lineup": null,
"starting": false,
"long_name": "Antonio Valencia"
},
{
"hash": "tdmI0fpF",
"name": "Young A.",
"captain": "",
"detail_link": "/player/young-ashley/tdmI0fpF/",
"short_name": "Young",
"shirt_number": "18",
"country": "England",
"facts": [
{
"type": "7",
"time": "58'",
"description": "Shaw L.",
"linked_player_hash": "88iLXV0O"
},
{
"type": "1",
"time": "84' Young A. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Ashley Young"
}
],
"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": [
"Swarbrick N."
],
"venue": [
"Swansea.com Stadium (Swansea)"
],
"attendance": [
"20 809"
],
"referee_matched": [
"Neil Swarbrick"
],
"referee_found": [
"Neil Swarbrick"
],
"coach_matched": [
"Louis van Gaal"
],
"gameHomeTeam": "Swansea",
"home": {
"name": "Swansea",
"detail_link": "/team/swansea/K6xezbY7",
"hash": "K6xezbY7",
"names": [
"Swansea",
"swansea"
]
},
"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": "21/02/2015 - 16:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 49: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. It was an even match on the whole, with both sides enjoying spells in the ascendancy. The home team played long-ball football unlike the away side who 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. It was an even match on the whole, with both sides enjoying spells in the ascendancy. The home team played long-ball football unlike the away side who 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. It was an even match on the whole, with both sides enjoying spells in the ascendancy. The home team played long-ball football unlike the away side who attempted to hold onto the ball for as long as possible.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:53",
"label": "whistle",
"description": "Neil Swarbrick is looking at his watch and immediately ends this match.",
"identified": "[REFEREE] is looking at his watch and immediately ends this match.",
"anonymized": "[REFEREE] is looking at his watch and immediately ends this match.",
"visibility": "shown",
"position": "2993000"
},
{
"important": true,
"gameTime": "2 - 48:02",
"label": "substitution",
"description": "Here comes a substitution. Jonjo Shelvey is given a rest as he is replaced by Jordi Amat (Swansea).",
"identified": "Here comes a substitution. [PLAYER_2Lhgl7Mf] is given a rest as he is replaced by [PLAYER_2Jwz26pn] ([TEAM_]).",
"anonymized": "Here comes a substitution. [PLAYER] is given a rest as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2882000"
},
{
"important": true,
"gameTime": "2 - 45:38",
"label": "y-card",
"description": "Jonjo Shelvey (Swansea) picks up a yellow card.",
"identified": "[PLAYER_2Lhgl7Mf] ([TEAM_]) picks up a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) picks up a yellow card.",
"visibility": "shown",
"position": "2738000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "4 min. of stoppage-time to be played.",
"identified": "4 min. of stoppage-time to be played.",
"anonymized": "4 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 43:50",
"label": "",
"description": "Marouane Fellaini (Manchester United) is flagged for offside.",
"identified": "[PLAYER_nJoIy5ih] ([TEAM_]) is flagged for offside.",
"anonymized": "[PLAYER] ([TEAM]) is flagged for offside.",
"visibility": "shown",
"position": "2630000"
},
{
"important": true,
"gameTime": "2 - 42:33",
"label": "y-card",
"description": "Marcos Rojo (Manchester United) picks up a yellow card for a foul.",
"identified": "[PLAYER_UZCWoIyB] ([TEAM_]) picks up a yellow card for a foul.",
"anonymized": "[PLAYER] ([TEAM]) picks up a yellow card for a foul.",
"visibility": "shown",
"position": "2553000"
},
{
"important": true,
"gameTime": "2 - 42:25",
"label": "y-card",
"description": "Ashley Williams (Swansea) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but Neil Swarbrick ignores the protests.",
"identified": "[PLAYER_UwgmtQNp] ([TEAM_]) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but [REFEREE] ignores the protests.",
"anonymized": "[PLAYER] ([TEAM]) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but [REFEREE] ignores the protests.",
"visibility": "shown",
"position": "2545000"
},
{
"important": false,
"gameTime": "2 - 40:34",
"label": "",
"description": "Bafetimbi Gomis (Swansea) receives a precise low pass inside the box, controls the ball and drills it to the middle of the goal, but David de Gea makes a comfortable save to stop his effort.",
"identified": "[PLAYER_Mm0xdwMH] ([TEAM_]) receives a precise low pass inside the box, controls the ball and drills it to the middle of the goal, but [PLAYER_d6AEQ6OD] makes a comfortable save to stop his effort.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise low pass inside the box, controls the ball and drills it to the middle of the goal, but [PLAYER] makes a comfortable save to stop his effort.",
"visibility": "shown",
"position": "2434000"
},
{
"important": true,
"gameTime": "2 - 38:17",
"label": "y-card",
"description": "Neil Swarbrick shows a yellow card to Ashley Young (Manchester United), who isn't surprised as the tackle was really hard and late.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_tdmI0fpF] ([TEAM_]), who isn't surprised as the tackle was really hard and late.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]), who isn't surprised as the tackle was really hard and late.",
"visibility": "shown",
"position": "2297000"
},
{
"important": false,
"gameTime": "2 - 37:38",
"label": "corner",
"description": "The corner from Wayne Rooney (Manchester United) is hurriedly cleared.",
"identified": "The corner from [PLAYER_WfXv1DCa] ([TEAM_]) is hurriedly cleared.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is hurriedly cleared.",
"visibility": "shown",
"position": "2258000"
},
{
"important": false,
"gameTime": "2 - 37:26",
"label": "",
"description": "David de Gea (Manchester United) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The ball goes out of play. Manchester Utd are awarded a corner kick.",
"identified": "[PLAYER_d6AEQ6OD] ([TEAM_]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The ball goes out of play. [TEAM_ppjDR086] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2246000"
},
{
"important": true,
"gameTime": "2 - 33:24",
"label": "substitution",
"description": "The substitution is prepared. Juan Manuel Mata (Manchester United) joins the action as a substitute, replacing Angel Di Maria.",
"identified": "The substitution is prepared. [PLAYER_nHlv2UfS] ([TEAM_]) joins the action as a substitute, replacing [PLAYER_SISkkDSQ].",
"anonymized": "The substitution is prepared. [PLAYER] ([TEAM]) joins the action as a substitute, replacing [PLAYER].",
"visibility": "shown",
"position": "2004000"
},
{
"important": false,
"gameTime": "2 - 31:55",
"label": "corner",
"description": "The corner from Jonjo Shelvey (Swansea) is intercepted by the defence.",
"identified": "The corner from [PLAYER_2Lhgl7Mf] ([TEAM_]) is intercepted by the defence.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by the defence.",
"visibility": "shown",
"position": "1915000"
},
{
"important": false,
"gameTime": "2 - 31:30",
"label": "",
"description": "Wayne Routledge (Swansea) slaloms his way past challenges, but an opposing player does well to get the ball away. Good work from Swansea as they win a corner.",
"identified": "[PLAYER_WhxKEDEE] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away. Good work from [TEAM_] as they win a corner.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "1890000"
},
{
"important": true,
"gameTime": "2 - 28:38",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Jefferson Montero (Swansea) comes onto the pitch so that Gylfi Sigurdsson can be given a rest.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_htIVKP2s] ([TEAM_]) comes onto the pitch so that [PLAYER_C2SeP04b] can be given a rest.",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) comes onto the pitch so that [PLAYER] can be given a rest.",
"visibility": "shown",
"position": "1718000"
},
{
"important": true,
"gameTime": "2 - 27:39",
"label": "soccer-ball",
"description": "Bafetimbi Gomis (Swansea) deflects his teammate's shot into the middle of the goal by using his body. The goalkeeper reacted to the earlier shot so the deflection only confused him. A lucky goal that counts anyway.",
"identified": "[PLAYER_Mm0xdwMH] ([TEAM_]) deflects his teammate's shot into the middle of the goal by using his body. The goalkeeper reacted to the earlier shot so the deflection only confused him. A lucky goal that counts anyway.",
"anonymized": "[PLAYER] ([TEAM]) deflects his teammate's shot into the middle of the goal by using his body. The goalkeeper reacted to the earlier shot so the deflection only confused him. A lucky goal that counts anyway.",
"visibility": "shown",
"position": "1659000"
},
{
"important": false,
"gameTime": "2 - 25:24",
"label": "corner",
"description": "Angel Di Maria (Manchester United) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"identified": "[PLAYER_SISkkDSQ] ([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": "1524000"
},
{
"important": false,
"gameTime": "2 - 25:10",
"label": "",
"description": "Angel Di Maria (Manchester United) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is out of play and Manchester Utd manage to earn a corner.",
"identified": "[PLAYER_SISkkDSQ] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is out of play and [TEAM_ppjDR086] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "1510000"
},
{
"important": false,
"gameTime": "2 - 24:19",
"label": "corner",
"description": "Wayne Rooney (Manchester United) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"identified": "[PLAYER_WfXv1DCa] ([TEAM_]) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"anonymized": "[PLAYER] ([TEAM]) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"visibility": "shown",
"position": "1459000"
},
{
"important": false,
"gameTime": "2 - 24:01",
"label": "",
"description": "Wayne Rooney (Manchester United) swings in a cross, but the ball is cleared to safety by one of the defending players. The referee and his assistant both point at the corner flag. Manchester Utd will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_WfXv1DCa] ([TEAM_]) swings in a cross, but the ball is cleared to safety by one of the defending players. The referee and his assistant both point at the corner flag. [TEAM_ppjDR086] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross, but the ball is cleared to safety by one of the defending players. 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": "1441000"
},
{
"important": false,
"gameTime": "2 - 22:26",
"label": "",
"description": "Robin van Persie (Manchester United) takes a great touch after receiving a pass inside the box. He immediately unleashes a low shot to the middle of the goal, but the keeper pulls off a decent save!",
"identified": "[PLAYER_0vgcq6un] ([TEAM_]) takes a great touch after receiving a pass inside the box. He immediately unleashes a low shot to the middle of the goal, but the keeper pulls off a decent save!",
"anonymized": "[PLAYER] ([TEAM]) takes a great touch after receiving a pass inside the box. He immediately unleashes a low shot to the middle of the goal, but the keeper pulls off a decent save!",
"visibility": "shown",
"position": "1346000"
},
{
"important": false,
"gameTime": "2 - 21:21",
"label": "corner",
"description": "Lukasz Fabianski leaps to collect the ball from the corner which was sent over by Angel Di Maria (Manchester United).",
"identified": "[PLAYER_bRKKNZwj] leaps to collect the ball from the corner which was sent over by [PLAYER_SISkkDSQ] ([TEAM_]).",
"anonymized": "[PLAYER] leaps to collect the ball from the corner which was sent over by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1281000"
},
{
"important": false,
"gameTime": "2 - 21:04",
"label": "",
"description": "Ashley Young (Manchester United) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The ball goes out for a corner. Manchester Utd can continue in their attacking effort.",
"identified": "[PLAYER_tdmI0fpF] ([TEAM_]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The ball goes out for a corner. [TEAM_ppjDR086] can continue in their attacking effort.",
"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 ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "1264000"
},
{
"important": false,
"gameTime": "2 - 20:43",
"label": "",
"description": "Marcos Rojo (Manchester United) connects with the corner but his looping header goes well over.",
"identified": "[PLAYER_UZCWoIyB] ([TEAM_]) connects with the corner but his looping header goes well over.",
"anonymized": "[PLAYER] ([TEAM]) connects with the corner but his looping header goes well over.",
"visibility": "shown",
"position": "1243000"
},
{
"important": false,
"gameTime": "2 - 20:15",
"label": "corner",
"description": "Angel Di Maria (Manchester United) will take the corner.",
"identified": "[PLAYER_SISkkDSQ] ([TEAM_]) will take the corner.",
"anonymized": "[PLAYER] ([TEAM]) will take the corner.",
"visibility": "shown",
"position": "1215000"
},
{
"important": false,
"gameTime": "2 - 19:41",
"label": "",
"description": "Daley Blind (Manchester United) delivers a promising cross into the box, but it's cleared. The ball is out of play and the linesman points at the corner flag. Corner to Manchester Utd.",
"identified": "[PLAYER_U5mPqlh6] ([TEAM_]) delivers a promising cross into the box, but it's cleared. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_ppjDR086].",
"anonymized": "[PLAYER] ([TEAM]) delivers a promising cross into the box, but it's cleared. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "1181000"
},
{
"important": false,
"gameTime": "2 - 18:01",
"label": "corner",
"description": "Angel Di Maria (Manchester United) takes the corner but fails to find any of his teammates.",
"identified": "[PLAYER_SISkkDSQ] ([TEAM_]) takes the corner but fails to find any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates.",
"visibility": "shown",
"position": "1081000"
},
{
"important": false,
"gameTime": "2 - 17:46",
"label": "",
"description": "The ball is cleared after Marouane Fellaini (Manchester United) attempted to dribble past an opposing player. Manchester Utd have a corner.",
"identified": "The ball is cleared after [PLAYER_nJoIy5ih] ([TEAM_]) attempted to dribble past an opposing player. [TEAM_ppjDR086] have a corner.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. [TEAM] have a corner.",
"visibility": "shown",
"position": "1066000"
},
{
"important": false,
"gameTime": "2 - 17:08",
"label": "",
"description": "Ashley Young (Manchester United) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"identified": "[PLAYER_tdmI0fpF] ([TEAM_]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"visibility": "shown",
"position": "1028000"
},
{
"important": true,
"gameTime": "2 - 14:29",
"label": "",
"description": "Close! Robin van Persie (Manchester United) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post.",
"identified": "Close! [PLAYER_0vgcq6un] ([TEAM_]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post.",
"anonymized": "Close! [PLAYER] ([TEAM]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the left post.",
"visibility": "shown",
"position": "869000"
},
{
"important": true,
"gameTime": "2 - 12:10",
"label": "substitution",
"description": "Here's the change. Luke Shaw leaves the pitch and Ashley Young (Manchester United) comes on as a substitute.",
"identified": "Here's the change. [PLAYER_88iLXV0O] leaves the pitch and [PLAYER_tdmI0fpF] ([TEAM_]) comes on as a substitute.",
"anonymized": "Here's the change. [PLAYER] leaves the pitch and [PLAYER] ([TEAM]) comes on as a substitute.",
"visibility": "shown",
"position": "730000"
},
{
"important": false,
"gameTime": "2 - 11:14",
"label": "",
"description": "Neil Swarbrick blows for a foul after Jack Cork (Swansea) was too aggressive in the battle for the ball.",
"identified": "[REFEREE] blows for a foul after [PLAYER_tnl7ejng] ([TEAM_]) was too aggressive in the battle for the ball.",
"anonymized": "[REFEREE] blows for a foul after [PLAYER] ([TEAM]) was too aggressive in the battle for the ball.",
"visibility": "shown",
"position": "674000"
},
{
"important": false,
"gameTime": "2 - 09:22",
"label": "corner",
"description": "Wayne Rooney (Manchester United) takes the corner kick but the ball only finds the head of an opponent.",
"identified": "[PLAYER_WfXv1DCa] ([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": "562000"
},
{
"important": false,
"gameTime": "2 - 09:00",
"label": "corner",
"description": "Angel Di Maria (Manchester United) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger. The ball is out of play. Manchester Utd will have a chance to score from a corner.",
"identified": "[PLAYER_SISkkDSQ] ([TEAM_]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger. The ball is out of play. [TEAM_ppjDR086] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "540000"
},
{
"important": false,
"gameTime": "2 - 08:44",
"label": "",
"description": "Marouane Fellaini (Manchester United) crosses the ball into the box, but one of the defending players averts the threat. Corner kick. Manchester Utd will have an opportunity.",
"identified": "[PLAYER_nJoIy5ih] ([TEAM_]) crosses the ball into the box, but one of the defending players averts the threat. Corner kick. [TEAM_ppjDR086] will have an opportunity.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box, but one of the defending players averts the threat. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "524000"
},
{
"important": false,
"gameTime": "2 - 04:47",
"label": "corner",
"description": "Angel Di Maria (Manchester United) sends in the corner, but the keeper steps in and makes a save.",
"identified": "[PLAYER_SISkkDSQ] ([TEAM_]) sends in the corner, but the keeper steps in and makes a save.",
"anonymized": "[PLAYER] ([TEAM]) sends in the corner, but the keeper steps in and makes a save.",
"visibility": "shown",
"position": "287000"
},
{
"important": false,
"gameTime": "2 - 04:32",
"label": "",
"description": "Marouane Fellaini (Manchester United) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. Manchester Utd earn a corner.",
"identified": "[PLAYER_nJoIy5ih] ([TEAM_]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. [TEAM_ppjDR086] earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. [TEAM] earn a corner.",
"visibility": "shown",
"position": "272000"
},
{
"important": true,
"gameTime": "2 - 02:25",
"label": "y-card",
"description": "Phil Jones (Manchester United) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. Neil Swarbrick didn't think twice about pulling it out of his pocket.",
"identified": "[PLAYER_tOqz9FFa] ([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": "145000"
},
{
"important": false,
"gameTime": "2 - 01:20",
"label": "",
"description": "The game is interrupted as Bafetimbi Gomis (Swansea) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_Mm0xdwMH] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "80000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "substitution",
"description": "The teams are back out for the second half and here is a change on the pitch. Louis van Gaal gives a chance to Antonio Valencia (Manchester United) and Paddy McNair is off.",
"identified": "The teams are back out for the second half and here is a change on the pitch. [COACH_4APqpVFg] gives a chance to [PLAYER_Ecu9nqDs] ([TEAM_]) and [PLAYER_A7pgD1ZN] is off.",
"anonymized": "The teams are back out for the second half and here is a change on the pitch. [COACH] gives a chance to [PLAYER] ([TEAM]) and [PLAYER] is off.",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "Everything is set for the start of the second half.",
"identified": "Everything is set for the start of the second half.",
"anonymized": "Everything is set for the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "There was certainly plenty of action during that opening 45 minutes. Both sides have struggled for dominance over the game. The home team are playing long-ball football unlike the away side, who are attempting to hold onto the ball for as long as possible.",
"identified": "There was certainly plenty of action during that opening 45 minutes. Both sides have struggled for dominance over the game. The home team are playing long-ball football unlike the away side, who are attempting to hold onto the ball for as long as possible.",
"anonymized": "There was certainly plenty of action during that opening 45 minutes. Both sides have struggled for dominance over the game. The home team are playing long-ball football unlike the away side, who are attempting to hold onto the ball for as long as possible.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:23",
"label": "whistle",
"description": "The first half of today's match has just finished.",
"identified": "The first half of today's match has just finished.",
"anonymized": "The first half of today's match has just finished.",
"visibility": "shown",
"position": "2783000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "1 additional min. will be played.",
"identified": "1 additional min. will be played.",
"anonymized": "1 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 44:43",
"label": "y-card",
"description": "The foul by Marouane Fellaini (Manchester United) is worthy of a card and a yellow is duly shown by Neil Swarbrick.",
"identified": "The foul by [PLAYER_nJoIy5ih] ([TEAM_]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"anonymized": "The foul by [PLAYER] ([TEAM]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"visibility": "shown",
"position": "2683000"
},
{
"important": false,
"gameTime": "1 - 43:25",
"label": "corner",
"description": "Wayne Rooney (Manchester United) takes the corner kick, but Lukasz Fabianski reads it well and stops the effort.",
"identified": "[PLAYER_WfXv1DCa] ([TEAM_]) takes the corner kick, but [PLAYER_bRKKNZwj] reads it well and stops the effort.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick, but [PLAYER] reads it well and stops the effort.",
"visibility": "shown",
"position": "2605000"
},
{
"important": false,
"gameTime": "1 - 42:58",
"label": "",
"description": "A cross into the box from Daley Blind (Manchester United) is cleared. Manchester Utd force a corner. Their opponents will face another attacking threat.",
"identified": "A cross into the box from [PLAYER_U5mPqlh6] ([TEAM_]) is cleared. [TEAM_ppjDR086] force a corner. Their opponents will face another attacking threat.",
"anonymized": "A cross into the box from [PLAYER] ([TEAM]) is cleared. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "2578000"
},
{
"important": false,
"gameTime": "1 - 41:17",
"label": "",
"description": "The linesman raises his flag for offside before Wayne Routledge (Swansea) heads on.",
"identified": "The linesman raises his flag for offside before [PLAYER_WhxKEDEE] ([TEAM_]) heads on.",
"anonymized": "The linesman raises his flag for offside before [PLAYER] ([TEAM]) heads on.",
"visibility": "shown",
"position": "2477000"
},
{
"important": false,
"gameTime": "1 - 39:09",
"label": "",
"description": "What a chance that is! Robin van Persie (Manchester United) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the left post.",
"identified": "What a chance that is! [PLAYER_0vgcq6un] ([TEAM_]) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the left post.",
"anonymized": "What a chance that is! [PLAYER] ([TEAM]) finds himself unmarked in a promising position after receiving a cross on the edge of the box and his attempt sails a whisker wide of the left post.",
"visibility": "shown",
"position": "2349000"
},
{
"important": false,
"gameTime": "1 - 37:44",
"label": "",
"description": "Luke Shaw (Manchester United) was trying to get to the ball but clattered into the legs of the opponent as well. Neil Swarbrick blows his whistle for an infringement.",
"identified": "[PLAYER_88iLXV0O] ([TEAM_]) was trying to get to the ball but clattered into the legs of the opponent as well. [REFEREE] blows his whistle for an infringement.",
"anonymized": "[PLAYER] ([TEAM]) was trying to get to the ball but clattered into the legs of the opponent as well. [REFEREE] blows his whistle for an infringement.",
"visibility": "shown",
"position": "2264000"
},
{
"important": false,
"gameTime": "1 - 36:55",
"label": "",
"description": "Luke Shaw (Manchester United) serves up a nice cross, but the defence clears the danger.",
"identified": "[PLAYER_88iLXV0O] ([TEAM_]) serves up a nice cross, but the defence clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but the defence clears the danger.",
"visibility": "shown",
"position": "2215000"
},
{
"important": false,
"gameTime": "1 - 33:35",
"label": "",
"description": "That was close by Robin van Persie (Manchester United)! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the left post.",
"identified": "That was close by [PLAYER_0vgcq6un] ([TEAM_])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the left post.",
"anonymized": "That was close by [PLAYER] ([TEAM])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the left post.",
"visibility": "shown",
"position": "2015000"
},
{
"important": false,
"gameTime": "1 - 31:52",
"label": "",
"description": "Daley Blind (Manchester United) brings his opponent down. Neil Swarbrick has a clear sight of it and blows his whistle for a foul.",
"identified": "[PLAYER_U5mPqlh6] ([TEAM_]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul.",
"visibility": "shown",
"position": "1912000"
},
{
"important": false,
"gameTime": "1 - 30:30",
"label": "",
"description": "Bafetimbi Gomis (Swansea) is caught offside!",
"identified": "[PLAYER_Mm0xdwMH] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "1830000"
},
{
"important": true,
"gameTime": "1 - 29:31",
"label": "soccer-ball",
"description": "It's in the back of the net! Jonjo Shelvey plays it into the box, and Sung-Yong Ki (Swansea) gets on the end of the cross to put it into the back of the net. 0:1.",
"identified": "It's in the back of the net! [PLAYER_2Lhgl7Mf] plays it into the box, and [PLAYER_lvIuQ5nP] ([TEAM_]) gets on the end of the cross to put it into the back of the net. 0:1.",
"anonymized": "It's in the back of the net! [PLAYER] plays it into the box, and [PLAYER] ([TEAM]) gets on the end of the cross to put it into the back of the net. 0:1.",
"visibility": "shown",
"position": "1771000"
},
{
"important": false,
"gameTime": "1 - 28:30",
"label": "",
"description": "Swansea are dominating the game at the moment by exchanging a combination of one or two touch passes. Great harmony between the players.",
"identified": "[TEAM_] are dominating the game at the moment by exchanging a combination of one or two touch passes. Great harmony between the players.",
"anonymized": "[TEAM] are dominating the game at the moment by exchanging a combination of one or two touch passes. Great harmony between the players.",
"visibility": "shown",
"position": "1710000"
},
{
"important": true,
"gameTime": "1 - 27:23",
"label": "soccer-ball",
"description": "Goal - 0:1! Ander Herrera (Manchester United) gets a shot away from the edge of the box and scores into the bottom left corner. Angel Di Maria provided an assist for the goal.",
"identified": "Goal - 0:1! [PLAYER_jyzWX8yk] ([TEAM_]) gets a shot away from the edge of the box and scores into the bottom left corner. [PLAYER_SISkkDSQ] provided an assist for the goal.",
"anonymized": "Goal - 0:1! [PLAYER] ([TEAM]) gets a shot away from the edge of the box and scores into the bottom left corner. [PLAYER] provided an assist for the goal.",
"visibility": "shown",
"position": "1643000"
},
{
"important": false,
"gameTime": "1 - 26:23",
"label": "",
"description": "That's a well-taken pass by Robin van Persie (Manchester United). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"identified": "That's a well-taken pass by [PLAYER_0vgcq6un] ([TEAM_]). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"anonymized": "That's a well-taken pass by [PLAYER] ([TEAM]). He unleashes a strike from the edge of the box, but blazes it high over the bar.",
"visibility": "shown",
"position": "1583000"
},
{
"important": false,
"gameTime": "1 - 25:42",
"label": "",
"description": "Robin van Persie (Manchester United) sends a cross into the box, but Lukasz Fabianski comes off his line to gather the ball.",
"identified": "[PLAYER_0vgcq6un] ([TEAM_]) sends a cross into the box, but [PLAYER_bRKKNZwj] comes off his line to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but [PLAYER] comes off his line to gather the ball.",
"visibility": "shown",
"position": "1542000"
},
{
"important": false,
"gameTime": "1 - 22:46",
"label": "",
"description": "Neil Swarbrick blows his whistle for a foul after Marouane Fellaini (Manchester United) hacks down one of his opponents.",
"identified": "[REFEREE] blows his whistle for a foul after [PLAYER_nJoIy5ih] ([TEAM_]) hacks down one of his opponents.",
"anonymized": "[REFEREE] blows his whistle for a foul after [PLAYER] ([TEAM]) hacks down one of his opponents.",
"visibility": "shown",
"position": "1366000"
},
{
"important": false,
"gameTime": "1 - 21:04",
"label": "corner",
"description": "A dangerous looking corner kick from Gylfi Sigurdsson (Swansea) is cleared to safety by the defence.",
"identified": "A dangerous looking corner kick from [PLAYER_C2SeP04b] ([TEAM_]) is cleared to safety by the defence.",
"anonymized": "A dangerous looking corner kick from [PLAYER] ([TEAM]) is cleared to safety by the defence.",
"visibility": "shown",
"position": "1264000"
},
{
"important": false,
"gameTime": "1 - 20:42",
"label": "",
"description": "Jonjo Shelvey (Swansea) races towards goal but the defender gets back well to make a challenge. Swansea get a corner.",
"identified": "[PLAYER_2Lhgl7Mf] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. [TEAM] get a corner.",
"visibility": "shown",
"position": "1242000"
},
{
"important": false,
"gameTime": "1 - 19:55",
"label": "",
"description": "A nice lofted cross finds Wayne Rooney (Manchester United) unmarked and he displays an excellent touch to control the ball. Wayne Rooney (Manchester United) drills a low shot towards the middle of the net, but doesn't give the goalkeeper anything to worry about. An easy save.",
"identified": "A nice lofted cross finds [PLAYER_WfXv1DCa] ([TEAM_]) unmarked and he displays an excellent touch to control the ball. [PLAYER_WfXv1DCa] ([TEAM_]) drills a low shot towards the middle of the net, but doesn't give the goalkeeper anything to worry about. An easy save.",
"anonymized": "A nice lofted cross finds [PLAYER] ([TEAM]) unmarked and he displays an excellent touch to control the ball. [PLAYER] ([TEAM]) drills a low shot towards the middle of the net, but doesn't give the goalkeeper anything to worry about. An easy save.",
"visibility": "shown",
"position": "1195000"
},
{
"important": false,
"gameTime": "1 - 16:29",
"label": "",
"description": "Wayne Routledge (Swansea) latches on to a pass on the edge of the box, but he can't get any power into the shot and fails to trouble David de Gea.",
"identified": "[PLAYER_WhxKEDEE] ([TEAM_]) latches on to a pass on the edge of the box, but he can't get any power into the shot and fails to trouble [PLAYER_d6AEQ6OD].",
"anonymized": "[PLAYER] ([TEAM]) latches on to a pass on the edge of the box, but he can't get any power into the shot and fails to trouble [PLAYER].",
"visibility": "shown",
"position": "989000"
},
{
"important": false,
"gameTime": "1 - 15:48",
"label": "",
"description": "Marcos Rojo (Manchester United) connects with the free kick and produces a header goalwards which is well blocked. The goalkeeper doesn't have to worry about that one.",
"identified": "[PLAYER_UZCWoIyB] ([TEAM_]) connects with the free kick and produces a header goalwards which is well blocked. The goalkeeper doesn't have to worry about that one.",
"anonymized": "[PLAYER] ([TEAM]) connects with the free kick and produces a header goalwards which is well blocked. The goalkeeper doesn't have to worry about that one.",
"visibility": "shown",
"position": "948000"
},
{
"important": false,
"gameTime": "1 - 14:11",
"label": "",
"description": "Neil Taylor (Swansea) makes a slide tackle, but referee Neil Swarbrick blows for a foul. It's a free kick to Manchester Utd, but they probably won't attempt a direct shot on goal from here.",
"identified": "[PLAYER_Kl5eRahS] ([TEAM_]) makes a slide tackle, but referee [REFEREE] blows for a foul. It's a free kick to [TEAM_ppjDR086], but they probably won't attempt a direct shot on goal from here.",
"anonymized": "[PLAYER] ([TEAM]) makes a slide tackle, but referee [REFEREE] blows for a foul. It's a free kick to [TEAM], but they probably won't attempt a direct shot on goal from here.",
"visibility": "shown",
"position": "851000"
},
{
"important": false,
"gameTime": "1 - 11:20",
"label": "",
"description": "Bafetimbi Gomis (Swansea) jumps for a cross and produces a fine header from near the penalty spot, but it goes a whisker over the bar! What a huge opportunity!",
"identified": "[PLAYER_Mm0xdwMH] ([TEAM_]) jumps for a cross and produces a fine header from near the penalty spot, but it goes a whisker over the bar! What a huge opportunity!",
"anonymized": "[PLAYER] ([TEAM]) jumps for a cross and produces a fine header from near the penalty spot, but it goes a whisker over the bar! What a huge opportunity!",
"visibility": "shown",
"position": "680000"
},
{
"important": false,
"gameTime": "1 - 10:44",
"label": "corner",
"description": "Gylfi Sigurdsson (Swansea) steps up to send the ball in.",
"identified": "[PLAYER_C2SeP04b] ([TEAM_]) steps up to send the ball in.",
"anonymized": "[PLAYER] ([TEAM]) steps up to send the ball in.",
"visibility": "shown",
"position": "644000"
}
]
} |