forked from denverpost/autoproducer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathap-sections.php
executable file
·6110 lines (6107 loc) · 178 KB
/
ap-sections.php
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
<?php
$all_sections = array(
'16' => 'Aerospace',
'104' => 'Air Force Falcons',
'17' => 'Airlines',
'31' => 'Arts',
'85' => 'Ask Amy',
'5348' => 'Banking',
'32' => 'Books',
'96' => 'Boxing / MMA',
'15' => 'Business',
'4224' => 'Cartoons',
'4243' => 'Celebrities',
'35' => 'Classical Music',
'100' => 'College Sports',
'95' => 'Colorado Avalanche',
'102' => 'Colorado Buffaloes',
'79' => 'Colorado Legislature',
'47' => 'Colorado News',
'4302' => 'Colorado Politics',
'113' => 'Colorado Rapids',
'114' => 'Colorado Rockies',
'101' => 'Colorado State Rams',
'65' => 'Colorado Wildfires',
'5570' => 'Courts',
'9772' => 'Crashes and Disasters',
'40' => 'Crime & Courts',
'116' => 'Cycling',
'97' => 'Denver Broncos',
'7207' => 'Denver Broncos Video',
'109' => 'Denver Nuggets',
'103' => 'Denver Pioneers',
'76' => 'Denver Politics',
'4307' => 'Denver Post TV',
'7244' => 'Documentaries',
'4452' => 'Don\'t Miss',
'7833' => 'DPTV Ask The Editor',
'7247' => 'DPTV Behind the Headlines',
'7243' => 'DPTV Sports',
'18' => 'Economy',
'71' => 'Editorials',
'41' => 'Education',
'77' => 'Election',
'72' => 'Endorsements',
'19' => 'Energy',
'30' => 'Entertainment',
'9101' => 'Entertainment / Lifestyle',
'42' => 'Environment',
'6710' => 'Family',
'98' => 'Fantasy Football',
'86' => 'Fashion',
'87' => 'Fitness',
'50' => 'Floods',
'88' => 'Food & Drink',
'106' => 'Golf',
'43' => 'Good News',
'44' => 'Health',
'21' => 'Healthcare',
'91' => 'Home & Garden',
'8380' => 'Horse Racing',
'46' => 'Immigration',
'45' => 'Investigations',
'22' => 'Jobs',
'107' => 'Lacrosse',
'48' => 'Latest News',
'73' => 'Letters',
'83' => 'Lifestyle',
'84' => 'Lifestyle Columnists',
'80' => 'Local Politics',
'53' => 'Marijuana',
'8203' => 'Mile High Roundup',
'108' => 'Motorsports',
'33' => 'Movies',
'34' => 'Music',
'59' => 'Nation World News',
'81' => 'National Politics',
'39' => 'News',
'7242' => 'News Video',
'7245' => 'Newsmakers',
'60' => 'Obituaries',
'110' => 'Olympics',
'66' => 'Opinion',
'4223' => 'Opinion Columnists',
'111' => 'Outdoors',
'6711' => 'Parenting',
'118' => 'Pedal The Plains',
'24' => 'People on the Move',
'74' => 'Perspective',
'23' => 'Philanthropy',
'4984' => 'Photos',
'75' => 'Politics',
'7246' => 'Politics Video',
'4225' => 'Polls',
'9895' => 'Post Preps TV',
'112' => 'Preps',
'9369' => 'Purple State Project',
'25' => 'Real Estate',
'89' => 'Recipes',
'61' => 'Religion',
'90' => 'Restaurants & Dining',
'20' => 'Retail',
'119' => 'Ride The Rockies',
'5455' => 'Running',
'51' => 'Season To Share',
'2221' => 'Skiing',
'6574' => 'Soccer',
'62' => 'Special Reports',
'94' => 'Sports',
'105' => 'Sports Columnists',
'92' => 'Summer Camps',
'99' => 'Super Bowl',
'4416' => 'Tech+',
'27' => 'Technology',
'28' => 'Telecom',
'36' => 'Television',
'115' => 'Tennis',
'4333' => 'The Spot',
'37' => 'Theater',
'7629' => 'Things To Do',
'29' => 'Tourism',
'52' => 'Transportation',
'12101' => 'Transportation',
'93' => 'Travel',
'11580' => 'Trump Administration',
'1' => 'Uncategorized',
'38' => 'Video Games',
'6386' => 'Voter Guide 2016',
'82' => 'Washington DC',
'63' => 'Watercooler',
'64' => 'Weather',
'4317' => 'Winter Sports',
'70' => 'Writers on the Range',
'2222' => 'YourHub'
);
$all_tags = array(
'7895' => '10 Barrel Brewing',
'11256' => '103.5 The Fox',
'5402' => '10th Mountain Division',
'11129' => '10th U.S. Circuit Court of Appeals',
'10295' => '1144 Fifteenth',
'6378' => '14ers',
'324' => '16th Street Mall',
'395' => '1st Bank Center',
'7360' => '2016 Colorado Primary',
'11153' => '2016 in review',
'452' => '211 crew',
'11869' => '3-D printer',
'9651' => '3M',
'12103' => '3rd Armored Cavalry Regiment',
'5420' => '3rd Law Dance/Theater',
'10954' => '4 Noses Brewing',
'12129' => '40 West Arts District',
'4342' => '420 Rally',
'10992' => '48 Fire',
'7395' => '5280 Publishing',
'9331' => '5th Avenue Mile',
'5816' => '7-Eleven',
'674' => '850 KOA',
'6213' => '88th Avenue Open Space',
'9371' => '911 service',
'6486' => 'A Taste of Puerto Rico',
'12053' => 'A-Line van suicide',
'5152' => 'A. Barry Hirschfeld',
'10263' => 'A.J. Derby',
'7751' => 'A.J. Greer',
'6424' => 'A.J. Puk',
'10812' => 'A&E',
'6488' => 'AAA',
'11820' => 'Aaron Gordon',
'8937' => 'Aaron Hernandez',
'5340' => 'Aaron Mayville',
'6279' => 'Aaron Rodgers',
'11831' => 'Aaroné Thompson',
'8025' => 'AARP',
'230' => 'AB InBev',
'9452' => 'Abby Wambach',
'680' => 'ABC',
'5527' => 'Abdi Abdirahman',
'10729' => 'Abdul Jaleel Awini',
'4783' => 'abortion',
'7665' => 'Abraham Lincoln High School',
'11613' => 'Academic Standards',
'7742' => 'academic training',
'10271' => 'accidental deaths',
'9418' => 'ACLU',
'5010' => 'ACLU of Colorado',
'5948' => 'Activision',
'7595' => 'Adam Conley',
'4254' => 'Adam Gase',
'5314' => 'Adam Gotsis',
'11785' => 'Adam Hadwin',
'12122' => 'Adam Hayat',
'1836' => 'Adam Ottavino',
'11698' => 'Adam Peters',
'7841' => 'Adam Silver',
'11169' => 'Adam Werner',
'7002' => 'Adams 12 Five Star Schools',
'1040' => 'Adams City High School',
'11632' => 'Adams County Coroner',
'12359' => 'Adams County crime blotter',
'8504' => 'Adams County Detention Facility',
'8130' => 'Adams County District Attorney',
'8718' => 'Adams County District Court',
'6211' => 'Adams County Open Space',
'8938' => 'Adams County School District 14',
'1450' => 'Adams County Sheriff',
'1020' => 'Adams State University',
'5170' => 'addiction',
'7867' => 'Adele',
'7091' => 'Adeline Gray',
'12490' => 'Adobe',
'8571' => 'Adolf Hitler',
'7313' => 'adoption',
'9604' => 'Adrian Peterson',
'8979' => 'Adrift Tiki Bar and Grill',
'10673' => 'Advent',
'12303' => 'advertising',
'4867' => 'advice',
'8540' => 'ADX Supermax',
'505' => 'Aetna',
'4261' => 'AFC championship',
'7930' => 'AFC West',
'6401' => 'affordable housing',
'4871' => 'Afghanistan',
'4613' => 'AFL-CIO',
'9430' => 'Africa',
'1984' => 'Africa Lifeline',
'9461' => 'Afrikmall',
'1985' => 'Aftershocks',
'8024' => 'aging issues',
'5630' => 'Agnieszka Radwanska',
'9848' => 'agritourism',
'11157' => 'Ahkello Witherspoon',
'6517' => 'aid in dying',
'9042' => 'AIDS',
'1016' => 'Air Force Academy',
'7806' => 'air quality',
'661' => 'Airbnb',
'4868' => 'airports',
'10032' => 'Al Gore',
'5869' => 'Al LaCabe',
'6835' => 'Al Michaels',
'6985' => 'Al-Jazeera',
'10684' => 'al-Qaeda',
'6347' => 'Alabama',
'10855' => 'Alamo Bowl',
'8694' => 'Alamo Drafthouse',
'11239' => 'Alamo Placita Park',
'1451' => 'Alamosa County Sheriff',
'11434' => 'Alan Gordon',
'5531' => 'Alan Pulido',
'7303' => 'Alan Roach',
'10038' => 'Alan Salazar',
'11498' => 'Alaska',
'9134' => 'Albert Pujols',
'7555' => 'Alberto Salazar',
'9122' => 'Albertsons',
'6221' => 'Albus Brooks',
'663' => 'alcoholism',
'10074' => 'ALCS',
'11087' => 'Alden Global Capital',
'9326' => 'Alec Garnett',
'8880' => 'Alecia Riewerts',
'11472' => 'Alejandra Villanueva Ibarra',
'11069' => 'Aleppo',
'12113' => 'Alex Amarista',
'9669' => 'Alex Hunter',
'11156' => 'Alex Kelley',
'6263' => 'Alex Lowe',
'5923' => 'Alex Morgan',
'8459' => 'Alex Rodriguez',
'10435' => 'Alex Smith',
'5941' => 'Alex Turner (Pilot)',
'12049' => 'Alexander Acosta',
'5497' => 'Alexander Rossi',
'436' => 'Alexander Teves',
'12608' => 'Alexei Navalny',
'11113' => 'Alexi Amarista',
'8131' => 'Alexis DeJoria',
'6538' => 'Ali Peper',
'4890' => 'Alibaba',
'9061' => 'Alice Madden',
'8608' => 'Alisha Huerena',
'5555' => 'Alisha Williams',
'8912' => 'Alison Cerutti',
'1192' => 'All Colorado Team',
'1193' => 'All League Team',
'9600' => 'all things fall',
'12447' => 'All-Colorado',
'10408' => 'All-State teams',
'7343' => 'Allegiant Air',
'11377' => 'Allen Iverson',
'6984' => 'Allen Toussaint',
'6889' => 'Alligator attacks',
'10933' => 'Allison Eid',
'7586' => 'Allyson Felix',
'10590' => 'Alonzo Gee',
'1940' => 'Alpine skiing',
'8748' => 'ALS',
'10734' => 'alt-right',
'12478' => 'Alta Ski Area',
'11214' => 'Altitude 950',
'11936' => 'Altitude TV',
'7425' => 'Alvin Toffler',
'7788' => 'Aly Raisman',
'10355' => 'Alyssa Oswald',
'5781' => 'Alzheimer\'s disease',
'10576' => 'Amanda Booth',
'11161' => 'Amanda Nunes',
'10605' => 'Amanda Rose Landry',
'485' => 'Amazon',
'6607' => 'Amber Alert',
'5418' => 'Amber Heard',
'7764' => 'Amber McReynolds',
'12398' => 'ambulance',
'682' => 'AMC',
'12225' => 'AMD',
'11528' => 'Amendment 41',
'9628' => 'Amendment 69',
'9466' => 'Amendment 70',
'9552' => 'Amendment 71',
'9560' => 'Amendment 72',
'9693' => 'Amendment T',
'9694' => 'Amendment U',
'719' => 'America\'s Got Talent',
'526' => 'American Airlines Group',
'9609' => 'American Ballet Theatre',
'12260' => 'American Health Care Act',
'10234' => 'American Lung Association',
'6046' => 'American Motorcyclist Association',
'1986' => 'American Soldier',
'5121' => 'American West',
'7632' => 'Americans for Prosperity',
'8978' => 'Americans with Disabilities Act',
'597' => 'Amgen',
'5470' => 'Amp the Cause',
'9196' => 'amphetamine',
'5605' => 'Amtrak',
'8854' => 'Amy Cragg',
'9059' => 'Amy Stephens',
'316' => 'Anadarko Petroleum',
'11398' => 'Anaheim Ducks',
'7140' => 'analytics',
'7314' => 'AncestryDNA',
'798' => 'Anderson Cooper',
'8542' => 'Andre J. Twitty',
'7141' => 'Andre Roberson',
'6816' => 'Andre van Hall',
'4409' => 'Andrea Willis',
'7235' => 'Andreas Martinsen',
'9765' => 'Andrew Bogut',
'6002' => 'Andrew Cashner',
'5251' => 'Andrew Cuomo',
'10930' => 'Andrew Epstein',
'8607' => 'Andrew Huerena',
'7404' => 'Andrew Luck',
'11050' => 'Andrew McCutchen',
'12535' => 'Andrew Napolitano',
'11635' => 'Andrew Puzder',
'4398' => 'Android',
'9573' => 'Andy Dalton',
'5312' => 'Andy Janovich',
'9856' => 'Andy Kerr',
'11260' => 'Andy Lindahl',
'4717' => 'Andy Murray',
'11320' => 'Andy Reid',
'5965' => 'Andy Samberg',
'7964' => 'Andy Warhol',
'9260' => 'Andy Watts',
'8185' => 'Angel Chavez',
'6252' => 'Angel De Maria',
'10629' => 'Angela Merkel',
'5686' => 'Angela Stroud',
'1314' => 'Angela Williams',
'9577' => 'Angelina Jolie',
'9438' => 'Angelique Kerber',
'10382' => 'Angie\'s List',
'8929' => 'Anheuser-Busch',
'9250' => 'animal cruelty',
'937' => 'animals',
'416' => 'Animas River spill',
'12604' => 'anime',
'7970' => 'Anna Frost',
'10581' => 'Anna Sie',
'8807' => 'Anne Burtchaell',
'12417' => 'Anne Gorsuch',
'10354' => 'Annie Ell',
'9808' => 'Annie Korkki',
'7705' => 'Annie Kunz',
'10949' => 'Anschutz Corp.',
'185' => 'Anschutz Entertainment Group',
'6969' => 'Antarctica',
'493' => 'Anthem',
'4650' => 'Anthony Bourdain',
'12112' => 'Anthony Davis',
'6524' => 'Anthony Foxx',
'11724' => 'Anthony Kennedy',
'6864' => 'Anthony Swarzak',
'6927' => 'Anthony Weiner',
'7154' => 'Anti-Defamation League',
'4774' => 'Anton Lindholm',
'7072' => 'Anton Yelchin',
'7272' => 'Antonin Scalia',
'11192' => 'Antonio Gates',
'12331' => 'Antonio Senzatela',
'7600' => 'Antwan Scott',
'9981' => 'AOL',
'11544' => 'app reviews',
'462' => 'Apple',
'9547' => 'Apple Recipes',
'10773' => 'Applewood Golf Course',
'1678' => 'Aqib Talib',
'11513' => 'Arap',
'387' => 'Arapaho National Recreation Area',
'5739' => 'Arapahoe Basin',
'11245' => 'Arapahoe County Coroner',
'12361' => 'Arapahoe County crime blotter',
'12599' => 'Arapahoe County District Attorney',
'5744' => 'Arapahoe County District Court',
'8363' => 'Arapahoe County Jail',
'10757' => 'Arapahoe County Public Airport Authority',
'1452' => 'Arapahoe County Sheriff',
'8476' => 'Arapahoe County Sheriff\'s Office',
'1073' => 'Arapahoe High School',
'411' => 'Arapahoe High School Shooting',
'8923' => 'Arapahoe Park',
'7337' => 'Arapahoe Square',
'8322' => 'arbitration',
'12048' => 'arcade',
'5735' => 'Arch Coal',
'9138' => 'Archdiocese of Denver',
'6369' => 'architecture',
'8805' => 'Archuleta County Airport',
'11271' => 'Archuleta County Sheriff',
'6253' => 'Argentina',
'9192' => 'Argentine Pass',
'7928' => 'Arian Foster',
'1928' => 'Arielle Gold',
'10724' => 'Arion Worthman',
'7328' => 'Arizona',
'9209' => 'Arizona Cardinals',
'9124' => 'Arizona Coyotes',
'7230' => 'Arizona Diamondbacks',
'9446' => 'Arizona State University',
'11396' => 'Arizona Wildcats',
'12441' => 'Arkansas',
'4568' => 'Arkansas River',
'9700' => 'Arnold Palmer',
'11278' => 'Arnold Schwarzenegger',
'7064' => 'Around Colorado',
'10141' => 'Arran Andersen',
'186' => 'Arrow Electronics',
'8316' => 'Arsenal',
'9448' => 'arson',
'6894' => 'Art Briles',
'8701' => 'art reviews',
'10637' => 'Art Siemers',
'6304' => 'Art Students League of Denver',
'4807' => 'Arthur Gonzalez',
'7351' => 'artificial intelligence',
'8435' => 'arts and culture',
'6807' => 'Arts Brookfield',
'7966' => 'arts funding',
'4958' => 'Arvada Fire Department',
'1515' => 'Arvada Police Department',
'6540' => 'Arvada West High School',
'12363' => 'Arvada/Wheat Ridge crime blotter',
'12206' => 'Ash Wednesday',
'4941' => 'Asheville Tourists',
'10958' => 'Ashleigh Carter',
'4405' => 'Ashley Atkin',
'6572' => 'Ashley Doolittle',
'12064' => 'Ashley Mead',
'7151' => 'Ashton Kutcher',
'9412' => 'Asian Americans',
'7819' => 'Ask Amy',
'9380' => 'Ask the Editor',
'4981' => 'Aspen Art Museum',
'7089' => 'Aspen Highlands',
'11682' => 'Aspen Institute',
'10389' => 'Aspen Laugh Festival',
'4575' => 'Aspen Mountain',
'7134' => 'Aspen Music Fest',
'5015' => 'Aspen Music Festival',
'1516' => 'Aspen Police Department',
'4574' => 'Aspen Ski Company',
'11266' => 'Aspen Skiing Company',
'9605' => 'assault',
'7816' => 'asthma',
'10537' => 'astronomy',
'225' => 'AT&T',
'10220' => 'AT&T-Time Warner merger',
'12511' => 'atheism',
'10237' => 'Athina Munoz',
'5732' => 'Athmar Park',
'7596' => 'Atlanta Braves',
'1777' => 'Atlanta Falcons',
'11104' => 'Atlanta Hawks',
'10928' => 'Atlanta United',
'11127' => 'attempted murder',
'8967' => 'ATV crashes',
'12354' => 'Audrey Burton',
'10120' => 'Audrey Cheng',
'1517' => 'Ault Police Department',
'12483' => 'Aurora',
'6011' => 'Aurora Animal Shelter',
'10530' => 'Aurora Art Group',
'10455' => 'Aurora arts district',
'1074' => 'Aurora Central High School',
'6904' => 'Aurora City Council',
'12360' => 'Aurora crime blotter',
'10529' => 'Aurora Cultural Arts District',
'4550' => 'Aurora Fire Rescue',
'10452' => 'Aurora infill incentive',
'8428' => 'Aurora light rail',
'6013' => 'Aurora Parks and Recreation',
'1518' => 'Aurora Police Department',
'6012' => 'Aurora Public Library',
'1010' => 'Aurora Public Schools',
'10453' => 'Aurora redevelopment',
'831' => 'Aurora Sentinel',
'10771' => 'Aurora Symphony Orchestra',
'421' => 'Aurora Theater Shooting',
'425' => 'Aurora Theater Shooting 1st 36 hours',
'422' => 'Aurora Theater Shooting heroes',
'423' => 'Aurora Theater Shooting trial',
'326' => 'Aurora VA hospital',
'7259' => 'Aurora Warms the Night',
'8331' => 'Auschwitz',
'10520' => 'Austin Conway',
'9342' => 'Austin Davis',
'8702' => 'Austin James Wilkerson',
'8809' => 'Austin Kyle Baker',
'11037' => 'Austin Traylor',
'10050' => 'Auston Matthews',
'6447' => 'Australia',
'11444' => 'Australian Open',
'10838' => 'Austria',
'6920' => 'Autism',
'6806' => 'auto insurance',
'8758' => 'auto-ped crashes',
'11470' => 'automation',
'313' => 'automobiles',
'8900' => 'Avalanche coaching search',
'10511' => 'Avalanche goalies',
'10966' => 'Avalanche injuries',
'12077' => 'Avalanche Journal',
'1799' => 'Avalanche Mailbag',
'11526' => 'Avalanche morning skate',
'10519' => 'Avalanche podcast',
'10053' => 'Avalanche resources',
'10069' => 'Avalanche takes',
'9678' => 'Avalanche training camp',
'957' => 'avalanches',
'10562' => 'Avanti',
'11823' => 'Avery Brewing',
'1519' => 'Avon Police Department',
'7300' => 'award shows',
'4839' => 'Axel Sjoberg',
'11864' => 'B-Cycle',
'8177' => 'B-Line',
'11241' => 'Babi Yar Memorial Park',
'9699' => 'Babi Yar Park',
'10250' => 'babies',
'7340' => 'Baby Doe',
'8195' => 'back to school',
'6887' => 'Backstreet Boys',
'12457' => 'Baker Mayfield',
'11182' => 'baking',
'11167' => 'bald eagles',
'187' => 'Ball Aerospace & Technologies',
'7349' => 'Ball Corp.',
'417' => 'Balloon Boy',
'9692' => 'Ballot issue 4B',
'8651' => 'ballot measures',
'10366' => 'ballot selfies',
'4654' => 'Baltimore',
'8187' => 'Baltimore Orioles',
'10458' => 'Baltimore Ravens',
'10423' => 'Banana Republic',
'8052' => 'Bandimere Speedway',
'6631' => 'Bangladesh',
'7348' => 'Banjo Billy\'s Bus Tours',
'479' => 'Bank of America',
'8150' => 'bank robberies',
'6764' => 'bankruptcy',
'8493' => 'Banner Health',
'1271' => 'Barack Obama',
'1281' => 'Barack Obama inauguration',
'7953' => 'Barbara Sternberg',
'9603' => 'Barbara Walters',
'4775' => 'barbecue',
'12023' => 'Barcelona',
'11302' => 'Barnes & Noble',
'9416' => 'Barney Visser',
'332' => 'Barr Lake State Park',
'11490' => 'barry bonds',
'5212' => 'bars',
'11116' => 'Basalt High School',
'6366' => 'baseball brawls',
'8116' => 'Baseball Hall of Fame',
'12763' => 'Basketball Hall of Fame',
'9833' => 'Bass Pro Shops',
'6454' => 'Bastion',
'7903' => 'Baton Rouge police officer shooting',
'9502' => 'Bayer',
'12054' => 'Bayfield High School',
'5095' => 'Baylor University',
'10232' => 'bear attacks',
'11495' => 'bear cree',
'9917' => 'Bear Creek High School',
'4951' => 'Bears Ears National Monument',
'5328' => 'Beast + Bottle',
'7279' => 'Beau Bennett',
'5660' => 'Beau Bisharat',
'12423' => 'Beauty and the Beast',
'7208' => 'Beaver Creek fire',
'6479' => 'Beaver Creek Ski Area',
'7092' => 'Becky Hammon',
'8669' => 'Becky Sauerbrunn',
'1952' => 'beer',
'10861' => 'Beer in Review 2016',
'7298' => 'bees',
'7630' => 'beetle kill',
'6103' => 'Belgium',
'6246' => 'Bellator MMA',
'5106' => 'Bellco Theatre',
'9800' => 'Belmar Park',
'6333' => 'Belmont Stakes',
'7184' => 'Ben Affleck',
'6534' => 'Ben Bowden',
'10668' => 'Ben Carson',
'8033' => 'Ben Higgins',
'1847' => 'Ben Paulsen',
'10301' => 'Ben Roethlisberger',
'7556' => 'Ben Rosario',
'7659' => 'Ben Saarel',
'7165' => 'Ben Simmons',
'7373' => 'Benghazi',
'4874' => 'Benjamin Netanyahu',
'8764' => 'Benjamin Offei',
'11631' => 'Bennett High School',
'1651' => 'Bennie Fowler',
'9483' => 'Bennie Milliner',
'1608' => 'Bent County Correctional Facility',
'1455' => 'Bent County Sheriff',
'461' => 'Berkshire Hathaway',
'7589' => 'Bernard Lagat',
'11626' => 'Bernie Buescher',
'1275' => 'Bernie Sanders',
'10740' => 'Bernie Schmitz',
'10999' => 'Berthoud Fire Protection District',
'9919' => 'Berthoud High School',
'10991' => 'Berthoud Police Department',
'10294' => 'Beryl\'s Beer Co.',
'7831' => 'Best Bets',
'8367' => 'Best of Woody Paige',
'7299' => 'BET awards',
'4332' => 'Beth Bowlen Wallace',
'1315' => 'Beth McCann',
'2223' => 'Betrayal in the Ranks',
'10824' => 'Betsy DeVos',
'5442' => 'Betty Cahill',
'9627' => 'Betty Shelby',
'9842' => 'Beulah Hill fire',
'8155' => 'Beverlee McClure',
'10440' => 'Beyoncé',
'8204' => 'bicycles',
'8018' => 'Bierstadt Lagerhaus',
'7982' => 'Big 12',
'6121' => 'Big Brothers Big Sisters',
'8397' => 'Big Thompson River',
'6024' => 'bike lanes',
'7223' => 'Bike to Work Day',
'1422' => 'Bill Armstrong',
'8903' => 'Bill Barrett Corp.',
'10143' => 'Bill Belichick',
'1306' => 'Bill Cadman',
'7559' => 'Bill Clinton',
'4663' => 'Bill Cosby',
'7911' => 'Bill Gates',
'9257' => 'Bill Kaempfer',
'11408' => 'Bill Kollar',
'8408' => 'Bill McCartney',
'11406' => 'Bill Musgrave',
'12752' => 'Bill O\'Reilly',
'10029' => 'Bill Owens',
'12181' => 'Bill Paxton',
'9217' => 'Bill Ritter',
'11916' => 'Bill Rodgers',
'11593' => 'Billy Beane',
'10010' => 'Billy Bush',
'8546' => 'Billy Edward Scott',
'10303' => 'Billy McCaslin',
'10113' => 'Billy Turner',
'8390' => 'Billy Winn',
'9882' => 'birth control',
'11597' => 'Bismark Adjei-Boateng',
'7271' => 'Bitcoin',
'11714' => 'Biz',
'4897' => 'Biz Profile - Adams County',
'4901' => 'Biz Profile - Arvada-Wheat Ridge-Westminster',
'4899' => 'Biz Profile - Aurora',
'4900' => 'Biz Profile - Douglas County',
'4905' => 'Biz Profile - Golden-Morrison-Evergreen-Conifer',
'4902' => 'Biz Profile - Lakewood-Edgewater',
'4903' => 'Biz Profile - South Jefferson County',
'12734' => 'black bears',
'6802' => 'Black Canyon of the Gunnison National Park',
'6874' => 'Black Cube',
'970' => 'Black Forest Fire',
'10224' => 'Black Friday',
'11994' => 'Black History Month',
'8163' => 'Black Lives Matter',
'9032' => 'Black Project',
'10291' => 'Black Shirt Brewing Co.',
'9862' => 'Blackbird Public House',
'10652' => 'Blair Hubbard',
'6146' => 'Blair Jackson',
'9165' => 'Blake Bortles',
'12248' => 'Blake Comeau',
'10006' => 'Blake Doyle',
'12402' => 'Blake Street Tavern',
'5773' => 'Blenheim Place',
'6451' => 'Blizzard Entertainment',
'9910' => 'blizzards',
'10198' => 'Bloods',
'5917' => 'Blue Angels',
'8969' => 'Blue Cross Blue Shield',
'10854' => 'Blue Moon Brewing Company',
'7883' => 'Bluebird Theater',
'11346' => 'BMW',
'6575' => 'BMW Championship',
'9349' => 'BMX',
'9052' => 'boating',
'1432' => 'Bob Beauprez',
'9089' => 'Bob Boughner',
'11927' => 'Bob Costas',
'11096' => 'Bob Davidson',
'10054' => 'Bob Dylan',
'6394' => 'Bob Gardner',
'8673' => 'Bob Goebel',
'12387' => 'Bob Greenlee',
'11304' => 'Bob Rankin',
'11484' => 'Bob Saile',
'10717' => 'Bob Seay',
'9324' => 'Bob Troyer',
'11656' => 'Bobby Brown',
'6330' => 'Bobby Burling',
'8260' => 'Bobby Curtis',
'7294' => 'Bobby Dalbec',
'12109' => 'Bobby Muuss',
'12164' => 'Bobby Richardson',
'9291' => 'Bobby Wood',
'10995' => 'Bobcat Power Line Fire',
'12369' => 'Bode Miller',
'9710' => 'body cameras',
'483' => 'Boeing',
'11374' => 'Boettcher Mansion',
'10722' => 'Boise State',
'9114' => 'Boko Haram',
'5359' => 'Bolder Boulder',
'5512' => 'Bolder Boulder 2016',
'8543' => 'Bolivia',
'9365' => 'bombs',
'11187' => 'Bonanza Creek Energy',
'249' => 'Bonfils Blood Center',
'8217' => 'Bonfils-Stanton Foundation',
'8296' => 'Book Calendar',
'6989' => 'book reviews',
'8803' => 'Booker Talifero Graves',
'10585' => 'Boom Technology',
'1830' => 'Boone Logan',
'9824' => 'Border War',
'6130' => 'Boris Berian',
'7440' => 'Boris Johnson',
'7287' => 'Boston Bruins',
'10464' => 'Boston Celtics',
'11915' => 'Boston Marathon',
'11914' => 'Boston Marathon bombing',
'188' => 'Boston Market',
'4812' => 'Boston Red Sox',
'10095' => 'Boston University',
'12514' => 'Boulder',
'5421' => 'Boulder Bach Festival',
'7005' => 'Boulder Canyon',
'10885' => 'Boulder City Council',
'12515' => 'Boulder County',
'10807' => 'Boulder County Board of Commissioners',
'11423' => 'Boulder County Coroner',
'10906' => 'Boulder County District Attorney',
'6270' => 'Boulder County Fairgrounds',
'5445' => 'Boulder County Jail',
'1456' => 'Boulder County Sheriff',
'10500' => 'Boulder district attorney',
'7004' => 'Boulder Falls',
'12409' => 'Boulder Fire Department',
'1436' => 'Boulder GOP Debate 2015',
'9796' => 'Boulder High School',
'5093' => 'Boulder Museum of Contemporary Art',
'12424' => 'Boulder Office of Emergency Management',
'4396' => 'Boulder Open Space and Mountain Parks Department',
'11105' => 'Boulder Polar Plunge',
'1523' => 'Boulder Police Department',
'6456' => 'Boulder Reservoir',
'10442' => 'Boulder Rural Fire Protection District',
'5104' => 'Boulder Theater',
'7776' => 'Boulder Track Club',
'9844' => 'Boulder Valley School District',
'12393' => 'Boutique Air',
'11280' => 'Boy George',
'11693' => 'Boy Scouts of America',
'8196' => 'Boys and Girls club',
'5399' => 'Boys Hope Girls Hope',
'7051' => 'Brad Buchanan',
'6755' => 'Brad Guzan',
'7775' => 'Brad Keselowski',
'9578' => 'Brad Pitt',
'7319' => 'Brad Stuart',
'1672' => 'Bradley Roby',
'1852' => 'Brandon Barnes',
'8639' => 'Brandon Crawford',
'5514' => 'Brandon Johnson (Runner)',
'8620' => 'Brandon Karr',
'1661' => 'Brandon Marshall',
'1664' => 'Brandon McManus',
'7135' => 'Bravo! Vail',
'5016' => 'Bravo! Vail Music Festival',
'6367' => 'brawls',
'5874' => 'Brazil',
'6219' => 'Brea Olson',
'233' => 'Breckenridge Brewery',
'5092' => 'Breckenridge International Festival of Arts',
'1524' => 'Breckenridge Police Department',
'6478' => 'Breckenridge Ski Area',
'11648' => 'Brenda Martinez',
'6421' => 'Brendan Rodgers',
'10395' => 'Brent Curnow',
'9973' => 'Bret McGatlin',
'7678' => 'Bret Saunders',
'8572' => 'Brett Favre',
'5704' => 'Brett Schroetlin',
'11117' => 'Brevin Brimble',
'4710' => 'breweries',
'11822' => 'Brewers Association',
'11152' => 'Brewery Liberati',
'5174' => 'Brexit',
'12318' => 'Brian Bedard',
'10588' => 'Brian Dawkins',
'6928' => 'Brian De Palma',
'1355' => 'Brian DelGrosso',
'7454' => 'Brian Griese',
'8877' => 'Brian Jacob Delorme',
'5740' => 'Brian Kitts',
'7461' => 'Brian Maass',
'7888' => 'Brian Mundell',
'11405' => 'Brian Pariani',
'11462' => 'Brian Rowe',
'7222' => 'Brian Ruden',
'10626' => 'Brian Schmetzer',
'5393' => 'Brian Spano',
'9836' => 'Brian Stebbins',
'790' => 'Brian Williams',
'7967' => 'Brickyard 400',
'4406' => 'Brie Oakley',
'11084' => 'Brigham Young University',
'10013' => 'Brighton High School',
'1526' => 'Brighton Police Department',
'10086' => 'Brighton Recreation Center',
'10240' => 'Brighton School District 27J',
'10963' => 'British Petroleum',
'8288' => 'Brittany Bowlen',
'7571' => 'Brittany Reese',
'7109' => 'Brittney Griner',
'1645' => 'Britton Colquitt',
'5002' => 'Broadway Theater',
'6193' => 'Brock Lesnar',
'11862' => 'Brock Olivo',
'1638' => 'Brock Osweiler',
'6295' => 'Brock Turner',
'11839' => 'Brody McCord',
'10924' => 'Brolin Mawejje',
'10368' => 'Broncos cheerleaders',
'11197' => 'Broncos coaching search',
'9033' => 'Broncos defense',
'11209' => 'Broncos free agency',
'9697' => 'Broncos highlights',
'8278' => 'Broncos injuries',
'8732' => 'Broncos Insider',
'1797' => 'Broncos Mailbag',
'9529' => 'Broncos offense',
'4265' => 'Broncos Playoffs 2006',
'9516' => 'Broncos Q&A',
'7683' => 'Broncos quarterbacks',
'9409' => 'Broncos report card',
'7684' => 'Broncos resources',
'10214' => 'Broncos Ring of Fame',
'8947' => 'broncos rookie haircuts',
'8115' => 'Broncos Spotlight',
'7682' => 'Broncos takes',
'8334' => 'Broncos tickets',
'7687' => 'Broncos training camp',
'7680' => 'Broncos watercooler',
'6677' => 'Brooke Henderson',
'10461' => 'Brooke Weins',
'7500' => 'Brooklyn Nets',
'10909' => 'Broomfield City Council',
'1150' => 'Broomfield High School',
'1527' => 'Broomfield Police Department',
'379' => 'Browns Canyon National Monument',
'10645' => 'Bruce Arena',
'10636' => 'Bruce Arians',
'8726' => 'Bruce DeBoskey',
'8396' => 'Bruce McFarland',
'6145' => 'Bruce Ruffin',
'12288' => 'brunch',
'11041' => 'Bryan Baltzell',
'812' => 'Bryan Cranston',
'8806' => 'Bryan Krueger',
'5912' => 'Bryan Price',
'8120' => 'Bryan Warr',
'9046' => 'Bryce Bobo',
'5453' => 'Bryce Dejean-Jones',
'8826' => 'Bryce Harper',
'10487' => 'Bryce Peters',
'4664' => 'Bubba Smith',
'7030' => 'Bubba Watson',
'8704' => 'Buckley Air Force Base',
'9847' => 'Bud Black',
'7557' => 'Bud Norris',
'6187' => 'Buddy Hield',
'7329' => 'Buddy Ryan',
'10444' => 'Budweiser',
'6391' => 'Buell Theatre',
'1153' => 'Buena Vista High School',
'10432' => 'Buena Vista Police Department',
'5482' => 'Buffalo Bill’s Grave and Museum',
'9826' => 'Buffalo Bills',
'4556' => 'Buffalo Exchange',
'12057' => 'Buffalo Sabres',
'11852' => 'Building Broncos',
'12594' => 'Bulgaria',
'9507' => 'Bureau of Alcohol Tobacco Firearms and Explosives',
'8214' => 'Bureau of Land Management',
'5966' => 'burglaries',
'9574' => 'Burke Ramsey',
'9070' => 'burkini',
'7157' => 'burritos',
'11606' => 'burro racing',
'8232' => 'bus crashes',
'11692' => 'business closures',
'5465' => 'Buster Posey',
'7394' => 'Butch Mousseau',
'11723' => 'Byron White',
'5221' => 'C-470',
'1639' => 'C.J. Anderson',
'6434' => 'C3 Challenge',
'9834' => 'Cabela\'s',
'8767' => 'Caboose Hobbies',
'10983' => 'Cactus League',
'10329' => 'Cade Verkler',
'7371' => 'Caitlyn Jenner',
'11318' => 'Cal Bears',
'11508' => 'Calais Campbell',
'7605' => 'Cale Simmons',
'9624' => 'Caleb Calvert',
'11677' => 'Caleb Moore',
'8687' => 'Caleb Schwab',
'11838' => 'Caleb Tamminga',
'9738' => 'Caley Mitchell',
'11126' => 'Calgary Flames',
'1531' => 'Calhan Police Department',
'6111' => 'California',
'5606' => 'California Zephyr',
'10956' => 'Call to Arms Brewing',
'9001' => 'Callie Kuhasz',
'7624' => 'Calvin Pickard',
'10649' => 'Cam Atkinson',
'10327' => 'Cam Gonzales',
'6475' => 'Cam Newton',
'12568' => 'Cam Robinson',
'4469' => 'Cam Talbot',
'8143' => 'Cameron Dye',
'5265' => 'Cameron Keith',
'7274' => 'Cameron Morrison',
'7899' => 'Cameron Wolfe Versus',
'10794' => 'Camp Amache',
'5401' => 'Camp Hale',
'8524' => 'campaign ads',
'9457' => 'campaign finance',
'5494' => 'camping',
'6496' => 'camping bans',
'5403' => 'Canada',
'8123' => 'Canadian Open',
'6097' => 'cancer',
'8566' => 'Cannabidiol',
'1532' => 'Canon City Police Department',
'580' => 'Capital One',