-
Notifications
You must be signed in to change notification settings - Fork 0
/
lyricists.tex
executable file
·1052 lines (1046 loc) · 53.1 KB
/
lyricists.tex
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
%% lyricists.tex
%% Generated by `songlist' Mon, 25 Mar 2024 15:21:05 CET
\ifseparate
\pageno=1
\fi
\pagecnt=\pageno
\parskip=.75\baselineskip
\medium
\headline={\hfil\ifnum\pageno>\pagecnt{\mediumbx Songs by Lyricist}\fi\hfil\hbox to 0pt{\hss{\tt \timestamp}\quad}}
\hldest{xyz}{}{lyricists}
\centerline{{\largebx Songs by Lyricist}}
\vskip.75\baselineskip
\doublecolumns
\vbox{\hbox{{\mediumbx Adams, Lee}}
\hbox{\hskip1.5em Put on a Happy Face}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Adler, Richard and Ross, Jerry}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Heart (You've Gotta Have Heart)}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Hey There}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. I'm Not At All In Love}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Whatever Lola Wants (Lola Gets)}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Anderson, Maxwell}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Lost in the Stars}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. September Song}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Anonymous; Mahler, Gustav}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Antonius von Padua Fischpredigt, Des}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Irdische Leben, Das}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Lob des hohen Verstandes}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Rheinlegendchen}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Wer hat das Liedlein erdacht?}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Ballard, Pat}}
\hbox{\hskip1.5em Mister Sandman}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Balz, Bruno}}
\hbox{\hskip1.5em Es leuchten die Sterne}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Barouh, Pierre}}
\hbox{\hskip1.5em Homme et une femme, Un}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Bart, Lionel}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Consider Yourself}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Food, Glorious Food}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. I'd Do Anything}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Where is Love?}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Who Will Buy?}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Beckmann, Hans Fritz}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Bel Ami}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Frauen sind keine Engel}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Bergman, Alan and Marilyn}}
\hbox{\hskip1.5em Windmills of Your Mind, The}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Berlin, Irving}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Anything You Can Do}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Blue Skies}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Change Partners}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Cheek to Cheek}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Heat Wave}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 6}. \vtop{\hbox{Isn't This a Lovely Day?}\vskip-.2\baselineskip\hbox{(To Be Caught in the Rain)}\vskip.375\baselineskip}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 7}. Let's Face the Music and Dance}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 8}. No Strings (I'm Fancy Free)}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 9}. Piccolino, The}
\hbox{\hskip1.5em \hbox to \twozerosdimen{10}. Pretty A Girl is Like a Melody, A}
\hbox{\hskip1.5em \hbox to \twozerosdimen{11}. Puttin' On the Ritz}
\hbox{\hskip1.5em \hbox to \twozerosdimen{12}. There's No Business Like Show Business}
\hbox{\hskip1.5em \hbox to \twozerosdimen{13}. They Say it's Wonderful}
\hbox{\hskip1.5em \hbox to \twozerosdimen{14}. Top Hat, White Tie and Tails}
\hbox{\hskip1.5em \hbox to \twozerosdimen{15}. White Christmas}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Bettis, John}}
\hbox{\hskip1.5em Top of the World}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Borodin, Alexander}}
\hbox{\hskip1.5em Polowetzer T@{a}nze \hbox to 0pt{(``Stranger in Paradise'')\hss}}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Bowman, Brooks}}
\hbox{\hskip1.5em East of the Sun (and West of the Moon)}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Brammer, Julius}}
\hbox{\hskip1.5em Sch@{o}ner Gigolo, armer Gigolo}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Brammer, Julius und Gr@{u}nwald, Alfred}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Komm, Zigany}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Zwei M@{a}rchenaugen}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Bricusse, Leslie and Newley, Anthony}}
\hbox{\hskip1.5em What Kind of Fool Am I?}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Brown, Lew}}
\hbox{\hskip1.5em That Old Feeling}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Burke, Johnny}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Here's That Rainy Day}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Imagination}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. It Could Happen to You}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. I've Got a Pocketful of Dreams}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Misty}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 6}. Moonlight Becomes You}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 7}. My Very Good Friend the Milkman}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 8}. Oh! You Crazy Moon}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 9}. Pennies from Heaven}
\hbox{\hskip1.5em \hbox to \twozerosdimen{10}. Scatter-Brain}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Caesar, Irving}}
\hbox{\hskip1.5em Tea for Two}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Cahn, Sammy}}
\hbox{\hskip1.5em Things We Did Last Summer, The}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Carmichael, Hoagy and Arodin, Sidney}}
\hbox{\hskip1.5em Lazy River}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Ciorciolini, Marcello}}
\hbox{\hskip1.5em Ti Guarder{\`e}ro Nel Cuore (More)}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Comden, Betty and Green, Adolf}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. I Can Cook Too}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. It's Love}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Just in Time}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Little Bit in Love, A}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Lucky to Be Me}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 6}. Party's Over, The}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Contet, Henri}}
\hbox{\hskip1.5em Mademoiselle de Paris}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Cormon, Eug{\`e}ne and Carr{\'e}, Michel}}
\hbox{\hskip1.5em Au fond du temple saint}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Coslow, Sam}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Cocktails for Two}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Just One More Chance}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. My Old Flame}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Cour, Pierre}}
\hbox{\hskip1.5em Amour est bleu, L'}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Coward, No@{e}l}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. If Love Were All}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. I'll Follow My Secret Heart}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. I'll See You Again}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Mad About the Boy}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Parisian Pierrot}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 6}. Room With a View, A}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Da Ponte, Lorenzo}}
\hbox{\hskip1.5em L{\`a} ci darem la mano}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Darion, Joe}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Impossible Dream, The (The Quest)}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Little Bird, Little Bird}
}\vskip\parskip
\vbox{\hbox{{\mediumbx David, Hal}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Close to You}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Do You Know the Way to San Jose?}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. I Say a Little Prayer}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. I'll Never Fall in Love Again}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Davis, Benny}}
\hbox{\hskip1.5em Baby Face}
}\vskip\parskip
\vbox{\hbox{{\mediumbx De Sylva, Buddy G.}}
\hbox{\hskip1.5em April Showers}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Dehmel, Willy}}
\hbox{\hskip1.5em Ja und Nein}
}\vskip\parskip
\vbox{\hbox{{\mediumbx DeLange, Eddie}}
\hbox{\hskip1.5em Moonglow}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Denver, John}}
\hbox{\hskip1.5em Annie's Song}
}\vskip\parskip
\vbox{\hbox{{\mediumbx DeSylva, B.G.; Brown, Lew and Henderson, Ray}}
\hbox{\hskip1.5em Button Up Your Overcoat}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Dixon, Mort}}
\hbox{\hskip1.5em Lady in Red, The}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Dom{\'\i}nguez Borr{\'a}s, Alberto}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Frenesi}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Perfidia}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Donaldson, Walter}}
\hbox{\hskip1.5em Little White Lies}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Drejac, Jean}}
\hbox{\hskip1.5em Sous le ciel de Paris}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Dubin, Al}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. 42nd Street}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Gold Diggers' Song, The (We're in the Money)}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. I Only Have Eyes for You}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. I'll String Along With You}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Keep Young and Beautiful}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 6}. Lulu's Back in Town}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 7}. Remember Me}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 8}. September in the Rain}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 9}. Shuffle Off to Buffalo}
\hbox{\hskip1.5em \hbox to \twozerosdimen{10}. Tiptoe Through the Tulips With Me}
\hbox{\hskip1.5em \hbox to \twozerosdimen{11}. Young and Healthy}
\hbox{\hskip1.5em \hbox to \twozerosdimen{12}. You're Getting to Be a Habit With Me}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Dubin, Al and Rose, Billy}}
\hbox{\hskip1.5em Cup of Coffee, a Sandwich and You, A}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Duke, Vernon}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Autumn in New York}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Paris in New York}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Ebb, Fred}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Cabaret}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Willkommen}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Egan, Raymond B.}}
\hbox{\hskip1.5em Japanese Sandman}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Eliscu, Edward and Kahn, Gus}}
\hbox{\hskip1.5em Carioca}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Evans, Ray}}
\hbox{\hskip1.5em Tammy}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Evans, Redd}}
\hbox{\hskip1.5em Frim Fram Sauce, The}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Farina, Santo; Farina, John; and Farina, Ann}}
\hbox{\hskip1.5em Sleepwalk}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Farr{\'e}s, Osvaldo}}
\hbox{\hskip1.5em Quiz{\'a}s, Quiz{\'a}s, Quiz{\'a}s}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Fields, Dorothy}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Fine Romance, A}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. I'm in the Mood for Love}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. On the Sunny Side of the Street}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Pick Yourself Up}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Way You Look Tonight, The}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Fisher, Fred}}
\hbox{\hskip1.5em Chicago (That Toddling Town)}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Fisher, Mark; Goodwin, Joe and Shay, Larry}}
\hbox{\hskip1.5em When You're Smiling}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Fontenoy, Marc}}
\hbox{\hskip1.5em Buenas Noches mi Amor}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Freed, Arthur}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. All I Do Is Dream Of You}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Temptation}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Wedding of the Painted Doll, The}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Freed, Ralph}}
\hbox{\hskip1.5em How About You?}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Galhardo, Jos{\'e}}}
\hbox{\hskip1.5em Lisboa Antiga}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Gershwin, Ira}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Embraceable You}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Girl of the Moment}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. I Can't Get Started}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Let's Call the Whole Thing Off}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Long Ago (and Far Away)}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 6}. Man I Love, The}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 7}. 'S Wonderful}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 8}. Someone to Watch Over Me}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 9}. Sure Thing}
\hbox{\hskip1.5em \hbox to \twozerosdimen{10}. \vtop{\hbox{There's a Boat That's Leavin'}\vskip-.2\baselineskip\hbox{Soon for New York}\vskip.375\baselineskip}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{11}. They Can't Take That Away From Me}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Gershwin, Ira and Heyward, DuBose}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. I Got Plenty o' Nuttin'}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Woman is a Sometime Thing, A}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Gershwin, Ira and Kahn, Gus}}
\hbox{\hskip1.5em Liza (All the Clouds'll Roll Away)}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Gilbert, W.S.}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. On a Tree By a Willow}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Sun Whose Rays, The}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Three Little Maids from School}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Wand'ring Minstrel I, A}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Gillespie, Haven}}
\hbox{\hskip1.5em You Go to My Head}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Gordon, Irving}}
\hbox{\hskip1.5em Unforgettable}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Gordon, Irving and Mills, Irving}}
\hbox{\hskip1.5em Prelude to a Kiss}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Gordon, Mack}}
\hbox{\hskip1.5em You'll Never Know (Just How Much I Love You)}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Gorrell, Stuart}}
\hbox{\hskip1.5em Georgia on my Mind}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Green, Paul}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Listen to My Song (Johnny's Song)}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Mon Ami, My Friend}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Gr@{u}nbaum, Fritz und Sterk, Wilhelm}}
\hbox{\hskip1.5em Du sollst der Kaiser meiner Seele sein}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Haffner, Karl und Gen{\'e}e, Richard}}
\hbox{\hskip1.5em Mein Herr Marquis}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Hammerstein II, Oscar}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. All the Things You Are}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Lover Come Back to Me}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Make Believe}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Many a New Day}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. People Will Say We're in Love}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 6}. Some Enchanted Evening}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 7}. Why Was I Born?}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Harbach, Otto}}
\hbox{\hskip1.5em Smoke Gets in Your Eyes}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Harburg, E.Y.}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. I Like the Likes of You}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Lydia, the Tattooed Lady}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Over the Rainbow}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Harburg, E.Y.~``Yip''}}
\hbox{\hskip1.5em April in Paris}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Harnick, Sheldon}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. (I'll Marry) The Very Next Man}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Little Tin Box}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Hart, Lorenz}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Bewitched}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Blue Moon}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Falling in Love With Love}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. I Married an Angel}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Isn't It Romantic?}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 6}. It Never Entered My Mind}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 7}. Lady is a Tramp, The}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 8}. Manhattan}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 9}. My Heart Stood Still}
\hbox{\hskip1.5em \hbox to \twozerosdimen{10}. Ten Cents a Dance}
\hbox{\hskip1.5em \hbox to \twozerosdimen{11}. This Can't be Love}
\hbox{\hskip1.5em \hbox to \twozerosdimen{12}. Thou Swell}
\hbox{\hskip1.5em \hbox to \twozerosdimen{13}. Where or When}
\hbox{\hskip1.5em \hbox to \twozerosdimen{14}. You Took Advantage of Me}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Hatch, Tony}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Call Me}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Downtown}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Heyman, Edward}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. I Cover the Waterfront}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Out of Nowhere}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. When I Fall in Love}
}\vskip\parskip
\vbox{\hbox{{\mediumbx \vbox{\hbox{Heymann, Edward; Eyton Frank;}\vskip\composerskip\hbox{and Sour, Robert}}}}
\hbox{\hskip1.5em Body and Soul}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Hodgson, Red}}
\hbox{\hskip1.5em Music Goes 'Round and Around, The}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Hollaender, Friedrich}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Illusions}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. In Sankt Pauli--bei Altona}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. You've Got That Look}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Hough, Will M.~and Adams, Frank R.}}
\hbox{\hskip1.5em I Wonder Who's Kissing Her Now}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Howard, Bart}}
\hbox{\hskip1.5em Fly Me to the Moon (In Other Words)}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Howard, Joe E.~and Emerson, Ida}}
\hbox{\hskip1.5em Hello! Ma Baby}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Hughes, Langston}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Moon-Faced, Starry-Eyed}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. What Good Would the Moon Be?}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Hupfeld, Herman}}
\hbox{\hskip1.5em As Time Goes By}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Ian, Janis}}
\hbox{\hskip1.5em At Seventeen}
}\vskip\parskip
\vbox{\hbox{{\mediumbx James, Paul (Warburg, James Paul)}}
\hbox{\hskip1.5em Fine and Dandy}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Jobim, Antonio Carlos}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Corcovado}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Desafinado}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Este Seu Olhar}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. O Nosso Amor (Carnival Samba)}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Samba do Avi{\~a}o}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 6}. Wave}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Johnson, J.C.}}
\hbox{\hskip1.5em Yacht Club Swing}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Johnston, Patricia and Raye, Don}}
\hbox{\hskip1.5em I'll Remember April}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Kahal, Irving}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. By a Waterfall}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. I Can Dream, Can't I?}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. I'll Be Seeing You}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Kahn, Gus}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. All God's Children}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Carolina in the Morning}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Coquette}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Dream a Little Dream of Me}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. I'll See You in My Dreams}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 6}. It Had to be You}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 7}. Love Me or Leave Me}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 8}. Makin' Whoopee!}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 9}. Message From the Man in the Moon, A}
\hbox{\hskip1.5em \hbox to \twozerosdimen{10}. My Baby Just Cares for Me}
\hbox{\hskip1.5em \hbox to \twozerosdimen{11}. One I Love Belongs to Somebody Else, The}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Kahn, Gus and Erdman, Ernest}}
\hbox{\hskip1.5em Nobody's Sweetheart}
}\vskip\parskip
\vbox{\hbox{{\mediumbx \vbox{\hbox{Kahn, Gus; Erdman, Ernie;}\vskip\composerskip\hbox{Russo, Dan and Fiorito, Ted}}}}
\hbox{\hskip1.5em Toot Toot Tootsie, Goo'bye}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Kalmar, Bert}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Nevertheless (I'm In Love With You)}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Three Little Words}
}\vskip\parskip
\vbox{\hbox{{\mediumbx \vbox{\hbox{Kellette, John; Brockman, James;}\vskip\composerskip\hbox{Vincent, Nat and Kendis, James}}}}
\hbox{\hskip1.5em I'm Forever Blowing Bubbles}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Kennedy, Jimmy}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Harbour Lights}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Red Sails in the Sunset}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. South of the Border}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Kenny, Nick and Kenny, Charles}}
\hbox{\hskip1.5em Love Letters in the Sand}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Kind, Friedrich}}
\hbox{\hskip1.5em Durch die W@{a}lder, durch die Auen}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Kleban, Edward}}
\hbox{\hskip1.5em One}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Klenner, John}}
\hbox{\hskip1.5em Heartaches}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Koehler, Ted}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Between the Devil and the Deep Blue Sea}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. I've Got the World on a String}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Let's Fall in Love}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Koehler, Ted and Moll, Billy}}
\hbox{\hskip1.5em Wrap Your Troubles in Dreams}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Koehler, Ted and Wilmott, Charles}}
\hbox{\hskip1.5em I'm Shooting High}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Kuckuck, Peter}}
\hbox{\hskip1.5em Mein Gorilla hat 'ne Villa im Zoo}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Kurtz, Manny and Mills, Irving}}
\hbox{\hskip1.5em In a Sentimental Mood}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Kusik, Larry}}
\hbox{\hskip1.5em Speak Softly, Love}
}\vskip\parskip
\vbox{\hbox{{\mediumbx La Touche, John and Fetter, Ted}}
\hbox{\hskip1.5em Taking a Chance on Love}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Lawrence, Jack}}
\hbox{\hskip1.5em Tenderly}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Le Pera, Alfredo}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Por Una Cabeza}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Volver}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Lecuona, Ernesto}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Siboney}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Siempre en mi Coraz{\'o}n}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. So{\~n}e que me dejabas}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Lenk, Harry and Drake, Ervin}}
\hbox{\hskip1.5em Perdido}
}\vskip\parskip
\vbox{\hbox{{\mediumbx L{\'e}on, Victor und Stein, Leo}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Da geh ich zu Maxim}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Lied vom dummen Reiter, Das}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Lippen schweigen}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Lerner, Alan Jay}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Camelot}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Gigi}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. I Could Have Danced All Night}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. I Talk to the Trees}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. If I Should Ever Leave You}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 6}. On a Clear Day}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 7}. On the Street Where You Live}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 8}. They Call the Wind Maria}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 9}. Wouldn't It Be Loverly?}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Lewis, Sam M.~and Young, Joe}}
\hbox{\hskip1.5em Rock-a-Bye Your Baby (With a Dixie Melody)}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Lightfoot, Gordon}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. If You Could Read My Mind}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Sundown}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Livingston, Jay and Evans, Ray}}
\hbox{\hskip1.5em Mr.~Lucky}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Loesser, Frank}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Baby, It's Cold Outside}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Guys and Dolls}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Heart and Soul}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Lady's in Love With You, The}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. On a Slow Boat to China}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 6}. Once in Love with Amy}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 7}. Standing on the Corner}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 8}. Two Sleepy People}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 9}. Woman in Love, A}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Luban, Francia}}
\hbox{\hskip1.5em Para Vigo me voy (Say ``Si, Si'')}
}\vskip\parskip
\vbox{\hbox{{\mediumbx MacDonald, Ballard and DeSylva, Buddy}}
\hbox{\hskip1.5em Somebody Loves Me}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Madden, Ed}}
\hbox{\hskip1.5em By The Light Of The Silvery Moon}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Madden, Edward}}
\hbox{\hskip1.5em Moonlight Bay}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Magidson, Herb}}
\hbox{\hskip1.5em Continental, The}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Maria, Ant{\^o}nio}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Manh{\~a} da Carnaval}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Samba de Orfeu}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Martin, Hugh and Blane, Ralph}}
\hbox{\hskip1.5em Have Yourself a Merry Little Christmas}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Marvell, Holt (Maschwitz, Eric)}}
\hbox{\hskip1.5em These Foolish Things}
}\vskip\parskip
\vbox{\hbox{{\mediumbx McCarthy, Joe}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Alice Blue Gown}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. You Made Me Love You}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Mehring, Walter}}
\hbox{\hskip1.5em Wie lange noch?}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Mendon{\c c}a, Newton}}
\hbox{\hskip1.5em Samba de Uma Nota So}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Mendon{\c c}a, Newton F.}}
\hbox{\hskip1.5em Incerteza}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Mercer, Johnny}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Fools Rush In (Where Angels Fear to Tread)}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Hooray For Hollywood}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Jeepers Creepers}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Laura}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Moon River}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 6}. Skylark}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 7}. Tangerine}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Mills, Irving}}
\hbox{\hskip1.5em Caravan}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Modugno, Domenico and Migliacci, Franco}}
\hbox{\hskip1.5em Nel blu dipinto di blu (Volare)}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Moraes, Vin{\'\i}cius de}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Chega de Saudade}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Felicidade, A}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Gar{\^o}ta de Ipanema}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Insensatez}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Se Todos Fossem Iguais a Voc{\^e}}
}\vskip\parskip
\vbox{\hbox{{\mediumbx \vbox{\hbox{Morgan, Russ; Stock, Larry}\vskip\composerskip\hbox{and Cavanaugh, James}}}}
\hbox{\hskip1.5em You're Nobody 'Til Somebody Loves You}
}\vskip\parskip
\vbox{\hbox{{\mediumbx M@{u}ller, Wilhelm}}
\hbox{\hskip1.5em Gute Nacht}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Nash, Ogden}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Just Like a Man}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Speak Low}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Nelson, Willie}}
\hbox{\hskip1.5em Crazy}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Noble, Ray}}
\hbox{\hskip1.5em Very Thought of You, The}
}\vskip\parskip
\vbox{\hbox{{\mediumbx None}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. By the Sleepy Lagoon}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Jalousie ``Tango Tzigane'' (Jealousy)}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Jitterbug Waltz, The}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Ruby My Dear}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Norman, Jos{\'e}}}
\hbox{\hskip1.5em Cuban Pete}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Norton, George A.}}
\hbox{\hskip1.5em My Melancholy Baby}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Norworth, Jack}}
\hbox{\hskip1.5em Shine On Harvest Moon}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Oliveira, Aloysio de}}
\hbox{\hskip1.5em Tico Tico no Fuba}
}\vskip\parskip
\vbox{\hbox{{\mediumbx O'Sullivan, Gilbert (Ray Gilbert)}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Alone Again (Naturally)}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Claire}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Parish, Mitchell}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Deep Purple}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Moonlight Serenade}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Sleigh Ride}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Stardust}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Stars Fell on Alabama}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Parish, Mitchell and Mills, Irving}}
\hbox{\hskip1.5em Sophisticated Lady}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Parker, Ross and Charles, Hughie}}
\hbox{\hskip1.5em We'll Meet Again}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Parks, C.~Carson}}
\hbox{\hskip1.5em Somethin' Stupid}
}\vskip\parskip
\vbox{\hbox{{\mediumbx P{\'e}rez Prado, D{\'a}maso}}
\hbox{\hskip1.5em Mambo {\#}5}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Pinelli, Aldo von}}
\hbox{\hskip1.5em Abends in der Taverna}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Porter, Cole}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Anything Goes}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Begin the Beguine}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Easy to Love}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Every Time We Say Goodbye}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Farming}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 6}. From This Moment On}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 7}. I Get a Kick Out of You}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 8}. It's All Right With Me}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 9}. It's De-Lovely}
\hbox{\hskip1.5em \hbox to \twozerosdimen{10}. I've Got You Under My Skin}
\hbox{\hskip1.5em \hbox to \twozerosdimen{11}. Just One of Those Things}
\hbox{\hskip1.5em \hbox to \twozerosdimen{12}. Let's Do It (Let's Fall in Love)}
\hbox{\hskip1.5em \hbox to \twozerosdimen{13}. Love for Sale}
\hbox{\hskip1.5em \hbox to \twozerosdimen{14}. My Heart Belongs to Daddy}
\hbox{\hskip1.5em \hbox to \twozerosdimen{15}. Night and Day}
\hbox{\hskip1.5em \hbox to \twozerosdimen{16}. So in Love}
\hbox{\hskip1.5em \hbox to \twozerosdimen{17}. Tom, Dick or Harry}
\hbox{\hskip1.5em \hbox to \twozerosdimen{18}. We Open in Venice}
\hbox{\hskip1.5em \hbox to \twozerosdimen{19}. What Is This Thing Called Love?}
\hbox{\hskip1.5em \hbox to \twozerosdimen{20}. You're the Top}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Prevert, Jacques}}
\hbox{\hskip1.5em Feuilles Mortes, Les}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Razaf, Andy}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Ain't Misbehavin'}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Keepin' Out of Mischief Now}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Memories of You}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Razaf, Andy and Johnson, J.C.}}
\hbox{\hskip1.5em Joint is Jumpin', The}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Reaves, Erell and Tilsley, Henry}}
\hbox{\hskip1.5em Lady of Spain}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Reid, Billy}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. I'll Close My Eyes}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. It's a Pity to Say `Goodnight'}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Robin, Leo}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Diamonds are a Girl's Best Friend}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. June in Janury}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Prisoner of Love}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Rainy Night in Rio, A}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Thanks for the Memory}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Robin, Leo and Rainger, Ralph}}
\hbox{\hskip1.5em Miss Brown to You}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Romani, Felice}}
\hbox{\hskip1.5em Furtiva lagrima, Una}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Romero, Manuel}}
\hbox{\hskip1.5em Tomo y Obligo}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Rose, Billy}}
\hbox{\hskip1.5em I've Got a Feeling I'm Falling}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Schiffer, Marcellus}}
\hbox{\hskip1.5em Heute Nacht oder nie}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Schikaneder, Emanuel}}
\hbox{\hskip1.5em Alles f@{u}hlt der Liebe Freuden}
}\vskip\parskip
\vbox{\hbox{{\mediumbx \vbox{\hbox{Seiler, Eddie; Marcus, Sol;}\vskip\composerskip\hbox{Benjamin, Bennie and Durham, Eddie}}}}
\hbox{\hskip1.5em I Don't Want to Set the World on Fire}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Sieczynski, Rudolf}}
\hbox{\hskip1.5em Wien, Wien nur du allein}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Siegel, Ralph Maria}}
\hbox{\hskip1.5em Capri Fischer}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Sigman, Carl}}
\hbox{\hskip1.5em Where Do I Begin? (Theme from Love Story)}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Silvers, Phil}}
\hbox{\hskip1.5em Nancy with the Laughing Face}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Singleton, Charles/Snyder, Eddie}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Spanish Eyes (Moon Over Naples)}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Strangers in the Night}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Smith, Richard B.}}
\hbox{\hskip1.5em Winter Wonderland}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Sondheim, Stephen}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Cool}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Everything's Coming Up Roses}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. Jet Song}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Something's Coming}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Somewhere}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Springfield, Tom}}
\hbox{\hskip1.5em Georgy Girl}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Stillman, Al}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Chances Are}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. It's Not For Me to Say}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Sylva, Bud de}}
\hbox{\hskip1.5em Feeling the Way I Do}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Thibaut, Gille}}
\hbox{\hskip1.5em Comme d'Habitude}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Turk, Roy}}
\hbox{\hskip1.5em I Don't Know Why (I Just Do)}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Unknown}}
\hbox{\hskip1.5em Rote Sarafan, Der ({\mediumcy kRASN{\char'131}{\char'112} sARAFAN{\char'137}})}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Washington, Ned}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Cosi Cosa}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. Nearness of You, The}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 3}. On Green Dolphin Street}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 4}. Smoke Rings}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 5}. Stella By Starlight}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Webster, Paul Francis}}
\hbox{\hskip1.5em Shadow of Your Smile, The}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Weiss, George David and Thiele, Bob}}
\hbox{\hskip1.5em What a Wonderful World}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Whiting, George A.}}
\hbox{\hskip1.5em My Blue Heaven}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Whiting, Richard A.}}
\hbox{\hskip1.5em She's Funny That Way}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Wilbur, Richard}}
\hbox{\hskip1.5em Glitter and Be Gay}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Williams, Cootie and Monk, Thelonius}}
\hbox{\hskip1.5em 'Round Midnight}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Williams, Hank}}
\hbox{\hskip1.5em Hey, Good Lookin'}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Williams, Paul}}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 1}. Rainy Days and Mondays}
\hbox{\hskip1.5em \hbox to \twozerosdimen{\hfil 2}. We've Only Just Begun}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Wodehouse, P.G. and Hammerstein, Oscar II}}
\hbox{\hskip1.5em Bill}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Wright, Robert and Forrest, George}}
\hbox{\hskip1.5em Baubles, Bangles and Beads}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Wynette, Tammy and Sherrill, Billy}}
\hbox{\hskip1.5em Stand By Your Man}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Yellen, Jack}}
\hbox{\hskip1.5em Ain't She Sweet?}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Young, Joe}}
\hbox{\hskip1.5em \vtop{\hbox{I'm Gonna Sit Right Down}\vskip-.2\baselineskip\hbox{and Write Myself a Letter}\vskip.375\baselineskip}}
}\vskip\parskip
\vbox{\hbox{{\mediumbx Yradier, Sebastian}}
\hbox{\hskip1.5em Paloma, La}
}\singlecolumn
\vfil\eject
\begingroup
\baselineskip=0pt
\parskip=4pt
\composerskip=2pt
\lyricistskip=2pt
\pagecnt=\pageno
\global\headline={\hfil \ifnum\pageno>\pagecnt{\mediumbx Lyricists by Number of Songs}\fi\hfil
\hbox to 0pt{\hss{\tt \timestamp}\quad}}
\Section{lyricists by number}{Lyricists By Number of Songs}
\hldest{xyz}{}{lyricists by number}
\centerline{{\largebx Lyricists by Number of Songs}}
\vskip.75\baselineskip
\doublecolumns
\leavevmode\hbox to \twozerosbolddimen{\hss{\mediumbx 20}}\hskip.5em Porter, Cole\hfil\break
\vskip6pt
\leavevmode\hbox to \twozerosbolddimen{\hss{\mediumbx 15}}\hskip.5em Berlin, Irving\hfil\break
\vskip6pt
\leavevmode\hbox to \twozerosbolddimen{\hss{\mediumbx 14}}\hskip.5em Hart, Lorenz\hfil\break
\vskip6pt
\leavevmode\hbox to \twozerosbolddimen{\hss{\mediumbx 12}}\hskip.5em Dubin, Al\hfil\break
\vskip6pt
\leavevmode\hbox to \twozerosbolddimen{\hss{\mediumbx 11}}\hskip.5em Gershwin, Ira\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Kahn, Gus\hfil\break
\vskip6pt
\leavevmode\hbox to \twozerosbolddimen{\hss{\mediumbx 10}}\hskip.5em Burke, Johnny\hfil\break
\vskip6pt
\leavevmode\hbox to \twozerosbolddimen{\hss{\mediumbx 9}}\hskip.5em Lerner, Alan Jay\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Loesser, Frank\hfil\break
\vskip6pt
\leavevmode\hbox to \twozerosbolddimen{\hss{\mediumbx 7}}\hskip.5em Hammerstein II, Oscar\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Mercer, Johnny\hfil\break
\vskip6pt
\leavevmode\hbox to \twozerosbolddimen{\hss{\mediumbx 6}}\hskip.5em Comden, Betty and Green, Adolf\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Coward, No@{e}l\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Jobim, Antonio Carlos\hfil\break
\vskip6pt
\leavevmode\hbox to \twozerosbolddimen{\hss{\mediumbx 5}}\hskip.5em Anonymous; Mahler, Gustav\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Bart, Lionel\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Fields, Dorothy\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Moraes, Vin{\'\i}cius de\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Parish, Mitchell\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Robin, Leo\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Sondheim, Stephen\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Washington, Ned\hfil\break
\vskip6pt
\leavevmode\hbox to \twozerosbolddimen{\hss{\mediumbx 4}}\hskip.5em Adler, Richard and Ross, Jerry\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em David, Hal\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Gilbert, W.S.\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em \vtop to \dp\commabox{\vfil}None\hfil\break
\vskip6pt
\leavevmode\hbox to \twozerosbolddimen{\hss{\mediumbx 3}}\hskip.5em Coslow, Sam\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Freed, Arthur\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Harburg, E.Y.\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Heyman, Edward\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Hollaender, Friedrich\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Kahal, Irving\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Kennedy, Jimmy\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Koehler, Ted\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Lecuona, Ernesto\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em L{\'e}on, Victor und Stein, Leo\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Razaf, Andy\hfil\break
\vskip6pt
\leavevmode\hbox to \twozerosbolddimen{\hss{\mediumbx 2}}\hskip.5em Anderson, Maxwell\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Beckmann, Hans Fritz\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Brammer, Julius und Gr@{u}nwald, Alfred\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Darion, Joe\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Dom{\'\i}nguez Borr{\'a}s, Alberto\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Duke, Vernon\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Ebb, Fred\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Gershwin, Ira and Heyward, DuBose\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Green, Paul\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Harnick, Sheldon\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Hatch, Tony\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Hughes, Langston\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Kalmar, Bert\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Le Pera, Alfredo\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Lightfoot, Gordon\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Maria, Ant{\^o}nio\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em McCarthy, Joe\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Nash, Ogden\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em O'Sullivan, Gilbert (Ray Gilbert)\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Reid, Billy\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Singleton, Charles/Snyder, Eddie\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Stillman, Al\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Williams, Paul\hfil\break
\vskip6pt
\leavevmode\hbox to \twozerosbolddimen{\hss{\mediumbx 1}}\hskip.5em Adams, Lee\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Ballard, Pat\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Balz, Bruno\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Barouh, Pierre\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Bergman, Alan and Marilyn\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Bettis, John\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Borodin, Alexander\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Bowman, Brooks\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Brammer, Julius\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Bricusse, Leslie and Newley, Anthony\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Brown, Lew\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Caesar, Irving\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Cahn, Sammy\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Carmichael, Hoagy and Arodin, Sidney\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Ciorciolini, Marcello\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Contet, Henri\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Cormon, Eug{\`e}ne and Carr{\'e}, Michel\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Cour, Pierre\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Da Ponte, Lorenzo\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Davis, Benny\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em De Sylva, Buddy G.\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Dehmel, Willy\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em DeLange, Eddie\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Denver, John\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em DeSylva, B.G.; Brown, Lew and Henderson, Ray\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Dixon, Mort\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Donaldson, Walter\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Drejac, Jean\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Dubin, Al and Rose, Billy\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Egan, Raymond B.\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Eliscu, Edward and Kahn, Gus\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Evans, Ray\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Evans, Redd\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Farina, Santo; Farina, John; and Farina, Ann\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Farr{\'e}s, Osvaldo\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Fisher, Fred\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Fisher, Mark; Goodwin, Joe and Shay, Larry\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Fontenoy, Marc\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Freed, Ralph\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Galhardo, Jos{\'e}\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Gershwin, Ira and Kahn, Gus\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Gillespie, Haven\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Gordon, Irving\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Gordon, Irving and Mills, Irving\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Gordon, Mack\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Gorrell, Stuart\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Gr@{u}nbaum, Fritz und Sterk, Wilhelm\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Haffner, Karl und Gen{\'e}e, Richard\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Harbach, Otto\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Harburg, E.Y.~``Yip''\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em \vbox{\hbox{Heymann, Edward; Eyton Frank;}\vskip\composerskip\hbox{and Sour, Robert}}\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Hodgson, Red\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Hough, Will M.~and Adams, Frank R.\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Howard, Bart\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Howard, Joe E.~and Emerson, Ida\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Hupfeld, Herman\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Ian, Janis\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em James, Paul (Warburg, James Paul)\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Johnson, J.C.\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Johnston, Patricia and Raye, Don\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Kahn, Gus and Erdman, Ernest\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em \vbox{\hbox{Kahn, Gus; Erdman, Ernie;}\vskip\composerskip\hbox{Russo, Dan and Fiorito, Ted}}\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em \vbox{\hbox{Kellette, John; Brockman, James;}\vskip\composerskip\hbox{Vincent, Nat and Kendis, James}}\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Kenny, Nick and Kenny, Charles\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Kind, Friedrich\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Kleban, Edward\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Klenner, John\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Koehler, Ted and Moll, Billy\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Koehler, Ted and Wilmott, Charles\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Kuckuck, Peter\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Kurtz, Manny and Mills, Irving\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Kusik, Larry\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em La Touche, John and Fetter, Ted\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Lawrence, Jack\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Lenk, Harry and Drake, Ervin\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Lewis, Sam M.~and Young, Joe\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Livingston, Jay and Evans, Ray\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Luban, Francia\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em MacDonald, Ballard and DeSylva, Buddy\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Madden, Ed\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Madden, Edward\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Magidson, Herb\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Martin, Hugh and Blane, Ralph\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Marvell, Holt (Maschwitz, Eric)\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Mehring, Walter\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Mendon{\c c}a, Newton\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Mendon{\c c}a, Newton F.\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Mills, Irving\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Modugno, Domenico and Migliacci, Franco\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em \vbox{\hbox{Morgan, Russ; Stock, Larry}\vskip\composerskip\hbox{and Cavanaugh, James}}\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em M@{u}ller, Wilhelm\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Nelson, Willie\hfil\break
\hbox{}\hskip\twozerosbolddimen\hskip.5em Noble, Ray\hfil\break