File size: 76,619 Bytes
da6403b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 |
{
"timestamp": "1449327600",
"score": "4 - 1",
"round": "14",
"teams": [
"Real Madrid",
"Getafe"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "4SPjLLiR",
"name": "Bale G.",
"captain": "",
"detail_link": "/player/bale-gareth/4SPjLLiR/",
"short_name": "Bale",
"shirt_number": "11",
"country": "Wales",
"facts": [
{
"type": "8",
"time": "16' Benzema K. (Bale G.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "35' Bale G. (Ronaldo C.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 9,
"starting": true,
"long_name": "Gareth Bale"
},
{
"hash": "tpV0VX0S",
"name": "Benzema K.",
"captain": "",
"detail_link": "/player/benzema-karim/tpV0VX0S/",
"short_name": "Benzema",
"shirt_number": "9",
"country": "France",
"facts": [
{
"type": "3",
"time": "4' Benzema K. (Pepe)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "3",
"time": "16' Benzema K. (Bale G.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "78'",
"description": "Jese",
"linked_player_hash": "6BdSXunk"
}
],
"lineup": 10,
"starting": true,
"long_name": "Karim Benzema"
},
{
"hash": "KUjvgUhB",
"name": "Danilo",
"captain": "",
"detail_link": "/player/danilo/KUjvgUhB/",
"short_name": "Danilo",
"shirt_number": "23",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "37' Danilo (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Danilo"
},
{
"hash": "8Wp8ZCLG",
"name": "Fernandez N.",
"captain": "",
"detail_link": "/player/nacho/8Wp8ZCLG/",
"short_name": "Fernandez",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Nacho Fernandez"
},
{
"hash": "CloE7jjr",
"name": "Kroos T.",
"captain": "",
"detail_link": "/player/kroos-toni/CloE7jjr/",
"short_name": "Kroos",
"shirt_number": "8",
"country": "Germany",
"facts": [
{
"type": "8",
"time": "38' Ronaldo C. (Kroos T.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Toni Kroos"
},
{
"hash": "pEjBDsSH",
"name": "Lucas",
"captain": "",
"detail_link": "/player/lucas/pEjBDsSH/",
"short_name": "Vazquez",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Lucas Vazquez"
},
{
"hash": "bZWyoJnA",
"name": "Modric L.",
"captain": "",
"detail_link": "/player/modric-luka/bZWyoJnA/",
"short_name": "Modric",
"shirt_number": "19",
"country": "Croatia",
"facts": [
{
"type": "6",
"time": "62'",
"description": "Kovacic M.",
"linked_player_hash": "4f084TL7"
}
],
"lineup": 6,
"starting": true,
"long_name": "Luka Modric"
},
{
"hash": "dQEusiKl",
"name": "Navas K.",
"captain": "",
"detail_link": "/player/navas-keylor/dQEusiKl/",
"short_name": "Navas",
"shirt_number": "1",
"country": "Costa Rica",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Keylor Navas"
},
{
"hash": "2y9qaipI",
"name": "Pepe",
"captain": "(C)",
"detail_link": "/player/pepe/2y9qaipI/",
"short_name": "Pepe",
"shirt_number": "3",
"country": "Portugal",
"facts": [
{
"type": "8",
"time": "4' Benzema K. (Pepe)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "87'",
"description": "Arbeloa A.",
"linked_player_hash": "CO9bjrLo"
}
],
"lineup": 3,
"starting": true,
"long_name": "Pepe"
},
{
"hash": "MPaioN57",
"name": "Rodriguez J.",
"captain": "",
"detail_link": "/player/rodriguez-james/MPaioN57/",
"short_name": "Rodriguez",
"shirt_number": "10",
"country": "Colombia",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "James Rodriguez"
},
{
"hash": "WGOY4FSt",
"name": "Ronaldo C.",
"captain": "",
"detail_link": "/player/ronaldo-cristiano/WGOY4FSt/",
"short_name": "Ronaldo",
"shirt_number": "7",
"country": "Portugal",
"facts": [
{
"type": "8",
"time": "35' Bale G. (Ronaldo C.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "3",
"time": "38' Ronaldo C. (Kroos T.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Cristiano Ronaldo"
},
{
"hash": "CO9bjrLo",
"name": "Arbeloa A.",
"captain": "",
"detail_link": "/player/arbeloa-alvaro/CO9bjrLo/",
"short_name": "Arbeloa",
"shirt_number": "17",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "87'",
"description": "Pepe",
"linked_player_hash": "2y9qaipI"
}
],
"lineup": null,
"starting": false,
"long_name": "Alvaro Arbeloa"
},
{
"hash": "Ukeq3c0b",
"name": "Casemiro",
"captain": "",
"detail_link": "/player/casemiro/Ukeq3c0b/",
"short_name": "Casemiro",
"shirt_number": "14",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Casemiro"
},
{
"hash": "l43b8dXD",
"name": "Casilla K.",
"captain": "",
"detail_link": "/player/casilla-francisco/l43b8dXD/",
"short_name": "Casilla",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kiko Casilla"
},
{
"hash": "rRBOMfjm",
"name": "Cheryshev D.",
"captain": "",
"detail_link": "/player/cheryshev-denis/rRBOMfjm/",
"short_name": "Cheryshev",
"shirt_number": "21",
"country": "Russia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Denis Cheryshev"
},
{
"hash": "6BdSXunk",
"name": "Jese",
"captain": "",
"detail_link": "/player/jese/6BdSXunk/",
"short_name": "Jese",
"shirt_number": "20",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "78'",
"description": "Benzema K.",
"linked_player_hash": "tpV0VX0S"
}
],
"lineup": null,
"starting": false,
"long_name": "Jese"
},
{
"hash": "4f084TL7",
"name": "Kovacic M.",
"captain": "",
"detail_link": "/player/kovacic-mateo/4f084TL7/",
"short_name": "Kovacic",
"shirt_number": "16",
"country": "Croatia",
"facts": [
{
"type": "7",
"time": "62'",
"description": "Modric L.",
"linked_player_hash": "bZWyoJnA"
}
],
"lineup": null,
"starting": false,
"long_name": "Mateo Kovacic"
},
{
"hash": "z3D5zvbD",
"name": "Llorente M.",
"captain": "",
"detail_link": "/player/llorente-marcos/z3D5zvbD/",
"short_name": "Llorente",
"shirt_number": "28",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Marcos Llorente"
}
],
"coach": [
{
"hash": "4fN6car1",
"name": "Benitez R.",
"captain": "",
"detail_link": "/player/benitez-rafael/4fN6car1/",
"short_name": "Benitez R.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Rafael Benitez"
}
]
},
"away": {
"tactic": "1-4-1-4-1",
"players": [
{
"hash": "hMTvdnm2",
"name": "Alexis",
"captain": "(C)",
"detail_link": "/player/alexis/hMTvdnm2/",
"short_name": "Alexis",
"shirt_number": "2",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "70' Alexis (Leon P.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Alexis"
},
{
"hash": "xW2nac03",
"name": "Cala J.",
"captain": "",
"detail_link": "/player/cala/xW2nac03/",
"short_name": "Cala",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Juan Cala"
},
{
"hash": "Au7zDEEL",
"name": "Guaita V.",
"captain": "",
"detail_link": "/player/guaita-vicente/Au7zDEEL/",
"short_name": "Guaita",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Guaita"
},
{
"hash": "nq5aAiOh",
"name": "Lacen M.",
"captain": "",
"detail_link": "/player/lacen-mehdi/nq5aAiOh/",
"short_name": "Lacen",
"shirt_number": "8",
"country": "Algeria",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Mehdi Lacen"
},
{
"hash": "r1aWpwnU",
"name": "Lafita A.",
"captain": "",
"detail_link": "/player/lafita-angel/r1aWpwnU/",
"short_name": "Lafita",
"shirt_number": "7",
"country": "Spain",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Angel Lafita"
},
{
"hash": "hj85jwdH",
"name": "Lago R.",
"captain": "",
"detail_link": "/player/lago-roberto/hj85jwdH/",
"short_name": "Lago",
"shirt_number": "3",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Roberto Lago"
},
{
"hash": "MsSL0Ryt",
"name": "Rodriguez V.",
"captain": "",
"detail_link": "/player/rodriguez-victor/MsSL0Ryt/",
"short_name": "Rodriguez",
"shirt_number": "18",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "80'",
"description": "Mensah B.",
"linked_player_hash": "MkAi4d8J"
}
],
"lineup": 8,
"starting": true,
"long_name": "Victor Rodriguez"
},
{
"hash": "lSX6pGT4",
"name": "Sarabia P.",
"captain": "",
"detail_link": "/player/sarabia-pablo/lSX6pGT4/",
"short_name": "Sarabia",
"shirt_number": "10",
"country": "Spain",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Pablo Sarabia"
},
{
"hash": "CWtLornr",
"name": "Suarez D.",
"captain": "",
"detail_link": "/player/suarez-damian/CWtLornr/",
"short_name": "Suarez",
"shirt_number": "19",
"country": "Uruguay",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Damian Suarez"
},
{
"hash": "t4yhixJt",
"name": "Vazquez A.",
"captain": "",
"detail_link": "/player/alvaro-vazquez/t4yhixJt/",
"short_name": "Vazquez",
"shirt_number": "9",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "46'",
"description": "Scepovic S.",
"linked_player_hash": "tOV2vCf9"
}
],
"lineup": 11,
"starting": true,
"long_name": "Alvaro Vazquez"
},
{
"hash": "jPMxnqoU",
"name": "Wanderson",
"captain": "",
"detail_link": "/player/wanderson-maciel/jPMxnqoU/",
"short_name": "Wanderson",
"shirt_number": "30",
"country": "Brazil",
"facts": [
{
"type": "6",
"time": "62'",
"description": "Leon P.",
"linked_player_hash": "UoZxWaTS"
}
],
"lineup": 9,
"starting": true,
"long_name": "Wanderson"
},
{
"hash": "8b86g1el",
"name": "Gomez M.",
"captain": "",
"detail_link": "/player/gomez-moi/8b86g1el/",
"short_name": "Gomez",
"shirt_number": "21",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Moi Gomez"
},
{
"hash": "UoZxWaTS",
"name": "Leon P.",
"captain": "",
"detail_link": "/player/leon-pedro/UoZxWaTS/",
"short_name": "Leon",
"shirt_number": "14",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "62'",
"description": "Wanderson",
"linked_player_hash": "jPMxnqoU"
},
{
"type": "8",
"time": "70' Alexis (Leon P.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": null,
"starting": false,
"long_name": "Pedro Leon"
},
{
"hash": "ETcd8NRn",
"name": "Megyeri B.",
"captain": "",
"detail_link": "/player/megyeri-balazs/ETcd8NRn/",
"short_name": "Megyeri",
"shirt_number": "1",
"country": "Hungary",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Balazs Megyeri"
},
{
"hash": "MkAi4d8J",
"name": "Mensah B.",
"captain": "",
"detail_link": "/player/mensah-bernard/MkAi4d8J/",
"short_name": "Mensah",
"shirt_number": "17",
"country": "Ghana",
"facts": [
{
"type": "7",
"time": "80'",
"description": "Rodriguez V.",
"linked_player_hash": "MsSL0Ryt"
}
],
"lineup": null,
"starting": false,
"long_name": "Bernard Mensah"
},
{
"hash": "tOV2vCf9",
"name": "Scepovic S.",
"captain": "",
"detail_link": "/player/scepovic-stefan/tOV2vCf9/",
"short_name": "Scepovic",
"shirt_number": "12",
"country": "Serbia",
"facts": [
{
"type": "7",
"time": "46'",
"description": "Vazquez A.",
"linked_player_hash": "t4yhixJt"
}
],
"lineup": null,
"starting": false,
"long_name": "Stefan Scepovic"
},
{
"hash": "hvIgvO8C",
"name": "Vergini S.",
"captain": "",
"detail_link": "/player/vergini-santiago/hvIgvO8C/",
"short_name": "Vergini",
"shirt_number": "5",
"country": "Argentina",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Santiago Vergini"
},
{
"hash": "dEreN190",
"name": "Yoda K.",
"captain": "",
"detail_link": "/player/yoda-karim-abdoul/dEreN190/",
"short_name": "Karim Yoda",
"shirt_number": "11",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Abdoul Karim Yoda"
}
],
"coach": [
{
"hash": "K0UZov8F",
"name": "Escriba F.",
"captain": "",
"detail_link": "/player/escriba-fran/K0UZov8F/",
"short_name": "Escriba F.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Fran Escriba"
}
]
}
},
"referee": [
"Lahoz A."
],
"venue": [
"Estadio Santiago Bernab\u00e9u (Madrid)"
],
"attendance": [
"64 897"
],
"referee_matched": [
"Antonio Mateu Lahoz"
],
"referee_found": [
"Antonio Mateu Lahoz"
],
"coach_matched": [
"Rafael Benitez",
"Francisco Escriba"
],
"gameHomeTeam": "Real Madrid",
"home": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameAwayTeam": "Getafe",
"away": {
"name": "Getafe",
"detail_link": "/team/getafe/dboeiWOt",
"hash": "dboeiWOt",
"names": [
"Getafe",
"getafe"
]
},
"gameDate": "05/12/2015 - 16:00",
"annotations": [
{
"important": false,
"gameTime": "2 - 47:59",
"gt_gameTime": "",
"label": "",
"description": "It was an entertaining 90 minutes of football. Both sides had good opportunities. Real Madrid were dominant and more threatening of the two sides. It was a fairly one-sided match. The home side attempted to hold onto the ball for as long as possible, while the away side focused on defending and let the opposition keep possession.",
"identified": "It was an entertaining 90 minutes of football. Both sides had good opportunities. [TEAM_] were dominant and more threatening of the two sides. It was a fairly one-sided match. The home side attempted to hold onto the ball for as long as possible, while the away side focused on defending and let the opposition keep possession.",
"anonymized": "It was an entertaining 90 minutes of football. Both sides had good opportunities. [TEAM] were dominant and more threatening of the two sides. It was a fairly one-sided match. The home side attempted to hold onto the ball for as long as possible, while the away side focused on defending and let the opposition keep possession.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "2 - 47:09",
"gt_gameTime": "",
"label": "whistle",
"description": "Antonio Mateu Lahoz is looking at his watch and immediately ends this match.",
"identified": "[REFEREE] is looking at his watch and immediately ends this match.",
"anonymized": "[REFEREE] is looking at his watch and immediately ends this match.",
"visibility": "shown",
"position": "2829000"
},
{
"important": false,
"gameTime": "2 - 46:59",
"gt_gameTime": "",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) gives away a foul during an attacking move and the referee blows his whistle.",
"identified": "[PLAYER_WGOY4FSt] ([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": "2819000"
},
{
"important": false,
"gameTime": "2 - 45:01",
"gt_gameTime": "",
"label": "",
"description": "Pablo Sarabia (Getafe) receives a pass and tries his luck with a shot from 20 metres out. Keylor Navas pulls off a decent save to stop the effort going into the bottom right corner.",
"identified": "[PLAYER_lSX6pGT4] ([TEAM_]) receives a pass and tries his luck with a shot from 20 metres out. [PLAYER_dQEusiKl] pulls off a decent save to stop the effort going into the bottom right corner.",
"anonymized": "[PLAYER] ([TEAM]) receives a pass and tries his luck with a shot from 20 metres out. [PLAYER] pulls off a decent save to stop the effort going into the bottom right corner.",
"visibility": "shown",
"position": "2701000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"gt_gameTime": "",
"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": false,
"gameTime": "2 - 44:26",
"gt_gameTime": "2 - 44:12",
"label": "",
"description": "The game is interrupted as Cristiano Ronaldo (Real Madrid) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_WGOY4FSt] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "2666000"
},
{
"important": false,
"gameTime": "2 - 42:55",
"gt_gameTime": "",
"label": "funfact",
"description": "The ball possession at the moment is 62:38.",
"identified": "The ball possession at the moment is 62:38.",
"anonymized": "The ball possession at the moment is 62:38.",
"visibility": "shown",
"position": "2575000"
},
{
"important": true,
"gameTime": "2 - 41:19",
"gt_gameTime": "2 - 41:11",
"label": "substitution",
"description": "A substitution has been made. Pepe is replaced by Alvaro Arbeloa (Real Madrid).",
"identified": "A substitution has been made. [PLAYER_2y9qaipI] is replaced by [PLAYER_CO9bjrLo] ([TEAM_]).",
"anonymized": "A substitution has been made. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2479000"
},
{
"important": false,
"gameTime": "2 - 39:53",
"gt_gameTime": "2 - 39:51",
"label": "",
"description": "Toni Kroos (Real Madrid) tries his luck with a low long-range effort after receiving a precise pass, but Guaita has a clear view of it and makes a comfortable save.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) tries his luck with a low long-range effort after receiving a precise pass, but [PLAYER_Au7zDEEL] has a clear view of it and makes a comfortable save.",
"anonymized": "[PLAYER] ([TEAM]) tries his luck with a low long-range effort after receiving a precise pass, but [PLAYER] has a clear view of it and makes a comfortable save.",
"visibility": "shown",
"position": "2393000"
},
{
"important": false,
"gameTime": "2 - 38:00",
"gt_gameTime": "2 - 37:42",
"label": "",
"description": "Neat passing move from Real Madrid in order to create new attacking opportunities.",
"identified": "Neat passing move from [TEAM_] in order to create new attacking opportunities.",
"anonymized": "Neat passing move from [TEAM] in order to create new attacking opportunities.",
"visibility": "shown",
"position": "2280000"
},
{
"important": false,
"gameTime": "2 - 35:08",
"gt_gameTime": "2 - 35:06",
"label": "corner",
"description": "Pedro Leon (Getafe) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"identified": "[PLAYER_UoZxWaTS] ([TEAM_]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"anonymized": "[PLAYER] ([TEAM]) puts a cross into the box from the corner but there is no panic from the opposition and they easily clear.",
"visibility": "shown",
"position": "2108000"
},
{
"important": false,
"gameTime": "2 - 34:42",
"gt_gameTime": "2 - 34:34",
"label": "",
"description": "Angel Lafita (Getafe) looks to break free, but an opposing player clears the ball away. The ball goes behind for a corner. Getafe will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_r1aWpwnU] ([TEAM_]) looks to break free, but an opposing player clears the ball away. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) looks to break free, but an opposing player clears the ball away. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "2082000"
},
{
"important": true,
"gameTime": "2 - 34:22",
"gt_gameTime": "2 - 33:46",
"label": "substitution",
"description": "Francisco Escriba has decided to make a change. Bernard Mensah (Getafe) replaces Victor Rodriguez.",
"identified": "[COACH_K0UZov8F] has decided to make a change. [PLAYER_MkAi4d8J] ([TEAM_]) replaces [PLAYER_MPaioN57].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "2062000"
},
{
"important": false,
"gameTime": "2 - 33:42",
"gt_gameTime": "2 - 32:56",
"label": "",
"description": "Alexis (Getafe) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"identified": "[PLAYER_hMTvdnm2] ([TEAM_]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"anonymized": "[PLAYER] ([TEAM]) hasn't suffered any serious injury which would see him leave the pitch. He's back in the game now.",
"visibility": "shown",
"position": "2022000"
},
{
"important": false,
"gameTime": "2 - 33:14",
"gt_gameTime": "2 - 33:12",
"label": "corner",
"description": "James Rodriguez (Real Madrid) takes the corner, but it's intercepted by the defender.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) takes the corner, but it's intercepted by the defender.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but it's intercepted by the defender.",
"visibility": "shown",
"position": "1994000"
},
{
"important": true,
"gameTime": "2 - 33:00",
"gt_gameTime": "2 - 32:22",
"label": "substitution",
"description": "Substitution. Karim Benzema leaves the pitch and is replaced by Jese (Real Madrid).",
"identified": "Substitution. [PLAYER_tpV0VX0S] leaves the pitch and is replaced by [PLAYER_6BdSXunk] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] leaves the pitch and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1980000"
},
{
"important": false,
"gameTime": "2 - 31:17",
"gt_gameTime": "2 - 31:03",
"label": "injury",
"description": "Alexis (Getafe) is having a really tough time right now. We are about to find out how serious his injury is.",
"identified": "[PLAYER_hMTvdnm2] ([TEAM_]) is having a really tough time right now. We are about to find out how serious his injury is.",
"anonymized": "[PLAYER] ([TEAM]) is having a really tough time right now. We are about to find out how serious his injury is.",
"visibility": "shown",
"position": "1877000"
},
{
"important": false,
"gameTime": "2 - 31:05",
"gt_gameTime": "2 - 30:55",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) is first to the rebound but his shot is blocked. Wow, what an escape there for the opposition. The referee signals a corner kick to Real Madrid.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) is first to the rebound but his shot is blocked. Wow, what an escape there for the opposition. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) is first to the rebound but his shot is blocked. Wow, what an escape there for the opposition. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "1865000"
},
{
"important": true,
"gameTime": "2 - 30:58",
"gt_gameTime": "2 - 30:54",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) fires the ball at goal from inside the area, but it's well blocked.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) fires the ball at goal from inside the area, but it's well blocked.",
"anonymized": "[PLAYER] ([TEAM]) fires the ball at goal from inside the area, but it's well blocked.",
"visibility": "shown",
"position": "1858000"
},
{
"important": false,
"gameTime": "2 - 29:50",
"gt_gameTime": "2 - 29:48",
"label": "",
"description": "Pablo Sarabia (Getafe) is penalised for a foul. Antonio Mateu Lahoz had a clear view and blows his whistle.",
"identified": "[PLAYER_lSX6pGT4] ([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": "1790000"
},
{
"important": false,
"gameTime": "2 - 28:30",
"gt_gameTime": "2 - 28:14",
"label": "",
"description": "Pedro Leon (Getafe) sends a cross into the box, but the opposition's defence clears the ball away to eliminate the danger.",
"identified": "[PLAYER_UoZxWaTS] ([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": "1710000"
},
{
"important": false,
"gameTime": "2 - 27:55",
"gt_gameTime": "2 - 28:02",
"label": "corner",
"description": "Pedro Leon (Getafe) floats the ball in from the corner but it's intercepted.",
"identified": "[PLAYER_UoZxWaTS] ([TEAM_]) floats the ball in from the corner but it's intercepted.",
"anonymized": "[PLAYER] ([TEAM]) floats the ball in from the corner but it's intercepted.",
"visibility": "shown",
"position": "1675000"
},
{
"important": false,
"gameTime": "2 - 27:00",
"gt_gameTime": "2 - 27:36",
"label": "",
"description": "Pedro Leon (Getafe) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The ball is out of play. A goal-scoring opportunity from a corner for Getafe.",
"identified": "[PLAYER_UoZxWaTS] ([TEAM_]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) attempts to find the head of one of his teammates with a promising cross into the box, but a defender outjumps the attackers and averts the threat. The ball is out of play. A goal-scoring opportunity from a corner for [TEAM].",
"visibility": "shown",
"position": "1620000"
},
{
"important": true,
"gameTime": "2 - 24:59",
"gt_gameTime": "2 - 24:29",
"label": "soccer-ball",
"description": "Alexis (Getafe) jumped highest inside the box to meet a perfectly executed corner kick by Pedro Leon. His header was precise and ended up inside the left post, leaving the goalkeeper flapping in the wind. The score is 4:1.",
"identified": "[PLAYER_hMTvdnm2] ([TEAM_]) jumped highest inside the box to meet a perfectly executed corner kick by [PLAYER_UoZxWaTS]. His header was precise and ended up inside the left post, leaving the goalkeeper flapping in the wind. The score is 4:1.",
"anonymized": "[PLAYER] ([TEAM]) jumped highest inside the box to meet a perfectly executed corner kick by [PLAYER]. His header was precise and ended up inside the left post, leaving the goalkeeper flapping in the wind. The score is 4:1.",
"visibility": "shown",
"position": "1499000"
},
{
"important": false,
"gameTime": "2 - 24:49",
"gt_gameTime": "2 - 24:28",
"label": "corner",
"description": "Pedro Leon (Getafe) steps up to send the ball in.",
"identified": "[PLAYER_UoZxWaTS] ([TEAM_]) steps up to send the ball in.",
"anonymized": "[PLAYER] ([TEAM]) steps up to send the ball in.",
"visibility": "shown",
"position": "1489000"
},
{
"important": false,
"gameTime": "2 - 24:00",
"gt_gameTime": "2 - 23:58",
"label": "",
"description": "Pablo Sarabia (Getafe) tries to slide the ball through to a teammate but it's well blocked by a defender. The referee points to the corner flag. It's a corner to Getafe.",
"identified": "[PLAYER_lSX6pGT4] ([TEAM_]) tries to slide the ball through to a teammate but it's well blocked by a defender. The referee points to the corner flag. It's a corner to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) tries to slide the ball through to a teammate but it's well blocked by a defender. The referee points to the corner flag. It's a corner to [TEAM].",
"visibility": "shown",
"position": "1440000"
},
{
"important": false,
"gameTime": "2 - 22:48",
"gt_gameTime": "",
"label": "attendance",
"description": "The attendance for today's match is 64897.",
"identified": "The attendance for today's match is 64897.",
"anonymized": "The attendance for today's match is 64897.",
"visibility": "shown",
"position": "1368000"
},
{
"important": false,
"gameTime": "2 - 21:00",
"gt_gameTime": "2 - 18:59",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) releases a low pass from just outside the box in an attempt to find his teammate, but one of the defenders calmly averts the threat.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) releases a low pass from just outside the box in an attempt to find his teammate, but one of the defenders calmly averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) releases a low pass from just outside the box in an attempt to find his teammate, but one of the defenders calmly averts the threat.",
"visibility": "shown",
"position": "1260000"
},
{
"important": false,
"gameTime": "2 - 19:56",
"gt_gameTime": "2 - 19:54",
"label": "",
"description": "James Rodriguez (Real Madrid) is adjudged offside.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) is adjudged offside.",
"anonymized": "[PLAYER] ([TEAM]) is adjudged offside.",
"visibility": "shown",
"position": "1196000"
},
{
"important": false,
"gameTime": "2 - 19:39",
"gt_gameTime": "2 - 19:33",
"label": "",
"description": "A fine lofted pass into the box, sent by James Rodriguez (Real Madrid), is intercepted by the opposition's defence.",
"identified": "A fine lofted pass into the box, sent by [PLAYER_MPaioN57] ([TEAM_]), is intercepted by the opposition's defence.",
"anonymized": "A fine lofted pass into the box, sent by [PLAYER] ([TEAM]), is intercepted by the opposition's defence.",
"visibility": "shown",
"position": "1179000"
},
{
"important": false,
"gameTime": "2 - 18:54",
"gt_gameTime": "2 - 18:54",
"label": "",
"description": "The Real Madrid players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"identified": "The [TEAM_] players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"anonymized": "The [TEAM] players are exchanging some short passes to try and open up the opposition\u2019s defence and hit them swiftly on the break.",
"visibility": "shown",
"position": "1134000"
},
{
"important": true,
"gameTime": "2 - 16:59",
"gt_gameTime": "2 - 16:43",
"label": "substitution",
"description": "Rafael Benitez has decided to introduce fresh legs, with Mateo Kovacic (Real Madrid) replacing Luka Modric.",
"identified": "[COACH_4fN6car1] has decided to introduce fresh legs, with [PLAYER_4f084TL7] ([TEAM_]) replacing [PLAYER_bZWyoJnA].",
"anonymized": "[COACH] has decided to introduce fresh legs, with [PLAYER] ([TEAM]) replacing [PLAYER].",
"visibility": "shown",
"position": "1019000"
},
{
"important": true,
"gameTime": "2 - 16:50",
"gt_gameTime": "2 - 16:09",
"label": "substitution",
"description": "Substitution. Maciel Wanderson is replaced by Pedro Leon (Getafe).",
"identified": "Substitution. [PLAYER_jPMxnqoU] is replaced by [PLAYER_UoZxWaTS] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1010000"
},
{
"important": false,
"gameTime": "2 - 14:53",
"gt_gameTime": "2 - 14:46",
"label": "",
"description": "Luka Modric (Real Madrid) sends a pass into the box, but his attempt is thwarted and cleared.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared.",
"visibility": "shown",
"position": "893000"
},
{
"important": false,
"gameTime": "2 - 14:00",
"gt_gameTime": "2 - 13:31",
"label": "",
"description": "Juan Cala (Getafe) commits a foul after unfairly battling his opponent for the ball.",
"identified": "[PLAYER_xW2nac03] ([TEAM_]) commits a foul after unfairly battling his opponent for the ball.",
"anonymized": "[PLAYER] ([TEAM]) commits a foul after unfairly battling his opponent for the ball.",
"visibility": "shown",
"position": "840000"
},
{
"important": false,
"gameTime": "2 - 12:25",
"gt_gameTime": "2 - 12:22",
"label": "",
"description": "Pepe (Real Madrid) was too forceful with his tackle and Antonio Mateu Lahoz interrupted the game to signal a free kick.",
"identified": "[PLAYER_2y9qaipI] ([TEAM_]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick.",
"anonymized": "[PLAYER] ([TEAM]) was too forceful with his tackle and [REFEREE] interrupted the game to signal a free kick.",
"visibility": "shown",
"position": "745000"
},
{
"important": false,
"gameTime": "2 - 10:42",
"gt_gameTime": "2 - 10:39",
"label": "",
"description": "Danilo (Real Madrid) sends a teasing cross into the area, but Guaita intercepts the ball.",
"identified": "[PLAYER_KUjvgUhB] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_Au7zDEEL] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "642000"
},
{
"important": false,
"gameTime": "2 - 09:24",
"gt_gameTime": "2 - 09:18",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) and Gareth Bale attempt to exchange short two-yard passes, but the opposition's defence intercepts the ball.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) and [PLAYER_4SPjLLiR] attempt to exchange short two-yard passes, but the opposition's defence intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) and [PLAYER] attempt to exchange short two-yard passes, but the opposition's defence intercepts the ball.",
"visibility": "shown",
"position": "564000"
},
{
"important": false,
"gameTime": "2 - 08:21",
"gt_gameTime": "2 - 08:17",
"label": "",
"description": "tries to send a pass but it's blocked.",
"identified": "tries to send a pass but it's blocked.",
"anonymized": "tries to send a pass but it's blocked.",
"visibility": "shown",
"position": "501000"
},
{
"important": false,
"gameTime": "2 - 06:53",
"gt_gameTime": "2 - 06:59",
"label": "",
"description": "Danilo (Real Madrid) seems to be alright and is okay to carry on.",
"identified": "[PLAYER_KUjvgUhB] ([TEAM_]) seems to be alright and is okay to carry on.",
"anonymized": "[PLAYER] ([TEAM]) seems to be alright and is okay to carry on.",
"visibility": "shown",
"position": "413000"
},
{
"important": false,
"gameTime": "2 - 05:00",
"gt_gameTime": "2 - 05:08",
"label": "injury",
"description": "Danilo (Real Madrid) picks up an injury.",
"identified": "[PLAYER_KUjvgUhB] ([TEAM_]) picks up an injury.",
"anonymized": "[PLAYER] ([TEAM]) picks up an injury.",
"visibility": "shown",
"position": "300000"
},
{
"important": false,
"gameTime": "2 - 03:24",
"gt_gameTime": "2 - 03:23",
"label": "",
"description": "Karim Benzema (Real Madrid) takes a mid-range shot, but it lacks accuracy and it goes way over the bar.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) takes a mid-range shot, but it lacks accuracy and it goes way over the bar.",
"anonymized": "[PLAYER] ([TEAM]) takes a mid-range shot, but it lacks accuracy and it goes way over the bar.",
"visibility": "shown",
"position": "204000"
},
{
"important": false,
"gameTime": "2 - 02:47",
"gt_gameTime": "2 - 02:46",
"label": "",
"description": "Pablo Sarabia (Getafe) makes an overly-aggressive challenge and Antonio Mateu Lahoz blows his whistle for a foul.",
"identified": "[PLAYER_lSX6pGT4] ([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": "167000"
},
{
"important": true,
"gameTime": "2 - 00:02",
"gt_gameTime": "",
"label": "substitution",
"description": "Francisco Escriba has decided to make a substitution during the half-time break. Stefan Scepovic (Getafe) comes on the pitch for Alvaro Vazquez.",
"identified": "[COACH_K0UZov8F] has decided to make a substitution during the half-time break. [PLAYER_tOV2vCf9] ([TEAM_]) comes on the pitch for [PLAYER_t4yhixJt].",
"anonymized": "[COACH] has decided to make a substitution during the half-time break. [PLAYER] ([TEAM]) comes on the pitch for [PLAYER].",
"visibility": "shown",
"position": "2000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"gt_gameTime": "",
"label": "whistle",
"description": "The whistle blows and Antonio Mateu Lahoz starts the second half.",
"identified": "The whistle blows and [REFEREE] starts the second half.",
"anonymized": "The whistle blows and [REFEREE] starts the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"gt_gameTime": "",
"label": "",
"description": "Up to now it has been an action-packed game full of wonderful movements and opportunities. Real Madrid enjoyed superiority over the opposition in that first 45 minutes. The home side attempts to hold onto the ball for as long as possible, while the away side focuses on defending and lets the opposition keep possession.",
"identified": "Up to now it has been an action-packed game full of wonderful movements and opportunities. [TEAM_] enjoyed superiority over the opposition in that first 45 minutes. The home side attempts to hold onto the ball for as long as possible, while the away side focuses on defending and lets the opposition keep possession.",
"anonymized": "Up to now it has been an action-packed game full of wonderful movements and opportunities. [TEAM] enjoyed superiority over the opposition in that first 45 minutes. The home side attempts to hold onto the ball for as long as possible, while the away side focuses on defending and lets the opposition keep possession.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:03",
"gt_gameTime": "",
"label": "whistle",
"description": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"identified": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"anonymized": "The referee blows his whistle to end the first half and the players are now heading to their respective dressing rooms.",
"visibility": "shown",
"position": "2703000"
},
{
"important": false,
"gameTime": "1 - 43:26",
"gt_gameTime": "1 - 43:22",
"label": "",
"description": "Gareth Bale (Real Madrid) decides to try his luck with a first-time bullet of a shot. Unfortunately for him, he doesn't hit the ball perfectly and his effort ends well wide of the left post.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) decides to try his luck with a first-time bullet of a shot. Unfortunately for him, he doesn't hit the ball perfectly and his effort ends well wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) decides to try his luck with a first-time bullet of a shot. Unfortunately for him, he doesn't hit the ball perfectly and his effort ends well wide of the left post.",
"visibility": "shown",
"position": "2606000"
},
{
"important": false,
"gameTime": "1 - 41:51",
"gt_gameTime": "1 - 42:02",
"label": "",
"description": "Angel Lafita (Getafe) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"identified": "[PLAYER_r1aWpwnU] ([TEAM_]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass and takes a shot from the edge of the box, but it's blocked by one of the defending players.",
"visibility": "shown",
"position": "2511000"
},
{
"important": false,
"gameTime": "1 - 40:00",
"gt_gameTime": "1 - 40:46",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) sends in a pass which fails to reach any of his teammates.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) sends in a pass which fails to reach any of his teammates.",
"anonymized": "[PLAYER] ([TEAM]) sends in a pass which fails to reach any of his teammates.",
"visibility": "shown",
"position": "2400000"
},
{
"important": true,
"gameTime": "1 - 37:57",
"gt_gameTime": "1 - 37:42",
"label": "soccer-ball",
"description": "It's in the back of the net! Superb finishing from Cristiano Ronaldo (Real Madrid). Toni Kroos plays a fantastic through ball and finds Cristiano Ronaldo (Real Madrid), who reacts quickly to get in front of the goalkeeper and fire a close-range shot into the bottom left corner. 4:0.",
"identified": "It's in the back of the net! Superb finishing from [PLAYER_WGOY4FSt] ([TEAM_]). [PLAYER_CloE7jjr] plays a fantastic through ball and finds [PLAYER_WGOY4FSt] ([TEAM_]), who reacts quickly to get in front of the goalkeeper and fire a close-range shot into the bottom left corner. 4:0.",
"anonymized": "It's in the back of the net! Superb finishing from [PLAYER] ([TEAM]). [PLAYER] plays a fantastic through ball and finds [PLAYER] ([TEAM]), who reacts quickly to get in front of the goalkeeper and fire a close-range shot into the bottom left corner. 4:0.",
"visibility": "shown",
"position": "2277000"
},
{
"important": true,
"gameTime": "1 - 36:55",
"gt_gameTime": "1 - 36:49",
"label": "y-card",
"description": "The referee had an easy-decision to make. A yellow card is given to Danilo (Real Madrid) for a foul that he committed a little earlier.",
"identified": "The referee had an easy-decision to make. A yellow card is given to [PLAYER_KUjvgUhB] ([TEAM_]) for a foul that he committed a little earlier.",
"anonymized": "The referee had an easy-decision to make. A yellow card is given to [PLAYER] ([TEAM]) for a foul that he committed a little earlier.",
"visibility": "shown",
"position": "2215000"
},
{
"important": true,
"gameTime": "1 - 34:58",
"gt_gameTime": "1 - 34:23",
"label": "soccer-ball",
"description": "Goal - 3:0! Cristiano Ronaldo laid the ball off to Gareth Bale (Real Madrid), who shot from close range into the bottom left corner, leaving the goalkeeper helpless.",
"identified": "Goal - 3:0! [PLAYER_WGOY4FSt] laid the ball off to [PLAYER_4SPjLLiR] ([TEAM_]), who shot from close range into the bottom left corner, leaving the goalkeeper helpless.",
"anonymized": "Goal - 3:0! [PLAYER] laid the ball off to [PLAYER] ([TEAM]), who shot from close range into the bottom left corner, leaving the goalkeeper helpless.",
"visibility": "shown",
"position": "2098000"
},
{
"important": false,
"gameTime": "1 - 32:53",
"gt_gameTime": "1 - 33:04",
"label": "",
"description": "Gareth Bale (Real Madrid) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the middle of the target, but Guaita was alert and the score remains the same.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the middle of the target, but [PLAYER_Au7zDEEL] was alert and the score remains the same.",
"anonymized": "[PLAYER] ([TEAM]) connected with a pass around the edge of the box, aimed and shot. His attempt went towards the middle of the target, but [PLAYER] was alert and the score remains the same.",
"visibility": "shown",
"position": "1973000"
},
{
"important": false,
"gameTime": "1 - 30:44",
"gt_gameTime": "1 - 30:41",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) comes close as his long-range free kick goes a whisker wide of the right post.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) comes close as his long-range free kick goes a whisker wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) comes close as his long-range free kick goes a whisker wide of the right post.",
"visibility": "shown",
"position": "1844000"
},
{
"important": false,
"gameTime": "1 - 29:50",
"gt_gameTime": "1 - 29:36",
"label": "",
"description": "The game is interrupted. One of the players from Getafe is cautioned for aggressive play. Real Madrid are awarded a free kick.",
"identified": "The game is interrupted. One of the players from [TEAM_] is cautioned for aggressive play. [TEAM_] are awarded a free kick.",
"anonymized": "The game is interrupted. One of the players from [TEAM] is cautioned for aggressive play. [TEAM] are awarded a free kick.",
"visibility": "shown",
"position": "1790000"
},
{
"important": false,
"gameTime": "1 - 28:39",
"gt_gameTime": "1 - 28:38",
"label": "",
"description": "Angel Lafita (Getafe) makes a yard for himself on the edge of the box after picking up a pass, but produces a poor effort that sails high over the bar.",
"identified": "[PLAYER_r1aWpwnU] ([TEAM_]) makes a yard for himself on the edge of the box after picking up a pass, but produces a poor effort that sails high over the bar.",
"anonymized": "[PLAYER] ([TEAM]) makes a yard for himself on the edge of the box after picking up a pass, but produces a poor effort that sails high over the bar.",
"visibility": "shown",
"position": "1719000"
},
{
"important": false,
"gameTime": "1 - 28:20",
"gt_gameTime": "1 - 28:19",
"label": "",
"description": "This shall not pass! Gareth Bale (Real Madrid) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"identified": "This shall not pass! [PLAYER_4SPjLLiR] ([TEAM_]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"anonymized": "This shall not pass! [PLAYER] ([TEAM]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender.",
"visibility": "shown",
"position": "1700000"
},
{
"important": false,
"gameTime": "1 - 27:18",
"gt_gameTime": "1 - 27:18",
"label": "",
"description": "Pablo Sarabia (Getafe) shoots from the edge of the penalty area. The ball travels towards the middle of the target, but Keylor Navas easily deals with the threat.",
"identified": "[PLAYER_lSX6pGT4] ([TEAM_]) shoots from the edge of the penalty area. The ball travels towards the middle of the target, but [PLAYER_dQEusiKl] easily deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) shoots from the edge of the penalty area. The ball travels towards the middle of the target, but [PLAYER] easily deals with the threat.",
"visibility": "shown",
"position": "1638000"
},
{
"important": false,
"gameTime": "1 - 26:31",
"gt_gameTime": "1 - 26:31",
"label": "",
"description": "James Rodriguez (Real Madrid) receives a reproachful look from his teammates after he attempted to surprise the goalkeeper with a shot from long distance. The ball flew far wide of the right post.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) receives a reproachful look from his teammates after he attempted to surprise the goalkeeper with a shot from long distance. The ball flew far wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) receives a reproachful look from his teammates after he attempted to surprise the goalkeeper with a shot from long distance. The ball flew far wide of the right post.",
"visibility": "shown",
"position": "1591000"
},
{
"important": false,
"gameTime": "1 - 25:44",
"gt_gameTime": "1 - 25:33",
"label": "",
"description": "Damian Suarez (Getafe) collects a wonderful lead pass and as he has a lot of space, smashes a terrific shot from long range. His shot goes painfully close to the crossbar!",
"identified": "[PLAYER_CWtLornr] ([TEAM_]) collects a wonderful lead pass and as he has a lot of space, smashes a terrific shot from long range. His shot goes painfully close to the crossbar!",
"anonymized": "[PLAYER] ([TEAM]) collects a wonderful lead pass and as he has a lot of space, smashes a terrific shot from long range. His shot goes painfully close to the crossbar!",
"visibility": "shown",
"position": "1544000"
},
{
"important": false,
"gameTime": "1 - 24:11",
"gt_gameTime": "1 - 24:04",
"label": "",
"description": "James Rodriguez (Real Madrid) sends a cross into the box, but Guaita comes off his line to gather the ball.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) sends a cross into the box, but [PLAYER_Au7zDEEL] 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": "1451000"
},
{
"important": false,
"gameTime": "1 - 23:29",
"gt_gameTime": "1 - 23:17",
"label": "",
"description": "Pablo Sarabia (Getafe) tackles a bit over-zealously and Antonio Mateu Lahoz blows for a foul.",
"identified": "[PLAYER_lSX6pGT4] ([TEAM_]) tackles a bit over-zealously and [REFEREE] blows for a foul.",
"anonymized": "[PLAYER] ([TEAM]) tackles a bit over-zealously and [REFEREE] blows for a foul.",
"visibility": "shown",
"position": "1409000"
},
{
"important": false,
"gameTime": "1 - 22:43",
"gt_gameTime": "1 - 22:40",
"label": "",
"description": "What an opportunity! Gareth Bale (Real Madrid) picked the ball up and fired a projectile of a shot from long range which threatened the goalkeeper. The shot went painfully close to the right post!",
"identified": "What an opportunity! [PLAYER_4SPjLLiR] ([TEAM_]) picked the ball up and fired a projectile of a shot from long range which threatened the goalkeeper. The shot went painfully close to the right post!",
"anonymized": "What an opportunity! [PLAYER] ([TEAM]) picked the ball up and fired a projectile of a shot from long range which threatened the goalkeeper. The shot went painfully close to the right post!",
"visibility": "shown",
"position": "1363000"
},
{
"important": false,
"gameTime": "1 - 21:26",
"gt_gameTime": "1 - 21:21",
"label": "",
"description": "Gareth Bale (Real Madrid) sends over a cross, but he can't find any teammate inside the box. Poor delivery.",
"identified": "[PLAYER_4SPjLLiR] ([TEAM_]) sends over a cross, but he can't find any teammate inside the box. Poor delivery.",
"anonymized": "[PLAYER] ([TEAM]) sends over a cross, but he can't find any teammate inside the box. Poor delivery.",
"visibility": "shown",
"position": "1286000"
},
{
"important": false,
"gameTime": "1 - 21:00",
"gt_gameTime": "1 - 20:57",
"label": "",
"description": "Real Madrid are bossing possession at the moment by exchanging some precise passes from player to player.",
"identified": "[TEAM_] are bossing possession at the moment by exchanging some precise passes from player to player.",
"anonymized": "[TEAM] are bossing possession at the moment by exchanging some precise passes from player to player.",
"visibility": "shown",
"position": "1260000"
},
{
"important": false,
"gameTime": "1 - 18:00",
"gt_gameTime": "1 - 18:46",
"label": "",
"description": "Karim Benzema (Real Madrid) creates himself some space and attempts to put the ball into the box. However, the defender gets an important foot in to clear.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) creates himself some space and attempts to put the ball into the box. However, the defender gets an important foot in to clear.",
"anonymized": "[PLAYER] ([TEAM]) creates himself some space and attempts to put the ball into the box. However, the defender gets an important foot in to clear.",
"visibility": "shown",
"position": "1080000"
},
{
"important": true,
"gameTime": "1 - 15:55",
"gt_gameTime": "1 - 15:38",
"label": "soccer-ball",
"description": "Karim Benzema (Real Madrid) latches on to a precise pass deep inside the box from Gareth Bale, and he beats the goalkeeper with a low accurate shot into the bottom left corner. He makes it 2:0.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) latches on to a precise pass deep inside the box from [PLAYER_4SPjLLiR], and he beats the goalkeeper with a low accurate shot into the bottom left corner. He makes it 2:0.",
"anonymized": "[PLAYER] ([TEAM]) latches on to a precise pass deep inside the box from [PLAYER], and he beats the goalkeeper with a low accurate shot into the bottom left corner. He makes it 2:0.",
"visibility": "shown",
"position": "955000"
},
{
"important": false,
"gameTime": "1 - 14:14",
"gt_gameTime": "1 - 14:11",
"label": "",
"description": "is penalised for holding. Antonio Mateu Lahoz signals a set piece.",
"identified": "is penalised for holding. [REFEREE] signals a set piece.",
"anonymized": "is penalised for holding. [REFEREE] signals a set piece.",
"visibility": "shown",
"position": "854000"
},
{
"important": false,
"gameTime": "1 - 13:49",
"gt_gameTime": "1 - 13:41",
"label": "",
"description": "Luka Modric (Real Madrid) swings a cross into the box, but it's far too close to Guaita, who smothers the ball.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_Au7zDEEL], who smothers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings a cross into the box, but it's far too close to [PLAYER], who smothers the ball.",
"visibility": "shown",
"position": "829000"
},
{
"important": false,
"gameTime": "1 - 11:02",
"gt_gameTime": "1 - 11:00",
"label": "corner",
"description": "James Rodriguez (Real Madrid) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"anonymized": "[PLAYER] ([TEAM]) puts a dangerous cross into the box, but the corner is cleared by the first man.",
"visibility": "shown",
"position": "662000"
},
{
"important": true,
"gameTime": "1 - 10:27",
"gt_gameTime": "1 - 10:27",
"label": "",
"description": "Guaita makes a superb save to deny a header which was nodded towards the roof of the net by Karim Benzema (Real Madrid) after a cross from the side. The ball is out of play and Real Madrid manage to earn a corner.",
"identified": "[PLAYER_Au7zDEEL] makes a superb save to deny a header which was nodded towards the roof of the net by [PLAYER_tpV0VX0S] ([TEAM_]) after a cross from the side. The ball is out of play and [TEAM_] manage to earn a corner.",
"anonymized": "[PLAYER] makes a superb save to deny a header which was nodded towards the roof of the net by [PLAYER] ([TEAM]) after a cross from the side. The ball is out of play and [TEAM] manage to earn a corner.",
"visibility": "shown",
"position": "627000"
}
]
} |