This repository has been archived by the owner on May 16, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 463
/
tap_migrations.json
2204 lines (2203 loc) Β· 90.4 KB
/
tap_migrations.json
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
{
"font-0xproto-nerd-font": "homebrew/cask",
"font-0xproto": "homebrew/cask",
"font-3270-nerd-font": "homebrew/cask",
"font-3270": "homebrew/cask",
"font-437-plus": "homebrew/cask",
"font-abeezee": "homebrew/cask",
"font-abel": "homebrew/cask",
"font-abhaya-libre": "homebrew/cask",
"font-aboreto": "homebrew/cask",
"font-aboriginal-sans": "homebrew/cask",
"font-aboriginal-serif": "homebrew/cask",
"font-abril-fatface": "homebrew/cask",
"font-abyssinica-sil": "homebrew/cask",
"font-academicons": "homebrew/cask",
"font-aclonica": "homebrew/cask",
"font-acme": "homebrew/cask",
"font-actor": "homebrew/cask",
"font-adamina": "homebrew/cask",
"font-adinatha-tamil-brahmi": "homebrew/cask",
"font-adlam-display": "homebrew/cask",
"font-adobe-blank": "homebrew/cask",
"font-advent-pro": "homebrew/cask",
"font-afacad": "homebrew/cask",
"font-african-sans": "homebrew/cask",
"font-african-serif": "homebrew/cask",
"font-agave-nerd-font": "homebrew/cask",
"font-agbalumo": "homebrew/cask",
"font-agdasima": "homebrew/cask",
"font-aguafina-script": "homebrew/cask",
"font-ahuramzda": "homebrew/cask",
"font-aileron": "homebrew/cask",
"font-akatab": "homebrew/cask",
"font-akaya-kanadaka": "homebrew/cask",
"font-akaya-telivigala": "homebrew/cask",
"font-akronim": "homebrew/cask",
"font-aksara-bali-galang": "homebrew/cask",
"font-akshar": "homebrew/cask",
"font-aladin": "homebrew/cask",
"font-alata": "homebrew/cask",
"font-alatsi": "homebrew/cask",
"font-albert-sans": "homebrew/cask",
"font-albertella": "homebrew/cask",
"font-aldrich": "homebrew/cask",
"font-alef": "homebrew/cask",
"font-alegreya-sans-sc": "homebrew/cask",
"font-alegreya-sans": "homebrew/cask",
"font-alegreya-sc": "homebrew/cask",
"font-alegreya": "homebrew/cask",
"font-aleo": "homebrew/cask",
"font-alex-brush": "homebrew/cask",
"font-alexandria": "homebrew/cask",
"font-alfa-slab-one": "homebrew/cask",
"font-alice": "homebrew/cask",
"font-alike-angular": "homebrew/cask",
"font-alike": "homebrew/cask",
"font-alkalami": "homebrew/cask",
"font-alkatra": "homebrew/cask",
"font-allan": "homebrew/cask",
"font-allerta-stencil": "homebrew/cask",
"font-allerta": "homebrew/cask",
"font-allison": "homebrew/cask",
"font-allura": "homebrew/cask",
"font-almarai": "homebrew/cask",
"font-almendra-display": "homebrew/cask",
"font-almendra-sc": "homebrew/cask",
"font-almendra": "homebrew/cask",
"font-alumni-sans-collegiate-one": "homebrew/cask",
"font-alumni-sans-inline-one": "homebrew/cask",
"font-alumni-sans-pinstripe": "homebrew/cask",
"font-alumni-sans": "homebrew/cask",
"font-amarante": "homebrew/cask",
"font-amaranth": "homebrew/cask",
"font-amatic-sc": "homebrew/cask",
"font-amethysta": "homebrew/cask",
"font-amiko": "homebrew/cask",
"font-amiri-quran": "homebrew/cask",
"font-amiri": "homebrew/cask",
"font-amita": "homebrew/cask",
"font-amstelvar-alpha": "homebrew/cask",
"font-anaheim": "homebrew/cask",
"font-andada-pro": "homebrew/cask",
"font-andagii": "homebrew/cask",
"font-andale-mono": "homebrew/cask",
"font-andika": "homebrew/cask",
"font-andron-scriptor-web": "homebrew/cask",
"font-anek-bangla": "homebrew/cask",
"font-anek-devanagari": "homebrew/cask",
"font-anek-gujarati": "homebrew/cask",
"font-anek-gurmukhi": "homebrew/cask",
"font-anek-kannada": "homebrew/cask",
"font-anek-latin": "homebrew/cask",
"font-anek-malayalam": "homebrew/cask",
"font-anek-odia": "homebrew/cask",
"font-anek-tamil": "homebrew/cask",
"font-anek-telugu": "homebrew/cask",
"font-angkor": "homebrew/cask",
"font-anka-coder": "homebrew/cask",
"font-annapurna-sil": "homebrew/cask",
"font-annie-use-your-telescope": "homebrew/cask",
"font-anonymice-nerd-font": "homebrew/cask",
"font-anonymice-powerline": "homebrew/cask",
"font-anonymous-pro": "homebrew/cask",
"font-anta": "homebrew/cask",
"font-antic-didone": "homebrew/cask",
"font-antic-slab": "homebrew/cask",
"font-antic": "homebrew/cask",
"font-antinoou": "homebrew/cask",
"font-anton": "homebrew/cask",
"font-antonio": "homebrew/cask",
"font-anuphan": "homebrew/cask",
"font-anybody": "homebrew/cask",
"font-aoboshi-one": "homebrew/cask",
"font-ar-one-sans": "homebrew/cask",
"font-arapey": "homebrew/cask",
"font-arbutus-slab": "homebrew/cask",
"font-arbutus": "homebrew/cask",
"font-architects-daughter": "homebrew/cask",
"font-architype-renner": "homebrew/cask",
"font-archivo-black": "homebrew/cask",
"font-archivo-narrow": "homebrew/cask",
"font-archivo": "homebrew/cask",
"font-are-you-serious": "homebrew/cask",
"font-aref-ruqaa-ink": "homebrew/cask",
"font-aref-ruqaa": "homebrew/cask",
"font-arial-black": "homebrew/cask",
"font-arial": "homebrew/cask",
"font-arima": "homebrew/cask",
"font-arimo-nerd-font": "homebrew/cask",
"font-arimo": "homebrew/cask",
"font-arizonia": "homebrew/cask",
"font-ark-pixel-10px-monospaced": "homebrew/cask",
"font-ark-pixel-10px-proportional": "homebrew/cask",
"font-ark-pixel-12px-monospaced": "homebrew/cask",
"font-ark-pixel-12px-proportional": "homebrew/cask",
"font-ark-pixel-16px-monospaced": "homebrew/cask",
"font-ark-pixel-16px-proportional": "homebrew/cask",
"font-armata": "homebrew/cask",
"font-arsenal": "homebrew/cask",
"font-artifika": "homebrew/cask",
"font-arvo": "homebrew/cask",
"font-arya": "homebrew/cask",
"font-asap-condensed": "homebrew/cask",
"font-asap": "homebrew/cask",
"font-asar": "homebrew/cask",
"font-asset": "homebrew/cask",
"font-assistant": "homebrew/cask",
"font-astloch": "homebrew/cask",
"font-asul": "homebrew/cask",
"font-athiti": "homebrew/cask",
"font-atkinson-hyperlegible": "homebrew/cask",
"font-atma": "homebrew/cask",
"font-atomic-age": "homebrew/cask",
"font-aubrey": "homebrew/cask",
"font-audiowide": "homebrew/cask",
"font-aurulent-sans-mono-nerd-font": "homebrew/cask",
"font-autour-one": "homebrew/cask",
"font-average-mono": "homebrew/cask",
"font-average-sans": "homebrew/cask",
"font-average": "homebrew/cask",
"font-averia-gruesa-libre": "homebrew/cask",
"font-averia-libre": "homebrew/cask",
"font-averia-sans-libre": "homebrew/cask",
"font-averia-serif-libre": "homebrew/cask",
"font-awesome-terminal-fonts": "homebrew/cask",
"font-azeret-mono": "homebrew/cask",
"font-azonix": "homebrew/cask",
"font-b612-mono": "homebrew/cask",
"font-b612": "homebrew/cask",
"font-babylonica": "homebrew/cask",
"font-bacasime-antique": "homebrew/cask",
"font-bad-script": "homebrew/cask",
"font-bagel-fat-one": "homebrew/cask",
"font-bahiana": "homebrew/cask",
"font-bahianita": "homebrew/cask",
"font-bai-jamjuree": "homebrew/cask",
"font-bakbak-one": "homebrew/cask",
"font-ballet": "homebrew/cask",
"font-baloo-2": "homebrew/cask",
"font-baloo-bhai-2": "homebrew/cask",
"font-baloo-bhaijaan-2": "homebrew/cask",
"font-baloo-bhaina-2": "homebrew/cask",
"font-baloo-chettan-2": "homebrew/cask",
"font-baloo-da-2": "homebrew/cask",
"font-baloo-paaji-2": "homebrew/cask",
"font-baloo-tamma-2": "homebrew/cask",
"font-baloo-tammudu-2": "homebrew/cask",
"font-baloo-thambi-2": "homebrew/cask",
"font-baloo": "homebrew/cask",
"font-balsamiq-sans": "homebrew/cask",
"font-balthazar": "homebrew/cask",
"font-bangers": "homebrew/cask",
"font-barlow-condensed": "homebrew/cask",
"font-barlow-semi-condensed": "homebrew/cask",
"font-barlow": "homebrew/cask",
"font-barriecito": "homebrew/cask",
"font-barrio": "homebrew/cask",
"font-basic": "homebrew/cask",
"font-baskervville": "homebrew/cask",
"font-battambang": "homebrew/cask",
"font-baumans": "homebrew/cask",
"font-bayon": "homebrew/cask",
"font-be-vietnam-pro": "homebrew/cask",
"font-beau-rivage": "homebrew/cask",
"font-bebas-neue": "homebrew/cask",
"font-belanosima": "homebrew/cask",
"font-belgrano": "homebrew/cask",
"font-bellefair": "homebrew/cask",
"font-belleza": "homebrew/cask",
"font-bellota-text": "homebrew/cask",
"font-bellota": "homebrew/cask",
"font-benchnine": "homebrew/cask",
"font-benne": "homebrew/cask",
"font-bentham": "homebrew/cask",
"font-berkshire-swash": "homebrew/cask",
"font-besley": "homebrew/cask",
"font-beth-ellen": "homebrew/cask",
"font-bevan": "homebrew/cask",
"font-bhavuka": "homebrew/cask",
"font-bhutuka-expanded-one": "homebrew/cask",
"font-big-shoulders-display": "homebrew/cask",
"font-big-shoulders-inline-display": "homebrew/cask",
"font-big-shoulders-inline-text": "homebrew/cask",
"font-big-shoulders-stencil-display": "homebrew/cask",
"font-big-shoulders-stencil-text": "homebrew/cask",
"font-big-shoulders-text": "homebrew/cask",
"font-bigblue-terminal-nerd-font": "homebrew/cask",
"font-bigelow-rules": "homebrew/cask",
"font-bigshot-one": "homebrew/cask",
"font-bilbo-swash-caps": "homebrew/cask",
"font-bilbo": "homebrew/cask",
"font-biorhyme-expanded": "homebrew/cask",
"font-biorhyme": "homebrew/cask",
"font-birthstone-bounce": "homebrew/cask",
"font-birthstone": "homebrew/cask",
"font-biryani": "homebrew/cask",
"font-bitstream-vera-sans-mono-nerd-font": "homebrew/cask",
"font-bitstream-vera": "homebrew/cask",
"font-bitter-ht": "homebrew/cask",
"font-bitter": "homebrew/cask",
"font-biz-udgothic": "homebrew/cask",
"font-biz-udmincho": "homebrew/cask",
"font-biz-udpgothic": "homebrew/cask",
"font-biz-udpmincho": "homebrew/cask",
"font-black-and-white-picture": "homebrew/cask",
"font-black-han-sans": "homebrew/cask",
"font-black-ops-one": "homebrew/cask",
"font-blackout": "homebrew/cask",
"font-blaka-hollow": "homebrew/cask",
"font-blaka-ink": "homebrew/cask",
"font-blaka": "homebrew/cask",
"font-blex-mono-nerd-font": "homebrew/cask",
"font-blinker": "homebrew/cask",
"font-blokk-neue": "homebrew/cask",
"font-bm": "homebrew/cask",
"font-bodoni-moda": "homebrew/cask",
"font-bokor": "homebrew/cask",
"font-bona-nova": "homebrew/cask",
"font-bonbon": "homebrew/cask",
"font-bonheur-royale": "homebrew/cask",
"font-boogaloo": "homebrew/cask",
"font-borel": "homebrew/cask",
"font-bowlby-one-sc": "homebrew/cask",
"font-bowlby-one": "homebrew/cask",
"font-braah-one": "homebrew/cask",
"font-brawler": "homebrew/cask",
"font-bree-serif": "homebrew/cask",
"font-bricolage-grotesque": "homebrew/cask",
"font-briem-hand": "homebrew/cask",
"font-brill": "homebrew/cask",
"font-bruno-ace-sc": "homebrew/cask",
"font-bruno-ace": "homebrew/cask",
"font-brygada-1918": "homebrew/cask",
"font-bubblegum-sans": "homebrew/cask",
"font-bubbler-one": "homebrew/cask",
"font-buda": "homebrew/cask",
"font-buenard": "homebrew/cask",
"font-bukyvede-bold": "homebrew/cask",
"font-bukyvede-italic": "homebrew/cask",
"font-bukyvede-regular": "homebrew/cask",
"font-bungee-color": "homebrew/cask",
"font-bungee-hairline": "homebrew/cask",
"font-bungee-inline": "homebrew/cask",
"font-bungee-outline": "homebrew/cask",
"font-bungee-shade": "homebrew/cask",
"font-bungee-spice": "homebrew/cask",
"font-bungee": "homebrew/cask",
"font-butcherman": "homebrew/cask",
"font-butterfly-kids": "homebrew/cask",
"font-cabin-condensed": "homebrew/cask",
"font-cabin-sketch": "homebrew/cask",
"font-cabin": "homebrew/cask",
"font-caesar-dressing": "homebrew/cask",
"font-cagliostro": "homebrew/cask",
"font-cairo-play": "homebrew/cask",
"font-cairo": "homebrew/cask",
"font-cal-sans": "homebrew/cask",
"font-caladea": "homebrew/cask",
"font-calistoga": "homebrew/cask",
"font-calligraffitti": "homebrew/cask",
"font-cambay": "homebrew/cask",
"font-cambo": "homebrew/cask",
"font-camingocode": "homebrew/cask",
"font-candal": "homebrew/cask",
"font-cantarell": "homebrew/cask",
"font-cantata-one": "homebrew/cask",
"font-cantora-one": "homebrew/cask",
"font-caprasimo": "homebrew/cask",
"font-capriola": "homebrew/cask",
"font-caramel": "homebrew/cask",
"font-carattere": "homebrew/cask",
"font-cardo": "homebrew/cask",
"font-carlito": "homebrew/cask",
"font-carme": "homebrew/cask",
"font-carrois-gothic-sc": "homebrew/cask",
"font-carrois-gothic": "homebrew/cask",
"font-carter-one": "homebrew/cask",
"font-cascadia-code-nf": "homebrew/cask",
"font-cascadia-code-pl": "homebrew/cask",
"font-cascadia-code": "homebrew/cask",
"font-cascadia-mono-nf": "homebrew/cask",
"font-cascadia-mono-pl": "homebrew/cask",
"font-cascadia-mono": "homebrew/cask",
"font-caskaydia-cove-nerd-font": "homebrew/cask",
"font-caskaydia-mono-nerd-font": "homebrew/cask",
"font-castoro-titling": "homebrew/cask",
"font-castoro": "homebrew/cask",
"font-catamaran": "homebrew/cask",
"font-caudex": "homebrew/cask",
"font-caveat-brush": "homebrew/cask",
"font-caveat": "homebrew/cask",
"font-cedarville-cursive": "homebrew/cask",
"font-ceviche-one": "homebrew/cask",
"font-chakra-petch": "homebrew/cask",
"font-changa-one": "homebrew/cask",
"font-changa": "homebrew/cask",
"font-chango": "homebrew/cask",
"font-chapbook": "homebrew/cask",
"font-charis-sil": "homebrew/cask",
"font-charm": "homebrew/cask",
"font-charmonman": "homebrew/cask",
"font-charter": "homebrew/cask",
"font-chathura": "homebrew/cask",
"font-chau-philomene-one": "homebrew/cask",
"font-chela-one": "homebrew/cask",
"font-chelsea-market": "homebrew/cask",
"font-chenla": "homebrew/cask",
"font-chenyuluoyan": "homebrew/cask",
"font-cherish": "homebrew/cask",
"font-cherry-bomb-one": "homebrew/cask",
"font-cherry-cream-soda": "homebrew/cask",
"font-cherry-swash": "homebrew/cask",
"font-chewy": "homebrew/cask",
"font-chiayi-city": "homebrew/cask",
"font-chicle": "homebrew/cask",
"font-chilanka": "homebrew/cask",
"font-chiron-hei-hk": "homebrew/cask",
"font-chiron-sung-hk": "homebrew/cask",
"font-chivo-mono": "homebrew/cask",
"font-chivo": "homebrew/cask",
"font-chokokutai": "homebrew/cask",
"font-chomsky": "homebrew/cask",
"font-chonburi": "homebrew/cask",
"font-church-slavonic": "homebrew/cask",
"font-cica": "homebrew/cask",
"font-cinzel-decorative": "homebrew/cask",
"font-cinzel": "homebrew/cask",
"font-clear-sans": "homebrew/cask",
"font-clicker-script": "homebrew/cask",
"font-climate-crisis": "homebrew/cask",
"font-cochineal": "homebrew/cask",
"font-coda": "homebrew/cask",
"font-code-new-roman-nerd-font": "homebrew/cask",
"font-code2002": "homebrew/cask",
"font-codicon": "homebrew/cask",
"font-codystar": "homebrew/cask",
"font-coelacanth": "homebrew/cask",
"font-coiny": "homebrew/cask",
"font-combo": "homebrew/cask",
"font-comfortaa": "homebrew/cask",
"font-comforter-brush": "homebrew/cask",
"font-comforter": "homebrew/cask",
"font-comic-mono": "homebrew/cask",
"font-comic-neue": "homebrew/cask",
"font-comic-sans-ms": "homebrew/cask",
"font-comic-shanns-mono-nerd-font": "homebrew/cask",
"font-coming-soon": "homebrew/cask",
"font-comme": "homebrew/cask",
"font-commissioner": "homebrew/cask",
"font-commit-mono-nerd-font": "homebrew/cask",
"font-commit-mono": "homebrew/cask",
"font-computer-modern": "homebrew/cask",
"font-conakry": "homebrew/cask",
"font-concert-one": "homebrew/cask",
"font-condiment": "homebrew/cask",
"font-consolas-for-powerline": "homebrew/cask",
"font-constructium": "homebrew/cask",
"font-content": "homebrew/cask",
"font-contrail-one": "homebrew/cask",
"font-convergence": "homebrew/cask",
"font-cookie": "homebrew/cask",
"font-cooper-hewitt": "homebrew/cask",
"font-copse": "homebrew/cask",
"font-corben": "homebrew/cask",
"font-corinthia": "homebrew/cask",
"font-cormorant-garamond": "homebrew/cask",
"font-cormorant-infant": "homebrew/cask",
"font-cormorant-sc": "homebrew/cask",
"font-cormorant-unicase": "homebrew/cask",
"font-cormorant-upright": "homebrew/cask",
"font-cormorant": "homebrew/cask",
"font-courgette": "homebrew/cask",
"font-courier-new": "homebrew/cask",
"font-courier-prime-code": "homebrew/cask",
"font-courier-prime-medium-and-semi-bold": "homebrew/cask",
"font-courier-prime-sans": "homebrew/cask",
"font-courier-prime": "homebrew/cask",
"font-cousine-nerd-font": "homebrew/cask",
"font-cousine": "homebrew/cask",
"font-coustard": "homebrew/cask",
"font-covered-by-your-grace": "homebrew/cask",
"font-cozette": "homebrew/cask",
"font-crafty-girls": "homebrew/cask",
"font-creepster-caps": "homebrew/cask",
"font-creepster": "homebrew/cask",
"font-crete-round": "homebrew/cask",
"font-crimson-pro": "homebrew/cask",
"font-crimson-text": "homebrew/cask",
"font-croissant-one": "homebrew/cask",
"font-crushed": "homebrew/cask",
"font-cubic-11": "homebrew/cask",
"font-cuprum": "homebrew/cask",
"font-cute-font": "homebrew/cask",
"font-cutive-mono": "homebrew/cask",
"font-cutive": "homebrew/cask",
"font-d2coding-nerd-font": "homebrew/cask",
"font-d2coding": "homebrew/cask",
"font-daddy-time-mono-nerd-font": "homebrew/cask",
"font-dai-banna-sil": "homebrew/cask",
"font-damion": "homebrew/cask",
"font-dancing-script": "homebrew/cask",
"font-danfo": "homebrew/cask",
"font-dangrek": "homebrew/cask",
"font-darker-grotesque": "homebrew/cask",
"font-darumadrop-one": "homebrew/cask",
"font-dashicons": "homebrew/cask",
"font-david-clm": "homebrew/cask",
"font-david-libre": "homebrew/cask",
"font-dawning-of-a-new-day": "homebrew/cask",
"font-days-one": "homebrew/cask",
"font-decovar-alpha": "homebrew/cask",
"font-dejavu-sans-mono-for-powerline": "homebrew/cask",
"font-dejavu-sans-mono-nerd-font": "homebrew/cask",
"font-dejavu": "homebrew/cask",
"font-dekko": "homebrew/cask",
"font-dela-gothic-one": "homebrew/cask",
"font-delicious-handrawn": "homebrew/cask",
"font-delius-swash-caps": "homebrew/cask",
"font-delius-unicase": "homebrew/cask",
"font-delius": "homebrew/cask",
"font-della-respira": "homebrew/cask",
"font-delugia-book": "homebrew/cask",
"font-delugia-complete": "homebrew/cask",
"font-delugia-mono-complete": "homebrew/cask",
"font-delugia-mono-powerline": "homebrew/cask",
"font-delugia-powerline": "homebrew/cask",
"font-denk-one": "homebrew/cask",
"font-devicons": "homebrew/cask",
"font-devonshire": "homebrew/cask",
"font-dhurjati": "homebrew/cask",
"font-dhyana": "homebrew/cask",
"font-didact-gothic": "homebrew/cask",
"font-digital-numbers": "homebrew/cask",
"font-digohweli-old-do": "homebrew/cask",
"font-diphylleia": "homebrew/cask",
"font-diplomata-sc": "homebrew/cask",
"font-diplomata": "homebrew/cask",
"font-dm-mono": "homebrew/cask",
"font-dm-sans": "homebrew/cask",
"font-dm-serif-display": "homebrew/cask",
"font-dm-serif-text": "homebrew/cask",
"font-do-hyeon": "homebrew/cask",
"font-dokdo": "homebrew/cask",
"font-domine": "homebrew/cask",
"font-donegal-one": "homebrew/cask",
"font-dongle": "homebrew/cask",
"font-doppio-one": "homebrew/cask",
"font-dorsa": "homebrew/cask",
"font-dosis": "homebrew/cask",
"font-dotgothic16": "homebrew/cask",
"font-doulos-sil": "homebrew/cask",
"font-dr-sugiyama": "homebrew/cask",
"font-dream-han-sans": "homebrew/cask",
"font-droid-sans-mono-for-powerline": "homebrew/cask",
"font-droid-sans-mono-nerd-font": "homebrew/cask",
"font-duru-sans": "homebrew/cask",
"font-dynalight": "homebrew/cask",
"font-dynapuff": "homebrew/cask",
"font-eagle-lake": "homebrew/cask",
"font-east-sea-dokdo": "homebrew/cask",
"font-eater": "homebrew/cask",
"font-eb-garamond": "homebrew/cask",
"font-ebh": "homebrew/cask",
"font-economica": "homebrew/cask",
"font-eczar": "homebrew/cask",
"font-edlo": "homebrew/cask",
"font-edu-nsw-act-foundation": "homebrew/cask",
"font-edu-qld-beginner": "homebrew/cask",
"font-edu-sa-beginner": "homebrew/cask",
"font-edu-tas-beginner": "homebrew/cask",
"font-edu-vic-wa-nt-beginner": "homebrew/cask",
"font-edwin": "homebrew/cask",
"font-el-messiri": "homebrew/cask",
"font-electrolize": "homebrew/cask",
"font-elice-digital-baeum": "homebrew/cask",
"font-elsie-swash-caps": "homebrew/cask",
"font-elsie": "homebrew/cask",
"font-elstobd": "homebrew/cask",
"font-emblema-one": "homebrew/cask",
"font-emilys-candy": "homebrew/cask",
"font-encode-sans-condensed": "homebrew/cask",
"font-encode-sans-expanded": "homebrew/cask",
"font-encode-sans-sc": "homebrew/cask",
"font-encode-sans-semi-condensed": "homebrew/cask",
"font-encode-sans-semi-expanded": "homebrew/cask",
"font-encode-sans": "homebrew/cask",
"font-engagement": "homebrew/cask",
"font-englebert": "homebrew/cask",
"font-enriqueta": "homebrew/cask",
"font-envy-code-r-nerd-font": "homebrew/cask",
"font-envy-code-r": "homebrew/cask",
"font-ephesis": "homebrew/cask",
"font-epilogue": "homebrew/cask",
"font-erica-one": "homebrew/cask",
"font-escumasia": "homebrew/cask",
"font-esteban": "homebrew/cask",
"font-estonia": "homebrew/cask",
"font-et-book": "homebrew/cask",
"font-euphoria-script": "homebrew/cask",
"font-everson-mono": "homebrew/cask",
"font-ewert": "homebrew/cask",
"font-exo-2": "homebrew/cask",
"font-exo": "homebrew/cask",
"font-expletus-sans": "homebrew/cask",
"font-explora": "homebrew/cask",
"font-ezra-sil": "homebrew/cask",
"font-fahkwang": "homebrew/cask",
"font-fairfax": "homebrew/cask",
"font-familjen-grotesk": "homebrew/cask",
"font-fandol": "homebrew/cask",
"font-fantasque-sans-mono-nerd-font": "homebrew/cask",
"font-fantasque-sans-mono-noloopk": "homebrew/cask",
"font-fantasque-sans-mono": "homebrew/cask",
"font-fanwood-text": "homebrew/cask",
"font-farro": "homebrew/cask",
"font-farsan": "homebrew/cask",
"font-fascinate-inline": "homebrew/cask",
"font-fascinate": "homebrew/cask",
"font-faster-one": "homebrew/cask",
"font-fasthand": "homebrew/cask",
"font-fauna-one": "homebrew/cask",
"font-faune": "homebrew/cask",
"font-faustina": "homebrew/cask",
"font-federant": "homebrew/cask",
"font-federo": "homebrew/cask",
"font-felipa": "homebrew/cask",
"font-fenix": "homebrew/cask",
"font-festive": "homebrew/cask",
"font-figtree": "homebrew/cask",
"font-finger-paint": "homebrew/cask",
"font-finlandica": "homebrew/cask",
"font-fira-code-nerd-font": "homebrew/cask",
"font-fira-code": "homebrew/cask",
"font-fira-mono-for-powerline": "homebrew/cask",
"font-fira-mono-nerd-font": "homebrew/cask",
"font-fira-mono": "homebrew/cask",
"font-fira-sans-condensed": "homebrew/cask",
"font-fira-sans-extra-condensed": "homebrew/cask",
"font-fira-sans": "homebrew/cask",
"font-firago": "homebrew/cask",
"font-firge": "homebrew/cask",
"font-firgenerd": "homebrew/cask",
"font-fjalla-one": "homebrew/cask",
"font-fjord-one": "homebrew/cask",
"font-flamenco": "homebrew/cask",
"font-flavors": "homebrew/cask",
"font-fleur-de-leah": "homebrew/cask",
"font-flow-block": "homebrew/cask",
"font-flow-circular": "homebrew/cask",
"font-flow-rounded": "homebrew/cask",
"font-foldit": "homebrew/cask",
"font-fondamento": "homebrew/cask",
"font-fontawesome": "homebrew/cask",
"font-fontdiner-swanky": "homebrew/cask",
"font-forum": "homebrew/cask",
"font-foundation-icons": "homebrew/cask",
"font-foundry-sterling": "homebrew/cask",
"font-fragment-mono": "homebrew/cask",
"font-francois-one": "homebrew/cask",
"font-frank-ruhl-libre": "homebrew/cask",
"font-fraunces": "homebrew/cask",
"font-freckle-face": "homebrew/cask",
"font-fredericka-the-great": "homebrew/cask",
"font-fredoka": "homebrew/cask",
"font-free-mono-tengwar": "homebrew/cask",
"font-freefont": "homebrew/cask",
"font-freehand": "homebrew/cask",
"font-freeman": "homebrew/cask",
"font-fresca": "homebrew/cask",
"font-frijole": "homebrew/cask",
"font-fruktur": "homebrew/cask",
"font-fugaz-one": "homebrew/cask",
"font-fuggles": "homebrew/cask",
"font-fuzzy-bubbles": "homebrew/cask",
"font-fzfangsong-z02": "homebrew/cask",
"font-fzkai-z03": "homebrew/cask",
"font-fzshusong-z01": "homebrew/cask",
"font-fzxiaobiaosong-b05": "homebrew/cask",
"font-gabarito": "homebrew/cask",
"font-gabriela": "homebrew/cask",
"font-gaegu": "homebrew/cask",
"font-gafata": "homebrew/cask",
"font-gajraj-one": "homebrew/cask",
"font-galada": "homebrew/cask",
"font-galdeano": "homebrew/cask",
"font-galindo": "homebrew/cask",
"font-gamja-flower": "homebrew/cask",
"font-gandhi-sans": "homebrew/cask",
"font-gantari": "homebrew/cask",
"font-gasoek-one": "homebrew/cask",
"font-gayathri": "homebrew/cask",
"font-geist-mono-nerd-font": "homebrew/cask",
"font-geist-mono": "homebrew/cask",
"font-geist": "homebrew/cask",
"font-gelasio": "homebrew/cask",
"font-gemunu-libre": "homebrew/cask",
"font-genjyuugothic-l": "homebrew/cask",
"font-genjyuugothic-x": "homebrew/cask",
"font-genjyuugothic": "homebrew/cask",
"font-genos": "homebrew/cask",
"font-genryumin": "homebrew/cask",
"font-gensekigothic": "homebrew/cask",
"font-gensenrounded": "homebrew/cask",
"font-genshingothic": "homebrew/cask",
"font-gentium-basic": "homebrew/cask",
"font-gentium-book-basic": "homebrew/cask",
"font-gentium-book-plus": "homebrew/cask",
"font-gentium-plus": "homebrew/cask",
"font-genwanmin": "homebrew/cask",
"font-genyogothic": "homebrew/cask",
"font-genyomin": "homebrew/cask",
"font-geo": "homebrew/cask",
"font-geologica": "homebrew/cask",
"font-georama": "homebrew/cask",
"font-georgia": "homebrew/cask",
"font-geostar-fill": "homebrew/cask",
"font-geostar": "homebrew/cask",
"font-germania-one": "homebrew/cask",
"font-gfs-didot": "homebrew/cask",
"font-gfs-neohellenic": "homebrew/cask",
"font-gideon-roman": "homebrew/cask",
"font-gidole": "homebrew/cask",
"font-gidugu": "homebrew/cask",
"font-gilbert": "homebrew/cask",
"font-gilda-display": "homebrew/cask",
"font-girassol": "homebrew/cask",
"font-give-you-glory": "homebrew/cask",
"font-glass-antiqua": "homebrew/cask",
"font-glegoo": "homebrew/cask",
"font-gloock": "homebrew/cask",
"font-gloria-hallelujah": "homebrew/cask",
"font-glory": "homebrew/cask",
"font-glow-sans-j-compressed": "homebrew/cask",
"font-glow-sans-j-condensed": "homebrew/cask",
"font-glow-sans-j-extended": "homebrew/cask",
"font-glow-sans-j-normal": "homebrew/cask",
"font-glow-sans-j-wide": "homebrew/cask",
"font-glow-sans-sc-compressed": "homebrew/cask",
"font-glow-sans-sc-condensed": "homebrew/cask",
"font-glow-sans-sc-extended": "homebrew/cask",
"font-glow-sans-sc-normal": "homebrew/cask",
"font-glow-sans-sc-wide": "homebrew/cask",
"font-glow-sans-tc-compressed": "homebrew/cask",
"font-glow-sans-tc-condensed": "homebrew/cask",
"font-glow-sans-tc-extended": "homebrew/cask",
"font-glow-sans-tc-normal": "homebrew/cask",
"font-glow-sans-tc-wide": "homebrew/cask",
"font-gluten": "homebrew/cask",
"font-gnu-unifont": "homebrew/cask",
"font-go-mono-nerd-font": "homebrew/cask",
"font-go": "homebrew/cask",
"font-goblin-one": "homebrew/cask",
"font-gochi-hand": "homebrew/cask",
"font-gohufont-nerd-font": "homebrew/cask",
"font-goldman": "homebrew/cask",
"font-golos-text": "homebrew/cask",
"font-gorditas": "homebrew/cask",
"font-gothic-a1": "homebrew/cask",
"font-gotu": "homebrew/cask",
"font-goudy-bookletter-1911": "homebrew/cask",
"font-gowun-batang": "homebrew/cask",
"font-gowun-dodum": "homebrew/cask",
"font-graduate": "homebrew/cask",
"font-grand-hotel": "homebrew/cask",
"font-grandiflora-one": "homebrew/cask",
"font-grandstander": "homebrew/cask",
"font-grape-nuts": "homebrew/cask",
"font-gravitas-one": "homebrew/cask",
"font-great-vibes": "homebrew/cask",
"font-grechen-fuemen": "homebrew/cask",
"font-grenze-gotisch": "homebrew/cask",
"font-grenze": "homebrew/cask",
"font-grey-qo": "homebrew/cask",
"font-griffy": "homebrew/cask",
"font-gruppo": "homebrew/cask",
"font-gudea": "homebrew/cask",
"font-gugi": "homebrew/cask",
"font-gulzar": "homebrew/cask",
"font-gupter": "homebrew/cask",
"font-gurajada": "homebrew/cask",
"font-gwendolyn": "homebrew/cask",
"font-habibi": "homebrew/cask",
"font-hachi-maru-pop": "homebrew/cask",
"font-hack-nerd-font": "homebrew/cask",
"font-hack": "homebrew/cask",
"font-hackgen-nerd": "homebrew/cask",
"font-hackgen": "homebrew/cask",
"font-hahmlet": "homebrew/cask",
"font-halant": "homebrew/cask",
"font-hammersmith-one": "homebrew/cask",
"font-han-nom-a": "homebrew/cask",
"font-hanalei-fill": "homebrew/cask",
"font-hanalei": "homebrew/cask",
"font-hanamina": "homebrew/cask",
"font-handjet": "homebrew/cask",
"font-handlee": "homebrew/cask",
"font-hanken-grotesk": "homebrew/cask",
"font-hannari": "homebrew/cask",
"font-hanuman": "homebrew/cask",
"font-happy-monkey": "homebrew/cask",
"font-harano-aji": "homebrew/cask",
"font-harmattan": "homebrew/cask",
"font-hasklig": "homebrew/cask",
"font-hasklug-nerd-font": "homebrew/cask",
"font-headland-one": "homebrew/cask",
"font-heavy-data-nerd-font": "homebrew/cask",
"font-hedvig-letters-sans": "homebrew/cask",
"font-hedvig-letters-serif": "homebrew/cask",
"font-heebo": "homebrew/cask",
"font-henny-penny": "homebrew/cask",
"font-hepta-slab": "homebrew/cask",
"font-hermeneus-one": "homebrew/cask",
"font-hermit": "homebrew/cask",
"font-herr-von-muellerhoff": "homebrew/cask",
"font-hi-melody": "homebrew/cask",
"font-hina-mincho": "homebrew/cask",
"font-hind-colombo": "homebrew/cask",
"font-hind-guntur": "homebrew/cask",
"font-hind-jalandhar": "homebrew/cask",
"font-hind-kochi": "homebrew/cask",
"font-hind-madurai": "homebrew/cask",
"font-hind-mysuru": "homebrew/cask",
"font-hind-siliguri": "homebrew/cask",
"font-hind-vadodara": "homebrew/cask",
"font-hind": "homebrew/cask",
"font-holtwood-one-sc": "homebrew/cask",
"font-homemade-apple": "homebrew/cask",
"font-homenaje": "homebrew/cask",
"font-honk": "homebrew/cask",
"font-hubballi": "homebrew/cask",
"font-hubot-sans": "homebrew/cask",
"font-humor-sans": "homebrew/cask",
"font-hurmit-nerd-font": "homebrew/cask",
"font-hurricane": "homebrew/cask",
"font-hyppolit": "homebrew/cask",
"font-ia-writer-duo": "homebrew/cask",
"font-ia-writer-mono": "homebrew/cask",
"font-ia-writer-quattro": "homebrew/cask",
"font-iansui": "homebrew/cask",
"font-ibarra-real-nova": "homebrew/cask",
"font-ibm-plex-mono": "homebrew/cask",
"font-ibm-plex-sans-arabic": "homebrew/cask",
"font-ibm-plex-sans-condensed": "homebrew/cask",
"font-ibm-plex-sans-devanagari": "homebrew/cask",
"font-ibm-plex-sans-hebrew": "homebrew/cask",
"font-ibm-plex-sans-jp": "homebrew/cask",
"font-ibm-plex-sans-kr": "homebrew/cask",
"font-ibm-plex-sans-thai-looped": "homebrew/cask",
"font-ibm-plex-sans-thai": "homebrew/cask",
"font-ibm-plex-sans": "homebrew/cask",
"font-ibm-plex-serif": "homebrew/cask",
"font-ibm-plex": "homebrew/cask",
"font-iceberg": "homebrew/cask",
"font-iceland": "homebrew/cask",
"font-icomoon": "homebrew/cask",
"font-im-fell-double-pica-sc": "homebrew/cask",
"font-im-fell-double-pica": "homebrew/cask",
"font-im-fell-dw-pica-sc": "homebrew/cask",
"font-im-fell-dw-pica": "homebrew/cask",
"font-im-fell-english-sc": "homebrew/cask",
"font-im-fell-english": "homebrew/cask",
"font-im-fell-french-canon-sc": "homebrew/cask",
"font-im-fell-french-canon": "homebrew/cask",
"font-im-fell-great-primer-sc": "homebrew/cask",
"font-im-fell-great-primer": "homebrew/cask",
"font-im-fell-types": "homebrew/cask",
"font-im-writing-nerd-font": "homebrew/cask",
"font-imbue": "homebrew/cask",
"font-iming": "homebrew/cask",
"font-impact": "homebrew/cask",
"font-imperial-script": "homebrew/cask",
"font-imprima": "homebrew/cask",
"font-inclusive-sans": "homebrew/cask",
"font-inconsolata-dz-for-powerline": "homebrew/cask",
"font-inconsolata-for-powerline-bold": "homebrew/cask",
"font-inconsolata-for-powerline": "homebrew/cask",
"font-inconsolata-g-for-powerline": "homebrew/cask",
"font-inconsolata-g": "homebrew/cask",
"font-inconsolata-go-nerd-font": "homebrew/cask",
"font-inconsolata-lgc-nerd-font": "homebrew/cask",
"font-inconsolata-lgc": "homebrew/cask",
"font-inconsolata-nerd-font": "homebrew/cask",
"font-inconsolata": "homebrew/cask",
"font-inder": "homebrew/cask",
"font-indie-flower": "homebrew/cask",
"font-infini": "homebrew/cask",
"font-ingrid-darling": "homebrew/cask",
"font-inika": "homebrew/cask",
"font-inknut-antiqua": "homebrew/cask",
"font-input": "homebrew/cask",
"font-inria-sans": "homebrew/cask",
"font-inria-serif": "homebrew/cask",
"font-inria": "homebrew/cask",
"font-inspiration": "homebrew/cask",
"font-instrument-sans": "homebrew/cask",
"font-instrument-serif": "homebrew/cask",
"font-intel-one-mono": "homebrew/cask",
"font-inter-tight": "homebrew/cask",
"font-inter": "homebrew/cask",
"font-intone-mono-nerd-font": "homebrew/cask",
"font-iosevka-aile": "homebrew/cask",
"font-iosevka-comfy": "homebrew/cask",
"font-iosevka-curly-slab": "homebrew/cask",
"font-iosevka-curly": "homebrew/cask",
"font-iosevka-etoile": "homebrew/cask",
"font-iosevka-nerd-font": "homebrew/cask",
"font-iosevka-slab": "homebrew/cask",
"font-iosevka-ss01": "homebrew/cask",
"font-iosevka-ss02": "homebrew/cask",
"font-iosevka-ss03": "homebrew/cask",
"font-iosevka-ss04": "homebrew/cask",
"font-iosevka-ss05": "homebrew/cask",
"font-iosevka-ss06": "homebrew/cask",
"font-iosevka-ss07": "homebrew/cask",
"font-iosevka-ss08": "homebrew/cask",
"font-iosevka-ss09": "homebrew/cask",
"font-iosevka-ss10": "homebrew/cask",
"font-iosevka-ss11": "homebrew/cask",
"font-iosevka-ss12": "homebrew/cask",
"font-iosevka-ss13": "homebrew/cask",
"font-iosevka-ss14": "homebrew/cask",
"font-iosevka-ss15": "homebrew/cask",
"font-iosevka-ss16": "homebrew/cask",
"font-iosevka-ss17": "homebrew/cask",
"font-iosevka-ss18": "homebrew/cask",
"font-iosevka-term-nerd-font": "homebrew/cask",
"font-iosevka-term-slab-nerd-font": "homebrew/cask",
"font-iosevka": "homebrew/cask",
"font-ipaexfont": "homebrew/cask",
"font-ipafont": "homebrew/cask",
"font-ipamjmincho": "homebrew/cask",
"font-iranian-sans": "homebrew/cask",
"font-iranian-serif": "homebrew/cask",
"font-irish-grover": "homebrew/cask",
"font-island-moments": "homebrew/cask",
"font-istok-web": "homebrew/cask",
"font-italiana": "homebrew/cask",
"font-italianno": "homebrew/cask",
"font-itim": "homebrew/cask",
"font-jaapokki": "homebrew/cask",
"font-jacquard-12-charted": "homebrew/cask",
"font-jacquard-12": "homebrew/cask",
"font-jacquard-24-charted": "homebrew/cask",
"font-jacquard-24": "homebrew/cask",
"font-jacquarda-bastarda-9-charted": "homebrew/cask",
"font-jacquarda-bastarda-9": "homebrew/cask",
"font-jacques-francois-shadow": "homebrew/cask",
"font-jacques-francois": "homebrew/cask",
"font-jaini-purva": "homebrew/cask",
"font-jaini": "homebrew/cask",
"font-jaldi": "homebrew/cask",
"font-jaro": "homebrew/cask",
"font-jeju-gothic": "homebrew/cask",
"font-jeju-hallasan": "homebrew/cask",
"font-jeju-myeongjo": "homebrew/cask",
"font-jersey-10-charted": "homebrew/cask",
"font-jersey-10": "homebrew/cask",
"font-jersey-15-charted": "homebrew/cask",
"font-jersey-15": "homebrew/cask",
"font-jersey-20-charted": "homebrew/cask",
"font-jersey-20": "homebrew/cask",
"font-jersey-25-charted": "homebrew/cask",
"font-jersey-25": "homebrew/cask",
"font-jetbrains-mono-nerd-font": "homebrew/cask",
"font-jetbrains-mono": "homebrew/cask",
"font-jf-open-huninn": "homebrew/cask",
"font-jim-nightshade": "homebrew/cask",
"font-joan": "homebrew/cask",
"font-jockey-one": "homebrew/cask",
"font-jolly-lodger": "homebrew/cask",
"font-jomhuria": "homebrew/cask",
"font-jomolhari": "homebrew/cask",
"font-joscelyn": "homebrew/cask",
"font-josefin-sans": "homebrew/cask",
"font-josefin-slab": "homebrew/cask",
"font-jost": "homebrew/cask",
"font-joti-one": "homebrew/cask",
"font-jsmath-cmbx10": "homebrew/cask",
"font-jsmath-cmex10": "homebrew/cask",
"font-jsmath-cmmi10": "homebrew/cask",
"font-jsmath-cmr10": "homebrew/cask",
"font-jsmath-cmsy10": "homebrew/cask",
"font-jsmath-cmti10": "homebrew/cask",
"font-jua": "homebrew/cask",
"font-judson": "homebrew/cask",
"font-julee": "homebrew/cask",
"font-juliamono": "homebrew/cask",
"font-julius-sans-one": "homebrew/cask",
"font-junction": "homebrew/cask",
"font-junge": "homebrew/cask",
"font-junicode": "homebrew/cask",
"font-jura": "homebrew/cask",
"font-just-another-hand": "homebrew/cask",
"font-just-me-again-down-here": "homebrew/cask",
"font-k2d": "homebrew/cask",
"font-kablammo": "homebrew/cask",
"font-kadwa": "homebrew/cask",
"font-kaisei-decol": "homebrew/cask",
"font-kaisei-harunoumi": "homebrew/cask",
"font-kaisei-opti": "homebrew/cask",
"font-kaisei-tokumin": "homebrew/cask",
"font-kaiso": "homebrew/cask",
"font-kalam": "homebrew/cask",
"font-kalnia-glaze": "homebrew/cask",
"font-kalnia": "homebrew/cask",
"font-kameron": "homebrew/cask",
"font-kanit": "homebrew/cask",
"font-kanjistrokeorders": "homebrew/cask",
"font-kantumruy-pro": "homebrew/cask",
"font-kapakana": "homebrew/cask",
"font-karantina": "homebrew/cask",
"font-karla-tamil-inclined": "homebrew/cask",
"font-karla-tamil-upright": "homebrew/cask",
"font-karla": "homebrew/cask",
"font-karma": "homebrew/cask",
"font-katibeh": "homebrew/cask",
"font-kaushan-script": "homebrew/cask",
"font-kavivanar": "homebrew/cask",
"font-kavoon": "homebrew/cask",
"font-kawkab-mono": "homebrew/cask",
"font-kay-pho-du": "homebrew/cask",
"font-kdam-thmor-pro": "homebrew/cask",
"font-keania-one": "homebrew/cask",
"font-kelly-slab": "homebrew/cask",
"font-kenia": "homebrew/cask",
"font-khand": "homebrew/cask",
"font-khmer": "homebrew/cask",
"font-khula": "homebrew/cask",
"font-khyay": "homebrew/cask",
"font-kimberella": "homebrew/cask",
"font-kings": "homebrew/cask",
"font-kirang-haerang": "homebrew/cask",
"font-kite-one": "homebrew/cask",
"font-kiwi-maru": "homebrew/cask",
"font-klee-one": "homebrew/cask",
"font-knewave": "homebrew/cask",
"font-ko-pub-batang": "homebrew/cask",
"font-kodchasan": "homebrew/cask",
"font-kode-mono": "homebrew/cask",
"font-koh-santepheap": "homebrew/cask",
"font-koho": "homebrew/cask",
"font-kokoro": "homebrew/cask",
"font-kolker-brush": "homebrew/cask",
"font-konkhmer-sleokchher": "homebrew/cask",
"font-kosugi-maru": "homebrew/cask",
"font-kosugi": "homebrew/cask",
"font-kotta-one": "homebrew/cask",
"font-koulen": "homebrew/cask",
"font-kranky": "homebrew/cask",
"font-kreon": "homebrew/cask",
"font-kristi": "homebrew/cask",
"font-krona-one": "homebrew/cask",
"font-krub": "homebrew/cask",
"font-kufam": "homebrew/cask",
"font-kulim-park": "homebrew/cask",
"font-kumar-one": "homebrew/cask",
"font-kumbh-sans": "homebrew/cask",
"font-kurale": "homebrew/cask",
"font-la-belle-aurore": "homebrew/cask",
"font-labrada": "homebrew/cask",