-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
4699 lines (4307 loc) · 166 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>The New Yorker Cartoon Caption Contest Dataset</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
</head>
<body>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<div class="container">
<div class="row" align="center"><h2>The New Yorker Cartoon Caption Contest Dataset</h2></div>
<div class="row col-md-8 offset-md-2">
<p>
Thanks for your interest in this dataset. The data may not be used for commercial purposes. If you do use it for academic research, we would appreciate you referencing the dataset as follows:
</p>
<blockquote>
<TT>Zhang, J.<sup>*</sup>, Jain, L.<sup>*</sup>, Guo, Y.<sup>*</sup>, Chen, J., Zhou, K. L., Suresh, S., ... & Nowak, R. (2024). Humor in AI: Massive Scale Crowd-Sourced Preferences and Benchmarks for Cartoon Captioning. arXiv preprint arXiv:2406.10522.</TT>
</blockquote>
<p>and</p>
<blockquote>
<TT>Jain, L., Jamieson, K., Mankoff, R., Nowak, R., Sievert, S., (2020). The New Yorker Cartoon Caption Contest Dataset. https://nextml.github.io/caption-contest-data/</TT>
</blockquote>
<p>
These data were gathered as part of the The New Yorker (TNY) cartoon caption contest. The crowdsourced ratings inform the final judging of the captions, but the official winner is decided by the TNY editorial staff.
</p>
<p>
<i>The most recent contest (not shown) is likely receiving votes at <a href="https://www.newyorker.com/cartoons/vote">https://www.newyorker.com/cartoons/vote</a>.</i>
</p>
<p>
More insight into this dataset is at
<a href="https://nextml.github.io/caption-contest-data-api/examples.html">
https://nextml.github.io/caption-contest-data-api/examples.html
</a>, which answers the following questions:
<ul>
<li>How many responses are gathered per contest?</li>
<li>How does the system perform, both for the web server and sampling algorithm?</li>
<li>How do ratings behave after users have seen many captions?</li>
<li>How funny are captions? How do top captions behave?</li>
<li>How well can (older) natural language processing (NLP) tools find similar captions?</li>
</ul>
</p>
</div>
</div>
<div class="container">
<div class="row" align="center">
<!--
<h2>Downloads</h2>
<p><a href="all-data.zip"><b>Download all data</b></a></p>
<p>Links to download the captions/cartoon are available on each dashboard.</p>
-->
<h3>Contests</h3>
<table style="width:80%" align="center" class="table">
<tr>
<th>Contest Dashboard</th>
<th>Cartoon</th>
<th>Top Rated caption</th>
<th>The New Yorker's winner</th>
<th>Finalists Announced (date of issue)</th>
<th>Number of votes</th>
<!--
<th>Sampler(s)</th>
-->
</tr>
<tr>
<td><a href="dashboards/895.html">895 Dashboard</a></td>
<td><img src="cartoons/895.jpg" width=300 /></td>
<td>“Do you think death rays would be considered electronics or sporting goods?”</td>
<td></td>
<td></th>
<td>777,820</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/894.html">894 Dashboard</a></td>
<td><img src="cartoons/894.jpg" width=300 /></td>
<td>“See how the nose seems to follow you?”</td>
<td></td>
<td></th>
<td>878,676</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/893.html">893 Dashboard</a></td>
<td><img src="cartoons/893.jpg" width=300 /></td>
<td>“The seller isn't willing to come down.”</td>
<td></td>
<td></th>
<td>1,085,745</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/892.html">892 Dashboard</a></td>
<td><img src="cartoons/892.jpg" width=300 /></td>
<td>“Yes, it's called Thesaurus, but you're not related.”</td>
<td></td>
<td></th>
<td>788,251</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/891.html">891 Dashboard</a></td>
<td><img src="cartoons/891.jpg" width=300 /></td>
<td>“Sorry, only the catcher works from home.”</td>
<td></td>
<td></th>
<td>928,856</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/890.html">890 Dashboard</a></td>
<td><img src="cartoons/890.jpg" width=300 /></td>
<td>“You never told me you have a sun.”</td>
<td></td>
<td></th>
<td>720,369</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/889.html">889 Dashboard</a></td>
<td><img src="cartoons/889.jpg" width=300 /></td>
<td>“You say ‘flood’ like it’s a bad thing.”</td>
<td></td>
<td></th>
<td>865,117</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/888.html">888 Dashboard</a></td>
<td><img src="cartoons/888.jpg" width=300 /></td>
<td>“You know, it's gonna itch like hell when it grows back.”</td>
<td></td>
<td></th>
<td>672,907</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/887.html">887 Dashboard</a></td>
<td><img src="cartoons/887.jpg" width=300 /></td>
<td>“Four wishes if you listen to a timeshare presentation.”</td>
<td></td>
<td></th>
<td>443,647</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/886.html">886 Dashboard</a></td>
<td><img src="cartoons/886.jpg" width=300 /></td>
<td>“You're a lifeguard, Larry. You can't keep working from home.”</td>
<td></td>
<td></th>
<td>637,472</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/885.html">885 Dashboard</a></td>
<td><img src="cartoons/885.jpg" width=300 /></td>
<td>“Upset? I’m beside myself!”</td>
<td></td>
<td></th>
<td>796,287</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/884.html">884 Dashboard</a></td>
<td><img src="cartoons/884.jpg" width=300 /></td>
<td>“What do you mean, 'we can do this the smooth way or the crunchy way'...?!”</td>
<td></td>
<td></th>
<td>1,093,976</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/883.html">883 Dashboard</a></td>
<td><img src="cartoons/883.jpg" width=300 /></td>
<td>“Do you ever get the feeling you're wasting one of your lives?”</td>
<td></td>
<td></th>
<td>786,791</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/882.html">882 Dashboard</a></td>
<td><img src="cartoons/882.jpg" width=300 /></td>
<td>“I think this calls for a discouraging word.”</td>
<td></td>
<td></th>
<td>814,233</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/881.html">881 Dashboard</a></td>
<td><img src="cartoons/881.jpg" width=300 /></td>
<td>“Listen you guys, I just went through this with Eenie, Meenie, Minie and Moe.””</td>
<td></td>
<td></th>
<td>675,468</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/880.html">880 Dashboard</a></td>
<td><img src="cartoons/880.jpg" width=300 /></td>
<td>“Ticking? Actually I find your breathing more annoying.”</td>
<td></td>
<td></th>
<td>737,642</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/879.html">879 Dashboard</a></td>
<td><img src="cartoons/879.jpg" width=300 /></td>
<td>“It started when Hell froze over”</td>
<td></td>
<td></th>
<td>1,119,122</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/878.html">878 Dashboard</a></td>
<td><img src="cartoons/878.jpg" width=300 /></td>
<td>“Take those off! They’ll give you mistle toe.”</td>
<td></td>
<td></th>
<td>777,292</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/877.html">877 Dashboard</a></td>
<td><img src="cartoons/877.jpg" width=300 /></td>
<td>“I’m having mixed emojis.”</td>
<td></td>
<td></th>
<td>486,047</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/876.html">876 Dashboard</a></td>
<td><img src="cartoons/876.jpg" width=300 /></td>
<td>“The weird part is this one’s on the placebo.”</td>
<td></td>
<td></th>
<td>741,955</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/875.html">875 Dashboard</a></td>
<td><img src="cartoons/875.jpg" width=300 /></td>
<td>“See, honey, it is possible . . . one bag for six months.”</td>
<td></td>
<td></th>
<td>632,342</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/874.html">874 Dashboard</a></td>
<td><img src="cartoons/874.jpg" width=300 /></td>
<td>“Not as surprising as watching you pick up his poo.”</td>
<td></td>
<td></th>
<td>660,003</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/873.html">873 Dashboard</a></td>
<td><img src="cartoons/873.jpg" width=300 /></td>
<td>“Congratulations. We've found millions of compatible donors.”</td>
<td></td>
<td></th>
<td>669,650</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/872.html">872 Dashboard</a></td>
<td><img src="cartoons/872.jpg" width=300 /></td>
<td>“Sorry I was late. I hit every traffic light on the way here.”</td>
<td></td>
<td></th>
<td>685,011</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/871.html">871 Dashboard</a></td>
<td><img src="cartoons/871.jpg" width=300 /></td>
<td>“It's vegan because I added vegans.”</td>
<td></td>
<td></th>
<td>628,147</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/870.html">870 Dashboard</a></td>
<td><img src="cartoons/870.jpg" width=300 /></td>
<td>“It’s attached to the debt ceiling.”</td>
<td></td>
<td></th>
<td>525,967</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/869.html">869 Dashboard</a></td>
<td><img src="cartoons/869.jpg" width=300 /></td>
<td>“Anyway, Gayle, where‘s this can of worms you said we‘d be opening?”</td>
<td></td>
<td></th>
<td>650,378</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/868.html">868 Dashboard</a></td>
<td><img src="cartoons/868.jpg" width=300 /></td>
<td>“Lately, my meltdowns are coming more frequently.”</td>
<td></td>
<td></th>
<td>898,827</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/867.html">867 Dashboard</a></td>
<td><img src="cartoons/867.jpg" width=300 /></td>
<td>“I heard I’m being considered for a cabinet post.”</td>
<td></td>
<td></th>
<td>783,397</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/866.html">866 Dashboard</a></td>
<td><img src="cartoons/866.jpg" width=300 /></td>
<td>“Yeah, that was me. I have greenhouse gas.”</td>
<td></td>
<td></th>
<td>1,042,413</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/865.html">865 Dashboard</a></td>
<td><img src="cartoons/865.jpg" width=300 /></td>
<td>“Well, in a black hole the gravitational pull is so intense that nothing, not even light, can escape. So yeah, I think your ball is gone.”</td>
<td></td>
<td></th>
<td>938,655</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/864.html">864 Dashboard</a></td>
<td><img src="cartoons/864.jpg" width=300 /></td>
<td>“Maybe cut the line about following your instincts.”</td>
<td></td>
<td></th>
<td>675,816</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/863.html">863 Dashboard</a></td>
<td><img src="cartoons/863.jpg" width=300 /></td>
<td>“First, let me fill you in.”</td>
<td></td>
<td></th>
<td>961,488</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/862.html">862 Dashboard</a></td>
<td><img src="cartoons/862.jpg" width=300 /></td>
<td>“If you watch “Gone With the Wind” with red glasses, the South wins.”</td>
<td></td>
<td></th>
<td>589,565</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/861.html">861 Dashboard</a></td>
<td><img src="cartoons/861.jpg" width=300 /></td>
<td>“Welcome to the Mild, Mild West!”</td>
<td></td>
<td></th>
<td>774,086</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/860.html">860 Dashboard</a></td>
<td><img src="cartoons/860.jpg" width=300 /></td>
<td>“And I'm the dirty one?”</td>
<td></td>
<td></th>
<td>724,509</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/859.html">859 Dashboard</a></td>
<td><img src="cartoons/859.jpg" width=300 /></td>
<td>“For heavens sake George, let's just split the lunch bill five ways.”</td>
<td></td>
<td></th>
<td>844,180</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/858.html">858 Dashboard</a></td>
<td><img src="cartoons/858.jpg" width=300 /></td>
<td>“When I said “wait till you see these puppies,” what did you think I meant?”</td>
<td></td>
<td></th>
<td>616,719</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/857.html">857 Dashboard</a></td>
<td><img src="cartoons/857.jpg" width=300 /></td>
<td>“That's nice. My husband is a carpenter too.”</td>
<td></td>
<td></th>
<td>762,493</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/856.html">856 Dashboard</a></td>
<td><img src="cartoons/856.jpg" width=300 /></td>
<td>“You don’t have to say ‘excuse me’ every single time.”</td>
<td></td>
<td></th>
<td>1,106,340</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/855.html">855 Dashboard</a></td>
<td><img src="cartoons/855.jpg" width=300 /></td>
<td>“I can't get a dog but you adopt a highway.”</td>
<td></td>
<td></th>
<td>678,579</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/854.html">854 Dashboard</a></td>
<td><img src="cartoons/854.jpg" width=300 /></td>
<td>“Are you very satisfied, somewhat satisfied, or not at all satisfied with your pool experience?”</td>
<td></td>
<td></th>
<td>764,444</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/853.html">853 Dashboard</a></td>
<td><img src="cartoons/853.jpg" width=300 /></td>
<td>“Who knew the Swiss had a navy?”</td>
<td></td>
<td></th>
<td>923,719</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/852.html">852 Dashboard</a></td>
<td><img src="cartoons/852.jpg" width=300 /></td>
<td>“It's OK, as long as I don't sit on the Jalapenos.”</td>
<td></td>
<td></th>
<td>840,964</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/851.html">851 Dashboard</a></td>
<td><img src="cartoons/851.jpg" width=300 /></td>
<td>“I’m here to conduct your exit interview.”</td>
<td></td>
<td></th>
<td>553,475</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/850.html">850 Dashboard</a></td>
<td><img src="cartoons/850.jpg" width=300 /></td>
<td>“If you wanted me to jump, you could've just pushed me.”</td>
<td></td>
<td></th>
<td>31,173</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/849.html">849 Dashboard</a></td>
<td><img src="cartoons/849.jpg" width=300 /></td>
<td>“How do I look? Yea or neigh?”</td>
<td></td>
<td></th>
<td>692,898</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/848.html">848 Dashboard</a></td>
<td><img src="cartoons/848.jpg" width=300 /></td>
<td>“Look! The first Robinsons of Spring.”</td>
<td></td>
<td></th>
<td>764,424</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/847.html">847 Dashboard</a></td>
<td><img src="cartoons/847.jpg" width=300 /></td>
<td>“I absolutely love what you’ve done with your air.”</td>
<td></td>
<td></th>
<td>696,435</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/846.html">846 Dashboard</a></td>
<td><img src="cartoons/846.jpg" width=300 /></td>
<td>“Now I’m starting to believe the mailman’s side of the story.”</td>
<td></td>
<td></th>
<td>915,320</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/845.html">845 Dashboard</a></td>
<td><img src="cartoons/845.jpg" width=300 /></td>
<td>“A mortgage I’ll approve for thee, if you can solve these riddles three.”</td>
<td></td>
<td></th>
<td>689,283</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/844.html">844 Dashboard</a></td>
<td><img src="cartoons/844.jpg" width=300 /></td>
<td>“You can leave your label on.”</td>
<td></td>
<td></th>
<td>630,216</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/843.html">843 Dashboard</a></td>
<td><img src="cartoons/843.jpg" width=300 /></td>
<td>“Leave the circus,” you said. “You’ll never use those skills,” you said”</td>
<td></td>
<td></th>
<td>694,038</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/842.html">842 Dashboard</a></td>
<td><img src="cartoons/842.jpg" width=300 /></td>
<td>“Duck! Just kidding, watch your step.”</td>
<td></td>
<td></th>
<td>585,396</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/841.html">841 Dashboard</a></td>
<td><img src="cartoons/841.jpg" width=300 /></td>
<td>“This is too easy. Let’s put them in an IKEA.”</td>
<td></td>
<td></th>
<td>741,430</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/840.html">840 Dashboard</a></td>
<td><img src="cartoons/840.jpg" width=300 /></td>
<td>“The label said 'Lay flat to iron."”</td>
<td></td>
<td></th>
<td>730,960</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/839.html">839 Dashboard</a></td>
<td><img src="cartoons/839.jpg" width=300 /></td>
<td>“I don't care what Satan lets his kids do.”</td>
<td></td>
<td></th>
<td>574,148</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/838.html">838 Dashboard</a></td>
<td><img src="cartoons/838.jpg" width=300 /></td>
<td>“It’s a win-win. He was delicious, and now we’ve got a flashlight.”</td>
<td></td>
<td></th>
<td>711,545</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/837.html">837 Dashboard</a></td>
<td><img src="cartoons/837.jpg" width=300 /></td>
<td>“I suspect vowel play”</td>
<td></td>
<td></th>
<td>695,564</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/836.html">836 Dashboard</a></td>
<td><img src="cartoons/836.jpg" width=300 /></td>
<td>“You're a Holstein? Do you know the Greenblatts from Jersey City?”</td>
<td></td>
<td></th>
<td>1,139,385</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/835.html">835 Dashboard</a></td>
<td><img src="cartoons/835.jpg" width=300 /></td>
<td>“Sir, this is a Whole Foods. The only payment we accept is an arm and a leg.”</td>
<td></td>
<td></th>
<td>684,627</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/834.html">834 Dashboard</a></td>
<td><img src="cartoons/834.jpg" width=300 /></td>
<td>“They recommend the beef.”</td>
<td></td>
<td></th>
<td>484,214</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/833.html">833 Dashboard</a></td>
<td><img src="cartoons/833.jpg" width=300 /></td>
<td>“This is the option covered by your insurance”</td>
<td></td>
<td></th>
<td>809,874</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/832.html">832 Dashboard</a></td>
<td><img src="cartoons/832.jpg" width=300 /></td>
<td>“We will not negotiate with terriers.”</td>
<td></td>
<td></th>
<td>559,921</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/831.html">831 Dashboard</a></td>
<td><img src="cartoons/831.jpg" width=300 /></td>
<td>“Any happily married people here tonight?”</td>
<td>“Any happily married people here tonight?”</td>
<td>January 2 & 9, 2023</th>
<td>1,039,647</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/830.html">830 Dashboard</a></td>
<td><img src="cartoons/830.jpg" width=300 /></td>
<td>“Well of course I’m being defensive!”</td>
<td>"Well, of course I'm being defensive."</td>
<td>December 19, 2022</th>
<td>540,717</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/829.html">829 Dashboard</a></td>
<td><img src="cartoons/829.jpg" width=300 /></td>
<td>“I was young and needed the money.”</td>
<td>"You always think everything is about you."</td>
<td>December 12, 2022</th>
<td>699,465</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/828.html">828 Dashboard</a></td>
<td><img src="cartoons/828.jpg" width=300 /></td>
<td>“They want to know if we lost a ball on the Moon in 1971?”</td>
<td>“Everyone’s landing on the green but you.”</td>
<td>December 5, 2022</th>
<td>594,974</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/827.html">827 Dashboard</a></td>
<td><img src="cartoons/827.jpg" width=300 /></td>
<td>“I’m from the future. Vote carefully.”</td>
<td>“How do you kill your lunch with that thing?”</td>
<td>November 28, 2022</th>
<td>807,973</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/826.html">826 Dashboard</a></td>
<td><img src="cartoons/826.jpg" width=300 /></td>
<td>“I love it when they wake up and ask what year this is.”</td>
<td>“The patient has requested ‘Stayin’ Alive.'”</td>
<td>November 21, 2022</th>
<td>745,717</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/825.html">825 Dashboard</a></td>
<td><img src="cartoons/825.jpg" width=300 /></td>
<td>“Just remember, you can be empty headed and orange and still succeed in America.”</td>
<td>“Thanks for carving out a little face time.”</td>
<td>November 14, 2022</th>
<td>808,863</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/824.html">824 Dashboard</a></td>
<td><img src="cartoons/824.jpg" width=300 /></td>
<td>“Looks like I caught you at the tail end of your meal.”</td>
<td>“Your stomach is growling.”</td>
<td>November 7, 2022</th>
<td>811,988</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/823.html">823 Dashboard</a></td>
<td><img src="cartoons/823.jpg" width=300 /></td>
<td>“Be grateful you're not in business class. They have a mime.”</td>
<td>“Think of a delay between one and ten hours.”</td>
<td>October 31, 2022</th>
<td>397,422</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/822.html">822 Dashboard</a></td>
<td><img src="cartoons/822.jpg" width=300 /></td>
<td>“…but the third planet was juuuuust right!”</td>
<td>“Goodnight, trees, goodnight, dirt. Goodnight, human race on the earth.”</td>
<td>October 24, 2022</th>
<td>687,072</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/821.html">821 Dashboard</a></td>
<td><img src="cartoons/821.jpg" width=300 /></td>
<td>“You shoulda heard the mocking birds this morning.”</td>
<td>“You shoulda heard the mockingbirds this morning.”</td>
<td>October 17, 2022</th>
<td>736,497</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/820.html">820 Dashboard</a></td>
<td><img src="cartoons/820.jpg" width=300 /></td>
<td>“You've got it upside down.”</td>
<td>“It leaves me feeling empty.”</td>
<td>October 10, 2022</th>
<td>566,410</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/819.html">819 Dashboard</a></td>
<td><img src="cartoons/819.jpg" width=300 /></td>
<td>“My wife said, "Try them on, it won't kill you. "”</td>
<td>"I only knew about the moral code."</td>
<td>October 3, 2022</th>
<td>804,325</td>
<!--
<td>lil-KLUCB</td>
-->
</tr>
<tr>
<td><a href="dashboards/818.html">818 Dashboard</a></td>
<td><img src="cartoons/818.jpg" width=300 /></td>
<td>“You told me to come back when I got my act together!”</td>
<td>“Your downstairs neighbors sent us.”</td>
<td>September 26, 2022</th>