File size: 71,931 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 |
{
"timestamp": "1483360200",
"score": "0 - 0",
"round": "20",
"teams": [
"Middlesbrough",
"Leicester"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "SCumkkbo",
"name": "Barragan A.",
"captain": "",
"detail_link": "/player/barragan-antonio/SCumkkbo/",
"short_name": "Barragan",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "34'",
"description": "Friend G.",
"linked_player_hash": "j3Wcbwy7"
}
],
"lineup": 2,
"starting": true,
"long_name": "Antonio Barragan"
},
{
"hash": "6u93gyCG",
"name": "Chambers C.",
"captain": "",
"detail_link": "/player/chambers-calum/6u93gyCG/",
"short_name": "Chambers",
"shirt_number": "25",
"country": "England",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Calum Chambers"
},
{
"hash": "CtwkdhwG",
"name": "Clayton A.",
"captain": "",
"detail_link": "/player/clayton-adam/CtwkdhwG/",
"short_name": "Clayton",
"shirt_number": "8",
"country": "England",
"facts": [
{
"type": "1",
"time": "90+2' Clayton A. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Adam Clayton"
},
{
"hash": "SUUtwXea",
"name": "De Roon M.",
"captain": "",
"detail_link": "/player/de-roon-marten/SUUtwXea/",
"short_name": "de Roon",
"shirt_number": "14",
"country": "Netherlands",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Marten de Roon"
},
{
"hash": "bgmddQ5K",
"name": "Fabio",
"captain": "",
"detail_link": "/player/fabio/bgmddQ5K/",
"short_name": "Fabio",
"shirt_number": "2",
"country": "Brazil",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Fabio"
},
{
"hash": "jyA9HfzA",
"name": "Forshaw A.",
"captain": "",
"detail_link": "/player/forshaw-adam/jyA9HfzA/",
"short_name": "Forshaw",
"shirt_number": "34",
"country": "England",
"facts": [
{
"type": "6",
"time": "89'",
"description": "Leadbitter G.",
"linked_player_hash": "z7WWnhmB"
}
],
"lineup": 8,
"starting": true,
"long_name": "Adam Forshaw"
},
{
"hash": "YDphty6J",
"name": "Gibson B.",
"captain": "(C)",
"detail_link": "/player/gibson-benjamin/YDphty6J/",
"short_name": "Gibson",
"shirt_number": "6",
"country": "England",
"facts": [
{
"type": "1",
"time": "43' Gibson B. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Benjamin Gibson"
},
{
"hash": "M3Uze1K2",
"name": "Guzan B.",
"captain": "",
"detail_link": "/player/guzan-brad/M3Uze1K2/",
"short_name": "Guzan",
"shirt_number": "12",
"country": "USA",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Brad Guzan"
},
{
"hash": "bqru3cQB",
"name": "Negredo A.",
"captain": "",
"detail_link": "/player/negredo-alvaro/bqru3cQB/",
"short_name": "Negredo",
"shirt_number": "10",
"country": "Spain",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Alvaro Negredo"
},
{
"hash": "8Mgf8MLm",
"name": "Ramirez G.",
"captain": "",
"detail_link": "/player/ramirez-gaston/8Mgf8MLm/",
"short_name": "Ramirez",
"shirt_number": "21",
"country": "Uruguay",
"facts": [
{
"type": "1",
"time": "26' Ramirez G. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Gaston Ramirez"
},
{
"hash": "Qsy3Kmgj",
"name": "Traore A.",
"captain": "",
"detail_link": "/player/traore-adama/Qsy3Kmgj/",
"short_name": "Traore",
"shirt_number": "37",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "80'",
"description": "Downing S.",
"linked_player_hash": "EP3zGb9k"
}
],
"lineup": 9,
"starting": true,
"long_name": "Adama Traore"
},
{
"hash": "4j2lRKqG",
"name": "Bernardo",
"captain": "",
"detail_link": "/player/espinosa-bernardo/4j2lRKqG/",
"short_name": "Bernardo",
"shirt_number": "5",
"country": "Colombia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Bernardo"
},
{
"hash": "EP3zGb9k",
"name": "Downing S.",
"captain": "",
"detail_link": "/player/downing-stewart/EP3zGb9k/",
"short_name": "Downing",
"shirt_number": "19",
"country": "England",
"facts": [
{
"type": "7",
"time": "80'",
"description": "Traore A.",
"linked_player_hash": "Qsy3Kmgj"
}
],
"lineup": null,
"starting": false,
"long_name": "Stewart Downing"
},
{
"hash": "j3Wcbwy7",
"name": "Friend G.",
"captain": "",
"detail_link": "/player/friend-george/j3Wcbwy7/",
"short_name": "Friend",
"shirt_number": "3",
"country": "England",
"facts": [
{
"type": "7",
"time": "34'",
"description": "Barragan A.",
"linked_player_hash": "SCumkkbo"
}
],
"lineup": null,
"starting": false,
"long_name": "George Friend"
},
{
"hash": "QRFlBjwA",
"name": "Konstantopoulos D.",
"captain": "",
"detail_link": "/player/konstantopoulos-dimitrios/QRFlBjwA/",
"short_name": "Konstantopoulos",
"shirt_number": "1",
"country": "Greece",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Dimitrios Konstantopoulos"
},
{
"hash": "z7WWnhmB",
"name": "Leadbitter G.",
"captain": "",
"detail_link": "/player/leadbitter-grant/z7WWnhmB/",
"short_name": "Leadbitter",
"shirt_number": "7",
"country": "England",
"facts": [
{
"type": "7",
"time": "89'",
"description": "Forshaw A.",
"linked_player_hash": "jyA9HfzA"
}
],
"lineup": null,
"starting": false,
"long_name": "Grant Leadbitter"
},
{
"hash": "drm1r7C6",
"name": "Rhodes J.",
"captain": "",
"detail_link": "/player/rhodes-jordan/drm1r7C6/",
"short_name": "Rhodes",
"shirt_number": "9",
"country": "Scotland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jordan Rhodes"
},
{
"hash": "U5yv9YBB",
"name": "Stuani C.",
"captain": "",
"detail_link": "/player/stuani-christian/U5yv9YBB/",
"short_name": "Stuani",
"shirt_number": "18",
"country": "Uruguay",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Cristhian Stuani"
}
],
"coach": [
{
"hash": "xtZXs9hh",
"name": "Karanka A.",
"captain": "",
"detail_link": "/player/karanka-de-la-hoz-aitor/xtZXs9hh/",
"short_name": "Karanka A.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Aitor Karanka de la Hoz"
}
]
},
"away": {
"tactic": "1-4-1-2-1-2",
"players": [
{
"hash": "pAWZAt4F",
"name": "Amartey D.",
"captain": "",
"detail_link": "/player/amartey-daniel/pAWZAt4F/",
"short_name": "Amartey",
"shirt_number": "13",
"country": "Ghana",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Daniel Amartey"
},
{
"hash": "C6EATqht",
"name": "Fuchs Ch.",
"captain": "",
"detail_link": "/player/fuchs-christian/C6EATqht/",
"short_name": "Fuchs",
"shirt_number": "28",
"country": "Austria",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Christian Fuchs"
},
{
"hash": "I90mNtHF",
"name": "Huth R.",
"captain": "",
"detail_link": "/player/huth-robert/I90mNtHF/",
"short_name": "Huth",
"shirt_number": "6",
"country": "Germany",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Robert Huth"
},
{
"hash": "K4XlvQFq",
"name": "King A.",
"captain": "",
"detail_link": "/player/king-andy/K4XlvQFq/",
"short_name": "King",
"shirt_number": "10",
"country": "Wales",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Andy King"
},
{
"hash": "AkzHA2kB",
"name": "Mahrez R.",
"captain": "",
"detail_link": "/player/mahrez-riyad/AkzHA2kB/",
"short_name": "Mahrez",
"shirt_number": "26",
"country": "Algeria",
"facts": [
{
"type": "6",
"time": "71'",
"description": "Musa A.",
"linked_player_hash": "tnCLpeMQ"
}
],
"lineup": 9,
"starting": true,
"long_name": "Riyad Mahrez"
},
{
"hash": "SAjbGhS3",
"name": "Mendy N.",
"captain": "",
"detail_link": "/player/mendy-nampalys/SAjbGhS3/",
"short_name": "Mendy",
"shirt_number": "24",
"country": "Senegal",
"facts": [
{
"type": "6",
"time": "83'",
"description": "Albrighton M.",
"linked_player_hash": "fLz0nwDI"
}
],
"lineup": 7,
"starting": true,
"long_name": "Nampalys Mendy"
},
{
"hash": "ngOpNsxb",
"name": "Morgan W.",
"captain": "(C)",
"detail_link": "/player/morgan-wes/ngOpNsxb/",
"short_name": "Morgan",
"shirt_number": "5",
"country": "Jamaica",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Wes Morgan"
},
{
"hash": "U5aDPZ44",
"name": "Okazaki S.",
"captain": "",
"detail_link": "/player/okazaki-shinji/U5aDPZ44/",
"short_name": "Okazaki",
"shirt_number": "20",
"country": "Japan",
"facts": [
{
"type": "6",
"time": "74'",
"description": "Gray D.",
"linked_player_hash": "AF2iqxB6"
}
],
"lineup": 10,
"starting": true,
"long_name": "Shinji Okazaki"
},
{
"hash": "WM5fllIl",
"name": "Schmeichel K.",
"captain": "",
"detail_link": "/player/schmeichel-kasper/WM5fllIl/",
"short_name": "Schmeichel",
"shirt_number": "1",
"country": "Denmark",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Kasper Schmeichel"
},
{
"hash": "IHI1bGoM",
"name": "Simpson D.",
"captain": "",
"detail_link": "/player/simpson-danny/IHI1bGoM/",
"short_name": "Simpson",
"shirt_number": "17",
"country": "England",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Danny Simpson"
},
{
"hash": "KbQi9AJj",
"name": "Ulloa L.",
"captain": "",
"detail_link": "/player/ulloa-leonardo/KbQi9AJj/",
"short_name": "Ulloa",
"shirt_number": "23",
"country": "Argentina",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Leonardo Ulloa"
},
{
"hash": "fLz0nwDI",
"name": "Albrighton M.",
"captain": "",
"detail_link": "/player/albrighton-marc/fLz0nwDI/",
"short_name": "Albrighton",
"shirt_number": "11",
"country": "England",
"facts": [
{
"type": "7",
"time": "83'",
"description": "Mendy N.",
"linked_player_hash": "SAjbGhS3"
}
],
"lineup": null,
"starting": false,
"long_name": "Marc Albrighton"
},
{
"hash": "txvuTaNB",
"name": "Chilwell B.",
"captain": "",
"detail_link": "/player/chilwell-benjamin/txvuTaNB/",
"short_name": "Chilwell",
"shirt_number": "3",
"country": "England",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ben Chilwell"
},
{
"hash": "AF2iqxB6",
"name": "Gray D.",
"captain": "",
"detail_link": "/player/gray-demarai/AF2iqxB6/",
"short_name": "Gray",
"shirt_number": "22",
"country": "England",
"facts": [
{
"type": "7",
"time": "74'",
"description": "Okazaki S.",
"linked_player_hash": "U5aDPZ44"
}
],
"lineup": null,
"starting": false,
"long_name": "Demarai Gray"
},
{
"hash": "6HSsexVf",
"name": "Hernandez L.",
"captain": "",
"detail_link": "/player/hernandez-luis/6HSsexVf/",
"short_name": "Hernandez",
"shirt_number": "2",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Luis Hernandez"
},
{
"hash": "tnCLpeMQ",
"name": "Musa A.",
"captain": "",
"detail_link": "/player/musa-ahmed/tnCLpeMQ/",
"short_name": "Musa",
"shirt_number": "7",
"country": "Nigeria",
"facts": [
{
"type": "7",
"time": "71'",
"description": "Mahrez R.",
"linked_player_hash": "AkzHA2kB"
}
],
"lineup": null,
"starting": false,
"long_name": "Ahmed Musa"
},
{
"hash": "fRsHSbjH",
"name": "Wasilewski M.",
"captain": "",
"detail_link": "/player/wasilewski-marcin/fRsHSbjH/",
"short_name": "Wasilewski",
"shirt_number": "27",
"country": "Poland",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marcin Wasilewski"
},
{
"hash": "pGbfkpdp",
"name": "Zieler R.",
"captain": "",
"detail_link": "/player/zieler-ron-robert/pGbfkpdp/",
"short_name": "Zieler",
"shirt_number": "21",
"country": "Germany",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Ron-Robert Zieler"
}
],
"coach": [
{
"hash": "zFLwLRZS",
"name": "Ranieri C.",
"captain": "",
"detail_link": "/player/ranieri-claudio/zFLwLRZS/",
"short_name": "Ranieri C.",
"shirt_number": "",
"country": "Italy",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Claudio Ranieri"
}
]
}
},
"referee": [
"Madley R."
],
"venue": [
"Riverside Stadium (Middlesbrough)"
],
"attendance": [
"32 437"
],
"referee_matched": [
"Robert Madley"
],
"referee_found": [
"Robert Madley"
],
"coach_matched": [
"Aitor Karanka de la Hoz",
"Claudio Ranieri"
],
"gameHomeTeam": "Middlesbrough",
"home": {
"name": "Middlesbrough",
"detail_link": "/team/middlesbrough/6F0lvLNC",
"hash": "6F0lvLNC",
"names": [
"Middlesbrough",
"middlesbrough"
]
},
"gameAwayTeam": "Leicester",
"away": {
"name": "Leicester",
"detail_link": "/team/leicester/KrrdAMyI",
"hash": "KrrdAMyI",
"names": [
"Leicester",
"leicester"
]
},
"gameDate": "02/01/2017 - 13:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 51:59",
"label": "",
"description": "The game can't be described as thrilling. We can only hope that the next matches won't follow the same pattern and that they will bring more exciting moments and goal opportunities. Neither of the teams had any obvious superiority in this game. The home side played long passes and crosses into the box. The tactic of the away side, on the other hand, was slow build-up play.",
"identified": "The game can't be described as thrilling. We can only hope that the next matches won't follow the same pattern and that they will bring more exciting moments and goal opportunities. Neither of the teams had any obvious superiority in this game. The home side played long passes and crosses into the box. The tactic of the away side, on the other hand, was slow build-up play.",
"anonymized": "The game can't be described as thrilling. We can only hope that the next matches won't follow the same pattern and that they will bring more exciting moments and goal opportunities. Neither of the teams had any obvious superiority in this game. The home side played long passes and crosses into the box. The tactic of the away side, on the other hand, was slow build-up play.",
"visibility": "shown",
"position": "3119000"
},
{
"important": true,
"gameTime": "2 - 51:42",
"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": "3102000"
},
{
"important": false,
"gameTime": "2 - 51:40",
"label": "",
"description": "Demarai Gray (Leicester) puts a cross into the box from the free kick, but the defender gets there first.",
"identified": "[PLAYER_AF2iqxB6] ([TEAM_]) puts a cross into the box from the free kick, but the defender gets there first.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the free kick, but the defender gets there first.",
"visibility": "shown",
"position": "3100000"
},
{
"important": false,
"gameTime": "2 - 50:18",
"label": "",
"description": "Gaston Ramirez (Middlesbrough) does well to dispossess the attacker with a slide tackle, but the referee blows his whistle for a foul. Another situation results in a direct free kick for Leicester.",
"identified": "[PLAYER_8Mgf8MLm] ([TEAM_]) does well to dispossess the attacker with a slide tackle, but the referee blows his whistle for a foul. Another situation results in a direct free kick for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) does well to dispossess the attacker with a slide tackle, but the referee blows his whistle for a foul. Another situation results in a direct free kick for [TEAM].",
"visibility": "shown",
"position": "3018000"
},
{
"important": false,
"gameTime": "2 - 50:06",
"label": "",
"description": "A pass by Leonardo Ulloa (Leicester) ends up in no man's land, and the attacking effort comes to an end.",
"identified": "A pass by [PLAYER_KbQi9AJj] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end.",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end.",
"visibility": "shown",
"position": "3006000"
},
{
"important": false,
"gameTime": "2 - 47:15",
"label": "",
"description": "Fabio (Middlesbrough) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger.",
"identified": "[PLAYER_bgmddQ5K] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger.",
"visibility": "shown",
"position": "2835000"
},
{
"important": true,
"gameTime": "2 - 46:28",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Adam Clayton (Middlesbrough) was quite harsh and Robert Madley didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_CtwkdhwG] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"anonymized": "This yellow card was deserved. The tackle by [PLAYER] ([TEAM]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"visibility": "shown",
"position": "2788000"
},
{
"important": false,
"gameTime": "2 - 46:04",
"label": "",
"description": "Leonardo Ulloa (Leicester) climbs high to connect with a cross near the penalty spot but plants a header high over the bar.",
"identified": "[PLAYER_KbQi9AJj] ([TEAM_]) climbs high to connect with a cross near the penalty spot but plants a header high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) climbs high to connect with a cross near the penalty spot but plants a header high over the bar.",
"visibility": "shown",
"position": "2764000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "5 additional min. will be played.",
"identified": "5 additional min. will be played.",
"anonymized": "5 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "2 - 43:01",
"label": "substitution",
"description": "Aitor Karanka de la Hoz prepares a substitution. Adam Forshaw is replaced by Grant Leadbitter (Middlesbrough).",
"identified": "[COACH_xtZXs9hh] prepares a substitution. [PLAYER_jyA9HfzA] is replaced by [PLAYER_z7WWnhmB] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2581000"
},
{
"important": false,
"gameTime": "2 - 39:52",
"label": "",
"description": "Adam Clayton (Middlesbrough) flights in the cross, but the defender is alert and clears to safety.",
"identified": "[PLAYER_CtwkdhwG] ([TEAM_]) flights in the cross, but the defender is alert and clears to safety.",
"anonymized": "[PLAYER] ([TEAM]) flights in the cross, but the defender is alert and clears to safety.",
"visibility": "shown",
"position": "2392000"
},
{
"important": true,
"gameTime": "2 - 37:35",
"label": "substitution",
"description": "Substitution. Marc Albrighton (Leicester) has come on for Nampalys Mendy.",
"identified": "Substitution. [PLAYER_fLz0nwDI] ([TEAM_]) has come on for [PLAYER_SAjbGhS3].",
"anonymized": "Substitution. [PLAYER] ([TEAM]) has come on for [PLAYER].",
"visibility": "shown",
"position": "2255000"
},
{
"important": true,
"gameTime": "2 - 37:26",
"label": "",
"description": "Gaston Ramirez (Middlesbrough) spurned a good chance! He gets a shot away from inside the penalty box, but it goes inches wide of the right post.",
"identified": "[PLAYER_8Mgf8MLm] ([TEAM_]) spurned a good chance! He gets a shot away from inside the penalty box, but it goes inches wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) spurned a good chance! He gets a shot away from inside the penalty box, but it goes inches wide of the right post.",
"visibility": "shown",
"position": "2246000"
},
{
"important": false,
"gameTime": "2 - 36:20",
"label": "",
"description": "Demarai Gray (Leicester) fails to find any of his teammates inside the box as his pass is blocked.",
"identified": "[PLAYER_AF2iqxB6] ([TEAM_]) fails to find any of his teammates inside the box as his pass is blocked.",
"anonymized": "[PLAYER] ([TEAM]) fails to find any of his teammates inside the box as his pass is blocked.",
"visibility": "shown",
"position": "2180000"
},
{
"important": false,
"gameTime": "2 - 35:49",
"label": "attendance",
"description": "The attendance for today's match is 32437.",
"identified": "The attendance for today's match is 32437.",
"anonymized": "The attendance for today's match is 32437.",
"visibility": "shown",
"position": "2149000"
},
{
"important": true,
"gameTime": "2 - 34:09",
"label": "substitution",
"description": "Here comes a substitution. Stewart Downing (Middlesbrough) is brought on as a substitute for Adama Traore.",
"identified": "Here comes a substitution. [PLAYER_EP3zGb9k] ([TEAM_]) is brought on as a substitute for [PLAYER_Qsy3Kmgj].",
"anonymized": "Here comes a substitution. [PLAYER] ([TEAM]) is brought on as a substitute for [PLAYER].",
"visibility": "shown",
"position": "2049000"
},
{
"important": false,
"gameTime": "2 - 32:11",
"label": "",
"description": "Fabio (Middlesbrough) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"identified": "[PLAYER_bgmddQ5K] ([TEAM_]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"anonymized": "[PLAYER] ([TEAM]) produces a lovely ball into the penalty area but the defender manages to intercept and comfortably averts the danger.",
"visibility": "shown",
"position": "1931000"
},
{
"important": false,
"gameTime": "2 - 29:56",
"label": "corner",
"description": "The ball is whipped in from the corner by Gaston Ramirez (Middlesbrough), but one of the defenders gets it clear.",
"identified": "The ball is whipped in from the corner by [PLAYER_8Mgf8MLm] ([TEAM_]), but one of the defenders gets it clear.",
"anonymized": "The ball is whipped in from the corner by [PLAYER] ([TEAM]), but one of the defenders gets it clear.",
"visibility": "shown",
"position": "1796000"
},
{
"important": false,
"gameTime": "2 - 29:47",
"label": "",
"description": "George Friend (Middlesbrough) attempts to find some of his teammates with a dangerous pass from the edge of the box. The opponent's defence, however, intercepts the effort and clears the ball to safety. The ball is out of play. Middlesbrough will have a chance to score from a corner.",
"identified": "[PLAYER_j3Wcbwy7] ([TEAM_]) attempts to find some of his teammates with a dangerous pass from the edge of the box. The opponent's defence, however, intercepts the effort and clears the ball to safety. The ball is out of play. [TEAM_] will have a chance to score from a corner.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find some of his teammates with a dangerous pass from the edge of the box. The opponent's defence, however, intercepts the effort and clears the ball to safety. The ball is out of play. [TEAM] will have a chance to score from a corner.",
"visibility": "shown",
"position": "1787000"
},
{
"important": true,
"gameTime": "2 - 28:44",
"label": "substitution",
"description": "Claudio Ranieri has decided to introduce fresh legs, with Demarai Gray (Leicester) replacing Shinji Okazaki.",
"identified": "[COACH_zFLwLRZS] has decided to introduce fresh legs, with [PLAYER_AF2iqxB6] ([TEAM_]) replacing [PLAYER_U5aDPZ44].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "1724000"
},
{
"important": false,
"gameTime": "2 - 28:26",
"label": "",
"description": "Adama Traore (Middlesbrough) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"identified": "[PLAYER_Qsy3Kmgj] ([TEAM_]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) sends a beautiful cross into the penalty area, but the opposition's defence manages to clear the ball to safety.",
"visibility": "shown",
"position": "1706000"
},
{
"important": true,
"gameTime": "2 - 25:52",
"label": "substitution",
"description": "The referee signals that it is time for a substitution and Ahmed Musa (Leicester) will replace Riyad Mahrez.",
"identified": "The referee signals that it is time for a substitution and [PLAYER_tnCLpeMQ] ([TEAM_]) will replace [PLAYER_AkzHA2kB].",
"anonymized": "The referee signals that it is time for a substitution and [PLAYER] ([TEAM]) will replace [PLAYER].",
"visibility": "shown",
"position": "1552000"
},
{
"important": false,
"gameTime": "2 - 24:03",
"label": "",
"description": "Leonardo Ulloa (Leicester) 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_KbQi9AJj] ([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": "1443000"
},
{
"important": false,
"gameTime": "2 - 23:42",
"label": "corner",
"description": "Christian Fuchs (Leicester) is about to take a corner kick.",
"identified": "[PLAYER_C6EATqht] ([TEAM_]) is about to take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) is about to take a corner kick.",
"visibility": "shown",
"position": "1422000"
},
{
"important": false,
"gameTime": "2 - 23:32",
"label": "",
"description": "The defence is alert as they clear a dangerous cross from Christian Fuchs (Leicester). Corner kick. Leicester will have an opportunity.",
"identified": "The defence is alert as they clear a dangerous cross from [PLAYER_C6EATqht] ([TEAM_]). Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "The defence is alert as they clear a dangerous cross from [PLAYER] ([TEAM]). Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "1412000"
},
{
"important": false,
"gameTime": "2 - 22:37",
"label": "",
"description": "George Friend (Middlesbrough) makes a good run with the ball into the box, but mishits his shot as it goes high over the bar.",
"identified": "[PLAYER_j3Wcbwy7] ([TEAM_]) makes a good run with the ball into the box, but mishits his shot as it goes high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) makes a good run with the ball into the box, but mishits his shot as it goes high over the bar.",
"visibility": "shown",
"position": "1357000"
},
{
"important": false,
"gameTime": "2 - 19:26",
"label": "",
"description": "Fabio (Middlesbrough) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"identified": "[PLAYER_bgmddQ5K] ([TEAM_]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross, but the ball is cleared to safety by one of the defending players.",
"visibility": "shown",
"position": "1166000"
},
{
"important": false,
"gameTime": "2 - 18:20",
"label": "",
"description": "Adam Clayton (Middlesbrough) makes an overly-aggressive challenge and Robert Madley blows his whistle for a foul.",
"identified": "[PLAYER_CtwkdhwG] ([TEAM_]) makes an overly-aggressive challenge and [REFEREE] blows his whistle for a foul.",
"anonymized": "[PLAYER] ([TEAM]) makes an overly-aggressive challenge and [REFEREE] blows his whistle for a foul.",
"visibility": "shown",
"position": "1100000"
},
{
"important": false,
"gameTime": "2 - 16:08",
"label": "",
"description": "Fabio (Middlesbrough) produces an effort from the edge of the box, but doesn't hit the ball properly and sends it yards wide of the left post.",
"identified": "[PLAYER_bgmddQ5K] ([TEAM_]) produces an effort from the edge of the box, but doesn't hit the ball properly and sends it yards wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) produces an effort from the edge of the box, but doesn't hit the ball properly and sends it yards wide of the left post.",
"visibility": "shown",
"position": "968000"
},
{
"important": false,
"gameTime": "2 - 15:10",
"label": "",
"description": "George Friend (Middlesbrough) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"identified": "[PLAYER_j3Wcbwy7] ([TEAM_]) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence clears the ball to safety.",
"visibility": "shown",
"position": "910000"
},
{
"important": false,
"gameTime": "2 - 13:18",
"label": "",
"description": "Gaston Ramirez (Middlesbrough) feels very aggrieved after the referee stops play for a foul that he commits while in possession of the ball.",
"identified": "[PLAYER_8Mgf8MLm] ([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": "798000"
},
{
"important": false,
"gameTime": "2 - 12:35",
"label": "",
"description": "An opponent rises to his feet after being downed by Danny Simpson (Leicester). Robert Madley saw the sliding tackle and blows for a foul.",
"identified": "An opponent rises to his feet after being downed by [PLAYER_IHI1bGoM] ([TEAM_]). [REFEREE] saw the sliding tackle and blows for a foul.",
"anonymized": "An opponent rises to his feet after being downed by [PLAYER] ([TEAM]). [REFEREE] saw the sliding tackle and blows for a foul.",
"visibility": "shown",
"position": "755000"
},
{
"important": false,
"gameTime": "2 - 11:17",
"label": "",
"description": "Fabio (Middlesbrough) tries to find Marten de Roon, but he puts too much power on the through ball.",
"identified": "[PLAYER_bgmddQ5K] ([TEAM_]) tries to find [PLAYER_SUUtwXea], but he puts too much power on the through ball.",
"anonymized": "[PLAYER] ([TEAM]) tries to find [PLAYER], but he puts too much power on the through ball.",
"visibility": "shown",
"position": "677000"
},
{
"important": false,
"gameTime": "2 - 09:47",
"label": "",
"description": "Andy King (Leicester) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the right post.",
"identified": "[PLAYER_K4XlvQFq] ([TEAM_]) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself on the edge of the box and produces a poor effort that sails miles wide of the right post.",
"visibility": "shown",
"position": "587000"
},
{
"important": false,
"gameTime": "2 - 09:13",
"label": "",
"description": "Andy King (Leicester) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it.",
"identified": "[PLAYER_K4XlvQFq] ([TEAM_]) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it.",
"anonymized": "[PLAYER] ([TEAM]) found some space to play in a lofted pass, but he looks disappointed as none of his teammates managed to connect with it.",
"visibility": "shown",
"position": "553000"
},
{
"important": false,
"gameTime": "2 - 07:53",
"label": "",
"description": "Gaston Ramirez (Middlesbrough) swings it in and Alvaro Negredo gets on the end of it, but Kasper Schmeichel shows good awareness and comes off his line to thwart the move.",
"identified": "[PLAYER_8Mgf8MLm] ([TEAM_]) swings it in and [PLAYER_bqru3cQB] gets on the end of it, but [PLAYER_WM5fllIl] shows good awareness and comes off his line to thwart the move.",
"anonymized": "[PLAYER] ([TEAM]) swings it in and [PLAYER] gets on the end of it, but [PLAYER] shows good awareness and comes off his line to thwart the move.",
"visibility": "shown",
"position": "473000"
},
{
"important": false,
"gameTime": "2 - 05:10",
"label": "",
"description": "Fabio (Middlesbrough) serves up a nice cross, but Kasper Schmeichel punches the ball away.",
"identified": "[PLAYER_bgmddQ5K] ([TEAM_]) serves up a nice cross, but [PLAYER_WM5fllIl] punches the ball away.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but [PLAYER] punches the ball away.",
"visibility": "shown",
"position": "310000"
},
{
"important": false,
"gameTime": "2 - 03:33",
"label": "corner",
"description": "The corner from Gaston Ramirez (Middlesbrough) is hurriedly cleared.",
"identified": "The corner from [PLAYER_8Mgf8MLm] ([TEAM_]) is hurriedly cleared.",
"anonymized": "The corner from [PLAYER] ([TEAM]) is hurriedly cleared.",
"visibility": "shown",
"position": "213000"
},
{
"important": false,
"gameTime": "2 - 03:24",
"label": "",
"description": "Adama Traore (Middlesbrough) serves up a nice cross, but the defence clears the danger. The ball goes behind for a corner. Middlesbrough will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_Qsy3Kmgj] ([TEAM_]) serves up a nice cross, but the defence clears the danger. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but the defence clears the danger. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "204000"
},
{
"important": false,
"gameTime": "2 - 02:38",
"label": "",
"description": "George Friend (Middlesbrough) decided to shoot after receiving a sweet pass. The ball went low to the middle of the goal, but Kasper Schmeichel made a easy save.",
"identified": "[PLAYER_j3Wcbwy7] ([TEAM_]) decided to shoot after receiving a sweet pass. The ball went low to the middle of the goal, but [PLAYER_WM5fllIl] made a easy save.",
"anonymized": "[PLAYER] ([TEAM]) decided to shoot after receiving a sweet pass. The ball went low to the middle of the goal, but [PLAYER] made a easy save.",
"visibility": "shown",
"position": "158000"
},
{
"important": false,
"gameTime": "2 - 02:28",
"label": "",
"description": "An attempted cross from Adama Traore (Middlesbrough) is cleared.",
"identified": "An attempted cross from [PLAYER_Qsy3Kmgj] ([TEAM_]) is cleared.",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "148000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "Referee Robert Madley blows his whistle to start the second half.",
"identified": "Referee [REFEREE] blows his whistle to start the second half.",
"anonymized": "Referee [REFEREE] blows his whistle to start the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 47:59",
"label": "",
"description": "The players are likely to put the fans to sleep with this performance rather than receiving any vociferous support. Let's hope we are about to see an improvement in the second half. We are witnessing quite a balanced game with both teams struggling to prevail. The home side are playing long passes and crosses into the box. The away side's tactic, on the other hand, is slow build-up play.",
"identified": "The players are likely to put the fans to sleep with this performance rather than receiving any vociferous support. Let's hope we are about to see an improvement in the second half. We are witnessing quite a balanced game with both teams struggling to prevail. The home side are playing long passes and crosses into the box. The away side's tactic, on the other hand, is slow build-up play.",
"anonymized": "The players are likely to put the fans to sleep with this performance rather than receiving any vociferous support. Let's hope we are about to see an improvement in the second half. We are witnessing quite a balanced game with both teams struggling to prevail. The home side are playing long passes and crosses into the box. The away side's tactic, on the other hand, is slow build-up play.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "1 - 47:09",
"label": "whistle",
"description": "There will be nothing more to see in the first half. The whistle blowing of Robert Madley has ended it.",
"identified": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"anonymized": "There will be nothing more to see in the first half. The whistle blowing of [REFEREE] has ended it.",
"visibility": "shown",
"position": "2829000"
},
{
"important": false,
"gameTime": "1 - 46:39",
"label": "",
"description": "Fabio (Middlesbrough) crosses the ball into the box, but one of the defending players averts the threat.",
"identified": "[PLAYER_bgmddQ5K] ([TEAM_]) crosses the ball into the box, but one of the defending players averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box, but one of the defending players averts the threat.",
"visibility": "shown",
"position": "2799000"
},
{
"important": false,
"gameTime": "1 - 45:56",
"label": "",
"description": "Shinji Okazaki (Leicester) shows too much aggression during an attacking move and ends up fouling his opponent.",
"identified": "[PLAYER_U5aDPZ44] ([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": "2756000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"label": "time",
"description": "2 min. of stoppage-time to be played.",
"identified": "2 min. of stoppage-time to be played.",
"anonymized": "2 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": true,
"gameTime": "1 - 42:28",
"label": "y-card",
"description": "Robert Madley shows a yellow card to Benjamin Gibson (Middlesbrough) for a tough tackle.",
"identified": "[REFEREE] shows a yellow card to [PLAYER_YDphty6J] ([TEAM_]) for a tough tackle.",
"anonymized": "[REFEREE] shows a yellow card to [PLAYER] ([TEAM]) for a tough tackle.",
"visibility": "shown",
"position": "2548000"
},
{
"important": false,
"gameTime": "1 - 40:38",
"label": "",
"description": "Riyad Mahrez (Leicester) shoots from the edge of the penalty area. The ball travels towards the right side of the target, but Brad Guzan easily deals with the threat.",
"identified": "[PLAYER_AkzHA2kB] ([TEAM_]) shoots from the edge of the penalty area. The ball travels towards the right side of the target, but [PLAYER_M3Uze1K2] easily deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) shoots from the edge of the penalty area. The ball travels towards the right side of the target, but [PLAYER] easily deals with the threat.",
"visibility": "shown",
"position": "2438000"
},
{
"important": false,
"gameTime": "1 - 39:25",
"label": "",
"description": "Gaston Ramirez (Middlesbrough) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"identified": "[PLAYER_8Mgf8MLm] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"visibility": "shown",
"position": "2365000"
},
{
"important": false,
"gameTime": "1 - 38:33",
"label": "",
"description": "Riyad Mahrez (Leicester) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_AkzHA2kB] ([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": "2313000"
},
{
"important": false,
"gameTime": "1 - 37:56",
"label": "",
"description": "What a chance that is! Marten de Roon (Middlesbrough) finds himself in a promising position after receiving a pass on the edge of the box. His attempt goes just over the bar.",
"identified": "What a chance that is! [PLAYER_SUUtwXea] ([TEAM_]) finds himself in a promising position after receiving a pass on the edge of the box. His attempt goes just over the bar.",
"anonymized": "What a chance that is! [PLAYER] ([TEAM]) finds himself in a promising position after receiving a pass on the edge of the box. His attempt goes just over the bar.",
"visibility": "shown",
"position": "2276000"
},
{
"important": false,
"gameTime": "1 - 37:43",
"label": "",
"description": "Fabio (Middlesbrough) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"identified": "[PLAYER_bgmddQ5K] ([TEAM_]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"visibility": "shown",
"position": "2263000"
},
{
"important": false,
"gameTime": "1 - 34:47",
"label": "",
"description": "Adama Traore (Middlesbrough) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat.",
"identified": "[PLAYER_Qsy3Kmgj] ([TEAM_]) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat.",
"anonymized": "[PLAYER] ([TEAM]) attempted to create a dangerous situation in front of goal by sending a cross into the box, but the defence easily dealt with the threat.",
"visibility": "shown",
"position": "2087000"
},
{
"important": true,
"gameTime": "1 - 33:57",
"label": "substitution",
"description": "Aitor Karanka de la Hoz is forced to make an unplanned substitution as Antonio Barragan suffers an injury and George Friend (Middlesbrough) comes on.",
"identified": "[COACH_xtZXs9hh] is forced to make an unplanned substitution as [PLAYER_SCumkkbo] suffers an injury and [PLAYER_j3Wcbwy7] ([TEAM_]) comes on.",
"anonymized": "[COACH] is forced to make an unplanned substitution as [PLAYER] suffers an injury and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "2037000"
},
{
"important": false,
"gameTime": "1 - 32:55",
"label": "injury",
"description": "Looks like Antonio Barragan (Middlesbrough) is struggling after picking up a knock. Hopefully he can run it off.",
"identified": "Looks like [PLAYER_SCumkkbo] ([TEAM_]) is struggling after picking up a knock. Hopefully he can run it off.",
"anonymized": "Looks like [PLAYER] ([TEAM]) is struggling after picking up a knock. Hopefully he can run it off.",
"visibility": "shown",
"position": "1975000"
},
{
"important": false,
"gameTime": "1 - 28:15",
"label": "",
"description": "What an opportunity! Alvaro Negredo (Middlesbrough) wins the ball from the resulting set piece and unleashes a precise shot from inside the goal area which sails narrowly wide of the left post!",
"identified": "What an opportunity! [PLAYER_bqru3cQB] ([TEAM_]) wins the ball from the resulting set piece and unleashes a precise shot from inside the goal area which sails narrowly wide of the left post!",
"anonymized": "What an opportunity! [PLAYER] ([TEAM]) wins the ball from the resulting set piece and unleashes a precise shot from inside the goal area which sails narrowly wide of the left post!",
"visibility": "shown",
"position": "1695000"
},
{
"important": true,
"gameTime": "1 - 25:40",
"label": "y-card",
"description": "The referee shows a yellow card to Gaston Ramirez (Middlesbrough). No wonder. A clear yellow for bad language.",
"identified": "The referee shows a yellow card to [PLAYER_8Mgf8MLm] ([TEAM_]). No wonder. A clear yellow for bad language.",
"anonymized": "The referee shows a yellow card to [PLAYER] ([TEAM]). No wonder. A clear yellow for bad language.",
"visibility": "shown",
"position": "1540000"
},
{
"important": false,
"gameTime": "1 - 24:45",
"label": "",
"description": "Adama Traore (Middlesbrough) whips the ball into the box and Alvaro Negredo takes a perfect touch to control it, but one of the defenders does well to intercept.",
"identified": "[PLAYER_Qsy3Kmgj] ([TEAM_]) whips the ball into the box and [PLAYER_bqru3cQB] takes a perfect touch to control it, but one of the defenders does well to intercept.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball into the box and [PLAYER] takes a perfect touch to control it, but one of the defenders does well to intercept.",
"visibility": "shown",
"position": "1485000"
},
{
"important": false,
"gameTime": "1 - 22:55",
"label": "",
"description": "Andy King (Leicester) releases a promising shot from the free kick on the edge of the box. His effort towards the middle of the goal is comfortably saved by Brad Guzan.",
"identified": "[PLAYER_K4XlvQFq] ([TEAM_]) releases a promising shot from the free kick on the edge of the box. His effort towards the middle of the goal is comfortably saved by [PLAYER_M3Uze1K2].",
"anonymized": "[PLAYER] ([TEAM]) releases a promising shot from the free kick on the edge of the box. His effort towards the middle of the goal is comfortably saved by [PLAYER].",
"visibility": "shown",
"position": "1375000"
},
{
"important": false,
"gameTime": "1 - 21:55",
"label": "",
"description": "Adam Clayton (Middlesbrough) trips an opposition player and Robert Madley signals a foul. Leicester are awarded a free kick from a dangerous position.",
"identified": "[PLAYER_CtwkdhwG] ([TEAM_]) trips an opposition player and [REFEREE] signals a foul. [TEAM_] are awarded a free kick from a dangerous position.",
"anonymized": "[PLAYER] ([TEAM]) trips an opposition player and [REFEREE] signals a foul. [TEAM] are awarded a free kick from a dangerous position.",
"visibility": "shown",
"position": "1315000"
},
{
"important": false,
"gameTime": "1 - 20:59",
"label": "",
"description": "Riyad Mahrez (Leicester) sends a cross into the box, but Brad Guzan comes off his line to gather the ball.",
"identified": "[PLAYER_AkzHA2kB] ([TEAM_]) sends a cross into the box, but [PLAYER_M3Uze1K2] comes off his line to gather the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but [PLAYER] comes off his line to gather the ball.",
"visibility": "shown",
"position": "1259000"
},
{
"important": false,
"gameTime": "1 - 19:56",
"label": "",
"description": "CHANCE! Marten de Roon (Middlesbrough) picks up a pass inside the box and has a sight of goal, but he blazes his shot well over the top.",
"identified": "CHANCE! [PLAYER_SUUtwXea] ([TEAM_]) picks up a pass inside the box and has a sight of goal, but he blazes his shot well over the top.",
"anonymized": "CHANCE! [PLAYER] ([TEAM]) picks up a pass inside the box and has a sight of goal, but he blazes his shot well over the top.",
"visibility": "shown",
"position": "1196000"
},
{
"important": false,
"gameTime": "1 - 17:33",
"label": "",
"description": "Adama Traore (Middlesbrough) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "[PLAYER_Qsy3Kmgj] ([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": "1053000"
},
{
"important": false,
"gameTime": "1 - 16:58",
"label": "",
"description": "Fabio (Middlesbrough) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"identified": "[PLAYER_bgmddQ5K] ([TEAM_]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"anonymized": "[PLAYER] ([TEAM]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player.",
"visibility": "shown",
"position": "1018000"
},
{
"important": false,
"gameTime": "1 - 15:14",
"label": "",
"description": "Gaston Ramirez (Middlesbrough) attempts to find Adama Traore, but puts far too much on the pass and the chance is gone.",
"identified": "[PLAYER_8Mgf8MLm] ([TEAM_]) attempts to find [PLAYER_Qsy3Kmgj], but puts far too much on the pass and the chance is gone.",
"anonymized": "[PLAYER] ([TEAM]) attempts to find [PLAYER], but puts far too much on the pass and the chance is gone.",
"visibility": "shown",
"position": "914000"
},
{
"important": false,
"gameTime": "1 - 14:44",
"label": "",
"description": "Adam Clayton (Middlesbrough) commits a foul after making a slide tackle on his opponent.",
"identified": "[PLAYER_CtwkdhwG] ([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": "884000"
},
{
"important": false,
"gameTime": "1 - 13:30",
"label": "",
"description": "Daniel Amartey (Leicester) is penalised for a foul. Robert Madley had a clear view and blows his whistle.",
"identified": "[PLAYER_pAWZAt4F] ([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": "810000"
},
{
"important": false,
"gameTime": "1 - 12:40",
"label": "corner",
"description": "Riyad Mahrez (Leicester) launches an inaccurate corner kick into the penalty area.",
"identified": "[PLAYER_AkzHA2kB] ([TEAM_]) launches an inaccurate corner kick into the penalty area.",
"anonymized": "[PLAYER] ([TEAM]) launches an inaccurate corner kick into the penalty area.",
"visibility": "shown",
"position": "760000"
},
{
"important": false,
"gameTime": "1 - 12:20",
"label": "",
"description": "Danny Simpson (Leicester) whips a promising cross into the box, but the opposition's defence intercepts the ball. Leicester have a corner.",
"identified": "[PLAYER_IHI1bGoM] ([TEAM_]) whips a promising cross into the box, but the opposition's defence intercepts the ball. [TEAM_] have a corner.",
"anonymized": "[PLAYER] ([TEAM]) whips a promising cross into the box, but the opposition's defence intercepts the ball. [TEAM] have a corner.",
"visibility": "shown",
"position": "740000"
},
{
"important": false,
"gameTime": "1 - 10:59",
"label": "",
"description": "Riyad Mahrez (Leicester) takes the resulting free kick from the edge of the box, but it's blocked by the players standing in the wall, saving the goalkeeper a lot of effort.",
"identified": "[PLAYER_AkzHA2kB] ([TEAM_]) takes the resulting free kick from the edge of the box, but it's blocked by the players standing in the wall, saving the goalkeeper a lot of effort.",
"anonymized": "[PLAYER] ([TEAM]) takes the resulting free kick from the edge of the box, but it's blocked by the players standing in the wall, saving the goalkeeper a lot of effort.",
"visibility": "shown",
"position": "659000"
},
{
"important": false,
"gameTime": "1 - 10:24",
"label": "",
"description": "Gaston Ramirez (Middlesbrough) fouls an opponent. At least that's what referee Robert Madley signals. Leicester have a free kick from a promising distance.",
"identified": "[PLAYER_8Mgf8MLm] ([TEAM_]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM_] have a free kick from a promising distance.",
"anonymized": "[PLAYER] ([TEAM]) fouls an opponent. At least that's what referee [REFEREE] signals. [TEAM] have a free kick from a promising distance.",
"visibility": "shown",
"position": "624000"
}
]
} |