File size: 92,925 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 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 |
{
"timestamp": "1424893500",
"score": "1 - 3",
"round": "1/8-finals",
"teams": [
"Arsenal",
"Monaco"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "pxq49QlK",
"name": "Bellerin H.",
"captain": "",
"detail_link": "/player/bellerin-hector/pxq49QlK/",
"short_name": "Bellerin",
"shirt_number": "39",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "74' Bellerin H. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Hector Bellerin"
},
{
"hash": "rVt0F12N",
"name": "Cazorla S.",
"captain": "",
"detail_link": "/player/cazorla-santi/rVt0F12N/",
"short_name": "Cazorla",
"shirt_number": "19",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "82'",
"description": "Rosicky T.",
"linked_player_hash": "v50zQruO"
}
],
"lineup": 7,
"starting": true,
"long_name": "Santi Cazorla"
},
{
"hash": "2qXd9yom",
"name": "Coquelin F.",
"captain": "",
"detail_link": "/player/coquelin-francis/2qXd9yom/",
"short_name": "Coquelin",
"shirt_number": "34",
"country": "France",
"facts": [
{
"type": "1",
"time": "42' Coquelin F. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "68'",
"description": "Oxlade-Chamberlain A.",
"linked_player_hash": "WzNLf7VR"
}
],
"lineup": 6,
"starting": true,
"long_name": "Francis Coquelin"
},
{
"hash": "tvEj3HIu",
"name": "Gibbs K.",
"captain": "",
"detail_link": "/player/gibbs-kieran/tvEj3HIu/",
"short_name": "Gibbs",
"shirt_number": "3",
"country": "England",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Kieran Gibbs"
},
{
"hash": "AJPBp2as",
"name": "Giroud O.",
"captain": "",
"detail_link": "/player/giroud-olivier/AJPBp2as/",
"short_name": "Giroud",
"shirt_number": "12",
"country": "France",
"facts": [
{
"type": "6",
"time": "60'",
"description": "Walcott T.",
"linked_player_hash": "2cpouZhq"
}
],
"lineup": 11,
"starting": true,
"long_name": "Olivier Giroud"
},
{
"hash": "0MoFTxk9",
"name": "Koscielny L.",
"captain": "",
"detail_link": "/player/koscielny-laurent/0MoFTxk9/",
"short_name": "Koscielny",
"shirt_number": "6",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Laurent Koscielny"
},
{
"hash": "tlwkgQLn",
"name": "Mertesacker P.",
"captain": "(C)",
"detail_link": "/player/mertesacker-per/tlwkgQLn/",
"short_name": "Mertesacker",
"shirt_number": "4",
"country": "Germany",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Per Mertesacker"
},
{
"hash": "6PHywlJK",
"name": "Ospina D.",
"captain": "",
"detail_link": "/player/ospina-david/6PHywlJK/",
"short_name": "Ospina",
"shirt_number": "13",
"country": "Colombia",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "David Ospina"
},
{
"hash": "U30xq9EJ",
"name": "Ozil M.",
"captain": "",
"detail_link": "/player/ozil-mesut/U30xq9EJ/",
"short_name": "Ozil",
"shirt_number": "11",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "87' Ozil M. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Mesut Ozil"
},
{
"hash": "QgGt7V0d",
"name": "Sanchez A.",
"captain": "",
"detail_link": "/player/sanchez-alexis/QgGt7V0d/",
"short_name": "Sanchez",
"shirt_number": "17",
"country": "Chile",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Alexis Sanchez"
},
{
"hash": "86PvpO11",
"name": "Welbeck D.",
"captain": "",
"detail_link": "/player/welbeck-danny/86PvpO11/",
"short_name": "Welbeck",
"shirt_number": "23",
"country": "England",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Danny Welbeck"
},
{
"hash": "6u93gyCG",
"name": "Chambers C.",
"captain": "",
"detail_link": "/player/chambers-calum/6u93gyCG/",
"short_name": "Chambers",
"shirt_number": "21",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Calum Chambers"
},
{
"hash": "tCldvc6L",
"name": "Gabriel Paulista",
"captain": "",
"detail_link": "/player/gabriel-paulista/tCldvc6L/",
"short_name": "Gabriel Paulista",
"shirt_number": "5",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gabriel Paulista"
},
{
"hash": "CdXPbmcp",
"name": "Monreal N.",
"captain": "",
"detail_link": "/player/monreal-nacho/CdXPbmcp/",
"short_name": "Monreal",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nacho Monreal"
},
{
"hash": "WzNLf7VR",
"name": "Oxlade-Chamberlain A.",
"captain": "",
"detail_link": "/player/oxlade-chamberlain-alex/WzNLf7VR/",
"short_name": "Oxlade-Chamberlain",
"shirt_number": "15",
"country": "England",
"facts": [
{
"type": "7",
"time": "68'",
"description": "Coquelin F.",
"linked_player_hash": "2qXd9yom"
},
{
"type": "3",
"time": "90+1' Oxlade-Chamberlain A.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Alex Oxlade-Chamberlain"
},
{
"hash": "v50zQruO",
"name": "Rosicky T.",
"captain": "",
"detail_link": "/player/rosicky-tomas/v50zQruO/",
"short_name": "Rosicky",
"shirt_number": "7",
"country": "Czech Republic",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Cazorla S.",
"linked_player_hash": "rVt0F12N"
}
],
"lineup": null,
"starting": false,
"long_name": "Tomas Rosicky"
},
{
"hash": "6NtwHZ7F",
"name": "Szczesny W.",
"captain": "",
"detail_link": "/player/szczesny-wojciech/6NtwHZ7F/",
"short_name": "Szczesny",
"shirt_number": "1",
"country": "Poland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Wojciech Szczesny"
},
{
"hash": "2cpouZhq",
"name": "Walcott T.",
"captain": "",
"detail_link": "/player/walcott-theo/2cpouZhq/",
"short_name": "Walcott",
"shirt_number": "14",
"country": "England",
"facts": [
{
"type": "7",
"time": "60'",
"description": "Giroud O.",
"linked_player_hash": "AJPBp2as"
}
],
"lineup": null,
"starting": false,
"long_name": "Theo Walcott"
}
],
"coach": [
{
"hash": "8fxQ0wN8",
"name": "Wenger A.",
"captain": "",
"detail_link": "/player/wenger-arsene/8fxQ0wN8/",
"short_name": "Wenger A.",
"shirt_number": "",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Arsene Wenger"
}
]
},
"away": {
"tactic": "1-4-5-1",
"players": [
{
"hash": "nRFwYRaL",
"name": "Abdennour A.",
"captain": "",
"detail_link": "/player/abdennour-aymen/nRFwYRaL/",
"short_name": "Abdennour",
"shirt_number": "5",
"country": "Tunisia",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Aymen Abdennour"
},
{
"hash": "KjMNbKF1",
"name": "Berbatov D.",
"captain": "",
"detail_link": "/player/berbatov-dimitar/KjMNbKF1/",
"short_name": "Berbatov",
"shirt_number": "9",
"country": "Bulgaria",
"facts": [
{
"type": "3",
"time": "53' Berbatov D. (Martial A.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "76'",
"description": "Carrasco Y.",
"linked_player_hash": "lzccuuAC"
}
],
"lineup": 11,
"starting": true,
"long_name": "Dimitar Berbatov"
},
{
"hash": "bNSMGhB4",
"name": "Dirar N.",
"captain": "(C)",
"detail_link": "/player/dirar-nabil/bNSMGhB4/",
"short_name": "Dirar",
"shirt_number": "7",
"country": "Morocco",
"facts": [
{
"type": "6",
"time": "82'",
"description": "Kurzawa L.",
"linked_player_hash": "joeqPtde"
}
],
"lineup": 6,
"starting": true,
"long_name": "Nabil Dirar"
},
{
"hash": "CvGlQcbe",
"name": "Elderson",
"captain": "",
"detail_link": "/player/elderson/CvGlQcbe/",
"short_name": "Elderson",
"shirt_number": "21",
"country": "Nigeria",
"facts": [
{
"type": "1",
"time": "45' Elderson (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Elderson"
},
{
"hash": "nqldMgYf",
"name": "Fabinho",
"captain": "",
"detail_link": "/player/fabinho/nqldMgYf/",
"short_name": "Fabinho",
"shirt_number": "2",
"country": "Brazil",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Fabinho"
},
{
"hash": "nZs03zT2",
"name": "Kondogbia G.",
"captain": "",
"detail_link": "/player/kondogbia-geoffrey/nZs03zT2/",
"short_name": "Kondogbia",
"shirt_number": "22",
"country": "Central African Republic",
"facts": [
{
"type": "3",
"time": "38' Kondogbia G. (Moutinho J.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Geoffrey Kondogbia"
},
{
"hash": "GrS6Vr75",
"name": "Martial A.",
"captain": "",
"detail_link": "/player/martial-anthony/GrS6Vr75/",
"short_name": "Martial",
"shirt_number": "23",
"country": "France",
"facts": [
{
"type": "8",
"time": "53' Berbatov D. (Martial A.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "84'",
"description": "Silva B.",
"linked_player_hash": "lUg03qcR"
}
],
"lineup": 10,
"starting": true,
"long_name": "Anthony Martial"
},
{
"hash": "rZndECJt",
"name": "Moutinho J.",
"captain": "",
"detail_link": "/player/moutinho-joao/rZndECJt/",
"short_name": "Moutinho",
"shirt_number": "8",
"country": "Portugal",
"facts": [
{
"type": "8",
"time": "38' Kondogbia G. (Moutinho J.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "1",
"time": "90+2' Moutinho J. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Joao Moutinho"
},
{
"hash": "2meQdcrC",
"name": "Subasic D.",
"captain": "",
"detail_link": "/player/subasic-danijel/2meQdcrC/",
"short_name": "Subasic",
"shirt_number": "1",
"country": "Croatia",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Danijel Subasic"
},
{
"hash": "dQ9SqUtk",
"name": "Toure A.",
"captain": "",
"detail_link": "/player/toure-almamy/dQ9SqUtk/",
"short_name": "Toure",
"shirt_number": "38",
"country": "Mali",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Almamy Toure"
},
{
"hash": "nizlGfQf",
"name": "Wallace",
"captain": "",
"detail_link": "/player/wallace/nizlGfQf/",
"short_name": "Wallace",
"shirt_number": "13",
"country": "Brazil",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Wallace"
},
{
"hash": "lzccuuAC",
"name": "Carrasco Y.",
"captain": "",
"detail_link": "/player/carrasco-yannick/lzccuuAC/",
"short_name": "Carrasco",
"shirt_number": "17",
"country": "Belgium",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Berbatov D.",
"linked_player_hash": "KjMNbKF1"
},
{
"type": "3",
"time": "90+4' Carrasco Y. (Silva B.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Yannick Carrasco"
},
{
"hash": "M5WugaXi",
"name": "Diallo A.",
"captain": "",
"detail_link": "/player/diallo-abdou/M5WugaXi/",
"short_name": "Diallo",
"shirt_number": "34",
"country": "Senegal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Abdou Diallo"
},
{
"hash": "joeqPtde",
"name": "Kurzawa L.",
"captain": "",
"detail_link": "/player/kurzawa-layvin/joeqPtde/",
"short_name": "Kurzawa",
"shirt_number": "3",
"country": "France",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Dirar N.",
"linked_player_hash": "bNSMGhB4"
}
],
"lineup": null,
"starting": false,
"long_name": "Layvin Kurzawa"
},
{
"hash": "EukLMEkh",
"name": "Matheus Carvalho",
"captain": "",
"detail_link": "/player/carvalho-matheus/EukLMEkh/",
"short_name": "Matheus Carvalho",
"shirt_number": "12",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Matheus Carvalho"
},
{
"hash": "lUg03qcR",
"name": "Silva B.",
"captain": "",
"detail_link": "/player/silva-bernardo/lUg03qcR/",
"short_name": "Silva",
"shirt_number": "15",
"country": "Portugal",
"facts": [
{
"type": "7",
"time": "84'",
"description": "Martial A.",
"linked_player_hash": "GrS6Vr75"
},
{
"type": "8",
"time": "90+4' Carrasco Y. (Silva B.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Bernardo Silva"
},
{
"hash": "vgCMRkkq",
"name": "Stekelenburg M.",
"captain": "",
"detail_link": "/player/stekelenburg-maarten/vgCMRkkq/",
"short_name": "Stekelenburg",
"shirt_number": "16",
"country": "Netherlands",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Maarten Stekelenburg"
},
{
"hash": "CSmsJmEK",
"name": "Traore A.",
"captain": "",
"detail_link": "/player/traore-alain/CSmsJmEK/",
"short_name": "Traore",
"shirt_number": "25",
"country": "Burkina Faso",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alain Traore"
}
],
"coach": [
{
"hash": "YDsWV60K",
"name": "Jardim L.",
"captain": "",
"detail_link": "/player/jardim-leonardo/YDsWV60K/",
"short_name": "Jardim L.",
"shirt_number": "",
"country": "Portugal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Leonardo Jardim"
}
]
}
},
"referee": [
"Aytekin D."
],
"venue": [
"Emirates Stadium (London)"
],
"attendance": [
"59 868"
],
"referee_matched": [
"Deniz Aytekin"
],
"referee_found": [
"Deniz Aytekin"
],
"coach_matched": [
"Leonardo Jardim"
],
"gameHomeTeam": "Arsenal",
"home": {
"name": "Arsenal",
"detail_link": "/team/arsenal/hA1Zm19f",
"hash": "hA1Zm19f",
"names": [
"Arsenal",
"Arsenal (Eng)",
"arsenal"
]
},
"gameAwayTeam": "Monaco",
"away": {
"name": "Monaco",
"detail_link": "/team/monaco/2PIvr8o4",
"hash": "2PIvr8o4",
"names": [
"Monaco",
"Monaco (Fra)",
"monaco"
]
},
"gameDate": "25/02/2015 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "The fans must be pleased with the show they have seen on the pitch today. There was no chance to get bored as the game was very attractive. Let's hope the players won't lose their passion and determination in the future matches. There wasn't any evident superiority by either side today. The home side attempted to create scoring opportunities mostly with long balls, while the opposition focused on counter-attacks to breach the home side's defences.",
"identified": "The fans must be pleased with the show they have seen on the pitch today. There was no chance to get bored as the game was very attractive. Let's hope the players won't lose their passion and determination in the future matches. There wasn't any evident superiority by either side today. The home side attempted to create scoring opportunities mostly with long balls, while the opposition focused on counter-attacks to breach the home side's defences.",
"anonymized": "The fans must be pleased with the show they have seen on the pitch today. There was no chance to get bored as the game was very attractive. Let's hope the players won't lose their passion and determination in the future matches. There wasn't any evident superiority by either side today. The home side attempted to create scoring opportunities mostly with long balls, while the opposition focused on counter-attacks to breach the home side's defences.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:47",
"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": "2987000"
},
{
"important": true,
"gameTime": "2 - 48:43",
"label": "soccer-ball",
"description": "Yannick Carrasco (Monaco) finishes his beautiful individual effort with a superb strike from inside the box. David Ospina is just a bystander as the ball flies off the post into the bottom left corner. The score is 1:3.",
"identified": "[PLAYER_lzccuuAC] ([TEAM_]) finishes his beautiful individual effort with a superb strike from inside the box. [PLAYER_6PHywlJK] is just a bystander as the ball flies off the post into the bottom left corner. The score is 1:3.",
"anonymized": "[PLAYER] ([TEAM]) finishes his beautiful individual effort with a superb strike from inside the box. [PLAYER] is just a bystander as the ball flies off the post into the bottom left corner. The score is 1:3.",
"visibility": "shown",
"position": "2923000"
},
{
"important": false,
"gameTime": "2 - 47:52",
"label": "",
"description": "Yannick Carrasco (Monaco) stands over the free kick and opts to take it himself, sending it towards the right post only for David Ospina to dive and make a save.",
"identified": "[PLAYER_lzccuuAC] ([TEAM_]) stands over the free kick and opts to take it himself, sending it towards the right post only for [PLAYER_6PHywlJK] to dive and make a save.",
"anonymized": "[PLAYER] ([TEAM]) stands over the free kick and opts to take it himself, sending it towards the right post only for [PLAYER] to dive and make a save.",
"visibility": "shown",
"position": "2872000"
},
{
"important": false,
"gameTime": "2 - 46:55",
"label": "",
"description": "Tomas Rosicky (Arsenal) gives away a foul for a clumsy challenge. Referee Deniz Aytekin saw the whole situation. Free kick. Monaco will probably just try to cross the ball in from here.",
"identified": "[PLAYER_v50zQruO] ([TEAM_]) gives away a foul for a clumsy challenge. Referee [REFEREE] saw the whole situation. Free kick. [TEAM_] will probably just try to cross the ball in from here.",
"anonymized": "[PLAYER] ([TEAM]) gives away a foul for a clumsy challenge. Referee [REFEREE] saw the whole situation. Free kick. [TEAM] will probably just try to cross the ball in from here.",
"visibility": "shown",
"position": "2815000"
},
{
"important": true,
"gameTime": "2 - 46:26",
"label": "y-card",
"description": "Joao Moutinho (Monaco) is punished with a yellow card for violating the rules.",
"identified": "[PLAYER_rZndECJt] ([TEAM_]) is punished with a yellow card for violating the rules.",
"anonymized": "[PLAYER] ([TEAM]) is punished with a yellow card for violating the rules.",
"visibility": "shown",
"position": "2786000"
},
{
"important": true,
"gameTime": "2 - 45:32",
"label": "soccer-ball",
"description": "The ball rebounds and arrives at the feet of Alex Oxlade-Chamberlain (Arsenal) just outside the box. He doesn't think twice and fires a brilliant shot inside the right post. His attempt was beyond the reach of Danijel Subasic, so the score changes to 0:2.",
"identified": "The ball rebounds and arrives at the feet of [PLAYER_WzNLf7VR] ([TEAM_]) just outside the box. He doesn't think twice and fires a brilliant shot inside the right post. His attempt was beyond the reach of [PLAYER_2meQdcrC], so the score changes to 0:2.",
"anonymized": "The ball rebounds and arrives at the feet of [PLAYER] ([TEAM]) just outside the box. He doesn't think twice and fires a brilliant shot inside the right post. His attempt was beyond the reach of [PLAYER], so the score changes to 0:2.",
"visibility": "shown",
"position": "2732000"
},
{
"important": false,
"gameTime": "2 - 45:28",
"label": "",
"description": "An attempted cross from Laurent Koscielny (Arsenal) is cleared.",
"identified": "An attempted cross from [PLAYER_0MoFTxk9] ([TEAM_]) is cleared.",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "2728000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "We will have 4 min. of added time.",
"identified": "We will have 4 min. of added time.",
"anonymized": "We will have 4 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:55",
"label": "corner",
"description": "A horde of players are waiting inside the penalty area for a cross from the corner, but Alexis Sanchez (Arsenal) takes it short.",
"identified": "A horde of players are waiting inside the penalty area for a cross from the corner, but [PLAYER_QgGt7V0d] ([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": "2695000"
},
{
"important": false,
"gameTime": "2 - 44:49",
"label": "corner",
"description": "Alexis Sanchez (Arsenal) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety. Now Arsenal have a corner.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends a lovely ball into the penalty area, but the opposition's defence is ready and knocks the ball to safety. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "2689000"
},
{
"important": false,
"gameTime": "2 - 44:40",
"label": "",
"description": "Mesut Ozil (Arsenal) fails to find any of his teammates inside the box as his pass is blocked. The linesman points to the corner flag, Arsenal are going to take it.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked. The linesman points to the corner flag, [TEAM_] are going to take it.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked. The linesman points to the corner flag, [TEAM] are going to take it.",
"visibility": "shown",
"position": "2680000"
},
{
"important": false,
"gameTime": "2 - 43:55",
"label": "",
"description": "Yannick Carrasco (Monaco) darts into the penalty area to latch on to a pass, and he unleashes a low drive towards the middle of the net, but David Ospina is alert and denies him.",
"identified": "[PLAYER_lzccuuAC] ([TEAM_]) darts into the penalty area to latch on to a pass, and he unleashes a low drive towards the middle of the net, but [PLAYER_6PHywlJK] is alert and denies him.",
"anonymized": "[PLAYER] ([TEAM]) darts into the penalty area to latch on to a pass, and he unleashes a low drive towards the middle of the net, but [PLAYER] is alert and denies him.",
"visibility": "shown",
"position": "2635000"
},
{
"important": false,
"gameTime": "2 - 42:00",
"label": "funfact",
"description": "Here's the latest number of offsides \u2013 0:5.",
"identified": "Here's the latest number of offsides \u2013 0:5.",
"anonymized": "Here's the latest number of offsides \u2013 0:5.",
"visibility": "shown",
"position": "2520000"
},
{
"important": true,
"gameTime": "2 - 41:41",
"label": "y-card",
"description": "The referee Deniz Aytekin awards Mesut Ozil (Arsenal) a yellow card.",
"identified": "The referee [REFEREE] awards [PLAYER_U30xq9EJ] ([TEAM_]) a yellow card.",
"anonymized": "The referee [REFEREE] awards [PLAYER] ([TEAM]) a yellow card.",
"visibility": "shown",
"position": "2501000"
},
{
"important": false,
"gameTime": "2 - 40:25",
"label": "corner",
"description": "A dangerous looking corner kick from Mesut Ozil (Arsenal) is cleared to safety by the defence.",
"identified": "A dangerous looking corner kick from [PLAYER_U30xq9EJ] ([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": "2425000"
},
{
"important": false,
"gameTime": "2 - 40:07",
"label": "",
"description": "Theo Walcott (Arsenal) sends a low pass from outside the box to Santi Cazorla. He lines up a shot, but the defence intercepts at the last moment. Arsenal force their opponents to concede a corner.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) sends a low pass from outside the box to [PLAYER_rVt0F12N]. He lines up a shot, but the defence intercepts at the last moment. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a low pass from outside the box to [PLAYER]. He lines up a shot, but the defence intercepts at the last moment. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "2407000"
},
{
"important": true,
"gameTime": "2 - 38:54",
"label": "substitution",
"description": "Anthony Martial comes off the pitch to be replaced by Bernardo Silva (Monaco).",
"identified": "[PLAYER_GrS6Vr75] comes off the pitch to be replaced by [PLAYER_lUg03qcR] ([TEAM_]).",
"anonymized": "[PLAYER] comes off the pitch to be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2334000"
},
{
"important": false,
"gameTime": "2 - 36:55",
"label": "",
"description": "Alexis Sanchez (Arsenal) meets a fine cross on the edge of the box from the resulting corner kick and shoots. His shot flies just wide of the left post.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) meets a fine cross on the edge of the box from the resulting corner kick and shoots. His shot flies just wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) meets a fine cross on the edge of the box from the resulting corner kick and shoots. His shot flies just wide of the left post.",
"visibility": "shown",
"position": "2215000"
},
{
"important": false,
"gameTime": "2 - 36:40",
"label": "corner",
"description": "Mesut Ozil (Arsenal) will deliver the ball into the penalty box from a corner kick.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) will deliver the ball into the penalty box from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will deliver the ball into the penalty box from a corner kick.",
"visibility": "shown",
"position": "2200000"
},
{
"important": true,
"gameTime": "2 - 36:38",
"label": "substitution",
"description": "Here is a change. Nabil Dirar is going off and Leonardo Jardim gives the last tactical orders to Layvin Kurzawa (Monaco).",
"identified": "Here is a change. [PLAYER_bNSMGhB4] is going off and [COACH_YDsWV60K] gives the last tactical orders to [PLAYER_joeqPtde] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2198000"
},
{
"important": true,
"gameTime": "2 - 36:04",
"label": "substitution",
"description": "Today's match ends for Santi Cazorla who will be replaced by Tomas Rosicky (Arsenal).",
"identified": "Today's match ends for [PLAYER_rVt0F12N] who will be replaced by [PLAYER_v50zQruO] ([TEAM_]).",
"anonymized": "Today's match ends for [PLAYER] who will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2164000"
},
{
"important": false,
"gameTime": "2 - 35:16",
"label": "",
"description": "Alexis Sanchez (Arsenal) and Santi Cazorla attempt to exchange short two-yard passes, but the opposition's defence intercepts the ball. The referee points to the corner flag and Arsenal will take a corner.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) and [PLAYER_rVt0F12N] attempt to exchange short two-yard passes, but the opposition's defence intercepts the ball. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) and [PLAYER] attempt to exchange short two-yard passes, but the opposition's defence intercepts the ball. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "2116000"
},
{
"important": false,
"gameTime": "2 - 33:07",
"label": "",
"description": "Monaco are happy to keep the ball as they wait for gaps in defence to open up. However, an opposing player steps in and clears.",
"identified": "[TEAM_] are happy to keep the ball as they wait for gaps in defence to open up. However, an opposing player steps in and clears.",
"anonymized": "[TEAM] are happy to keep the ball as they wait for gaps in defence to open up. However, an opposing player steps in and clears.",
"visibility": "shown",
"position": "1987000"
},
{
"important": false,
"gameTime": "2 - 32:00",
"label": "attendance",
"description": "The attendance for today's match is 59868.",
"identified": "The attendance for today's match is 59868.",
"anonymized": "The attendance for today's match is 59868.",
"visibility": "shown",
"position": "1920000"
},
{
"important": false,
"gameTime": "2 - 31:57",
"label": "",
"description": "Anthony Martial (Monaco) tested David Ospina with a strike from just outside the box, but the effort is saved.",
"identified": "[PLAYER_GrS6Vr75] ([TEAM_]) tested [PLAYER_6PHywlJK] with a strike from just outside the box, but the effort is saved.",
"anonymized": "[PLAYER] ([TEAM]) tested [PLAYER] with a strike from just outside the box, but the effort is saved.",
"visibility": "shown",
"position": "1917000"
},
{
"important": true,
"gameTime": "2 - 30:06",
"label": "substitution",
"description": "We are about to witness a substitution. Yannick Carrasco (Monaco) is replacing Dimitar Berbatov.",
"identified": "We are about to witness a substitution. [PLAYER_lzccuuAC] ([TEAM_]) is replacing [PLAYER_KjMNbKF1].",
"anonymized": "We are about to witness a substitution. [PLAYER] ([TEAM]) is replacing [PLAYER].",
"visibility": "shown",
"position": "1806000"
},
{
"important": false,
"gameTime": "2 - 29:09",
"label": "",
"description": "Theo Walcott (Arsenal) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is off of the pitch and it's a goal kick for Monaco.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is off of the pitch and it's a goal kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1749000"
},
{
"important": true,
"gameTime": "2 - 28:19",
"label": "y-card",
"description": "A yellow card for a tackle by Hector Bellerin (Arsenal). Deniz Aytekin doesn't hesitate at all to make this decision.",
"identified": "A yellow card for a tackle by [PLAYER_pxq49QlK] ([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": "1699000"
},
{
"important": false,
"gameTime": "2 - 28:02",
"label": "",
"description": "Alex Oxlade-Chamberlain (Arsenal) produces a dangerous low pass into the penalty area, but the defence manage to cut it out.",
"identified": "[PLAYER_WzNLf7VR] ([TEAM_]) produces a dangerous low pass into the penalty area, but the defence manage to cut it out.",
"anonymized": "[PLAYER] ([TEAM]) produces a dangerous low pass into the penalty area, but the defence manage to cut it out.",
"visibility": "shown",
"position": "1682000"
},
{
"important": false,
"gameTime": "2 - 26:51",
"label": "",
"description": "Arsenal control the tempo of the game by exchanging some accurate short passes.",
"identified": "[TEAM_] control the tempo of the game by exchanging some accurate short passes.",
"anonymized": "[TEAM] control the tempo of the game by exchanging some accurate short passes.",
"visibility": "shown",
"position": "1611000"
},
{
"important": false,
"gameTime": "2 - 23:55",
"label": "",
"description": "Santi Cazorla (Arsenal) sees the run of Theo Walcott and tries to slip the ball to him, but Danijel Subasic sees the danger and gathers.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) sees the run of [PLAYER_2cpouZhq] and tries to slip the ball to him, but [PLAYER_2meQdcrC] sees the danger and gathers.",
"anonymized": "[PLAYER] ([TEAM]) sees the run of [PLAYER] and tries to slip the ball to him, but [PLAYER] sees the danger and gathers.",
"visibility": "shown",
"position": "1435000"
},
{
"important": true,
"gameTime": "2 - 23:00",
"label": "substitution",
"description": "A substitution has been made. Francis Coquelin is replaced by Alex Oxlade-Chamberlain (Arsenal).",
"identified": "A substitution has been made. [PLAYER_2qXd9yom] is replaced by [PLAYER_WzNLf7VR] ([TEAM_]).",
"anonymized": "A substitution has been made. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1380000"
},
{
"important": false,
"gameTime": "2 - 21:52",
"label": "",
"description": "Hector Bellerin (Arsenal) was too forceful with his tackle and Deniz Aytekin interrupted the game to signal a free kick. A free kick is awarded to Monaco.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. A free kick is awarded to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. A free kick is awarded to [TEAM].",
"visibility": "shown",
"position": "1312000"
},
{
"important": true,
"gameTime": "2 - 18:58",
"label": "",
"description": "Danny Welbeck (Arsenal) gets a shot in from close range, but it's unluckily blocked by one of his teammates.",
"identified": "[PLAYER_86PvpO11] ([TEAM_]) gets a shot in from close range, but it's unluckily blocked by one of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) gets a shot in from close range, but it's unluckily blocked by one of his teammates.",
"visibility": "shown",
"position": "1138000"
},
{
"important": true,
"gameTime": "2 - 18:52",
"label": "",
"description": "Theo Walcott (Arsenal) makes contact with a cross and strikes a shot that lacks the power to find the back of the net, but the goalkeeper still has to make a good save to keep his effort out.",
"identified": "[PLAYER_2cpouZhq] ([TEAM_]) makes contact with a cross and strikes a shot that lacks the power to find the back of the net, but the goalkeeper still has to make a good save to keep his effort out.",
"anonymized": "[PLAYER] ([TEAM]) makes contact with a cross and strikes a shot that lacks the power to find the back of the net, but the goalkeeper still has to make a good save to keep his effort out.",
"visibility": "shown",
"position": "1132000"
},
{
"important": false,
"gameTime": "2 - 18:24",
"label": "",
"description": "Nabil Dirar (Monaco) attempts to find Dimitar Berbatov with a delicate little through ball from inside the box, but one of the defending players makes a timely intervention.",
"identified": "[PLAYER_bNSMGhB4] ([TEAM_]) attempts to find [PLAYER_KjMNbKF1] with a delicate little through ball from inside the box, but one of the defending players makes a timely intervention.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find [PLAYER] with a delicate little through ball from inside the box, but one of the defending players makes a timely intervention.",
"visibility": "shown",
"position": "1104000"
},
{
"important": false,
"gameTime": "2 - 17:20",
"label": "",
"description": "Deniz Aytekin blows the whistle, Nabil Dirar (Monaco) is penalised for a foul. Arsenal try to maintain the tempo of the game by taking a quick free kick.",
"identified": "[REFEREE] blows the whistle, [PLAYER_bNSMGhB4] ([TEAM_]) is penalised for a foul. [TEAM_] try to maintain the tempo of the game by taking a quick free kick.",
"anonymized": "[REFEREE] blows the whistle, [PLAYER] ([TEAM]) is penalised for a foul. [TEAM] try to maintain the tempo of the game by taking a quick free kick.",
"visibility": "shown",
"position": "1040000"
},
{
"important": false,
"gameTime": "2 - 16:35",
"label": "",
"description": "Joao Moutinho (Monaco) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"identified": "[PLAYER_rZndECJt] ([TEAM_]) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"anonymized": "[PLAYER] ([TEAM]) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"visibility": "shown",
"position": "995000"
},
{
"important": false,
"gameTime": "2 - 16:19",
"label": "corner",
"description": "Joao Moutinho (Monaco) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"identified": "[PLAYER_rZndECJt] ([TEAM_]) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner kick, but one of the defenders leaps highest to head the ball away.",
"visibility": "shown",
"position": "979000"
},
{
"important": true,
"gameTime": "2 - 15:39",
"label": "",
"description": "Anthony Martial (Monaco) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at David Ospina. The ball is out of play. Monaco will have a chance to score from a corner.",
"identified": "[PLAYER_GrS6Vr75] ([TEAM_]) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at [PLAYER_6PHywlJK]. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at [PLAYER]. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "939000"
},
{
"important": true,
"gameTime": "2 - 14:35",
"label": "substitution",
"description": "Here comes a substitution. Olivier Giroud (Arsenal) has had enough and is replaced by Theo Walcott (Arsenal).",
"identified": "Here comes a substitution. [PLAYER_AJPBp2as] ([TEAM_]) has had enough and is replaced by [PLAYER_2cpouZhq] ([TEAM_]).",
"anonymized": "Here comes a substitution. [PLAYER] ([TEAM]) has had enough and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "875000"
},
{
"important": false,
"gameTime": "2 - 14:15",
"label": "",
"description": "Wallace (Monaco) is moving okay again after that injury scare.",
"identified": "[PLAYER_nizlGfQf] ([TEAM_]) is moving okay again after that injury scare.",
"anonymized": "[PLAYER] ([TEAM]) is moving okay again after that injury scare.",
"visibility": "shown",
"position": "855000"
},
{
"important": false,
"gameTime": "2 - 12:51",
"label": "injury",
"description": "The game is interrupted now, Wallace (Monaco) picks up a knock and the physio has to come on.",
"identified": "The game is interrupted now, [PLAYER_nizlGfQf] ([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": "771000"
},
{
"important": false,
"gameTime": "2 - 12:45",
"label": "",
"description": "Danny Welbeck (Arsenal) commits a rough challenge and Deniz Aytekin blows his whistle for a foul.",
"identified": "[PLAYER_86PvpO11] ([TEAM_]) commits a rough challenge and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough challenge and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "765000"
},
{
"important": true,
"gameTime": "2 - 12:12",
"label": "",
"description": "Olivier Giroud (Arsenal) strikes the rebound, but it goes well over the bar.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) strikes the rebound, but it goes well over the bar.",
"anonymized": "[PLAYER] ([TEAM]) strikes the rebound, but it goes well over the bar.",
"visibility": "shown",
"position": "732000"
},
{
"important": false,
"gameTime": "2 - 11:36",
"label": "",
"description": "Great touch by Alexis Sanchez (Arsenal) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"identified": "Great touch by [PLAYER_QgGt7V0d] ([TEAM_]) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"anonymized": "Great touch by [PLAYER] ([TEAM]) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"visibility": "shown",
"position": "696000"
},
{
"important": false,
"gameTime": "2 - 08:50",
"label": "",
"description": "Anthony Martial (Monaco) is offside and the linesman raises his flag.",
"identified": "[PLAYER_GrS6Vr75] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "530000"
},
{
"important": true,
"gameTime": "2 - 07:58",
"label": "soccer-ball",
"description": "Fantastic team goal! Dimitar Berbatov (Monaco) was set free in the area by Anthony Martial and made no mistake with a lovely finish into the left side of the net. 0:2.",
"identified": "Fantastic team goal! [PLAYER_KjMNbKF1] ([TEAM_]) was set free in the area by [PLAYER_GrS6Vr75] and made no mistake with a lovely finish into the left side of the net. 0:2.",
"anonymized": "Fantastic team goal! [PLAYER] ([TEAM]) was set free in the area by [PLAYER] and made no mistake with a lovely finish into the left side of the net. 0:2.",
"visibility": "shown",
"position": "478000"
},
{
"important": true,
"gameTime": "2 - 06:16",
"label": "",
"description": "Olivier Giroud (Arsenal) leaps high deep inside the box to meet a beautiful cross from the resultant free kick. He glances a header goalwards, but it's not accurate at all and goes well wide of the left post.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) leaps high deep inside the box to meet a beautiful cross from the resultant free kick. He glances a header goalwards, but it's not accurate at all and goes well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) leaps high deep inside the box to meet a beautiful cross from the resultant free kick. He glances a header goalwards, but it's not accurate at all and goes well wide of the left post.",
"visibility": "shown",
"position": "376000"
},
{
"important": false,
"gameTime": "2 - 05:21",
"label": "",
"description": "An opponent rises to his feet after being downed by . Deniz Aytekin saw the sliding tackle and blows for a foul. Arsenal will look to benefit from a promising free kick near the touchline.",
"identified": "An opponent rises to his feet after being downed by . [REFEREE] saw the sliding tackle and blows for a foul. [TEAM_] will look to benefit from a promising free kick near the touchline.",
"anonymized": "An opponent rises to his feet after being downed by . [REFEREE] saw the sliding tackle and blows for a foul. [TEAM] will look to benefit from a promising free kick near the touchline.",
"visibility": "shown",
"position": "321000"
},
{
"important": false,
"gameTime": "2 - 04:27",
"label": "",
"description": "Kieran Gibbs (Arsenal) gives away a foul during an attacking move and the referee blows his whistle.",
"identified": "[PLAYER_tvEj3HIu] ([TEAM_]) gives away a foul during an attacking move and the referee blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) gives away a foul during an attacking move and the referee blows his whistle.",
"visibility": "shown",
"position": "267000"
},
{
"important": false,
"gameTime": "2 - 03:52",
"label": "",
"description": "Olivier Giroud (Arsenal) plays a one-two with Olivier Giroud, but the move breaks down.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) plays a one-two with [PLAYER_AJPBp2as], but the move breaks down.",
"anonymized": "[PLAYER] ([TEAM]) plays a one-two with [PLAYER], but the move breaks down.",
"visibility": "shown",
"position": "232000"
},
{
"important": false,
"gameTime": "2 - 03:16",
"label": "",
"description": "Nabil Dirar (Monaco) is penalised for holding. Deniz Aytekin signals a set piece. Arsenal produce a short pass from the free kick.",
"identified": "[PLAYER_bNSMGhB4] ([TEAM_]) is penalised for holding. [REFEREE] signals a set piece. [TEAM_] produce a short pass from the free kick.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for holding. [REFEREE] signals a set piece. [TEAM] produce a short pass from the free kick.",
"visibility": "shown",
"position": "196000"
},
{
"important": false,
"gameTime": "2 - 02:18",
"label": "",
"description": "Per Mertesacker (Arsenal) makes a bad challenge and the referee blows his whistle for a foul.",
"identified": "[PLAYER_tlwkgQLn] ([TEAM_]) makes a bad challenge and the referee blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a bad challenge and the referee blows his whistle for a foul.",
"visibility": "shown",
"position": "138000"
},
{
"important": true,
"gameTime": "2 - 00:38",
"label": "",
"description": "CHANCE! Olivier Giroud (Arsenal) fires just wide of the right post from inside the box after running onto a splendid pass from Alexis Sanchez.",
"identified": "CHANCE! [PLAYER_AJPBp2as] ([TEAM_]) fires just wide of the right post from inside the box after running onto a splendid pass from [PLAYER_QgGt7V0d].",
"anonymized": "CHANCE! [PLAYER] ([TEAM]) fires just wide of the right post from inside the box after running onto a splendid pass from [PLAYER].",
"visibility": "shown",
"position": "38000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The second half has just started.",
"identified": "The second half has just started.",
"anonymized": "The second half has just started.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "The performance of both teams has been far from perfect so far and is unlikely to have satisfied the fans. Both teams are unsuccessfully trying to control the game and it's pretty even so far. Long balls and crosses are the strongest weapons of the home team. The away team tries to find the weakness in the opposition's defence using mainly rapid counter-attacks.",
"identified": "The performance of both teams has been far from perfect so far and is unlikely to have satisfied the fans. Both teams are unsuccessfully trying to control the game and it's pretty even so far. Long balls and crosses are the strongest weapons of the home team. The away team tries to find the weakness in the opposition's defence using mainly rapid counter-attacks.",
"anonymized": "The performance of both teams has been far from perfect so far and is unlikely to have satisfied the fans. Both teams are unsuccessfully trying to control the game and it's pretty even so far. Long balls and crosses are the strongest weapons of the home team. The away team tries to find the weakness in the opposition's defence using mainly rapid counter-attacks.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:05",
"label": "whistle",
"description": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"identified": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"anonymized": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"visibility": "shown",
"position": "2765000"
},
{
"important": false,
"gameTime": "1 - 45:40",
"label": "",
"description": "Santi Cazorla (Arsenal) sends in a cross from a free kick from just outside the box, trying to find one of his teammates deep inside the penalty area. The goalkeeper displays great anticipation and collects the ball.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) sends in a cross from a free kick from just outside the box, trying to find one of his teammates deep inside the penalty area. The goalkeeper displays great anticipation and collects the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends in a cross from a free kick from just outside the box, trying to find one of his teammates deep inside the penalty area. The goalkeeper displays great anticipation and collects the ball.",
"visibility": "shown",
"position": "2740000"
},
{
"important": false,
"gameTime": "1 - 45:14",
"label": "",
"description": "A mid-range free kick is awarded to Arsenal out wide and from this angle a cross into the box is likely.",
"identified": "A mid-range free kick is awarded to [TEAM_] out wide and from this angle a cross into the box is likely.",
"anonymized": "A mid-range free kick is awarded to [TEAM] out wide and from this angle a cross into the box is likely.",
"visibility": "shown",
"position": "2714000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "Fourth official shows 1 min. of added time.",
"identified": "Fourth official shows 1 min. of added time.",
"anonymized": "Fourth official shows 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 44:50",
"label": "",
"description": "Close! Olivier Giroud (Arsenal) picks up the ball in space and from inside the penalty area sends a shot inches wide of the right post.",
"identified": "Close! [PLAYER_AJPBp2as] ([TEAM_]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the right post.",
"anonymized": "Close! [PLAYER] ([TEAM]) picks up the ball in space and from inside the penalty area sends a shot inches wide of the right post.",
"visibility": "shown",
"position": "2690000"
},
{
"important": true,
"gameTime": "1 - 44:50",
"label": "y-card",
"description": "Deniz Aytekin shows a yellow card to Elderson (Monaco) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_CvGlQcbe] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "2690000"
},
{
"important": false,
"gameTime": "1 - 42:35",
"label": "",
"description": "Deniz Aytekin blows his whistle for a foul after Joao Moutinho (Monaco) hacks down one of his opponents.",
"identified": "[REFEREE] blows his whistle for a foul after [PLAYER_rZndECJt] ([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": "2555000"
},
{
"important": true,
"gameTime": "1 - 41:26",
"label": "y-card",
"description": "Deniz Aytekin shows a yellow card to Francis Coquelin (Arsenal), who isn't surprised as the tackle was really hard and late.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_2qXd9yom] ([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": "2486000"
},
{
"important": false,
"gameTime": "1 - 40:02",
"label": "",
"description": "Olivier Giroud (Arsenal) missed a great opportunity! He finds himself some space near the penalty spot and plants a header goalwards which lacks both power and accuracy. The ball sails well over the bar!",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) missed a great opportunity! He finds himself some space near the penalty spot and plants a header goalwards which lacks both power and accuracy. The ball sails well over the bar!",
"anonymized": "[PLAYER] ([TEAM]) missed a great opportunity! He finds himself some space near the penalty spot and plants a header goalwards which lacks both power and accuracy. The ball sails well over the bar!",
"visibility": "shown",
"position": "2402000"
},
{
"important": true,
"gameTime": "1 - 37:12",
"label": "soccer-ball",
"description": "GOAL 0:1! Geoffrey Kondogbia (Monaco) unleashes a shot from distance, which is deflected past David Ospina. He had no chance of stopping it as the ball rapidly changed its direction.",
"identified": "GOAL 0:1! [PLAYER_nZs03zT2] ([TEAM_]) unleashes a shot from distance, which is deflected past [PLAYER_6PHywlJK]. He had no chance of stopping it as the ball rapidly changed its direction.",
"anonymized": "GOAL 0:1! [PLAYER] ([TEAM]) unleashes a shot from distance, which is deflected past [PLAYER]. He had no chance of stopping it as the ball rapidly changed its direction.",
"visibility": "shown",
"position": "2232000"
},
{
"important": false,
"gameTime": "1 - 36:20",
"label": "",
"description": "Olivier Giroud (Arsenal) receives a well-played pass inside the penalty area and shoots. He sends the ball into orbit.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) receives a well-played pass inside the penalty area and shoots. He sends the ball into orbit.",
"anonymized": "[PLAYER] ([TEAM]) receives a well-played pass inside the penalty area and shoots. He sends the ball into orbit.",
"visibility": "shown",
"position": "2180000"
},
{
"important": false,
"gameTime": "1 - 35:03",
"label": "",
"description": "Anthony Martial sends a lofted pass into the box, Joao Moutinho (Monaco) shows good awareness to connect with it but blazes his shot high over the crossbar.",
"identified": "[PLAYER_GrS6Vr75] sends a lofted pass into the box, [PLAYER_rZndECJt] ([TEAM_]) shows good awareness to connect with it but blazes his shot high over the crossbar.",
"anonymized": "[PLAYER] sends a lofted pass into the box, [PLAYER] ([TEAM]) shows good awareness to connect with it but blazes his shot high over the crossbar.",
"visibility": "shown",
"position": "2103000"
},
{
"important": false,
"gameTime": "1 - 33:23",
"label": "",
"description": "Hector Bellerin (Arsenal) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it. The ball goes out of play and Monaco will have a goal kick.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) put a cross into the box which wasn't a bad decision, but he failed to achieve what he wanted as none of his teammates managed to meet it. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "2003000"
},
{
"important": false,
"gameTime": "1 - 31:52",
"label": "",
"description": "Close! Alexis Sanchez (Arsenal) picks up the ball in space and from inside the penalty area sends a shot narrowly over the bar.",
"identified": "Close! [PLAYER_QgGt7V0d] ([TEAM_]) picks up the ball in space and from inside the penalty area sends a shot narrowly over the bar.",
"anonymized": "Close! [PLAYER] ([TEAM]) picks up the ball in space and from inside the penalty area sends a shot narrowly over the bar.",
"visibility": "shown",
"position": "1912000"
},
{
"important": false,
"gameTime": "1 - 29:54",
"label": "",
"description": "Mesut Ozil (Arsenal) and Alexis Sanchez try to prise open the opposition with a series of short passes, but one of the defenders steps in and puts an end to the move.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) and [PLAYER_QgGt7V0d] try to prise open the opposition with a series of short passes, but one of the defenders steps in and puts an end to the move.",
"anonymized": "[PLAYER] ([TEAM]) and [PLAYER] try to prise open the opposition with a series of short passes, but one of the defenders steps in and puts an end to the move.",
"visibility": "shown",
"position": "1794000"
},
{
"important": false,
"gameTime": "1 - 27:51",
"label": "",
"description": "Santi Cazorla (Arsenal) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_rVt0F12N] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"visibility": "shown",
"position": "1671000"
},
{
"important": false,
"gameTime": "1 - 27:15",
"label": "",
"description": "Anthony Martial (Monaco) times his run too early and the linesman raises his flag for offside.",
"identified": "[PLAYER_GrS6Vr75] ([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": "1635000"
},
{
"important": false,
"gameTime": "1 - 26:22",
"label": "",
"description": "Kieran Gibbs (Arsenal) sends a precise pass into the box, but Mesut Ozil loses the one-on-one with the defender.",
"identified": "[PLAYER_tvEj3HIu] ([TEAM_]) sends a precise pass into the box, but [PLAYER_U30xq9EJ] loses the one-on-one with the defender.",
"anonymized": "[PLAYER] ([TEAM]) sends a precise pass into the box, but [PLAYER] loses the one-on-one with the defender.",
"visibility": "shown",
"position": "1582000"
},
{
"important": false,
"gameTime": "1 - 25:05",
"label": "corner",
"description": "The corner from Mesut Ozil (Arsenal) is hurriedly cleared.",
"identified": "The corner from [PLAYER_U30xq9EJ] ([TEAM_]) is hurriedly cleared.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is hurriedly cleared.",
"visibility": "shown",
"position": "1505000"
},
{
"important": false,
"gameTime": "1 - 24:43",
"label": "",
"description": "A cross from the free kick is whipped in by Santi Cazorla (Arsenal), but one of the defenders steps in and averts the threat. The linesman makes the right call and Arsenal will have a corner.",
"identified": "A cross from the free kick is whipped in by [PLAYER_rVt0F12N] ([TEAM_]), but one of the defenders steps in and averts the threat. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "A cross from the free kick is whipped in by [PLAYER] ([TEAM]), but one of the defenders steps in and averts the threat. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "1483000"
},
{
"important": false,
"gameTime": "1 - 24:16",
"label": "",
"description": "Geoffrey Kondogbia (Monaco) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. Deniz Aytekin blows for the foul but keeps his cards in his pocket on this occasion. Arsenal are awarded a free kick.",
"identified": "[PLAYER_nZs03zT2] ([TEAM_]) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. [REFEREE] blows for the foul but keeps his cards in his pocket on this occasion. [TEAM_] are awarded a free kick.",
"anonymized": "[PLAYER] ([TEAM]) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. [REFEREE] blows for the foul but keeps his cards in his pocket on this occasion. [TEAM] are awarded a free kick.",
"visibility": "shown",
"position": "1456000"
},
{
"important": false,
"gameTime": "1 - 23:44",
"label": "",
"description": "Olivier Giroud (Arsenal) leaps highest to meet the resulting corner and attempts to head home, but the effort goes harmlessly wide of the left post.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) leaps highest to meet the resulting corner and attempts to head home, but the effort goes harmlessly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) leaps highest to meet the resulting corner and attempts to head home, but the effort goes harmlessly wide of the left post.",
"visibility": "shown",
"position": "1424000"
},
{
"important": false,
"gameTime": "1 - 23:33",
"label": "corner",
"description": "Alexis Sanchez (Arsenal) is heading toward the corner flag to take the set piece.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) is heading toward the corner flag to take the set piece.",
"anonymized": "[PLAYER] ([TEAM]) is heading toward the corner flag to take the set piece.",
"visibility": "shown",
"position": "1413000"
},
{
"important": false,
"gameTime": "1 - 22:15",
"label": "",
"description": "Arsenal are happy showing off their ball keeping skills and that is only interrupted when the defender steps in. The ball goes out of play. Arsenal are awarded a corner kick.",
"identified": "[TEAM_] are happy showing off their ball keeping skills and that is only interrupted when the defender steps in. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[TEAM] are happy showing off their ball keeping skills and that is only interrupted when the defender steps in. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1335000"
},
{
"important": false,
"gameTime": "1 - 21:30",
"label": "",
"description": "Aymen Abdennour (Monaco) sends a cross into the box, but David Ospina comes off his line to gather the ball.",
"identified": "[PLAYER_nRFwYRaL] ([TEAM_]) sends a cross into the box, but [PLAYER_6PHywlJK] 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": "1290000"
},
{
"important": false,
"gameTime": "1 - 20:13",
"label": "",
"description": "Deniz Aytekin has a clear sight and sees a foul from Nabil Dirar (Monaco).",
"identified": "[REFEREE] has a clear sight and sees a foul from [PLAYER_bNSMGhB4] ([TEAM_]).",
"anonymized": "[REFEREE] has a clear sight and sees a foul from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1213000"
},
{
"important": false,
"gameTime": "1 - 20:02",
"label": "",
"description": "Dimitar Berbatov receives a sweet cross inside the box from Almamy Toure (Monaco), but one of the defenders rushes in bravely to intercept the ball.",
"identified": "[PLAYER_KjMNbKF1] receives a sweet cross inside the box from [PLAYER_dQ9SqUtk] ([TEAM_]), but one of the defenders rushes in bravely to intercept the ball.",
"anonymized": "[PLAYER] receives a sweet cross inside the box from [PLAYER] ([TEAM]), but one of the defenders rushes in bravely to intercept the ball.",
"visibility": "shown",
"position": "1202000"
},
{
"important": false,
"gameTime": "1 - 18:57",
"label": "",
"description": "Joao Moutinho (Monaco) unleashes a shot, but it's well wide of the left-hand post.",
"identified": "[PLAYER_rZndECJt] ([TEAM_]) unleashes a shot, but it's well wide of the left-hand post.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a shot, but it's well wide of the left-hand post.",
"visibility": "shown",
"position": "1137000"
},
{
"important": false,
"gameTime": "1 - 18:20",
"label": "",
"description": "Hector Bellerin (Arsenal) fouls an opponent. At least that's what referee Deniz Aytekin signals.",
"identified": "[PLAYER_pxq49QlK] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals.",
"visibility": "shown",
"position": "1100000"
},
{
"important": false,
"gameTime": "1 - 18:01",
"label": "",
"description": "The Arsenal players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"identified": "The [TEAM_] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"anonymized": "The [TEAM] players keep the ball and are exchanging a combination of passes. They are waiting for gaps in the defence to open up.",
"visibility": "shown",
"position": "1081000"
},
{
"important": false,
"gameTime": "1 - 15:57",
"label": "",
"description": "The flag is raised by the referee's assistant. Dimitar Berbatov (Monaco) is repeatedly being caught offside. He's always hanging on the shoulder of the last man to try and get into a scoring position.",
"identified": "The flag is raised by the referee's assistant. [PLAYER_KjMNbKF1] ([TEAM_]) is repeatedly being caught offside. He's always hanging on the shoulder of the last man to try and get into a scoring position.",
"anonymized": "The flag is raised by the referee's assistant. [PLAYER] ([TEAM]) is repeatedly being caught offside. He's always hanging on the shoulder of the last man to try and get into a scoring position.",
"visibility": "shown",
"position": "957000"
},
{
"important": false,
"gameTime": "1 - 15:15",
"label": "",
"description": "Dangerous play by Olivier Giroud (Arsenal). Deniz Aytekin blows his whistle for a foul. Monaco are awarded a free kick. Let's see what they create from this.",
"identified": "Dangerous play by [PLAYER_AJPBp2as] ([TEAM_]). [REFEREE] blows his whistle for a foul. [TEAM_] are awarded a free kick. Let's see what they create from this.",
"anonymized": "Dangerous play by [PLAYER] ([TEAM]). [REFEREE] blows his whistle for a foul. [TEAM] are awarded a free kick. Let's see what they create from this.",
"visibility": "shown",
"position": "915000"
},
{
"important": false,
"gameTime": "1 - 14:49",
"label": "",
"description": "The game is interrupted as Dimitar Berbatov (Monaco) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_KjMNbKF1] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "889000"
},
{
"important": false,
"gameTime": "1 - 14:39",
"label": "",
"description": "Monaco are awarded a free kick near the side line and the players make their way into the box for the inevitable cross.",
"identified": "[TEAM_] are awarded a free kick near the side line and the players make their way into the box for the inevitable cross.",
"anonymized": "[TEAM] are awarded a free kick near the side line and the players make their way into the box for the inevitable cross.",
"visibility": "shown",
"position": "879000"
},
{
"important": false,
"gameTime": "1 - 14:20",
"label": "",
"description": "Olivier Giroud (Arsenal) makes an overly-aggressive challenge and Deniz Aytekin blows his whistle for a foul.",
"identified": "[PLAYER_AJPBp2as] ([TEAM_]) makes an overly-aggressive challenge and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes an overly-aggressive challenge and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "860000"
},
{
"important": false,
"gameTime": "1 - 13:18",
"label": "",
"description": "Elderson (Monaco) fizzes over a cross which doesn't cause any problems. The linesman signals a throw-in for Arsenal.",
"identified": "[PLAYER_CvGlQcbe] ([TEAM_]) fizzes over a cross which doesn't cause any problems. The linesman signals a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) fizzes over a cross which doesn't cause any problems. The linesman signals a throw-in for [TEAM].",
"visibility": "shown",
"position": "798000"
},
{
"important": false,
"gameTime": "1 - 12:30",
"label": "",
"description": "Santi Cazorla (Arsenal) tries to take the opposition by surprise with a quick free kick into the box.",
"identified": "[PLAYER_rVt0F12N] ([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": "750000"
},
{
"important": false,
"gameTime": "1 - 12:07",
"label": "",
"description": "Aymen Abdennour (Monaco) makes a rough challenge and Deniz Aytekin blows his whistle for a foul.",
"identified": "[PLAYER_nRFwYRaL] ([TEAM_]) makes a rough challenge and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "727000"
},
{
"important": false,
"gameTime": "1 - 11:01",
"label": "corner",
"description": "Alexis Sanchez (Arsenal) works the corner short.",
"identified": "[PLAYER_QgGt7V0d] ([TEAM_]) works the corner short.",
"anonymized": "[PLAYER] ([TEAM]) works the corner short.",
"visibility": "shown",
"position": "661000"
},
{
"important": false,
"gameTime": "1 - 10:49",
"label": "",
"description": "Mesut Ozil (Arsenal) races towards goal but the defender gets back well to make a challenge. Arsenal will take a corner kick.",
"identified": "[PLAYER_U30xq9EJ] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. [TEAM_] will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "649000"
}
]
} |