File size: 75,670 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 |
{
"timestamp": "1481380200",
"score": "1 - 1",
"round": "14",
"teams": [
"1. FC Koln",
"Dortmund"
],
"lineup": {
"home": {
"tactic": "1-4-3-1-2",
"players": [
{
"hash": "CzoWAGbG",
"name": "Hector J.",
"captain": "(C)",
"detail_link": "/player/hector-jonas/CzoWAGbG/",
"short_name": "Hector",
"shirt_number": "14",
"country": "Germany",
"facts": [
{
"type": "8",
"time": "28' Rudnevs A. (Hector J.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Jonas Hector"
},
{
"hash": "Gr2FbER2",
"name": "Heintz D.",
"captain": "",
"detail_link": "/player/heintz-dominique/Gr2FbER2/",
"short_name": "Heintz",
"shirt_number": "3",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "53' Heintz D. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Dominique Heintz"
},
{
"hash": "25x3VJrm",
"name": "Hoger M.",
"captain": "",
"detail_link": "/player/hoger-marco/25x3VJrm/",
"short_name": "Hoger",
"shirt_number": "6",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "72' Hoger M. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Marco Hoger"
},
{
"hash": "Of3LLUNG",
"name": "Kessler T.",
"captain": "",
"detail_link": "/player/kessler-thomas/Of3LLUNG/",
"short_name": "Kessler",
"shirt_number": "18",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Thomas Kessler"
},
{
"hash": "2mPjO0Qb",
"name": "Mavraj M.",
"captain": "",
"detail_link": "/player/mavraj-mergim/2mPjO0Qb/",
"short_name": "Mavraj",
"shirt_number": "15",
"country": "Albania",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Mergim Mavraj"
},
{
"hash": "bPslqX1I",
"name": "Modeste A.",
"captain": "",
"detail_link": "/player/modeste-anthony/bPslqX1I/",
"short_name": "Modeste",
"shirt_number": "27",
"country": "France",
"facts": [
{
"type": "6",
"time": "87'",
"description": "Guirassy S.",
"linked_player_hash": "YXRCmup6"
}
],
"lineup": 11,
"starting": true,
"long_name": "Anthony Modeste"
},
{
"hash": "h82SW2HI",
"name": "Olkowski P.",
"captain": "",
"detail_link": "/player/olkowski-pawel/h82SW2HI/",
"short_name": "Olkowski",
"shirt_number": "16",
"country": "Poland",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Pawel Olkowski"
},
{
"hash": "OYzftLLu",
"name": "Osako Y.",
"captain": "",
"detail_link": "/player/osako-yuya/OYzftLLu/",
"short_name": "Osako",
"shirt_number": "13",
"country": "Japan",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Yuya Osako"
},
{
"hash": "2sPPKXyd",
"name": "Ozcan S.",
"captain": "",
"detail_link": "/player/ozcan-salih/2sPPKXyd/",
"short_name": "Ozcan",
"shirt_number": "20",
"country": "Turkey",
"facts": [
{
"type": "1",
"time": "65' Ozcan S. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Salih Ozcan"
},
{
"hash": "08j381B8",
"name": "Rudnevs A.",
"captain": "",
"detail_link": "/player/rudnevs-artjoms/08j381B8/",
"short_name": "Rudnevs",
"shirt_number": "9",
"country": "Latvia",
"facts": [
{
"type": "3",
"time": "28' Rudnevs A. (Hector J.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "76'",
"description": "Rausch K.",
"linked_player_hash": "xxdbKAzH"
}
],
"lineup": 10,
"starting": true,
"long_name": "Artjoms Rudnevs"
},
{
"hash": "2B1zRbP5",
"name": "Sorensen F.",
"captain": "",
"detail_link": "/player/sorensen-frederik/2B1zRbP5/",
"short_name": "Sorensen",
"shirt_number": "4",
"country": "Denmark",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Frederik Sorensen"
},
{
"hash": "YXRCmup6",
"name": "Guirassy S.",
"captain": "",
"detail_link": "/player/guirassy-serhou/YXRCmup6/",
"short_name": "Guirassy",
"shirt_number": "19",
"country": "Guinea",
"facts": [
{
"type": "7",
"time": "87'",
"description": "Modeste A.",
"linked_player_hash": "bPslqX1I"
}
],
"lineup": null,
"starting": false,
"long_name": "Serhou Guirassy"
},
{
"hash": "K4UetgpQ",
"name": "Hartel M.",
"captain": "",
"detail_link": "/player/hartel-marcel/K4UetgpQ/",
"short_name": "Hartel",
"shirt_number": "30",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marcel Hartel"
},
{
"hash": "04bDLIHq",
"name": "Jojic M.",
"captain": "",
"detail_link": "/player/jojic-milos/04bDLIHq/",
"short_name": "Jojic",
"shirt_number": "8",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Milos Jojic"
},
{
"hash": "xzjUWuy3",
"name": "Klunter L.",
"captain": "",
"detail_link": "/player/klunter-lukas/xzjUWuy3/",
"short_name": "Klunter",
"shirt_number": "24",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lukas Klunter"
},
{
"hash": "zPyzLTzJ",
"name": "Mladenovic F.",
"captain": "",
"detail_link": "/player/mladenovic-filip/zPyzLTzJ/",
"short_name": "Mladenovic",
"shirt_number": "25",
"country": "Serbia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Filip Mladenovic"
},
{
"hash": "M56LH19N",
"name": "Muller S.",
"captain": "",
"detail_link": "/player/muller-sven/M56LH19N/",
"short_name": "Muller",
"shirt_number": "35",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Sven Muller"
},
{
"hash": "xxdbKAzH",
"name": "Rausch K.",
"captain": "",
"detail_link": "/player/rausch-konstantin/xxdbKAzH/",
"short_name": "Rausch",
"shirt_number": "34",
"country": "Russia",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Rudnevs A.",
"linked_player_hash": "08j381B8"
}
],
"lineup": null,
"starting": false,
"long_name": "Konstantin Rausch"
}
],
"coach": [
{
"hash": "reodBQIi",
"name": "Stoger P.",
"captain": "",
"detail_link": "/player/stoger-peter/reodBQIi/",
"short_name": "Stoger P.",
"shirt_number": "",
"country": "Austria",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Peter Stoger"
}
]
},
"away": {
"tactic": "1-3-4-3",
"players": [
{
"hash": "Wl4EyKZk",
"name": "Aubameyang P.",
"captain": "",
"detail_link": "/player/aubameyang-pierre-emerick/Wl4EyKZk/",
"short_name": "Aubameyang",
"shirt_number": "17",
"country": "Gabon",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Pierre-Emerick Aubameyang"
},
{
"hash": "tWNcwyFS",
"name": "Castro G.",
"captain": "",
"detail_link": "/player/castro-gonzalo/tWNcwyFS/",
"short_name": "Castro",
"shirt_number": "27",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "53'",
"description": "Rode S.",
"linked_player_hash": "2ukcBSGo"
}
],
"lineup": 7,
"starting": true,
"long_name": "Gonzalo Castro"
},
{
"hash": "zsMC2Ec0",
"name": "Dembele O.",
"captain": "",
"detail_link": "/player/dembele-ousmane/zsMC2Ec0/",
"short_name": "Dembele",
"shirt_number": "7",
"country": "France",
"facts": [
{
"type": "1",
"time": "45+1' Dembele O. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Ousmane Dembele"
},
{
"hash": "SCOMojXE",
"name": "Durm E.",
"captain": "",
"detail_link": "/player/durm-erik/SCOMojXE/",
"short_name": "Durm",
"shirt_number": "37",
"country": "Germany",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Erik Durm"
},
{
"hash": "27fpNoQk",
"name": "Ginter M.",
"captain": "",
"detail_link": "/player/ginter-matthias/27fpNoQk/",
"short_name": "Ginter",
"shirt_number": "28",
"country": "Germany",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Matthias Ginter"
},
{
"hash": "AZgM33p0",
"name": "Piszczek L.",
"captain": "",
"detail_link": "/player/piszczek-lukasz/AZgM33p0/",
"short_name": "Piszczek",
"shirt_number": "26",
"country": "Poland",
"facts": [
{
"type": "6",
"time": "27'",
"description": "Bartra M.",
"linked_player_hash": "8K4WA9Gh"
}
],
"lineup": 2,
"starting": true,
"long_name": "Lukasz Piszczek"
},
{
"hash": "fonESekN",
"name": "Reus M.",
"captain": "",
"detail_link": "/player/reus-marco/fonESekN/",
"short_name": "Reus",
"shirt_number": "11",
"country": "Germany",
"facts": [
{
"type": "3",
"time": "90' Reus M. (Ramos A.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Marco Reus"
},
{
"hash": "n3VwNCjb",
"name": "Schmelzer M.",
"captain": "(C)",
"detail_link": "/player/schmelzer-marcel/n3VwNCjb/",
"short_name": "Schmelzer",
"shirt_number": "29",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "28' Schmelzer M. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 8,
"starting": true,
"long_name": "Marcel Schmelzer"
},
{
"hash": "SQr6hJJR",
"name": "Sokratis",
"captain": "",
"detail_link": "/player/papastathopoulos-sokratis/SQr6hJJR/",
"short_name": "Papastathopoulos",
"shirt_number": "25",
"country": "Greece",
"facts": [
{
"type": "1",
"time": "60' Sokratis (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "75'",
"description": "Ramos A.",
"linked_player_hash": "YZ3fZd1q"
}
],
"lineup": 3,
"starting": true,
"long_name": "Sokratis Papastathopoulos"
},
{
"hash": "SWPWwvA4",
"name": "Weidenfeller R.",
"captain": "",
"detail_link": "/player/weidenfeller-roman/SWPWwvA4/",
"short_name": "Weidenfeller",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Roman Weidenfeller"
},
{
"hash": "2wwMMwAa",
"name": "Weigl J.",
"captain": "",
"detail_link": "/player/weigl-julian/2wwMMwAa/",
"short_name": "Weigl",
"shirt_number": "33",
"country": "Germany",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Julian Weigl"
},
{
"hash": "8K4WA9Gh",
"name": "Bartra M.",
"captain": "",
"detail_link": "/player/bartra-marc/8K4WA9Gh/",
"short_name": "Bartra",
"shirt_number": "5",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "27'",
"description": "Piszczek L.",
"linked_player_hash": "AZgM33p0"
}
],
"lineup": null,
"starting": false,
"long_name": "Marc Bartra"
},
{
"hash": "KxMKnLtF",
"name": "Bonmann H.",
"captain": "",
"detail_link": "/player/bonmann-hendrik/KxMKnLtF/",
"short_name": "Bonmann",
"shirt_number": "39",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Hendrik Bonmann"
},
{
"hash": "Kd02fMXo",
"name": "Mor E.",
"captain": "",
"detail_link": "/player/mor-emre/Kd02fMXo/",
"short_name": "Mor",
"shirt_number": "9",
"country": "Turkey",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Emre Mor"
},
{
"hash": "rHIRgwGG",
"name": "Passlack F.",
"captain": "",
"detail_link": "/player/passlack-felix/rHIRgwGG/",
"short_name": "Passlack",
"shirt_number": "30",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Felix Passlack"
},
{
"hash": "vTuaEfRq",
"name": "Pulisic C.",
"captain": "",
"detail_link": "/player/pulisic-christian/vTuaEfRq/",
"short_name": "Pulisic",
"shirt_number": "22",
"country": "USA",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Christian Pulisic"
},
{
"hash": "YZ3fZd1q",
"name": "Ramos A.",
"captain": "",
"detail_link": "/player/ramos-adrian/YZ3fZd1q/",
"short_name": "Ramos",
"shirt_number": "20",
"country": "Colombia",
"facts": [
{
"type": "7",
"time": "75'",
"description": "Sokratis",
"linked_player_hash": "SQr6hJJR"
},
{
"type": "8",
"time": "90' Reus M. (Ramos A.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Adrian Ramos"
},
{
"hash": "2ukcBSGo",
"name": "Rode S.",
"captain": "",
"detail_link": "/player/rode-sebastian/2ukcBSGo/",
"short_name": "Rode",
"shirt_number": "18",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "53'",
"description": "Castro G.",
"linked_player_hash": "tWNcwyFS"
}
],
"lineup": null,
"starting": false,
"long_name": "Sebastian Rode"
}
],
"coach": [
{
"hash": "CQTUFgPk",
"name": "Tuchel T.",
"captain": "",
"detail_link": "/player/tuchel-thomas/CQTUFgPk/",
"short_name": "Tuchel T.",
"shirt_number": "",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Thomas Tuchel"
}
]
}
},
"referee": [
"Zwayer F."
],
"venue": [
"RheinEnergieStadion (Cologne)"
],
"attendance": [
"50 000"
],
"referee_matched": [
"Felix Zwayer"
],
"referee_found": [
"Felix Zwayer"
],
"coach_matched": [
"Peter Stoger"
],
"gameHomeTeam": "FC Koln",
"home": {
"name": "FC Koln",
"detail_link": "/team/1-fc-koln/WG9pOTse",
"hash": "WG9pOTse",
"names": [
"FC Koln",
"1 fc koln",
"1. FC Koln",
"K\u00f6ln",
"Koln"
]
},
"gameAwayTeam": "Dortmund",
"away": {
"name": "Dortmund",
"detail_link": "/team/dortmund/nP1i5US1",
"hash": "nP1i5US1",
"names": [
"Dortmund",
"Dortmund (Ger)",
"dortmund"
]
},
"gameDate": "10/12/2016 - 15:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "There wasn't a lot of action on the pitch. We could describe the game as average. We saw a very balanced game over the 90 minutes. The home team attempted to leave the opposition defence outnumbered and hit them on the break. The visitors tried to keep the ball on the ground and play a passing game.",
"identified": "There wasn't a lot of action on the pitch. We could describe the game as average. We saw a very balanced game over the 90 minutes. The home team attempted to leave the opposition defence outnumbered and hit them on the break. The visitors tried to keep the ball on the ground and play a passing game.",
"anonymized": "There wasn't a lot of action on the pitch. We could describe the game as average. We saw a very balanced game over the 90 minutes. The home team attempted to leave the opposition defence outnumbered and hit them on the break. The visitors tried to keep the ball on the ground and play a passing game.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:10",
"label": "whistle",
"description": "That's the end of the match.",
"identified": "That's the end of the match.",
"anonymized": "That's the end of the match.",
"visibility": "shown",
"position": "2950000"
},
{
"important": true,
"gameTime": "2 - 48:19",
"label": "yr-card",
"description": "Salih Ozcan (1. FC Koln) is awarded a second yellow by Felix Zwayer and subsequently dismisses him with a red one.",
"identified": "[PLAYER_2sPPKXyd] ([TEAM_]) is awarded a second yellow by [REFEREE] and subsequently dismisses him with a red one.",
"anonymized": "[PLAYER] ([TEAM]) is awarded a second yellow by [REFEREE] and subsequently dismisses him with a red one.",
"visibility": "shown",
"position": "2899000"
},
{
"important": false,
"gameTime": "2 - 47:13",
"label": "",
"description": "Dortmund hold the ball and are exchanging some long passes.",
"identified": "[TEAM_] hold the ball and are exchanging some long passes.",
"anonymized": "[TEAM] hold the ball and are exchanging some long passes.",
"visibility": "shown",
"position": "2833000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "4 additional min. will be played.",
"identified": "4 additional min. will be played.",
"anonymized": "4 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 44:50",
"label": "soccer-ball",
"description": "GOAL! Superb work from Adrian Ramos, who plays a vital role in the build-up. He squares it to Marco Reus (Dortmund), who beats Thomas Kessler with a brilliant shot into the bottom right corner. 1:1.",
"identified": "GOAL! Superb work from [PLAYER_YZ3fZd1q], who plays a vital role in the build-up. He squares it to [PLAYER_fonESekN] ([TEAM_]), who beats [PLAYER_Of3LLUNG] with a brilliant shot into the bottom right corner. 1:1.",
"anonymized": "GOAL! Superb work from [PLAYER], who plays a vital role in the build-up. He squares it to [PLAYER] ([TEAM]), who beats [PLAYER] with a brilliant shot into the bottom right corner. 1:1.",
"visibility": "shown",
"position": "2690000"
},
{
"important": false,
"gameTime": "2 - 44:02",
"label": "",
"description": "Sehrou Guirassy (1. FC Koln) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is out of play. Dortmund will have a throw-in.",
"identified": "[PLAYER_YXRCmup6] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is out of play. [TEAM_] will have a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball is out of play. [TEAM] will have a throw-in.",
"visibility": "shown",
"position": "2642000"
},
{
"important": true,
"gameTime": "2 - 42:00",
"label": "substitution",
"description": "It's time for a substitution. That's the last involvement from Anthony Modeste as he is replaced by Sehrou Guirassy (1. FC Koln).",
"identified": "It's time for a substitution. That's the last involvement from [PLAYER_bPslqX1I] as he is replaced by [PLAYER_YXRCmup6] ([TEAM_]).",
"anonymized": "It's time for a substitution. That's the last involvement from [PLAYER] as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2520000"
},
{
"important": false,
"gameTime": "2 - 41:11",
"label": "",
"description": "Sebastian Rode (Dortmund) feels very aggrieved after the referee stops play for a foul that he commits while in possession of the ball.",
"identified": "[PLAYER_2ukcBSGo] ([TEAM_]) feels very aggrieved after the referee stops play for a foul that he commits while in possession of the ball.",
"anonymized": "[PLAYER] ([TEAM]) feels very aggrieved after the referee stops play for a foul that he commits while in possession of the ball.",
"visibility": "shown",
"position": "2471000"
},
{
"important": false,
"gameTime": "2 - 41:00",
"label": "corner",
"description": "Ousmane Dembele (Dortmund) takes the corner but fails to find any of his teammates as he overhits the effort.",
"identified": "[PLAYER_zsMC2Ec0] ([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": "2460000"
},
{
"important": false,
"gameTime": "2 - 39:57",
"label": "",
"description": "Anthony Modeste (1. FC Koln) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_bPslqX1I] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "2397000"
},
{
"important": false,
"gameTime": "2 - 37:04",
"label": "",
"description": "Adrian Ramos (Dortmund) is penalised for a foul. Felix Zwayer had a clear view and blows his whistle.",
"identified": "[PLAYER_YZ3fZd1q] ([TEAM_]) is penalised for a foul. [REFEREE] had a clear view and blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for a foul. [REFEREE] had a clear view and blows his whistle.",
"visibility": "shown",
"position": "2224000"
},
{
"important": true,
"gameTime": "2 - 35:03",
"label": "",
"description": "Konstantin Rausch (1. FC Koln) comes close as his long-range free kick goes a whisker wide of the right post.",
"identified": "[PLAYER_xxdbKAzH] ([TEAM_]) comes close as his long-range free kick goes a whisker wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) comes close as his long-range free kick goes a whisker wide of the right post.",
"visibility": "shown",
"position": "2103000"
},
{
"important": false,
"gameTime": "2 - 34:26",
"label": "",
"description": "Marcel Schmelzer (Dortmund) gives away a foul during an attacking move and the referee blows his whistle.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) gives away a foul during an attacking move and the referee blows his whistle.",
"anonymized": "[PLAYER] ([TEAM]) gives away a foul during an attacking move and the referee blows his whistle.",
"visibility": "shown",
"position": "2066000"
},
{
"important": false,
"gameTime": "2 - 32:57",
"label": "",
"description": "Marco Reus (Dortmund) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_fonESekN] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "1977000"
},
{
"important": false,
"gameTime": "2 - 30:39",
"label": "",
"description": "Ousmane Dembele (Dortmund) whips a long ball in from the free kick which is intercepted by Thomas Kessler.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) whips a long ball in from the free kick which is intercepted by [PLAYER_Of3LLUNG].",
"anonymized": "[PLAYER] ([TEAM]) whips a long ball in from the free kick which is intercepted by [PLAYER].",
"visibility": "shown",
"position": "1839000"
},
{
"important": true,
"gameTime": "2 - 30:15",
"label": "substitution",
"description": "Peter Stoger has decided to introduce fresh legs, with Konstantin Rausch (1. FC Koln) replacing Artjoms Rudnevs.",
"identified": "[COACH_reodBQIi] has decided to introduce fresh legs, with [PLAYER_xxdbKAzH] ([TEAM_]) replacing [PLAYER_08j381B8].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "1815000"
},
{
"important": true,
"gameTime": "2 - 29:45",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Adrian Ramos (Dortmund) comes onto the pitch for Sokratis.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_YZ3fZd1q] ([TEAM_]) comes onto the pitch for [PLAYER_SQr6hJJR].",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] ([TEAM]) comes onto the pitch for [PLAYER].",
"visibility": "shown",
"position": "1785000"
},
{
"important": false,
"gameTime": "2 - 29:25",
"label": "",
"description": "Dominique Heintz (1. FC Koln) does well to dispossess the attacker with a slide tackle, but the referee blows his whistle for a foul.",
"identified": "[PLAYER_Gr2FbER2] ([TEAM_]) does well to dispossess the attacker with a slide tackle, but the referee blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) does well to dispossess the attacker with a slide tackle, but the referee blows his whistle for a foul.",
"visibility": "shown",
"position": "1765000"
},
{
"important": false,
"gameTime": "2 - 28:56",
"label": "corner",
"description": "Dortmund failed to take advantage of the corner as the opposition's defence was alert and averted the threat.",
"identified": "[TEAM_] failed to take advantage of the corner as the opposition's defence was alert and averted the threat.",
"anonymized": "[TEAM] failed to take advantage of the corner as the opposition's defence was alert and averted the threat.",
"visibility": "shown",
"position": "1736000"
},
{
"important": true,
"gameTime": "2 - 28:36",
"label": "",
"description": "Thomas Kessler was forced into action to thwart Marco Reus (Dortmund). He found himself some space after latching on to a pass and unleashed a shot to the right post but couldn't beat the keeper. Dortmund get a corner.",
"identified": "[PLAYER_Of3LLUNG] was forced into action to thwart [PLAYER_fonESekN] ([TEAM_]). He found himself some space after latching on to a pass and unleashed a shot to the right post but couldn't beat the keeper. [TEAM_] get a corner.",
"anonymized": "[PLAYER] was forced into action to thwart [PLAYER] ([TEAM]). He found himself some space after latching on to a pass and unleashed a shot to the right post but couldn't beat the keeper. [TEAM] get a corner.",
"visibility": "shown",
"position": "1716000"
},
{
"important": false,
"gameTime": "2 - 28:26",
"label": "",
"description": "Neat passing move from Dortmund in order to create new attacking opportunities.",
"identified": "Neat passing move from [TEAM_] in order to create new attacking opportunities.",
"anonymized": "Neat passing move from [TEAM] in order to create new attacking opportunities.",
"visibility": "shown",
"position": "1706000"
},
{
"important": false,
"gameTime": "2 - 27:45",
"label": "",
"description": "Marcel Schmelzer (Dortmund) takes the resultant free kick from distance and swings it into the box, but the goalkeeper climbs high to collect the ball.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) takes the resultant free kick from distance and swings it into the box, but the goalkeeper climbs high to collect the ball.",
"anonymized": "[PLAYER] ([TEAM]) takes the resultant free kick from distance and swings it into the box, but the goalkeeper climbs high to collect the ball.",
"visibility": "shown",
"position": "1665000"
},
{
"important": true,
"gameTime": "2 - 26:01",
"label": "y-card",
"description": "Felix Zwayer shows a yellow card to Marco Hoger (1. FC Koln) for his blatant foul.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_25x3VJrm] ([TEAM_]) for his blatant foul.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for his blatant foul.",
"visibility": "shown",
"position": "1561000"
},
{
"important": false,
"gameTime": "2 - 25:36",
"label": "",
"description": "A cross is whipped into the box by Ousmane Dembele (Dortmund) and Pierre-Emerick Aubameyang controls it well. He lines up the ball, but one of the defenders produces a timely intervention.",
"identified": "A cross is whipped into the box by [PLAYER_zsMC2Ec0] ([TEAM_]) and [PLAYER_Wl4EyKZk] controls it well. He lines up the ball, but one of the defenders produces a timely intervention.",
"anonymized": "A cross is whipped into the box by [PLAYER] ([TEAM]) and [PLAYER] controls it well. He lines up the ball, but one of the defenders produces a timely intervention.",
"visibility": "shown",
"position": "1536000"
},
{
"important": false,
"gameTime": "2 - 25:00",
"label": "",
"description": "Ousmane Dembele (Dortmund) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) races towards goal but the defender gets back well to make a challenge.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "1500000"
},
{
"important": false,
"gameTime": "2 - 23:32",
"label": "",
"description": "Julian Weigl (Dortmund) commits a rough challenge and Felix Zwayer blows his whistle for a foul.",
"identified": "[PLAYER_2wwMMwAa] ([TEAM_]) commits a rough challenge and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough challenge and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "1412000"
},
{
"important": false,
"gameTime": "2 - 22:38",
"label": "",
"description": "The defence is alert as they clear a dangerous cross from Erik Durm (Dortmund).",
"identified": "The defence is alert as they clear a dangerous cross from [PLAYER_SCOMojXE] ([TEAM_]).",
"anonymized": "The defence is alert as they clear a dangerous cross from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1358000"
},
{
"important": false,
"gameTime": "2 - 21:45",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) is picked out by one of his teammates with a brilliant low pass, but he doesn't control the ball well and the defence eliminates the danger without any problem. That should have been a goalscoring opportunity.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) is picked out by one of his teammates with a brilliant low pass, but he doesn't control the ball well and the defence eliminates the danger without any problem. That should have been a goalscoring opportunity.",
"anonymized": "[PLAYER] ([TEAM]) is picked out by one of his teammates with a brilliant low pass, but he doesn't control the ball well and the defence eliminates the danger without any problem. That should have been a goalscoring opportunity.",
"visibility": "shown",
"position": "1305000"
},
{
"important": false,
"gameTime": "2 - 20:17",
"label": "",
"description": "Neat link-up play between Yuya Osako (1. FC Koln) and Anthony Modeste, but Roman Weidenfeller reads the game well and the move breaks down.",
"identified": "Neat link-up play between [PLAYER_OYzftLLu] ([TEAM_]) and [PLAYER_bPslqX1I], but [PLAYER_SWPWwvA4] reads the game well and the move breaks down.",
"anonymized": "Neat link-up play between [PLAYER] ([TEAM]) and [PLAYER], but [PLAYER] reads the game well and the move breaks down.",
"visibility": "shown",
"position": "1217000"
},
{
"important": true,
"gameTime": "2 - 19:37",
"label": "y-card",
"description": "Salih Ozcan (1. FC Koln) has tested the patience of referee Felix Zwayer and goes into the book for a previous late challenge.",
"identified": "[PLAYER_2sPPKXyd] ([TEAM_]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge.",
"anonymized": "[PLAYER] ([TEAM]) has tested the patience of referee [REFEREE] and goes into the book for a previous late challenge.",
"visibility": "shown",
"position": "1177000"
},
{
"important": false,
"gameTime": "2 - 18:41",
"label": "",
"description": "Marco Reus (Dortmund) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball has crossed the sideline. FC Koln are taking a throw-in.",
"identified": "[PLAYER_fonESekN] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball has crossed the sideline. [TEAM_WG9pOTse] are taking a throw-in.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The ball has crossed the sideline. [TEAM] are taking a throw-in.",
"visibility": "shown",
"position": "1121000"
},
{
"important": false,
"gameTime": "2 - 16:50",
"label": "corner",
"description": "Marcel Schmelzer (Dortmund) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"anonymized": "[PLAYER] ([TEAM]) launches a powerful cross from the corner into the box, but the ball is intercepted by the defender.",
"visibility": "shown",
"position": "1010000"
},
{
"important": true,
"gameTime": "2 - 15:00",
"label": "y-card",
"description": "Sokratis (Dortmund) shouldn't be surprised it's a yellow from the ref, who cooled the situation down well.",
"identified": "[PLAYER_SQr6hJJR] ([TEAM_]) shouldn't be surprised it's a yellow from the ref, who cooled the situation down well.",
"anonymized": "[PLAYER] ([TEAM]) shouldn't be surprised it's a yellow from the ref, who cooled the situation down well.",
"visibility": "shown",
"position": "900000"
},
{
"important": false,
"gameTime": "2 - 14:21",
"label": "",
"description": "Dortmund control the tempo of the game by exchanging some accurate short passes.",
"identified": "[TEAM_] control the tempo of the game by exchanging some accurate short passes.",
"anonymized": "[TEAM] control the tempo of the game by exchanging some accurate short passes.",
"visibility": "shown",
"position": "861000"
},
{
"important": false,
"gameTime": "2 - 14:00",
"label": "corner",
"description": "Ousmane Dembele (Dortmund) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"anonymized": "[PLAYER] ([TEAM]) rolls the ball short to a teammate from the corner instead of sending a cross into the box.",
"visibility": "shown",
"position": "840000"
},
{
"important": false,
"gameTime": "2 - 12:27",
"label": "corner",
"description": "Marcel Schmelzer (Dortmund) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play.",
"identified": "[PLAYER_n3VwNCjb] ([TEAM_]) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) swings the ball into the box from the corner kick but it's a bit too strong and it goes out of play.",
"visibility": "shown",
"position": "747000"
},
{
"important": false,
"gameTime": "2 - 11:01",
"label": "corner",
"description": "FC Koln have a chance to score from a corner kick, but the ball is cleared by a defender.",
"identified": "[TEAM_WG9pOTse] have a chance to score from a corner kick, but the ball is cleared by a defender.",
"anonymized": "[TEAM] have a chance to score from a corner kick, but the ball is cleared by a defender.",
"visibility": "shown",
"position": "661000"
},
{
"important": false,
"gameTime": "2 - 09:50",
"label": "corner",
"description": "This corner kick is taken with a short pass by Marco Reus (Dortmund).",
"identified": "This corner kick is taken with a short pass by [PLAYER_fonESekN] ([TEAM_]).",
"anonymized": "This corner kick is taken with a short pass by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "590000"
},
{
"important": true,
"gameTime": "2 - 08:00",
"label": "substitution",
"description": "Substitution. Gonzalo Castro is replaced by Sebastian Rode (Dortmund).",
"identified": "Substitution. [PLAYER_tWNcwyFS] is replaced by [PLAYER_2ukcBSGo] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "480000"
},
{
"important": true,
"gameTime": "2 - 07:58",
"label": "y-card",
"description": "Dominique Heintz (1. FC Koln) receives a yellow card from the referee for a foul that he committed a little earlier.",
"identified": "[PLAYER_Gr2FbER2] ([TEAM_]) receives a yellow card from the referee for a foul that he committed a little earlier.",
"anonymized": "[PLAYER] ([TEAM]) receives a yellow card from the referee for a foul that he committed a little earlier.",
"visibility": "shown",
"position": "478000"
},
{
"important": true,
"gameTime": "2 - 04:55",
"label": "",
"description": "Anthony Modeste (1. FC Koln) produces a stunning solo run from the middle of the pitch, all the way to the penalty area. He unleashes a decent strike which goes narrowly wide of the right post. The ball goes out of play and Dortmund will have a goal kick.",
"identified": "[PLAYER_bPslqX1I] ([TEAM_]) produces a stunning solo run from the middle of the pitch, all the way to the penalty area. He unleashes a decent strike which goes narrowly wide of the right post. The ball goes out of play and [TEAM_] will have a goal kick.",
"anonymized": "[PLAYER] ([TEAM]) produces a stunning solo run from the middle of the pitch, all the way to the penalty area. He unleashes a decent strike which goes narrowly wide of the right post. The ball goes out of play and [TEAM] will have a goal kick.",
"visibility": "shown",
"position": "295000"
},
{
"important": false,
"gameTime": "2 - 03:36",
"label": "",
"description": "Good clearance! Pierre-Emerick Aubameyang (Dortmund) received a low pass, but he didn't have time to do anything as one of the defenders quickly stole the ball off him.",
"identified": "Good clearance! [PLAYER_Wl4EyKZk] ([TEAM_]) received a low pass, but he didn't have time to do anything as one of the defenders quickly stole the ball off him.",
"anonymized": "Good clearance! [PLAYER] ([TEAM]) received a low pass, but he didn't have time to do anything as one of the defenders quickly stole the ball off him.",
"visibility": "shown",
"position": "216000"
},
{
"important": false,
"gameTime": "2 - 01:31",
"label": "",
"description": "Anthony Modeste (1. FC Koln) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_bPslqX1I] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "91000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The half-time break is over and the second half is about to start.",
"identified": "The half-time break is over and the second half is about to start.",
"anonymized": "The half-time break is over and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "Up to now the match has suffered in terms of attractiveness as the game has been devoid of any interesting moments. Neither team was able to take the initiative and dominate the first half. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"identified": "Up to now the match has suffered in terms of attractiveness as the game has been devoid of any interesting moments. Neither team was able to take the initiative and dominate the first half. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"anonymized": "Up to now the match has suffered in terms of attractiveness as the game has been devoid of any interesting moments. Neither team was able to take the initiative and dominate the first half. The home players attempt to beat the opposition's defence using mostly counter-attacks. The away team tries to prevail using combination football.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:09",
"label": "whistle",
"description": "The match has reached half-time.",
"identified": "The match has reached half-time.",
"anonymized": "The match has reached half-time.",
"visibility": "shown",
"position": "2709000"
},
{
"important": true,
"gameTime": "1 - 45:01",
"label": "y-card",
"description": "Ousmane Dembele (Dortmund) is arguing with the referee and is given a caution.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) is arguing with the referee and is given a caution.",
"anonymized": "[PLAYER] ([TEAM]) is arguing with the referee and is given a caution.",
"visibility": "shown",
"position": "2701000"
},
{
"important": false,
"gameTime": "1 - 44:56",
"label": "",
"description": "Artjoms Rudnevs (1. FC Koln) commits a foul and Felix Zwayer immediately signals a free kick.",
"identified": "[PLAYER_08j381B8] ([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": "2696000"
},
{
"important": false,
"gameTime": "1 - 44:48",
"label": "",
"description": "Artjoms Rudnevs (1. FC Koln) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_08j381B8] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"visibility": "shown",
"position": "2688000"
},
{
"important": false,
"gameTime": "1 - 44:02",
"label": "",
"description": "Marco Hoger (1. FC Koln) escapes without any punishment from the referee after using excessive force to foul his opponent.",
"identified": "[PLAYER_25x3VJrm] ([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": "2642000"
},
{
"important": false,
"gameTime": "1 - 42:02",
"label": "",
"description": "Artjoms Rudnevs (1. FC Koln) clearly holds his opponent to prevent him from getting the ball and the referee immediately stops play.",
"identified": "[PLAYER_08j381B8] ([TEAM_]) clearly holds his opponent to prevent him from getting the ball and the referee immediately stops play.",
"anonymized": "[PLAYER] ([TEAM]) clearly holds his opponent to prevent him from getting the ball and the referee immediately stops play.",
"visibility": "shown",
"position": "2522000"
},
{
"important": false,
"gameTime": "1 - 41:20",
"label": "",
"description": "Marco Reus (Dortmund) sends a long ball in, but Thomas Kessler comfortably gathers the ball.",
"identified": "[PLAYER_fonESekN] ([TEAM_]) sends a long ball in, but [PLAYER_Of3LLUNG] comfortably gathers the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball in, but [PLAYER] comfortably gathers the ball.",
"visibility": "shown",
"position": "2480000"
},
{
"important": false,
"gameTime": "1 - 41:05",
"label": "",
"description": "Yuya Osako (1. FC Koln) brings an opponent down and Felix Zwayer interrupts the game.",
"identified": "[PLAYER_OYzftLLu] ([TEAM_]) brings an opponent down and [REFEREE] interrupts the game.",
"anonymized": "[PLAYER] ([TEAM]) brings an opponent down and [REFEREE] interrupts the game.",
"visibility": "shown",
"position": "2465000"
},
{
"important": false,
"gameTime": "1 - 39:31",
"label": "",
"description": "The foul by Sokratis (Dortmund) was seen by Felix Zwayer who didn't hesitate to blow the whistle.",
"identified": "The foul by [PLAYER_SQr6hJJR] ([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": "2371000"
},
{
"important": false,
"gameTime": "1 - 38:26",
"label": "",
"description": "Marco Hoger (1. FC Koln) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision!",
"identified": "[PLAYER_25x3VJrm] ([TEAM_]) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision!",
"anonymized": "[PLAYER] ([TEAM]) deprives his opponent of the ball, but the referee blows his whistle for a foul. He's not happy with the decision!",
"visibility": "shown",
"position": "2306000"
},
{
"important": false,
"gameTime": "1 - 37:33",
"label": "",
"description": "Artjoms Rudnevs (1. FC Koln) fails to send a pass into the box as his effort is cut out.",
"identified": "[PLAYER_08j381B8] ([TEAM_]) fails to send a pass into the box as his effort is cut out.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out.",
"visibility": "shown",
"position": "2253000"
},
{
"important": false,
"gameTime": "1 - 35:57",
"label": "",
"description": "Yuya Osako (1. FC Koln) shows too much aggression while trying to break free from his opponent and the referee blows his whistle for a foul.",
"identified": "[PLAYER_OYzftLLu] ([TEAM_]) shows too much aggression while trying to break free from his opponent and the referee blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) shows too much aggression while trying to break free from his opponent and the referee blows his whistle for a foul.",
"visibility": "shown",
"position": "2157000"
},
{
"important": false,
"gameTime": "1 - 34:42",
"label": "",
"description": "Yuya Osako (1. FC Koln) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves Felix Zwayer with no other option than to blow for a foul.",
"identified": "[PLAYER_OYzftLLu] ([TEAM_]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul.",
"anonymized": "[PLAYER] ([TEAM]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul.",
"visibility": "shown",
"position": "2082000"
},
{
"important": false,
"gameTime": "1 - 32:51",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) receives a clever chip pass into a promising position. Nevertheless, one of the defenders is alert and averts the danger with a brilliant clearance.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) receives a clever chip pass into a promising position. Nevertheless, one of the defenders is alert and averts the danger with a brilliant clearance.",
"anonymized": "[PLAYER] ([TEAM]) receives a clever chip pass into a promising position. Nevertheless, one of the defenders is alert and averts the danger with a brilliant clearance.",
"visibility": "shown",
"position": "1971000"
},
{
"important": false,
"gameTime": "1 - 30:54",
"label": "",
"description": "Ousmane Dembele (Dortmund) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) races towards goal but the defender gets back well to make a challenge.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "1854000"
},
{
"important": true,
"gameTime": "1 - 28:00",
"label": "soccer-ball",
"description": "The ball from the free kick finds its way to Artjoms Rudnevs (1. FC Koln) who finds himself some space and scores with a thunderous header into the bottom right corner. An incredible long-range header!",
"identified": "The ball from the free kick finds its way to [PLAYER_08j381B8] ([TEAM_]) who finds himself some space and scores with a thunderous header into the bottom right corner. An incredible long-range header!",
"anonymized": "The ball from the free kick finds its way to [PLAYER] ([TEAM]) who finds himself some space and scores with a thunderous header into the bottom right corner. An incredible long-range header!",
"visibility": "shown",
"position": "1680000"
},
{
"important": true,
"gameTime": "1 - 27:33",
"label": "y-card",
"description": "Marcel Schmelzer (Dortmund) is cautioned by the referee for a foul that he committed a little earlier.",
"identified": "[PLAYER_n3VwNCjb] ([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": "1653000"
},
{
"important": true,
"gameTime": "1 - 26:32",
"label": "substitution",
"description": "Substitution. Marc Bartra (Dortmund) on for Lukasz Piszczek.",
"identified": "Substitution. [PLAYER_8K4WA9Gh] ([TEAM_]) on for [PLAYER_AZgM33p0].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) on for [PLAYER].",
"visibility": "shown",
"position": "1592000"
},
{
"important": false,
"gameTime": "1 - 25:14",
"label": "",
"description": "Marco Reus (Dortmund) tries to find Pierre-Emerick Aubameyang, but he puts too much power on the pass. The ball is off of the pitch and it's a goal kick for FC Koln.",
"identified": "[PLAYER_fonESekN] ([TEAM_]) tries to find [PLAYER_Wl4EyKZk], but he puts too much power on the pass. The ball is off of the pitch and it's a goal kick for [TEAM_WG9pOTse].",
"anonymized": "[PLAYER] ([TEAM]) tries to find [PLAYER], but he puts too much power on the pass. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1514000"
},
{
"important": true,
"gameTime": "1 - 23:55",
"label": "",
"description": "Marco Reus (Dortmund) blows a huge opportunity after receiving a cross from the free kick. He shoots from just outside of the box, but the ball goes narrowly wide of the left post! The ball is off of the pitch and it's a goal kick for FC Koln.",
"identified": "[PLAYER_fonESekN] ([TEAM_]) blows a huge opportunity after receiving a cross from the free kick. He shoots from just outside of the box, but the ball goes narrowly wide of the left post! The ball is off of the pitch and it's a goal kick for [TEAM_WG9pOTse].",
"anonymized": "[PLAYER] ([TEAM]) blows a huge opportunity after receiving a cross from the free kick. He shoots from just outside of the box, but the ball goes narrowly wide of the left post! The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "1435000"
},
{
"important": false,
"gameTime": "1 - 22:58",
"label": "",
"description": "Frederik Sorensen (1. FC Koln) brings his opponent down. Felix Zwayer has a clear sight of it and blows his whistle for a foul.",
"identified": "[PLAYER_2B1zRbP5] ([TEAM_]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down. [REFEREE] has a clear sight of it and blows his whistle for a foul.",
"visibility": "shown",
"position": "1378000"
},
{
"important": false,
"gameTime": "1 - 22:13",
"label": "",
"description": "Artjoms Rudnevs (1. FC Koln) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_08j381B8] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "1333000"
},
{
"important": false,
"gameTime": "1 - 19:42",
"label": "",
"description": "Ousmane Dembele (Dortmund) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"anonymized": "[PLAYER] ([TEAM]) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"visibility": "shown",
"position": "1182000"
},
{
"important": false,
"gameTime": "1 - 18:14",
"label": "",
"description": "Anthony Modeste (1. FC Koln) is caught offside!",
"identified": "[PLAYER_bPslqX1I] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "1094000"
},
{
"important": false,
"gameTime": "1 - 18:00",
"label": "",
"description": "Julian Weigl (Dortmund) shows too much aggression during an attacking move and ends up fouling his opponent.",
"identified": "[PLAYER_2wwMMwAa] ([TEAM_]) shows too much aggression during an attacking move and ends up fouling his opponent.",
"anonymized": "[PLAYER] ([TEAM]) shows too much aggression during an attacking move and ends up fouling his opponent.",
"visibility": "shown",
"position": "1080000"
},
{
"important": false,
"gameTime": "1 - 16:59",
"label": "",
"description": "Ousmane Dembele (Dortmund) looks to break free, but an opposing player clears the ball away.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) looks to break free, but an opposing player clears the ball away.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away.",
"visibility": "shown",
"position": "1019000"
},
{
"important": false,
"gameTime": "1 - 15:48",
"label": "",
"description": "Matthias Ginter (Dortmund) sends a long ball forward to Ousmane Dembele, but he put too much power and the chance is gone.",
"identified": "[PLAYER_27fpNoQk] ([TEAM_]) sends a long ball forward to [PLAYER_zsMC2Ec0], but he put too much power and the chance is gone.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball forward to [PLAYER], but he put too much power and the chance is gone.",
"visibility": "shown",
"position": "948000"
},
{
"important": false,
"gameTime": "1 - 14:13",
"label": "",
"description": "Julian Weigl (Dortmund) tries to find Pierre-Emerick Aubameyang, but he puts too much power on the pass. The ball is off of the pitch and it's a goal kick for FC Koln.",
"identified": "[PLAYER_2wwMMwAa] ([TEAM_]) tries to find [PLAYER_Wl4EyKZk], but he puts too much power on the pass. The ball is off of the pitch and it's a goal kick for [TEAM_WG9pOTse].",
"anonymized": "[PLAYER] ([TEAM]) tries to find [PLAYER], but he puts too much power on the pass. The ball is off of the pitch and it's a goal kick for [TEAM].",
"visibility": "shown",
"position": "853000"
},
{
"important": false,
"gameTime": "1 - 12:57",
"label": "",
"description": "Erik Durm (Dortmund) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"identified": "[PLAYER_SCOMojXE] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender.",
"visibility": "shown",
"position": "777000"
},
{
"important": false,
"gameTime": "1 - 11:49",
"label": "",
"description": "The Dortmund players keep hold of the ball by exchanging some long passes. One inaccurate pass, however, surrenders possession.",
"identified": "The [TEAM_] players keep hold of the ball by exchanging some long passes. One inaccurate pass, however, surrenders possession.",
"anonymized": "The [TEAM] players keep hold of the ball by exchanging some long passes. One inaccurate pass, however, surrenders possession.",
"visibility": "shown",
"position": "709000"
},
{
"important": false,
"gameTime": "1 - 10:47",
"label": "",
"description": "Erik Durm (Dortmund) commits a foul after making a slide tackle on his opponent.",
"identified": "[PLAYER_SCOMojXE] ([TEAM_]) commits a foul after making a slide tackle on his opponent.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after making a slide tackle on his opponent.",
"visibility": "shown",
"position": "647000"
}
]
} |