File size: 37,371 Bytes
ca18b9c |
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 |
{
"title": "Herder_Memorial_Trophy",
"url": "https://en.wikipedia.org/wiki/Herder_Memorial_Trophy",
"summary": "The Herder Memorial Trophy, or Herder, is the championship trophy to be awarded annually to the senior ice hockey champions of Newfoundland and Labrador, Canada. The original cast silver trophy was donated in 1935 by The Evening Telegram newspaper on behalf of the Herder family, as a memorial to five brothers who played hockey in St. John's.\nSince the 1934\u201335 season, the trophy has been awarded 84 times. The Herder was not awarded in 1942, 1943, 1991, 2020 and 2021. The first winners of the Herder trophy was a team from Corner Brook that won the inaugural all-Newfoundland ice hockey championship on March 22, 1935. Teams from St. John's (St. Bon's, St. John's Capitals) have won the Herder Trophy 19 times. The most recent winners were the Southern Shore Breakers on April 23, 2023.",
"content": [
{
"section_title": "History",
"section_content": [
{
"sentence": "As the game of hockey developed across the island, and hockey teams started to travel and compete in regional championships, the idea of a competition to decide the ice hockey champions of Newfoundland gained momentum in early 1935",
"refs": []
},
{
"sentence": "During a meeting of the St",
"refs": []
},
{
"sentence": "John's Hockey League on March 5, 1935, it was announced that a trophy, for a championship competition, was to be donated by The Evening Telegram newspaper to be perpetually awarded to Newfoundland's best hockey team",
"refs": []
},
{
"sentence": "The Herder would become emblematic of ice hockey supremacy in Newfoundland and Labrador.The Evening Telegram was published by a member of the Herder family since the founding of the paper in 1879 up until the retirement of Stephen Herder in 1993",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "Telegram has played an integral role in the promotion and sponsorship of the Herder Championships.",
"refs": []
},
{
"sentence": "The inaugural all-Newfoundland championships took place in St",
"refs": []
},
{
"sentence": "John's at the Prince of Wales Rink on March 21 and 22, 1935 between Corner Brook, the western hockey champions, and the Guards from the St",
"refs": []
},
{
"sentence": "John's Senior League that won the Avalon hockey championship",
"refs": []
},
{
"sentence": "This was the beginning of a new chapter in the history of Newfoundland hockey",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "The winning team would have the distinction of being the first holder of the Herder Memorial Trophy.",
"refs": []
},
{
"sentence": "The St",
"refs": []
},
{
"sentence": "John's Guards earned the right to represent the Avalon Peninsula by first defeating St",
"refs": []
},
{
"sentence": "Bon's in a 2-game series to become St",
"refs": []
},
{
"sentence": "John's city champions, and then by toppling the Bay Roberts Rovers in a 2-game, total goal series",
"refs": []
},
{
"sentence": "The All-Newfoundland championship match-up was then set; the Guards of St",
"refs": []
},
{
"sentence": "John's would play host to the Corner Brook All-Star Team",
"refs": []
},
{
"sentence": "Fans in St",
"refs": []
},
{
"sentence": "John's eagerly awaited the arrival of the Corner Brook team",
"refs": []
},
{
"sentence": "Tickets to the 2 games were sold out quickly",
"refs": []
},
{
"sentence": "Corner Brook edged the Guards 1\u20130 in Game 1, and wAS victorious in Game 2 by a 4\u20132 margin to become the island's top team, and first Herder Trophy Champions.",
"refs": []
},
{
"sentence": "The Herder trophy was the brainchild of Ralph Herder, then president of The Evening Telegram",
"refs": []
},
{
"sentence": "The trophy was a memorial to his five late brothers, Arthur, William, Douglas, Augustus and Hubert, who were all avid hockey players in St",
"refs": []
},
{
"sentence": "John's, Newfoundland and Labrador.",
"refs": []
},
{
"sentence": "Originally donated on behalf of Ralph Herder in memory of five of his late brothers, the trophy now honors the memory of seven brothers, including Ralph and his youngest brother James",
"refs": []
},
{
"sentence": "In 2009, the name of Ralph's son Stephen was added to the trophy",
"refs": []
},
{
"sentence": "All seven Herder brothers were fine hockey players and often played together, with four of them sometimes playing together on a championship team",
"refs": []
},
{
"sentence": "James Herder coached the 1935 Guards team that lost the inaugural Herder championship to Corner Brook in March 1935.",
"refs": []
}
],
"subsections": []
},
{
"section_title": "The Herder family",
"section_content": [
{
"sentence": "William James Herder, born in Old Perlican, was the founder of Newfoundland's first daily newspaper, The Evening Telegram",
"refs": []
},
{
"sentence": "Ralph, one of William's seven sons, became publisher of the Telegram in 1934 after the death of Augustus (Gus), who was the fifth brother to pass away",
"refs": []
},
{
"sentence": "Ralph donated the Herder Trophy on behalf of the Herder Family as a memorial to his five late brothers (Douglas, Arthur, Hubert, Herbert Augustus (Gus) and William Jr.)",
"refs": []
},
{
"sentence": "Later the names of Ralph, his youngest brother James, and Ralph's son Stephen were added to the trophy.",
"refs": []
},
{
"sentence": "The Herder is now a memorial to the following Herder family members:",
"refs": []
}
],
"subsections": []
},
{
"section_title": "The trophy",
"section_content": [
{
"sentence": "An announcement was made on March 5, 1935, at a St",
"refs": []
},
{
"sentence": "John's Hockey League meeting that the Evening Telegram, on behalf of the Herder family, will donate a trophy to be awarded to the winners of an all-Newfoundland hockey championship",
"refs": []
},
{
"sentence": "The trophy would not be available for the 1935 championship but arrived in St",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "John's from the manufacturer six months later and was sent to Corner Brook to be presented to the winning team",
"refs": []
},
{
"sentence": "The Herder consisted of a cast-silver hockey player mounted on an ebony base",
"refs": []
},
{
"sentence": "St",
"refs": []
},
{
"sentence": "Bon's star Edward \"Key\" Kennedy (1911-1955) was the model for the hockey player that stands atop the original trophy",
"refs": []
},
{
"sentence": "Trophy-donor Ralph Herder brought a photo of Kennedy in a hockey pose to New York where the model was made and a figure was cast in silver",
"refs": []
},
{
"sentence": "Beginning in 1947 metal shields engraved with the names of winning teams were fixed to the base",
"refs": []
},
{
"sentence": "In 1952 a second tier was added, third and fourth tiers in 1960, and three more tiers before the original trophy was retired in 2007.",
"refs": []
},
{
"sentence": "The original Herder was retired in 2007 is on display in the Newfoundland & Labrador Hockey Hall of Fame located at the Corner Brook Civic Centre",
"refs": []
},
{
"sentence": "Since 2007 a replica has been awarded to the championship teams.",
"refs": []
}
],
"subsections": []
},
{
"section_title": "Conditions placed by the trophy donor",
"section_content": [
{
"sentence": "The Herder family attached eight conditions to their donation of the Herder Memorial Trophy to govern competition for the all-Newfoundland amateur hockey championship:",
"refs": [
"[ERROR retrieving ref link]",
"[ERROR retrieving ref link]"
]
}
],
"subsections": [
{
"section_title": "Exceptions to the original conditions",
"section_content": [],
"subsections": [
{
"section_title": "Condition #2",
"section_content": [
{
"sentence": "From 1935 though 1941 the All-Newfoundland finals were played at the former Prince's Rink in St",
"refs": []
},
{
"sentence": "John's (renamed The Arena in 1937)",
"refs": []
},
{
"sentence": "The Herder championships were cancelled for 1942 and 1943 after the Arena was destroyed by fire on November 28, 1941, and due to depleted rosters of senior hockey teams with men serving overseas during the Second World War",
"refs": []
},
{
"sentence": "After the Arena burned down in November 1941, St",
"refs": []
},
{
"sentence": "John's did not have a suitable venue until the opening of Memorial Stadium in December 1954",
"refs": []
},
{
"sentence": "In 1944, the Herder finals were held outside St",
"refs": []
},
{
"sentence": "John's for the first time when Bell Island and Corner Brook played the all-Newfoundland final series at the Corner Brook rink",
"refs": []
},
{
"sentence": "The NAHA was granted permission by Ralph Herder to hold the Herder finals outside the capital city for the first time",
"refs": []
},
{
"sentence": "Since 1944 condition #2 has not been enforced and the Herder Finals location has been decided by NAHA and typically held in the arenas of the competing teams.",
"refs": []
},
{
"sentence": "In recent years, the Herder finals series was held at Mile One Centre (and before it was built, at Memorial Stadium) in St",
"refs": []
},
{
"sentence": "John's and frequently sold out the 6,000 seat building",
"refs": []
},
{
"sentence": "Games were also held in the Pepsi Centre in the city of Corner Brook, on the west coast of the island, when teams from that area were playing for the cup.",
"refs": []
},
{
"sentence": "Since 2013 the Herder finalists have the right to decide the location of their home games.",
"refs": []
}
],
"subsections": []
},
{
"section_title": "Condition #4",
"section_content": [
{
"sentence": "In 1957 the first exception to condition #4 occurred when the Grand Falls Andcos were awarded the Herder by default",
"refs": []
},
{
"sentence": "No other senior \"A\" hockey teams registered for the Herder playoffs that year.",
"refs": []
}
],
"subsections": []
},
{
"section_title": "Condition #7",
"section_content": [
{
"sentence": "Engraved plates with the names of the winning teams have been affixed to the base of the Herder Trophy since the late 1940s",
"refs": []
},
{
"sentence": "Beginning in 1952, additional layers have been added to the trophy base as required to accommodate successive Herder Champion nameplates.",
"refs": [
"https://www.communitystories.ca/v1/pm_v2.php?id=record_detail&fl=0&lg=English&ex=00000647&rd=151042"
]
}
],
"subsections": []
}
]
}
]
},
{
"section_title": "Series format",
"section_content": [
{
"sentence": "Over the history of the championship series, NAHA has dictated a number of series formats that included the winners of divisional, local league or island-wide league playoffs",
"refs": []
},
{
"sentence": "The original series featured the eastern champions versus western champions",
"refs": []
},
{
"sentence": "This format continued until 1962 when an island-wide Newfoundland Senior Hockey league was formed",
"refs": []
},
{
"sentence": "The champions of the provincial league were awarded the Herder trophy until 1989 when the league was disbanded",
"refs": []
},
{
"sentence": "Eastern league champions played for the Herder in 1990 and in 1991 there was no Herder Championship.",
"refs": []
},
{
"sentence": "Between 1991 and 2011, the format of the Herder finals reverted to a competition between the champions of local leagues",
"refs": []
},
{
"sentence": "The eastern league champions played a western or central league champion in a finals series to decide the top provincial team who were awarded the Herder Trophy.",
"refs": []
},
{
"sentence": "On February 25, 2015, Hockey Newfoundland and Labrador approved a request by the Central West Senior Hockey League in which they asked to play for the historic Herder Trophy because it was the only operating Senior A hockey league registered in the province.",
"refs": []
},
{
"sentence": "Hockey Newfoundland and Labrador announced on March 10, 2022, that they will be awarding the Herder Memorial Trophy to the winner of the Avalon East Senior Hockey League finals",
"refs": []
},
{
"sentence": "For 2023, Hockey NL announced that the champion of the Avalon East Senior Hockey League will face-off against the champion of the West Coast Senior Hockey League in a seven-game series for the Herder Memorial Championship",
"refs": []
}
],
"subsections": [
{
"section_title": "Series format history",
"section_content": [
{
"sentence": "This is a list of Herder championship series formats since 1935.",
"refs": []
},
{
"sentence": "Note: GP = Games played, W = Wins, L = Losses, T = Ties, OTL = Overtime Losses, Pts = Points, GF = Goals for, GA = Goals against",
"refs": []
}
],
"subsections": []
}
]
},
{
"section_title": "Herder Champions",
"section_content": [
{
"sentence": "Note: Most series results are listed as games",
"refs": []
},
{
"sentence": "Most championship series before 1948 were decided on total Goals",
"refs": []
},
{
"sentence": "(TG = total goals series)",
"refs": []
}
],
"subsections": []
},
{
"section_title": "Presentation ceremony and final game results",
"section_content": [
{
"sentence": "At the conclusion of the final game in an on-ice ceremony the Herder Memorial Trophy is presented to the captain of the winning team",
"refs": []
},
{
"sentence": "Traditionally the presenter has been a representative of the trophy donors, from the Herder family or The Evening Telegram, and/or a representative from Hockey Newfoundland and Labrador.",
"refs": []
}
],
"subsections": []
},
{
"section_title": "Finals Appearances",
"section_content": [
{
"sentence": "In the sortable table below, teams are ordered first by number of appearances, then by number of wins, and finally by alphabetical order",
"refs": []
},
{
"sentence": "In the \"Years of appearance\" column, bold years indicate winning the Herder Trophy Finals.",
"refs": []
},
{
"sentence": "^ A",
"refs": []
},
{
"sentence": "In 1957 the Herder Finals series was not played",
"refs": []
},
{
"sentence": "Two teams entered the Section 'A' playoffs in 1957 but after Bell Island withdrew before the finals started, NAHA decided to award the Herder Trophy to the Grand Falls Andcos by default.",
"refs": []
}
],
"subsections": []
},
{
"section_title": "Cliff Gorman Memorial Award Winners",
"section_content": [
{
"sentence": "In 2005 Hockey Newfoundland & Labrador established the Cliff Gorman Memorial Award to be presented annually to the most valuable player (MVP) for his team during the Herder finals series",
"refs": []
},
{
"sentence": "A native of Prince Edward Island, Cliff was instrumental in promoting hockey in Corner Brook and in Newfoundland and Labrador since moving there in 1955",
"refs": []
},
{
"sentence": "Cliff Gorman was inducted into the Newfoundland & Labrador Hockey Hall of Fame in 1996 in the building category",
"refs": [
"https://hockeynl.ca/cliff-gorman/"
]
}
],
"subsections": []
},
{
"section_title": "Broadcasting",
"section_content": [
{
"sentence": "The first island-wide live broadcast of a Herder championship game was on the VONF (Voice of Newfoundland) radio station on Saturday night March 23, 1935",
"refs": []
},
{
"sentence": "NL Hockey Hall of Famer John (Jack) Tobin provided the play-by-play of the final game of the first all-Newfoundland hockey championships between Corner Brook and the Guards live from the Prince's Rink in St",
"refs": []
},
{
"sentence": "John's",
"refs": []
},
{
"sentence": "In 1947, from Gander Gardens (in Hangar 12 at the airport), all Newfoundland radio stations participated in an island-wide broadcast of the Herder finals between St",
"refs": []
},
{
"sentence": "Bon's and Grand Falls sponsored by Coca-Cola",
"refs": []
},
{
"sentence": "Don Jamieson provided the play-by-play commentary",
"refs": []
},
{
"sentence": "The broadcast was carried by the stations VONF, VONH (VONF remote relay), VOCM (St",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "John's), VOWN (Corner Brook) and VORG (Gander).",
"refs": []
},
{
"sentence": "Don Jamieson hosted the island-wide broadcast of the 1949 All-Newfoundland Finals from the Corner Brook Rink",
"refs": []
},
{
"sentence": "This was made possible though the courtesy of the Division of the Dept",
"refs": []
},
{
"sentence": "Posts and Telegraphs",
"refs": []
},
{
"sentence": "The 1950 all-Newfoundland finals was broadcast live from Grand Falls stadium over station CBN",
"refs": []
},
{
"sentence": "The play-by-play commentary for the two finals games between Buchans and St",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "Bon's was provided by Don Jamieson",
"refs": []
},
{
"sentence": "The broadcast was sponsored by Jockey Club Brewing Ltd.",
"refs": []
},
{
"sentence": "The 1953 Herder finals was an island-wide hook-up, broadcast on CBC stations and CJON with Don Jamieson and Frank \"Toe\" Byrne providing the commentary live from Grand Falls Stadium",
"refs": []
},
{
"sentence": "22-year-old Bob Cole broadcast the 1956 Herder finals on VOCM live from Grand Falls Stadium",
"refs": []
},
{
"sentence": "In 2007 and 2008, Rogers Cable broadcast the Herder finals province-wide using the Newfoundland and Labrador House of Assembly Channel.",
"refs": []
},
{
"sentence": "Games three through five of the 2009 finals were streamed online at thesportspage.ca.",
"refs": []
},
{
"sentence": "In 2016 all Herder finals games were webcast by Hockey NL\u2019s partner Bell Aliant TV One",
"refs": []
},
{
"sentence": "Grand Falls-Windsor Broadcaster George Scott provided the play-by-play on a live webcast of the Herder Finals from 2011 to 2019",
"refs": []
},
{
"sentence": "In 2022 & 2023, all Herder finals games were streamed on AO Live, an Atlantic Canadian based company.",
"refs": []
}
],
"subsections": []
},
{
"section_title": "References",
"section_content": [],
"subsections": [
{
"section_title": "Bibliography",
"section_content": [],
"subsections": []
}
]
},
{
"section_title": "External links",
"section_content": [],
"subsections": []
}
],
"references": {
"1": "https://hockeynl.ca/players/senior/herder-memorial-trophy/",
"2": "[ERROR retrieving ref link]",
"3": "[ERROR retrieving ref link]",
"4": "[ERROR retrieving ref link]",
"5": "[ERROR retrieving ref link]",
"6": "[ERROR retrieving ref link]",
"7": "[ERROR retrieving ref link]",
"8": "[ERROR retrieving ref link]",
"9": "[ERROR retrieving ref link]",
"10": "https://www.communitystories.ca/v1/pm_v2.php?id=record_detail&fl=0&lg=English&ex=00000647&rd=151042",
"11": "https://www.saltwire.com/atlantic-canada/sports/newfoundland-senior-hockey-officials-excited-about-return-of-herder-memorial-trophy-championship-100704600/",
"12": "https://vocm.com/2023/02/12/hockey-nl-looking-forward-to-herder-championship/",
"13": "[ERROR retrieving ref link]",
"14": "[ERROR retrieving ref link]",
"15": "[ERROR retrieving ref link]",
"16": "[ERROR retrieving ref link]",
"17": "https://web.archive.org/web/20150928014414/http://www.centralwesthockey.ca/show_news.php?news_id=1057",
"18": "http://www.thetelegram.com/sports/herder-championship-going-back-to-best-of-7-series-179817/",
"19": "http://www.centralwesthockey.ca/news.php?news_id=6650",
"20": "https://www.saltwire.com/newfoundland-labrador/sports/its-almost-herder-time-avalon-east-west-coast-hockey-leagues-start-their-championship-series-this-weekend-100836418",
"21": "[ERROR retrieving ref link]",
"22": "[ERROR retrieving ref link]",
"23": "[ERROR retrieving ref link]",
"24": "[ERROR retrieving ref link]",
"25": "[ERROR retrieving ref link]",
"26": "[ERROR retrieving ref link]",
"27": "[ERROR retrieving ref link]",
"28": "[ERROR retrieving ref link]",
"29": "[ERROR retrieving ref link]",
"30": "[ERROR retrieving ref link]",
"31": "[ERROR retrieving ref link]",
"32": "[ERROR retrieving ref link]",
"33": "[ERROR retrieving ref link]",
"34": "[ERROR retrieving ref link]",
"35": "[ERROR retrieving ref link]",
"36": "[ERROR retrieving ref link]",
"37": "[ERROR retrieving ref link]",
"38": "[ERROR retrieving ref link]",
"39": "[ERROR retrieving ref link]",
"40": "[ERROR retrieving ref link]",
"41": "[ERROR retrieving ref link]",
"42": "[ERROR retrieving ref link]",
"43": "[ERROR retrieving ref link]",
"44": "[ERROR retrieving ref link]",
"45": "[ERROR retrieving ref link]",
"46": "[ERROR retrieving ref link]",
"47": "[ERROR retrieving ref link]",
"48": "[ERROR retrieving ref link]",
"49": "[ERROR retrieving ref link]",
"50": "[ERROR retrieving ref link]",
"51": "[ERROR retrieving ref link]",
"52": "[ERROR retrieving ref link]",
"53": "[ERROR retrieving ref link]",
"54": "[ERROR retrieving ref link]",
"55": "[ERROR retrieving ref link]",
"56": "[ERROR retrieving ref link]",
"57": "[ERROR retrieving ref link]",
"58": "[ERROR retrieving ref link]",
"59": "[ERROR retrieving ref link]",
"60": "[ERROR retrieving ref link]",
"61": "[ERROR retrieving ref link]",
"62": "[ERROR retrieving ref link]",
"63": "[ERROR retrieving ref link]",
"64": "[ERROR retrieving ref link]",
"65": "[ERROR retrieving ref link]",
"66": "[ERROR retrieving ref link]",
"67": "[ERROR retrieving ref link]",
"68": "[ERROR retrieving ref link]",
"69": "[ERROR retrieving ref link]",
"70": "[ERROR retrieving ref link]",
"71": "[ERROR retrieving ref link]",
"72": "[ERROR retrieving ref link]",
"73": "[ERROR retrieving ref link]",
"74": "[ERROR retrieving ref link]",
"75": "[ERROR retrieving ref link]",
"76": "[ERROR retrieving ref link]",
"77": "[ERROR retrieving ref link]",
"78": "[ERROR retrieving ref link]",
"79": "[ERROR retrieving ref link]",
"80": "[ERROR retrieving ref link]",
"81": "[ERROR retrieving ref link]",
"82": "[ERROR retrieving ref link]",
"83": "[ERROR retrieving ref link]",
"84": "[ERROR retrieving ref link]",
"85": "[ERROR retrieving ref link]",
"86": "[ERROR retrieving ref link]",
"87": "[ERROR retrieving ref link]",
"88": "[ERROR retrieving ref link]",
"89": "[ERROR retrieving ref link]",
"90": "[ERROR retrieving ref link]",
"91": "[ERROR retrieving ref link]",
"92": "[ERROR retrieving ref link]",
"93": "[ERROR retrieving ref link]",
"94": "[ERROR retrieving ref link]",
"95": "[ERROR retrieving ref link]",
"96": "[ERROR retrieving ref link]",
"97": "https://hockeynl.ca/cee-bees-sweep-and-win-the-2013-herder-trophy/",
"98": "https://www.cbc.ca/news/canada/newfoundland-labrador/herder-victory-delights-grand-falls-windsor-fans-1.2600626",
"99": "https://www.cbc.ca/news/canada/newfoundland-labrador/grand-falls-windsor-cataracts-herder-champs-2nd-year-running-1.2986874",
"100": "https://www.cbc.ca/news/canada/newfoundland-labrador/cataracts-take-herder-championship-2016-1.3508083",
"101": "https://hockeynl.ca/grand-falls-windsor-cataracts-take-home-the-herder-memorial-trophy/",
"102": "https://hockeynl.ca/cee-bees-claim-the-herder-memorial-trophy/",
"103": "https://hockeynl.ca/caribous-claim-the-2018-herder-memorial-championship/",
"104": "https://hockeynl.ca/2018-herder-memorial-championships-senior-awards-presented/",
"105": "https://www.saltwire.com/atlantic-canada/sports/hockey/grand-falls-windsor-cataracts-are-2019-herder-champs-301690/",
"106": "https://hockeynl.ca/cliff-gorman/",
"107": "https://hockeynl.ca/cliff-gorman/",
"108": "[ERROR retrieving ref link]",
"109": "[ERROR retrieving ref link]",
"110": "[ERROR retrieving ref link]",
"111": "[ERROR retrieving ref link]",
"112": "[ERROR retrieving ref link]",
"113": "[ERROR retrieving ref link]",
"114": "https://hockeynl.ca/grand-falls-windsor-cataracts-strike-in-game-one-of-the-herder/",
"115": "[ERROR retrieving ref link]"
},
"spicy_entities": {
"the herder memorial trophy": "FAC",
"annually": "DATE",
"newfoundland": "GPE",
"labrador": "GPE",
"canada": "GPE",
"1935": "DATE",
"telegram": "ORG",
"five": "CARDINAL",
"st. john's": "GPE",
"the 1934\u201335 season": "DATE",
"84": "CARDINAL",
"1942, 1943, 1991": "DATE",
"2020": "DATE",
"2021": "DATE",
"first": "ORDINAL",
"herder": "LOC",
"corner brook": "ORG",
"march 22, 1935": "DATE",
"st. bon's": "GPE",
"st. john's capitals": "ORG",
"the herder trophy 19": "WORK_OF_ART",
"the southern shore breakers": "ORG",
"april 23, 2023": "DATE",
"early 1935": "DATE",
"hockey league": "ORG",
"march 5, 1935": "DATE",
"1879": "DATE",
"stephen herder": "PERSON",
"1993": "DATE",
"the herder championships": "EVENT",
"the prince of wales rink": "FAC",
"march 21": "DATE",
"22, 1935": "DATE",
"guards": "NORP",
"avalon": "ORG",
"the st. john's guards": "PERSON",
"the avalon peninsula": "LOC",
"2": "MONEY",
"the bay roberts rovers": "LOC",
"game 1": "EVENT",
"game 2": "EVENT",
"herder trophy champions": "EVENT",
"ralph herder": "PERSON",
"the evening telegram": "WORK_OF_ART",
"arthur": "PERSON",
"william": "PERSON",
"douglas": "PERSON",
"augustus": "PERSON",
"hubert": "PERSON",
"seven": "CARDINAL",
"ralph": "PERSON",
"james": "PERSON",
"2009": "DATE",
"stephen": "PERSON",
"four": "CARDINAL",
"james herder": "PERSON",
"march 1935": "DATE",
"the herder": "EVENT",
"william james herder": "PERSON",
"old perlican": "GPE",
"daily": "DATE",
"one": "CARDINAL",
"1934": "DATE",
"gus": "PERSON",
"fifth": "ORDINAL",
"the herder trophy": "ORG",
"the herder family": "ORG",
"herbert augustus": "PERSON",
"william jr.": "PERSON",
"st": "GPE",
"john": "PERSON",
"the manufacturer six months later": "DATE",
"edward \"key\" kennedy": "PERSON",
"1911-1955": "DATE",
"kennedy": "PERSON",
"new york": "GPE",
"1947": "DATE",
"1952": "DATE",
"second": "ORDINAL",
"third": "ORDINAL",
"fourth": "ORDINAL",
"1960": "DATE",
"three": "CARDINAL",
"2007": "DATE",
"the newfoundland & labrador hockey hall of fame": "ORG",
"the corner brook civic centre": "FAC",
"eight": "CARDINAL",
"1941": "DATE",
"the all-newfoundland": "ORG",
"the arena": "ORG",
"1937": "DATE",
"1942": "DATE",
"1943": "DATE",
"arena": "PERSON",
"november 28, 1941": "DATE",
"the second world war": "EVENT",
"november 1941": "DATE",
"memorial stadium": "FAC",
"december 1954": "DATE",
"1944": "DATE",
"bell island": "ORG",
"naha": "ORG",
"recent years": "DATE",
"mile one centre": "ORG",
"6,000": "CARDINAL",
"the pepsi centre": "FAC",
"the west coast": "LOC",
"2013": "DATE",
"#4": "MONEY",
"1957": "DATE",
"that year": "DATE",
"the late 1940s": "DATE",
"herder champion": "ORG",
"series": "EVENT",
"1962": "DATE",
"1989": "DATE",
"eastern league": "ORG",
"1990": "DATE",
"1991": "DATE",
"herder championship": "EVENT",
"between 1991 and 2011": "DATE",
"the eastern league champions": "ORG",
"february 25, 2015": "DATE",
"hockey newfoundland": "FAC",
"the central west senior": "ORG",
"herder trophy": "FAC",
"march 10, 2022": "DATE",
"the avalon east senior hockey league": "LOC",
"2023": "DATE",
"hockey nl": "ORG",
"west coast": "LOC",
"the herder memorial championship": "ORG",
"otl": "ORG",
"overtime losses": "ORG",
"gf = goals": "ORG",
"herder champions\n\nnote: most": "EVENT",
"1948": "DATE",
"goals": "GPE",
"tg": "ORG",
"the \"years": "DATE",
"years": "DATE",
"the herder trophy finals": "ORG",
"the herder finals": "ORG",
"two": "CARDINAL",
"andcos": "PRODUCT",
"2005": "DATE",
"hockey newfoundland & labrador": "ORG",
"the cliff gorman memorial award": "ORG",
"mvp": "ORG",
"prince edward island": "GPE",
"1955": "DATE",
"1996": "DATE",
"vonf": "ORG",
"voice of newfoundland": "ORG",
"saturday night march 23, 1935": "TIME",
"nl": "ORG",
"hockey hall of famer john": "FAC",
"jack": "PERSON",
"tobin": "GPE",
"gardens": "PERSON",
"hangar 12": "EVENT",
"grand falls": "ORG",
"coca-cola": "ORG",
"don jamieson": "PERSON",
"1949": "DATE",
"all-newfoundland finals": "ORG",
"the division of the dept": "ORG",
"telegraphs": "GPE",
"1950": "DATE",
"cbn": "ORG",
"buchans": "NORP",
"st .": "PERSON",
"jockey club brewing ltd": "ORG",
"1953": "DATE",
"cbc": "ORG",
"frank \"toe\" byrne": "PERSON",
"grand falls stadium": "FAC",
"22-year-old": "DATE",
"bob cole": "PERSON",
"1956": "DATE",
"2008": "DATE",
"rogers cable": "ORG",
"labrador house of": "ORG",
"assembly channel": "ORG",
"2016": "DATE",
"hockey nl\u2019s": "ORG",
"bell aliant tv": "ORG",
"grand falls-windsor broadcaster george scott": "PERSON",
"2011 to 2019": "DATE",
"2022 & 2023": "DATE",
"ao live": "ORG",
"atlantic canadian": "NORP"
},
"flair_entities": [
"newfoundland & labrador",
"memorial stadium",
"herder family",
"evening telegram",
"mvp",
"cbc",
"nl hockey hall of famer",
"game 2",
"avalon peninsula",
"bob cole",
"telegram",
"the evening telegram",
"hockey newfoundland",
"herder finals",
"john (jack) tobin",
"vonh",
"john",
"gander",
"voice of newfoundland",
"newfoundland senior hockey",
"rogers cable",
"'s capitals",
"old perlican",
"hockey nl",
"ralph herder",
"james herder",
"st. bon's",
"cliff",
"newfoundland & labrador hockey hall of fame",
"cliff gorman memorial award",
"gander gardens",
"bay roberts rovers",
"newfoundland",
"st. john",
"labrador.",
"george scott",
"ao live",
"william",
"prince of wales rink",
"corner brook all-star team",
"labrador.the evening telegram",
"pepsi centre",
"herder trophy",
"hangar",
"herder",
"central west senior hockey league",
"thesportspage.ca.",
"corner brook rink",
"grand falls",
"division of the dept",
"herder trophy finals.",
"gus",
"herder memorial trophy.",
"herder memorial trophy",
"vocm",
"vorg",
"avalon",
"st .",
"grand falls stadium",
"stephen",
"edward \"key\" kennedy",
"corner brook",
"new york",
"herder trophy.",
"herder championships.",
"buchans",
"bell island",
"herder champion",
"st. john's hockey league",
"james",
"frank \"toe\" byrne",
"st. john's senior league",
"all-newfoundland",
"second world war",
"augustus",
"cjon",
"herbert augustus",
"st. john's",
"atlantic canadian",
"st. bon",
"jockey club brewing ltd.",
"william james herder",
"labrador house of assembly channel.",
"the herder",
"herder memorial championship",
"all-newfoundland finals",
"prince edward island",
"naha",
"prince's rink",
"cbn",
"herder trophy champions.",
"avalon east senior hockey league",
"canada",
"ralph",
"labrador",
"stephen herder",
"st",
"mile one centre",
"bon's",
"bell aliant tv one",
"vonf",
"douglas",
"grand falls-windsor",
"kennedy",
"herder championship.",
"southern shore breakers",
"st. john's guards",
"section 'a",
"guards",
"william jr.",
"coca-cola",
"don jamieson",
"telegraphs",
"the arena",
"cliff gorman",
"hubert",
"arena",
"west coast senior hockey league",
"trophy the herder memorial trophy",
"arthur",
"grand falls andcos",
"vown",
"corner brook civic centre"
]
} |