File size: 75,229 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 |
{
"timestamp": "1471805100",
"score": "2 - 2",
"round": "1",
"teams": [
"Pescara",
"Napoli"
],
"lineup": {
"home": {
"tactic": "1-4-3-2-1",
"players": [
{
"hash": "Gl31cksa",
"name": "Benali A.",
"captain": "",
"detail_link": "/player/benali-ahmad/Gl31cksa/",
"short_name": "Benali",
"shirt_number": "10",
"country": "Libya",
"facts": [
{
"type": "3",
"time": "8' Benali A. (Verre V.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Ahmad Benali"
},
{
"hash": "h81ElhF9",
"name": "Biraghi C.",
"captain": "",
"detail_link": "/player/biraghi-cristiano/h81ElhF9/",
"short_name": "Biraghi",
"shirt_number": "3",
"country": "Italy",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Cristiano Biraghi"
},
{
"hash": "MTy3JBdg",
"name": "Bizzarri A.",
"captain": "",
"detail_link": "/player/bizzarri-albano/MTy3JBdg/",
"short_name": "Bizzarri",
"shirt_number": "31",
"country": "Argentina",
"facts": [
{
"type": "1",
"time": "52' Bizzarri A. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 1,
"starting": true,
"long_name": "Albano Bizzarri"
},
{
"hash": "l8BtS6uD",
"name": "Brugman G.",
"captain": "",
"detail_link": "/player/brugman-gaston/l8BtS6uD/",
"short_name": "Brugman",
"shirt_number": "16",
"country": "Uruguay",
"facts": [
{
"type": "1",
"time": "47' Brugman G. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "86'",
"description": "Crescenzi A.",
"linked_player_hash": "GKKuLnYH"
}
],
"lineup": 7,
"starting": true,
"long_name": "Gaston Brugman"
},
{
"hash": "hM9I17fh",
"name": "Caprari G.",
"captain": "",
"detail_link": "/player/caprari-gianluca/hM9I17fh/",
"short_name": "Caprari",
"shirt_number": "17",
"country": "Italy",
"facts": [
{
"type": "3",
"time": "35' Caprari G. (Zampano F.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Gianluca Caprari"
},
{
"hash": "drO6fdY4",
"name": "Coda A.",
"captain": "",
"detail_link": "/player/coda-andrea/drO6fdY4/",
"short_name": "Coda",
"shirt_number": "35",
"country": "Italy",
"facts": [
{
"type": "6",
"time": "71'",
"description": "Zuparic D.",
"linked_player_hash": "8W0WzBQK"
}
],
"lineup": 4,
"starting": true,
"long_name": "Andrea Coda"
},
{
"hash": "t6u0o3h7",
"name": "Cristante B.",
"captain": "",
"detail_link": "/player/cristante-bryan/t6u0o3h7/",
"short_name": "Cristante",
"shirt_number": "6",
"country": "Italy",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Bryan Cristante"
},
{
"hash": "IXRI6tlI",
"name": "Gyomber N.",
"captain": "",
"detail_link": "/player/gyomber-norbert/IXRI6tlI/",
"short_name": "Gyomber",
"shirt_number": "37",
"country": "Slovakia",
"facts": [
{
"type": "1",
"time": "74' Gyomber N. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Norbert Gyomber"
},
{
"hash": "URfA3Tur",
"name": "Memushaj L.",
"captain": "(C)",
"detail_link": "/player/memushaj-ledian/URfA3Tur/",
"short_name": "Memushaj",
"shirt_number": "8",
"country": "Albania",
"facts": [
{
"type": "6",
"time": "64'",
"description": "Manaj R.",
"linked_player_hash": "0SL07GW7"
}
],
"lineup": 8,
"starting": true,
"long_name": "Ledian Memushaj"
},
{
"hash": "EPCv63wE",
"name": "Verre V.",
"captain": "",
"detail_link": "/player/verre-valerio/EPCv63wE/",
"short_name": "Verre",
"shirt_number": "7",
"country": "Italy",
"facts": [
{
"type": "8",
"time": "8' Benali A. (Verre V.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Valerio Verre"
},
{
"hash": "SAVw0168",
"name": "Zampano F.",
"captain": "",
"detail_link": "/player/zampano-francesco/SAVw0168/",
"short_name": "Zampano",
"shirt_number": "11",
"country": "Italy",
"facts": [
{
"type": "8",
"time": "35' Caprari G. (Zampano F.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Francesco Zampano"
},
{
"hash": "j7BInRzo",
"name": "Acatullo M.",
"captain": "",
"detail_link": "/player/acatullo-marco/j7BInRzo/",
"short_name": "Acatullo",
"shirt_number": "80",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marco Acatullo"
},
{
"hash": "QyuHEgKK",
"name": "Aldegani G.",
"captain": "",
"detail_link": "/player/aldegani-gabriele/QyuHEgKK/",
"short_name": "Aldegani",
"shirt_number": "12",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gabriele Aldegani"
},
{
"hash": "nRf3Y38C",
"name": "Bruno A.",
"captain": "",
"detail_link": "/player/bruno-alessandro/nRf3Y38C/",
"short_name": "Bruno",
"shirt_number": "5",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alessandro Bruno"
},
{
"hash": "GKKuLnYH",
"name": "Crescenzi A.",
"captain": "",
"detail_link": "/player/crescenzi-alessandro/GKKuLnYH/",
"short_name": "Crescenzi",
"shirt_number": "2",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "86'",
"description": "Brugman G.",
"linked_player_hash": "l8BtS6uD"
}
],
"lineup": null,
"starting": false,
"long_name": "Alessandro Crescenzi"
},
{
"hash": "dUD9BADo",
"name": "Del Sole F.",
"captain": "",
"detail_link": "/player/del-sole-ferdinando/dUD9BADo/",
"short_name": "Del Sole",
"shirt_number": "98",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ferdinando Del Sole"
},
{
"hash": "l0e0BnSA",
"name": "Fiorillo V.",
"captain": "",
"detail_link": "/player/fiorillo-vincenzo/l0e0BnSA/",
"short_name": "Fiorillo",
"shirt_number": "1",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Vincenzo Fiorillo"
},
{
"hash": "S06fMqor",
"name": "Maloku L.",
"captain": "",
"detail_link": "/player/maloku-leonardo/S06fMqor/",
"short_name": "Maloku",
"shirt_number": "23",
"country": "Albania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Leonardo Maloku"
},
{
"hash": "0SL07GW7",
"name": "Manaj R.",
"captain": "",
"detail_link": "/player/manaj-rey/0SL07GW7/",
"short_name": "Manaj",
"shirt_number": "9",
"country": "Albania",
"facts": [
{
"type": "7",
"time": "64'",
"description": "Memushaj L.",
"linked_player_hash": "URfA3Tur"
}
],
"lineup": null,
"starting": false,
"long_name": "Rey Manaj"
},
{
"hash": "I3EOIMtl",
"name": "Mitrita A.",
"captain": "",
"detail_link": "/player/mitrita-alexandru/I3EOIMtl/",
"short_name": "Mitrita",
"shirt_number": "28",
"country": "Romania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alexandru Mitrita"
},
{
"hash": "nPDeSMTJ",
"name": "Selasi R.",
"captain": "",
"detail_link": "/player/selasi-ransford/nPDeSMTJ/",
"short_name": "Selasi",
"shirt_number": "24",
"country": "Ghana",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ransford Selasi"
},
{
"hash": "ppZVhxjq",
"name": "Vitturini D.",
"captain": "",
"detail_link": "/player/vitturini-davide/ppZVhxjq/",
"short_name": "Vitturini",
"shirt_number": "26",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Davide Vitturini"
},
{
"hash": "8W0WzBQK",
"name": "Zuparic D.",
"captain": "",
"detail_link": "/player/zuparic-dario/8W0WzBQK/",
"short_name": "Zuparic",
"shirt_number": "13",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Coda A.",
"linked_player_hash": "drO6fdY4"
}
],
"lineup": null,
"starting": false,
"long_name": "Dario Zuparic"
}
],
"coach": [
{
"hash": "MoFoSxOK",
"name": "Oddo M.",
"captain": "",
"detail_link": "/player/oddo-massimo/MoFoSxOK/",
"short_name": "Oddo M.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Massimo Oddo"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "AkMslDtA",
"name": "Albiol R.",
"captain": "",
"detail_link": "/player/albiol-raul/AkMslDtA/",
"short_name": "Albiol",
"shirt_number": "33",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "29' Albiol R. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Raul Albiol"
},
{
"hash": "hnFBS5hK",
"name": "Allan",
"captain": "",
"detail_link": "/player/allan/hnFBS5hK/",
"short_name": "Allan",
"shirt_number": "5",
"country": "Brazil",
"facts": [],
"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": [],
"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": "53'",
"description": "Milik A.",
"linked_player_hash": "EskCwiLE"
}
],
"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": [],
"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": "71'",
"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": [
{
"type": "6",
"time": "53'",
"description": "Mertens D.",
"linked_player_hash": "dfIcigtg"
}
],
"lineup": 11,
"starting": true,
"long_name": "Lorenzo Insigne"
},
{
"hash": "hSKz7qT3",
"name": "Koulibaly K.",
"captain": "",
"detail_link": "/player/koulibaly-kalidou/hSKz7qT3/",
"short_name": "Koulibaly",
"shirt_number": "26",
"country": "Senegal",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Kalidou Koulibaly"
},
{
"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": "dbEK1VwD",
"name": "Valdifiori M.",
"captain": "",
"detail_link": "/player/valdifiori-mirko/dbEK1VwD/",
"short_name": "Valdifiori",
"shirt_number": "6",
"country": "Italy",
"facts": [
{
"type": "8",
"time": "60' Mertens D. (Valdifiori M.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Mirko Valdifiori"
},
{
"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": "E7Jj74nK",
"name": "Grassi A.",
"captain": "",
"detail_link": "/player/grassi-alberto/E7Jj74nK/",
"short_name": "Grassi",
"shirt_number": "88",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alberto Grassi"
},
{
"hash": "QRxD5fN5",
"name": "Insigne R.",
"captain": "",
"detail_link": "/player/insigne-roberto/QRxD5fN5/",
"short_name": "Insigne",
"shirt_number": "20",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Roberto Insigne"
},
{
"hash": "6PlpbQlH",
"name": "Lasicki I.",
"captain": "",
"detail_link": "/player/lasicki-igor/6PlpbQlH/",
"short_name": "Lasicki",
"shirt_number": "95",
"country": "Poland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Igor Lasicki"
},
{
"hash": "l6ZLUe9D",
"name": "Luperto S.",
"captain": "",
"detail_link": "/player/luperto-sebastiano/l6ZLUe9D/",
"short_name": "Luperto",
"shirt_number": "96",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sebastiano Luperto"
},
{
"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": "7",
"time": "53'",
"description": "Insigne L.",
"linked_player_hash": "6qUE0AeN"
},
{
"type": "3",
"time": "60' Mertens D. (Valdifiori M.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "63' Mertens D.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "90+2' Mertens D. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Dries Mertens"
},
{
"hash": "EskCwiLE",
"name": "Milik A.",
"captain": "",
"detail_link": "/player/milik-arkadiusz/EskCwiLE/",
"short_name": "Milik",
"shirt_number": "99",
"country": "Poland",
"facts": [
{
"type": "7",
"time": "53'",
"description": "Gabbiadini M.",
"linked_player_hash": "fwCMLZye"
}
],
"lineup": null,
"starting": false,
"long_name": "Arkadiusz Milik"
},
{
"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": "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": "dlFNZSvb",
"name": "Zielinski P.",
"captain": "",
"detail_link": "/player/zielinski-piotr/dlFNZSvb/",
"short_name": "Zielinski",
"shirt_number": "27",
"country": "Poland",
"facts": [
{
"type": "7",
"time": "71'",
"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"
}
]
}
},
"referee": [
"Giacomelli P."
],
"venue": [
"Stadio Adriatico - Giovanni Cornacchia (Pescara)"
],
"attendance": [
"16 758"
],
"referee_matched": [
"Piero Giacomelli"
],
"referee_found": [
"Piero Giacomelli"
],
"coach_matched": [
"Massimo Oddo",
"Maurizio Sarri"
],
"gameHomeTeam": "Pescara",
"home": {
"name": "Pescara",
"detail_link": "/team/pescara/WW0i6v4C",
"hash": "WW0i6v4C",
"names": [
"Pescara",
"pescara"
]
},
"gameAwayTeam": "Napoli",
"away": {
"name": "Napoli",
"detail_link": "/team/napoli/69Dxbc61",
"hash": "69Dxbc61",
"names": [
"Napoli",
"Napoli (Ita)",
"napoli"
]
},
"gameDate": "21/08/2016 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "The players of both teams deserve praise from their managers and supporters for their performance on the pitch. If they carry on playing this exciting brand of football in future games, then the fans will surely be right behind them. We witnessed the away side dominate today's game. The home side were defending patiently to win the ball off the opponent and launch the counter. However, the away side moved the ball around and were waiting for a gap to appear in the home side's defence.",
"identified": "The players of both teams deserve praise from their managers and supporters for their performance on the pitch. If they carry on playing this exciting brand of football in future games, then the fans will surely be right behind them. We witnessed the away side dominate today's game. The home side were defending patiently to win the ball off the opponent and launch the counter. However, the away side moved the ball around and were waiting for a gap to appear in the home side's defence.",
"anonymized": "The players of both teams deserve praise from their managers and supporters for their performance on the pitch. If they carry on playing this exciting brand of football in future games, then the fans will surely be right behind them. We witnessed the away side dominate today's game. The home side were defending patiently to win the ball off the opponent and launch the counter. However, the away side moved the ball around and were waiting for a gap to appear in the home side's defence.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:58",
"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": "2998000"
},
{
"important": true,
"gameTime": "2 - 46:48",
"label": "y-card",
"description": "Dries Mertens (Napoli) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. Piero Giacomelli didn't think twice about pulling it out of his pocket.",
"identified": "[PLAYER_dfIcigtg] ([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": "2808000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "We will have 5 min. of added time.",
"identified": "We will have 5 min. of added time.",
"anonymized": "We will have 5 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 43:30",
"label": "",
"description": "Raul Albiol (Napoli) robs an opponent of the ball and explodes in anger when Piero Giacomelli blows for a foul.",
"identified": "[PLAYER_AkMslDtA] ([TEAM_]) robs an opponent of the ball and explodes in anger when [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) robs an opponent of the ball and explodes in anger when [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "2610000"
},
{
"important": true,
"gameTime": "2 - 40:15",
"label": "substitution",
"description": "We are about to witness a subsitution. Alessandro Crescenzi (Pescara) for Gaston Brugman.",
"identified": "We are about to witness a subsitution. [PLAYER_GKKuLnYH] ([TEAM_]) for [PLAYER_l8BtS6uD].",
"anonymized": "We are about to witness a subsitution. [PLAYER] ([TEAM]) for [PLAYER].",
"visibility": "shown",
"position": "2415000"
},
{
"important": false,
"gameTime": "2 - 38:59",
"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": "2339000"
},
{
"important": false,
"gameTime": "2 - 38:46",
"label": "",
"description": "Dries Mertens (Napoli) races towards goal but the defender gets back well to make a challenge. Napoli win a corner.",
"identified": "[PLAYER_dfIcigtg] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. [TEAM_] win a corner.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. [TEAM] win a corner.",
"visibility": "shown",
"position": "2326000"
},
{
"important": false,
"gameTime": "2 - 37:55",
"label": "corner",
"description": "The resulting corner from Faouzi Ghoulam (Napoli) is cleared.",
"identified": "The resulting corner from [PLAYER_x2eF9dok] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "2275000"
},
{
"important": false,
"gameTime": "2 - 37:07",
"label": "",
"description": "Albano Bizzarri hears the fans clapping his superb goalkeeping. Arkadiusz Milik (Napoli) shoots from the edge of the box towards the right side of the goal, but the goalkeeper makes a magnificent save. It will be a corner kick for Napoli.",
"identified": "[PLAYER_MTy3JBdg] hears the fans clapping his superb goalkeeping. [PLAYER_EskCwiLE] ([TEAM_]) shoots from the edge of the box towards the right side of the goal, but the goalkeeper makes a magnificent save. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] hears the fans clapping his superb goalkeeping. [PLAYER] ([TEAM]) shoots from the edge of the box towards the right side of the goal, but the goalkeeper makes a magnificent save. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "2227000"
},
{
"important": false,
"gameTime": "2 - 35:56",
"label": "",
"description": "Dries Mertens (Napoli) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"identified": "[PLAYER_dfIcigtg] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"visibility": "shown",
"position": "2156000"
},
{
"important": false,
"gameTime": "2 - 32:58",
"label": "corner",
"description": "Faouzi Ghoulam (Napoli) will try to find the head of one of his teammates from a corner kick.",
"identified": "[PLAYER_x2eF9dok] ([TEAM_]) will try to find the head of one of his teammates from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will try to find the head of one of his teammates from a corner kick.",
"visibility": "shown",
"position": "1978000"
},
{
"important": false,
"gameTime": "2 - 31:04",
"label": "",
"description": "Dries Mertens (Napoli) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. The ball is out of play and Napoli manage to earn a corner.",
"identified": "[PLAYER_dfIcigtg] ([TEAM_]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "1864000"
},
{
"important": true,
"gameTime": "2 - 28:12",
"label": "y-card",
"description": "Piero Giacomelli shows a yellow card to Norbert Gyomber (Pescara) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_IXRI6tlI] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "1692000"
},
{
"important": true,
"gameTime": "2 - 25:56",
"label": "substitution",
"description": "Here comes a substitution. Marek Hamsik (Napoli) is given a rest as he is replaced by .",
"identified": "Here comes a substitution. [PLAYER_AoWVYBUC] ([TEAM_]) is given a rest as he is replaced by .",
"anonymized": "Here comes a substitution. [PLAYER] ([TEAM]) is given a rest as he is replaced by .",
"visibility": "shown",
"position": "1556000"
},
{
"important": true,
"gameTime": "2 - 25:55",
"label": "substitution",
"description": "Problems for Massimo Oddo as Andrea Coda is not able to play anymore. His injury is too serious and Dario Zuparic (Pescara) replaces him.",
"identified": "Problems for [COACH_MoFoSxOK] as [PLAYER_drO6fdY4] is not able to play anymore. His injury is too serious and [PLAYER_8W0WzBQK] ([TEAM_]) replaces him.",
"anonymized": "Problems for [COACH] as [PLAYER] is not able to play anymore. His injury is too serious and [PLAYER] ([TEAM]) replaces him.",
"visibility": "shown",
"position": "1555000"
},
{
"important": false,
"gameTime": "2 - 25:11",
"label": "injury",
"description": "Looks like Andrea Coda (Pescara) is struggling after picking up a knock. Hopefully he can run it off.",
"identified": "Looks like [PLAYER_drO6fdY4] ([TEAM_]) is struggling after picking up a knock. Hopefully he can run it off.",
"anonymized": "Looks like [PLAYER] ([TEAM]) is struggling after picking up a knock. Hopefully he can run it off.",
"visibility": "shown",
"position": "1511000"
},
{
"important": false,
"gameTime": "2 - 21:25",
"label": "",
"description": "Napoli are showcasing great team work and neat passing moves.",
"identified": "[TEAM_] are showcasing great team work and neat passing moves.",
"anonymized": "[TEAM] are showcasing great team work and neat passing moves.",
"visibility": "shown",
"position": "1285000"
},
{
"important": true,
"gameTime": "2 - 18:24",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Rey Manaj (Pescara) comes onto the pitch for Ledian Memushaj.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_0SL07GW7] ([TEAM_]) comes onto the pitch for [PLAYER_URfA3Tur].",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) comes onto the pitch for [PLAYER].",
"visibility": "shown",
"position": "1104000"
},
{
"important": true,
"gameTime": "2 - 17:05",
"label": "soccer-ball",
"description": "Goal! It's a catastrophic error from the opponent which has gifted a chance to Dries Mertens (Napoli), who rolls the ball into the back of the net from close range. 2:2.",
"identified": "Goal! It's a catastrophic error from the opponent which has gifted a chance to [PLAYER_dfIcigtg] ([TEAM_]), who rolls the ball into the back of the net from close range. 2:2.",
"anonymized": "Goal! It's a catastrophic error from the opponent which has gifted a chance to [PLAYER] ([TEAM]), who rolls the ball into the back of the net from close range. 2:2.",
"visibility": "shown",
"position": "1025000"
},
{
"important": false,
"gameTime": "2 - 16:40",
"label": "",
"description": "The ball is cleared after Marek Hamsik (Napoli) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_AoWVYBUC] ([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": "1000000"
},
{
"important": true,
"gameTime": "2 - 14:50",
"label": "soccer-ball",
"description": "Goal - 2:1! Dries Mertens (Napoli) tries his luck from the edge of the box and scores with an accurate shot inside the right post. Mirko Valdifiori provided an assist for the goal.",
"identified": "Goal - 2:1! [PLAYER_dfIcigtg] ([TEAM_]) tries his luck from the edge of the box and scores with an accurate shot inside the right post. [PLAYER_dbEK1VwD] provided an assist for the goal.",
"anonymized": "Goal - 2:1! [PLAYER] ([TEAM]) tries his luck from the edge of the box and scores with an accurate shot inside the right post. [PLAYER] provided an assist for the goal.",
"visibility": "shown",
"position": "890000"
},
{
"important": false,
"gameTime": "2 - 10:52",
"label": "funfact",
"description": "9:22 \u2013 this is the total number of shots produced by both teams.",
"identified": "9:22 \u2013 this is the total number of shots produced by both teams.",
"anonymized": "9:22 \u2013 this is the total number of shots produced by both teams.",
"visibility": "shown",
"position": "652000"
},
{
"important": true,
"gameTime": "2 - 07:21",
"label": "substitution",
"description": "Maurizio Sarri decides to make a substitution. Manolo Gabbiadini will be replaced by Arkadiusz Milik (Napoli).",
"identified": "[COACH_pvzTXTMR] decides to make a substitution. [PLAYER_fwCMLZye] will be replaced by [PLAYER_EskCwiLE] ([TEAM_]).",
"anonymized": "[COACH] decides to make a substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "441000"
},
{
"important": true,
"gameTime": "2 - 07:13",
"label": "substitution",
"description": "Here comes a substitution. Dries Mertens (Napoli) is brought on as a substitute for Lorenzo Insigne.",
"identified": "Here comes a substitution. [PLAYER_dfIcigtg] ([TEAM_]) is brought on as a substitute for [PLAYER_QRxD5fN5].",
"anonymized": "Here comes a substitution. [PLAYER] ([TEAM]) is brought on as a substitute for [PLAYER].",
"visibility": "shown",
"position": "433000"
},
{
"important": false,
"gameTime": "2 - 07:12",
"label": "corner",
"description": "Faouzi Ghoulam (Napoli) steps up to take the corner, but the ball just sails in among the defenders.",
"identified": "[PLAYER_x2eF9dok] ([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": "432000"
},
{
"important": true,
"gameTime": "2 - 06:40",
"label": "y-card",
"description": "Albano Bizzarri (Pescara) kept talking out of turn to the referee until Piero Giacomelli lost patience and pulled out a yellow card.",
"identified": "[PLAYER_MTy3JBdg] ([TEAM_]) kept talking out of turn to the referee until [REFEREE] lost patience and pulled out a yellow card.",
"anonymized": "[PLAYER] ([TEAM]) kept talking out of turn to the referee until [REFEREE] lost patience and pulled out a yellow card.",
"visibility": "shown",
"position": "400000"
},
{
"important": false,
"gameTime": "2 - 05:52",
"label": "corner",
"description": "Jose Callejon (Napoli) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender. The ball goes out of play. Napoli are awarded a corner kick.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "352000"
},
{
"important": false,
"gameTime": "2 - 05:39",
"label": "",
"description": "Manolo Gabbiadini (Napoli) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. The ball goes out for a corner. Napoli can continue in their attacking effort.",
"identified": "[PLAYER_fwCMLZye] ([TEAM_]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) produces a quality cross into the box, but the opposition's defence intercepts the ball and spanks it away. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "339000"
},
{
"important": false,
"gameTime": "2 - 04:16",
"label": "corner",
"description": "Faouzi Ghoulam (Napoli) takes the corner which is cleared.",
"identified": "[PLAYER_x2eF9dok] ([TEAM_]) takes the corner which is cleared.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared.",
"visibility": "shown",
"position": "256000"
},
{
"important": false,
"gameTime": "2 - 04:03",
"label": "",
"description": "Jose Callejon (Napoli) serves up a nice cross, but the defence clears the danger. The referee signals a corner kick to Napoli.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) serves up a nice cross, but the defence clears the danger. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but the defence clears the danger. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "243000"
},
{
"important": true,
"gameTime": "2 - 01:51",
"label": "y-card",
"description": "The foul by Gaston Brugman (Pescara) is worthy of a card and a yellow is duly shown by Piero Giacomelli.",
"identified": "The foul by [PLAYER_l8BtS6uD] ([TEAM_]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"anonymized": "The foul by [PLAYER] ([TEAM]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"visibility": "shown",
"position": "111000"
},
{
"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 - 45:59",
"label": "",
"description": "There was plenty of entertainment during the first 45 minutes. Hopefully more of the same in the second half. The visitors were more active and dominated the home side in the first half, who weren't able to keep up. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"identified": "There was plenty of entertainment during the first 45 minutes. Hopefully more of the same in the second half. The visitors were more active and dominated the home side in the first half, who weren't able to keep up. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"anonymized": "There was plenty of entertainment during the first 45 minutes. Hopefully more of the same in the second half. The visitors were more active and dominated the home side in the first half, who weren't able to keep up. The home team tries to find the weakness in the opposition's defence, especially with rapid counter-attacks, while the away team play possession football.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:50",
"label": "whistle",
"description": "Piero Giacomelli has ended the first half by blowing the whistle.",
"identified": "[REFEREE] has ended the first half by blowing the whistle.",
"anonymized": "[REFEREE] has ended the first half by blowing the whistle.",
"visibility": "shown",
"position": "2750000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "There will be a minimum of 1 min. of added time.",
"identified": "There will be a minimum of 1 min. of added time.",
"anonymized": "There will be a minimum of 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 44:51",
"label": "",
"description": "What a wasted chance that was! A precise cross into the box finds Raul Albiol (Napoli), whose header goes wide of the goal.",
"identified": "What a wasted chance that was! A precise cross into the box finds [PLAYER_AkMslDtA] ([TEAM_]), whose header goes wide of the goal.",
"anonymized": "What a wasted chance that was! A precise cross into the box finds [PLAYER] ([TEAM]), whose header goes wide of the goal.",
"visibility": "shown",
"position": "2691000"
},
{
"important": false,
"gameTime": "1 - 44:39",
"label": "corner",
"description": "Faouzi Ghoulam (Napoli) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_x2eF9dok] ([TEAM_]) decides to speed play up with a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up with a short corner kick.",
"visibility": "shown",
"position": "2679000"
},
{
"important": false,
"gameTime": "1 - 44:06",
"label": "corner",
"description": "Faouzi Ghoulam (Napoli) takes the corner but it's cleared. Napoli will have a chance to score from a corner kick.",
"identified": "[PLAYER_x2eF9dok] ([TEAM_]) takes the corner but it's cleared. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but it's cleared. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "2646000"
},
{
"important": false,
"gameTime": "1 - 43:41",
"label": "",
"description": "Elseid Hysaj (Napoli) passes the ball into the box but an opposing player clears. Napoli force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_8z6PLSII] ([TEAM_]) passes the ball into the box but an opposing player clears. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) passes the ball into the box but an opposing player clears. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "2621000"
},
{
"important": false,
"gameTime": "1 - 41:31",
"label": "",
"description": "Kalidou Koulibaly (Napoli) is adjudged offside.",
"identified": "[PLAYER_hSKz7qT3] ([TEAM_]) is adjudged offside.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "2491000"
},
{
"important": false,
"gameTime": "1 - 41:03",
"label": "corner",
"description": "Jose Callejon (Napoli) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"identified": "[PLAYER_GtOw2z0j] ([TEAM_]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"visibility": "shown",
"position": "2463000"
},
{
"important": false,
"gameTime": "1 - 40:51",
"label": "",
"description": "A pass into the penalty area from Lorenzo Insigne (Napoli) is intercepted by the defence. The ball is out of play. A goal-scoring opportunity from a corner for Napoli.",
"identified": "A pass into the penalty area from [PLAYER_QRxD5fN5] ([TEAM_]) is intercepted by the defence. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "A pass into the penalty area from [PLAYER] ([TEAM]) is intercepted by the defence. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "2451000"
},
{
"important": false,
"gameTime": "1 - 40:11",
"label": "",
"description": "Lorenzo Insigne (Napoli) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball.",
"identified": "[PLAYER_QRxD5fN5] ([TEAM_]) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find one of his teammates inside the box with a chip pass, but one of the defending players reacts superbly and intercepts the ball.",
"visibility": "shown",
"position": "2411000"
},
{
"important": false,
"gameTime": "1 - 37:29",
"label": "",
"description": "Napoli keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"identified": "[TEAM_] keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"anonymized": "[TEAM] keep possession of the ball with some short passes, waiting for the moment to hit the opposition swiftly on the break.",
"visibility": "shown",
"position": "2249000"
},
{
"important": true,
"gameTime": "1 - 34:29",
"label": "soccer-ball",
"description": "Goal - 2:0! Francesco Zampano laid the ball off to Gianluca Caprari (Pescara), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"identified": "Goal - 2:0! [PLAYER_SAVw0168] laid the ball off to [PLAYER_hM9I17fh] ([TEAM_]), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"anonymized": "Goal - 2:0! [PLAYER] laid the ball off to [PLAYER] ([TEAM]), who slots it into the back of the net from close range, leaving the goalkeeper helpless.",
"visibility": "shown",
"position": "2069000"
},
{
"important": false,
"gameTime": "1 - 33:41",
"label": "corner",
"description": "Gianluca Caprari (Pescara) takes the corner with a short pass.",
"identified": "[PLAYER_hM9I17fh] ([TEAM_]) takes the corner with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner with a short pass.",
"visibility": "shown",
"position": "2021000"
},
{
"important": false,
"gameTime": "1 - 33:16",
"label": "",
"description": "Francesco Zampano (Pescara) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net. Now Pescara have a corner.",
"identified": "[PLAYER_SAVw0168] ([TEAM_]) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net. Now [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) produces an inaccurate low pass into the box that is blocked by the one of the defenders. If this pass had slipped through, the ball would have probably ended up in the back of the net. Now [TEAM] have a corner.",
"visibility": "shown",
"position": "1996000"
},
{
"important": false,
"gameTime": "1 - 32:21",
"label": "corner",
"description": "Nothing comes of the resulting corner from Gianluca Caprari (Pescara). The defence is alert and manages to cut it out.",
"identified": "Nothing comes of the resulting corner from [PLAYER_hM9I17fh] ([TEAM_]). The defence is alert and manages to cut it out.",
"anonymized": "Nothing comes of the resulting corner from [PLAYER] ([TEAM]). The defence is alert and manages to cut it out.",
"visibility": "shown",
"position": "1941000"
},
{
"important": false,
"gameTime": "1 - 32:05",
"label": "",
"description": "Bryan Cristante (Pescara) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The ball is out of play. Pescara will have a chance to score from a corner.",
"identified": "[PLAYER_t6u0o3h7] ([TEAM_]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) dinks a cross into the box in an attempt to find one of his teammates, but the defence manages to clear. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "1925000"
},
{
"important": true,
"gameTime": "1 - 30:51",
"label": "",
"description": "Close! Faouzi Ghoulam (Napoli) stands over the resulting free kick from around 30 metres out and his shot goes just wide of the right post!",
"identified": "Close! [PLAYER_x2eF9dok] ([TEAM_]) stands over the resulting free kick from around 30 metres out and his shot goes just wide of the right post!",
"anonymized": "Close! [PLAYER] ([TEAM]) stands over the resulting free kick from around 30 metres out and his shot goes just wide of the right post!",
"visibility": "shown",
"position": "1851000"
},
{
"important": false,
"gameTime": "1 - 29:56",
"label": "",
"description": "Gaston Brugman (Pescara) makes a rough challenge and the referee blows for a foul. Napoli earn a free kick.",
"identified": "[PLAYER_l8BtS6uD] ([TEAM_]) makes a rough challenge and the referee blows for a foul. [TEAM_] earn a free kick.",
"anonymized": "[PLAYER] ([TEAM]) makes a rough challenge and the referee blows for a foul. [TEAM] earn a free kick.",
"visibility": "shown",
"position": "1796000"
},
{
"important": true,
"gameTime": "1 - 28:39",
"label": "y-card",
"description": "A yellow card for a tackle by Raul Albiol (Napoli). Piero Giacomelli doesn't hesitate at all to make this decision.",
"identified": "A yellow card for a tackle by [PLAYER_AkMslDtA] ([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": "1719000"
},
{
"important": false,
"gameTime": "1 - 26:40",
"label": "",
"description": "The defence had a hard time blocking out the strike from Valerio Verre (Pescara). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate.",
"identified": "The defence had a hard time blocking out the strike from [PLAYER_EPCv63wE] ([TEAM_]). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate.",
"anonymized": "The defence had a hard time blocking out the strike from [PLAYER] ([TEAM]). He didn't hesitate and finished from outside the box right after he had received a pass from his teammate.",
"visibility": "shown",
"position": "1600000"
},
{
"important": true,
"gameTime": "1 - 23:38",
"label": "",
"description": "What a long-range shot by Mirko Valdifiori (Napoli). Unfortunately for him, his shot goes just a few inches over the bar.",
"identified": "What a long-range shot by [PLAYER_dbEK1VwD] ([TEAM_]). Unfortunately for him, his shot goes just a few inches over the bar.",
"anonymized": "What a long-range shot by [PLAYER] ([TEAM]). Unfortunately for him, his shot goes just a few inches over the bar.",
"visibility": "shown",
"position": "1418000"
},
{
"important": false,
"gameTime": "1 - 22:36",
"label": "",
"description": "Allan (Napoli) commits a rough challenge and Piero Giacomelli blows his whistle for an infringement.",
"identified": "[PLAYER_hnFBS5hK] ([TEAM_]) commits a rough challenge and [REFEREE] blows his whistle for an infringement.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough challenge and [REFEREE] blows his whistle for an infringement.",
"visibility": "shown",
"position": "1356000"
},
{
"important": false,
"gameTime": "1 - 21:01",
"label": "",
"description": "Lorenzo Insigne (Napoli) meets a cross inside the box, but Albano Bizzarri wins the battle for the ball and the chance is gone.",
"identified": "[PLAYER_QRxD5fN5] ([TEAM_]) meets a cross inside the box, but [PLAYER_MTy3JBdg] wins the battle for the ball and the chance is gone.",
"anonymized": "[PLAYER] ([TEAM]) meets a cross inside the box, but [PLAYER] wins the battle for the ball and the chance is gone.",
"visibility": "shown",
"position": "1261000"
},
{
"important": false,
"gameTime": "1 - 19:26",
"label": "",
"description": "Allan (Napoli) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"identified": "[PLAYER_hnFBS5hK] ([TEAM_]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) receives a good pass just outside the box, unleashes a strike from a promising position, but the shot is blocked by the defender.",
"visibility": "shown",
"position": "1166000"
},
{
"important": false,
"gameTime": "1 - 18:54",
"label": "",
"description": "The linesman signals that Gianluca Caprari (Pescara) is offside and the referee confirms the decision.",
"identified": "The linesman signals that [PLAYER_hM9I17fh] ([TEAM_]) is offside and the referee confirms the decision.",
"anonymized": "The linesman signals that [PLAYER] ([TEAM]) is offside and the referee confirms the decision.",
"visibility": "shown",
"position": "1134000"
},
{
"important": false,
"gameTime": "1 - 16:00",
"label": "",
"description": "This shall not pass! Gianluca Caprari (Pescara) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"identified": "This shall not pass! [PLAYER_hM9I17fh] ([TEAM_]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"anonymized": "This shall not pass! [PLAYER] ([TEAM]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"visibility": "shown",
"position": "960000"
},
{
"important": false,
"gameTime": "1 - 13:08",
"label": "",
"description": "Jose Callejon (Napoli) 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_GtOw2z0j] ([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": "788000"
},
{
"important": true,
"gameTime": "1 - 11:55",
"label": "",
"description": "That was close by Lorenzo Insigne (Napoli)! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the left post.",
"identified": "That was close by [PLAYER_QRxD5fN5] ([TEAM_])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the left post.",
"anonymized": "That was close by [PLAYER] ([TEAM])! He receives a pass on the edge of the box and shoots, but the ball goes inches wide of the left post.",
"visibility": "shown",
"position": "715000"
},
{
"important": false,
"gameTime": "1 - 10:19",
"label": "corner",
"description": "Gianluca Caprari (Pescara) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"identified": "[PLAYER_hM9I17fh] ([TEAM_]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"anonymized": "[PLAYER] ([TEAM]) lifts the ball into the box from the corner, but one of the defending players gets there first to head it clear.",
"visibility": "shown",
"position": "619000"
},
{
"important": false,
"gameTime": "1 - 10:07",
"label": "",
"description": "Ahmad Benali (Pescara) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance. Pescara get a corner.",
"identified": "[PLAYER_Gl31cksa] ([TEAM_]) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but the opposition's defence is alert to the danger and makes a clearance. [TEAM] get a corner.",
"visibility": "shown",
"position": "607000"
}
]
} |