File size: 69,052 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 |
{
"timestamp": "1442429100",
"score": "1 - 1",
"round": "1",
"teams": [
"AS Roma",
"Barcelona"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"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": [],
"lineup": 7,
"starting": true,
"long_name": "Daniele De Rossi"
},
{
"hash": "v9Ux4sua",
"name": "Digne L.",
"captain": "",
"detail_link": "/player/digne-lucas/v9Ux4sua/",
"short_name": "Digne",
"shirt_number": "3",
"country": "France",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Lucas Digne"
},
{
"hash": "zilGmgZq",
"name": "Dzeko E.",
"captain": "",
"detail_link": "/player/dzeko-edin/zilGmgZq/",
"short_name": "Dzeko",
"shirt_number": "9",
"country": "Bosnia and Herzegovina",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Edin Dzeko"
},
{
"hash": "U9NSHM06",
"name": "Falque I.",
"captain": "",
"detail_link": "/player/falque-iago/U9NSHM06/",
"short_name": "Falque",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "81'",
"description": "Iturbe J.",
"linked_player_hash": "pOAihUR6"
}
],
"lineup": 9,
"starting": true,
"long_name": "Iago Falque"
},
{
"hash": "8UwHPuvH",
"name": "Florenzi A.",
"captain": "",
"detail_link": "/player/florenzi-alessandro/8UwHPuvH/",
"short_name": "Florenzi",
"shirt_number": "24",
"country": "Italy",
"facts": [
{
"type": "3",
"time": "31' Florenzi A.",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "85'",
"description": "Torosidis V.",
"linked_player_hash": "xl45Dxcf"
}
],
"lineup": 2,
"starting": true,
"long_name": "Alessandro Florenzi"
},
{
"hash": "plbWyGsb",
"name": "Keita S.",
"captain": "",
"detail_link": "/player/keita-seydou/plbWyGsb/",
"short_name": "Keita",
"shirt_number": "20",
"country": "Mali",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Seydou Keita"
},
{
"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": "1",
"time": "63' Nainggolan R. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Radja Nainggolan"
},
{
"hash": "rZHXvTho",
"name": "Rudiger A.",
"captain": "",
"detail_link": "/player/rudiger-antonio/rZHXvTho/",
"short_name": "Rudiger",
"shirt_number": "2",
"country": "Germany",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Antonio Rudiger"
},
{
"hash": "08FBycgB",
"name": "Salah M.",
"captain": "",
"detail_link": "/player/salah-mohamed/08FBycgB/",
"short_name": "Salah",
"shirt_number": "11",
"country": "Egypt",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Mohamed Salah"
},
{
"hash": "6NtwHZ7F",
"name": "Szczesny W.",
"captain": "",
"detail_link": "/player/szczesny-wojciech/6NtwHZ7F/",
"short_name": "Szczesny",
"shirt_number": "25",
"country": "Poland",
"facts": [
{
"type": "6",
"time": "50'",
"description": "De Sanctis M.",
"linked_player_hash": "rX7yKfcH"
}
],
"lineup": 1,
"starting": true,
"long_name": "Wojciech Szczesny"
},
{
"hash": "rX7yKfcH",
"name": "De Sanctis M.",
"captain": "",
"detail_link": "/player/de-sanctis-morgan/rX7yKfcH/",
"short_name": "De Sanctis",
"shirt_number": "26",
"country": "Italy",
"facts": [
{
"type": "7",
"time": "50'",
"description": "Szczesny W.",
"linked_player_hash": "6NtwHZ7F"
}
],
"lineup": null,
"starting": false,
"long_name": "Morgan De Sanctis"
},
{
"hash": "d4iVZvEP",
"name": "Gervinho",
"captain": "",
"detail_link": "/player/gervinho/d4iVZvEP/",
"short_name": "Gervinho",
"shirt_number": "27",
"country": "Ivory Coast",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Gervinho"
},
{
"hash": "pOAihUR6",
"name": "Iturbe J.",
"captain": "",
"detail_link": "/player/iturbe-juan/pOAihUR6/",
"short_name": "Iturbe",
"shirt_number": "7",
"country": "Paraguay",
"facts": [
{
"type": "7",
"time": "81'",
"description": "Falque I.",
"linked_player_hash": "U9NSHM06"
}
],
"lineup": null,
"starting": false,
"long_name": "Juan Iturbe"
},
{
"hash": "GxMRcf1E",
"name": "Maicon",
"captain": "",
"detail_link": "/player/maicon/GxMRcf1E/",
"short_name": "Maicon",
"shirt_number": "13",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Maicon"
},
{
"hash": "xl45Dxcf",
"name": "Torosidis V.",
"captain": "",
"detail_link": "/player/torosidis-vassilios/xl45Dxcf/",
"short_name": "Torosidis",
"shirt_number": "35",
"country": "Greece",
"facts": [
{
"type": "7",
"time": "85'",
"description": "Florenzi A.",
"linked_player_hash": "8UwHPuvH"
}
],
"lineup": null,
"starting": false,
"long_name": "Vassilios Torosidis"
},
{
"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"
},
{
"hash": "j3SKJvk3",
"name": "Vainqueur W.",
"captain": "",
"detail_link": "/player/vainqueur-william/j3SKJvk3/",
"short_name": "Vainqueur",
"shirt_number": "21",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "William Vainqueur"
}
],
"coach": [
{
"hash": "bHMAdJc7",
"name": "Garcia R.",
"captain": "",
"detail_link": "/player/garcia-rudi/bHMAdJc7/",
"short_name": "Garcia R.",
"shirt_number": "",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rudi Garcia"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "42SIX9sl",
"name": "Alba J.",
"captain": "",
"detail_link": "/player/alba-jordi/42SIX9sl/",
"short_name": "Alba",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Jordi Alba"
},
{
"hash": "CU4pL3ue",
"name": "Busquets S.",
"captain": "",
"detail_link": "/player/busquets-sergio/CU4pL3ue/",
"short_name": "Busquets",
"shirt_number": "5",
"country": "Spain",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Sergio Busquets"
},
{
"hash": "E7AksdFj",
"name": "Iniesta A.",
"captain": "(C)",
"detail_link": "/player/iniesta-andres/E7AksdFj/",
"short_name": "Iniesta",
"shirt_number": "8",
"country": "Spain",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Andres Iniesta"
},
{
"hash": "rmIQaghb",
"name": "Mathieu J.",
"captain": "",
"detail_link": "/player/mathieu-jeremy/rmIQaghb/",
"short_name": "Mathieu",
"shirt_number": "24",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Jeremy Mathieu"
},
{
"hash": "vgOOdZbd",
"name": "Messi L.",
"captain": "",
"detail_link": "/player/messi-lionel/vgOOdZbd/",
"short_name": "Messi",
"shirt_number": "10",
"country": "Argentina",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Lionel Messi"
},
{
"hash": "jNOPwl3h",
"name": "Neymar",
"captain": "",
"detail_link": "/player/neymar/jNOPwl3h/",
"short_name": "Neymar",
"shirt_number": "11",
"country": "Brazil",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Neymar"
},
{
"hash": "fRBrHCRh",
"name": "Pique G.",
"captain": "",
"detail_link": "/player/pique-gerard/fRBrHCRh/",
"short_name": "Pique",
"shirt_number": "3",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "75' Pique G. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Gerard Pique"
},
{
"hash": "pC6dfyG5",
"name": "Rakitic I.",
"captain": "",
"detail_link": "/player/rakitic-ivan/pC6dfyG5/",
"short_name": "Rakitic",
"shirt_number": "4",
"country": "Croatia",
"facts": [
{
"type": "8",
"time": "21' Suarez L. (Rakitic I.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "61'",
"description": "Rafinha",
"linked_player_hash": "8jE1xUrf"
}
],
"lineup": 6,
"starting": true,
"long_name": "Ivan Rakitic"
},
{
"hash": "W2R804U4",
"name": "Roberto S.",
"captain": "",
"detail_link": "/player/roberto-sergi/W2R804U4/",
"short_name": "Roberto",
"shirt_number": "20",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Sergi Roberto"
},
{
"hash": "dUShzrBp",
"name": "Suarez L.",
"captain": "",
"detail_link": "/player/suarez-luis/dUShzrBp/",
"short_name": "Suarez",
"shirt_number": "9",
"country": "Uruguay",
"facts": [
{
"type": "3",
"time": "21' Suarez L. (Rakitic I.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Luis Suarez"
},
{
"hash": "byxc46yl",
"name": "ter Stegen M.",
"captain": "",
"detail_link": "/player/ter-stegen-marc-andre/byxc46yl/",
"short_name": "ter Stegen",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Marc-Andre ter Stegen"
},
{
"hash": "Eur1zaTu",
"name": "Adriano",
"captain": "",
"detail_link": "/player/adriano/Eur1zaTu/",
"short_name": "Adriano",
"shirt_number": "21",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Adriano"
},
{
"hash": "8K4WA9Gh",
"name": "Bartra M.",
"captain": "",
"detail_link": "/player/bartra-marc/8K4WA9Gh/",
"short_name": "Bartra",
"shirt_number": "15",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marc Bartra"
},
{
"hash": "ns2Bmt54",
"name": "Mascherano J.",
"captain": "",
"detail_link": "/player/mascherano-javier/ns2Bmt54/",
"short_name": "Mascherano",
"shirt_number": "14",
"country": "Argentina",
"facts": [
{
"type": "7",
"time": "65'",
"description": "Rafinha",
"linked_player_hash": "8jE1xUrf"
}
],
"lineup": null,
"starting": false,
"long_name": "Javier Mascherano"
},
{
"hash": "hA4JL8bD",
"name": "Masip J.",
"captain": "",
"detail_link": "/player/masip-jordi/hA4JL8bD/",
"short_name": "Masip",
"shirt_number": "25",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jordi Masip"
},
{
"hash": "CKYnnUEo",
"name": "Munir El Haddadi",
"captain": "",
"detail_link": "/player/munir-el-haddadi/CKYnnUEo/",
"short_name": "Munir El Haddadi",
"shirt_number": "17",
"country": "Morocco",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Munir El Haddadi"
},
{
"hash": "8jE1xUrf",
"name": "Rafinha",
"captain": "",
"detail_link": "/player/rafinha/8jE1xUrf/",
"short_name": "Rafinha",
"shirt_number": "12",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "61'",
"description": "Rakitic I.",
"linked_player_hash": "pC6dfyG5"
},
{
"type": "6",
"time": "65'",
"description": "Mascherano J.",
"linked_player_hash": "ns2Bmt54"
}
],
"lineup": null,
"starting": false,
"long_name": "Rafinha"
},
{
"hash": "fapXP9VS",
"name": "Ramirez S.",
"captain": "",
"detail_link": "/player/ramirez-sandro/fapXP9VS/",
"short_name": "Ramirez",
"shirt_number": "19",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sandro Ramirez"
}
],
"coach": [
{
"hash": "8MdrBIUb",
"name": "Enrique L.",
"captain": "",
"detail_link": "/player/enrique-luis/8MdrBIUb/",
"short_name": "Enrique L.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luis Enrique"
}
]
}
},
"referee": [
"Kuipers B."
],
"venue": [
"Stadio Olimpico (Rome)"
],
"attendance": [
"57 836"
],
"referee_matched": [
"Bjorn Kuipers"
],
"referee_found": [
"Bjorn Kuipers"
],
"coach_matched": [
"Rudi Garcia",
"Luis Enrique"
],
"gameHomeTeam": "AS Roma",
"home": {
"name": "AS Roma",
"detail_link": "/team/as-roma/zVqqL0ma",
"hash": "zVqqL0ma",
"names": [
"AS Roma",
"AS Roma (Ita)",
"as roma"
]
},
"gameAwayTeam": "Barcelona",
"away": {
"name": "Barcelona",
"detail_link": "/team/barcelona/SKbpVP5K",
"hash": "SKbpVP5K",
"names": [
"Barcelona",
"barcelona"
]
},
"gameDate": "16/09/2015 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. You have to say that the visitors have been the better side. The home team's main weapon was fast counter-attacks, while the away side attempted to hold onto the ball for as long as possible.",
"identified": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. You have to say that the visitors have been the better side. The home team's main weapon was fast counter-attacks, while the away side attempted to hold onto the ball for as long as possible.",
"anonymized": "All in all that was an entertaining 90 minutes of football thanks to some decent attacking play. You have to say that the visitors have been the better side. The home team's main weapon was fast counter-attacks, while the away side attempted to hold onto the ball for as long as possible.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:49",
"label": "whistle",
"description": "There will be no more action in this match as the referee signals full time.",
"identified": "There will be no more action in this match as the referee signals full time.",
"anonymized": "There will be no more action in this match as the referee signals full time.",
"visibility": "shown",
"position": "2989000"
},
{
"important": true,
"gameTime": "2 - 49:46",
"label": "",
"description": "Sergi Roberto (Barcelona) sends a rebound goalwards towards the left-hand post, but the goalkeeper stretches to stop it.",
"identified": "[PLAYER_W2R804U4] ([TEAM_]) sends a rebound goalwards towards the left-hand post, but the goalkeeper stretches to stop it.",
"anonymized": "[PLAYER] ([TEAM]) sends a rebound goalwards towards the left-hand post, but the goalkeeper stretches to stop it.",
"visibility": "shown",
"position": "2986000"
},
{
"important": false,
"gameTime": "2 - 49:45",
"label": "corner",
"description": "The corner from Neymar (Barcelona) is intercepted by Morgan De Sanctis.",
"identified": "The corner from [PLAYER_jNOPwl3h] ([TEAM_]) is intercepted by [PLAYER_rX7yKfcH].",
"anonymized": "The corner from [PLAYER] ([TEAM]) is intercepted by [PLAYER].",
"visibility": "shown",
"position": "2985000"
},
{
"important": true,
"gameTime": "2 - 49:15",
"label": "",
"description": "Jordi Alba (Barcelona) 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. Good work from Barcelona as they win a corner.",
"identified": "[PLAYER_42SIX9sl] ([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. Good work from [TEAM_] as they win a corner.",
"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. Good work from [TEAM] as they win a corner.",
"visibility": "shown",
"position": "2955000"
},
{
"important": false,
"gameTime": "2 - 48:23",
"label": "corner",
"description": "Morgan De Sanctis comes off his line to intercept the corner from Neymar (Barcelona).",
"identified": "[PLAYER_rX7yKfcH] comes off his line to intercept the corner from [PLAYER_jNOPwl3h] ([TEAM_]).",
"anonymized": "[PLAYER] comes off his line to intercept the corner from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2903000"
},
{
"important": false,
"gameTime": "2 - 47:52",
"label": "",
"description": "Gerard Pique (Barcelona) meets a cross inside the box, but his header is blocked by an opposing player. The ball is out of play and the linesman points at the corner flag. Corner to Barcelona.",
"identified": "[PLAYER_fRBrHCRh] ([TEAM_]) meets a cross inside the box, but his header is blocked by an opposing player. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) meets a cross inside the box, but his header is blocked by an opposing player. The ball is out of play and the linesman points at the corner flag. Corner to [TEAM].",
"visibility": "shown",
"position": "2872000"
},
{
"important": false,
"gameTime": "2 - 47:06",
"label": "corner",
"description": "Neymar (Barcelona) takes a short corner kick.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) takes a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a short corner kick.",
"visibility": "shown",
"position": "2826000"
},
{
"important": false,
"gameTime": "2 - 46:49",
"label": "",
"description": "Wow, what an escape. Neymar (Barcelona) has an effort from inside the box but it's brilliantly blocked. The referee and his assistant both point at the corner flag. Barcelona will have an opportunity to threaten the opposition's goal.",
"identified": "Wow, what an escape. [PLAYER_jNOPwl3h] ([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": "2809000"
},
{
"important": false,
"gameTime": "2 - 45:24",
"label": "",
"description": "The referee blows his whistle, a clear handball by Luis Suarez (Barcelona).",
"identified": "The referee blows his whistle, a clear handball by [PLAYER_dUShzrBp] ([TEAM_]).",
"anonymized": "The referee blows his whistle, a clear handball by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2724000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "Fourth official shows 5 min. of added time.",
"identified": "Fourth official shows 5 min. of added time.",
"anonymized": "Fourth official shows 5 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 42:44",
"label": "",
"description": "Edin Dzeko (AS Roma) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the middle of the target, but Marc-Andre ter Stegen was alert and the score remains the same.",
"identified": "[PLAYER_zilGmgZq] ([TEAM_]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the middle of the target, but [PLAYER_byxc46yl] was alert and the score remains the same.",
"anonymized": "[PLAYER] ([TEAM]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the middle of the target, but [PLAYER] was alert and the score remains the same.",
"visibility": "shown",
"position": "2564000"
},
{
"important": false,
"gameTime": "2 - 40:51",
"label": "",
"description": "Mohamed Salah (AS Roma) is offside and the linesman raises his flag.",
"identified": "[PLAYER_08FBycgB] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "2451000"
},
{
"important": true,
"gameTime": "2 - 39:43",
"label": "substitution",
"description": "Here is a change. Alessandro Florenzi is going off and Rudi Garcia gives the last tactical orders to Vassilios Torosidis (AS Roma).",
"identified": "Here is a change. [PLAYER_8UwHPuvH] is going off and [COACH_bHMAdJc7] gives the last tactical orders to [PLAYER_xl45Dxcf] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2383000"
},
{
"important": false,
"gameTime": "2 - 37:50",
"label": "",
"description": "Lionel Messi (Barcelona) connects with a pass but sees his shot from the edge of the box blocked.",
"identified": "[PLAYER_vgOOdZbd] ([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": "2270000"
},
{
"important": true,
"gameTime": "2 - 35:51",
"label": "substitution",
"description": "Substitution. Iago Falque is replaced by Juan Iturbe (AS Roma).",
"identified": "Substitution. [PLAYER_U9NSHM06] is replaced by [PLAYER_pOAihUR6] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2151000"
},
{
"important": false,
"gameTime": "2 - 35:09",
"label": "corner",
"description": "Neymar (Barcelona) swings in the corner, but the goalkeeper does a brilliant job to intercept the effort.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) swings in the corner, but the goalkeeper does a brilliant job to intercept the effort.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but the goalkeeper does a brilliant job to intercept the effort.",
"visibility": "shown",
"position": "2109000"
},
{
"important": true,
"gameTime": "2 - 34:51",
"label": "",
"description": "Morgan De Sanctis was forced into action to thwart Andres Iniesta (Barcelona). He found himself some space after picking up a pass and unleashed a shot to the left post but couldn't beat the keeper. The referee and one of his assistants signal for a corner kick to Barcelona.",
"identified": "[PLAYER_rX7yKfcH] was forced into action to thwart [PLAYER_E7AksdFj] ([TEAM_]). He found himself some space after picking up a pass and unleashed a shot to the left post but couldn't beat the keeper. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] was forced into action to thwart [PLAYER] ([TEAM]). He found himself some space after picking up a pass and unleashed a shot to the left post but couldn't beat the keeper. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "2091000"
},
{
"important": false,
"gameTime": "2 - 33:00",
"label": "",
"description": "Marc-Andre ter Stegen doesn't have to worry about this one. Edin Dzeko plays a pass into the feet of Iago Falque (AS Roma), who is unable to find the target as his effort from inside the box goes high over the bar.",
"identified": "[PLAYER_byxc46yl] doesn't have to worry about this one. [PLAYER_zilGmgZq] plays a pass into the feet of [PLAYER_U9NSHM06] ([TEAM_]), who is unable to find the target as his effort from inside the box goes high over the bar.",
"anonymized": "[PLAYER] doesn't have to worry about this one. [PLAYER] plays a pass into the feet of [PLAYER] ([TEAM]), who is unable to find the target as his effort from inside the box goes high over the bar.",
"visibility": "shown",
"position": "1980000"
},
{
"important": true,
"gameTime": "2 - 32:20",
"label": "",
"description": "OFF THE WOODWORK! Lionel Messi (Barcelona) picks up the ball inside the box and produces a snap shot that smashes against the crossbar!",
"identified": "OFF THE WOODWORK! [PLAYER_vgOOdZbd] ([TEAM_]) picks up the ball inside the box and produces a snap shot that smashes against the crossbar!",
"anonymized": "OFF THE WOODWORK! [PLAYER] ([TEAM]) picks up the ball inside the box and produces a snap shot that smashes against the crossbar!",
"visibility": "shown",
"position": "1940000"
},
{
"important": false,
"gameTime": "2 - 32:03",
"label": "",
"description": "Lionel Messi (Barcelona) plays an extraordinary diagonal pass and Neymar darts into free space to control the ball.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) plays an extraordinary diagonal pass and [PLAYER_jNOPwl3h] darts into free space to control the ball.",
"anonymized": "[PLAYER] ([TEAM]) plays an extraordinary diagonal pass and [PLAYER] darts into free space to control the ball.",
"visibility": "shown",
"position": "1923000"
},
{
"important": false,
"gameTime": "2 - 31:42",
"label": "corner",
"description": "Lionel Messi (Barcelona) is about to take a corner kick.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) is about to take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) is about to take a corner kick.",
"visibility": "shown",
"position": "1902000"
},
{
"important": false,
"gameTime": "2 - 31:22",
"label": "",
"description": "Neymar (Barcelona) collects a brilliant pass inside the box and finds himself in a goal scoring opportunity. He takes a shot, but the effort is well blocked by one of the defending players. Barcelona force their opponents to concede a corner.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) collects a brilliant pass inside the box and finds himself in a goal scoring opportunity. He takes a shot, but the effort is well blocked by one of the defending players. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) collects a brilliant pass inside the box and finds himself in a goal scoring opportunity. He takes a shot, but the effort is well blocked by one of the defending players. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "1882000"
},
{
"important": false,
"gameTime": "2 - 30:34",
"label": "",
"description": "Alessandro Florenzi (AS Roma) strikes from the edge of the box, but hits it really poorly and sends the ball way over the bar.",
"identified": "[PLAYER_8UwHPuvH] ([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": "1834000"
},
{
"important": true,
"gameTime": "2 - 29:42",
"label": "y-card",
"description": "A yellow card for a tackle by Gerard Pique (Barcelona). Bjorn Kuipers doesn't hesitate at all to make this decision.",
"identified": "A yellow card for a tackle by [PLAYER_fRBrHCRh] ([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": "1782000"
},
{
"important": false,
"gameTime": "2 - 26:51",
"label": "",
"description": "Lionel Messi (Barcelona) plays a through ball but overhits it.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) plays a through ball but overhits it.",
"anonymized": "[PLAYER] ([TEAM]) plays a through ball but overhits it.",
"visibility": "shown",
"position": "1611000"
},
{
"important": false,
"gameTime": "2 - 24:42",
"label": "",
"description": "Lucas Digne (AS Roma) is forced to stop his attacking move after the linesman signals for offside.",
"identified": "[PLAYER_v9Ux4sua] ([TEAM_]) is forced to stop his attacking move after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) is forced to stop his attacking move after the linesman signals for offside.",
"visibility": "shown",
"position": "1482000"
},
{
"important": false,
"gameTime": "2 - 21:15",
"label": "",
"description": "Lionel Messi (Barcelona) fails to find a teammate across the pitch with a long ball.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) fails to find a teammate across the pitch with a long ball.",
"anonymized": "[PLAYER] ([TEAM]) fails to find a teammate across the pitch with a long ball.",
"visibility": "shown",
"position": "1275000"
},
{
"important": true,
"gameTime": "2 - 19:52",
"label": "substitution",
"description": "Rafinha is substituted due to injury. Luis Enrique gives a chance to Javier Mascherano (Barcelona).",
"identified": "[PLAYER_8jE1xUrf] is substituted due to injury. [COACH_8MdrBIUb] gives a chance to [PLAYER_ns2Bmt54] ([TEAM_]).",
"anonymized": "[PLAYER] is substituted due to injury. [COACH] gives a chance to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1192000"
},
{
"important": false,
"gameTime": "2 - 17:56",
"label": "injury",
"description": "Rafinha (Barcelona) is having a really tough time right now. We are about to find out how serious his injury is.",
"identified": "[PLAYER_8jE1xUrf] ([TEAM_]) is having a really tough time right now. We are about to find out how serious his injury is.",
"anonymized": "[PLAYER] ([TEAM]) is having a really tough time right now. We are about to find out how serious his injury is.",
"visibility": "shown",
"position": "1076000"
},
{
"important": true,
"gameTime": "2 - 17:02",
"label": "y-card",
"description": "Bjorn Kuipers shows the yellow card to Radja Nainggolan (AS Roma) for a heavy challenge.",
"identified": "[REFEREE] shows the yellow card to [PLAYER_lUGgC8jg] ([TEAM_]) for a heavy challenge.",
"anonymized": "[REFEREE] shows the yellow card to [PLAYER] ([TEAM]) for a heavy challenge.",
"visibility": "shown",
"position": "1022000"
},
{
"important": true,
"gameTime": "2 - 15:47",
"label": "substitution",
"description": "Substitution. Rafinha (Barcelona) on for Ivan Rakitic.",
"identified": "Substitution. [PLAYER_8jE1xUrf] ([TEAM_]) on for [PLAYER_pC6dfyG5].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) on for [PLAYER].",
"visibility": "shown",
"position": "947000"
},
{
"important": false,
"gameTime": "2 - 12:33",
"label": "",
"description": "Luis Suarez (Barcelona) 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.",
"identified": "[PLAYER_dUShzrBp] ([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.",
"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.",
"visibility": "shown",
"position": "753000"
},
{
"important": false,
"gameTime": "2 - 11:49",
"label": "",
"description": "Lionel Messi (Barcelona) sends a long ball in, but Morgan De Sanctis comfortably gathers the ball.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) sends a long ball in, but [PLAYER_rX7yKfcH] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "709000"
},
{
"important": false,
"gameTime": "2 - 08:53",
"label": "corner",
"description": "Ivan Rakitic (Barcelona) quickly takes the corner kick with a short pass.",
"identified": "[PLAYER_pC6dfyG5] ([TEAM_]) quickly takes the corner kick with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) quickly takes the corner kick with a short pass.",
"visibility": "shown",
"position": "533000"
},
{
"important": false,
"gameTime": "2 - 08:36",
"label": "",
"description": "Neymar (Barcelona) has a shot blocked from inside the box. The ball goes out of play. Barcelona are awarded a corner kick.",
"identified": "[PLAYER_jNOPwl3h] ([TEAM_]) has a shot blocked from inside the box. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) has a shot blocked from inside the box. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "516000"
},
{
"important": false,
"gameTime": "2 - 08:05",
"label": "",
"description": "The flag goes up and the referee blows his whistle - another offside by Luis Suarez (Barcelona), who has already been caught several times today.",
"identified": "The flag goes up and the referee blows his whistle - another offside by [PLAYER_dUShzrBp] ([TEAM_]), who has already been caught several times today.",
"anonymized": "The flag goes up and the referee blows his whistle - another offside by [PLAYER] ([TEAM]), who has already been caught several times today.",
"visibility": "shown",
"position": "485000"
},
{
"important": false,
"gameTime": "2 - 06:55",
"label": "",
"description": "Some great controlled play and passing from Barcelona. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"identified": "Some great controlled play and passing from [TEAM_]. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"anonymized": "Some great controlled play and passing from [TEAM]. They are increasing their possession of the ball and trying to open up the opposition's defence to hit them swiftly on the break.",
"visibility": "shown",
"position": "415000"
},
{
"important": true,
"gameTime": "2 - 04:32",
"label": "substitution",
"description": "Wojciech Szczesny is being substituted because of an injury. Rudi Garcia sends Morgan De Sanctis (AS Roma) on the pitch.",
"identified": "[PLAYER_6NtwHZ7F] is being substituted because of an injury. [COACH_bHMAdJc7] sends [PLAYER_rX7yKfcH] ([TEAM_]) on the pitch.",
"anonymized": "[PLAYER] is being substituted because of an injury. [COACH] sends [PLAYER] ([TEAM]) on the pitch.",
"visibility": "shown",
"position": "272000"
},
{
"important": false,
"gameTime": "2 - 02:47",
"label": "injury",
"description": "Looks like Wojciech Szczesny (AS Roma) is struggling after picking up a knock. Hopefully he can run it off.",
"identified": "Looks like [PLAYER_6NtwHZ7F] ([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": "167000"
},
{
"important": true,
"gameTime": "2 - 02:23",
"label": "",
"description": "Lionel Messi (Barcelona) darts into the penalty area to latch on to a pass, and he unleashes a shot in the direction of the right post. Morgan De Sanctis is alert and denies him with a nice save.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) darts into the penalty area to latch on to a pass, and he unleashes a shot in the direction of the right post. [PLAYER_rX7yKfcH] is alert and denies him with a nice save.",
"anonymized": "[PLAYER] ([TEAM]) darts into the penalty area to latch on to a pass, and he unleashes a shot in the direction of the right post. [PLAYER] is alert and denies him with a nice save.",
"visibility": "shown",
"position": "143000"
},
{
"important": false,
"gameTime": "2 - 00:42",
"label": "",
"description": "Sergi Roberto (Barcelona) sends a sweet pass into the penalty area, but one of the defenders averts the danger.",
"identified": "[PLAYER_W2R804U4] ([TEAM_]) sends a sweet pass into the penalty area, but one of the defenders averts the danger.",
"anonymized": "[PLAYER] ([TEAM]) sends a sweet pass into the penalty area, but one of the defenders averts the danger.",
"visibility": "shown",
"position": "42000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "Everything is set for the start of the second half.",
"identified": "Everything is set for the start of the second half.",
"anonymized": "Everything is set for the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "We are seeing a great game so far, let's hope the players will be able to sustain their level of performance and keep entertaining the fans in such a fabulous way. The away side is controlling this game. The home side is creating their opportunities using lightning-fast counter-attacks. The tactic of the away side is slow build-up play.",
"identified": "We are seeing a great game so far, let's hope the players will be able to sustain their level of performance and keep entertaining the fans in such a fabulous way. The away side is controlling this game. The home side is creating their opportunities using lightning-fast counter-attacks. The tactic of the away side is slow build-up play.",
"anonymized": "We are seeing a great game so far, let's hope the players will be able to sustain their level of performance and keep entertaining the fans in such a fabulous way. The away side is controlling this game. The home side is creating their opportunities using lightning-fast counter-attacks. The tactic of the away side is slow build-up play.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:58",
"label": "whistle",
"description": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"identified": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"anonymized": "The referee blows his whistle for half-time, bringing to a close the first 45 minutes of the match.",
"visibility": "shown",
"position": "2758000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "1 additional min. will be played.",
"identified": "1 additional min. will be played.",
"anonymized": "1 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "",
"description": "Luis Suarez (Barcelona) is flagged offside and it's not the first time today.",
"identified": "[PLAYER_dUShzrBp] ([TEAM_]) is flagged offside and it's not the first time today.",
"anonymized": "[PLAYER] ([TEAM]) is flagged offside and it's not the first time today.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:56",
"label": "",
"description": "Mohamed Salah (AS Roma) takes the chance to have an effort at goal from inside the box but blazes it just over the crossbar.",
"identified": "[PLAYER_08FBycgB] ([TEAM_]) takes the chance to have an effort at goal from inside the box but blazes it just over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) takes the chance to have an effort at goal from inside the box but blazes it just over the crossbar.",
"visibility": "shown",
"position": "2696000"
},
{
"important": false,
"gameTime": "1 - 44:39",
"label": "",
"description": "Flag goes up against Iago Falque (AS Roma) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_U9NSHM06] ([TEAM_]) and the referee blows his whistle for offside.",
"anonymized": "Flag goes up against [PLAYER] ([TEAM]) and the referee blows his whistle for offside.",
"visibility": "shown",
"position": "2679000"
},
{
"important": true,
"gameTime": "1 - 44:27",
"label": "",
"description": "Radja Nainggolan (AS Roma) gets into a good scoring position. He creates some space for himself and tries his luck from distance. His decent effort towards the right post is, however, superbly saved by Marc-Andre ter Stegen!",
"identified": "[PLAYER_lUGgC8jg] ([TEAM_]) gets into a good scoring position. He creates some space for himself and tries his luck from distance. His decent effort towards the right post is, however, superbly saved by [PLAYER_byxc46yl]!",
"anonymized": "[PLAYER] ([TEAM]) gets into a good scoring position. He creates some space for himself and tries his luck from distance. His decent effort towards the right post is, however, superbly saved by [PLAYER]!",
"visibility": "shown",
"position": "2667000"
},
{
"important": false,
"gameTime": "1 - 41:49",
"label": "",
"description": "Alessandro Florenzi (AS Roma) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball.",
"identified": "[PLAYER_8UwHPuvH] ([TEAM_]) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) once again attempts to send a defence-splitting pass, but the opposition's defence is alert and intercepts the ball.",
"visibility": "shown",
"position": "2509000"
},
{
"important": false,
"gameTime": "1 - 39:31",
"label": "",
"description": "Half-chance! Lionel Messi (Barcelona) plays a pass into the box, but Morgan De Sanctis reacts well to snuff out the attack.",
"identified": "Half-chance! [PLAYER_vgOOdZbd] ([TEAM_]) plays a pass into the box, but [PLAYER_rX7yKfcH] reacts well to snuff out the attack.",
"anonymized": "Half-chance! [PLAYER] ([TEAM]) plays a pass into the box, but [PLAYER] reacts well to snuff out the attack.",
"visibility": "shown",
"position": "2371000"
},
{
"important": false,
"gameTime": "1 - 36:24",
"label": "",
"description": "Lionel Messi (Barcelona) unleashed a promising strike from a long-distance free kick, but his effort goes high over the bar so it's going to be a goal kick.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) unleashed a promising strike from a long-distance free kick, but his effort goes high over the bar so it's going to be a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) unleashed a promising strike from a long-distance free kick, but his effort goes high over the bar so it's going to be a goal kick.",
"visibility": "shown",
"position": "2184000"
},
{
"important": false,
"gameTime": "1 - 35:47",
"label": "",
"description": "Poor challenge! Radja Nainggolan (AS Roma) is penalised for tripping and Bjorn Kuipers blows his whistle. Barcelona will take a free kick.",
"identified": "Poor challenge! [PLAYER_lUGgC8jg] ([TEAM_]) is penalised for tripping and [REFEREE] blows his whistle. [TEAM_] will take a free kick.",
"anonymized": "Poor challenge! [PLAYER] ([TEAM]) is penalised for tripping and [REFEREE] blows his whistle. [TEAM] will take a free kick.",
"visibility": "shown",
"position": "2147000"
},
{
"important": false,
"gameTime": "1 - 33:46",
"label": "",
"description": "Lionel Messi (Barcelona) fires the ball towards goal from just outside the penalty area, but it goes narrowly over the crossbar after coming very close to hitting the roof of the net.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) fires the ball towards goal from just outside the penalty area, but it goes narrowly over the crossbar after coming very close to hitting the roof of the net.",
"anonymized": "[PLAYER] ([TEAM]) fires the ball towards goal from just outside the penalty area, but it goes narrowly over the crossbar after coming very close to hitting the roof of the net.",
"visibility": "shown",
"position": "2026000"
},
{
"important": true,
"gameTime": "1 - 30:17",
"label": "soccer-ball",
"description": "Goal! The ball sits up nicely for Alessandro Florenzi (AS Roma) and he hits a crackerjack of a strike that ricochets off the left post into the back of the net. This could be the goal of the month.",
"identified": "Goal! The ball sits up nicely for [PLAYER_8UwHPuvH] ([TEAM_]) and he hits a crackerjack of a strike that ricochets off the left post into the back of the net. This could be the goal of the month.",
"anonymized": "Goal! The ball sits up nicely for [PLAYER] ([TEAM]) and he hits a crackerjack of a strike that ricochets off the left post into the back of the net. This could be the goal of the month.",
"visibility": "shown",
"position": "1817000"
},
{
"important": false,
"gameTime": "1 - 27:36",
"label": "",
"description": "Lucas Digne (AS Roma) swings a cross into the box, but it's far too close to Marc-Andre ter Stegen, who smothers the ball.",
"identified": "[PLAYER_v9Ux4sua] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_byxc46yl], who smothers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings a cross into the box, but it's far too close to [PLAYER], who smothers the ball.",
"visibility": "shown",
"position": "1656000"
},
{
"important": false,
"gameTime": "1 - 25:26",
"label": "corner",
"description": "Lionel Messi (Barcelona) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"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.",
"visibility": "shown",
"position": "1526000"
},
{
"important": false,
"gameTime": "1 - 25:06",
"label": "",
"description": "Gerard Pique (Barcelona) picks out Lionel Messi with a fine lofted pass, but the latter wasn't able to create some space to get into shooting range. The ball is out of play. Barcelona win a corner kick.",
"identified": "[PLAYER_fRBrHCRh] ([TEAM_]) picks out [PLAYER_vgOOdZbd] with a fine lofted pass, but the latter wasn't able to create some space to get into shooting range. The ball is out of play. [TEAM_] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) picks out [PLAYER] with a fine lofted pass, but the latter wasn't able to create some space to get into shooting range. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "1506000"
},
{
"important": false,
"gameTime": "1 - 23:26",
"label": "",
"description": "Wonderful pass from Andres Iniesta (Barcelona) for Luis Suarez, but they can't profit from it as Morgan De Sanctis comes off his line to collect.",
"identified": "Wonderful pass from [PLAYER_E7AksdFj] ([TEAM_]) for [PLAYER_dUShzrBp], but they can't profit from it as [PLAYER_rX7yKfcH] comes off his line to collect.",
"anonymized": "Wonderful pass from [PLAYER] ([TEAM]) for [PLAYER], but they can't profit from it as [PLAYER] comes off his line to collect.",
"visibility": "shown",
"position": "1406000"
},
{
"important": true,
"gameTime": "1 - 20:49",
"label": "soccer-ball",
"description": "It's in the back of the net! Ivan Rakitic puts the ball on a plate for Luis Suarez (Barcelona), who has an easy finish with a header into an empty net. The score is 0:1.",
"identified": "It's in the back of the net! [PLAYER_pC6dfyG5] puts the ball on a plate for [PLAYER_dUShzrBp] ([TEAM_]), who has an easy finish with a header into an empty net. The score is 0:1.",
"anonymized": "It's in the back of the net! [PLAYER] puts the ball on a plate for [PLAYER] ([TEAM]), who has an easy finish with a header into an empty net. The score is 0:1.",
"visibility": "shown",
"position": "1249000"
},
{
"important": false,
"gameTime": "1 - 19:33",
"label": "",
"description": "Luis Suarez (Barcelona) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_dUShzrBp] ([TEAM_]) races towards goal but the defender gets back well to make a challenge.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "1173000"
},
{
"important": false,
"gameTime": "1 - 17:02",
"label": "",
"description": "Lionel Messi (Barcelona) receives a sweet pass inside the box, but his effort on goal is blocked by the defender.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) receives a sweet pass inside the box, but his effort on goal is blocked by the defender.",
"visibility": "shown",
"position": "1022000"
},
{
"important": false,
"gameTime": "1 - 16:23",
"label": "",
"description": "Barcelona are showing great team chemistry. They are passing the ball around seamlessly.",
"identified": "[TEAM_] are showing great team chemistry. They are passing the ball around seamlessly.",
"anonymized": "[TEAM] are showing great team chemistry. They are passing the ball around seamlessly.",
"visibility": "shown",
"position": "983000"
},
{
"important": false,
"gameTime": "1 - 13:16",
"label": "",
"description": "A crossfield pass from Neymar (Barcelona) fails to find any of his teammates.",
"identified": "A crossfield pass from [PLAYER_jNOPwl3h] ([TEAM_]) fails to find any of his teammates.",
"anonymized": "A crossfield pass from [PLAYER] ([TEAM]) fails to find any of his teammates.",
"visibility": "shown",
"position": "796000"
},
{
"important": false,
"gameTime": "1 - 12:26",
"label": "",
"description": "Bjorn Kuipers blows his whistle. Alessandro Florenzi (AS Roma) commits a foul after dangerous play.",
"identified": "[REFEREE] blows his whistle. [PLAYER_8UwHPuvH] ([TEAM_]) commits a foul after dangerous play.",
"anonymized": "[REFEREE] blows his whistle. [PLAYER] ([TEAM]) commits a foul after dangerous play.",
"visibility": "shown",
"position": "746000"
},
{
"important": false,
"gameTime": "1 - 10:45",
"label": "",
"description": "Lionel Messi (Barcelona) finds some space inside the box and produces a first-time shot that goes high over the bar. High, wide and not at all pretty.",
"identified": "[PLAYER_vgOOdZbd] ([TEAM_]) finds some space inside the box and produces a first-time shot that goes high over the bar. High, wide and not at all pretty.",
"anonymized": "[PLAYER] ([TEAM]) finds some space inside the box and produces a first-time shot that goes high over the bar. High, wide and not at all pretty.",
"visibility": "shown",
"position": "645000"
}
]
} |