File size: 61,484 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 |
{
"timestamp": "1488033000",
"score": "0 - 3",
"round": "22",
"teams": [
"Freiburg",
"Dortmund"
],
"lineup": {
"home": {
"tactic": "1-4-4-2",
"players": [
{
"hash": "O4yLW4q7",
"name": "Bulut O.",
"captain": "",
"detail_link": "/player/bulut-onur/O4yLW4q7/",
"short_name": "Bulut",
"shirt_number": "11",
"country": "Turkey",
"facts": [
{
"type": "6",
"time": "24'",
"description": "Kempf M. O.",
"linked_player_hash": "AR2PqO6h"
}
],
"lineup": 6,
"starting": true,
"long_name": "Onur Bulut"
},
{
"hash": "bkR3iY5c",
"name": "Frantz M.",
"captain": "(C)",
"detail_link": "/player/frantz-mike/bkR3iY5c/",
"short_name": "Frantz",
"shirt_number": "8",
"country": "Germany",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Mike Frantz"
},
{
"hash": "jBePSV5m",
"name": "Grifo V.",
"captain": "",
"detail_link": "/player/grifo-vincenzo/jBePSV5m/",
"short_name": "Grifo",
"shirt_number": "32",
"country": "Italy",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Vincenzo Grifo"
},
{
"hash": "CYgQyyFL",
"name": "Gunter C.",
"captain": "",
"detail_link": "/player/gunter-christian/CYgQyyFL/",
"short_name": "Gunter",
"shirt_number": "30",
"country": "Germany",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Christian Gunter"
},
{
"hash": "z1kH2LS3",
"name": "Hofler N.",
"captain": "",
"detail_link": "/player/hofler-nicolas/z1kH2LS3/",
"short_name": "Hofler",
"shirt_number": "27",
"country": "Germany",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Nicolas Hofler"
},
{
"hash": "reFzjZgO",
"name": "Kubler L.",
"captain": "",
"detail_link": "/player/kubler-lukas/reFzjZgO/",
"short_name": "Kubler",
"shirt_number": "17",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "85'",
"description": "Ignjovski A.",
"linked_player_hash": "82RZptfL"
}
],
"lineup": 2,
"starting": true,
"long_name": "Lukas Kubler"
},
{
"hash": "SYQdXAZ4",
"name": "Petersen N.",
"captain": "",
"detail_link": "/player/petersen-nils/SYQdXAZ4/",
"short_name": "Petersen",
"shirt_number": "18",
"country": "Germany",
"facts": [
{
"type": "6",
"time": "64'",
"description": "Niederlechner F.",
"linked_player_hash": "txGA3Xvc"
}
],
"lineup": 10,
"starting": true,
"long_name": "Nils Petersen"
},
{
"hash": "6PCSjJja",
"name": "Philipp M.",
"captain": "",
"detail_link": "/player/philipp-maximilian/6PCSjJja/",
"short_name": "Philipp",
"shirt_number": "26",
"country": "Germany",
"facts": [
{
"type": "1",
"time": "67' Philipp M. (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Maximilian Philipp"
},
{
"hash": "fPL4Y2AK",
"name": "Schwolow A.",
"captain": "",
"detail_link": "/player/schwolow-alexander/fPL4Y2AK/",
"short_name": "Schwolow",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Alexander Schwolow"
},
{
"hash": "GKPbIMVk",
"name": "Soyuncu C.",
"captain": "",
"detail_link": "/player/soyuncu-caglar/GKPbIMVk/",
"short_name": "Soyuncu",
"shirt_number": "4",
"country": "Turkey",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Caglar Soyuncu"
},
{
"hash": "2ZajiHXQ",
"name": "Torrejon M.",
"captain": "",
"detail_link": "/player/torrejon-marc/2ZajiHXQ/",
"short_name": "Torrejon",
"shirt_number": "3",
"country": "Spain",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Marc Torrejon"
},
{
"hash": "pv5hIqxg",
"name": "Abrashi A.",
"captain": "",
"detail_link": "/player/abrashi-amir/pv5hIqxg/",
"short_name": "Abrashi",
"shirt_number": "6",
"country": "Albania",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Amir Abrashi"
},
{
"hash": "hfZv7lBE",
"name": "Gikiewicz R.",
"captain": "",
"detail_link": "/player/gikiewicz-rafal/hfZv7lBE/",
"short_name": "Gikiewicz",
"shirt_number": "44",
"country": "Poland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rafal Gikiewicz"
},
{
"hash": "bLZ4JBQc",
"name": "Gulde M.",
"captain": "",
"detail_link": "/player/gulde-manuel/bLZ4JBQc/",
"short_name": "Gulde",
"shirt_number": "5",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Manuel Gulde"
},
{
"hash": "82RZptfL",
"name": "Ignjovski A.",
"captain": "",
"detail_link": "/player/ignjovski-aleksandar/82RZptfL/",
"short_name": "Ignjovski",
"shirt_number": "2",
"country": "Serbia",
"facts": [
{
"type": "7",
"time": "85'",
"description": "Kubler L.",
"linked_player_hash": "reFzjZgO"
}
],
"lineup": null,
"starting": false,
"long_name": "Aleksandar Ignjovski"
},
{
"hash": "AR2PqO6h",
"name": "Kempf M. O.",
"captain": "",
"detail_link": "/player/kempf-marc-oliver/AR2PqO6h/",
"short_name": "Kempf",
"shirt_number": "20",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "24'",
"description": "Bulut O.",
"linked_player_hash": "O4yLW4q7"
}
],
"lineup": null,
"starting": false,
"long_name": "Marc Oliver Kempf"
},
{
"hash": "txGA3Xvc",
"name": "Niederlechner F.",
"captain": "",
"detail_link": "/player/niederlechner-florian/txGA3Xvc/",
"short_name": "Niederlechner",
"shirt_number": "7",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "64'",
"description": "Petersen N.",
"linked_player_hash": "SYQdXAZ4"
}
],
"lineup": null,
"starting": false,
"long_name": "Florian Niederlechner"
},
{
"hash": "YZPE6Sx7",
"name": "Schuster J.",
"captain": "",
"detail_link": "/player/schuster-julian/YZPE6Sx7/",
"short_name": "Schuster",
"shirt_number": "23",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Julian Schuster"
}
],
"coach": [
{
"hash": "l0fHXMdE",
"name": "Streich C.",
"captain": "",
"detail_link": "/player/streich-christian/l0fHXMdE/",
"short_name": "Streich C.",
"shirt_number": "",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Christian Streich"
}
]
},
"away": {
"tactic": "1-3-1-4-2",
"players": [
{
"hash": "Wl4EyKZk",
"name": "Aubameyang P.",
"captain": "",
"detail_link": "/player/aubameyang-pierre-emerick/Wl4EyKZk/",
"short_name": "Aubameyang",
"shirt_number": "17",
"country": "Gabon",
"facts": [
{
"type": "3",
"time": "55' Aubameyang P. (Reus M.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "70' Aubameyang P. (Durm E.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "81'",
"description": "Schurrle A.",
"linked_player_hash": "SUtZhkKF"
}
],
"lineup": 10,
"starting": true,
"long_name": "Pierre-Emerick Aubameyang"
},
{
"hash": "8K4WA9Gh",
"name": "Bartra M.",
"captain": "",
"detail_link": "/player/bartra-marc/8K4WA9Gh/",
"short_name": "Bartra",
"shirt_number": "5",
"country": "Spain",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Marc Bartra"
},
{
"hash": "x6gzWUIk",
"name": "Burki R.",
"captain": "",
"detail_link": "/player/burki-roman/x6gzWUIk/",
"short_name": "Burki",
"shirt_number": "38",
"country": "Switzerland",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Roman Burki"
},
{
"hash": "tWNcwyFS",
"name": "Castro G.",
"captain": "",
"detail_link": "/player/castro-gonzalo/tWNcwyFS/",
"short_name": "Castro",
"shirt_number": "27",
"country": "Germany",
"facts": [],
"lineup": 8,
"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": "6",
"time": "76'",
"description": "Kagawa S.",
"linked_player_hash": "zcwd2hro"
}
],
"lineup": 7,
"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": [
{
"type": "8",
"time": "70' Aubameyang P. (Durm E.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Erik Durm"
},
{
"hash": "ImhgOoOl",
"name": "Guerreiro R.",
"captain": "",
"detail_link": "/player/guerreiro-raphael/ImhgOoOl/",
"short_name": "Guerreiro",
"shirt_number": "13",
"country": "Portugal",
"facts": [
{
"type": "8",
"time": "13' Sokratis (Guerreiro R.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Raphael Guerreiro"
},
{
"hash": "AZgM33p0",
"name": "Piszczek L.",
"captain": "",
"detail_link": "/player/piszczek-lukasz/AZgM33p0/",
"short_name": "Piszczek",
"shirt_number": "26",
"country": "Poland",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Lukasz Piszczek"
},
{
"hash": "fonESekN",
"name": "Reus M.",
"captain": "(C)",
"detail_link": "/player/reus-marco/fonESekN/",
"short_name": "Reus",
"shirt_number": "11",
"country": "Germany",
"facts": [
{
"type": "8",
"time": "55' Aubameyang P. (Reus M.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "82'",
"description": "Pulisic C.",
"linked_player_hash": "vTuaEfRq"
}
],
"lineup": 11,
"starting": true,
"long_name": "Marco Reus"
},
{
"hash": "SQr6hJJR",
"name": "Sokratis",
"captain": "",
"detail_link": "/player/papastathopoulos-sokratis/SQr6hJJR/",
"short_name": "Papastathopoulos",
"shirt_number": "25",
"country": "Greece",
"facts": [
{
"type": "3",
"time": "13' Sokratis (Guerreiro R.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 3,
"starting": true,
"long_name": "Sokratis Papastathopoulos"
},
{
"hash": "2wwMMwAa",
"name": "Weigl J.",
"captain": "",
"detail_link": "/player/weigl-julian/2wwMMwAa/",
"short_name": "Weigl",
"shirt_number": "33",
"country": "Germany",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Julian Weigl"
},
{
"hash": "27fpNoQk",
"name": "Ginter M.",
"captain": "",
"detail_link": "/player/ginter-matthias/27fpNoQk/",
"short_name": "Ginter",
"shirt_number": "28",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Matthias Ginter"
},
{
"hash": "zcwd2hro",
"name": "Kagawa S.",
"captain": "",
"detail_link": "/player/kagawa-shinji/zcwd2hro/",
"short_name": "Kagawa",
"shirt_number": "23",
"country": "Japan",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Dembele O.",
"linked_player_hash": "zsMC2Ec0"
}
],
"lineup": null,
"starting": false,
"long_name": "Shinji Kagawa"
},
{
"hash": "QFt86bm1",
"name": "Merino M.",
"captain": "",
"detail_link": "/player/merino-mikel/QFt86bm1/",
"short_name": "Merino",
"shirt_number": "24",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mikel Merino"
},
{
"hash": "vTuaEfRq",
"name": "Pulisic C.",
"captain": "",
"detail_link": "/player/pulisic-christian/vTuaEfRq/",
"short_name": "Pulisic",
"shirt_number": "22",
"country": "USA",
"facts": [
{
"type": "7",
"time": "82'",
"description": "Reus M.",
"linked_player_hash": "fonESekN"
}
],
"lineup": null,
"starting": false,
"long_name": "Christian Pulisic"
},
{
"hash": "n3VwNCjb",
"name": "Schmelzer M.",
"captain": "",
"detail_link": "/player/schmelzer-marcel/n3VwNCjb/",
"short_name": "Schmelzer",
"shirt_number": "29",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marcel Schmelzer"
},
{
"hash": "SUtZhkKF",
"name": "Schurrle A.",
"captain": "",
"detail_link": "/player/schurrle-andre/SUtZhkKF/",
"short_name": "Schurrle",
"shirt_number": "21",
"country": "Germany",
"facts": [
{
"type": "7",
"time": "81'",
"description": "Aubameyang P.",
"linked_player_hash": "Wl4EyKZk"
}
],
"lineup": null,
"starting": false,
"long_name": "Andre Schurrle"
},
{
"hash": "SWPWwvA4",
"name": "Weidenfeller R.",
"captain": "",
"detail_link": "/player/weidenfeller-roman/SWPWwvA4/",
"short_name": "Weidenfeller",
"shirt_number": "1",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Roman Weidenfeller"
}
],
"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": [
"Siebert D."
],
"venue": [
"Dreisamstadion (Freiburg)"
],
"attendance": [
"24 000"
],
"referee_matched": [
"Daniel Siebert"
],
"referee_found": [
"Daniel Siebert"
],
"coach_matched": [
"Christian Streich",
"Thomas Tuchel"
],
"gameHomeTeam": "SC Freiburg",
"home": {
"name": "SC Freiburg",
"detail_link": "/team/freiburg/fiEQZ7C7",
"hash": "fiEQZ7C7",
"names": [
"SC Freiburg",
"Freiburg",
"Freiburg (Ger)",
"freiburg"
]
},
"gameAwayTeam": "Dortmund",
"away": {
"name": "Dortmund",
"detail_link": "/team/dortmund/nP1i5US1",
"hash": "nP1i5US1",
"names": [
"Dortmund",
"Dortmund (Ger)",
"dortmund"
]
},
"gameDate": "25/02/2017 - 15:30",
"annotations": [
{
"important": true,
"gameTime": "3 - 00:00",
"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": "0"
},
{
"important": false,
"gameTime": "2 - 44:59",
"label": "attendance",
"description": "The attendance is 24000.",
"identified": "The attendance is 24000.",
"anonymized": "The attendance is 24000.",
"visibility": "shown",
"position": "2699000"
},
{
"important": false,
"gameTime": "2 - 44:01",
"label": "",
"description": "Maximilian Philipp (Freiburg) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. Daniel Siebert blows for the foul but keeps his cards in his pocket on this occasion.",
"identified": "[PLAYER_6PCSjJja] ([TEAM_]) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. [REFEREE] blows for the foul but keeps his cards in his pocket on this occasion.",
"anonymized": "[PLAYER] ([TEAM]) carelessly slides into the feet of his opponent and he'll be lucky to avoid punishment. [REFEREE] blows for the foul but keeps his cards in his pocket on this occasion.",
"visibility": "shown",
"position": "2641000"
},
{
"important": false,
"gameTime": "2 - 41:46",
"label": "",
"description": "Florian Niederlechner (Freiburg) is adjudged offside.",
"identified": "[PLAYER_txGA3Xvc] ([TEAM_]) is adjudged offside.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "2506000"
},
{
"important": true,
"gameTime": "2 - 39:50",
"label": "substitution",
"description": "Here is a change. Lukas Kubler is going off and Christian Streich gives the last tactical orders to Aleksandar Ignjovski (Freiburg).",
"identified": "Here is a change. [PLAYER_reFzjZgO] is going off and [COACH_l0fHXMdE] gives the last tactical orders to [PLAYER_82RZptfL] ([TEAM_]).",
"anonymized": "Here is a change. [PLAYER] is going off and [COACH] gives the last tactical orders to [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2390000"
},
{
"important": false,
"gameTime": "2 - 39:08",
"label": "",
"description": "Shinji Kagawa (Dortmund) latched on to a lofted pass inside the box, but his header misses to the right of the target.",
"identified": "[PLAYER_zcwd2hro] ([TEAM_]) latched on to a lofted pass inside the box, but his header misses to the right of the target.",
"anonymized": "[PLAYER] ([TEAM]) latched on to a lofted pass inside the box, but his header misses to the right of the target.",
"visibility": "shown",
"position": "2348000"
},
{
"important": false,
"gameTime": "2 - 37:20",
"label": "",
"description": "Maximilian Philipp (Freiburg) makes a reckless foul in order to win the ball from his opponent. Daniel Siebert has a clear sight of it and blows his whistle.",
"identified": "[PLAYER_6PCSjJja] ([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": "2240000"
},
{
"important": true,
"gameTime": "2 - 36:35",
"label": "substitution",
"description": "Thomas Tuchel has decided to substitute Marco Reus and he is replaced by Christian Pulisic (Dortmund).",
"identified": "[COACH_CQTUFgPk] has decided to substitute [PLAYER_fonESekN] and he is replaced by [PLAYER_vTuaEfRq] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2195000"
},
{
"important": true,
"gameTime": "2 - 35:42",
"label": "substitution",
"description": "The referee stops play so that a substitution can be made and Pierre-Emerick Aubameyang leaves the pitch and Andre Schurrle (Dortmund) comes on.",
"identified": "The referee stops play so that a substitution can be made and [PLAYER_Wl4EyKZk] leaves the pitch and [PLAYER_SUtZhkKF] ([TEAM_]) comes on.",
"anonymized": "The referee stops play so that a substitution can be made and [PLAYER] leaves the pitch and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "2142000"
},
{
"important": false,
"gameTime": "2 - 34:45",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) wriggles into space and fires the ball from the edge of the area, but one of the defenders is there to block the effort.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) wriggles into space and fires the ball from the edge of the area, but one of the defenders is there to block the effort.",
"anonymized": "[PLAYER] ([TEAM]) wriggles into space and fires the ball from the edge of the area, but one of the defenders is there to block the effort.",
"visibility": "shown",
"position": "2085000"
},
{
"important": true,
"gameTime": "2 - 30:38",
"label": "substitution",
"description": "The manager makes a subsitution with Shinji Kagawa (Dortmund) coming on for Ousmane Dembele.",
"identified": "The manager makes a subsitution with [PLAYER_zcwd2hro] ([TEAM_]) coming on for [PLAYER_zsMC2Ec0].",
"anonymized": "The manager makes a subsitution with [PLAYER] ([TEAM]) coming on for [PLAYER].",
"visibility": "shown",
"position": "1838000"
},
{
"important": false,
"gameTime": "2 - 30:05",
"label": "",
"description": "Lukasz Piszczek (Dortmund) gives away a foul during an attacking move and the referee blows his whistle.",
"identified": "[PLAYER_AZgM33p0] ([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": "1805000"
},
{
"important": false,
"gameTime": "2 - 27:33",
"label": "",
"description": "Julian Weigl (Dortmund) makes a strong challenge and Daniel Siebert blows for a foul.",
"identified": "[PLAYER_2wwMMwAa] ([TEAM_]) makes a strong challenge and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes a strong challenge and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "1653000"
},
{
"important": false,
"gameTime": "2 - 26:34",
"label": "",
"description": "Florian Niederlechner (Freiburg) unleashes a superb first-time shot from the edge of the box, but it flies narrowly wide of the left post.",
"identified": "[PLAYER_txGA3Xvc] ([TEAM_]) unleashes a superb first-time shot from the edge of the box, but it flies narrowly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a superb first-time shot from the edge of the box, but it flies narrowly wide of the left post.",
"visibility": "shown",
"position": "1594000"
},
{
"important": true,
"gameTime": "2 - 24:33",
"label": "soccer-ball",
"description": "It's in the back of the net! Erik Durm sprays a pass out to Pierre-Emerick Aubameyang (Dortmund), and he has an easy job to slot the ball into an empty net. The score is 0:3.",
"identified": "It's in the back of the net! [PLAYER_SCOMojXE] sprays a pass out to [PLAYER_Wl4EyKZk] ([TEAM_]), and he has an easy job to slot the ball into an empty net. The score is 0:3.",
"anonymized": "It's in the back of the net! [PLAYER] sprays a pass out to [PLAYER] ([TEAM]), and he has an easy job to slot the ball into an empty net. The score is 0:3.",
"visibility": "shown",
"position": "1473000"
},
{
"important": false,
"gameTime": "2 - 24:10",
"label": "",
"description": "Ousmane Dembele (Dortmund) amazingly found his way through the defence, but lacked a precise finish as his effort from close range went slightly wide of the right post.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) amazingly found his way through the defence, but lacked a precise finish as his effort from close range went slightly wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) amazingly found his way through the defence, but lacked a precise finish as his effort from close range went slightly wide of the right post.",
"visibility": "shown",
"position": "1450000"
},
{
"important": true,
"gameTime": "2 - 22:32",
"label": "",
"description": "Great ball in from Ousmane Dembele. Pierre-Emerick Aubameyang (Dortmund) should really have done better with a close-range header, but he heads it a whisker over the crossbar.",
"identified": "Great ball in from [PLAYER_zsMC2Ec0]. [PLAYER_Wl4EyKZk] ([TEAM_]) should really have done better with a close-range header, but he heads it a whisker over the crossbar.",
"anonymized": "Great ball in from [PLAYER]. [PLAYER] ([TEAM]) should really have done better with a close-range header, but he heads it a whisker over the crossbar.",
"visibility": "shown",
"position": "1352000"
},
{
"important": true,
"gameTime": "2 - 21:37",
"label": "y-card",
"description": "Maximilian Philipp (Freiburg) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. Daniel Siebert didn't think twice about pulling it out of his pocket.",
"identified": "[PLAYER_6PCSjJja] ([TEAM_]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"anonymized": "[PLAYER] ([TEAM]) can't expect anything else than a yellow card for his hard tackle. And a yellow it is. [REFEREE] didn't think twice about pulling it out of his pocket.",
"visibility": "shown",
"position": "1297000"
},
{
"important": false,
"gameTime": "2 - 20:32",
"label": "corner",
"description": "The corner kick from Vincenzo Grifo (Freiburg) is headed out of the penalty area by one of the defenders.",
"identified": "The corner kick from [PLAYER_jBePSV5m] ([TEAM_]) is headed out of the penalty area by one of the defenders.",
"anonymized": "The corner kick from [PLAYER] ([TEAM]) is headed out of the penalty area by one of the defenders.",
"visibility": "shown",
"position": "1232000"
},
{
"important": false,
"gameTime": "2 - 20:14",
"label": "",
"description": "Florian Niederlechner (Freiburg) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of Roman Burki. It will be a corner kick for Freiburg.",
"identified": "[PLAYER_txGA3Xvc] ([TEAM_]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER_x6gzWUIk]. It will be a corner kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER]. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "1214000"
},
{
"important": false,
"gameTime": "2 - 20:05",
"label": "corner",
"description": "Vincenzo Grifo (Freiburg) takes the corner kick but the ball only finds the head of an opponent.",
"identified": "[PLAYER_jBePSV5m] ([TEAM_]) takes the corner kick but the ball only finds the head of an opponent.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner kick but the ball only finds the head of an opponent.",
"visibility": "shown",
"position": "1205000"
},
{
"important": false,
"gameTime": "2 - 19:51",
"label": "",
"description": "Florian Niederlechner (Freiburg) serves up a nice cross, but the defence clears the danger. Freiburg force their opponents to concede a corner.",
"identified": "[PLAYER_txGA3Xvc] ([TEAM_]) serves up a nice cross, but the defence clears the danger. [TEAM_] force their opponents to concede a corner.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but the defence clears the danger. [TEAM] force their opponents to concede a corner.",
"visibility": "shown",
"position": "1191000"
},
{
"important": true,
"gameTime": "2 - 19:00",
"label": "substitution",
"description": "Christian Streich is forced to make a change. Nils Petersen is not able to carry on due to injury. He is replaced by Florian Niederlechner (Freiburg).",
"identified": "[COACH_l0fHXMdE] is forced to make a change. [PLAYER_SYQdXAZ4] is not able to carry on due to injury. He is replaced by [PLAYER_txGA3Xvc] ([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": "1140000"
},
{
"important": false,
"gameTime": "2 - 18:39",
"label": "",
"description": "Julian Weigl (Dortmund) brings his opponent down with a tackle and Daniel Siebert blows his whistle for a foul.",
"identified": "[PLAYER_2wwMMwAa] ([TEAM_]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "1119000"
},
{
"important": false,
"gameTime": "2 - 14:51",
"label": "",
"description": "Nils Petersen (Freiburg) wins himself just enough space inside the box to connect with the corner. His header flies towards the middle of the goal, but the goalkeeper blocks the effort.",
"identified": "[PLAYER_SYQdXAZ4] ([TEAM_]) wins himself just enough space inside the box to connect with the corner. His header flies towards the middle of the goal, but the goalkeeper blocks the effort.",
"anonymized": "[PLAYER] ([TEAM]) wins himself just enough space inside the box to connect with the corner. His header flies towards the middle of the goal, but the goalkeeper blocks the effort.",
"visibility": "shown",
"position": "891000"
},
{
"important": false,
"gameTime": "2 - 14:27",
"label": "corner",
"description": "Vincenzo Grifo (Freiburg) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"identified": "[PLAYER_jBePSV5m] ([TEAM_]) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) looks like he will be the one to try and deliver a quality ball into the penalty box from the corner kick.",
"visibility": "shown",
"position": "867000"
},
{
"important": false,
"gameTime": "2 - 14:05",
"label": "",
"description": "A lofted cross from Nils Petersen (Freiburg) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. The linesman makes the right call and Freiburg will have a corner.",
"identified": "A lofted cross from [PLAYER_SYQdXAZ4] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "A lofted cross from [PLAYER] ([TEAM]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "845000"
},
{
"important": false,
"gameTime": "2 - 13:19",
"label": "corner",
"description": "Vincenzo Grifo (Freiburg) swings in the corner, but it's comfortably cleared away.",
"identified": "[PLAYER_jBePSV5m] ([TEAM_]) swings in the corner, but it's comfortably cleared away.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but it's comfortably cleared away.",
"visibility": "shown",
"position": "799000"
},
{
"important": true,
"gameTime": "2 - 10:00",
"label": "soccer-ball",
"description": "Goal! Marco Reus puts the ball across the area and Pierre-Emerick Aubameyang (Dortmund) has the easiest task in the world to tuck the ball into an empty net. 0:2.",
"identified": "Goal! [PLAYER_fonESekN] puts the ball across the area and [PLAYER_Wl4EyKZk] ([TEAM_]) has the easiest task in the world to tuck the ball into an empty net. 0:2.",
"anonymized": "Goal! [PLAYER] puts the ball across the area and [PLAYER] ([TEAM]) has the easiest task in the world to tuck the ball into an empty net. 0:2.",
"visibility": "shown",
"position": "600000"
},
{
"important": false,
"gameTime": "2 - 09:12",
"label": "corner",
"description": "The resulting corner, taken by Ousmane Dembele (Dortmund), comes to nothing.",
"identified": "The resulting corner, taken by [PLAYER_zsMC2Ec0] ([TEAM_]), comes to nothing.",
"anonymized": "The resulting corner, taken by [PLAYER] ([TEAM]), comes to nothing.",
"visibility": "shown",
"position": "552000"
},
{
"important": false,
"gameTime": "2 - 08:07",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. The ball goes out of play. Dortmund are awarded a corner kick.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "487000"
},
{
"important": false,
"gameTime": "2 - 04:51",
"label": "",
"description": "Nils Petersen (Freiburg) pulls the jersey of one of the opposition players and Daniel Siebert blows his whistle for a foul.",
"identified": "[PLAYER_SYQdXAZ4] ([TEAM_]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "291000"
},
{
"important": false,
"gameTime": "2 - 01:36",
"label": "",
"description": "A cross is clipped into the penalty area by Pierre-Emerick Aubameyang (Dortmund) but poses no threat.",
"identified": "A cross is clipped into the penalty area by [PLAYER_Wl4EyKZk] ([TEAM_]) but poses no threat.",
"anonymized": "A cross is clipped into the penalty area by [PLAYER] ([TEAM]) but poses no threat.",
"visibility": "shown",
"position": "96000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The second half has just started.",
"identified": "The second half has just started.",
"anonymized": "The second half has just started.",
"visibility": "shown",
"position": "1000"
},
{
"important": true,
"gameTime": "2 - 00:00",
"label": "whistle",
"description": "The first half of today's match has just finished.",
"identified": "The first half of today's match has just finished.",
"anonymized": "The first half of today's match has just finished.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:59",
"label": "",
"description": "It's unbelievable, Pierre-Emerick Aubameyang (Dortmund) blows a huge opportunity! He is totally unmarked and fires a first-time shot towards goal from a few yards out, but Alexander Schwolow reacts superbly to keep the ball out.",
"identified": "It's unbelievable, [PLAYER_Wl4EyKZk] ([TEAM_]) blows a huge opportunity! He is totally unmarked and fires a first-time shot towards goal from a few yards out, but [PLAYER_fPL4Y2AK] reacts superbly to keep the ball out.",
"anonymized": "It's unbelievable, [PLAYER] ([TEAM]) blows a huge opportunity! He is totally unmarked and fires a first-time shot towards goal from a few yards out, but [PLAYER] reacts superbly to keep the ball out.",
"visibility": "shown",
"position": "2699000"
},
{
"important": false,
"gameTime": "1 - 43:31",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) is unable to feed a through ball into the path of his teammates.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) is unable to feed a through ball into the path of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) is unable to feed a through ball into the path of his teammates.",
"visibility": "shown",
"position": "2611000"
},
{
"important": false,
"gameTime": "1 - 40:08",
"label": "corner",
"description": "Raphael Guerreiro (Dortmund) takes the corner which is cleared by the opposition's defence.",
"identified": "[PLAYER_ImhgOoOl] ([TEAM_]) takes the corner which is cleared by the opposition's defence.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner which is cleared by the opposition's defence.",
"visibility": "shown",
"position": "2408000"
},
{
"important": false,
"gameTime": "1 - 39:34",
"label": "",
"description": "A cross from Marco Reus (Dortmund) fails to reach the box as the defence clears the ball away to safety. The ball is out of play and Dortmund manage to earn a corner.",
"identified": "A cross from [PLAYER_fonESekN] ([TEAM_]) fails to reach the box as the defence clears the ball away to safety. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "A cross from [PLAYER] ([TEAM]) fails to reach the box as the defence clears the ball away to safety. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "2374000"
},
{
"important": false,
"gameTime": "1 - 37:14",
"label": "",
"description": "Ousmane Dembele (Dortmund) finds space on the edge of the box, but his wild shot goes high over the bar.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) finds space on the edge of the box, but his wild shot goes high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) finds space on the edge of the box, but his wild shot goes high over the bar.",
"visibility": "shown",
"position": "2234000"
},
{
"important": false,
"gameTime": "1 - 34:27",
"label": "",
"description": "Nicolas Hofler (Freiburg) fails to find a teammate across the pitch with a long ball.",
"identified": "[PLAYER_z1kH2LS3] ([TEAM_]) fails to find a teammate across the pitch with a long ball.",
"anonymized": "[PLAYER] ([TEAM]) fails to find a teammate across the pitch with a long ball.",
"visibility": "shown",
"position": "2067000"
},
{
"important": true,
"gameTime": "1 - 30:45",
"label": "",
"description": "Raphael Guerreiro (Dortmund) has a huge chance to score from close range, but his effort goes just a few inches wide of the right-hand post.",
"identified": "[PLAYER_ImhgOoOl] ([TEAM_]) has a huge chance to score from close range, but his effort goes just a few inches wide of the right-hand post.",
"anonymized": "[PLAYER] ([TEAM]) has a huge chance to score from close range, but his effort goes just a few inches wide of the right-hand post.",
"visibility": "shown",
"position": "1845000"
},
{
"important": false,
"gameTime": "1 - 28:56",
"label": "",
"description": "Julian Weigl (Dortmund) creates a yard of space for himself and tries an effort from the edge of the box, but it goes just wide of the left post.",
"identified": "[PLAYER_2wwMMwAa] ([TEAM_]) creates a yard of space for himself and tries an effort from the edge of the box, but it goes just wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) creates a yard of space for himself and tries an effort from the edge of the box, but it goes just wide of the left post.",
"visibility": "shown",
"position": "1736000"
},
{
"important": false,
"gameTime": "1 - 27:10",
"label": "",
"description": "Julian Weigl (Dortmund) was too fierce in his attempt to get the ball from his opponent and Daniel Siebert blows for a foul.",
"identified": "[PLAYER_2wwMMwAa] ([TEAM_]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) was too fierce in his attempt to get the ball from his opponent and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "1630000"
},
{
"important": true,
"gameTime": "1 - 23:48",
"label": "",
"description": "Pierre-Emerick Aubameyang (Dortmund) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of Alexander Schwolow.",
"identified": "[PLAYER_Wl4EyKZk] ([TEAM_]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER_fPL4Y2AK].",
"anonymized": "[PLAYER] ([TEAM]) came close to scoring but should have done much better. His poor attempt from close range ended up in the gloves of [PLAYER].",
"visibility": "shown",
"position": "1428000"
},
{
"important": true,
"gameTime": "1 - 23:08",
"label": "substitution",
"description": "Substitution. Onur Bulut walks off the pitch and Marc-Oliver Kempf (Freiburg) comes on as a substitute.",
"identified": "Substitution. [PLAYER_O4yLW4q7] walks off the pitch and [PLAYER_AR2PqO6h] ([TEAM_]) comes on as a substitute.",
"anonymized": "Substitution. [PLAYER] walks off the pitch and [PLAYER] ([TEAM]) comes on as a substitute.",
"visibility": "shown",
"position": "1388000"
},
{
"important": false,
"gameTime": "1 - 22:54",
"label": "",
"description": "Flag goes up against Christian Gunter (Freiburg) and the referee blows his whistle for offside.",
"identified": "Flag goes up against [PLAYER_CYgQyyFL] ([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": "1374000"
},
{
"important": false,
"gameTime": "1 - 20:59",
"label": "",
"description": "Vincenzo Grifo (Freiburg) unleashes a sharp shot from the free kick that sails not far wide of the left post.",
"identified": "[PLAYER_jBePSV5m] ([TEAM_]) unleashes a sharp shot from the free kick that sails not far wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a sharp shot from the free kick that sails not far wide of the left post.",
"visibility": "shown",
"position": "1259000"
},
{
"important": false,
"gameTime": "1 - 19:22",
"label": "",
"description": "A clumsy foul by Julian Weigl (Dortmund) and Daniel Siebert blows his whistle.",
"identified": "A clumsy foul by [PLAYER_2wwMMwAa] ([TEAM_]) and [REFEREE] blows his whistle.",
"anonymized": "A clumsy foul by [PLAYER] ([TEAM]) and [REFEREE] blows his whistle.",
"visibility": "shown",
"position": "1162000"
},
{
"important": false,
"gameTime": "1 - 18:39",
"label": "corner",
"description": "Marco Reus (Dortmund) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"identified": "[PLAYER_fonESekN] ([TEAM_]) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"anonymized": "[PLAYER] ([TEAM]) swings in a dangerous cross from the resulting corner kick, but none of his teammates manage to outjump the defence.",
"visibility": "shown",
"position": "1119000"
},
{
"important": false,
"gameTime": "1 - 18:27",
"label": "",
"description": "Erik Durm (Dortmund) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender. Dortmund will have a chance to score from a corner kick.",
"identified": "[PLAYER_SCOMojXE] ([TEAM_]) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender. [TEAM_] will have a chance to score from a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a powerful shot towards goal, but it is bravely blocked by a self-sacrificing defender. [TEAM] will have a chance to score from a corner kick.",
"visibility": "shown",
"position": "1107000"
},
{
"important": false,
"gameTime": "1 - 17:00",
"label": "",
"description": "Ousmane Dembele (Dortmund) slides a pass forward, but one of the defenders cuts it out.",
"identified": "[PLAYER_zsMC2Ec0] ([TEAM_]) slides a pass forward, but one of the defenders cuts it out.",
"anonymized": "[PLAYER] ([TEAM]) slides a pass forward, but one of the defenders cuts it out.",
"visibility": "shown",
"position": "1020000"
},
{
"important": false,
"gameTime": "1 - 15:00",
"label": "",
"description": "Marco Reus (Dortmund) is offside and the linesman raises his flag.",
"identified": "[PLAYER_fonESekN] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "900000"
},
{
"important": true,
"gameTime": "1 - 12:35",
"label": "soccer-ball",
"description": "GOAL! Raphael Guerreiro curls the free kick into the box. Sokratis (Dortmund) peels off his marker and arrows a brilliant header past Alexander Schwolow and into the right side of the net. 0:1.",
"identified": "GOAL! [PLAYER_ImhgOoOl] curls the free kick into the box. [PLAYER_SQr6hJJR] ([TEAM_]) peels off his marker and arrows a brilliant header past [PLAYER_fPL4Y2AK] and into the right side of the net. 0:1.",
"anonymized": "GOAL! [PLAYER] curls the free kick into the box. [PLAYER] ([TEAM]) peels off his marker and arrows a brilliant header past [PLAYER] and into the right side of the net. 0:1.",
"visibility": "shown",
"position": "755000"
},
{
"important": false,
"gameTime": "1 - 11:21",
"label": "",
"description": "Daniel Siebert blows his whistle and signals a foul after Caglar Soyuncu (Freiburg) brought his opponent down.",
"identified": "[REFEREE] blows his whistle and signals a foul after [PLAYER_GKPbIMVk] ([TEAM_]) brought his opponent down.",
"anonymized": "[REFEREE] blows his whistle and signals a foul after [PLAYER] ([TEAM]) brought his opponent down.",
"visibility": "shown",
"position": "681000"
}
]
} |