File size: 86,908 Bytes
23b035e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 |
{
"timestamp": "1442429100",
"score": "0 - 3",
"round": "1",
"teams": [
"Olympiacos Piraeus",
"Bayern Munich",
"Olympiakos Piraeus"
],
"lineup": {
"home": {
"tactic": "1-4-3-1-2",
"players": [
{
"hash": "8ptXjW8f",
"name": "Cambiasso E.",
"captain": "",
"detail_link": "/player/cambiasso-esteban/8ptXjW8f/",
"short_name": "Cambiasso",
"shirt_number": "91",
"country": "Argentina",
"facts": [
{
"type": "1",
"time": "23' Cambiasso E. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "66'",
"description": "Fortounis K.",
"linked_player_hash": "WIPOXg1o"
}
],
"lineup": 7,
"starting": true,
"long_name": "Esteban Cambiasso"
},
{
"hash": "8C2gn9kg",
"name": "da Costa M.",
"captain": "",
"detail_link": "/player/da-costa-manuel/8C2gn9kg/",
"short_name": "da Costa",
"shirt_number": "6",
"country": "Morocco",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Manuel da Costa"
},
{
"hash": "SzCvIELK",
"name": "Dominguez A.",
"captain": "",
"detail_link": "/player/dominguez-alejandro/SzCvIELK/",
"short_name": "Dominguez",
"shirt_number": "10",
"country": "Argentina",
"facts": [
{
"type": "6",
"time": "61'",
"description": "Hernani",
"linked_player_hash": "WGV4qaf2"
}
],
"lineup": 9,
"starting": true,
"long_name": "Alejandro Dominguez"
},
{
"hash": "Gr7z9FSE",
"name": "Elabdellaoui O.",
"captain": "",
"detail_link": "/player/elabdellaoui-omar/Gr7z9FSE/",
"short_name": "Elabdellaoui",
"shirt_number": "14",
"country": "Norway",
"facts": [
{
"type": "1",
"time": "25' Elabdellaoui O. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Omar Elabdellaoui"
},
{
"hash": "hp8zk56r",
"name": "Ideye B.",
"captain": "",
"detail_link": "/player/ideye-brown/hp8zk56r/",
"short_name": "Ideye",
"shirt_number": "99",
"country": "Nigeria",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Brown Ideye"
},
{
"hash": "bo57CU7b",
"name": "Jimenez R.",
"captain": "",
"detail_link": "/player/jimenez-roberto/bo57CU7b/",
"short_name": "Jimenez",
"shirt_number": "16",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Roberto Jimenez"
},
{
"hash": "KrODGzyo",
"name": "Kasami P.",
"captain": "",
"detail_link": "/player/kasami-pajtim/KrODGzyo/",
"short_name": "Kasami",
"shirt_number": "11",
"country": "Switzerland",
"facts": [
{
"type": "1",
"time": "5' Kasami P. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Pajtim Kasami"
},
{
"hash": "YH4CbOUu",
"name": "Leandro Salino",
"captain": "",
"detail_link": "/player/salino-leandro/YH4CbOUu/",
"short_name": "Leandro Salino",
"shirt_number": "30",
"country": "Brazil",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Leandro Salino"
},
{
"hash": "4YoV0hmC",
"name": "Masuaku A.",
"captain": "",
"detail_link": "/player/masuaku-arthur/4YoV0hmC/",
"short_name": "Masuaku",
"shirt_number": "26",
"country": "DR Congo",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Arthur Masuaku"
},
{
"hash": "l2uTD7Km",
"name": "Pardo F.",
"captain": "",
"detail_link": "/player/pardo-felipe/l2uTD7Km/",
"short_name": "Pardo",
"shirt_number": "90",
"country": "Colombia",
"facts": [
{
"type": "6",
"time": "81'",
"description": "Seba",
"linked_player_hash": "QXXJtcQI"
}
],
"lineup": 10,
"starting": true,
"long_name": "Felipe Pardo"
},
{
"hash": "WzHBybWs",
"name": "Siovas D.",
"captain": "",
"detail_link": "/player/siovas-dimitrios/WzHBybWs/",
"short_name": "Siovas",
"shirt_number": "23",
"country": "Greece",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Dimitrios Siovas"
},
{
"hash": "MiWaEtJI",
"name": "Botia A.",
"captain": "",
"detail_link": "/player/botia-alberto/MiWaEtJI/",
"short_name": "Botia",
"shirt_number": "3",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alberto Botia"
},
{
"hash": "6RjwNXt6",
"name": "Finnbogason A.",
"captain": "",
"detail_link": "/player/finnbogason-alfred/6RjwNXt6/",
"short_name": "Finnbogason",
"shirt_number": "9",
"country": "Iceland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Alfred Finnbogason"
},
{
"hash": "WIPOXg1o",
"name": "Fortounis K.",
"captain": "",
"detail_link": "/player/fortounis-konstantinos/WIPOXg1o/",
"short_name": "Fortounis",
"shirt_number": "7",
"country": "Greece",
"facts": [
{
"type": "7",
"time": "66'",
"description": "Cambiasso E.",
"linked_player_hash": "8ptXjW8f"
}
],
"lineup": null,
"starting": false,
"long_name": "Konstantinos Fortounis"
},
{
"hash": "WGV4qaf2",
"name": "Hernani",
"captain": "",
"detail_link": "/player/hernani/WGV4qaf2/",
"short_name": "Hernani",
"shirt_number": "77",
"country": "Portugal",
"facts": [
{
"type": "7",
"time": "61'",
"description": "Dominguez A.",
"linked_player_hash": "SzCvIELK"
}
],
"lineup": null,
"starting": false,
"long_name": "Hernani"
},
{
"hash": "6Hc6XjrC",
"name": "Kapino S.",
"captain": "",
"detail_link": "/player/kapino-stefanos/6Hc6XjrC/",
"short_name": "Kapino",
"shirt_number": "37",
"country": "Greece",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Stefanos Kapino"
},
{
"hash": "QXXJtcQI",
"name": "Seba",
"captain": "",
"detail_link": "/player/seba/QXXJtcQI/",
"short_name": "Seba",
"shirt_number": "92",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "81'",
"description": "Pardo F.",
"linked_player_hash": "l2uTD7Km"
}
],
"lineup": null,
"starting": false,
"long_name": "Seba"
},
{
"hash": "zVZzl1mf",
"name": "Vouros P.",
"captain": "",
"detail_link": "/player/vouros-praxitelis/zVZzl1mf/",
"short_name": "Vouros",
"shirt_number": "29",
"country": "Greece",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Praxitelis Vouros"
}
],
"coach": [
{
"hash": "GxXzVQFQ",
"name": "Silva M.",
"captain": "",
"detail_link": "/player/silva-marco/GxXzVQFQ/",
"short_name": "Silva M.",
"shirt_number": "",
"country": "Portugal",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marco Silva"
}
]
},
"away": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "hKx3nCTp",
"name": "Alaba D.",
"captain": "",
"detail_link": "/player/alaba-david/hKx3nCTp/",
"short_name": "Alaba",
"shirt_number": "27",
"country": "Austria",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "David Alaba"
},
{
"hash": "hAcTWKKN",
"name": "Alonso X.",
"captain": "",
"detail_link": "/player/alonso-xabi/hAcTWKKN/",
"short_name": "Alonso",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "76'",
"description": "Kimmich J.",
"linked_player_hash": "MkMrkZLc"
}
],
"lineup": 7,
"starting": true,
"long_name": "Xabi Alonso"
},
{
"hash": "jg1LwcpG",
"name": "Arturo Vidal",
"captain": "",
"detail_link": "/player/vidal-arturo/jg1LwcpG/",
"short_name": "Arturo Vidal",
"shirt_number": "23",
"country": "Chile",
"facts": [
{
"type": "6",
"time": "79'",
"description": "Gotze M.",
"linked_player_hash": "veaF8P5m"
}
],
"lineup": 6,
"starting": true,
"long_name": "Arturo Vidal"
},
{
"hash": "Cd1ieN88",
"name": "Bernat J.",
"captain": "",
"detail_link": "/player/bernat-juan/Cd1ieN88/",
"short_name": "Bernat",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Juan Bernat"
},
{
"hash": "0bDEBms3",
"name": "Boateng J.",
"captain": "",
"detail_link": "/player/boateng-jerome/0bDEBms3/",
"short_name": "Boateng",
"shirt_number": "17",
"country": "Germany",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Jerome Boateng"
},
{
"hash": "fPOJMEfo",
"name": "Costa D.",
"captain": "",
"detail_link": "/player/costa-douglas/fPOJMEfo/",
"short_name": "Costa",
"shirt_number": "11",
"country": "Brazil",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Douglas Costa"
},
{
"hash": "MB26hXLr",
"name": "Lahm P.",
"captain": "(C)",
"detail_link": "/player/lahm-philipp/MB26hXLr/",
"short_name": "Lahm",
"shirt_number": "21",
"country": "Germany",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Philipp Lahm"
},
{
"hash": "MVC8zHZD",
"name": "Lewandowski R.",
"captain": "",
"detail_link": "/player/lewandowski-robert/MVC8zHZD/",
"short_name": "Lewandowski",
"shirt_number": "9",
"country": "Poland",
"facts": [
{
"type": "6",
"time": "59'",
"description": "Coman K.",
"linked_player_hash": "zHWLJOHq"
}
],
"lineup": 10,
"starting": true,
"long_name": "Robert Lewandowski"
},
{
"hash": "8KpOJV2B",
"name": "Muller T.",
"captain": "",
"detail_link": "/player/muller-thomas/8KpOJV2B/",
"short_name": "Muller",
"shirt_number": "25",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "45' Muller T. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "3",
"time": "52' Muller T.",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Thomas Muller"
},
{
"hash": "Sh5KwIo6",
"name": "Neuer M.",
"captain": "",
"detail_link": "/player/neuer-manuel/Sh5KwIo6/",
"short_name": "Neuer",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Manuel Neuer"
},
{
"hash": "vcSKqUSq",
"name": "Thiago",
"captain": "",
"detail_link": "/player/thiago/vcSKqUSq/",
"short_name": "Thiago",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Thiago"
},
{
"hash": "zHWLJOHq",
"name": "Coman K.",
"captain": "",
"detail_link": "/player/coman-kingsley/zHWLJOHq/",
"short_name": "Coman",
"shirt_number": "29",
"country": "France",
"facts": [
{
"type": "7",
"time": "59'",
"description": "Lewandowski R.",
"linked_player_hash": "MVC8zHZD"
},
{
"type": "8",
"time": "89' Gotze M. (Coman K.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Kingsley Coman"
},
{
"hash": "veaF8P5m",
"name": "Gotze M.",
"captain": "",
"detail_link": "/player/gotze-mario/veaF8P5m/",
"short_name": "Gotze",
"shirt_number": "19",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "79'",
"description": "Arturo Vidal",
"linked_player_hash": "jg1LwcpG"
},
{
"type": "3",
"time": "89' Gotze M. (Coman K.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Mario Gotze"
},
{
"hash": "MkMrkZLc",
"name": "Kimmich J.",
"captain": "",
"detail_link": "/player/kimmich-joshua/MkMrkZLc/",
"short_name": "Kimmich",
"shirt_number": "32",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Alonso X.",
"linked_player_hash": "hAcTWKKN"
},
{
"type": "1",
"time": "86' Kimmich J. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Joshua Kimmich"
},
{
"hash": "IiVRUCYs",
"name": "Martinez J.",
"captain": "",
"detail_link": "/player/martinez-javi/IiVRUCYs/",
"short_name": "Martinez",
"shirt_number": "8",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Javi Martinez"
},
{
"hash": "pxvTBxot",
"name": "Rafinha",
"captain": "",
"detail_link": "/player/rafinha/pxvTBxot/",
"short_name": "Rafinha",
"shirt_number": "13",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rafinha"
},
{
"hash": "2ukcBSGo",
"name": "Rode S.",
"captain": "",
"detail_link": "/player/rode-sebastian/2ukcBSGo/",
"short_name": "Rode",
"shirt_number": "20",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sebastian Rode"
},
{
"hash": "8CE8Sho8",
"name": "Ulreich S.",
"captain": "",
"detail_link": "/player/ulreich-sven/8CE8Sho8/",
"short_name": "Ulreich",
"shirt_number": "26",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sven Ulreich"
}
],
"coach": [
{
"hash": "hxNijWrJ",
"name": "Guardiola P.",
"captain": "",
"detail_link": "/player/guardiola-pep/hxNijWrJ/",
"short_name": "Guardiola P.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Pep Guardiola"
}
]
}
},
"referee": [
"Velasco C."
],
"venue": [
"Georgios Karaiskakis Stadium (Piraeus)"
],
"attendance": [
"31 688"
],
"referee_matched": [
"Carlos Velasco"
],
"referee_found": [
"Carlos Velasco Carballo",
"Carlos Velasco"
],
"coach_matched": [
"Marco Silva",
"Pep Guardiola"
],
"gameHomeTeam": "Olympiakos Piraeus",
"home": {
"name": "Olympiakos Piraeus",
"detail_link": "/team/olympiacos-piraeus/hnzvnHPS",
"hash": "hnzvnHPS",
"names": [
"Olympiakos Piraeus",
"Olympiacos Piraeus",
"Olympiacos Piraeus (Gre)",
"olympiacos piraeus"
]
},
"gameAwayTeam": "Bayern Munich",
"away": {
"name": "Bayern Munich",
"detail_link": "/team/bayern-munich/nVp0wiqd",
"hash": "nVp0wiqd",
"names": [
"Bayern Munich",
"bayern munich"
]
},
"gameDate": "16/09/2015 - 20:45",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. The Bayern Munich fans must be pleased with the performance of their team. They were absolutely the better of the two sides. It's obvious that defence had the highest priority for the home side. The away team made a lot of passes and attempted to maintain possession.",
"identified": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. The [TEAM_] fans must be pleased with the performance of their team. They were absolutely the better of the two sides. It's obvious that defence had the highest priority for the home side. The away team made a lot of passes and attempted to maintain possession.",
"anonymized": "It was a good decision to watch today's encounter. There has been more to see on the pitch than in most of the other games. The [TEAM] fans must be pleased with the performance of their team. They were absolutely the better of the two sides. It's obvious that defence had the highest priority for the home side. The away team made a lot of passes and attempted to maintain possession.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:18",
"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": "2958000"
},
{
"important": false,
"gameTime": "2 - 48:59",
"label": "",
"description": "Douglas Costa (Bayern Munich) volleys the ball from just outside the box, but his effort goes narrowly over the bar.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) volleys the ball from just outside the box, but his effort goes narrowly over the bar.",
"anonymized": "[PLAYER] ([TEAM]) volleys the ball from just outside the box, but his effort goes narrowly over the bar.",
"visibility": "shown",
"position": "2939000"
},
{
"important": false,
"gameTime": "2 - 48:31",
"label": "",
"description": "Carlos Velasco has a clear sight and sees a foul from Douglas Costa (Bayern Munich).",
"identified": "[REFEREE] has a clear sight and sees a foul from [PLAYER_fPOJMEfo] ([TEAM_]).",
"anonymized": "[REFEREE] has a clear sight and sees a foul from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2911000"
},
{
"important": true,
"gameTime": "2 - 46:02",
"label": "soccer-ball",
"description": "Thomas Muller (Bayern Munich) makes no mistake from the penalty spot after waiting for Roberto Jimenez to move before slotting the ball low into the middle of the goal!",
"identified": "[PLAYER_8KpOJV2B] ([TEAM_]) makes no mistake from the penalty spot after waiting for [PLAYER_bo57CU7b] to move before slotting the ball low into the middle of the goal!",
"anonymized": "[PLAYER] ([TEAM]) makes no mistake from the penalty spot after waiting for [PLAYER] to move before slotting the ball low into the middle of the goal!",
"visibility": "shown",
"position": "2762000"
},
{
"important": true,
"gameTime": "2 - 45:08",
"label": "",
"description": "Thomas Muller (Bayern Munich) will take the responsibility and he is already preparing the ball.",
"identified": "[PLAYER_8KpOJV2B] ([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": "2708000"
},
{
"important": true,
"gameTime": "2 - 45:05",
"label": "penalty",
"description": "Arthur Masuaku (Olympiacos Piraeus) robs an opponent of the ball and explodes in anger when Carlos Velasco blows for a foul. The referee points to the penalty spot. It's a penalty for Bayern Munich!",
"identified": "[PLAYER_4YoV0hmC] ([TEAM_]) robs an opponent of the ball and explodes in anger when [REFEREE] blows for a foul. The referee points to the penalty spot. It's a penalty for [TEAM_]!",
"anonymized": "[PLAYER] ([TEAM]) robs an opponent of the ball and explodes in anger when [REFEREE] blows for a foul. The referee points to the penalty spot. It's a penalty for [TEAM]!",
"visibility": "shown",
"position": "2705000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "There will be a minimum of 4 min. of added time.",
"identified": "There will be a minimum of 4 min. of added time.",
"anonymized": "There will be a minimum of 4 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 44:07",
"label": "",
"description": "Arthur Masuaku (Olympiacos Piraeus) sends a cross into the box, but Manuel Neuer comes off his line to gather the ball.",
"identified": "[PLAYER_4YoV0hmC] ([TEAM_]) sends a cross into the box, but [PLAYER_Sh5KwIo6] comes off his line to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but [PLAYER] comes off his line to gather the ball.",
"visibility": "shown",
"position": "2647000"
},
{
"important": true,
"gameTime": "2 - 43:38",
"label": "soccer-ball",
"description": "Goal - 0:2! Kingsley Coman tees up Mario Gotze (Bayern Munich) inside the box and he rolls the ball into the bottom left corner and past Roberto Jimenez.",
"identified": "Goal - 0:2! [PLAYER_zHWLJOHq] tees up [PLAYER_veaF8P5m] ([TEAM_]) inside the box and he rolls the ball into the bottom left corner and past [PLAYER_bo57CU7b].",
"anonymized": "Goal - 0:2! [PLAYER] tees up [PLAYER] ([TEAM]) inside the box and he rolls the ball into the bottom left corner and past [PLAYER].",
"visibility": "shown",
"position": "2618000"
},
{
"important": false,
"gameTime": "2 - 42:05",
"label": "",
"description": "The referee blows his whistle, a clear handball by Leandro Salino (Olympiacos Piraeus).",
"identified": "The referee blows his whistle, a clear handball by [PLAYER_YH4CbOUu] ([TEAM_]).",
"anonymized": "The referee blows his whistle, a clear handball by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2525000"
},
{
"important": false,
"gameTime": "2 - 41:49",
"label": "",
"description": "Hernani (Olympiacos Piraeus) puts a cross into the box from the free kick, but the defender gets there first.",
"identified": "[PLAYER_WGV4qaf2] ([TEAM_]) puts a cross into the box from the free kick, but the defender gets there first.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the free kick, but the defender gets there first.",
"visibility": "shown",
"position": "2509000"
},
{
"important": true,
"gameTime": "2 - 40:03",
"label": "y-card",
"description": "Carlos Velasco shows a yellow card to Joshua Kimmich (Bayern Munich) for his blatant foul.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_MkMrkZLc] ([TEAM_]) for his blatant foul.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for his blatant foul.",
"visibility": "shown",
"position": "2403000"
},
{
"important": false,
"gameTime": "2 - 39:19",
"label": "attendance",
"description": "The attendance for today's match is 31688.",
"identified": "The attendance for today's match is 31688.",
"anonymized": "The attendance for today's match is 31688.",
"visibility": "shown",
"position": "2359000"
},
{
"important": true,
"gameTime": "2 - 37:41",
"label": "",
"description": "Leandro Salino (Olympiacos Piraeus) receives a brilliant pass and wastes a big opportunity as his shot from inside the penalty area flies narrowly wide of the right post.",
"identified": "[PLAYER_YH4CbOUu] ([TEAM_]) receives a brilliant pass and wastes a big opportunity as his shot from inside the penalty area flies narrowly wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) receives a brilliant pass and wastes a big opportunity as his shot from inside the penalty area flies narrowly wide of the right post.",
"visibility": "shown",
"position": "2261000"
},
{
"important": true,
"gameTime": "2 - 35:30",
"label": "substitution",
"description": "Substitution. Seba (Olympiacos Piraeus) in, Felipe Pardo out.",
"identified": "Substitution. [PLAYER_QXXJtcQI] ([TEAM_]) in, [PLAYER_l2uTD7Km] out.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) in, [PLAYER] out.",
"visibility": "shown",
"position": "2130000"
},
{
"important": false,
"gameTime": "2 - 35:20",
"label": "funfact",
"description": "The current number of shots on target for both teams is 9:22.",
"identified": "The current number of shots on target for both teams is 9:22.",
"anonymized": "The current number of shots on target for both teams is 9:22.",
"visibility": "shown",
"position": "2120000"
},
{
"important": false,
"gameTime": "2 - 34:49",
"label": "",
"description": "Mario Gotze (Bayern Munich) commits a foul and Carlos Velasco immediately signals a free kick.",
"identified": "[PLAYER_veaF8P5m] ([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": "2089000"
},
{
"important": false,
"gameTime": "2 - 33:32",
"label": "corner",
"description": "Douglas Costa (Bayern Munich) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but the opposition's defence is ready and clears the ball to safety.",
"visibility": "shown",
"position": "2012000"
},
{
"important": true,
"gameTime": "2 - 33:26",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Mario Gotze (Bayern Munich) replaces Arturo Vidal.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_veaF8P5m] ([TEAM_]) replaces [PLAYER_jg1LwcpG].",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "2006000"
},
{
"important": false,
"gameTime": "2 - 32:48",
"label": "",
"description": "Arturo Vidal (Bayern Munich) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. Bayern Munich get a corner.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. [TEAM_] get a corner.",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound just outside the box, but his attempt is blocked by one of the defending players. [TEAM] get a corner.",
"visibility": "shown",
"position": "1968000"
},
{
"important": true,
"gameTime": "2 - 30:02",
"label": "substitution",
"description": "Pep Guardiola is forced to make a change. Xabi Alonso is not able to carry on due to injury. He is replaced by Joshua Kimmich (Bayern Munich).",
"identified": "[COACH_hxNijWrJ] is forced to make a change. [PLAYER_hAcTWKKN] is not able to carry on due to injury. He is replaced by [PLAYER_MkMrkZLc] ([TEAM_]).",
"anonymized": "[COACH] is forced to make a change. [PLAYER] is not able to carry on due to injury. He is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1802000"
},
{
"important": false,
"gameTime": "2 - 28:13",
"label": "",
"description": "Arturo Vidal (Bayern Munich) makes a reckless foul in order to win the ball from his opponent. Carlos Velasco has a clear sight of it and blows his whistle.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) makes a reckless foul in order to win the ball from his opponent. [REFEREE] has a clear sight of it and blows his whistle.",
"visibility": "shown",
"position": "1693000"
},
{
"important": false,
"gameTime": "2 - 26:21",
"label": "injury",
"description": "Xabi Alonso (Bayern Munich) is asking for medical treatment after picking up an injury.",
"identified": "[PLAYER_hAcTWKKN] ([TEAM_]) is asking for medical treatment after picking up an injury.",
"anonymized": "[PLAYER] ([TEAM]) is asking for medical treatment after picking up an injury.",
"visibility": "shown",
"position": "1581000"
},
{
"important": false,
"gameTime": "2 - 26:11",
"label": "",
"description": "Pajtim Kasami (Olympiacos Piraeus) was trying to get to the ball but clattered into the legs of the opponent as well. Carlos Velasco blows his whistle for an infringement.",
"identified": "[PLAYER_KrODGzyo] ([TEAM_]) was trying to get to the ball but clattered into the legs of the opponent as well. [REFEREE] blows his whistle for an infringement.",
"anonymized": "[PLAYER] ([TEAM]) was trying to get to the ball but clattered into the legs of the opponent as well. [REFEREE] blows his whistle for an infringement.",
"visibility": "shown",
"position": "1571000"
},
{
"important": false,
"gameTime": "2 - 25:44",
"label": "",
"description": "The ball is cleared after Douglas Costa (Bayern Munich) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_fPOJMEfo] ([TEAM_]) attempted to dribble past an opposing player.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player.",
"visibility": "shown",
"position": "1544000"
},
{
"important": false,
"gameTime": "2 - 23:21",
"label": "",
"description": "Flag goes up against Philipp Lahm (Bayern Munich) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_MB26hXLr] ([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": "1401000"
},
{
"important": true,
"gameTime": "2 - 22:47",
"label": "",
"description": "Thomas Muller (Bayern Munich) gets to the rebound inside the box and shoots to the top right corner, but his sidefooter is blocked by an alert Roberto Jimenez. What a save!",
"identified": "[PLAYER_8KpOJV2B] ([TEAM_]) gets to the rebound inside the box and shoots to the top right corner, but his sidefooter is blocked by an alert [PLAYER_bo57CU7b]. What a save!",
"anonymized": "[PLAYER] ([TEAM]) gets to the rebound inside the box and shoots to the top right corner, but his sidefooter is blocked by an alert [PLAYER]. What a save!",
"visibility": "shown",
"position": "1367000"
},
{
"important": false,
"gameTime": "2 - 22:11",
"label": "",
"description": "Thomas Muller (Bayern Munich) 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.",
"identified": "[PLAYER_8KpOJV2B] ([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.",
"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.",
"visibility": "shown",
"position": "1331000"
},
{
"important": false,
"gameTime": "2 - 21:00",
"label": "",
"description": "Thiago Alcantara (Bayern Munich) got on the ball on the edge of the box and blazed a first-time shot well over the bar.",
"identified": "[PLAYER_vcSKqUSq] ([TEAM_]) got on the ball on the edge of the box and blazed a first-time shot well over the bar.",
"anonymized": "[PLAYER] ([TEAM]) got on the ball on the edge of the box and blazed a first-time shot well over the bar.",
"visibility": "shown",
"position": "1260000"
},
{
"important": true,
"gameTime": "2 - 20:23",
"label": "substitution",
"description": "It is time for a substitution. Konstantinos Fortounis (Olympiacos Piraeus) is on for Esteban Cambiasso.",
"identified": "It is time for a substitution. [PLAYER_WIPOXg1o] ([TEAM_]) is on for [PLAYER_8ptXjW8f].",
"anonymized": "It is time for a substitution. [PLAYER] ([TEAM]) is on for [PLAYER].",
"visibility": "shown",
"position": "1223000"
},
{
"important": false,
"gameTime": "2 - 19:50",
"label": "",
"description": "Another attempt to send the ball beyond the defence by Xabi Alonso (Bayern Munich) is thwarted and cleared to safety.",
"identified": "Another attempt to send the ball beyond the defence by [PLAYER_hAcTWKKN] ([TEAM_]) is thwarted and cleared to safety.",
"anonymized": "Another attempt to send the ball beyond the defence by [PLAYER] ([TEAM]) is thwarted and cleared to safety.",
"visibility": "shown",
"position": "1190000"
},
{
"important": false,
"gameTime": "2 - 17:49",
"label": "",
"description": "Xabi Alonso (Bayern Munich) takes a first-time shot from the edge of the box, but his own player gets in the way and blocks it. The game is interrupted as Thomas Muller (Bayern Munich) is flagged offside.",
"identified": "[PLAYER_hAcTWKKN] ([TEAM_]) takes a first-time shot from the edge of the box, but his own player gets in the way and blocks it. The game is interrupted as [PLAYER_8KpOJV2B] ([TEAM_]) is flagged offside.",
"anonymized": "[PLAYER] ([TEAM]) takes a first-time shot from the edge of the box, but his own player gets in the way and blocks it. The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "1069000"
},
{
"important": false,
"gameTime": "2 - 17:19",
"label": "",
"description": "Bayern Munich seem to be finding their feet as they enjoy some possession. Great movement by the offensive players allows the defenders to set up the attack.",
"identified": "[TEAM_] seem to be finding their feet as they enjoy some possession. Great movement by the offensive players allows the defenders to set up the attack.",
"anonymized": "[TEAM] seem to be finding their feet as they enjoy some possession. Great movement by the offensive players allows the defenders to set up the attack.",
"visibility": "shown",
"position": "1039000"
},
{
"important": false,
"gameTime": "2 - 16:23",
"label": "",
"description": "Referee Carlos Velasco sees the trip by Omar Elabdellaoui (Olympiakos Piraeus) and doesn't hesitate to blow his whistle.",
"identified": "Referee [REFEREE] sees the trip by [PLAYER_Gr7z9FSE] ([TEAM_]) and doesn't hesitate to blow his whistle.",
"anonymized": "Referee [REFEREE] sees the trip by [PLAYER] ([TEAM]) and doesn't hesitate to blow his whistle.",
"visibility": "shown",
"position": "983000"
},
{
"important": true,
"gameTime": "2 - 15:25",
"label": "substitution",
"description": "Marco Silva has decided to substitute Alejandro Dominguez and he is replaced by Hernani (Olympiacos Piraeus).",
"identified": "[COACH_GxXzVQFQ] has decided to substitute [PLAYER_SzCvIELK] and he is replaced by [PLAYER_WGV4qaf2] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "925000"
},
{
"important": false,
"gameTime": "2 - 14:54",
"label": "",
"description": "Kingsley Coman (Bayern Munich) receives a precise pass on the edge of the box and shoots. His poorly placed shot flies well wide of the left post.",
"identified": "[PLAYER_zHWLJOHq] ([TEAM_]) receives a precise pass on the edge of the box and shoots. His poorly placed shot flies well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) receives a precise pass on the edge of the box and shoots. His poorly placed shot flies well wide of the left post.",
"visibility": "shown",
"position": "894000"
},
{
"important": true,
"gameTime": "2 - 13:32",
"label": "substitution",
"description": "Substitution. Robert Lewandowski makes way for Kingsley Coman (Bayern Munich).",
"identified": "Substitution. [PLAYER_MVC8zHZD] makes way for [PLAYER_zHWLJOHq] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] makes way for [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "812000"
},
{
"important": false,
"gameTime": "2 - 12:41",
"label": "",
"description": "Thiago Alcantara (Bayern Munich) plays a through ball inside the box, but it's too strong and Roberto Jimenez comes off his line to intercept.",
"identified": "[PLAYER_vcSKqUSq] ([TEAM_]) plays a through ball inside the box, but it's too strong and [PLAYER_bo57CU7b] comes off his line to intercept.",
"anonymized": "[PLAYER] ([TEAM]) plays a through ball inside the box, but it's too strong and [PLAYER] comes off his line to intercept.",
"visibility": "shown",
"position": "761000"
},
{
"important": false,
"gameTime": "2 - 11:29",
"label": "",
"description": "Alejandro Dominguez (Olympiacos Piraeus) sends a teasing cross into the area, but Manuel Neuer intercepts the ball.",
"identified": "[PLAYER_SzCvIELK] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_Sh5KwIo6] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "689000"
},
{
"important": false,
"gameTime": "2 - 11:03",
"label": "corner",
"description": "Alejandro Dominguez (Olympiacos Piraeus) takes the corner and sends it into the penalty area, but the opposition's defence is ready and makes a good clearance.",
"identified": "[PLAYER_SzCvIELK] ([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": "663000"
},
{
"important": true,
"gameTime": "2 - 10:31",
"label": "",
"description": "Brown Ideye (Olympiacos Piraeus) receives a low pass just outside the box and unleashes a fine strike towards the roof of the net. Manuel Neuer pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed. The ball is out of play. A goal-scoring opportunity from a corner for Olympiacos Piraeus.",
"identified": "[PLAYER_hp8zk56r] ([TEAM_]) receives a low pass just outside the box and unleashes a fine strike towards the roof of the net. [PLAYER_Sh5KwIo6] pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) receives a low pass just outside the box and unleashes a fine strike towards the roof of the net. [PLAYER] pulls off a reflexive save to block his effort. Nice goalkeeping skill, indeed. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "631000"
},
{
"important": false,
"gameTime": "2 - 08:12",
"label": "",
"description": "Half-chance! Leandro Salino (Olympiacos Piraeus) plays a pass into the box, but Manuel Neuer reacts well to snuff out the attack.",
"identified": "Half-chance! [PLAYER_YH4CbOUu] ([TEAM_]) plays a pass into the box, but [PLAYER_Sh5KwIo6] 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": "492000"
},
{
"important": true,
"gameTime": "2 - 06:33",
"label": "soccer-ball",
"description": "Thomas Muller (Bayern Munich) scores a stunning goal! With perfect technique he sends a shot from 30 metres exactly into the top left corner. Superb strike!",
"identified": "[PLAYER_8KpOJV2B] ([TEAM_]) scores a stunning goal! With perfect technique he sends a shot from 30 metres exactly into the top left corner. Superb strike!",
"anonymized": "[PLAYER] ([TEAM]) scores a stunning goal! With perfect technique he sends a shot from 30 metres exactly into the top left corner. Superb strike!",
"visibility": "shown",
"position": "393000"
},
{
"important": false,
"gameTime": "2 - 04:37",
"label": "",
"description": "Thomas Muller (Bayern Munich) attempts a volley from the edge of the box that goes a couple of yards wide of the left post.",
"identified": "[PLAYER_8KpOJV2B] ([TEAM_]) attempts a volley from the edge of the box that goes a couple of yards wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) attempts a volley from the edge of the box that goes a couple of yards wide of the left post.",
"visibility": "shown",
"position": "277000"
},
{
"important": false,
"gameTime": "2 - 02:55",
"label": "",
"description": "Felipe Pardo (Olympiacos Piraeus) is disappointed with himself because he got into a good area but produced a poor cross.",
"identified": "[PLAYER_l2uTD7Km] ([TEAM_]) is disappointed with himself because he got into a good area but produced a poor cross.",
"anonymized": "[PLAYER] ([TEAM]) is disappointed with himself because he got into a good area but produced a poor cross.",
"visibility": "shown",
"position": "175000"
},
{
"important": false,
"gameTime": "2 - 02:17",
"label": "",
"description": "Arturo Vidal (Bayern Munich) escapes without any punishment from the referee after using excessive force to foul his opponent.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) escapes without any punishment from the referee after using excessive force to foul his opponent.",
"anonymized": "[PLAYER] ([TEAM]) escapes without any punishment from the referee after using excessive force to foul his opponent.",
"visibility": "shown",
"position": "137000"
},
{
"important": false,
"gameTime": "2 - 01:13",
"label": "",
"description": "Arturo Vidal (Bayern Munich) collects a pass and has an effort from 30 metres out, but it flies just wide of the left post.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) collects a pass and has an effort from 30 metres out, but it flies just wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and has an effort from 30 metres out, but it flies just wide of the left post.",
"visibility": "shown",
"position": "73000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The whistle blows and Carlos Velasco starts the second half.",
"identified": "The whistle blows and [REFEREE] starts the second half.",
"anonymized": "The whistle blows and [REFEREE] starts the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "Well, a decent first half here. It's certainly not boring, but not the best match either. The away side is controlling this game. The home team's main priority is a flawless defence, while the away side's style is slow build-up play.",
"identified": "Well, a decent first half here. It's certainly not boring, but not the best match either. The away side is controlling this game. The home team's main priority is a flawless defence, while the away side's style is slow build-up play.",
"anonymized": "Well, a decent first half here. It's certainly not boring, but not the best match either. The away side is controlling this game. The home team's main priority is a flawless defence, while the away side's style is slow build-up play.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:41",
"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": "2741000"
},
{
"important": true,
"gameTime": "1 - 44:55",
"label": "y-card",
"description": "Thomas Muller (Bayern Munich) is cautioned by the referee for a foul that he committed a little earlier.",
"identified": "[PLAYER_8KpOJV2B] ([TEAM_]) is cautioned by the referee for a foul that he committed a little earlier.",
"anonymized": "[PLAYER] ([TEAM]) is cautioned by the referee for a foul that he committed a little earlier.",
"visibility": "shown",
"position": "2695000"
},
{
"important": false,
"gameTime": "1 - 44:54",
"label": "",
"description": "Carlos Velasco interrupts the game for a tactical foul by Thomas Muller (Bayern Munich).",
"identified": "[REFEREE] interrupts the game for a tactical foul by [PLAYER_8KpOJV2B] ([TEAM_]).",
"anonymized": "[REFEREE] interrupts the game for a tactical foul by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2694000"
},
{
"important": false,
"gameTime": "1 - 44:14",
"label": "",
"description": "That's a well played offside trap. Brown Ideye (Olympiacos Piraeus) is flagged for offside, ending the attack.",
"identified": "That's a well played offside trap. [PLAYER_hp8zk56r] ([TEAM_]) is flagged for offside, ending the attack.",
"anonymized": "That's a well played offside trap. [PLAYER] ([TEAM]) is flagged for offside, ending the attack.",
"visibility": "shown",
"position": "2654000"
},
{
"important": false,
"gameTime": "1 - 43:39",
"label": "corner",
"description": "The corner by Alejandro Dominguez (Olympiacos Piraeus) lacks accuracy as it's hit with too much power.",
"identified": "The corner by [PLAYER_SzCvIELK] ([TEAM_]) lacks accuracy as it's hit with too much power.",
"anonymized": "The corner by [PLAYER] ([TEAM]) lacks accuracy as it's hit with too much power.",
"visibility": "shown",
"position": "2619000"
},
{
"important": false,
"gameTime": "1 - 43:21",
"label": "",
"description": "Alejandro Dominguez (Olympiacos Piraeus) tries to pass the ball into the penalty area but it's blocked. Olympiacos Piraeus will have a chance to score from a corner kick.",
"identified": "[PLAYER_SzCvIELK] ([TEAM_]) tries to pass the ball into the penalty area but it's blocked. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) tries to pass the ball into the penalty area but it's blocked. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "2601000"
},
{
"important": true,
"gameTime": "1 - 42:38",
"label": "",
"description": "What a chance for Xabi Alonso (Bayern Munich) as he produced a stunning snap shot from the edge of the box! The goalkeeper was a bit lucky as the ball went just wide of the right post.",
"identified": "What a chance for [PLAYER_hAcTWKKN] ([TEAM_]) as he produced a stunning snap shot from the edge of the box! The goalkeeper was a bit lucky as the ball went just wide of the right post.",
"anonymized": "What a chance for [PLAYER] ([TEAM]) as he produced a stunning snap shot from the edge of the box! The goalkeeper was a bit lucky as the ball went just wide of the right post.",
"visibility": "shown",
"position": "2558000"
},
{
"important": false,
"gameTime": "1 - 41:14",
"label": "",
"description": "Carlos Velasco blows his whistle and it's Felipe Pardo (Olympiacos Piraeus) who is penalised for an offensive foul. Good decision by the referee.",
"identified": "[REFEREE] blows his whistle and it's [PLAYER_l2uTD7Km] ([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": "2474000"
},
{
"important": false,
"gameTime": "1 - 40:36",
"label": "corner",
"description": "Xabi Alonso (Bayern Munich) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety.",
"identified": "[PLAYER_hAcTWKKN] ([TEAM_]) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick and sends the ball among a huddle of players inside the penalty area, but one of the defenders clears it to safety.",
"visibility": "shown",
"position": "2436000"
},
{
"important": false,
"gameTime": "1 - 40:19",
"label": "",
"description": "Juan Bernat (Bayern Munich) fails to find any of his teammates inside the box as his pass is blocked. The ball goes behind for a corner. Bayern Munich will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_Cd1ieN88] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2419000"
},
{
"important": false,
"gameTime": "1 - 39:57",
"label": "",
"description": "Manuel da Costa (Olympiacos Piraeus) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"identified": "[PLAYER_8C2gn9kg] ([TEAM_]) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"anonymized": "[PLAYER] ([TEAM]) peeled away from his marker and got on the end of the resulting corner, but he sends his header straight at the goalkeeper.",
"visibility": "shown",
"position": "2397000"
},
{
"important": false,
"gameTime": "1 - 39:45",
"label": "corner",
"description": "There's an opportunity for Alejandro Dominguez (Olympiacos Piraeus) to deliver the ball into the box from a corner.",
"identified": "There's an opportunity for [PLAYER_SzCvIELK] ([TEAM_]) to deliver the ball into the box from a corner.",
"anonymized": "There's an opportunity for [PLAYER] ([TEAM]) to deliver the ball into the box from a corner.",
"visibility": "shown",
"position": "2385000"
},
{
"important": false,
"gameTime": "1 - 39:19",
"label": "",
"description": "Felipe Pardo (Olympiacos Piraeus) sends a pass into the box, but his attempt is thwarted and cleared. The ball is out of play. Olympiacos Piraeus will have a chance to score from a corner.",
"identified": "[PLAYER_l2uTD7Km] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "2359000"
},
{
"important": false,
"gameTime": "1 - 38:18",
"label": "",
"description": "The free kick into the penalty area from Leandro Salino (Olympiacos Piraeus) is cleared.",
"identified": "The free kick into the penalty area from [PLAYER_YH4CbOUu] ([TEAM_]) is cleared.",
"anonymized": "The free kick into the penalty area from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "2298000"
},
{
"important": false,
"gameTime": "1 - 38:06",
"label": "",
"description": "Arturo Vidal (Bayern Munich) was too forceful with his tackle and Carlos Velasco interrupted the game to signal a free kick. Olympiacos Piraeus are awarded a free kick.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. [TEAM_] are awarded a free kick.",
"anonymized": "[PLAYER] ([TEAM]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick. [TEAM] are awarded a free kick.",
"visibility": "shown",
"position": "2286000"
},
{
"important": false,
"gameTime": "1 - 36:47",
"label": "",
"description": "Juan Bernat (Bayern Munich) collects a pass and has an effort from 22 metres out, but it flies just over the crossbar.",
"identified": "[PLAYER_Cd1ieN88] ([TEAM_]) collects a pass and has an effort from 22 metres out, but it flies just over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and has an effort from 22 metres out, but it flies just over the crossbar.",
"visibility": "shown",
"position": "2207000"
},
{
"important": false,
"gameTime": "1 - 36:15",
"label": "",
"description": "Thiago Alcantara (Bayern Munich) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"identified": "[PLAYER_vcSKqUSq] ([TEAM_]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"anonymized": "[PLAYER] ([TEAM]) reacts well to get to the rebound and takes a shot from the edge of the box, but he fails to get the ball through the players standing between him and the goal.",
"visibility": "shown",
"position": "2175000"
},
{
"important": false,
"gameTime": "1 - 35:53",
"label": "",
"description": "Carlos Velasco couldn't ignore the rough tackle by Leandro Salino (Olympiacos Piraeus) and blew his whistle.",
"identified": "[REFEREE] couldn't ignore the rough tackle by [PLAYER_YH4CbOUu] ([TEAM_]) and blew his whistle.",
"anonymized": "[REFEREE] couldn't ignore the rough tackle by [PLAYER] ([TEAM]) and blew his whistle.",
"visibility": "shown",
"position": "2153000"
},
{
"important": false,
"gameTime": "1 - 34:41",
"label": "",
"description": "Douglas Costa (Bayern Munich) is well placed to meet a cross and sends a difficult header directed into the roof of the net, but the goalkeeper reacts well to stop his effort.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) is well placed to meet a cross and sends a difficult header directed into the roof of the net, but the goalkeeper reacts well to stop his effort.",
"anonymized": "[PLAYER] ([TEAM]) is well placed to meet a cross and sends a difficult header directed into the roof of the net, but the goalkeeper reacts well to stop his effort.",
"visibility": "shown",
"position": "2081000"
},
{
"important": true,
"gameTime": "1 - 34:05",
"label": "",
"description": "Robert Lewandowski (Bayern Munich) darts into the penalty area to latch on to a pass, and he unleashes a shot towards the middle of the net, but Roberto Jimenez is alert and denies him.",
"identified": "[PLAYER_MVC8zHZD] ([TEAM_]) darts into the penalty area to latch on to a pass, and he unleashes a shot towards the middle of the net, but [PLAYER_bo57CU7b] is alert and denies him.",
"anonymized": "[PLAYER] ([TEAM]) darts into the penalty area to latch on to a pass, and he unleashes a shot towards the middle of the net, but [PLAYER] is alert and denies him.",
"visibility": "shown",
"position": "2045000"
},
{
"important": false,
"gameTime": "1 - 33:27",
"label": "",
"description": "Douglas Costa (Bayern Munich) latches on to a precise pass and one-on-one with the keeper slams the ball towards the middle of the goal. Roberto Jimenez is alert, though, and makes an easy save to deny him.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) latches on to a precise pass and one-on-one with the keeper slams the ball towards the middle of the goal. [PLAYER_bo57CU7b] is alert, though, and makes an easy save to deny him.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise pass and one-on-one with the keeper slams the ball towards the middle of the goal. [PLAYER] is alert, though, and makes an easy save to deny him.",
"visibility": "shown",
"position": "2007000"
},
{
"important": false,
"gameTime": "1 - 31:09",
"label": "",
"description": "Arturo Vidal (Bayern Munich) sends a sweet pass into the penalty area, but one of the defenders averts the danger.",
"identified": "[PLAYER_jg1LwcpG] ([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": "1869000"
},
{
"important": false,
"gameTime": "1 - 29:49",
"label": "",
"description": "Alejandro Dominguez (Olympiacos Piraeus) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"identified": "[PLAYER_SzCvIELK] ([TEAM_]) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"anonymized": "[PLAYER] ([TEAM]) fails to deliver a decent cross from a long-range free kick. The opposition's defence intercepts the effort.",
"visibility": "shown",
"position": "1789000"
},
{
"important": false,
"gameTime": "1 - 28:20",
"label": "",
"description": "Arturo Vidal (Bayern Munich) commits a rough foul. Carlos Velasco stops the game and makes a call.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call.",
"visibility": "shown",
"position": "1700000"
},
{
"important": false,
"gameTime": "1 - 26:54",
"label": "",
"description": "The linesman raises his flag for offside before Leandro Salino (Olympiacos Piraeus) heads on.",
"identified": "The linesman raises his flag for offside before [PLAYER_YH4CbOUu] ([TEAM_]) heads on.",
"anonymized": "The linesman raises his flag for offside before [PLAYER] ([TEAM]) heads on.",
"visibility": "shown",
"position": "1614000"
},
{
"important": false,
"gameTime": "1 - 26:09",
"label": "",
"description": "Xabi Alonso (Bayern Munich) shoots after receiving a good pass. His effort from the edge of the box goes just wide of the left post.",
"identified": "[PLAYER_hAcTWKKN] ([TEAM_]) shoots after receiving a good pass. His effort from the edge of the box goes just wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) shoots after receiving a good pass. His effort from the edge of the box goes just wide of the left post.",
"visibility": "shown",
"position": "1569000"
},
{
"important": true,
"gameTime": "1 - 25:27",
"label": "",
"description": "Robert Lewandowski (Bayern Munich) meets a cross from the resulting free kick and aims a low header towards the middle of the goal, but one of the defenders makes a vital goal-line clearance.",
"identified": "[PLAYER_MVC8zHZD] ([TEAM_]) meets a cross from the resulting free kick and aims a low header towards the middle of the goal, but one of the defenders makes a vital goal-line clearance.",
"anonymized": "[PLAYER] ([TEAM]) meets a cross from the resulting free kick and aims a low header towards the middle of the goal, but one of the defenders makes a vital goal-line clearance.",
"visibility": "shown",
"position": "1527000"
},
{
"important": false,
"gameTime": "1 - 24:55",
"label": "",
"description": "Xabi Alonso (Bayern Munich) is going to send the ball in from the free kick.",
"identified": "[PLAYER_hAcTWKKN] ([TEAM_]) is going to send the ball in from the free kick.",
"anonymized": "[PLAYER] ([TEAM]) is going to send the ball in from the free kick.",
"visibility": "shown",
"position": "1495000"
},
{
"important": true,
"gameTime": "1 - 24:37",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Omar Elabdellaoui (Olympiacos Piraeus) was quite harsh and Carlos Velasco didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_Gr7z9FSE] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"anonymized": "This yellow card was deserved. The tackle by [PLAYER] ([TEAM]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"visibility": "shown",
"position": "1477000"
},
{
"important": false,
"gameTime": "1 - 24:10",
"label": "",
"description": "Omar Elabdellaoui (Olympiakos Piraeus) with a slide tackle, but referee Carlos Velasco calls for a foul. A free kick to Bayern Munich.",
"identified": "[PLAYER_Gr7z9FSE] ([TEAM_]) with a slide tackle, but referee [REFEREE] calls for a foul. A free kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) with a slide tackle, but referee [REFEREE] calls for a foul. A free kick to [TEAM].",
"visibility": "shown",
"position": "1450000"
},
{
"important": true,
"gameTime": "1 - 22:20",
"label": "y-card",
"description": "Esteban Cambiasso (Olympiacos Piraeus) attempts to discuss the decision with Carlos Velasco, but he soon realises that it's not the right thing to do as he sees the yellow.",
"identified": "[PLAYER_8ptXjW8f] ([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": "1340000"
},
{
"important": false,
"gameTime": "1 - 21:09",
"label": "",
"description": "Arturo Vidal (Bayern Munich) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"identified": "[PLAYER_jg1LwcpG] ([TEAM_]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"anonymized": "[PLAYER] ([TEAM]) finds himself beyond the last defender, but the game is stopped by the referee after the linesman signals for offside.",
"visibility": "shown",
"position": "1269000"
},
{
"important": false,
"gameTime": "1 - 20:49",
"label": "",
"description": "Robert Lewandowski (Bayern Munich) is flagged for offside.",
"identified": "[PLAYER_MVC8zHZD] ([TEAM_]) is flagged for offside.",
"anonymized": "[PLAYER] ([TEAM]) is flagged for offside.",
"visibility": "shown",
"position": "1249000"
},
{
"important": false,
"gameTime": "1 - 20:31",
"label": "",
"description": "An accurate cross finds its way to Brown Ideye (Olympiacos Piraeus) who sends in a bullet header towards the inside of the right post from just outside the box, but the goalkeeper makes the save.",
"identified": "An accurate cross finds its way to [PLAYER_hp8zk56r] ([TEAM_]) who sends in a bullet header towards the inside of the right post from just outside the box, but the goalkeeper makes the save.",
"anonymized": "An accurate cross finds its way to [PLAYER] ([TEAM]) who sends in a bullet header towards the inside of the right post from just outside the box, but the goalkeeper makes the save.",
"visibility": "shown",
"position": "1231000"
},
{
"important": false,
"gameTime": "1 - 18:49",
"label": "",
"description": "Roberto Jimenez is alert and has a clear sight of a long through ball from Philipp Lahm (Bayern Munich). Easy save!",
"identified": "[PLAYER_bo57CU7b] is alert and has a clear sight of a long through ball from [PLAYER_MB26hXLr] ([TEAM_]). Easy save!",
"anonymized": "[PLAYER] is alert and has a clear sight of a long through ball from [PLAYER] ([TEAM]). Easy save!",
"visibility": "shown",
"position": "1129000"
},
{
"important": false,
"gameTime": "1 - 18:25",
"label": "corner",
"description": "Douglas Costa (Bayern Munich) goes over to take the corner kick and it looks like he will swing the ball into the penalty box.",
"identified": "[PLAYER_fPOJMEfo] ([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": "1105000"
},
{
"important": false,
"gameTime": "1 - 18:06",
"label": "",
"description": "Douglas Costa (Bayern Munich) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. Bayern Munich will take a corner kick.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. [TEAM_] will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it. [TEAM] will take a corner kick.",
"visibility": "shown",
"position": "1086000"
},
{
"important": false,
"gameTime": "1 - 15:26",
"label": "",
"description": "Arthur Masuaku (Olympiacos Piraeus) commits a foul after unfairly battling his opponent for the ball.",
"identified": "[PLAYER_4YoV0hmC] ([TEAM_]) commits a foul after unfairly battling his opponent for the ball.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after unfairly battling his opponent for the ball.",
"visibility": "shown",
"position": "926000"
},
{
"important": false,
"gameTime": "1 - 13:12",
"label": "",
"description": "Robert Lewandowski (Bayern Munich) fouls an opponent during an attacking move.",
"identified": "[PLAYER_MVC8zHZD] ([TEAM_]) fouls an opponent during an attacking move.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent during an attacking move.",
"visibility": "shown",
"position": "792000"
},
{
"important": false,
"gameTime": "1 - 12:12",
"label": "",
"description": "Thiago Alcantara (Bayern Munich) tries to create a chance, but puts too much weight on his pass.",
"identified": "[PLAYER_vcSKqUSq] ([TEAM_]) tries to create a chance, but puts too much weight on his pass.",
"anonymized": "[PLAYER] ([TEAM]) tries to create a chance, but puts too much weight on his pass.",
"visibility": "shown",
"position": "732000"
},
{
"important": false,
"gameTime": "1 - 11:18",
"label": "",
"description": "Douglas Costa (Bayern Munich) tries to send a pass but it's blocked.",
"identified": "[PLAYER_fPOJMEfo] ([TEAM_]) tries to send a pass but it's blocked.",
"anonymized": "[PLAYER] ([TEAM]) tries to send a pass but it's blocked.",
"visibility": "shown",
"position": "678000"
},
{
"important": false,
"gameTime": "1 - 10:19",
"label": "",
"description": "Manuel Neuer makes a save to deny the long-range effort from Alejandro Dominguez (Olympiacos Piraeus) towards the middle of the goal.",
"identified": "[PLAYER_Sh5KwIo6] makes a save to deny the long-range effort from [PLAYER_SzCvIELK] ([TEAM_]) towards the middle of the goal.",
"anonymized": "[PLAYER] makes a save to deny the long-range effort from [PLAYER] ([TEAM]) towards the middle of the goal.",
"visibility": "shown",
"position": "619000"
}
]
} |