File size: 77,564 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 |
{
"timestamp": "1476536400",
"score": "1 - 3",
"round": "8",
"teams": [
"AS Roma",
"Napoli"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "hnFBS5hK",
"name": "Allan",
"captain": "",
"detail_link": "/player/allan/hnFBS5hK/",
"short_name": "Allan",
"shirt_number": "5",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "85' Allan (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Allan"
},
{
"hash": "GtOw2z0j",
"name": "Callejon J.",
"captain": "",
"detail_link": "/player/callejon-jose/GtOw2z0j/",
"short_name": "Callejon",
"shirt_number": "7",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "76'",
"description": "El Kaddouri O.",
"linked_player_hash": "8E92JyZC"
}
],
"lineup": 9,
"starting": true,
"long_name": "Jose Callejon"
},
{
"hash": "fwCMLZye",
"name": "Gabbiadini M.",
"captain": "",
"detail_link": "/player/gabbiadini-manolo/fwCMLZye/",
"short_name": "Gabbiadini",
"shirt_number": "23",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "57'",
"description": "Mertens D.",
"linked_player_hash": "dfIcigtg"
}
],
"lineup": 10,
"starting": true,
"long_name": "Manolo Gabbiadini"
},
{
"hash": "x2eF9dok",
"name": "Ghoulam F.",
"captain": "",
"detail_link": "/player/ghoulam-faouzi/x2eF9dok/",
"short_name": "Ghoulam",
"shirt_number": "31",
"country": "Algeria",
"facts": [
{
"type": "8",
"time": "58' Koulibaly K. (Ghoulam F.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Faouzi Ghoulam"
},
{
"hash": "AoWVYBUC",
"name": "Hamsik M.",
"captain": "(C)",
"detail_link": "/player/hamsik-marek/AoWVYBUC/",
"short_name": "Hamsik",
"shirt_number": "17",
"country": "Slovakia",
"facts": [
{
"type": "6",
"time": "81'",
"description": "Zielinski P.",
"linked_player_hash": "dlFNZSvb"
}
],
"lineup": 8,
"starting": true,
"long_name": "Marek Hamsik"
},
{
"hash": "8z6PLSII",
"name": "Hysaj E.",
"captain": "",
"detail_link": "/player/hysaj-elseid/8z6PLSII/",
"short_name": "Hysaj",
"shirt_number": "2",
"country": "Albania",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Elseid Hysaj"
},
{
"hash": "6qUE0AeN",
"name": "Insigne L.",
"captain": "",
"detail_link": "/player/insigne-lorenzo/6qUE0AeN/",
"short_name": "Insigne",
"shirt_number": "24",
"country": "Italy",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Lorenzo Insigne"
},
{
"hash": "t80QsVOt",
"name": "Jorginho",
"captain": "",
"detail_link": "/player/jorginho/t80QsVOt/",
"short_name": "Jorginho",
"shirt_number": "8",
"country": "Italy",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Jorginho"
},
{
"hash": "hSKz7qT3",
"name": "Koulibaly K.",
"captain": "",
"detail_link": "/player/koulibaly-kalidou/hSKz7qT3/",
"short_name": "Koulibaly",
"shirt_number": "26",
"country": "Senegal",
"facts": [
{
"type": "3",
"time": "58' Koulibaly K. (Ghoulam F.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Kalidou Koulibaly"
},
{
"hash": "2q9g9abc",
"name": "Maksimovic N.",
"captain": "",
"detail_link": "/player/maksimovic-nikola/2q9g9abc/",
"short_name": "Maksimovic",
"shirt_number": "19",
"country": "Serbia",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Nikola Maksimovic"
},
{
"hash": "KrEhnvkN",
"name": "Reina P.",
"captain": "",
"detail_link": "/player/reina-pepe/KrEhnvkN/",
"short_name": "Reina",
"shirt_number": "25",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Pepe Reina"
},
{
"hash": "WEmOjj2K",
"name": "Chiriches V.",
"captain": "",
"detail_link": "/player/chiriches-vlad/WEmOjj2K/",
"short_name": "Chiriches",
"shirt_number": "21",
"country": "Romania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Vlad Chiriches"
},
{
"hash": "2Hs3xiw6",
"name": "Diawara A.",
"captain": "",
"detail_link": "/player/diawara-amadou/2Hs3xiw6/",
"short_name": "Diawara",
"shirt_number": "42",
"country": "Guinea",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Amadou Diawara"
},
{
"hash": "8E92JyZC",
"name": "El Kaddouri O.",
"captain": "",
"detail_link": "/player/el-kaddouri-omar/8E92JyZC/",
"short_name": "El Kaddouri",
"shirt_number": "77",
"country": "Morocco",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Callejon J.",
"linked_player_hash": "GtOw2z0j"
}
],
"lineup": null,
"starting": false,
"long_name": "Omar El Kaddouri"
},
{
"hash": "jHmytlL2",
"name": "Giaccherini E.",
"captain": "",
"detail_link": "/player/giaccherini-emanuele/jHmytlL2/",
"short_name": "Giaccherini",
"shirt_number": "4",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Emanuele Giaccherini"
},
{
"hash": "r30L5xhf",
"name": "Maggio C.",
"captain": "",
"detail_link": "/player/maggio-cristian/r30L5xhf/",
"short_name": "Maggio",
"shirt_number": "11",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Christian Maggio"
},
{
"hash": "dfIcigtg",
"name": "Mertens D.",
"captain": "",
"detail_link": "/player/mertens-dries/dfIcigtg/",
"short_name": "Mertens",
"shirt_number": "14",
"country": "Belgium",
"facts": [
{
"type": "1",
"time": "53' Mertens D. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "7",
"time": "57'",
"description": "Gabbiadini M.",
"linked_player_hash": "fwCMLZye"
}
],
"lineup": null,
"starting": false,
"long_name": "Dries Mertens"
},
{
"hash": "KCOJxFQ2",
"name": "Rafael Cabral",
"captain": "",
"detail_link": "/player/rafael/KCOJxFQ2/",
"short_name": "Rafael Cabral",
"shirt_number": "1",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rafael Cabral"
},
{
"hash": "EcdOzaBB",
"name": "Rog M.",
"captain": "",
"detail_link": "/player/rog-marko/EcdOzaBB/",
"short_name": "Rog",
"shirt_number": "30",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marko Rog"
},
{
"hash": "dvzcWaun",
"name": "Sepe L.",
"captain": "",
"detail_link": "/player/sepe-luigi/dvzcWaun/",
"short_name": "Sepe",
"shirt_number": "22",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luigi Sepe"
},
{
"hash": "2X4zNEPc",
"name": "Strinic I.",
"captain": "",
"detail_link": "/player/strinic-ivan/2X4zNEPc/",
"short_name": "Strinic",
"shirt_number": "3",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ivan Strinic"
},
{
"hash": "2yFG2BO6",
"name": "Tonelli L.",
"captain": "",
"detail_link": "/player/tonelli-lorenzo/2yFG2BO6/",
"short_name": "Tonelli",
"shirt_number": "62",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lorenzo Tonelli"
},
{
"hash": "dlFNZSvb",
"name": "Zielinski P.",
"captain": "",
"detail_link": "/player/zielinski-piotr/dlFNZSvb/",
"short_name": "Zielinski",
"shirt_number": "20",
"country": "Poland",
"facts": [
{
"type": "7",
"time": "81'",
"description": "Hamsik M.",
"linked_player_hash": "AoWVYBUC"
}
],
"lineup": null,
"starting": false,
"long_name": "Piotr Zielinski"
}
],
"coach": [
{
"hash": "pvzTXTMR",
"name": "Sarri M.",
"captain": "",
"detail_link": "/player/sarri-maurizio/pvzTXTMR/",
"short_name": "Sarri M.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Maurizio Sarri"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "xjigzK81",
"name": "De Rossi D.",
"captain": "(C)",
"detail_link": "/player/de-rossi-daniele/xjigzK81/",
"short_name": "De Rossi",
"shirt_number": "16",
"country": "Italy",
"facts": [
{
"type": "8",
"time": "85' Salah M. (De Rossi D.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Daniele De Rossi"
},
{
"hash": "zilGmgZq",
"name": "Dzeko E.",
"captain": "",
"detail_link": "/player/dzeko-edin/zilGmgZq/",
"short_name": "Dzeko",
"shirt_number": "9",
"country": "Bosnia and Herzegovina",
"facts": [
{
"type": "3",
"time": "43' Dzeko E. (Salah M.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "54' Dzeko E. (Florenzi A.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "83' Dzeko E. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Edin Dzeko"
},
{
"hash": "vLIzTB4p",
"name": "Fazio F.",
"captain": "",
"detail_link": "/player/fazio-federico/vLIzTB4p/",
"short_name": "Fazio",
"shirt_number": "20",
"country": "Argentina",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Federico Fazio"
},
{
"hash": "8UwHPuvH",
"name": "Florenzi A.",
"captain": "",
"detail_link": "/player/florenzi-alessandro/8UwHPuvH/",
"short_name": "Florenzi",
"shirt_number": "24",
"country": "Italy",
"facts": [
{
"type": "8",
"time": "54' Dzeko E. (Florenzi A.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Alessandro Florenzi"
},
{
"hash": "StHeGfTT",
"name": "Juan Jesus",
"captain": "",
"detail_link": "/player/juan-jesus/StHeGfTT/",
"short_name": "Juan Jesus",
"shirt_number": "3",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "50' Juan Jesus (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "70'",
"description": "Emerson",
"linked_player_hash": "MHViZ5fg"
}
],
"lineup": 5,
"starting": true,
"long_name": "Juan Jesus"
},
{
"hash": "CbbEhEvI",
"name": "Manolas K.",
"captain": "",
"detail_link": "/player/manolas-konstantinos/CbbEhEvI/",
"short_name": "Manolas",
"shirt_number": "44",
"country": "Greece",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Konstantinos Manolas"
},
{
"hash": "lUGgC8jg",
"name": "Nainggolan R.",
"captain": "",
"detail_link": "/player/nainggolan-radja/lUGgC8jg/",
"short_name": "Nainggolan",
"shirt_number": "4",
"country": "Belgium",
"facts": [
{
"type": "6",
"time": "79'",
"description": "El Shaarawy S.",
"linked_player_hash": "fFLge2V1"
}
],
"lineup": 9,
"starting": true,
"long_name": "Radja Nainggolan"
},
{
"hash": "lbNnSBiA",
"name": "Paredes L.",
"captain": "",
"detail_link": "/player/paredes-leandro/lbNnSBiA/",
"short_name": "Paredes",
"shirt_number": "5",
"country": "Argentina",
"facts": [
{
"type": "1",
"time": "45+1' Paredes L. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Leandro Paredes"
},
{
"hash": "Wx8pbtnB",
"name": "Perotti D.",
"captain": "",
"detail_link": "/player/perotti-diego/Wx8pbtnB/",
"short_name": "Perotti",
"shirt_number": "8",
"country": "Argentina",
"facts": [
{
"type": "6",
"time": "90+1'",
"description": "Gerson",
"linked_player_hash": "fyS1Li1E"
}
],
"lineup": 10,
"starting": true,
"long_name": "Diego Perotti"
},
{
"hash": "08FBycgB",
"name": "Salah M.",
"captain": "",
"detail_link": "/player/salah-mohamed/08FBycgB/",
"short_name": "Salah",
"shirt_number": "11",
"country": "Egypt",
"facts": [
{
"type": "8",
"time": "43' Dzeko E. (Salah M.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "85' Salah M. (De Rossi D.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Mohamed Salah"
},
{
"hash": "6NtwHZ7F",
"name": "Szczesny W.",
"captain": "",
"detail_link": "/player/szczesny-wojciech/6NtwHZ7F/",
"short_name": "Szczesny",
"shirt_number": "1",
"country": "Poland",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Wojciech Szczesny"
},
{
"hash": "UZrQ3bwP",
"name": "Alisson",
"captain": "",
"detail_link": "/player/alisson/UZrQ3bwP/",
"short_name": "Alisson",
"shirt_number": "19",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alisson"
},
{
"hash": "fFLge2V1",
"name": "El Shaarawy S.",
"captain": "",
"detail_link": "/player/el-shaarawy-stephan/fFLge2V1/",
"short_name": "El Shaarawy",
"shirt_number": "92",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Nainggolan R.",
"linked_player_hash": "lUGgC8jg"
}
],
"lineup": null,
"starting": false,
"long_name": "Stephan El Shaarawy"
},
{
"hash": "MHViZ5fg",
"name": "Emerson",
"captain": "",
"detail_link": "/player/emerson/MHViZ5fg/",
"short_name": "Emerson",
"shirt_number": "33",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Juan Jesus",
"linked_player_hash": "StHeGfTT"
}
],
"lineup": null,
"starting": false,
"long_name": "Emerson"
},
{
"hash": "fyS1Li1E",
"name": "Gerson",
"captain": "",
"detail_link": "/player/gerson/fyS1Li1E/",
"short_name": "Gerson",
"shirt_number": "30",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "90+1'",
"description": "Perotti D.",
"linked_player_hash": "Wx8pbtnB"
}
],
"lineup": null,
"starting": false,
"long_name": "Gerson"
},
{
"hash": "pOAihUR6",
"name": "Iturbe J.",
"captain": "",
"detail_link": "/player/iturbe-juan/pOAihUR6/",
"short_name": "Iturbe",
"shirt_number": "7",
"country": "Paraguay",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Juan Iturbe"
},
{
"hash": "lQn61lQK",
"name": "Lobont B.",
"captain": "",
"detail_link": "/player/lobont-bogdan/lQn61lQK/",
"short_name": "Lobont",
"shirt_number": "18",
"country": "Romania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Bogdan Lobont"
},
{
"hash": "4fmsLyMH",
"name": "Seck M.",
"captain": "",
"detail_link": "/player/seck-moustapha/4fmsLyMH/",
"short_name": "Seck",
"shirt_number": "17",
"country": "Senegal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Moustapha Seck"
},
{
"hash": "lxgpt2GR",
"name": "Totti F.",
"captain": "",
"detail_link": "/player/totti-francesco/lxgpt2GR/",
"short_name": "Totti",
"shirt_number": "10",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Francesco Totti"
}
],
"coach": [
{
"hash": "n3dg3lHR",
"name": "Spalletti L.",
"captain": "",
"detail_link": "/player/spalletti-luciano/n3dg3lHR/",
"short_name": "Spalletti L.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luciano Spalletti"
}
]
}
},
"referee": [
"Orsato D."
],
"venue": [
"Stadio Diego Armando Maradona (Naples)"
],
"attendance": [
"46 078"
],
"referee_matched": [
"Daniele Orsato"
],
"referee_found": [
"Daniele Orsato"
],
"coach_matched": [
"Luciano Spalletti",
"Maurizio Sarri"
],
"gameHomeTeam": "Napoli",
"home": {
"name": "Napoli",
"detail_link": "/team/napoli/69Dxbc61",
"hash": "69Dxbc61",
"names": [
"Napoli",
"Napoli (Ita)",
"napoli"
]
},
"gameAwayTeam": "AS Roma",
"away": {
"name": "AS Roma",
"detail_link": "/team/as-roma/zVqqL0ma",
"hash": "zVqqL0ma",
"names": [
"AS Roma",
"AS Roma (Ita)",
"as roma"
]
},
"gameDate": "15/10/2016 - 15:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 50:59",
"label": "",
"description": "What a thrilling encounter, there was plenty of goal mouth action. There wasn't any significant dominance by either side in this game. It was obvious that the hosts tried to outplay their opponents with some passing football, while the visitors focused on counter-attacking play.",
"identified": "What a thrilling encounter, there was plenty of goal mouth action. There wasn't any significant dominance by either side in this game. It was obvious that the hosts tried to outplay their opponents with some passing football, while the visitors focused on counter-attacking play.",
"anonymized": "What a thrilling encounter, there was plenty of goal mouth action. There wasn't any significant dominance by either side in this game. It was obvious that the hosts tried to outplay their opponents with some passing football, while the visitors focused on counter-attacking play.",
"visibility": "shown",
"position": "3059000"
},
{
"important": true,
"gameTime": "2 - 50:02",
"label": "whistle",
"description": "The referee checks his watch and blows his whistle to signal the end of this match.",
"identified": "The referee checks his watch and blows his whistle to signal the end of this match.",
"anonymized": "The referee checks his watch and blows his whistle to signal the end of this match.",
"visibility": "shown",
"position": "3002000"
},
{
"important": true,
"gameTime": "2 - 45:36",
"label": "substitution",
"description": "Substitution. Diego Perotti is replaced by Gerson (AS Roma).",
"identified": "Substitution. [PLAYER_Wx8pbtnB] is replaced by [PLAYER_fyS1Li1E] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2736000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "5 min. of stoppage-time to be played.",
"identified": "5 min. of stoppage-time to be played.",
"anonymized": "5 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:15",
"label": "corner",
"description": "Faouzi Ghoulam (Napoli) takes the resulting corner which is well defended.",
"identified": "[PLAYER_x2eF9dok] ([TEAM_]) takes the resulting corner which is well defended.",
"anonymized": "[PLAYER] ([TEAM]) takes the resulting corner which is well defended.",
"visibility": "shown",
"position": "2655000"
},
{
"important": false,
"gameTime": "2 - 43:30",
"label": "corner",
"description": "Faouzi Ghoulam (Napoli) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance. Napoli have been awarded a corner kick.",
"identified": "[PLAYER_x2eF9dok] ([TEAM_]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2610000"
},
{
"important": false,
"gameTime": "2 - 43:15",
"label": "",
"description": "Napoli show off their ball retention skills as they exchange one-two passes and the move is only interrupted when the final pass is intercepted. Napoli force a corner. They send men into the box.",
"identified": "[TEAM_] show off their ball retention skills as they exchange one-two passes and the move is only interrupted when the final pass is intercepted. [TEAM_] force a corner. They send men into the box.",
"anonymized": "[TEAM] show off their ball retention skills as they exchange one-two passes and the move is only interrupted when the final pass is intercepted. [TEAM] force a corner. They send men into the box.",
"visibility": "shown",
"position": "2595000"
},
{
"important": true,
"gameTime": "2 - 39:55",
"label": "soccer-ball",
"description": "GOAL! Mohamed Salah (AS Roma) got to the ball in front of the goal and he couldn't miss from there. His low drive went in off the left-hand post. The score is 1:2.",
"identified": "GOAL! [PLAYER_08FBycgB] ([TEAM_]) got to the ball in front of the goal and he couldn't miss from there. His low drive went in off the left-hand post. The score is 1:2.",
"anonymized": "GOAL! [PLAYER] ([TEAM]) got to the ball in front of the goal and he couldn't miss from there. His low drive went in off the left-hand post. The score is 1:2.",
"visibility": "shown",
"position": "2395000"
},
{
"important": true,
"gameTime": "2 - 39:34",
"label": "y-card",
"description": "Allan (Napoli) is awarded a yellow card for his tackle. He doesn't seem to agree with the decision, but Daniele Orsato ignores the protests.",
"identified": "[PLAYER_hnFBS5hK] ([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": "2374000"
},
{
"important": true,
"gameTime": "2 - 37:49",
"label": "y-card",
"description": "Edin Dzeko (AS Roma) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. Daniele Orsato didn't think twice about pulling it out of his pocket.",
"identified": "[PLAYER_zilGmgZq] ([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": "2269000"
},
{
"important": true,
"gameTime": "2 - 35:19",
"label": "substitution",
"description": "The substitution is prepared. joins the action as a substitute, replacing Marek Hamsik (Napoli).",
"identified": "The substitution is prepared. joins the action as a substitute, replacing [PLAYER_AoWVYBUC] ([TEAM_]).",
"anonymized": "The substitution is prepared. joins the action as a substitute, replacing [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2119000"
},
{
"important": true,
"gameTime": "2 - 34:00",
"label": "substitution",
"description": "Luciano Spalletti has decided to make a change. Stephan El Shaarawy (AS Roma) replaces Radja Nainggolan.",
"identified": "[COACH_n3dg3lHR] has decided to make a change. [PLAYER_fFLge2V1] ([TEAM_]) replaces [PLAYER_lUGgC8jg].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "2040000"
},
{
"important": true,
"gameTime": "2 - 31:00",
"label": "substitution",
"description": "We are about to witness a subsitution. Omar El Kaddouri (Napoli) for Jose Callejon.",
"identified": "We are about to witness a subsitution. [PLAYER_8E92JyZC] ([TEAM_]) for [PLAYER_GtOw2z0j].",
"anonymized": "We are about to witness a subsitution. [PLAYER] ([TEAM]) for [PLAYER].",
"visibility": "shown",
"position": "1860000"
},
{
"important": false,
"gameTime": "2 - 30:55",
"label": "corner",
"description": "The resulting corner from Jose Callejon (Napoli) is cleared by the defence.",
"identified": "The resulting corner from [PLAYER_GtOw2z0j] ([TEAM_]) is cleared by the defence.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared by the defence.",
"visibility": "shown",
"position": "1855000"
},
{
"important": false,
"gameTime": "2 - 30:54",
"label": "",
"description": "Napoli show off their ball retention skills as they exchange one-two passes and the move is only interrupted when the final pass is intercepted. Napoli have a corner.",
"identified": "[TEAM_] show off their ball retention skills as they exchange one-two passes and the move is only interrupted when the final pass is intercepted. [TEAM_] have a corner.",
"anonymized": "[TEAM] show off their ball retention skills as they exchange one-two passes and the move is only interrupted when the final pass is intercepted. [TEAM] have a corner.",
"visibility": "shown",
"position": "1854000"
},
{
"important": true,
"gameTime": "2 - 25:00",
"label": "substitution",
"description": "Juan Jesus has picked up an injury and is replaced by Emerson (AS Roma).",
"identified": "[PLAYER_StHeGfTT] has picked up an injury and is replaced by [PLAYER_MHViZ5fg] ([TEAM_]).",
"anonymized": "[PLAYER] has picked up an injury and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1500000"
},
{
"important": false,
"gameTime": "2 - 24:43",
"label": "injury",
"description": "Juan Jesus (AS Roma) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"identified": "[PLAYER_StHeGfTT] ([TEAM_]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"anonymized": "[PLAYER] ([TEAM]) requires medical treatment, so the referee stops play and signals for the physio to come onto the pitch.",
"visibility": "shown",
"position": "1483000"
},
{
"important": false,
"gameTime": "2 - 23:49",
"label": "",
"description": "That didn't go as planned! Allan (Napoli) tried his luck from the edge of the box, but his effort low towards the middle of the goal was too weak to get past Wojciech Szczesny, who easily kept it out.",
"identified": "That didn't go as planned! [PLAYER_hnFBS5hK] ([TEAM_]) tried his luck from the edge of the box, but his effort low towards the middle of the goal was too weak to get past [PLAYER_6NtwHZ7F], who easily kept it out.",
"anonymized": "That didn't go as planned! [PLAYER] ([TEAM]) tried his luck from the edge of the box, but his effort low towards the middle of the goal was too weak to get past [PLAYER], who easily kept it out.",
"visibility": "shown",
"position": "1429000"
},
{
"important": false,
"gameTime": "2 - 23:23",
"label": "",
"description": "Jose Callejon (Napoli) announces himself with a close-range shot after a cross, but one of the defenders gets in the way of the ball to thwart him.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) announces himself with a close-range shot after a cross, but one of the defenders gets in the way of the ball to thwart him.",
"anonymized": "[PLAYER] ([TEAM]) announces himself with a close-range shot after a cross, but one of the defenders gets in the way of the ball to thwart him.",
"visibility": "shown",
"position": "1403000"
},
{
"important": false,
"gameTime": "2 - 20:08",
"label": "",
"description": "It looks like Dries Mertens (Napoli) saw red with that tackle. Daniele Orsato won't tolerate such behaviour on the pitch and blows for a foul.",
"identified": "It looks like [PLAYER_dfIcigtg] ([TEAM_]) saw red with that tackle. [REFEREE] won't tolerate such behaviour on the pitch and blows for a foul.",
"anonymized": "It looks like [PLAYER] ([TEAM]) saw red with that tackle. [REFEREE] won't tolerate such behaviour on the pitch and blows for a foul.",
"visibility": "shown",
"position": "1208000"
},
{
"important": true,
"gameTime": "2 - 13:00",
"label": "soccer-ball",
"description": "Kalidou Koulibaly (Napoli) connects with the ball from the resulting corner and places a precise header past the stranded goalkeeper and into the top left corner. The opposing players are staring at each other, unable to understand what happened. Who will take the blame for that one? Kalidou Koulibaly (Napoli) has a reason to celebrate!",
"identified": "[PLAYER_hSKz7qT3] ([TEAM_]) connects with the ball from the resulting corner and places a precise header past the stranded goalkeeper and into the top left corner. The opposing players are staring at each other, unable to understand what happened. Who will take the blame for that one? [PLAYER_hSKz7qT3] ([TEAM_]) has a reason to celebrate!",
"anonymized": "[PLAYER] ([TEAM]) connects with the ball from the resulting corner and places a precise header past the stranded goalkeeper and into the top left corner. The opposing players are staring at each other, unable to understand what happened. Who will take the blame for that one? [PLAYER] ([TEAM]) has a reason to celebrate!",
"visibility": "shown",
"position": "780000"
},
{
"important": false,
"gameTime": "2 - 12:20",
"label": "corner",
"description": "Corner kick. Faouzi Ghoulam (Napoli) is ready to send the ball into the box.",
"identified": "Corner kick. [PLAYER_x2eF9dok] ([TEAM_]) is ready to send the ball into the box.",
"anonymized": "Corner kick. [PLAYER] ([TEAM]) is ready to send the ball into the box.",
"visibility": "shown",
"position": "740000"
},
{
"important": false,
"gameTime": "2 - 12:15",
"label": "",
"description": "Napoli show off their ball retention skills as they exchange one-two passes and the move is only interrupted when the final pass is intercepted. Napoli win a corner.",
"identified": "[TEAM_] show off their ball retention skills as they exchange one-two passes and the move is only interrupted when the final pass is intercepted. [TEAM_] win a corner.",
"anonymized": "[TEAM] show off their ball retention skills as they exchange one-two passes and the move is only interrupted when the final pass is intercepted. [TEAM] win a corner.",
"visibility": "shown",
"position": "735000"
},
{
"important": true,
"gameTime": "2 - 12:00",
"label": "substitution",
"description": "Maurizio Sarri prepares a substitution. Manolo Gabbiadini is replaced by Dries Mertens (Napoli).",
"identified": "[COACH_pvzTXTMR] prepares a substitution. [PLAYER_fwCMLZye] is replaced by [PLAYER_dfIcigtg] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "720000"
},
{
"important": true,
"gameTime": "2 - 09:00",
"label": "soccer-ball",
"description": "It's in the back of the net! Alessandro Florenzi flights the free kick into the box, where Edin Dzeko (AS Roma) peels off his marker and heads straight into the left side of the net from the edge of the six-yard box. He makes it 0:2.",
"identified": "It's in the back of the net! [PLAYER_8UwHPuvH] flights the free kick into the box, where [PLAYER_zilGmgZq] ([TEAM_]) peels off his marker and heads straight into the left side of the net from the edge of the six-yard box. He makes it 0:2.",
"anonymized": "It's in the back of the net! [PLAYER] flights the free kick into the box, where [PLAYER] ([TEAM]) peels off his marker and heads straight into the left side of the net from the edge of the six-yard box. He makes it 0:2.",
"visibility": "shown",
"position": "540000"
},
{
"important": true,
"gameTime": "2 - 07:22",
"label": "y-card",
"description": "Although Dries Mertens (Napoli) is just on the bench, Daniele Orsato has awarded him with a yellow card. Unsporting behavior says the referee.",
"identified": "Although [PLAYER_dfIcigtg] ([TEAM_]) is just on the bench, [REFEREE] has awarded him with a yellow card. Unsporting behavior says the referee.",
"anonymized": "Although [PLAYER] ([TEAM]) is just on the bench, [REFEREE] has awarded him with a yellow card. Unsporting behavior says the referee.",
"visibility": "shown",
"position": "442000"
},
{
"important": false,
"gameTime": "2 - 07:13",
"label": "",
"description": "That didn't go as planned! Faouzi Ghoulam (Napoli) tried his luck from the edge of the box, but his effort towards the bottom right corner was too weak to get past Wojciech Szczesny, who easily kept it out.",
"identified": "That didn't go as planned! [PLAYER_x2eF9dok] ([TEAM_]) tried his luck from the edge of the box, but his effort towards the bottom right corner was too weak to get past [PLAYER_6NtwHZ7F], who easily kept it out.",
"anonymized": "That didn't go as planned! [PLAYER] ([TEAM]) tried his luck from the edge of the box, but his effort towards the bottom right corner was too weak to get past [PLAYER], who easily kept it out.",
"visibility": "shown",
"position": "433000"
},
{
"important": true,
"gameTime": "2 - 04:54",
"label": "y-card",
"description": "Juan Jesus (AS Roma) sees a yellow card from Daniele Orsato after he sent one of the opposing players to the ground.",
"identified": "[PLAYER_StHeGfTT] ([TEAM_]) sees a yellow card from [REFEREE] after he sent one of the opposing players to the ground.",
"anonymized": "[PLAYER] ([TEAM]) sees a yellow card from [REFEREE] after he sent one of the opposing players to the ground.",
"visibility": "shown",
"position": "294000"
},
{
"important": false,
"gameTime": "2 - 01:43",
"label": "",
"description": "The players claim that Mohamed Salah (AS Roma) handled the ball and it seems they are right.",
"identified": "The players claim that [PLAYER_08FBycgB] ([TEAM_]) handled the ball and it seems they are right.",
"anonymized": "The players claim that [PLAYER] ([TEAM]) handled the ball and it seems they are right.",
"visibility": "shown",
"position": "103000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The referee blows his whistle to signal the start of the second half.",
"identified": "The referee blows his whistle to signal the start of the second half.",
"anonymized": "The referee blows his whistle to signal the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "Not a lot happening in the first half, it hasn't been the best game so far in terms of quality. Both teams are unsuccessfully trying to control the game and it's pretty even so far. The home players have grown in confidence and started to string some passes together. The visiting side have relied on their defence and counter-attacks.",
"identified": "Not a lot happening in the first half, it hasn't been the best game so far in terms of quality. Both teams are unsuccessfully trying to control the game and it's pretty even so far. The home players have grown in confidence and started to string some passes together. The visiting side have relied on their defence and counter-attacks.",
"anonymized": "Not a lot happening in the first half, it hasn't been the best game so far in terms of quality. Both teams are unsuccessfully trying to control the game and it's pretty even so far. The home players have grown in confidence and started to string some passes together. The visiting side have relied on their defence and counter-attacks.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:33",
"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": "2793000"
},
{
"important": true,
"gameTime": "1 - 46:00",
"label": "y-card",
"description": "Daniele Orsato shows a yellow card to Leandro Paredes (AS Roma), who isn't surprised as the tackle was really hard and late.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_lbNnSBiA] ([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": "2760000"
},
{
"important": false,
"gameTime": "1 - 45:55",
"label": "",
"description": "Edin Dzeko (AS Roma) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"identified": "[PLAYER_zilGmgZq] ([TEAM_]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"visibility": "shown",
"position": "2755000"
},
{
"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 - 43:00",
"label": "soccer-ball",
"description": "Goal! Mohamed Salah puts the ball on a plate for Edin Dzeko (AS Roma), who scores with a simple close-range finish. It's 0:1.",
"identified": "Goal! [PLAYER_08FBycgB] puts the ball on a plate for [PLAYER_zilGmgZq] ([TEAM_]), who scores with a simple close-range finish. It's 0:1.",
"anonymized": "Goal! [PLAYER] puts the ball on a plate for [PLAYER] ([TEAM]), who scores with a simple close-range finish. It's 0:1.",
"visibility": "shown",
"position": "2580000"
},
{
"important": false,
"gameTime": "1 - 42:19",
"label": "",
"description": "Jose Callejon (Napoli) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked.",
"visibility": "shown",
"position": "2539000"
},
{
"important": false,
"gameTime": "1 - 41:21",
"label": "",
"description": "Diego Perotti (AS Roma) fizzes over a cross which doesn't cause any problems.",
"identified": "[PLAYER_Wx8pbtnB] ([TEAM_]) fizzes over a cross which doesn't cause any problems.",
"anonymized": "[PLAYER] ([TEAM]) fizzes over a cross which doesn't cause any problems.",
"visibility": "shown",
"position": "2481000"
},
{
"important": false,
"gameTime": "1 - 40:00",
"label": "",
"description": "Mohamed Salah (AS Roma) makes a rough challenge and the referee blows for a foul.",
"identified": "[PLAYER_08FBycgB] ([TEAM_]) makes a rough challenge and the referee blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and the referee blows for a foul.",
"visibility": "shown",
"position": "2400000"
},
{
"important": false,
"gameTime": "1 - 38:55",
"label": "",
"description": "Daniele Orsato has a clear sight and sees a foul from Diego Perotti (AS Roma).",
"identified": "[REFEREE] has a clear sight and sees a foul from [PLAYER_Wx8pbtnB] ([TEAM_]).",
"anonymized": "[REFEREE] has a clear sight and sees a foul from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2335000"
},
{
"important": false,
"gameTime": "1 - 37:33",
"label": "",
"description": "Allan (Napoli) fails to pick a body out in the box with an over-hit chip pass.",
"identified": "[PLAYER_hnFBS5hK] ([TEAM_]) fails to pick a body out in the box with an over-hit chip pass.",
"anonymized": "[PLAYER] ([TEAM]) fails to pick a body out in the box with an over-hit chip pass.",
"visibility": "shown",
"position": "2253000"
},
{
"important": false,
"gameTime": "1 - 37:15",
"label": "",
"description": "Manolo Gabbiadini (Napoli) is adjudged to have been offside when making his run.",
"identified": "[PLAYER_fwCMLZye] ([TEAM_]) is adjudged to have been offside when making his run.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged to have been offside when making his run.",
"visibility": "shown",
"position": "2235000"
},
{
"important": false,
"gameTime": "1 - 34:35",
"label": "corner",
"description": "Jose Callejon (Napoli) takes the corner kick but the ball only finds the head of an opponent.",
"identified": "[PLAYER_GtOw2z0j] ([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": "2075000"
},
{
"important": false,
"gameTime": "1 - 34:20",
"label": "",
"description": "Faouzi Ghoulam (Napoli) has an effort from distance and sends the ball towards the right post, but the goalkeeper is equal to it. Now Napoli have a corner.",
"identified": "[PLAYER_x2eF9dok] ([TEAM_]) has an effort from distance and sends the ball towards the right post, but the goalkeeper is equal to it. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) has an effort from distance and sends the ball towards the right post, but the goalkeeper is equal to it. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "2060000"
},
{
"important": false,
"gameTime": "1 - 33:22",
"label": "corner",
"description": "Faouzi Ghoulam (Napoli) takes the corner kick, but Wojciech Szczesny reads it well and stops the effort.",
"identified": "[PLAYER_x2eF9dok] ([TEAM_]) takes the corner kick, but [PLAYER_6NtwHZ7F] 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": "2002000"
},
{
"important": false,
"gameTime": "1 - 33:08",
"label": "",
"description": "Marek Hamsik (Napoli) tries to send a pass but it's blocked. Napoli will take a corner kick.",
"identified": "[PLAYER_AoWVYBUC] ([TEAM_]) tries to send a pass but it's blocked. [TEAM_] will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "1988000"
},
{
"important": false,
"gameTime": "1 - 31:25",
"label": "",
"description": "Pepe Reina displays his ability to read the game and clears the danger after Edin Dzeko (AS Roma) threatened to latch onto a through ball from just outside the box.",
"identified": "[PLAYER_KrEhnvkN] displays his ability to read the game and clears the danger after [PLAYER_zilGmgZq] ([TEAM_]) threatened to latch onto a through ball from just outside the box.",
"anonymized": "[PLAYER] displays his ability to read the game and clears the danger after [PLAYER] ([TEAM]) threatened to latch onto a through ball from just outside the box.",
"visibility": "shown",
"position": "1885000"
},
{
"important": false,
"gameTime": "1 - 30:55",
"label": "",
"description": "Jorginho (Napoli) strikes from the edge of the box, but hits it really poorly and sends the ball way over the bar.",
"identified": "[PLAYER_t80QsVOt] ([TEAM_]) strikes from the edge of the box, but hits it really poorly and sends the ball way over the bar.",
"anonymized": "[PLAYER] ([TEAM]) strikes from the edge of the box, but hits it really poorly and sends the ball way over the bar.",
"visibility": "shown",
"position": "1855000"
},
{
"important": false,
"gameTime": "1 - 30:46",
"label": "corner",
"description": "Jose Callejon (Napoli) steps up to take the corner, but the ball just sails in among the defenders.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) steps up to take the corner, but the ball just sails in among the defenders.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner, but the ball just sails in among the defenders.",
"visibility": "shown",
"position": "1846000"
},
{
"important": false,
"gameTime": "1 - 30:05",
"label": "",
"description": "Wow, what an escape. Marek Hamsik (Napoli) has an effort from inside the box but it's brilliantly blocked. The referee and his assistant both point at the corner flag. Napoli will have an opportunity to threaten the opposition's goal.",
"identified": "Wow, what an escape. [PLAYER_AoWVYBUC] ([TEAM_]) has an effort from inside the box but it's brilliantly blocked. The referee and his assistant both point at the corner flag. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "Wow, what an escape. [PLAYER] ([TEAM]) has an effort from inside the box but it's brilliantly blocked. 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": "1805000"
},
{
"important": false,
"gameTime": "1 - 29:15",
"label": "",
"description": "Flag up against Manolo Gabbiadini (Napoli). He had space to move into behind the defence, but he went too soon.",
"identified": "Flag up against [PLAYER_fwCMLZye] ([TEAM_]). He had space to move into behind the defence, but he went too soon.",
"anonymized": "Flag up against [PLAYER] ([TEAM]). He had space to move into behind the defence, but he went too soon.",
"visibility": "shown",
"position": "1755000"
},
{
"important": false,
"gameTime": "1 - 27:50",
"label": "",
"description": "Elseid Hysaj (Napoli) tries to create a chance, but puts too much weight on his pass.",
"identified": "[PLAYER_8z6PLSII] ([TEAM_]) tries to create a chance, but puts too much weight on his pass.",
"anonymized": "[PLAYER] ([TEAM]) tries to create a chance, but puts too much weight on his pass.",
"visibility": "shown",
"position": "1670000"
},
{
"important": false,
"gameTime": "1 - 27:22",
"label": "",
"description": "Diego Perotti (AS Roma) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"identified": "[PLAYER_Wx8pbtnB] ([TEAM_]) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) whips a promising cross into the box, but the opposition's defence intercepts the ball.",
"visibility": "shown",
"position": "1642000"
},
{
"important": false,
"gameTime": "1 - 26:54",
"label": "",
"description": "That didn't go as planned! Radja Nainggolan (AS Roma) tried his luck from the edge of the box, but his effort towards the bottom left corner was too weak to get past Pepe Reina, who easily kept it out.",
"identified": "That didn't go as planned! [PLAYER_lUGgC8jg] ([TEAM_]) tried his luck from the edge of the box, but his effort towards the bottom left corner was too weak to get past [PLAYER_KrEhnvkN], who easily kept it out.",
"anonymized": "That didn't go as planned! [PLAYER] ([TEAM]) tried his luck from the edge of the box, but his effort towards the bottom left corner was too weak to get past [PLAYER], who easily kept it out.",
"visibility": "shown",
"position": "1614000"
},
{
"important": false,
"gameTime": "1 - 25:42",
"label": "",
"description": "Jorginho (Napoli) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"identified": "[PLAYER_t80QsVOt] ([TEAM_]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"anonymized": "[PLAYER] ([TEAM]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"visibility": "shown",
"position": "1542000"
},
{
"important": false,
"gameTime": "1 - 24:30",
"label": "",
"description": "Jose Callejon (Napoli) connects with a pass but sees his shot from the edge of the box blocked.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) connects with a pass but sees his shot from the edge of the box blocked.",
"anonymized": "[PLAYER] ([TEAM]) connects with a pass but sees his shot from the edge of the box blocked.",
"visibility": "shown",
"position": "1470000"
},
{
"important": false,
"gameTime": "1 - 23:43",
"label": "corner",
"description": "Faouzi Ghoulam (Napoli) takes the corner but it's cleared.",
"identified": "[PLAYER_x2eF9dok] ([TEAM_]) takes the corner but it's cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but it's cleared.",
"visibility": "shown",
"position": "1423000"
},
{
"important": false,
"gameTime": "1 - 23:26",
"label": "",
"description": "Jose Callejon (Napoli) 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 for a corner. Napoli can continue in their attacking effort.",
"identified": "[PLAYER_GtOw2z0j] ([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 for a corner. [TEAM_] can continue in their attacking effort.",
"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 for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "1406000"
},
{
"important": false,
"gameTime": "1 - 22:57",
"label": "corner",
"description": "Jose Callejon (Napoli) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"anonymized": "[PLAYER] ([TEAM]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"visibility": "shown",
"position": "1377000"
},
{
"important": false,
"gameTime": "1 - 22:40",
"label": "",
"description": "Jose Callejon (Napoli) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. Napoli force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) attempts to send over a cross in order to find one of his teammates, but an opposition defender averts the danger by intercepting the effort. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "1360000"
},
{
"important": false,
"gameTime": "1 - 21:58",
"label": "",
"description": "Edin Dzeko (AS Roma) shoots from the edge of the penalty area. The ball travels low towards the middle of the target, but Pepe Reina easily deals with the threat.",
"identified": "[PLAYER_zilGmgZq] ([TEAM_]) shoots from the edge of the penalty area. The ball travels low towards the middle of the target, but [PLAYER_KrEhnvkN] easily deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) shoots from the edge of the penalty area. The ball travels low towards the middle of the target, but [PLAYER] easily deals with the threat.",
"visibility": "shown",
"position": "1318000"
},
{
"important": false,
"gameTime": "1 - 21:05",
"label": "",
"description": "Diego Perotti (AS Roma) attempts to surprise the keeper with a nice shot, but the ball goes narrowly wide of the right post.",
"identified": "[PLAYER_Wx8pbtnB] ([TEAM_]) attempts to surprise the keeper with a nice shot, but the ball goes narrowly wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) attempts to surprise the keeper with a nice shot, but the ball goes narrowly wide of the right post.",
"visibility": "shown",
"position": "1265000"
},
{
"important": false,
"gameTime": "1 - 20:20",
"label": "",
"description": "Radja Nainggolan (AS Roma) receives a precise pass on the edge of the box and bends his effort inches wide of the left post.",
"identified": "[PLAYER_lUGgC8jg] ([TEAM_]) receives a precise pass on the edge of the box and bends his effort inches wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass on the edge of the box and bends his effort inches wide of the left post.",
"visibility": "shown",
"position": "1220000"
},
{
"important": false,
"gameTime": "1 - 19:11",
"label": "",
"description": "The ball is cleared after Allan (Napoli) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_hnFBS5hK] ([TEAM_]) attempted to dribble past an opposing player.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player.",
"visibility": "shown",
"position": "1151000"
},
{
"important": false,
"gameTime": "1 - 17:00",
"label": "",
"description": "A poor finish by Allan (Napoli) as he misdirects his shot well wide of the right post.",
"identified": "A poor finish by [PLAYER_hnFBS5hK] ([TEAM_]) as he misdirects his shot well wide of the right post.",
"anonymized": "A poor finish by [PLAYER] ([TEAM]) as he misdirects his shot well wide of the right post.",
"visibility": "shown",
"position": "1020000"
},
{
"important": false,
"gameTime": "1 - 16:00",
"label": "",
"description": "Jose Callejon (Napoli) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"visibility": "shown",
"position": "960000"
},
{
"important": false,
"gameTime": "1 - 15:26",
"label": "corner",
"description": "Leandro Paredes (AS Roma) takes a short corner kick.",
"identified": "[PLAYER_lbNnSBiA] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "926000"
},
{
"important": false,
"gameTime": "1 - 15:11",
"label": "",
"description": "AS Roma are happy to keep the ball as they wait for gaps in defence to open up. However, an opposing player steps in and clears. The referee signals a corner kick to AS Roma.",
"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. The referee signals a corner kick to [TEAM_].",
"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. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "911000"
},
{
"important": false,
"gameTime": "1 - 13:58",
"label": "",
"description": "Lorenzo Insigne (Napoli) tries to hit a shot towards goal from long range, but he miskicks the ball and it flies high over the crossbar.",
"identified": "[PLAYER_6qUE0AeN] ([TEAM_]) tries to hit a shot towards goal from long range, but he miskicks the ball and it flies high over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) tries to hit a shot towards goal from long range, but he miskicks the ball and it flies high over the crossbar.",
"visibility": "shown",
"position": "838000"
},
{
"important": false,
"gameTime": "1 - 11:22",
"label": "",
"description": "Marek Hamsik (Napoli) strikes from the edge of the box, but hits it really poorly and sends the ball way wide of the right post.",
"identified": "[PLAYER_AoWVYBUC] ([TEAM_]) strikes from the edge of the box, but hits it really poorly and sends the ball way wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) strikes from the edge of the box, but hits it really poorly and sends the ball way wide of the right post.",
"visibility": "shown",
"position": "682000"
}
]
} |