File size: 72,669 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 |
{
"timestamp": "1476902700",
"score": "3 - 0",
"round": "3",
"teams": [
"Basel",
"Paris SG"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "phOf2OAa",
"name": "Areola A.",
"captain": "",
"detail_link": "/player/areola-alphonse/phOf2OAa/",
"short_name": "Areola",
"shirt_number": "16",
"country": "France",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Alphonse Areola"
},
{
"hash": "6iUXQVdq",
"name": "Aurier S.",
"captain": "",
"detail_link": "/player/aurier-serge/6iUXQVdq/",
"short_name": "Aurier",
"shirt_number": "19",
"country": "Ivory Coast",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Serge Aurier"
},
{
"hash": "Qgx2trzH",
"name": "Cavani E.",
"captain": "",
"detail_link": "/player/cavani-edinson/Qgx2trzH/",
"short_name": "Cavani",
"shirt_number": "9",
"country": "Uruguay",
"facts": [
{
"type": "8",
"time": "40' Di Maria A. (Cavani E.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Edinson Cavani"
},
{
"hash": "SISkkDSQ",
"name": "Di Maria A.",
"captain": "",
"detail_link": "/player/di-maria-angel/SISkkDSQ/",
"short_name": "Di Maria",
"shirt_number": "11",
"country": "Argentina",
"facts": [
{
"type": "3",
"time": "40' Di Maria A. (Cavani E.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "86'",
"description": "Jese",
"linked_player_hash": "6BdSXunk"
}
],
"lineup": 11,
"starting": true,
"long_name": "Angel Di Maria"
},
{
"hash": "joeqPtde",
"name": "Kurzawa L.",
"captain": "",
"detail_link": "/player/kurzawa-layvin/joeqPtde/",
"short_name": "Kurzawa",
"shirt_number": "20",
"country": "France",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Layvin Kurzawa"
},
{
"hash": "EcmXnnoo",
"name": "Lucas Moura",
"captain": "",
"detail_link": "/player/lucas-moura/EcmXnnoo/",
"short_name": "Lucas Moura",
"shirt_number": "7",
"country": "Brazil",
"facts": [
{
"type": "3",
"time": "62' Lucas Moura",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "81'",
"description": "Ben Arfa H.",
"linked_player_hash": "Yo6cQVwd"
}
],
"lineup": 9,
"starting": true,
"long_name": "Lucas Moura"
},
{
"hash": "UFfev8HP",
"name": "Marquinhos",
"captain": "",
"detail_link": "/player/marquinhos/UFfev8HP/",
"short_name": "Marquinhos",
"shirt_number": "5",
"country": "Brazil",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Marquinhos"
},
{
"hash": "CAWma17n",
"name": "Matuidi B.",
"captain": "",
"detail_link": "/player/matuidi-blaise/CAWma17n/",
"short_name": "Matuidi",
"shirt_number": "14",
"country": "France",
"facts": [
{
"type": "6",
"time": "83'",
"description": "Krychowiak G.",
"linked_player_hash": "jcBD3Dyp"
}
],
"lineup": 6,
"starting": true,
"long_name": "Blaise Matuidi"
},
{
"hash": "l08EAP2Q",
"name": "Rabiot A.",
"captain": "",
"detail_link": "/player/rabiot-adrien/l08EAP2Q/",
"short_name": "Rabiot",
"shirt_number": "25",
"country": "France",
"facts": [
{
"type": "1",
"time": "64' Rabiot A. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Adrien Rabiot"
},
{
"hash": "xAsJbgXA",
"name": "Silva T.",
"captain": "(C)",
"detail_link": "/player/silva-thiago/xAsJbgXA/",
"short_name": "Silva",
"shirt_number": "2",
"country": "Brazil",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Thiago Silva"
},
{
"hash": "fmn5agXI",
"name": "Verratti M.",
"captain": "",
"detail_link": "/player/verratti-marco/fmn5agXI/",
"short_name": "Verratti",
"shirt_number": "6",
"country": "Italy",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Marco Verratti"
},
{
"hash": "4zFvpLV4",
"name": "Augustin J.",
"captain": "",
"detail_link": "/player/augustin-jean-kevin/4zFvpLV4/",
"short_name": "Augustin",
"shirt_number": "29",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jean-Kevin Augustin"
},
{
"hash": "Yo6cQVwd",
"name": "Ben Arfa H.",
"captain": "",
"detail_link": "/player/ben-arfa-hatem/Yo6cQVwd/",
"short_name": "Ben Arfa",
"shirt_number": "21",
"country": "France",
"facts": [
{
"type": "7",
"time": "81'",
"description": "Lucas Moura",
"linked_player_hash": "EcmXnnoo"
}
],
"lineup": null,
"starting": false,
"long_name": "Hatem Ben Arfa"
},
{
"hash": "6BdSXunk",
"name": "Jese",
"captain": "",
"detail_link": "/player/jese/6BdSXunk/",
"short_name": "Jese",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "86'",
"description": "Di Maria A.",
"linked_player_hash": "SISkkDSQ"
}
],
"lineup": null,
"starting": false,
"long_name": "Jese"
},
{
"hash": "jcBD3Dyp",
"name": "Krychowiak G.",
"captain": "",
"detail_link": "/player/krychowiak-grzegorz/jcBD3Dyp/",
"short_name": "Krychowiak",
"shirt_number": "4",
"country": "Poland",
"facts": [
{
"type": "7",
"time": "83'",
"description": "Matuidi B.",
"linked_player_hash": "CAWma17n"
}
],
"lineup": null,
"starting": false,
"long_name": "Grzegorz Krychowiak"
},
{
"hash": "lxTgxZ9r",
"name": "Maxwell",
"captain": "",
"detail_link": "/player/maxwell/lxTgxZ9r/",
"short_name": "Maxwell",
"shirt_number": "17",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Maxwell"
},
{
"hash": "WUyrShAL",
"name": "Meunier T.",
"captain": "",
"detail_link": "/player/meunier-thomas/WUyrShAL/",
"short_name": "Meunier",
"shirt_number": "12",
"country": "Belgium",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Thomas Meunier"
},
{
"hash": "QqugudYS",
"name": "Trapp K.",
"captain": "",
"detail_link": "/player/trapp-kevin/QqugudYS/",
"short_name": "Trapp",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kevin Trapp"
}
],
"coach": [
{
"hash": "8QQVnKh9",
"name": "Emery U.",
"captain": "",
"detail_link": "/player/emery-unai/8QQVnKh9/",
"short_name": "Emery U.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Unai Emery"
}
]
},
"away": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "fZAVdtSi",
"name": "Balanta E.",
"captain": "",
"detail_link": "/player/balanta-eder/fZAVdtSi/",
"short_name": "Balanta",
"shirt_number": "23",
"country": "Colombia",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Eder Balanta"
},
{
"hash": "tGcjYXdg",
"name": "Bjarnason B.",
"captain": "",
"detail_link": "/player/bjarnason-birkir/tGcjYXdg/",
"short_name": "Bjarnason",
"shirt_number": "8",
"country": "Iceland",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Birkir Bjarnason"
},
{
"hash": "6uKmjfMu",
"name": "Delgado M.",
"captain": "(C)",
"detail_link": "/player/delgado-matias/6uKmjfMu/",
"short_name": "Delgado",
"shirt_number": "10",
"country": "Argentina",
"facts": [
{
"type": "6",
"time": "70'",
"description": "Zuffi L.",
"linked_player_hash": "GjpjLbQo"
}
],
"lineup": 9,
"starting": true,
"long_name": "Matias Delgado"
},
{
"hash": "AeT4XUYr",
"name": "Doumbia S.",
"captain": "",
"detail_link": "/player/doumbia-seydou/AeT4XUYr/",
"short_name": "Doumbia",
"shirt_number": "88",
"country": "Ivory Coast",
"facts": [
{
"type": "6",
"time": "61'",
"description": "Sporar A.",
"linked_player_hash": "pEClWbGa"
}
],
"lineup": 11,
"starting": true,
"long_name": "Seydou Doumbia"
},
{
"hash": "lWPHOoaP",
"name": "Lang M.",
"captain": "",
"detail_link": "/player/lang-michael/lWPHOoaP/",
"short_name": "Lang",
"shirt_number": "5",
"country": "Switzerland",
"facts": [
{
"type": "1",
"time": "76' Lang M. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Michael Lang"
},
{
"hash": "t2p7KagJ",
"name": "Serey Die G.",
"captain": "",
"detail_link": "/player/serey-die/t2p7KagJ/",
"short_name": "Serey Die",
"shirt_number": "6",
"country": "Ivory Coast",
"facts": [
{
"type": "6",
"time": "78'",
"description": "Janko M.",
"linked_player_hash": "AXKRenZI"
}
],
"lineup": 7,
"starting": true,
"long_name": "Geoffroy Serey Die"
},
{
"hash": "ImK5HeCc",
"name": "Steffen R.",
"captain": "",
"detail_link": "/player/steffen-renato/ImK5HeCc/",
"short_name": "Steffen",
"shirt_number": "11",
"country": "Switzerland",
"facts": [
{
"type": "1",
"time": "66' Steffen R. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 10,
"starting": true,
"long_name": "Renato Steffen"
},
{
"hash": "hQki3I1E",
"name": "Suchy M.",
"captain": "",
"detail_link": "/player/suchy-marek/hQki3I1E/",
"short_name": "Suchy",
"shirt_number": "17",
"country": "Czech Republic",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Marek Suchy"
},
{
"hash": "Igxkp0vJ",
"name": "Traore A.",
"captain": "",
"detail_link": "/player/traore-adama-1990/Igxkp0vJ/",
"short_name": "Traore",
"shirt_number": "3",
"country": "Ivory Coast",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Adama Traore"
},
{
"hash": "6D9ZNa5g",
"name": "Vaclik T.",
"captain": "",
"detail_link": "/player/vaclik-tomas/6D9ZNa5g/",
"short_name": "Vaclik",
"shirt_number": "1",
"country": "Czech Republic",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Tomas Vaclik"
},
{
"hash": "fsUHd8aQ",
"name": "Xhaka T.",
"captain": "",
"detail_link": "/player/xhaka-taulant/fsUHd8aQ/",
"short_name": "Xhaka",
"shirt_number": "34",
"country": "Albania",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Taulant Xhaka"
},
{
"hash": "GbJFZsTk",
"name": "Calla D.",
"captain": "",
"detail_link": "/player/calla-davide/GbJFZsTk/",
"short_name": "Calla",
"shirt_number": "39",
"country": "Switzerland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Davide Calla"
},
{
"hash": "0UjQjIwh",
"name": "Gaber O.",
"captain": "",
"detail_link": "/player/gaber-omar/0UjQjIwh/",
"short_name": "Gaber",
"shirt_number": "4",
"country": "Egypt",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Omar Gaber"
},
{
"hash": "SzA56qED",
"name": "Hoegh D.",
"captain": "",
"detail_link": "/player/hoegh-daniel/SzA56qED/",
"short_name": "Hoegh",
"shirt_number": "26",
"country": "Denmark",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Daniel Hoegh"
},
{
"hash": "AXKRenZI",
"name": "Janko M.",
"captain": "",
"detail_link": "/player/janko-marc/AXKRenZI/",
"short_name": "Janko",
"shirt_number": "21",
"country": "Austria",
"facts": [
{
"type": "7",
"time": "78'",
"description": "Serey Die G.",
"linked_player_hash": "t2p7KagJ"
}
],
"lineup": null,
"starting": false,
"long_name": "Marc Janko"
},
{
"hash": "pEClWbGa",
"name": "Sporar A.",
"captain": "",
"detail_link": "/player/sporar-andraz/pEClWbGa/",
"short_name": "Sporar",
"shirt_number": "9",
"country": "Slovenia",
"facts": [
{
"type": "7",
"time": "61'",
"description": "Doumbia S.",
"linked_player_hash": "AeT4XUYr"
}
],
"lineup": null,
"starting": false,
"long_name": "Andraz Sporar"
},
{
"hash": "0KUDclpK",
"name": "Vailati G.",
"captain": "",
"detail_link": "/player/vailati-germano/0KUDclpK/",
"short_name": "Vailati",
"shirt_number": "18",
"country": "Switzerland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Germano Vailati"
},
{
"hash": "GjpjLbQo",
"name": "Zuffi L.",
"captain": "",
"detail_link": "/player/zuffi-luca/GjpjLbQo/",
"short_name": "Zuffi",
"shirt_number": "7",
"country": "Switzerland",
"facts": [
{
"type": "7",
"time": "70'",
"description": "Delgado M.",
"linked_player_hash": "6uKmjfMu"
}
],
"lineup": null,
"starting": false,
"long_name": "Luca Zuffi"
}
],
"coach": [
{
"hash": "SnNimUxp",
"name": "Fischer U.",
"captain": "",
"detail_link": "/player/fischer-urs/SnNimUxp/",
"short_name": "Fischer U.",
"shirt_number": "",
"country": "Switzerland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Urs Fischer"
}
]
}
},
"referee": [
"Aytekin D."
],
"venue": [
"Parc des Princes (Paris)"
],
"attendance": [
"46 488"
],
"referee_matched": [
"Deniz Aytekin"
],
"referee_found": [
"Deniz Aytekin"
],
"coach_matched": [
"Unai Emery"
],
"gameHomeTeam": "Paris SG",
"home": {
"name": "Paris SG",
"detail_link": "/team/paris-sg/CjhkPw0k",
"hash": "CjhkPw0k",
"names": [
"Paris SG",
"paris sg"
]
},
"gameAwayTeam": "Basel",
"away": {
"name": "Basel",
"detail_link": "/team/basel/S8MBgwuo",
"hash": "S8MBgwuo",
"names": [
"Basel",
"Basel (Sui)",
"basel"
]
},
"gameDate": "19/10/2016 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. There wasn't any evident superiority by either side today. The hosts displayed good teamplay with a lot of passes. The visiting side patiently waited in their own half to dispossess the opponent and hit them on the break.",
"identified": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. There wasn't any evident superiority by either side today. The hosts displayed good teamplay with a lot of passes. The visiting side patiently waited in their own half to dispossess the opponent and hit them on the break.",
"anonymized": "This hugely entertaining encounter was a wonderful experience for every football lover to behold. The players did their utmost to make the game very enjoyable. There wasn't any evident superiority by either side today. The hosts displayed good teamplay with a lot of passes. The visiting side patiently waited in their own half to dispossess the opponent and hit them on the break.",
"visibility": "shown",
"position": "2939000"
},
{
"important": true,
"gameTime": "2 - 48:13",
"label": "whistle",
"description": "That's it for today, Deniz Aytekin has blown his whistle and the game is over.",
"identified": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"anonymized": "That's it for today, [REFEREE] has blown his whistle and the game is over.",
"visibility": "shown",
"position": "2893000"
},
{
"important": true,
"gameTime": "2 - 47:26",
"label": "soccer-ball",
"description": "Edinson Cavani (Paris SG) finds the back of the net after sending the ball to the opposite side of the goal to which the goalkeeper dives!",
"identified": "[PLAYER_Qgx2trzH] ([TEAM_]) finds the back of the net after sending the ball to the opposite side of the goal to which the goalkeeper dives!",
"anonymized": "[PLAYER] ([TEAM]) finds the back of the net after sending the ball to the opposite side of the goal to which the goalkeeper dives!",
"visibility": "shown",
"position": "2846000"
},
{
"important": true,
"gameTime": "2 - 47:20",
"label": "",
"description": "Edinson Cavani (Paris SG) will take the responsibility and he is already preparing the ball.",
"identified": "[PLAYER_Qgx2trzH] ([TEAM_]) will take the responsibility and he is already preparing the ball.",
"anonymized": "[PLAYER] ([TEAM]) will take the responsibility and he is already preparing the ball.",
"visibility": "shown",
"position": "2840000"
},
{
"important": true,
"gameTime": "2 - 46:52",
"label": "penalty",
"description": "Michael Lang (Basel) brings an opponent down and Deniz Aytekin interrupts the game. It's a penalty! What an opportunity to score for Paris SG.",
"identified": "[PLAYER_lWPHOoaP] ([TEAM_]) brings an opponent down and [REFEREE] interrupts the game. It's a penalty! What an opportunity to score for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) brings an opponent down and [REFEREE] interrupts the game. It's a penalty! What an opportunity to score for [TEAM].",
"visibility": "shown",
"position": "2812000"
},
{
"important": true,
"gameTime": "2 - 45:53",
"label": "",
"description": "Jese (Paris SG) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at Tomas Vaclik.",
"identified": "[PLAYER_6BdSXunk] ([TEAM_]) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at [PLAYER_6D9ZNa5g].",
"anonymized": "[PLAYER] ([TEAM]) came close to scoring. He connected with a pass inside the box and perhaps should have done better than direct his shot straight at [PLAYER].",
"visibility": "shown",
"position": "2753000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "Fourth official shows 3 min. of added time.",
"identified": "Fourth official shows 3 min. of added time.",
"anonymized": "Fourth official shows 3 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 43:17",
"label": "",
"description": "Hatem Ben Arfa (Paris SG) takes a mid-range shot, but it lacks accuracy and it goes way over the bar.",
"identified": "[PLAYER_Yo6cQVwd] ([TEAM_]) takes a mid-range shot, but it lacks accuracy and it goes way over the bar.",
"anonymized": "[PLAYER] ([TEAM]) takes a mid-range shot, but it lacks accuracy and it goes way over the bar.",
"visibility": "shown",
"position": "2597000"
},
{
"important": true,
"gameTime": "2 - 40:06",
"label": "substitution",
"description": "The manager makes a subsitution with Jese (Paris SG) coming on for Angel Di Maria.",
"identified": "The manager makes a subsitution with [PLAYER_6BdSXunk] ([TEAM_]) coming on for [PLAYER_SISkkDSQ].",
"anonymized": "The manager makes a subsitution with [PLAYER] ([TEAM]) coming on for [PLAYER].",
"visibility": "shown",
"position": "2406000"
},
{
"important": false,
"gameTime": "2 - 38:34",
"label": "",
"description": "Adrien Rabiot (Paris SG) sends a quick through ball into space for his teammate who is lurking close to the offside line, but one of the defenders intercepts and clears the danger.",
"identified": "[PLAYER_l08EAP2Q] ([TEAM_]) sends a quick through ball into space for his teammate who is lurking close to the offside line, but one of the defenders intercepts and clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) sends a quick through ball into space for his teammate who is lurking close to the offside line, but one of the defenders intercepts and clears the danger.",
"visibility": "shown",
"position": "2314000"
},
{
"important": true,
"gameTime": "2 - 37:13",
"label": "substitution",
"description": "Unai Emery has decided to make a change. Grzegorz Krychowiak (Paris SG) replaces Blaise Matuidi.",
"identified": "[COACH_8QQVnKh9] has decided to make a change. [PLAYER_jcBD3Dyp] ([TEAM_]) replaces [PLAYER_CAWma17n].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "2233000"
},
{
"important": true,
"gameTime": "2 - 35:22",
"label": "substitution",
"description": "We are about to witness a subsitution. Hatem Ben Arfa (Paris SG) for Lucas.",
"identified": "We are about to witness a subsitution. [PLAYER_Yo6cQVwd] ([TEAM_]) for [PLAYER_EcmXnnoo].",
"anonymized": "We are about to witness a subsitution. [PLAYER] ([TEAM]) for [PLAYER].",
"visibility": "shown",
"position": "2122000"
},
{
"important": false,
"gameTime": "2 - 34:29",
"label": "corner",
"description": "Angel Di Maria (Paris SG) takes the corner, but he overhits it and none of his teammates are able to reach the ball.",
"identified": "[PLAYER_SISkkDSQ] ([TEAM_]) takes the corner, but he overhits it and none of his teammates are able to reach the ball.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but he overhits it and none of his teammates are able to reach the ball.",
"visibility": "shown",
"position": "2069000"
},
{
"important": false,
"gameTime": "2 - 33:58",
"label": "",
"description": "Angel Di Maria (Paris SG) produces a poor pass. He attempts to get the ball into the box but it's hacked away. Paris SG get a corner.",
"identified": "[PLAYER_SISkkDSQ] ([TEAM_]) produces a poor pass. He attempts to get the ball into the box but it's hacked away. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) produces a poor pass. He attempts to get the ball into the box but it's hacked away. [TEAM] get a corner.",
"visibility": "shown",
"position": "2038000"
},
{
"important": false,
"gameTime": "2 - 33:43",
"label": "corner",
"description": "Renato Steffen (Basel) swings in the corner, but it's comfortably cleared away.",
"identified": "[PLAYER_ImK5HeCc] ([TEAM_]) swings in the corner, but it's comfortably cleared away.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but it's comfortably cleared away.",
"visibility": "shown",
"position": "2023000"
},
{
"important": false,
"gameTime": "2 - 33:25",
"label": "",
"description": "Renato Steffen (Basel) swings in a cross, but the ball is cleared to safety by one of the defending players. It will be a corner kick for Basel.",
"identified": "[PLAYER_ImK5HeCc] ([TEAM_]) swings in a cross, but the ball is cleared to safety by one of the defending players. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross, but the ball is cleared to safety by one of the defending players. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "2005000"
},
{
"important": false,
"gameTime": "2 - 33:06",
"label": "",
"description": "Renato Steffen (Basel) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"identified": "[PLAYER_ImK5HeCc] ([TEAM_]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"visibility": "shown",
"position": "1986000"
},
{
"important": true,
"gameTime": "2 - 32:31",
"label": "substitution",
"description": "Substitution. Marc Janko (Basel) receives a signal from the referee and is now allowed to enter the pitch as Serey Die walks off.",
"identified": "Substitution. [PLAYER_AXKRenZI] ([TEAM_]) receives a signal from the referee and is now allowed to enter the pitch as [PLAYER_t2p7KagJ] walks off.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) receives a signal from the referee and is now allowed to enter the pitch as [PLAYER] walks off.",
"visibility": "shown",
"position": "1951000"
},
{
"important": false,
"gameTime": "2 - 32:25",
"label": "",
"description": "Flag goes up against Blaise Matuidi (Paris SG) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_CAWma17n] ([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": "1945000"
},
{
"important": true,
"gameTime": "2 - 30:15",
"label": "y-card",
"description": "Deniz Aytekin shows a yellow card to Michael Lang (Basel) for his blatant foul.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_lWPHOoaP] ([TEAM_]) for his blatant foul.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for his blatant foul.",
"visibility": "shown",
"position": "1815000"
},
{
"important": false,
"gameTime": "2 - 26:13",
"label": "",
"description": "Serge Aurier (Paris SG) sends a pass into the box, but his attempt is thwarted and cleared.",
"identified": "[PLAYER_6iUXQVdq] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared.",
"visibility": "shown",
"position": "1573000"
},
{
"important": false,
"gameTime": "2 - 25:53",
"label": "",
"description": "Lucas (Paris SG) sends a killer pass through the opponent's defence in an effort to find a space for Serge Aurier, who is lurking close to the offside line.",
"identified": "[PLAYER_EcmXnnoo] ([TEAM_]) sends a killer pass through the opponent's defence in an effort to find a space for [PLAYER_6iUXQVdq], who is lurking close to the offside line.",
"anonymized": "[PLAYER] ([TEAM]) sends a killer pass through the opponent's defence in an effort to find a space for [PLAYER], who is lurking close to the offside line.",
"visibility": "shown",
"position": "1553000"
},
{
"important": true,
"gameTime": "2 - 24:23",
"label": "substitution",
"description": "The game has come to an end for Matias Delgado. He has contributed as much as he could today. He will be replaced by the fresh legs of Luca Zuffi (Basel).",
"identified": "The game has come to an end for [PLAYER_6uKmjfMu]. He has contributed as much as he could today. He will be replaced by the fresh legs of [PLAYER_GjpjLbQo] ([TEAM_]).",
"anonymized": "The game has come to an end for [PLAYER]. He has contributed as much as he could today. He will be replaced by the fresh legs of [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1463000"
},
{
"important": true,
"gameTime": "2 - 20:40",
"label": "y-card",
"description": "Renato Steffen (Basel) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. Deniz Aytekin didn't think twice about pulling it out of his pocket.",
"identified": "[PLAYER_ImK5HeCc] ([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": "1240000"
},
{
"important": true,
"gameTime": "2 - 20:26",
"label": "",
"description": "Marek Suchy (Basel) wastes a great chance as he climbs high around the penalty spot to connect with a cross from the resulting free kick. He plants his header against the left post!",
"identified": "[PLAYER_hQki3I1E] ([TEAM_]) wastes a great chance as he climbs high around the penalty spot to connect with a cross from the resulting free kick. He plants his header against the left post!",
"anonymized": "[PLAYER] ([TEAM]) wastes a great chance as he climbs high around the penalty spot to connect with a cross from the resulting free kick. He plants his header against the left post!",
"visibility": "shown",
"position": "1226000"
},
{
"important": false,
"gameTime": "2 - 19:28",
"label": "corner",
"description": "Renato Steffen (Basel) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"identified": "[PLAYER_ImK5HeCc] ([TEAM_]) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"visibility": "shown",
"position": "1168000"
},
{
"important": false,
"gameTime": "2 - 19:11",
"label": "",
"description": "Matias Delgado (Basel) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. The ball is out of play. Basel win a corner kick.",
"identified": "[PLAYER_6uKmjfMu] ([TEAM_]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. The ball is out of play. [TEAM_] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "1151000"
},
{
"important": false,
"gameTime": "2 - 19:10",
"label": "",
"description": "A cross from a mid-range free kick, taken by Basel, is intercepted by one of the defenders.",
"identified": "A cross from a mid-range free kick, taken by [TEAM_], is intercepted by one of the defenders.",
"anonymized": "A cross from a mid-range free kick, taken by [TEAM], is intercepted by one of the defenders.",
"visibility": "shown",
"position": "1150000"
},
{
"important": true,
"gameTime": "2 - 18:55",
"label": "y-card",
"description": "Adrien Rabiot (Paris SG) attempts to discuss the decision with Deniz Aytekin, but he soon realises that it's not the right thing to do as he sees the yellow.",
"identified": "[PLAYER_l08EAP2Q] ([TEAM_]) attempts to discuss the decision with [REFEREE], but he soon realises that it's not the right thing to do as he sees the yellow.",
"anonymized": "[PLAYER] ([TEAM]) attempts to discuss the decision with [REFEREE], but he soon realises that it's not the right thing to do as he sees the yellow.",
"visibility": "shown",
"position": "1135000"
},
{
"important": false,
"gameTime": "2 - 18:52",
"label": "",
"description": "Deniz Aytekin blows his whistle after Serge Aurier (Paris SG) brings one of his opponents down with a strong tackle. Basel will take a free kick near the side line.",
"identified": "[REFEREE] blows his whistle after [PLAYER_6iUXQVdq] ([TEAM_]) brings one of his opponents down with a strong tackle. [TEAM_] will take a free kick near the side line.",
"anonymized": "[REFEREE] blows his whistle after [PLAYER] ([TEAM]) brings one of his opponents down with a strong tackle. [TEAM] will take a free kick near the side line.",
"visibility": "shown",
"position": "1132000"
},
{
"important": true,
"gameTime": "2 - 16:54",
"label": "soccer-ball",
"description": "Goal! Lucas (Paris SG) was in the right place at the right time to get to the rebound inside the box and gleefully rifles the ball low inside the right post. It's 2:0.",
"identified": "Goal! [PLAYER_EcmXnnoo] ([TEAM_]) was in the right place at the right time to get to the rebound inside the box and gleefully rifles the ball low inside the right post. It's 2:0.",
"anonymized": "Goal! [PLAYER] ([TEAM]) was in the right place at the right time to get to the rebound inside the box and gleefully rifles the ball low inside the right post. It's 2:0.",
"visibility": "shown",
"position": "1014000"
},
{
"important": true,
"gameTime": "2 - 16:11",
"label": "",
"description": "Edinson Cavani (Paris SG) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of Tomas Vaclik.",
"identified": "[PLAYER_Qgx2trzH] ([TEAM_]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER_6D9ZNa5g].",
"anonymized": "[PLAYER] ([TEAM]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER].",
"visibility": "shown",
"position": "971000"
},
{
"important": true,
"gameTime": "2 - 15:53",
"label": "substitution",
"description": "Here comes a substitution. Andraz Sporar (Basel) is brought on as a substitute for Seydou Doumbia.",
"identified": "Here comes a substitution. [PLAYER_pEClWbGa] ([TEAM_]) is brought on as a substitute for [PLAYER_AeT4XUYr].",
"anonymized": "Here comes a substitution. [PLAYER] ([TEAM]) is brought on as a substitute for [PLAYER].",
"visibility": "shown",
"position": "953000"
},
{
"important": false,
"gameTime": "2 - 15:31",
"label": "",
"description": "The foul by Layvin Kurzawa (Paris SG) was seen by Deniz Aytekin who didn't hesitate to blow the whistle.",
"identified": "The foul by [PLAYER_joeqPtde] ([TEAM_]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"anonymized": "The foul by [PLAYER] ([TEAM]) was seen by [REFEREE] who didn't hesitate to blow the whistle.",
"visibility": "shown",
"position": "931000"
},
{
"important": false,
"gameTime": "2 - 14:36",
"label": "",
"description": "Seydou Doumbia (Basel) fails to beat the offside trap and the linesman puts his flag up.",
"identified": "[PLAYER_AeT4XUYr] ([TEAM_]) fails to beat the offside trap and the linesman puts his flag up.",
"anonymized": "[PLAYER] ([TEAM]) fails to beat the offside trap and the linesman puts his flag up.",
"visibility": "shown",
"position": "876000"
},
{
"important": false,
"gameTime": "2 - 14:00",
"label": "",
"description": "Birkir Bjarnason (Basel) is adjudged offside.",
"identified": "[PLAYER_tGcjYXdg] ([TEAM_]) is adjudged offside.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "840000"
},
{
"important": false,
"gameTime": "2 - 11:15",
"label": "",
"description": "Michael Lang (Basel) whips the ball into the penalty area, but one of the defenders is alert and spanks it away. The ball is out of play. Basel will take a throw-in.",
"identified": "[PLAYER_lWPHOoaP] ([TEAM_]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away. The ball is out of play. [TEAM_] will take a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away. The ball is out of play. [TEAM] will take a throw-in.",
"visibility": "shown",
"position": "675000"
},
{
"important": false,
"gameTime": "2 - 09:17",
"label": "",
"description": "Matias Delgado (Basel) fires the ball in from a mid-range free kick, but it blazes over the bar.",
"identified": "[PLAYER_6uKmjfMu] ([TEAM_]) fires the ball in from a mid-range free kick, but it blazes over the bar.",
"anonymized": "[PLAYER] ([TEAM]) fires the ball in from a mid-range free kick, but it blazes over the bar.",
"visibility": "shown",
"position": "557000"
},
{
"important": false,
"gameTime": "2 - 08:57",
"label": "",
"description": "Marco Verratti (Paris SG) brings his opponent down. Deniz Aytekin has a clear sight of it and blows his whistle for a foul. A free kick to Basel.",
"identified": "[PLAYER_fmn5agXI] ([TEAM_]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul. A free kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul. A free kick to [TEAM].",
"visibility": "shown",
"position": "537000"
},
{
"important": false,
"gameTime": "2 - 08:38",
"label": "",
"description": "Lucas (Paris SG) wins the ball after the corner kick and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"identified": "[PLAYER_EcmXnnoo] ([TEAM_]) wins the ball after the corner kick and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) wins the ball after the corner kick and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"visibility": "shown",
"position": "518000"
},
{
"important": false,
"gameTime": "2 - 08:14",
"label": "corner",
"description": "Angel Di Maria (Paris SG) will take the corner.",
"identified": "[PLAYER_SISkkDSQ] ([TEAM_]) will take the corner.",
"anonymized": "[PLAYER] ([TEAM]) will take the corner.",
"visibility": "shown",
"position": "494000"
},
{
"important": false,
"gameTime": "2 - 07:40",
"label": "",
"description": "It could have been a good chance to score! Lucas (Paris SG) fails to release Serge Aurier with a through ball as the defence is alert and clears. The ball goes out of play and Paris SG have been awarded a corner kick.",
"identified": "It could have been a good chance to score! [PLAYER_EcmXnnoo] ([TEAM_]) fails to release [PLAYER_6iUXQVdq] with a through ball as the defence is alert and clears. The ball goes out of play and [TEAM_] have been awarded a corner kick.",
"anonymized": "It could have been a good chance to score! [PLAYER] ([TEAM]) fails to release [PLAYER] with a through ball as the defence is alert and clears. The ball goes out of play and [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "460000"
},
{
"important": false,
"gameTime": "2 - 05:00",
"label": "",
"description": "Angel Di Maria (Paris SG) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The linesman signals a throw-in for Basel.",
"identified": "[PLAYER_SISkkDSQ] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The linesman signals a throw-in for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The linesman signals a throw-in for [TEAM].",
"visibility": "shown",
"position": "300000"
},
{
"important": true,
"gameTime": "2 - 01:51",
"label": "",
"description": "Edinson Cavani (Paris SG) creates himself some space around the penalty spot and connects with the free kick. His almost perfect header hits the right post and ricochets away off it.",
"identified": "[PLAYER_Qgx2trzH] ([TEAM_]) creates himself some space around the penalty spot and connects with the free kick. His almost perfect header hits the right post and ricochets away off it.",
"anonymized": "[PLAYER] ([TEAM]) creates himself some space around the penalty spot and connects with the free kick. His almost perfect header hits the right post and ricochets away off it.",
"visibility": "shown",
"position": "111000"
},
{
"important": false,
"gameTime": "2 - 01:35",
"label": "",
"description": "Adama Traore (Basel) is penalised after knocking an opponent down. Paris SG are given an advantage. They have a free kick.",
"identified": "[PLAYER_Igxkp0vJ] ([TEAM_]) is penalised after knocking an opponent down. [TEAM_] are given an advantage. They have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) is penalised after knocking an opponent down. [TEAM] are given an advantage. They have a free kick.",
"visibility": "shown",
"position": "95000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The game restarts for the second half.",
"identified": "The game restarts for the second half.",
"anonymized": "The game restarts for the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"label": "",
"description": "Both sides have been very active in the first half, providing the fans with an exciting show. It has been a tight contest so far. The tactic of the home side is slow build-up play and the away side is creating their opportunities using lightning-fast counter-attacks.",
"identified": "Both sides have been very active in the first half, providing the fans with an exciting show. It has been a tight contest so far. The tactic of the home side is slow build-up play and the away side is creating their opportunities using lightning-fast counter-attacks.",
"anonymized": "Both sides have been very active in the first half, providing the fans with an exciting show. It has been a tight contest so far. The tactic of the home side is slow build-up play and the away side is creating their opportunities using lightning-fast counter-attacks.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:02",
"label": "whistle",
"description": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"identified": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"anonymized": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"visibility": "shown",
"position": "2762000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "We will have 1 min. of added time.",
"identified": "We will have 1 min. of added time.",
"anonymized": "We will have 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:40",
"label": "",
"description": "Layvin Kurzawa (Paris SG) attempts to slip the ball through the defence, but is unable to find any of his teammates.",
"identified": "[PLAYER_joeqPtde] ([TEAM_]) attempts to slip the ball through the defence, but is unable to find any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) attempts to slip the ball through the defence, but is unable to find any of his teammates.",
"visibility": "shown",
"position": "2680000"
},
{
"important": false,
"gameTime": "1 - 43:00",
"label": "",
"description": "Paris SG 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": "2580000"
},
{
"important": true,
"gameTime": "1 - 39:48",
"label": "soccer-ball",
"description": "Angel Di Maria (Paris SG) receives a killer pass, finds himself one-on-one with the goalkeeper and coolly sends the ball into the back of the net.",
"identified": "[PLAYER_SISkkDSQ] ([TEAM_]) receives a killer pass, finds himself one-on-one with the goalkeeper and coolly sends the ball into the back of the net.",
"anonymized": "[PLAYER] ([TEAM]) receives a killer pass, finds himself one-on-one with the goalkeeper and coolly sends the ball into the back of the net.",
"visibility": "shown",
"position": "2388000"
},
{
"important": false,
"gameTime": "1 - 36:37",
"label": "corner",
"description": "Lucas (Paris SG) takes the corner but fails to find any of his teammates as he overhits the effort.",
"identified": "[PLAYER_EcmXnnoo] ([TEAM_]) takes the corner but fails to find any of his teammates as he overhits the effort.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but fails to find any of his teammates as he overhits the effort.",
"visibility": "shown",
"position": "2197000"
},
{
"important": false,
"gameTime": "1 - 36:18",
"label": "",
"description": "Tomas Vaclik hears the fans clapping his superb goalkeeping. Adrien Rabiot (Paris SG) shoots from the edge of the box towards the top of the net, but the goalkeeper makes a magnificent save.",
"identified": "[PLAYER_6D9ZNa5g] hears the fans clapping his superb goalkeeping. [PLAYER_l08EAP2Q] ([TEAM_]) shoots from the edge of the box towards the top of the net, but the goalkeeper makes a magnificent save.",
"anonymized": "[PLAYER] hears the fans clapping his superb goalkeeping. [PLAYER] ([TEAM]) shoots from the edge of the box towards the top of the net, but the goalkeeper makes a magnificent save.",
"visibility": "shown",
"position": "2178000"
},
{
"important": true,
"gameTime": "1 - 35:47",
"label": "",
"description": "Seydou Doumbia (Basel) latches on to a superb cross into the box and hits the right post with his header. A stroke of luck for the goalkeeper!",
"identified": "[PLAYER_AeT4XUYr] ([TEAM_]) latches on to a superb cross into the box and hits the right post with his header. A stroke of luck for the goalkeeper!",
"anonymized": "[PLAYER] ([TEAM]) latches on to a superb cross into the box and hits the right post with his header. A stroke of luck for the goalkeeper!",
"visibility": "shown",
"position": "2147000"
},
{
"important": false,
"gameTime": "1 - 35:25",
"label": "",
"description": "Birkir Bjarnason (Basel) fails to pick a body out in the box with an over-hit cross to the back post.",
"identified": "[PLAYER_tGcjYXdg] ([TEAM_]) fails to pick a body out in the box with an over-hit cross to the back post.",
"anonymized": "[PLAYER] ([TEAM]) fails to pick a body out in the box with an over-hit cross to the back post.",
"visibility": "shown",
"position": "2125000"
},
{
"important": false,
"gameTime": "1 - 32:44",
"label": "",
"description": "Edinson Cavani (Paris SG) gets on the ball and beats an opponent, but his run is stopped by the referee Deniz Aytekin who sees an offensive foul.",
"identified": "[PLAYER_Qgx2trzH] ([TEAM_]) gets on the ball and beats an opponent, but his run is stopped by the referee [REFEREE] who sees an offensive foul.",
"anonymized": "[PLAYER] ([TEAM]) gets on the ball and beats an opponent, but his run is stopped by the referee [REFEREE] who sees an offensive foul.",
"visibility": "shown",
"position": "1964000"
},
{
"important": true,
"gameTime": "1 - 30:00",
"label": "",
"description": "CHANCE! Angel Di Maria (Paris SG) fires just wide of the right post from inside the box after running onto a splendid pass from Lucas.",
"identified": "CHANCE! [PLAYER_SISkkDSQ] ([TEAM_]) fires just wide of the right post from inside the box after running onto a splendid pass from [PLAYER_EcmXnnoo].",
"anonymized": "CHANCE! [PLAYER] ([TEAM]) fires just wide of the right post from inside the box after running onto a splendid pass from [PLAYER].",
"visibility": "shown",
"position": "1800000"
},
{
"important": false,
"gameTime": "1 - 28:39",
"label": "",
"description": "Birkir Bjarnason (Basel) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the right post.",
"identified": "[PLAYER_tGcjYXdg] ([TEAM_]) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) wastes a big opportunity! He controls the ball after a nice low pass and shoots from a promising distance. His poor effort goes miles wide of the right post.",
"visibility": "shown",
"position": "1719000"
},
{
"important": false,
"gameTime": "1 - 27:00",
"label": "",
"description": "Adrien Rabiot (Paris SG) was close to scoring after he unleashed a powerful shot which went a whisker wide of the right post.",
"identified": "[PLAYER_l08EAP2Q] ([TEAM_]) was close to scoring after he unleashed a powerful shot which went a whisker wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) was close to scoring after he unleashed a powerful shot which went a whisker wide of the right post.",
"visibility": "shown",
"position": "1620000"
},
{
"important": false,
"gameTime": "1 - 24:00",
"label": "",
"description": "Renato Steffen (Basel) takes a mid-range shot, but the ball sails high over the bar.",
"identified": "[PLAYER_ImK5HeCc] ([TEAM_]) takes a mid-range shot, but the ball sails high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) takes a mid-range shot, but the ball sails high over the bar.",
"visibility": "shown",
"position": "1440000"
},
{
"important": false,
"gameTime": "1 - 20:50",
"label": "",
"description": "Deniz Aytekin blows his whistle and it's Marek Suchy (Basel) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_hQki3I1E] ([TEAM_]) who is penalised for an offensive foul. Good decision by the referee.",
"anonymized": "[REFEREE] blows his whistle and it's [PLAYER] ([TEAM]) who is penalised for an offensive foul. Good decision by the referee.",
"visibility": "shown",
"position": "1250000"
},
{
"important": false,
"gameTime": "1 - 20:36",
"label": "corner",
"description": "Renato Steffen (Basel) goes over to take the corner kick and it looks like he will swing the ball into the penalty box.",
"identified": "[PLAYER_ImK5HeCc] ([TEAM_]) goes over to take the corner kick and it looks like he will swing the ball into the penalty box.",
"anonymized": "[PLAYER] ([TEAM]) goes over to take the corner kick and it looks like he will swing the ball into the penalty box.",
"visibility": "shown",
"position": "1236000"
},
{
"important": false,
"gameTime": "1 - 20:18",
"label": "corner",
"description": "Matias Delgado (Basel) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat. The referee and one of his assistants signal for a corner kick to Basel.",
"identified": "[PLAYER_6uKmjfMu] ([TEAM_]) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) sends a wonderful cross from the corner kick. However, the defence works perfectly to clear the ball and avert the threat. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "1218000"
},
{
"important": false,
"gameTime": "1 - 19:56",
"label": "",
"description": "Renato Steffen (Basel) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. The ball goes out for a corner. Basel can continue in their attacking effort.",
"identified": "[PLAYER_ImK5HeCc] ([TEAM_]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "1196000"
},
{
"important": false,
"gameTime": "1 - 18:56",
"label": "",
"description": "Angel Di Maria (Paris SG) is caught offside!",
"identified": "[PLAYER_SISkkDSQ] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "1136000"
},
{
"important": false,
"gameTime": "1 - 18:13",
"label": "",
"description": "Matias Delgado (Basel) plays a through ball but overhits it.",
"identified": "[PLAYER_6uKmjfMu] ([TEAM_]) plays a through ball but overhits it.",
"anonymized": "[PLAYER] ([TEAM]) plays a through ball but overhits it.",
"visibility": "shown",
"position": "1093000"
},
{
"important": false,
"gameTime": "1 - 17:00",
"label": "",
"description": "Serge Aurier (Paris SG) commits a foul and Deniz Aytekin immediately signals a free kick.",
"identified": "[PLAYER_6iUXQVdq] ([TEAM_]) commits a foul and [REFEREE] immediately signals a free kick.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul and [REFEREE] immediately signals a free kick.",
"visibility": "shown",
"position": "1020000"
},
{
"important": false,
"gameTime": "1 - 15:00",
"label": "",
"description": "Serge Aurier (Paris SG) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it.",
"identified": "[PLAYER_6iUXQVdq] ([TEAM_]) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it.",
"anonymized": "[PLAYER] ([TEAM]) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it.",
"visibility": "shown",
"position": "900000"
},
{
"important": true,
"gameTime": "1 - 11:20",
"label": "",
"description": "Close! Seydou Doumbia (Basel) is a whisker away from finishing-off the move he started. His close-range effort flies just over the bar.",
"identified": "Close! [PLAYER_AeT4XUYr] ([TEAM_]) is a whisker away from finishing-off the move he started. His close-range effort flies just over the bar.",
"anonymized": "Close! [PLAYER] ([TEAM]) is a whisker away from finishing-off the move he started. His close-range effort flies just over the bar.",
"visibility": "shown",
"position": "680000"
},
{
"important": true,
"gameTime": "1 - 11:05",
"label": "",
"description": "Great touch by Renato Steffen (Basel) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"identified": "Great touch by [PLAYER_ImK5HeCc] ([TEAM_]) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"anonymized": "Great touch by [PLAYER] ([TEAM]) as he receives a precise pass deep inside the box and rips a shot goalwards, but the keeper pulls off an amazing save!",
"visibility": "shown",
"position": "665000"
}
]
} |