W3C

WOFF 2.0 Evaluation Report

W3C First Public Working Draft 28 January 2014

This version:
http://www.w3.org/TR/2014/WD-WOFF20ER-20140128/
Latest version:
http://www.w3.org/TR/WOFF20ER/
Latest editor's draft:
http://www.w3.org/Fonts/WG/WOFF2ER/
Editor:
Chris Lilley (W3C)

Abstract

Web Open Font Format (WOFF) 2.0 is a proposed update to the existing WOFF 1.0 with improved compression. This report lists requirements for successful deployment, evaluates how the requirement may be met, and examines the compression gains and tradeoffs vs. code complexity, encode and decode time. This document is non-normative.

Status of this document

This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.

This is a First Public Working Draft of the WOFF 2.0 Evaluation Report. This document was developed by the WebFonts Working Group.

Please send comments about this document to www-font@w3.org (with public archive).

Publication as a First Public Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.

This document was produced by a group operating under the 5 February 2004 W3C Patent Policy. The group does not expect this document to become a W3C Recommendation. W3C maintains a public list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.

Table of Contents

Requirements

A successor to WOFF 1.0 must be deployable in parallel with WOFF 1.0, without relying on style sheet switching, content negotiation , user-agent version sniffing or suchlike fragile methods.

An improved compression method used in WOFF must:

It should be noted that pathological fonts can be found which compress badly. Equally, some poorly constructed fonts trivially compress well, due to needless duplication. The main goal of this work is to optimally compress fonts that are already well optimized.

Deployment

In WOFF 1.0 [WOFF 1.0], fonts are deployed using the @font-face feature of CSS3 [CSS3 Fonts]. The format part of the src descriptor identifies the font as WOFF 1.0. Multiple formats are allowed, and form a prioritized list; the font with the first supported format in the list will be loaded. This mechanism thus allows fonts in WOFF 2.0 to be deployed in parallel with those in WOFF 1.0, using the same style sheet and without any user-agent sniffing or server configuration.

/* load WOFF 2.0 font if possible, otherwise use WOFF 1.0 font */
@font-face {
  font-family: something;
  src: url(example.woff2) format("woff2"),
       url(example.woff) format("woff");
  }

This feature of CSS3 Fonts fulfills the parallel deployment requirement, independent of the compression method ultimately chosen.

Preprocessing

WOFF 2.0 adds a preprocessing step, before entropy coding.The reason for this is that many fonts contain redundant or duplicate information, or information that can be deduced from other items of data also present. Data may also be padded to a convenient multiple of 8 bits, because aligned data is faster to access. They are thus optimized for convenience of access at the expense of speed. Preprocessing detects and eliminates redundant data, more efficiently encodes derived data, and stores data in the minimal number of bits. Following decompression, a reconstruction step is needed to re-align data and to compute derived values.

This step is based on the MicroType Express-style [MTX] submission, but uses a subset of the methods in that specification, chosen for maximal gain balanced against minimal processing cost.

The preprocessing steps used for initial explorations are summarized in Appendix D.

The placement of knots in a glyph path follows a set of rules, which can in some cases allow a point to be predicted based on nearby points and the overall position on the curve (for example, at local curve minima or maxima). A novel preprocessing stage was considered which removes predictable points before entropy compression, and restores them in the reconstruction step. Experiments showed that a modest reduction in filesize could be obtained, but that the prediction capabilities of the entropy coder were already accounting for these points and thus, the size of the compressed result was not significantly reduced. These experiments are summarized in Appendix C.

Lossless compression

The compression in WOFF 1.0 is (subject to certain preconditions, such as prior removal of extraneous space between tables) bitwise lossless; the exact same bitstream is produced on decompression as was input to the compression process.

The use of a  preprocessing step means that the overall compression in WOFF 2.0 will not be bitwise lossless. The preprocessing converts some data to the most space-efficient form, and removes redundant information or information which could be regenerated on decompression. This is not a disadvantage; the resulting font functions the same as the original one and in some cases will be more consistent between rendering implementations. The secondary, entropy coding step is bitwise lossless.

Thus, WOFF 2.0 is said to be functionally lossless.

Continuation streams

In WOFF 1.0, each OFF table is separately compressed. This was originally done to allow individual tables to be decompressed as needed, although that facility is rarely used in practice. For WOFF 1.0 with Flate compression, resetting the compression stream like this also turns out to give a slightly smaller filesize compared to compressing all the tables in a single stream.This is because Flate compression uses a small buffer and cannot cache previous states.

For WOFF 2.0, the impact of per-table compression versus entire-font compression with continuation streams was examined. For the better entropy coding schemes, there was an overall benefit to entire-font streams. As an example, WOFF2 with Brotli compression and continuation streams gave an overall reduction of -29.21% compared to WOFF 1.0, while resetting the compressor on a per-table basis gave a less good filesize reduction of -28.26%.

Candidate A: MicroType Express-style plus LZMA

Specification

LZMA is defined primarily by reference code, portions of which are (in the words of the originator) “hard to explain”. A specification would need to reverse engineer this code. Work was started on this, but it was abandoned when other difficulties indicated that the LZMA approach was no longer worth pursuing.

Intellectual Property

The WebFonts Working Group was unable, despite reaching out to LZMA developers, to secure a commitment to the development of a re-implementable, Royalty-Free specification.

Compression compared to WOFF 1.0

Compression compared to WOFF 1.0 was impressive. (Part of this was due to the MicroType Express-style preprocessing step). Several complete font collections were examined, each font in the collection compressed and the compression gains tabulated. The results are presented in detail in Appendix A.

Decompression time and memory requirements

The decompression time required ( for example, a decompression rate of 36.5 MB/s on the Google Fonts corpus) was considerably worse than for WOFF 1.0 (194.3 MB/s on the same hardware with the same corpus). This was primarily due to the LZMA step; MicroType Express-style step is an optimization and removal of redundancy, so the impact of reconstruction on decompression time was minimal (in fact, omitting the preprocessing step decreased decompression throughput slightly, to 36.0 MB/s, as the entropy coder was working on a larger data stream).

The memory required for LZMA  decompression was around twice that needed for gzip decompression.

Analysis

Compression gains over WOFF 1.0 are largely consistent (within a few percent) across all of the font collections studied. This implies that they would be applicable to other collections too. In general 20-26% median compression improvements for TrueType were observed, and 12-13% for CFF. This satisfies the requirement to produce notably better median compression than WOFF 1.0.

Improvements up to 94.51% were observed in some cases (in the Monotype collection, for fonts with exceptionally large kern tables.) The smallest improvements seen were of the order of 1% (again, in the Monotype collection); most other collections had smallest improvements of 4-6%. It is notable that in no case was a font found that compressed to the same size as WOFF 1.0, and no cases were observed where a font became larger.

Decompression time precluded use of this candidate if multiple fonts were decompressed in parallel, or if decompressed on resource-constrained mobile devices. The requirement for decompression time was not satisfied.

After extensive discussion with the original LZMA developer, and examination of the sample code which is the primary documentation, the Working group concluded that the Royalty-Free and reimplementable algorithm requirements could not be met.

Accordingly, the WebFonts Working Group has discontinued efforts on this candidate.

Candidate B: MicroType Express-style plus Brotli

Specification

The specification [Brotli] is being developed by the Google Brotli team in Zürich. Being a derivative of the widely deployed Flate [Flate] algorithm, it proceeds from a well-understood basis. The improvements are well documented and open source, sample code is freely available.

Intellectual Property

The proposers have stated their intention to make the specification freely available and to pursue it's standardization through an appropriate body such as the IETF.

Compression compared to WOFF 1.0

Compression compared to WOFF 1.0 was good. It was initially less impressive than candidate A but improved significantly over the course of study as the algorithm was tuned. (Part of this was due to the MicroType Express-style preprocessing step). To date, only a single font collection has been  examined. Each font in the collection was compressed and the compression gains tabulated. The initial results are presented in detail in Appendix B.The Working Group plans to continue with analysis of other font corpi.

Decompression time and memory requirements

The decompression time required (for example, a decompression rate of 61.1 MB/s on the Google Fonts corpus) was considerably worse than for WOFF 1.0 (194.3 MB/s on the same hardware with the same corpus) but twice as good as for WOFF 2.0 with LZMA (36.5 MB/s). Omitting the preprocessor step made decompression throughput worse (56.4 Mb/s).

The memory required for Brotli decompression was around ??? that needed for gzip decompression.

Analysis

Initial results are promising but relate to only a single corpus. The Working Group will continue to examine other data sets.

Conclusions

Initial results indicate that the final compression gains achieved by Brotli (median 23.94% on the Google Fonts corpus) have significantly outperformed our initial goal of half WOFF 2.0 Candidate A (LZMA) gains (median 24.96% on the same corpus). This has been achieved while significantly increasing decompression speed and lowering decompression memory requirements.

References

[Brotli]
(none yet)
[CSS3Fonts]
John Daggett, editor. CSS Fonts Module Level 3. W3C Candidate Recommendation 3 October 2013. Available at http://www.w3.org/TR/2013/CR-css-fonts-3-20131003/.
[LZMA]
7-Zip, LZMA SDK (Software Development Kit). Available at http://www.7-zip.org/sdk.html
[Flate]
Deutsch, P. RFC 1951: DEFLATE Compressed Data Format Specification version 1.3. May 1996. Available at http://tools.ietf.org/html/rfc1951
[MTX]
Sarah Martin, et. al, editors. MicroType® Express (MTX) Font Format. W3C Member Submission 5 March 2008. Available at http://www.w3.org/Submission/2008/SUBM-MTX-20080305
[WOFF 1.0]
Jonathan Kew, Tal Leming, Erik van Blokland, editors. WOFF File Format 1.0. W3C Recommendation 13 December 2012. Available at http://www.w3.org/TR/2012/REC-WOFF-20121213/.

Changes since first publication

(None)

Appendix A: MicroType Express-style plus LZMA compression data

Compression results, Google Fonts corpus, with LZMA [June 2013]

Average compression improvement with WOFF 2.0:  26.61%
Median  24.96%
Standard deviation  7.87%
Minimum  11.94%
Maximum  60.89%
Font filename Original (bytes) GZIP WOFF 2.0 (LZMA) Improvement
GochiHand-Regular.ttf 37,352 24,820 21,856 11.94%
Pacifico.ttf 43,632 28,492 25,044 12.10%
Rochester-Regular.ttf 37,848 24,123 21,140 12.37%
NotoSansOsmanya-Regular.ttf 7,212 4,860 4,236 12.84%
NotoSansThaiUI-Regular.ttf 32,952 17,879 15,580 12.86%
Cousine-Italic.ttf 49,600 34,326 29,884 12.94%
Cousine-Regular.ttf 43,912 30,327 26,368 13.05%
NotoSansThai-Regular.ttf 32,788 17,717 15,404 13.06%
Tinos-Bold.ttf 55,132 37,409 32,424 13.33%
DroidSansThai-Regular.ttf 35,584 18,830 16,300 13.44%
DroidSerif-Bold.ttf 48,880 31,662 27,356 13.60%
Knewave-Regular.ttf 32,460 21,693 18,692 13.83%
Miniver-Regular.ttf 45,824 29,271 25,200 13.91%
Tinos-Italic.ttf 58,116 38,813 33,396 13.96%
Cousine-BoldItalic.ttf 45,484 31,296 26,916 14.00%
Cousine-Bold.ttf 42,200 29,157 25,076 14.00%
Tinos-BoldItalic.ttf 62,032 39,749 34,160 14.06%
MysteryQuest-Regular.ttf 42,124 27,506 23,612 14.16%
DroidSerifThai-Bold.ttf 28,624 16,399 14,068 14.21%
Tinos-Regular.ttf 57,968 38,177 32,716 14.30%
DroidSerif.ttf 43,648 27,789 23,812 14.31%
NotoSerifThai-Bold.ttf 28,280 16,540 14,152 14.44%
SnowburstOne-Regular.ttf 68,360 46,955 40,156 14.48%
Damion-Regular.ttf 51,996 30,566 26,128 14.52%
DroidSerif-BoldItalic.ttf 45,652 29,165 24,892 14.65%
DroidSans-Bold.ttf 42,480 27,451 23,404 14.74%
NotoSerifArmenian-Bold.ttf 24,584 15,512 13,216 14.80%
DroidSerifThai-Regular.ttf 29,156 16,165 13,764 14.85%
DroidSans.ttf 41,028 26,271 22,348 14.93%
NotoSerifThai-Regular.ttf 28,844 16,302 13,868 14.93%
DroidSansThai-Bold.ttf 28,124 15,982 13,588 14.98%
NotoSansThaiUI-Bold.ttf 27,840 16,200 13,772 14.99%
SigmarOne.ttf 66,504 39,147 33,260 15.04%
NotoSansThai-Bold.ttf 27,756 16,108 13,680 15.07%
Souliyo-Regular.ttf 22,416 13,006 11,036 15.15%
Chewy.ttf 41,192 25,206 21,372 15.21%
Arvo-Regular.ttf 40,340 27,027 22,872 15.37%
Arbutus-Regular.ttf 81,816 41,519 34,988 15.73%
Molle-Regular.ttf 52,204 34,019 28,660 15.75%
NothingYouCouldDo.ttf 34,920 21,978 18,516 15.75%
Oregano-Regular.ttf 80,320 44,115 37,160 15.77%
Pompiere-Regular.ttf 36,740 25,112 21,152 15.77%
Arvo-Bold.ttf 37,400 25,185 21,200 15.82%
ArchitectsDaughter.ttf 43,380 23,851 20,072 15.84%
Arvo-Italic.ttf 43,632 28,074 23,628 15.84%
Kavoon-Regular.ttf 58,012 35,373 29,752 15.89%
NotoSerifArmenian-Regular.ttf 23,792 14,925 12,552 15.90%
GiveYouGlory.ttf 43,012 26,305 22,120 15.91%
Arvo-BoldItalic.ttf 42,948 27,817 23,372 15.98%
NotoSansArmenian-Regular.ttf 22,972 14,305 12,012 16.03%
DenkOne-Regular.ttf 45,892 25,021 21,008 16.04%
Oregano-Italic.ttf 87,000 47,911 40,164 16.17%
NotoSansHebrew-Regular.ttf 25,744 13,418 11,244 16.20%
Asset.ttf 52,028 25,522 21,384 16.21%
ButchermanCaps-Regular.ttf 66,456 44,404 37,180 16.27%
Satisfy-Regular.ttf 47,928 28,927 24,212 16.30%
Engagement-Regular.ttf 76,408 39,436 32,956 16.43%
EaterCaps-Regular.ttf 84,116 56,298 47,044 16.44%
Eater-Regular.ttf 83,928 56,230 46,976 16.46%
AmaticSC-Regular.ttf 40,000 25,260 21,100 16.47%
Arimo-Italic.ttf 42,136 27,547 23,004 16.49%
DonegalOne-Regular.ttf 56,944 35,172 29,368 16.50%
NotoSansArmenian-Bold.ttf 22,708 14,203 11,848 16.58%
NotoSansHebrew-Bold.ttf 25,996 13,580 11,328 16.58%
FjallaOne-Regular.ttf 36,572 23,235 19,372 16.63%
NotoSansLaoUI-Regular.ttf 40,320 19,107 15,920 16.68%
Calligraffitti-Regular.ttf 59,852 38,001 31,648 16.72%
Butcherman-Regular.ttf 66,344 44,506 37,060 16.73%
VampiroOne-Regular.ttf 29,044 19,115 15,912 16.76%
Slackey.ttf 38,400 24,091 20,044 16.80%
BadScript-Regular.ttf 54,420 37,291 31,024 16.81%
DroidSerif-Italic.ttf 40,416 26,408 21,964 16.83%
RugeBoogie-Regular.ttf 63,536 35,641 29,616 16.90%
Cedarville-Cursive.ttf 69,436 38,578 32,048 16.93%
ClickerScript-Regular.ttf 64,012 35,235 29,236 17.03%
FingerPaint-Regular.ttf 107,404 68,236 56,616 17.03%
NotoSerifGeorgian-Regular.ttf 34,224 21,174 17,564 17.05%
IndieFlower.ttf 61,556 33,394 27,680 17.11%
TheGirlNextDoor.ttf 53,364 32,761 27,148 17.13%
MrBedfort-Regular.ttf 37,252 21,767 18,036 17.14%
ShadowsIntoLight.ttf 54,304 28,642 23,732 17.14%
SwankyandMooMoo.ttf 58,892 31,278 25,912 17.16%
LaBelleAurore.ttf 59,624 31,599 26,152 17.24%
AnnieUseYourTelescope.ttf 51,124 27,273 22,568 17.25%
Sniglet-Regular.ttf 31,904 17,304 14,312 17.29%
Tienne-Bold.ttf 69,372 39,820 32,932 17.30%
Kristi.ttf 47,476 32,561 26,924 17.31%
CreepsterCaps-Regular.ttf 58,184 35,350 29,220 17.34%
ShortStack-Regular.ttf 68,152 35,449 29,292 17.37%
UnifrakturCook-Bold.ttf 42,688 27,906 23,052 17.39%
JollyLodger-Regular.ttf 39,800 24,184 19,976 17.40%
AllertaStencil-Regular.ttf 20,260 12,989 10,728 17.41%
Prociono-Regular.ttf 31,136 18,806 15,532 17.41%
Sancreek-Regular.ttf 49,672 32,108 26,508 17.44%
NotoSerifLao-Regular.ttf 41,224 19,150 15,808 17.45%
Allerta-Regular.ttf 19,596 12,229 10,092 17.47%
NotoSansLao-Regular.ttf 41,128 19,547 16,132 17.47%
Corben-Regular.ttf 36,000 23,520 19,400 17.52%
Zeyada.ttf 63,064 33,520 27,632 17.57%
Tauri-Regular.ttf 35,140 21,829 17,972 17.67%
CraftyGirls.ttf 75,256 47,838 39,380 17.68%
BowlbyOneSC-Regular.ttf 55,200 38,853 31,972 17.71%
Phetsarath-Regular.ttf 40,544 19,331 15,908 17.71%
Stalemate-Regular.ttf 75,356 39,902 32,812 17.77%
AmaticSC-Bold.ttf 37,852 24,539 20,172 17.80%
IrishGrover.ttf 52,688 30,508 25,068 17.83%
IrishGrowler.ttf 52,736 30,479 25,040 17.85%
NotoSerifGeorgian-Bold.ttf 31,852 19,886 16,336 17.85%
NotoSansGeorgian-Bold.ttf 30,684 18,992 15,588 17.92%
NotoSerifLao-Bold.ttf 40,472 17,657 14,492 17.92%
Parisienne-Regular.ttf 61,248 34,940 28,676 17.93%
Rancho-Regular.ttf 44,840 26,723 21,932 17.93%
Bentham-Regular.ttf 55,496 31,243 25,620 18.00%
OldStandard-Italic.ttf 65,852 35,398 29,012 18.04%
Fruktur-Regular.ttf 68,316 41,834 34,276 18.07%
NosiferCaps-Regular.ttf 43,652 22,594 18,512 18.07%
NotoSansLao-Bold.ttf 39,376 17,656 14,456 18.12%
IMFeFCit28P.ttf 158,184 95,327 78,044 18.13%
Norican-Regular.ttf 46,860 27,703 22,672 18.16%
NotoSansTamilUI-Regular.ttf 57,248 31,837 26,048 18.18%
Dynalight-Regular.ttf 53,148 28,228 23,092 18.19%
Tienne-Regular.ttf 73,908 39,741 32,508 18.20%
NotoSansGeorgian-Regular.ttf 30,516 19,038 15,568 18.23%
NotoSansTamil-Regular.ttf 57,112 31,733 25,944 18.24%
GrandHotel-Regular.ttf 65,012 30,694 25,092 18.25%
jsMath-cmmi10.ttf 46,148 27,492 22,472 18.26%
Piedra-Regular.ttf 75,984 36,334 29,700 18.26%
Lancelot-Regular.ttf 49,536 31,934 26,096 18.28%
GoudyBookletter1911.ttf 73,496 42,785 34,960 18.29%
CherryCreamSoda.ttf 50,156 31,681 25,880 18.31%
HennyPenny-Regular.ttf 92,596 59,647 48,724 18.31%
LondrinaOutline-Regular.ttf 79,924 43,049 35,164 18.32%
BowlbyOne-Regular.ttf 61,620 36,276 29,628 18.33%
EuphoriaScript-Regular.ttf 38,424 20,771 16,964 18.33%
Romanesco-Regular.ttf 52,528 28,557 23,312 18.37%
Qwigley-Regular.ttf 40,452 22,340 18,228 18.41%
RougeScript-Regular.ttf 46,752 22,117 18,044 18.42%
Unkempt-Bold.ttf 191,096 93,117 75,956 18.43%
BerkshireSwash-Regular.ttf 58,364 29,245 23,852 18.44%
Yesteryear-Regular.ttf 64,856 37,144 30,296 18.44%
Arimo-BoldItalic.ttf 42,600 26,994 22,008 18.47%
AutourOne-Regular.ttf 87,888 53,873 43,924 18.47%
Arimo-Bold.ttf 41,516 26,103 21,280 18.48%
OvertheRainbow.ttf 47,508 28,091 22,884 18.54%
Nosifer-Regular.ttf 43,272 22,446 18,280 18.56%
NotoSansLaoUI-Bold.ttf 39,212 17,518 14,264 18.58%
LovedbytheKing.ttf 28,252 18,405 14,972 18.65%
Nokora-Regular.ttf 50,804 25,109 20,424 18.66%
CoveredByYourGrace.ttf 57,040 29,040 23,612 18.69%
Cagliostro-Regular.ttf 37,820 20,739 16,860 18.70%
DawningofaNewDay.ttf 65,344 30,063 24,436 18.72%
Arimo-Regular.ttf 43,616 26,938 21,880 18.78%
NotoSansTamilUI-Bold.ttf 57,180 31,239 25,364 18.81%
AlexBrush-Regular.ttf 49,020 25,428 20,628 18.88%
Marcellus-Regular.ttf 46,004 24,272 19,688 18.89%
NotoSansTamil-Bold.ttf 56,992 31,082 25,208 18.90%
jsMath-cmti10.ttf 47,616 27,271 22,108 18.93%
LondrinaSolid-Regular.ttf 52,028 25,247 20,456 18.98%
DrSugiyama-Regular.ttf 39,928 21,553 17,460 18.99%
GloriaHallelujah.ttf 60,052 33,197 26,880 19.03%
DroidTV-Regular.ttf 37,272 20,953 16,960 19.06%
LeckerliOne-Regular.ttf 43,212 22,001 17,808 19.06%
RockSalt.ttf 125,136 76,338 61,784 19.07%
ComingSoon.ttf 59,136 35,752 28,920 19.11%
Orienta-Regular.ttf 63,924 28,561 23,104 19.11%
BilboSwashCaps-Regular.ttf 58,148 30,325 24,528 19.12%
ShadowsIntoLightTwo-Regular.ttf 39,396 25,597 20,700 19.13%
DeliusUnicase-Regular.ttf 32,904 16,491 13,332 19.16%
IMFeFCrm28P.ttf 145,832 85,499 69,116 19.16%
Smythe-Regular.ttf 90,652 47,168 38,112 19.20%
Cookie-Regular.ttf 43,800 21,550 17,408 19.22%
MacondoSwashCaps-Regular.ttf 33,016 17,667 14,272 19.22%
MarkoOne-Regular.ttf 34,484 21,388 17,268 19.26%
MissFajardose-Regular.ttf 58,872 30,179 24,364 19.27%
TradeWinds-Regular.ttf 85,744 47,434 38,272 19.32%
BenchNine-Regular.ttf 57,656 32,540 26,240 19.36%
Arizonia-Regular.ttf 50,736 26,874 21,668 19.37%
StardosStencil-Bold.ttf 34,820 22,386 18,044 19.40%
MarcellusSC-Regular.ttf 47,888 24,622 19,840 19.42%
DroidTV-Bold.ttf 37,016 20,776 16,740 19.43%
LondrinaShadow-Regular.ttf 85,512 44,691 36,004 19.44%
BenchNine-Light.ttf 55,248 32,005 25,776 19.46%
Lohit-Devanagari.ttf 64,232 34,755 27,984 19.48%
Rosarivo-Regular.ttf 41,344 21,379 17,212 19.49%
GravitasOne.ttf 41,448 19,688 15,848 19.50%
WaitingfortheSunrise.ttf 59,240 31,764 25,556 19.54%
Aladin-Regular.ttf 42,160 20,812 16,744 19.55%
Oswald-Regular.ttf 50,944 26,928 21,652 19.59%
PinyonScript-Regular.ttf 62,124 33,119 26,632 19.59%
Fascinate-Regular.ttf 51,900 25,790 20,736 19.60%
Michroma.ttf 64,940 33,653 27,044 19.64%
Niconne-Regular.ttf 45,616 24,679 19,832 19.64%
Iceberg-Regular.ttf 42,808 19,631 15,772 19.66%
FascinateInline-Regular.ttf 59,604 29,927 24,032 19.70%
LifeSavers-Bold.ttf 179,816 71,464 57,380 19.71%
Schoolbell.ttf 49,152 28,776 23,100 19.72%
Coda-Regular.ttf 86,992 38,664 31,032 19.74%
IMFeFCsc28P.ttf 136,188 78,569 63,056 19.74%
jsMath-cmsy10.ttf 43,456 25,159 20,192 19.74%
MrDafoe-Regular.ttf 47,976 24,697 19,820 19.75%
Ovo-Regular.ttf 50,864 23,875 19,156 19.77%
MerriweatherSans-Regular.ttf 48,528 30,086 24,136 19.78%
Rokkitt-Regular.ttf 57,280 27,340 21,932 19.78%
FjordOne-Regular.ttf 54,156 26,537 21,280 19.81%
Ruthie-Regular.ttf 57,208 30,072 24,104 19.85%
Dhyana-Bold.ttf 61,304 37,824 30,308 19.87%
Oxygen-Light.ttf 43,852 25,851 20,712 19.88%
PasseroOne-Regular.ttf 33,624 19,844 15,900 19.88%
BenchNine-Bold.ttf 59,272 33,057 26,480 19.90%
CaesarDressing-Regular.ttf 89,628 40,358 32,328 19.90%
Candal.ttf 32,816 19,820 15,872 19.92%
LindenHill-Italic.ttf 94,540 50,073 40,100 19.92%
Radley-Italic.ttf 90,744 44,787 35,860 19.93%
HoltwoodOneSC.ttf 36,744 19,523 15,628 19.95%
Unna-Regular.ttf 26,424 15,523 12,420 19.99%
OleoScriptSwashCaps-Bold.ttf 39,784 21,901 17,520 20.00%
Monofett.ttf 58,132 21,482 17,180 20.03%
Rokkitt-Bold.ttf 62,696 30,848 24,660 20.06%
JacquesFrancois-Regular.ttf 60,448 36,900 29,496 20.07%
Nunito-Bold.ttf 49,544 30,240 24,164 20.09%
Nokora-Bold.ttf 42,344 20,531 16,404 20.10%
Chicle-Regular.ttf 41,012 21,157 16,900 20.12%
Tienne-Heavy.ttf 77,060 38,030 30,368 20.15%
LoversQuarrel-Regular.ttf 61,872 31,562 25,196 20.17%
VastShadow-Regular.ttf 62,364 32,217 25,716 20.18%
OverlockSC-Regular.ttf 36,640 18,570 14,820 20.19%
Overlock-BlackItalic.ttf 44,088 22,526 17,976 20.20%
Iceland-Regular.ttf 47,632 19,377 15,460 20.21%
MeriendaOne-Regular.ttf 30,548 17,304 13,800 20.25%
MerriweatherSans-Light.ttf 47,112 29,688 23,676 20.25%
MountainsofChristmas-Regular.ttf 122,544 74,364 59,308 20.25%
OleoScriptSwashCaps-Regular.ttf 40,088 21,444 17,100 20.26%
Stoke-Light.ttf 50,820 27,214 21,692 20.29%
Karla-BoldItalic.ttf 18,672 11,632 9,268 20.32%
Oldenburg-Regular.ttf 46,248 27,413 21,840 20.33%
Oswald-Light.ttf 44,740 25,027 19,936 20.34%
FanwoodText-Italic.ttf 96,364 51,688 41,168 20.35%
MerriweatherSans-ExtraBold.ttf 50,968 30,780 24,516 20.35%
Bilbo-Regular.ttf 42,912 23,549 18,744 20.40%
Bonbon-Regular.ttf 83,052 43,614 34,716 20.40%
GoblinOne.ttf 36,736 18,835 14,992 20.40%
Habibi-Regular.ttf 36,260 21,954 17,476 20.40%
AguafinaScript-Regular.ttf 47,228 22,527 17,924 20.43%
Overlock-Black.ttf 43,224 21,822 17,364 20.43%
Oswald-Bold.ttf 53,056 28,521 22,688 20.45%
Gruppo-Regular.ttf 84,716 35,095 27,916 20.46%
MrDeHaviland-Regular.ttf 44,672 23,964 19,060 20.46%
Coustard-Regular.ttf 79,556 38,922 30,952 20.48%
Overlock-Bold.ttf 42,368 21,841 17,364 20.50%
DellaRespira-Regular.ttf 51,208 27,479 21,840 20.52%
MerriweatherSans-Bold.ttf 51,068 30,734 24,428 20.52%
MonsieurLaDoulaise-Regular.ttf 54,288 26,449 21,020 20.53%
OleoScript-Bold.ttf 34,628 19,297 15,332 20.55%
Spinnaker-Regular.ttf 24,988 15,853 12,596 20.55%
MrsSheppards-Regular.ttf 42,384 22,964 18,228 20.62%
Rosarivo-Italic.ttf 39,244 20,655 16,396 20.62%
SortsMillGoudy-Regular.ttf 121,372 48,623 38,576 20.66%
Overlock-Italic.ttf 44,160 22,463 17,820 20.67%
Merriweather-Light.ttf 47,048 24,881 19,736 20.68%
SeaweedScript-Regular.ttf 117,072 58,103 46,084 20.69%
Oxygen-Regular.ttf 48,092 28,103 22,284 20.71%
Vollkorn-Regular.ttf 62,004 31,877 25,276 20.71%
Lusitana-Bold.ttf 29,284 16,121 12,780 20.72%
JosefinSans-Regular.ttf 33,008 19,871 15,752 20.73%
MrsSaintDelafield-Regular.ttf 49,396 26,612 21,096 20.73%
Radley-Regular.ttf 90,328 45,809 36,312 20.73%
Vollkorn-BoldItalic.ttf 55,208 27,909 22,124 20.73%
Inika-Bold.ttf 38,736 20,949 16,604 20.74%
HomemadeApple.ttf 110,080 64,203 50,884 20.75%
IMFeGPit28P.ttf 249,324 141,550 112,132 20.78%
IMFeENit28P.ttf 202,368 122,280 96,824 20.82%
JosefinSans-Light.ttf 33,180 19,753 15,640 20.82%
JosefinSans-SemiBold.ttf 33,004 19,860 15,724 20.83%
LemonOne-Regular.ttf 31,436 17,740 14,044 20.83%
Meddon.ttf 128,632 85,211 67,456 20.84%
Prata-Regular.ttf 33,392 18,185 14,388 20.88%
DroidSansMono.ttf 117,072 75,518 59,732 20.90%
IMFePIrm28P.ttf 216,968 124,565 98,516 20.91%
JosefinSans-Bold.ttf 32,912 19,567 15,476 20.91%
OleoScript-Regular.ttf 34,980 18,632 14,736 20.91%
Coustard-Black.ttf 82,652 41,082 32,484 20.93%
JacquesFrancoisShadow-Regular.ttf 82,492 54,275 42,916 20.93%
SixCaps.ttf 46,388 26,026 20,580 20.93%
Anaheim-Regular.ttf 43,436 25,819 20,412 20.94%
Inconsolata-Bold.ttf 67,724 33,440 26,436 20.94%
Lusitana-Regular.ttf 30,188 16,611 13,132 20.94%
Karla-Bold.ttf 17,868 10,480 8,284 20.95%
Merriweather-Bold.ttf 46,948 25,135 19,860 20.99%
ChelaOne-Regular.ttf 35,724 19,810 15,648 21.01%
JosefinSans-Thin.ttf 33,000 19,323 15,264 21.01%
Oxygen-Bold.ttf 48,812 28,445 22,468 21.01%
StintUltraCondensed-Regular.ttf 40,272 21,875 17,280 21.01%
DoppioOne-Regular.ttf 55,704 31,606 24,960 21.03%
DeliusUnicase-Bold.ttf 36,120 15,632 12,340 21.06%
Dhyana-Regular.ttf 72,348 41,647 32,876 21.06%
PortLligatSlab-Regular.ttf 38,160 19,022 15,012 21.08%
IMFeDPrm28P.ttf 210,916 120,881 95,392 21.09%
IMFeENrm28P.ttf 194,992 118,340 93,376 21.10%
RumRaisin-Regular.ttf 61,812 35,189 27,760 21.11%
SortsMillGoudy-Italic.ttf 105,684 44,972 35,476 21.12%
Akronim-Regular.ttf 109,540 69,854 55,088 21.14%
IMFeDPit28P.ttf 255,092 143,497 113,128 21.16%
IMFePIit28P.ttf 244,584 138,400 109,096 21.17%
jsMath-cmbx10.ttf 51,860 28,603 22,548 21.17%
Nunito-Regular.ttf 49,792 28,319 22,324 21.17%
Monda-Regular.ttf 43,604 24,853 19,588 21.18%
Overlock-BoldItalic.ttf 45,836 23,486 18,512 21.18%
JosefinSans-SemiBoldItalic.ttf 37,092 21,491 16,936 21.19%
StardosStencil-Regular.ttf 46,892 25,041 19,736 21.19%
CutiveMono-Regular.ttf 69,180 35,181 27,724 21.20%
Sofia-Regular.ttf 29,796 16,964 13,368 21.20%
BubblegumSans-Regular.ttf 38,820 20,657 16,276 21.21%
Merriweather-Black.ttf 46,972 24,150 19,028 21.21%
Tangerine_Regular.ttf 61,484 32,156 25,328 21.23%
JosefinSans-BoldItalic.ttf 37,008 21,147 16,652 21.26%
Sail-Regular.ttf 32,656 19,141 15,072 21.26%
SeymourOne-Regular.ttf 74,440 42,862 33,748 21.26%
JosefinSans-Italic.ttf 37,044 21,385 16,836 21.27%
AlmendraSC-Regular.ttf 36,056 17,091 13,452 21.29%
HerrVonMuellerhoff-Regular.ttf 46,624 25,256 19,880 21.29%
jsMath-cmr10.ttf 50,312 27,737 21,832 21.29%
Devonshire-Regular.ttf 67,240 30,644 24,108 21.33%
JosefinSans-LightItalic.ttf 37,336 21,351 16,796 21.33%
IMFeGPrm28P.ttf 216,552 124,148 97,648 21.35%
Condiment-Regular.ttf 43,392 23,799 18,716 21.36%
DiplomataSC-Regular.ttf 42,444 21,381 16,812 21.37%
Paprika-Regular.ttf 42,340 22,296 17,528 21.39%
Lemon-Regular.ttf 34,648 17,994 14,144 21.40%
WalterTurncoat.ttf 154,112 79,429 62,432 21.40%
Merienda-Regular.ttf 41,076 21,294 16,724 21.46%
Merriweather-Regular.ttf 46,784 23,276 18,280 21.46%
Playball-Regular.ttf 42,820 22,040 17,308 21.47%
Economica-Regular.ttf 26,756 15,231 11,960 21.48%
Vollkorn-Italic.ttf 57,552 28,751 22,576 21.48%
Asul-Bold.ttf 33,548 18,478 14,508 21.49%
ChelseaMarket-Regular.ttf 172,924 82,135 64,472 21.50%
Karla-Italic.ttf 18,548 10,772 8,456 21.50%
Revalia-Regular.ttf 61,436 30,487 23,928 21.51%
Quicksand-Bold.ttf 23,408 13,159 10,324 21.54%
Chango-Regular.ttf 40,732 20,861 16,364 21.56%
Kreon-Bold.ttf 38,220 18,950 14,860 21.58%
Inconsolata-Regular.ttf 84,868 50,980 39,956 21.62%
JosefinSans-ThinItalic.ttf 37,624 21,255 16,656 21.64%
Kreon-Light.ttf 37,408 17,942 14,060 21.64%
Merienda-Bold.ttf 35,032 17,893 14,020 21.65%
Julee-Regular.ttf 30,876 17,623 13,804 21.67%
Puritan-Bold.ttf 54,564 29,051 22,752 21.68%
Corben-Bold.ttf 139,588 70,152 54,900 21.74%
Diplomata-Regular.ttf 43,320 22,178 17,348 21.78%
CevicheOne-Regular.ttf 36,920 22,015 17,216 21.80%
Karla-Regular.ttf 16,816 9,979 7,804 21.80%
DroidSansTamil-Bold.ttf 36,448 19,014 14,864 21.83%
Molengo-Regular.ttf 65,464 33,231 25,976 21.83%
DroidSansTamil-Regular.ttf 36,308 19,150 14,968 21.84%
Anton.ttf 42,376 23,249 18,168 21.85%
Tangerine_Bold.ttf 66,492 34,551 27,000 21.85%
Podkova-Regular.ttf 60,172 37,161 29,024 21.90%
Skranji-Bold.ttf 207,292 97,013 75,760 21.91%
StintUltraExpanded-Regular.ttf 42,788 23,129 18,060 21.92%
Puritan-Regular.ttf 54,748 28,719 22,420 21.93%
Frijole-Regular.ttf 227,860 122,154 95,348 21.94%
ElsieSwashCaps-Black.ttf 39,412 20,970 16,368 21.95%
Arapey-Italic.ttf 29,568 16,395 12,788 22.00%
Asul-Regular.ttf 33,516 18,394 14,348 22.00%
Salsa-Regular.ttf 56,680 24,583 19,172 22.01%
Trykker-Regular.ttf 38,140 23,631 18,428 22.02%
UnifrakturMaguntia-Book.ttf 88,508 45,473 35,460 22.02%
Griffy-Regular.ttf 208,776 98,229 76,580 22.04%
Almendra-Italic.ttf 35,324 17,119 13,344 22.05%
LifeSavers-Regular.ttf 198,208 69,870 54,448 22.07%
Almendra-BoldItalic.ttf 35,496 17,592 13,708 22.08%
Combo-Regular.ttf 132,848 44,752 34,872 22.08%
Kreon-Regular.ttf 37,432 18,743 14,604 22.08%
Economica-Bold.ttf 27,196 15,712 12,240 22.10%
IMFePIsc28P.ttf 198,012 112,604 87,716 22.10%
Inika-Regular.ttf 39,700 20,989 16,348 22.11%
PortLligatSans-Regular.ttf 34,388 18,081 14,084 22.11%
Astloch-Regular.ttf 51,012 24,128 18,792 22.12%
Economica-Italic.ttf 27,692 16,184 12,604 22.12%
Kranky.ttf 199,680 101,151 78,780 22.12%
Nunito-Light.ttf 48,576 27,865 21,696 22.14%
ArbutusSlab-Regular.ttf 70,004 39,098 30,436 22.15%
FredokaOne-Regular.ttf 43,500 21,791 16,964 22.15%
Almendra-Bold.ttf 36,732 17,399 13,544 22.16%
Creepster-Regular.ttf 62,724 37,824 29,440 22.17%
Puritan-Italic.ttf 59,596 31,492 24,508 22.18%
Vollkorn-Bold.ttf 68,608 35,467 27,600 22.18%
SirinStencil-Regular.ttf 69,332 40,107 31,204 22.20%
LindenHill-Regular.ttf 124,844 54,691 42,536 22.22%
Macondo-Regular.ttf 48,776 22,052 17,152 22.22%
SueEllenFrancisco.ttf 60,960 28,111 21,864 22.22%
CrimsonText-Italic.ttf 99,880 55,514 43,168 22.24%
IMFeENsc28P.ttf 183,932 110,058 85,572 22.25%
Puritan-BoldItalic.ttf 59,236 31,710 24,656 22.25%
Basic-Regular.ttf 32,988 19,634 15,256 22.30%
Monda-Bold.ttf 48,752 26,951 20,940 22.30%
Warnes-Regular.ttf 99,012 34,882 27,088 22.34%
LeagueScript.ttf 69,216 39,602 30,752 22.35%
Geo-Regular.ttf 38,680 16,857 13,084 22.38%
MountainsofChristmas-Bold.ttf 123,404 74,616 57,892 22.41%
Coda-Heavy.ttf 90,476 39,218 30,424 22.42%
Economica-BoldItalic.ttf 27,024 16,328 12,664 22.44%
ElsieSwashCaps-Regular.ttf 38,044 18,421 14,288 22.44%
OFLGoudyStMTT-Italic.ttf 161,228 77,829 60,352 22.46%
LilitaOne-Regular.ttf 28,092 15,271 11,840 22.47%
MontserratSubrayada-Bold.ttf 24,364 11,420 8,852 22.49%
BigelowRules-Regular.ttf 59,444 33,710 26,124 22.50%
Handlee-Regular.ttf 39,132 22,812 17,680 22.50%
IMFeDPsc28P.ttf 197,012 111,358 86,308 22.50%
OFLGoudyStMTT.ttf 173,520 81,070 62,820 22.51%
Elsie-Black.ttf 42,424 22,326 17,276 22.62%
MontserratSubrayada-Regular.ttf 24,332 11,482 8,880 22.66%
Galindo-Regular.ttf 58,104 33,961 26,260 22.68%
Overlock-Regular.ttf 49,656 25,521 19,732 22.68%
OldStandard-Regular.ttf 64,784 32,091 24,808 22.69%
EmilysCandy-Regular.ttf 237,216 114,829 88,764 22.70%
Lekton-Italic.ttf 34,212 17,114 13,228 22.71%
AlfaSlabOne-Regular.ttf 36,504 19,964 15,428 22.72%
RibeyeMarrow-Regular.ttf 84,896 45,545 35,196 22.72%
Lustria-Regular.ttf 37,400 18,349 14,176 22.74%
Felipa-Regular.ttf 40,000 21,577 16,664 22.77%
Mate-Regular.ttf 28,216 15,390 11,884 22.78%
OldStandard-Bold.ttf 65,924 33,021 25,500 22.78%
Mate-Italic.ttf 27,708 16,045 12,388 22.79%
Astloch-Bold.ttf 75,684 38,392 29,636 22.81%
NewsCycle-Bold.ttf 73,912 36,427 28,116 22.82%
Shojumaru-Regular.ttf 71,672 41,678 32,168 22.82%
Allan-Regular.ttf 56,460 34,247 26,424 22.84%
CrimsonText-SemiboldItalic.ttf 75,588 40,311 31,104 22.84%
Arapey-Regular.ttf 26,764 14,807 11,420 22.87%
nobile_bold.ttf 61,596 40,025 30,868 22.88%
Skranji-Regular.ttf 207,924 97,675 75,312 22.90%
Copse-Regular.ttf 72,252 34,998 26,976 22.92%
Sunshiney.ttf 160,256 82,673 63,688 22.96%
Monoton-Regular.ttf 51,604 26,514 20,412 23.01%
Elsie-Regular.ttf 41,044 19,687 15,156 23.02%
nobile.ttf 65,140 41,078 31,620 23.02%
Quicksand-Light.ttf 21,004 12,224 9,404 23.07%
SpicyRice-Regular.ttf 67,244 38,705 29,772 23.08%
GermaniaOne-Regular.ttf 33,240 15,816 12,164 23.09%
HanaleiFill-Regular.ttf 92,108 38,901 29,920 23.09%
Podkova-Bold.ttf 50,564 31,725 24,392 23.11%
SansitaOne.ttf 47,440 24,747 19,024 23.13%
FanwoodText-Regular.ttf 119,216 63,454 48,760 23.16%
KronaOne-Regular.ttf 35,168 20,948 16,092 23.18%
PollerOne.ttf 31,588 16,345 12,556 23.18%
EagleLake-Regular.ttf 78,000 46,067 35,384 23.19%
Boogaloo-Regular.ttf 33,928 18,277 14,036 23.20%
Average-Regular.ttf 37,836 19,045 14,620 23.23%
Marmelad-Regular.ttf 117,396 58,772 45,088 23.28%
YanoneKaffeesatz-Bold.ttf 73,000 35,904 27,544 23.28%
Ewert-Regular.ttf 70,752 19,962 15,312 23.29%
AlmendraDisplay-Regular.ttf 39,332 16,340 12,532 23.30%
CabinSketch-Bold.ttf 282,864 178,466 136,880 23.30%
Cutive-Regular.ttf 98,184 43,419 33,300 23.31%
Bitter-Bold.ttf 25,896 15,407 11,812 23.33%
Inder-Regular.ttf 34,132 20,306 15,568 23.33%
Quicksand-Regular.ttf 23,824 13,362 10,244 23.33%
Codystar-Regular.ttf 106,500 55,859 42,824 23.34%
MateSC-Regular.ttf 29,856 15,595 11,952 23.36%
MouseMemoirs-Regular.ttf 55,932 32,709 25,068 23.36%
Numans-Regular.ttf 39,368 19,274 14,772 23.36%
DroidNaskh-Bold.ttf 94,620 53,197 40,760 23.38%
IMFeGPsc28P.ttf 203,776 115,580 88,504 23.43%
Spirax-Regular.ttf 49,064 22,500 17,228 23.43%
PlayfairDisplaySC-Bold.ttf 138,456 65,499 50,144 23.44%
Gabriela-Regular.ttf 36,856 18,116 13,868 23.45%
Montaga-Regular.ttf 33,956 17,819 13,640 23.45%
PlayfairDisplaySC-Regular.ttf 134,348 60,438 46,268 23.45%
Englebert-Regular.ttf 53,048 30,994 23,724 23.46%
GildaDisplay-Regular.ttf 36,804 19,133 14,644 23.46%
NotoSerif-Bold.ttf 370,884 225,277 172,420 23.46%
Ruda-Bold.ttf 24,848 14,822 11,340 23.49%
Sacramento-Regular.ttf 79,696 42,014 32,144 23.49%
PlayfairDisplaySC-BoldItalic.ttf 132,736 68,836 52,656 23.51%
PlayfairDisplaySC-Black.ttf 136,240 63,690 48,700 23.54%
Fenix-Regular.ttf 45,144 21,707 16,596 23.55%
Cambo-Regular.ttf 29,104 15,191 11,612 23.56%
jsMath-cmex10.ttf 34,164 18,911 14,456 23.56%
Lohit-Bengali.ttf 139,460 68,761 52,560 23.56%
Ribeye-Regular.ttf 78,492 44,634 34,120 23.56%
Esteban-Regular.ttf 46,504 23,435 17,904 23.60%
PrincessSofia-Regular.ttf 272,628 130,388 99,616 23.60%
Glegoo-Regular.ttf 28,152 15,271 11,664 23.62%
Gudea-Bold.ttf 22,560 14,179 10,828 23.63%
Rambla-Italic.ttf 37,144 18,383 14,040 23.63%
EricaOne-Regular.ttf 26,244 14,735 11,252 23.64%
nobile_bold_italic.ttf 86,172 54,164 41,352 23.65%
McLaren-Regular.ttf 54,504 31,873 24,332 23.66%
DroidNaskh-Regular.ttf 91,340 50,955 38,892 23.67%
PontanoSans-Regular.ttf 126,596 44,762 34,136 23.74%
Balthazar-Regular.ttf 28,224 15,728 11,992 23.75%
Ruda-Black.ttf 24,748 14,647 11,168 23.75%
OxygenMono-Regular.ttf 68,940 34,280 26,136 23.76%
CrimsonText-BoldItalic.ttf 75,764 39,520 30,128 23.77%
nobile_italic.ttf 92,032 56,034 42,712 23.77%
ButterflyKids-Regular.ttf 202,824 98,228 74,864 23.79%
Neuton-Regular.ttf 56,688 29,232 22,272 23.81%
Telex-Regular.ttf 68,804 27,242 20,756 23.81%
QuattrocentoSans-BoldItalic.ttf 100,748 40,366 30,740 23.85%
RopaSans-Italic.ttf 42,396 24,125 18,368 23.86%
Unkempt-Regular.ttf 192,512 96,122 73,184 23.86%
Voltaire-Regular.ttf 28,824 14,853 11,308 23.87%
Ruda-Regular.ttf 24,944 14,743 11,220 23.90%
LondrinaSketch-Regular.ttf 172,440 83,953 63,884 23.91%
FrederickatheGreat-Regular.ttf 486,216 278,132 211,612 23.92%
Gafata-Regular.ttf 37,432 17,542 13,344 23.93%
PlayfairDisplaySC-Italic.ttf 128,144 65,523 49,844 23.93%
NotoSerif-Regular.ttf 350,668 208,647 158,672 23.95%
QuattrocentoSans-Regular.ttf 98,340 38,938 29,612 23.95%
Hanuman.ttf 128,376 44,942 34,168 23.97%
Quintessential-Regular.ttf 73,892 44,288 33,668 23.98%
Quando-Regular.ttf 119,688 52,267 39,724 24.00%
Scada-Bold.ttf 85,712 39,635 30,124 24.00%
KottaOne-Regular.ttf 36,624 17,060 12,964 24.01%
Lohit-Tamil.ttf 66,184 27,623 20,968 24.09%
WendyOne-Regular.ttf 22,772 12,605 9,568 24.09%
Cantarell-Bold.ttf 49,276 27,215 20,656 24.10%
RammettoOne-Regular.ttf 30,420 19,094 14,488 24.12%
CinzelDecorative-Bold.ttf 62,448 28,543 21,652 24.14%
ChangaOne-Regular.ttf 22,716 13,516 10,248 24.18%
CarterOne.ttf 66,532 40,507 30,708 24.19%
FugazOne-Regular.ttf 27,868 16,783 12,720 24.21%
SofadiOne-Regular.ttf 52,732 28,119 21,296 24.26%
CinzelDecorative-Regular.ttf 60,540 26,845 20,328 24.28%
AtomicAge-Regular.ttf 31,048 17,904 13,556 24.29%
Phetsarath-Bold.ttf 156,840 35,336 26,752 24.29%
Trochut-Italic.ttf 27,908 14,318 10,840 24.29%
JosefinSlab-BoldItalic.ttf 42,848 22,747 17,220 24.30%
Ruluko-Regular.ttf 27,436 14,944 11,312 24.30%
BigshotOne.ttf 45,192 19,960 15,108 24.31%
CrimsonText-Semibold.ttf 77,636 39,750 30,088 24.31%
Hanumanb.ttf 121,948 43,096 32,616 24.32%
Asap-BoldItalic.ttf 32,220 16,536 12,512 24.33%
Convergence-Regular.ttf 30,220 16,303 12,336 24.33%
Trochut-Regular.ttf 25,300 12,719 9,624 24.33%
Chivo-Regular.ttf 50,844 28,119 21,272 24.35%
Geo-Oblique.ttf 50,036 20,848 15,772 24.35%
Rufina-Regular.ttf 40,040 19,166 14,496 24.37%
PlayfairDisplaySC-BlackItalic.ttf 133,900 67,180 50,804 24.38%
ExpletusSans-Italic.ttf 39,444 19,970 15,100 24.39%
QuattrocentoSans-Bold.ttf 100,560 38,985 29,472 24.40%
OriginalSurfer-Regular.ttf 57,792 34,292 25,920 24.41%
RopaSans-Regular.ttf 41,796 22,081 16,684 24.44%
Scada-Regular.ttf 86,472 39,758 30,040 24.44%
TextMeOne-Regular.ttf 37,352 17,300 13,072 24.44%
Cinzel-Bold.ttf 57,740 27,317 20,636 24.46%
Gudea-Regular.ttf 22,932 14,171 10,700 24.49%
Milonga-Regular.ttf 209,948 69,675 52,600 24.51%
Rambla-BoldItalic.ttf 37,372 18,752 14,152 24.53%
SourceSansPro-BoldItalic.ttf 116,088 51,191 38,636 24.53%
Yellowtail-Regular.ttf 62,424 32,469 24,496 24.56%
NotoSansDevanagariUI-Regular.ttf 176,172 78,778 59,412 24.58%
NotoSansDevanagari-Regular.ttf 177,672 79,486 59,940 24.59%
Rufina-Bold.ttf 40,056 19,165 14,452 24.59%
BubblerOne-Regular.ttf 30,992 14,933 11,260 24.60%
ChauPhilomeneOne-Italic.ttf 44,272 21,914 16,524 24.60%
NotoSansDevanagariUI-Bold.ttf 170,156 74,118 55,876 24.61%
Scada-BoldItalic.ttf 88,056 41,927 31,608 24.61%
ABeeZee-Italic.ttf 47,764 25,840 19,472 24.64%
KiteOne-Regular.ttf 37,608 19,764 14,892 24.65%
JustMeAgainDownHere.ttf 72,060 36,232 27,292 24.67%
NotoSerif-BoldItalic.ttf 333,656 197,472 148,752 24.67%
NotoSansDevanagari-Bold.ttf 171,724 74,851 56,376 24.68%
Risque-Regular.ttf 59,392 33,807 25,464 24.68%
Fresca-Regular.ttf 32,644 18,516 13,944 24.69%
SourceSansPro-BlackItalic.ttf 116,244 50,160 37,768 24.70%
SourceSansPro-SemiboldItalic.ttf 116,468 51,481 38,760 24.71%
Thabit.ttf 124,084 57,568 43,344 24.71%
Clara-Regular.ttf 168,256 79,150 59,588 24.72%
StalinistOne-Regular.ttf 49,960 23,342 17,572 24.72%
ABeeZee-Regular.ttf 46,124 24,907 18,748 24.73%
Strait-Regular.ttf 33,088 16,379 12,328 24.73%
Trochut-Bold.ttf 25,412 12,783 9,620 24.74%
Gudea-Italic.ttf 27,028 16,079 12,100 24.75%
Stoke-Regular.ttf 133,340 57,959 43,612 24.75%
CarroisGothic-Regular.ttf 41,680 23,032 17,328 24.77%
Cinzel-Black.ttf 58,616 26,729 20,108 24.77%
StalinOne-Regular.ttf 49,912 23,330 17,552 24.77%
Asap-Bold.ttf 30,352 15,495 11,656 24.78%
Acme-Regular.ttf 23,460 13,307 10,008 24.79%
ArchivoBlack-Regular.ttf 129,848 50,010 37,600 24.82%
ChangaOne-Italic.ttf 26,728 14,953 11,240 24.83%
Dorsa-Regular.ttf 20,844 10,925 8,212 24.83%
YanoneKaffeesatz-ExtraLight.ttf 77,024 38,425 28,880 24.84%
Cantarell-BoldOblique.ttf 52,200 30,491 22,912 24.86%
Fondamento-Italic.ttf 78,760 40,131 30,144 24.89%
Peralta-Regular.ttf 59,600 35,614 26,748 24.89%
PermanentMarker.ttf 74,752 41,537 31,200 24.89%
YanoneKaffeesatz-Regular.ttf 76,588 38,553 28,956 24.89%
Sintony-Bold.ttf 26,016 14,521 10,904 24.91%
Asap-Italic.ttf 32,032 16,729 12,560 24.92%
SourceSansPro-Italic.ttf 116,684 51,593 38,736 24.92%
Electrolize-Regular.ttf 55,712 24,701 18,544 24.93%
Montez-Regular.ttf 77,192 40,356 30,296 24.93%
NoticiaText-Bold.ttf 113,244 60,096 45,100 24.95%
Sintony-Regular.ttf 25,712 14,753 11,072 24.95%
Cinzel-Regular.ttf 56,228 25,554 19,176 24.96%
Domine-Regular.ttf 137,880 53,492 40,140 24.96%
YanoneKaffeesatz-Light.ttf 77,296 38,779 29,100 24.96%
Asap-Regular.ttf 30,740 15,769 11,832 24.97%
Plaster-Regular.ttf 32,852 18,416 13,812 25.00%
YesevaOne-Regular.ttf 101,036 47,075 35,308 25.00%
Orbitron-Bold.ttf 38,580 17,588 13,188 25.02%
CinzelDecorative-Black.ttf 62,824 27,255 20,432 25.03%
Kenia-Regular.ttf 65,156 29,403 22,044 25.03%
SourceSansPro-LightItalic.ttf 116,384 51,427 38,556 25.03%
AnonymousPro-BoldItalic.ttf 142,016 63,352 47,488 25.04%
Codystar-Light.ttf 101,536 51,377 38,500 25.06%
Amethysta-Regular.ttf 67,044 35,784 26,812 25.07%
Belleza-Regular.ttf 27,820 16,057 12,032 25.07%
CherrySwash-Regular.ttf 30,596 14,568 10,916 25.07%
ContrailOne-Regular.ttf 31,184 16,375 12,268 25.08%
Chivo-Italic.ttf 30,864 17,765 13,308 25.09%
Scada-Italic.ttf 86,524 41,329 30,960 25.09%
Imprima-Regular.ttf 24,912 14,115 10,572 25.10%
SourceSansPro-ExtraLightItalic.ttf 116,940 50,226 37,620 25.10%
Unlock-Regular.ttf 27,080 14,694 11,004 25.11%
PTM55FT.ttf 185,912 96,150 71,988 25.13%
ChauPhilomeneOne-Regular.ttf 40,056 20,389 15,264 25.14%
Galdeano-Regular.ttf 24,868 14,363 10,752 25.14%
Carme-Regular.ttf 78,028 26,066 19,508 25.16%
Orbitron-Regular.ttf 39,484 17,574 13,148 25.18%
Orbitron-Black.ttf 37,584 17,742 13,264 25.24%
Quattrocento-Regular.ttf 158,200 56,875 42,508 25.26%
ShareTechMono-Regular.ttf 23,976 12,520 9,356 25.27%
PassionOne-Regular.ttf 25,104 14,123 10,548 25.31%
PlayfairDisplay-Bold.ttf 192,588 89,636 66,952 25.31%
PassionOne-Bold.ttf 24,788 13,939 10,408 25.33%
Rambla-Bold.ttf 34,688 17,313 12,928 25.33%
UncialAntiqua-Regular.ttf 63,404 33,996 25,380 25.34%
Cantarell-Oblique.ttf 50,068 27,821 20,768 25.35%
Syncopate-Bold.ttf 65,432 30,862 23,032 25.37%
PlayfairDisplay-Black.ttf 189,516 86,394 64,468 25.38%
Domine-Bold.ttf 146,200 56,927 42,476 25.39%
Margarine-Regular.ttf 148,820 83,601 62,372 25.39%
PatuaOne-Regular.ttf 35,624 19,663 14,668 25.40%
Rosario-Regular.ttf 33,916 19,367 14,444 25.42%
Belgrano-Regular.ttf 29,076 17,487 13,040 25.43%
Offside-Regular.ttf 30,840 15,459 11,524 25.45%
Rambla-Regular.ttf 34,332 17,001 12,660 25.53%
Chivo-Black.ttf 55,128 26,005 19,356 25.57%
PassionOne-Black.ttf 24,320 13,569 10,100 25.57%
CherrySwash-Bold.ttf 30,032 14,449 10,748 25.61%
Amaranth-Regular.ttf 79,796 40,790 30,336 25.63%
Viga-Regular.ttf 28,436 15,861 11,796 25.63%
DroidKufi-Bold.ttf 81,220 41,746 31,044 25.64%
PlayfairDisplay-BoldItalic.ttf 182,084 93,537 69,536 25.66%
SourceSansPro-ExtraLight.ttf 150,152 62,115 46,172 25.67%
Homenaje-Regular.ttf 22,192 12,326 9,152 25.75%
Orbitron-Medium.ttf 39,816 17,297 12,840 25.77%
PlayfairDisplay-Regular.ttf 186,856 82,942 61,568 25.77%
SourceSansPro-Light.ttf 149,916 63,705 47,276 25.79%
KarlaTamilInclined-Bold.ttf 108,804 48,093 35,664 25.84%
Rosario-BoldItalic.ttf 33,044 19,951 14,796 25.84%
SourceSansPro-Black.ttf 148,176 61,363 45,508 25.84%
NoticiaText-Regular.ttf 115,288 60,930 45,172 25.86%
Chivo-BlackItalic.ttf 32,324 18,604 13,792 25.87%
RuslanDisplay.ttf 57,288 20,074 14,880 25.87%
DroidKufi-Regular.ttf 81,224 41,460 30,720 25.90%
AnonymousPro-Bold.ttf 153,708 68,341 50,632 25.91%
SourceSansPro-Regular.ttf 149,508 63,800 47,264 25.92%
SourceSansPro-Semibold.ttf 149,352 63,628 47,136 25.92%
Thabit-Bold.ttf 120,168 58,246 43,140 25.93%
Cantarell-Regular.ttf 47,504 24,786 18,356 25.94%
Rosario-Bold.ttf 31,864 19,649 14,548 25.96%
FasterOne-Regular.ttf 45,304 20,458 15,144 25.98%
CabinSketch-Regular.ttf 194,436 103,498 76,592 26.00%
SourceSansPro-Bold.ttf 148,616 63,224 46,784 26.00%
AnonymousPro-Italic.ttf 144,516 65,379 48,376 26.01%
KarlaTamilInclined-Regular.ttf 109,700 48,660 36,004 26.01%
NewsCycle-Regular.ttf 193,996 85,788 63,464 26.02%
Fondamento-Regular.ttf 87,160 44,321 32,784 26.03%
CarroisGothicSC-Regular.ttf 40,308 21,980 16,252 26.06%
Flavors-Regular.ttf 186,640 95,159 70,308 26.12%
CodaCaption-Heavy.ttf 74,044 41,028 30,308 26.13%
Italiana-Regular.ttf 31,828 14,980 11,064 26.14%
Flamenco-Regular.ttf 36,700 19,033 14,052 26.17%
NotoSerif-Italic.ttf 323,188 191,072 141,064 26.17%
MontserratAlternates-Regular.ttf 27,056 15,838 11,692 26.18%
Neuton-Bold.ttf 50,080 25,241 18,632 26.18%
SignikaNegative-Bold.ttf 53,644 27,745 20,472 26.21%
ExpletusSans-BoldItalic.ttf 49,428 22,515 16,612 26.22%
TitanOne-Regular.ttf 55,712 25,495 18,804 26.24%
ExpletusSans-SemiBoldItalic.ttf 49,088 23,464 17,304 26.25%
SignikaNegative-Regular.ttf 53,796 27,714 20,440 26.25%
PurplePurse-Regular.ttf 62,868 36,435 26,860 26.28%
PlayfairDisplay-BlackItalic.ttf 177,400 89,645 66,056 26.31%
Enriqueta-Bold.ttf 45,240 20,578 15,160 26.33%
MedulaOne-Regular.ttf 33,684 16,337 12,036 26.33%
PlayfairDisplay-Italic.ttf 174,856 88,988 65,532 26.36%
Abel-Regular.ttf 36,400 16,571 12,200 26.38%
LibreBaskerville-Bold.ttf 161,104 61,924 45,560 26.43%
Rosario-Italic.ttf 33,564 18,911 13,912 26.43%
Bangers.ttf 39,676 21,653 15,928 26.44%
Neuton-ExtraBold.ttf 50,324 24,456 17,984 26.46%
Neuton-Italic.ttf 74,204 34,909 25,672 26.46%
NoticiaText-BoldItalic.ttf 86,044 45,874 33,736 26.46%
Alegreya-Bold.ttf 177,576 82,161 60,360 26.53%
ExpletusSans-Regular.ttf 57,428 28,040 20,596 26.55%
Alegreya-Black.ttf 172,468 79,885 58,644 26.59%
BreeSerif-Regular.ttf 46,660 22,506 16,516 26.62%
Amaranth-Bold.ttf 73,756 37,188 27,284 26.63%
Bitter-Italic.ttf 39,420 20,167 14,788 26.67%
SignikaNegative-Light.ttf 55,032 27,079 19,836 26.75%
SignikaNegative-Semibold.ttf 53,404 27,637 20,244 26.75%
Amaranth-Italic.ttf 97,620 47,983 35,136 26.77%
Alegreya-BoldItalic.ttf 170,756 80,609 59,024 26.78%
SourceCodePro-ExtraLight.ttf 121,568 50,208 36,764 26.78%
Flamenco-Light.ttf 34,736 19,079 13,968 26.79%
Magra-Bold.ttf 44,500 24,307 17,796 26.79%
ArchivoNarrow-BoldItalic.ttf 130,268 54,474 39,848 26.85%
Federant-Regular.ttf 78,128 37,893 27,708 26.88%
SourceCodePro-Black.ttf 120,356 49,902 36,488 26.88%
ShareTech-Regular.ttf 29,536 14,975 10,948 26.89%
CrimsonText-Bold.ttf 93,848 44,634 32,628 26.90%
MontserratAlternates-Bold.ttf 28,640 16,733 12,232 26.90%
LibreBaskerville-Regular.ttf 160,364 60,847 44,476 26.91%
ConcertOne-Regular.ttf 71,072 34,208 24,996 26.93%
Junge-Regular.ttf 71,400 39,400 28,784 26.94%
Actor-Regular.ttf 64,944 32,840 23,988 26.95%
Exo-ExtraBoldItalic.ttf 104,552 50,727 37,044 26.97%
Kameron-Bold.ttf 64,796 38,345 27,996 26.99%
SourceCodePro-Light.ttf 121,284 51,046 37,252 27.02%
Alegreya-BlackItalic.ttf 173,232 81,132 59,192 27.04%
AnonymousPro-Regular.ttf 158,080 71,378 52,080 27.04%
Thabit-Oblique.ttf 135,552 61,858 45,128 27.05%
KaushanScript-Regular.ttf 210,672 79,092 57,668 27.09%
Neuton-ExtraLight.ttf 49,540 25,091 18,292 27.10%
Bitter-Regular.ttf 90,628 45,721 33,320 27.12%
RussoOne-Regular.ttf 39,324 19,380 14,124 27.12%
FreckleFace-Regular.ttf 121,088 68,180 49,680 27.13%
SourceCodePro-Bold.ttf 120,504 50,704 36,948 27.13%
Exo-BoldItalic.ttf 105,140 52,089 37,952 27.14%
SourceCodePro-Regular.ttf 120,548 50,836 37,024 27.17%
KeaniaOne-Regular.ttf 38,812 17,750 12,924 27.19%
SourceCodePro-Semibold.ttf 120,252 50,673 36,896 27.19%
AdventPro-Thin.ttf 46,800 23,375 17,016 27.20%
Raleway-Thin.ttf 123,940 53,223 38,736 27.22%
SourceCodePro-Medium.ttf 120,244 50,654 36,864 27.22%
ArchivoNarrow-Bold.ttf 126,704 50,571 36,784 27.26%
DeliusSwashCaps-Regular.ttf 63,052 30,626 22,272 27.28%
QuattrocentoSans-Italic.ttf 108,700 45,712 33,236 27.29%
CreteRound-Regular.ttf 59,312 24,624 17,900 27.31%
NoticiaText-Italic.ttf 87,392 46,147 33,520 27.36%
Muli-Italic.ttf 51,184 30,057 21,828 27.38%
ArchivoNarrow-Italic.ttf 126,504 53,110 38,552 27.41%
PatrickHandSC-Regular.ttf 152,608 66,771 48,464 27.42%
Exo-SemiBoldItalic.ttf 106,552 52,411 38,028 27.44%
Graduate-Regular.ttf 22,732 11,146 8,084 27.47%
JosefinSlab-Light.ttf 113,844 52,111 37,792 27.48%
Neuton-Light.ttf 49,792 24,988 18,112 27.52%
DroidSansEthiopic-Regular.ttf 227,928 91,327 66,188 27.53%
Exo-Medium.ttf 98,136 47,424 34,352 27.56%
ExpletusSans-Bold.ttf 62,984 29,588 21,432 27.57%
Exo-MediumItalic.ttf 106,744 52,878 38,284 27.60%
JosefinSlab-SemiBold.ttf 101,328 47,027 34,048 27.60%
Raleway-Heavy.ttf 129,520 56,860 41,124 27.67%
MavenPro-Regular.ttf 99,252 32,552 23,536 27.70%
RacingSansOne-Regular.ttf 145,796 58,644 42,388 27.72%
Exo-Bold.ttf 96,268 46,840 33,844 27.75%
Exo-ExtraBold.ttf 95,732 45,331 32,748 27.76%
Thabit-BoldOblique.ttf 130,392 61,926 44,716 27.79%
Alegreya-Regular.ttf 202,168 93,311 67,368 27.80%
Alegreya-Italic.ttf 199,744 92,731 66,936 27.82%
Exo-Light.ttf 98,124 47,015 33,932 27.83%
Simonetta-Black.ttf 124,700 65,234 47,080 27.83%
MavenPro-Medium.ttf 100,064 32,522 23,456 27.88%
NotoSans-Regular.ttf 306,788 177,443 127,932 27.90%
AdventPro-Regular.ttf 47,308 22,582 16,280 27.91%
NotoSansUI-Regular.ttf 306,804 177,446 127,928 27.91%
Exo-ExtraLightItalic.ttf 106,936 52,069 37,528 27.93%
JuliusSansOne-Regular.ttf 33,544 16,733 12,060 27.93%
DroidSansEthiopic-Bold.ttf 222,592 87,578 63,068 27.99%
NotoSans-Bold.ttf 311,480 178,445 128,492 27.99%
Exo-SemiBold.ttf 96,740 46,349 33,372 28.00%
JosefinSlab-Italic.ttf 115,492 54,095 38,948 28.00%
NotoSansUI-Bold.ttf 311,496 178,447 128,488 28.00%
Montserrat-Regular.ttf 29,016 17,069 12,288 28.01%
Montserrat-Bold.ttf 29,560 17,137 12,336 28.02%
Exo-LightItalic.ttf 107,040 52,270 37,616 28.04%
CroissantOne-Regular.ttf 54,744 22,891 16,464 28.08%
NotoSans-BoldItalic.ttf 290,436 173,805 125,000 28.08%
NotoSansUI-BoldItalic.ttf 290,452 173,811 125,004 28.08%
ScheherazadeRegOT.ttf 261,792 117,694 84,616 28.11%
GenBkBasBI.ttf 249,924 103,001 74,008 28.15%
Raleway-Regular.ttf 130,128 60,635 43,568 28.15%
JimNightshade-Regular.ttf 153,680 83,656 60,092 28.17%
NotoSans-Italic.ttf 279,268 166,921 119,880 28.18%
NotoSansUI-Italic.ttf 279,284 166,928 119,880 28.18%
MavenPro-Bold.ttf 99,544 32,709 23,484 28.20%
Wallpoet-Regular.ttf 39,904 20,112 14,440 28.20%
Raleway-ExtraLight.ttf 122,400 57,998 41,636 28.21%
AdventPro-ExtraLight.ttf 46,840 23,426 16,816 28.22%
Raleway-Light.ttf 132,200 60,257 43,244 28.23%
AdventPro-Light.ttf 46,788 23,145 16,608 28.24%
Aldrich-Regular.ttf 57,020 27,312 19,596 28.25%
Raleway-Medium.ttf 129,308 60,478 43,384 28.26%
Sevillana-Regular.ttf 162,872 79,610 57,108 28.27%
GenBasBI.ttf 250,668 104,329 74,824 28.28%
JotiOne-Regular.ttf 45,584 21,594 15,488 28.28%
Quantico-BoldItalic.ttf 20,660 12,008 8,604 28.35%
Raleway-SemiBold.ttf 130,880 61,001 43,708 28.35%
AbrilFatface-Regular.ttf 67,364 29,179 20,900 28.37%
Raleway-Bold.ttf 128,248 60,456 43,296 28.38%
HappyMonkey-Regular.ttf 76,344 40,091 28,704 28.40%
Magra-Regular.ttf 45,536 23,038 16,492 28.41%
MedievalSharp.ttf 148,712 75,457 53,988 28.45%
MavenPro-Black.ttf 99,116 32,597 23,320 28.46%
AdventPro-Bold.ttf 56,448 27,282 19,508 28.49%
JosefinSlab-Bold.ttf 88,308 42,678 30,516 28.50%
Raleway-ExtraBold.ttf 125,136 59,794 42,748 28.51%
SquadaOne-Regular.ttf 19,072 9,297 6,644 28.54%
MaidenOrange.ttf 60,928 32,897 23,504 28.55%
Muli-Regular.ttf 56,260 32,060 22,908 28.55%
Almendra-Regular.ttf 68,744 28,739 20,524 28.58%
Righteous-Regular.ttf 43,104 23,474 16,760 28.60%
SpecialElite.ttf 166,224 91,842 65,564 28.61%
Rye-Regular.ttf 183,244 66,273 47,300 28.63%
TitilliumWeb-Black.ttf 49,356 24,974 17,824 28.63%
DancingScript-Bold.ttf 115,568 61,301 43,744 28.64%
Simonetta-BlackItalic.ttf 123,036 64,310 45,864 28.68%
Allura-Regular.ttf 88,084 40,910 29,152 28.74%
PatrickHand-Regular.ttf 214,772 88,062 62,740 28.75%
Poly-Regular.ttf 76,800 33,275 23,708 28.75%
Buenard-Bold.ttf 58,992 23,923 17,028 28.82%
Baumans-Regular.ttf 53,408 28,466 20,260 28.83%
Buenard-Regular.ttf 60,188 23,853 16,976 28.83%
ModernAntiqua-Regular.ttf 70,108 26,768 19,052 28.83%
JosefinSlab-Regular.ttf 110,740 52,466 37,332 28.85%
Bevan.ttf 90,652 49,226 35,008 28.88%
ExpletusSans-SemiBold.ttf 67,948 32,872 23,360 28.94%
Quantico-Bold.ttf 20,896 11,500 8,172 28.94%
Brawler-Regular.ttf 106,044 55,391 39,352 28.96%
Quattrocento-Bold.ttf 164,948 60,124 42,688 29.00%
DuruSans-Regular.ttf 88,088 40,007 28,384 29.05%
Enriqueta-Regular.ttf 53,480 22,580 16,020 29.05%
CantoraOne-Regular.ttf 163,116 64,447 45,720 29.06%
ExpletusSans-Medium.ttf 69,076 32,957 23,372 29.08%
Quantico-Regular.ttf 20,940 11,453 8,120 29.10%
AdventPro-Medium.ttf 51,424 26,287 18,636 29.11%
AdventPro-SemiBold.ttf 51,200 26,514 18,796 29.11%
CrimsonText-Roman.ttf 189,604 96,054 68,096 29.11%
GlassAntiqua-Regular.ttf 63,012 26,618 18,844 29.21%
Muli-LightItalic.ttf 50,688 29,924 21,184 29.21%
Simonetta-Regular.ttf 132,084 69,907 49,464 29.24%
JosefinSlab-SemiBoldItalic.ttf 143,220 64,799 45,824 29.28%
ArchivoNarrow-Regular.ttf 145,692 56,339 39,824 29.31%
Limelight-Regular.ttf 132,292 52,537 37,136 29.31%
TerminalDosis-Light.ttf 109,500 52,532 37,124 29.33%
DancingScript-Regular.ttf 116,580 60,252 42,552 29.38%
AnticDidone-Regular.ttf 39,688 19,040 13,444 29.39%
Roboto-LightItalic.ttf 162,920 76,295 53,868 29.40%
AlegreyaSC-Italic.ttf 73,720 32,181 22,708 29.44%
AlegreyaSC-Bold.ttf 72,460 32,248 22,752 29.45%
LateefRegOT.ttf 246,224 108,675 76,668 29.45%
AlegreyaSC-BoldItalic.ttf 73,096 32,680 23,048 29.47%
UnicaOne-Regular.ttf 39,924 16,968 11,960 29.51%
Exo-ExtraLight.ttf 93,444 42,883 30,224 29.52%
Roboto-Italic.ttf 167,908 78,873 55,588 29.52%
Roboto-MediumItalic.ttf 165,280 77,744 54,788 29.53%
Quantico-Italic.ttf 22,144 12,341 8,696 29.54%
Ultra.ttf 53,208 27,754 19,548 29.57%
AlegreyaSC-BlackItalic.ttf 72,320 31,576 22,236 29.58%
Capriola-Regular.ttf 106,632 47,876 33,712 29.58%
Megrim.ttf 57,872 27,032 19,032 29.59%
RobotoCondensed-BoldItalic.ttf 164,840 77,604 54,640 29.59%
AverageSans-Regular.ttf 44,012 20,642 14,528 29.62%
Gorditas-Bold.ttf 109,800 59,740 42,032 29.64%
RobotoCondensed-Italic.ttf 163,900 76,850 54,064 29.65%
Exo-BlackItalic.ttf 101,132 45,556 32,040 29.67%
Italianno-Regular.ttf 137,364 60,170 42,312 29.68%
Gorditas-Regular.ttf 110,336 62,144 43,688 29.70%
AlegreyaSC-Black.ttf 71,140 30,530 21,460 29.71%
Lekton-Bold.ttf 113,684 49,162 34,552 29.72%
Roboto-BlackItalic.ttf 167,252 79,127 55,596 29.74%
RobotoCondensed-LightItalic.ttf 164,432 76,344 53,632 29.75%
Armata-Regular.ttf 90,596 40,855 28,696 29.76%
CreteRound-Italic.ttf 67,264 27,995 19,664 29.76%
Roboto-Medium.ttf 153,780 73,316 51,500 29.76%
Roboto-Light.ttf 159,640 74,179 52,072 29.80%
AnticSlab-Regular.ttf 36,972 18,258 12,816 29.81%
Exo-Black.ttf 91,504 41,139 28,864 29.84%
RobotoCondensed-Bold.ttf 161,416 74,142 51,984 29.89%
Exo-ThinItalic.ttf 104,444 47,398 33,228 29.90%
Sanchez-Regular.ttf 72,552 26,772 18,768 29.90%
Exo-Regular.ttf 93,848 42,641 29,876 29.94%
Exo-Italic.ttf 104,188 47,139 33,000 29.99%
Exo-Thin.ttf 93,100 41,972 29,380 30.00%
Neucha.ttf 141,832 67,117 46,980 30.00%
EmblemaOne-Regular.ttf 61,832 28,840 20,180 30.03%
Roboto-BoldItalic.ttf 161,752 77,429 54,156 30.06%
Lekton-Regular.ttf 114,320 48,654 34,020 30.08%
Poly-Italic.ttf 74,236 31,998 22,364 30.11%
Cardo-Italic.ttf 262,868 153,494 107,216 30.15%
ExpletusSans-MediumItalic.ttf 74,072 33,133 23,140 30.16%
CantataOne-Regular.ttf 96,828 43,197 30,156 30.19%
Petrona-Regular.ttf 80,760 29,869 20,852 30.19%
RobotoCondensed-Regular.ttf 159,868 72,794 50,820 30.19%
RobotoCondensed-Light.ttf 160,800 72,826 50,824 30.21%
BlackOpsOne-Regular.ttf 76,116 33,466 23,344 30.25%
TenorSans-Regular.ttf 131,896 52,474 36,592 30.27%
Cardo-Bold.ttf 348,320 192,401 134,100 30.30%
Simonetta-Italic.ttf 122,356 64,712 45,100 30.31%
SonsieOne-Regular.ttf 75,992 35,111 24,468 30.31%
JockeyOne-Regular.ttf 48,608 22,457 15,640 30.36%
HammersmithOne-Regular.ttf 103,428 45,007 31,340 30.37%
Roboto-Black.ttf 162,160 76,244 53,012 30.47%
Roboto-Bold.ttf 152,652 72,139 50,128 30.51%
Delius-Regular.ttf 77,488 37,208 25,840 30.55%
Underdog-Regular.ttf 101,480 51,895 36,036 30.56%
AlegreyaSC-Regular.ttf 73,388 31,234 21,676 30.60%
Share-Regular.ttf 91,940 45,453 31,540 30.61%
KarlaTamilUpright-Regular.ttf 144,440 65,347 45,312 30.66%
Share-Bold.ttf 91,048 45,364 31,452 30.67%
Voces-Regular.ttf 67,696 35,034 24,288 30.67%
Lobster.ttf 140,856 59,161 40,996 30.70%
Sanchez-Italic.ttf 75,212 29,144 20,196 30.70%
GreatVibes-Regular.ttf 106,004 49,905 34,548 30.77%
KarlaTamilUpright-Bold.ttf 143,224 64,521 44,668 30.77%
GFSDidot-Regular.ttf 191,168 79,449 54,972 30.81%
MetalMania-Regular.ttf 254,568 123,179 85,224 30.81%
Roboto-Regular.ttf 166,668 77,182 53,392 30.82%
Ledger-Regular.ttf 62,320 28,614 19,792 30.83%
MeieScript-Regular.ttf 128,428 59,965 41,480 30.83%
DaysOne-Regular.ttf 65,580 30,745 21,264 30.84%
PirataOne-Regular.ttf 56,316 20,241 13,976 30.95%
MarckScript-Regular.ttf 83,664 39,141 26,980 31.07%
FontdinerSwanky.ttf 45,524 26,029 17,912 31.18%
NovaRound.ttf 93,212 41,294 28,420 31.18%
Rationale-Regular.ttf 57,156 28,176 19,372 31.25%
JosefinSlab-LightItalic.ttf 160,144 72,306 49,692 31.28%
Share-Italic.ttf 76,608 36,955 25,372 31.34%
FrancoisOne.ttf 113,112 54,859 37,648 31.37%
GenBkBasI.ttf 266,156 109,733 75,292 31.39%
GenBkBasR.ttf 272,460 106,817 73,248 31.43%
Muli-Light.ttf 60,660 34,126 23,396 31.44%
PoiretOne-Regular.ttf 47,708 22,817 15,640 31.45%
Courgette-Regular.ttf 122,072 55,198 37,828 31.47%
Comfortaa-Light.ttf 127,532 66,704 45,664 31.54%
Metamorphous-Regular.ttf 135,740 54,354 37,208 31.55%
Antic-Regular.ttf 39,320 20,858 14,276 31.56%
Sarina-Regular.ttf 96,104 42,927 29,380 31.56%
Share-BoldItalic.ttf 75,836 36,905 25,244 31.60%
Dosis-ExtraBold.ttf 137,200 66,373 45,392 31.61%
NovaSlim.ttf 93,956 39,954 27,320 31.62%
Dosis-Bold.ttf 136,412 66,426 45,404 31.65%
NewRocker-Regular.ttf 173,224 65,420 44,700 31.67%
Fasthand-Regular.ttf 124,828 43,538 29,744 31.68%
GenBasI.ttf 263,504 106,990 73,072 31.70%
NovaFlat.ttf 93,844 39,823 27,200 31.70%
GenBasB.ttf 271,648 107,984 73,704 31.75%
Kameron-Regular.ttf 76,688 41,225 28,136 31.75%
TitilliumWeb-Bold.ttf 59,908 30,394 20,744 31.75%
NovaSquare.ttf 87,968 36,380 24,736 32.01%
Koulen.ttf 246,028 59,084 40,160 32.03%
Comfortaa-Bold.ttf 105,220 54,571 37,080 32.05%
Padauk-Bold.ttf 443,268 134,764 91,572 32.05%
NovaCut.ttf 94,488 40,347 27,412 32.06%
GenBasR.ttf 269,048 102,769 69,772 32.11%
Dosis-SemiBold.ttf 135,520 65,579 44,504 32.14%
Amaranth-BoldItalic.ttf 107,536 47,813 32,432 32.17%
Crushed.ttf 57,856 28,036 18,996 32.24%
NovaOval.ttf 96,656 41,715 28,252 32.27%
Dosis-Medium.ttf 136,444 65,643 44,388 32.38%
Amarante-Regular.ttf 148,116 55,412 37,448 32.42%
Redressed.ttf 79,220 43,630 29,484 32.42%
GenBkBasB.ttf 271,832 107,566 72,580 32.53%
Lato-BlackItalic.ttf 111,616 50,239 33,856 32.61%
Dosis-Regular.ttf 136,940 65,627 44,196 32.66%
Amiri-Bold.ttf 602,420 234,560 157,812 32.72%
Snippet.ttf 39,284 19,454 13,088 32.72%
SupermercadoOne-Regular.ttf 143,180 51,416 34,592 32.72%
Judson-Bold.ttf 195,504 87,153 58,600 32.76%
NovaScript.ttf 117,376 48,046 32,284 32.81%
Dosis-Light.ttf 136,376 65,177 43,752 32.87%
Bayon.ttf 248,208 56,680 38,032 32.90%
TitilliumWeb-ExtraLight.ttf 63,124 31,683 21,224 33.01%
EBGaramond-Regular.ttf 231,904 120,366 80,588 33.05%
Varela-Regular.ttf 188,240 79,105 52,948 33.07%
Khmer.ttf 343,064 74,864 50,084 33.10%
TitilliumWeb-SemiBold.ttf 63,044 32,122 21,472 33.15%
TitilliumWeb-Light.ttf 64,032 32,771 21,904 33.16%
Bokor.ttf 349,240 66,617 44,520 33.17%
Oranienbaum-Regular.ttf 141,220 61,982 41,424 33.17%
TitilliumWeb-Regular.ttf 63,752 32,571 21,764 33.18%
TulpenOne-Regular.ttf 35,244 19,397 12,960 33.19%
NovaMono.ttf 302,380 148,633 99,280 33.20%
Dosis-ExtraLight.ttf 135,140 63,640 42,508 33.21%
DidactGothic.ttf 246,244 92,750 61,928 33.23%
Cuprum-Regular.ttf 100,608 44,870 29,936 33.28%
Judson-Regular.ttf 220,844 100,346 66,944 33.29%
ProstoOne-Regular.ttf 96,868 49,021 32,704 33.29%
Dangrek.ttf 269,620 60,834 40,528 33.38%
Battambang-Bold.ttf 346,212 75,869 50,520 33.41%
Battambang-Regular.ttf 357,868 78,266 52,116 33.41%
Audiowide-Regular.ttf 70,900 33,187 22,084 33.46%
HeadlandOne-Regular.ttf 149,692 59,235 39,416 33.46%
Wellfleet-Regular.ttf 82,016 34,544 22,976 33.49%
Cuprum-Bold.ttf 100,172 44,620 29,604 33.65%
IstokWeb-BoldItalic.ttf 238,084 95,047 63,068 33.65%
IstokWeb-Italic.ttf 238,044 95,029 63,056 33.65%
JosefinSansStd-Light.ttf 45,564 21,521 14,280 33.65%
TitilliumWeb-BoldItalic.ttf 69,796 35,475 23,532 33.67%
Aclonica.ttf 68,784 37,586 24,928 33.68%
LibreBaskerville-Italic.ttf 175,480 74,638 49,500 33.68%
NanumGothicCoding-Bold.ttf 2,246,240 1,020,726 676,804 33.69%
Andada-Regular.ttf 108,620 33,214 22,012 33.73%
Amiri-BoldSlanted.ttf 606,816 245,340 162,492 33.77%
Lato-Italic.ttf 118,352 52,216 34,536 33.86%
Preahvihear.ttf 253,968 54,091 35,764 33.88%
Judson-Italic.ttf 212,008 97,510 64,408 33.95%
NanumGothic-Bold.ttf 2,300,388 1,029,963 679,948 33.98%
Lato-BoldItalic.ttf 120,312 52,556 34,680 34.01%
Smokum-Regular.ttf 63,948 34,498 22,760 34.03%
Siemreap.ttf 285,320 61,457 40,528 34.05%
Cuprum-BoldItalic.ttf 96,188 43,442 28,644 34.06%
Cuprum-Italic.ttf 96,400 43,752 28,828 34.11%
Angkor.ttf 266,096 54,081 35,584 34.20%
NixieOne-Regular.ttf 52,580 24,683 16,232 34.24%
Chenla.ttf 293,588 62,109 40,832 34.26%
Suwannaphum.ttf 336,768 65,835 43,276 34.27%
Content-Bold.ttf 306,292 63,721 41,880 34.28%
TitilliumWeb-ExtraLightItalic.ttf 67,788 34,751 22,836 34.29%
OdorMeanChey.ttf 310,824 63,473 41,652 34.38%
Content-Regular.ttf 313,092 64,157 42,088 34.40%
Moulpali.ttf 308,668 64,937 42,580 34.43%
Ranchers-Regular.ttf 167,420 68,795 45,100 34.44%
Cardo-Regular.ttf 400,468 224,880 147,236 34.53%
Lato-Black.ttf 114,588 49,818 32,588 34.59%
IstokWeb-Bold.ttf 251,388 98,180 64,152 34.66%
Amiri-Regular.ttf 608,236 239,808 156,640 34.68%
Comfortaa-Regular.ttf 98,408 47,175 30,808 34.69%
PetitFormalScript-Regular.ttf 175,068 70,077 45,768 34.69%
Moul.ttf 386,968 75,756 49,472 34.70%
NanumGothicCoding-Regular.ttf 2,315,924 1,001,054 652,800 34.79%
Syncopate-Regular.ttf 175,616 68,973 44,940 34.84%
TitilliumWeb-LightItalic.ttf 71,720 36,920 24,056 34.84%
Lato-Regular.ttf 120,196 51,328 33,420 34.89%
TitilliumWeb-Italic.ttf 72,416 37,259 24,244 34.93%
TitilliumWeb-SemiBoldItalic.ttf 71,812 37,143 24,116 35.07%
NanumGothic-Regular.ttf 2,369,696 1,009,397 654,980 35.11%
Signika-Regular.ttf 141,132 77,731 50,420 35.14%
Amiri-Slanted.ttf 620,348 250,364 161,564 35.47%
Alike-Regular.ttf 107,932 53,402 34,372 35.64%
Hanalei-Regular.ttf 184,176 89,201 57,404 35.65%
LobsterTwo-Bold.ttf 241,104 89,313 57,476 35.65%
Andika-R.ttf 1,469,776 528,762 340,120 35.68%
ReenieBeanie.ttf 147,872 64,356 41,328 35.78%
LobsterTwo-BoldItalic.ttf 235,632 86,239 55,372 35.79%
Taprom.ttf 331,876 67,540 43,332 35.84%
VT323-Regular.ttf 86,576 18,929 12,136 35.89%
Lato-Bold.ttf 121,788 51,829 33,100 36.14%
Freehand.ttf 462,012 81,240 51,804 36.23%
NanumGothic-ExtraBold.ttf 2,355,216 1,021,593 650,624 36.31%
LuckiestGuy.ttf 73,728 40,103 25,320 36.86%
Signika-Bold.ttf 161,116 79,294 50,008 36.93%
Signika-Light.ttf 186,036 89,320 56,276 37.00%
Artifika-Regular.ttf 131,788 68,492 43,104 37.07%
LobsterTwo-Italic.ttf 249,896 87,779 55,108 37.22%
Padauk-Regular.ttf 472,488 142,004 88,972 37.35%
LobsterTwo-Regular.ttf 254,332 90,822 56,784 37.48%
WireOne.ttf 140,668 57,769 36,092 37.52%
PressStart2P-Regular.ttf 69,748 16,196 10,108 37.59%
Vibur-Regular.ttf 173,604 91,431 57,060 37.59%
Miltonian-Regular.ttf 124,092 71,355 44,524 37.60%
Signika-Semibold.ttf 166,244 80,705 50,168 37.84%
Allan-Bold.ttf 115,328 60,691 37,668 37.93%
Lato-Hairline.ttf 115,316 50,056 31,012 38.05%
Lora-Italic.ttf 153,040 78,224 48,456 38.05%
Philosopher-Italic.ttf 240,984 106,650 65,692 38.40%
Lato-HairlineItalic.ttf 91,460 41,598 25,616 38.42%
Lato-LightItalic.ttf 91,600 42,718 26,252 38.55%
AveriaSerifLibre-Light.ttf 109,972 62,554 38,288 38.79%
IstokWeb-Regular.ttf 348,780 141,608 86,160 39.16%
Philosopher-BoldItalic.ttf 220,080 99,163 60,324 39.17%
AveriaSerifLibre-Regular.ttf 109,988 62,200 37,764 39.29%
Metal.ttf 409,660 76,190 46,236 39.31%
LoveYaLikeASister.ttf 271,924 135,516 81,956 39.52%
AveriaLibre-Light.ttf 108,192 61,366 37,084 39.57%
MiltonianTattoo-Regular.ttf 189,460 100,012 60,420 39.59%
Lora-Regular.ttf 167,396 85,978 51,848 39.70%
Play-Regular.ttf 171,084 65,846 39,696 39.71%
AveriaSansLibre-Light.ttf 107,752 60,856 36,668 39.75%
Play-Bold.ttf 170,232 64,627 38,928 39.77%
Philosopher-Bold.ttf 211,380 94,633 56,896 39.88%
AveriaLibre-Regular.ttf 108,468 61,334 36,864 39.90%
AveriaSansLibre-Regular.ttf 108,360 61,034 36,648 39.95%
AveriaSerifLibre-Bold.ttf 113,956 63,966 38,380 40.00%
Lato-Light.ttf 122,524 54,330 32,592 40.01%
Tharlon-Regular.ttf 353,228 138,003 82,756 40.03%
Adamina-Regular.ttf 117,340 57,369 34,400 40.04%
Vidaloka-Regular.ttf 135,704 66,760 39,940 40.17%
Marvel-Bold.ttf 36,968 21,048 12,588 40.19%
Philosopher-Regular.ttf 257,540 110,339 65,940 40.24%
AveriaSansLibre-Bold.ttf 113,016 63,492 37,880 40.34%
AveriaLibre-Bold.ttf 112,228 63,173 37,608 40.47%
AveriaGruesaLibre-Regular.ttf 111,544 62,718 37,316 40.50%
Lora-BoldItalic.ttf 173,080 89,396 53,104 40.60%
CabinCondensed-Regular.ttf 153,128 77,758 46,088 40.73%
Lora-Bold.ttf 162,544 81,271 47,904 41.06%
Caudex-Bold.ttf 471,708 195,910 115,360 41.12%
KellySlab-Regular.ttf 77,816 37,832 22,252 41.18%
Caudex-Regular.ttf 466,324 188,220 110,240 41.43%
Marvel-BoldItalic.ttf 40,080 22,776 13,300 41.61%
Marvel-Regular.ttf 38,220 21,257 12,400 41.67%
Metrophobic.ttf 68,928 38,015 22,148 41.74%
PT_Serif-Caption-Web-Italic.ttf 406,612 197,621 115,140 41.74%
Trocchi-Regular.ttf 143,880 64,403 37,464 41.83%
Mako-Regular.ttf 87,784 47,683 27,692 41.92%
PT_Serif-Caption-Web-Regular.ttf 399,840 200,560 116,404 41.96%
PT_Serif-Web-Italic.ttf 375,356 186,079 107,968 41.98%
Caudex-BoldItalic.ttf 555,156 224,790 130,276 42.05%
JustAnotherHand.ttf 192,544 94,045 54,492 42.06%
AveriaSerifLibre-Italic.ttf 130,956 70,861 41,016 42.12%
Alice-Regular.ttf 150,512 71,233 41,108 42.29%
AveriaSerifLibre-LightItalic.ttf 135,976 72,972 42,068 42.35%
Volkhov-BoldItalic.ttf 102,728 51,440 29,608 42.44%
Buda-Light.ttf 105,988 53,729 30,920 42.45%
PT_Sans-Web-Regular.ttf 442,960 225,325 129,600 42.48%
PT_Sans-Caption-Web-Regular.ttf 387,192 192,239 110,372 42.59%
AveriaSansLibre-Italic.ttf 128,896 69,829 40,016 42.69%
Marvel-Italic.ttf 40,668 22,654 12,976 42.72%
Volkhov-Bold.ttf 112,220 54,784 31,372 42.74%
AveriaSerifLibre-BoldItalic.ttf 138,208 74,215 42,476 42.77%
AveriaSansLibre-LightItalic.ttf 134,200 72,107 41,260 42.78%
AveriaLibre-Italic.ttf 128,848 69,593 39,808 42.80%
Cabin-BoldItalic.ttf 176,992 81,962 46,880 42.80%
Cabin-SemiBold.ttf 173,020 78,409 44,808 42.85%
Volkhov-Regular.ttf 112,276 55,244 31,564 42.86%
PT_Serif-Web-Regular.ttf 359,048 176,546 100,784 42.91%
AveriaLibre-LightItalic.ttf 133,544 71,539 40,832 42.92%
Caudex-Italic.ttf 559,440 218,129 124,396 42.97%
CabinCondensed-Bold.ttf 166,912 75,687 43,152 42.99%
CabinCondensed-SemiBold.ttf 168,732 76,685 43,700 43.01%
Cabin-SemiBoldItalic.ttf 181,880 84,399 48,068 43.05%
CabinCondensed-Medium.ttf 167,004 75,690 43,100 43.06%
Cabin-Italic.ttf 190,744 88,467 50,332 43.11%
PT_Sans-Narrow-Web-Bold.ttf 487,720 249,274 141,392 43.28%
Cabin-MediumItalic.ttf 183,844 85,737 48,592 43.32%
Cabin-Medium.ttf 176,076 80,003 45,292 43.39%
Cabin-Regular.ttf 188,320 85,861 48,604 43.39%
AveriaSansLibre-BoldItalic.ttf 135,852 73,092 41,332 43.45%
OpenSans-CondBold.ttf 264,372 122,222 69,116 43.45%
AveriaLibre-BoldItalic.ttf 135,664 72,901 41,212 43.47%
Cabin-Bold.ttf 172,576 77,726 43,928 43.48%
PT_Sans-Web-Italic.ttf 436,452 219,713 123,912 43.60%
AlikeAngular-Regular.ttf 123,280 59,754 33,680 43.64%
Shanti-Regular.ttf 91,352 49,659 27,908 43.80%
Volkhov-Italic.ttf 102,360 49,266 27,684 43.81%
Geostar-Regular.ttf 41,288 21,524 12,048 44.03%
JosefinSlab-Thin.ttf 200,012 69,017 38,616 44.05%
PT_Sans-Web-Bold.ttf 470,240 238,930 133,412 44.16%
PT_Serif-Web-Bold.ttf 339,996 161,672 90,280 44.16%
Roboto-ThinItalic.ttf 197,892 105,226 58,608 44.30%
PT_Sans-Web-BoldItalic.ttf 375,204 183,406 102,112 44.32%
Aubrey-Regular.ttf 112,416 55,237 30,736 44.36%
Roboto-Thin.ttf 195,576 101,919 56,676 44.39%
PT_Sans-Narrow-Web-Regular.ttf 396,212 192,746 106,972 44.50%
JosefinSlab-ThinItalic.ttf 197,404 67,275 37,256 44.62%
PT_Serif-Web-BoldItalic.ttf 337,580 160,913 89,040 44.67%
Forum-Regular.ttf 303,316 131,786 72,412 45.05%
NanumMyeongjo-Bold.ttf 4,144,216 1,543,206 845,344 45.22%
GeostarFill-Regular.ttf 38,824 20,280 11,096 45.29%
GFSNeohellenicItalic.ttf 369,060 117,441 63,048 46.32%
OpenSans-Semibold.ttf 221,328 112,398 60,216 46.43%
NanumMyeongjo-ExtraBold.ttf 4,739,716 1,913,882 1,023,996 46.50%
Federo-Regular.ttf 145,056 69,005 36,848 46.60%
PT_Sans-Caption-Web-Bold.ttf 398,780 194,274 103,420 46.77%
OpenSans-Bold.ttf 224,592 112,955 60,036 46.85%
OpenSans-ExtraBold.ttf 222,584 112,505 59,780 46.86%
GFSNeohellenicBold.ttf 344,708 109,095 57,904 46.92%
OpenSans-Light.ttf 222,412 112,061 59,412 46.98%
OpenSans-CondLight.ttf 221,108 110,845 58,632 47.10%
OpenSans-Regular.ttf 217,360 110,303 58,300 47.15%
OpenSans-SemiboldItalic.ttf 212,820 108,805 57,400 47.25%
NanumMyeongjo-Regular.ttf 3,800,008 1,347,779 708,720 47.42%
RalewayDots-Regular.ttf 465,136 120,281 63,132 47.51%
OpenSans-Italic.ttf 212,896 108,261 56,448 47.86%
GFSNeohellenicBoldItalic.ttf 362,080 114,763 59,520 48.14%
OpenSans-BoldItalic.ttf 213,292 108,167 56,036 48.19%
GFSNeohellenic.ttf 460,072 152,304 78,872 48.21%
OpenSans-ExtraBoldItalic.ttf 213,420 108,625 56,192 48.27%
OpenSans-LightItalic.ttf 213,128 108,273 55,916 48.36%
OpenSans-CondLightItalic.ttf 210,804 106,938 55,064 48.51%
NanumPenScript-Regular.ttf 3,789,752 1,543,584 785,860 49.09%
Questrial-Regular.ttf 64,552 32,643 15,776 51.67%
NanumBrushScript-Regular.ttf 3,745,376 1,517,249 714,588 52.90%
VarelaRound-Regular.ttf 84,028 40,975 19,100 53.39%
Jura-DemiBold.ttf 326,140 151,042 67,932 55.02%
Jura-Medium.ttf 345,824 155,993 70,044 55.10%
Jura-Regular.ttf 338,940 154,313 69,008 55.28%
PaytoneOne.ttf 193,472 91,082 39,128 57.04%
Jura-Light.ttf 266,744 117,034 45,768 60.89%


Appendix B: MicroType Express-style plus Brotli compression data

Compression results, Google Fonts corpus, with Brotli [October 2013]

Average compression improvement with WOFF 2.0
 25.11%
Median  23.94%
Standard deviation  6.46%
Minimum  11.93%
Maximum  55.32%

Font filename Original (bytes) WOFF 1.0 (gzip) WOFF 2.0 (Brotli) % Improvement
Total Corpus 156,317,376 71,154,972 50,524,080 28.99%
Rochester-Regular 37,848 24,236 21,344 11.93%
Tinos-Italic 58,116 39,036 34,264 12.22%
Tinos-Bold 55,128 37,488 32,860 12.35%
Cousine-Italic 49,600 34,360 29,984 12.74%
Tinos-BoldItalic 62,032 39,936 34,800 12.86%
Cousine-Regular 43,912 30,404 26,492 12.87%
DroidSerif-Bold 48,876 31,584 27,492 12.96%
Pacifico 43,632 28,736 24,852 13.52%
Tinos-Regular 57,964 38,192 33,028 13.52%
DroidSansThai-Regular 35,688 18,880 16,320 13.56%
Cousine-BoldItalic 45,484 31,380 27,124 13.56%
Miniver-Regular 45,824 29,188 25,184 13.72%
Damion-Regular 51,996 30,244 26,088 13.74%
Chewy 41,192 24,876 21,456 13.75%
NotoSansThai-Regular 32,900 17,880 15,420 13.76%
NotoSansThaiUI-Regular 33,060 18,032 15,548 13.78%
GochiHand-Regular 37,352 25,152 21,632 13.99%
Cousine-Bold 42,200 29,280 25,180 14.00%
DroidSerif 43,648 27,824 23,916 14.05%
Arbutus-Regular 81,816 41,356 35,504 14.15%
DroidSerif-BoldItalic 45,652 29,124 24,992 14.19%
DroidSans-Bold 42,480 27,548 23,612 14.29%
HennyPenny-Regular 92,596 58,792 50,328 14.40%
DroidSans 41,028 26,344 22,532 14.47%
MysteryQuest-Regular 42,124 27,388 23,360 14.71%
CherryCreamSoda 50,340 31,112 26,472 14.91%
SigmarOne 66,504 39,204 33,208 15.29%
Arvo-Regular 40,524 27,168 22,996 15.36%
Cedarville-Cursive 69,436 37,888 32,060 15.38%
Phetsarath-Bold 156,840 33,136 28,020 15.44%
SnowburstOne-Regular 68,360 47,036 39,768 15.45%
Arvo-BoldItalic 43,128 27,892 23,560 15.53%
Calligraffitti-Regular 59,852 37,992 32,060 15.61%
Arvo-Italic 43,816 28,172 23,760 15.66%
Satisfy-Regular 47,928 28,600 24,120 15.66%
Oregano-Regular 80,320 44,228 37,284 15.70%
IrishGrowler 52,668 29,820 25,112 15.79%
Oregano-Italic 87,000 47,904 40,328 15.81%
Slackey 37,932 23,956 20,164 15.83%
SwankyandMooMoo 58,892 30,852 25,968 15.83%
Arvo-Bold 37,564 25,308 21,296 15.85%
Kavoon-Regular 58,012 35,244 29,636 15.91%
DroidSerifThai-Bold 28,720 16,620 13,968 15.96%
DenkOne-Regular 45,892 24,936 20,956 15.96%
FingerPaint-Regular 107,404 67,928 57,052 16.01%
Asset 52,016 25,656 21,548 16.01%
IMFeFCit28P 158,184 94,524 79,372 16.03%
ClickerScript-Regular 64,012 34,960 29,348 16.05%
Engagement-Regular 76,408 39,292 32,960 16.12%
DonegalOne-Regular 56,944 34,988 29,324 16.19%
IMFeFCrm28P 145,832 84,480 70,804 16.19%
GloriaHallelujah 60,052 32,592 27,300 16.24%
Zeyada 63,064 33,048 27,680 16.24%
NotoSerifThai-Bold 28,380 16,748 14,024 16.26%
IrishGrover 52,688 29,856 24,988 16.30%
OldStandard-Italic 65,852 35,272 29,516 16.32%
ComingSoon 59,204 34,960 29,220 16.42%
GoudyBookletter1911 73,492 42,280 35,336 16.42%
LifeSavers-Bold 179,816 70,996 59,308 16.46%
Smythe-Regular 90,652 46,740 39,020 16.52%
NotoSansLaoUI-Regular 40,320 19,328 16,124 16.58%
IndieFlower 61,556 33,044 27,564 16.58%
CraftyGirls 75,420 47,552 39,644 16.63%
Michroma 64,940 33,368 27,800 16.69%
NotoSansThaiUI-Bold 27,960 16,412 13,672 16.70%
NotoSansThai-Bold 27,876 16,316 13,588 16.72%
Stalemate-Regular 75,356 39,704 33,048 16.76%
Eater-Regular 83,928 56,068 46,668 16.77%
Rancho-Regular 44,840 26,328 21,912 16.77%
Knewave-Regular 32,460 21,904 18,224 16.80%
IMFeFCsc28P 136,188 77,684 64,616 16.82%
Molle-Regular 52,204 34,140 28,388 16.85%
TheGirlNextDoor 53,460 32,440 26,972 16.86%
NotoSerifArmenian-Bold 24,672 15,748 13,092 16.87%
EaterCaps-Regular 84,116 56,188 46,696 16.89%
DroidSansThai-Bold 28,244 16,188 13,452 16.90%
jsMath-cmmi10 46,148 27,164 22,552 16.98%
Gruppo-Regular 84,716 34,696 28,800 16.99%
ShadowsIntoLight 54,304 28,500 23,656 17.00%
NotoSerifThai-Regular 28,952 16,540 13,728 17.00%
LaBelleAurore 59,624 31,264 25,944 17.02%
ArchitectsDaughter 43,380 23,900 19,820 17.07%
Pompiere-Regular 36,736 25,220 20,908 17.10%
RockSalt 125,136 75,292 62,392 17.13%
JacquesFrancois-Regular 60,448 36,460 30,204 17.16%
Romanesco-Regular 52,528 28,456 23,572 17.16%
DroidSerifThai-Regular 29,260 16,412 13,592 17.18%
Tienne-Bold 69,368 39,932 33,048 17.24%
DroidSerif-Italic 40,416 26,456 21,892 17.25%
AnnieUseYourTelescope 51,120 27,116 22,436 17.26%
Souliyo-Regular 22,508 13,332 11,028 17.28%
Lancelot-Regular 49,784 31,528 26,076 17.29%
JollyLodger-Regular 39,800 24,152 19,972 17.31%
AutourOne-Regular 87,888 53,596 44,320 17.31%
NotoSansLao-Regular 41,128 19,760 16,336 17.33%
Bonbon-Regular 83,052 43,044 35,580 17.34%
GiveYouGlory 43,012 26,404 21,812 17.39%
WaitingfortheSunrise 59,240 31,204 25,776 17.40%
jsMath-cmti10 47,616 26,924 22,240 17.40%
Orienta-Regular 63,924 28,388 23,448 17.40%
ShortStack-Regular 68,152 35,340 29,188 17.41%
CoveredByYourGrace 57,040 28,520 23,552 17.42%
Tienne-Regular 73,900 39,788 32,848 17.44%
FjallaOne-Regular 36,572 23,268 19,208 17.45%
JacquesFrancoisShadow-Regular 82,492 53,800 44,400 17.47%
CreepsterCaps-Regular 58,184 35,040 28,904 17.51%
GrandHotel-Regular 65,012 30,516 25,160 17.55%
jsMath-cmsy10 43,456 24,824 20,460 17.58%
Arimo-Italic 42,136 27,700 22,820 17.62%
BadScript-Regular 54,400 37,364 30,780 17.62%
Fruktur-Regular 68,316 41,704 34,332 17.68%
Parisienne-Regular 61,248 34,800 28,636 17.71%
Podkova-Regular 60,172 36,712 30,208 17.72%
Monofett 58,132 21,088 17,348 17.74%
Butcherman-Regular 66,336 44,380 36,500 17.76%
Sancreek-Regular 49,672 32,108 26,404 17.77%
NotoSerifLao-Regular 41,224 19,376 15,932 17.77%
Yesteryear-Regular 64,856 36,920 30,340 17.82%
Inconsolata-Regular 84,868 50,860 41,784 17.85%
Unkempt-Bold 191,096 93,176 76,516 17.88%
RugeBoogie-Regular 63,532 35,628 29,256 17.88%
Phetsarath-Regular 40,544 19,500 16,012 17.89%
NotoSansHebrew-Regular 25,856 13,636 11,196 17.89%
NotoSansHebrew-Bold 26,108 13,788 11,320 17.90%
Piedra-Regular 75,980 36,004 29,544 17.94%
NotoSansTamilUI-Regular 57,468 32,004 26,260 17.95%
ButchermanCaps-Regular 66,456 44,616 36,608 17.95%
Kristi 47,476 32,780 26,876 18.01%
jsMath-cmbx10 51,860 28,180 23,096 18.04%
Arimo-Regular 43,616 27,068 22,184 18.04%
BerkshireSwash-Regular 58,364 29,124 23,868 18.05%
Bentham-Regular 55,496 31,184 25,556 18.05%
Meddon 128,632 84,348 69,100 18.08%
Tangerine_Regular 61,484 31,740 25,976 18.16%
Schoolbell 48,888 28,280 23,140 18.18%
RumRaisin-Regular 61,812 34,812 28,484 18.18%
BowlbyOneSC-Regular 55,200 38,860 31,788 18.20%
NothingYouCouldDo 34,920 22,336 18,264 18.23%
NotoSerifArmenian-Regular 23,884 15,192 12,416 18.27%
NotoSansTamil-Regular 57,344 31,908 26,076 18.28%
IMFeENit28P 202,368 121,040 98,812 18.36%
TradeWinds-Regular 85,744 46,924 38,296 18.39%
Arimo-Bold 41,512 26,244 21,412 18.41%
Arimo-BoldItalic 42,600 27,144 22,144 18.42%
NotoSerifGeorgian-Regular 34,340 21,452 17,500 18.42%
Tangerine_Bold 66,492 34,172 27,860 18.47%
NotoSansArmenian-Regular 23,056 14,492 11,812 18.49%
NotoSansTamil-Bold 57,148 31,228 25,436 18.55%
BenchNine-Regular 57,648 32,552 26,500 18.59%
IMFePIrm28P 216,968 123,344 100,408 18.60%
NotoSansTamilUI-Bold 57,352 31,380 25,544 18.60%
Corben-Bold 139,576 69,676 56,708 18.61%
SortsMillGoudy-Italic 105,676 44,468 36,184 18.63%
Rokkitt-Regular 57,280 27,388 22,284 18.64%
BenchNine-Light 55,248 32,004 26,036 18.65%
NotoSerifGeorgian-Bold 31,984 20,072 16,324 18.67%
jsMath-cmr10 50,312 27,308 22,208 18.68%
NotoSansLao-Bold 39,376 17,868 14,528 18.69%
NotoSerifLao-Bold 40,472 17,876 14,524 18.75%
IMFePIit28P 244,584 137,272 111,464 18.80%
SirinStencil-Regular 69,332 39,484 32,060 18.80%
Shojumaru-Regular 71,672 41,052 33,320 18.83%
Tauri-Regular 35,140 21,876 17,752 18.85%
NotoSansGeorgian-Bold 30,792 19,172 15,556 18.86%
IMFeDPit28P 255,092 142,336 115,456 18.88%
IMFeGPit28P 249,324 140,432 113,896 18.90%
IMFeGPrm28P 216,552 123,052 99,796 18.90%
Nokora-Regular 50,804 25,284 20,504 18.91%
IMFeDPrm28P 210,916 119,924 97,248 18.91%
Radley-Italic 90,744 44,836 36,356 18.91%
Tienne-Heavy 77,052 37,984 30,796 18.92%
Vollkorn-Bold 68,608 34,932 28,316 18.94%
MountainsofChristmas-Regular 122,544 74,192 60,140 18.94%
OFLGoudyStMTT 173,520 80,568 65,272 18.99%
Lohit-Devanagari 64,232 34,676 28,088 19.00%
Dynalight-Regular 53,148 28,268 22,896 19.00%
NotoSansArmenian-Bold 22,824 14,432 11,688 19.01%
Marcellus-Regular 46,004 24,360 19,728 19.01%
OFLGoudyStMTT-Italic 161,228 77,448 62,704 19.04%
IMFeENrm28P 194,992 117,232 94,888 19.06%
EagleLake-Regular 78,000 45,604 36,908 19.07%
Marmelad-Regular 117,396 58,004 46,940 19.07%
SofadiOne-Regular 52,732 27,752 22,452 19.10%
Nosifer-Regular 43,256 22,500 18,200 19.11%
AmaticSC-Regular 39,988 25,492 20,620 19.11%
Oswald-Regular 50,944 27,016 21,852 19.11%
CaesarDressing-Regular 89,628 40,132 32,460 19.12%
PlayfairDisplaySC-Bold 131,140 63,292 51,176 19.14%
NotoSansGeorgian-Regular 30,628 19,188 15,508 19.18%
SpicyRice-Regular 67,244 38,016 30,720 19.19%
BenchNine-Bold 59,272 33,056 26,704 19.22%
LondrinaOutline-Regular 79,920 43,156 34,848 19.25%
Nunito-Bold 49,544 30,120 24,320 19.26%
SortsMillGoudy-Regular 121,368 48,500 39,156 19.27%
GravitasOne 41,448 19,740 15,936 19.27%
UnifrakturCook-Bold 42,684 28,160 22,728 19.29%
DroidSansMono 117,892 75,356 60,800 19.32%
Inconsolata-Bold 67,724 33,336 26,880 19.37%
Vollkorn-Regular 62,004 31,696 25,552 19.38%
PTM55FT 185,912 99,800 80,444 19.39%
Sniglet-Regular 31,904 17,524 14,124 19.40%
Rokkitt-Bold 62,692 30,892 24,896 19.41%
Coustard-Regular 79,544 39,040 31,456 19.43%
NotoSansLaoUI-Bold 39,212 17,744 14,296 19.43%
Vollkorn-BoldItalic 55,208 27,524 22,164 19.47%
Revalia-Regular 61,432 30,676 24,696 19.49%
CarterOne 66,532 39,940 32,152 19.50%
OvertheRainbow 47,508 28,212 22,708 19.51%
Ribeye-Regular 78,492 44,096 35,484 19.53%
LifeSavers-Regular 198,208 69,264 55,728 19.54%
Radley-Regular 90,320 45,852 36,888 19.55%
Combo-Regular 132,848 44,396 35,712 19.56%
RibeyeMarrow-Regular 84,888 45,208 36,364 19.56%
SeaweedScript-Regular 117,072 57,460 46,212 19.58%
MarcellusSC-Regular 47,888 24,636 19,812 19.58%
Puritan-Bold 54,564 28,920 23,252 19.60%
Puritan-BoldItalic 59,232 31,504 25,328 19.60%
PlayfairDisplaySC-Black 128,896 61,688 49,588 19.61%
Podkova-Bold 50,564 31,412 25,244 19.64%
PlayfairDisplaySC-Regular 127,064 58,648 47,128 19.64%
MrBedfort-Regular 37,252 22,144 17,792 19.65%
OldStandard-Regular 64,776 31,660 25,436 19.66%
Creepster-Regular 62,724 36,648 29,432 19.69%
PlayfairDisplay-Bold 181,964 85,636 68,772 19.69%
YanoneKaffeesatz-Bold 73,000 35,476 28,484 19.71%
IMFePIsc28P 198,012 111,352 89,380 19.73%
Vollkorn-Italic 57,552 28,376 22,776 19.73%
Akronim-Regular 109,540 68,984 55,348 19.77%
Copse-Regular 72,472 34,800 27,888 19.86%
FascinateInline-Regular 59,604 29,964 24,012 19.86%
AmaticSC-Bold 37,852 24,704 19,796 19.87%
Dhyana-Bold 61,296 37,844 30,324 19.87%
HanaleiFill-Regular 92,108 38,220 30,624 19.87%
IMFeDPsc28P 197,012 110,008 88,128 19.89%
CutiveMono-Regular 69,172 35,180 28,180 19.90%
NosiferCaps-Regular 43,636 22,764 18,232 19.91%
DawningofaNewDay 65,340 29,868 23,920 19.91%
VastShadow-Regular 62,332 32,256 25,832 19.92%
Nunito-Regular 49,792 28,236 22,600 19.96%
PinyonScript-Regular 62,120 33,164 26,544 19.96%
Dhyana-Regular 72,344 41,516 33,228 19.96%
EuphoriaScript-Regular 38,424 20,896 16,724 19.97%
SixCaps 46,388 26,152 20,924 19.99%
PlayfairDisplay-Black 178,792 82,956 66,372 19.99%
Oswald-Light 44,740 25,108 20,088 19.99%
Coustard-Black 82,648 41,256 33,004 20.00%
LeckerliOne-Regular 43,212 22,204 17,760 20.01%
IMFeENsc28P 183,932 109,120 87,280 20.01%
Astloch-Bold 75,684 38,208 30,560 20.02%
OldStandard-Bold 65,924 32,544 26,028 20.02%
Puritan-Regular 54,736 28,548 22,828 20.04%
Puritan-Italic 59,592 31,284 25,012 20.05%
PlayfairDisplaySC-BoldItalic 126,028 66,796 53,392 20.07%
BilboSwashCaps-Regular 58,148 30,372 24,276 20.07%
Coda-Regular 86,992 39,128 31,272 20.08%
VampiroOne-Regular 29,044 19,388 15,492 20.09%
DoppioOne-Regular 55,704 31,716 25,340 20.10%
AnonymousPro-BoldItalic 142,016 61,716 49,308 20.10%
Fascinate-Regular 51,900 25,876 20,668 20.13%
GoblinOne 36,736 18,908 15,100 20.14%
RougeScript-Regular 46,752 22,364 17,856 20.16%
LindenHill-Italic 94,520 50,308 40,160 20.17%
MissFajardose-Regular 58,872 30,296 24,176 20.20%
MouseMemoirs-Regular 55,932 32,468 25,908 20.20%
HomemadeApple 110,008 64,140 51,176 20.21%
PlayfairDisplay-Regular 176,252 79,416 63,356 20.22%
LondrinaShadow-Regular 85,512 44,748 35,684 20.26%
Amaranth-Regular 80,008 39,860 31,780 20.27%
Norican-Regular 46,860 27,980 22,304 20.29%
Ovo-Regular 50,856 23,892 19,040 20.31%
LondrinaSolid-Regular 52,028 25,356 20,200 20.33%
AnonymousPro-Bold 153,708 66,800 53,216 20.34%
NewsCycle-Bold 73,912 36,064 28,724 20.35%
FanwoodText-Italic 96,356 51,876 41,316 20.36%
BowlbyOne-Regular 61,612 36,336 28,936 20.37%
BigelowRules-Regular 59,444 33,468 26,652 20.37%
Galindo-Regular 58,104 33,748 26,872 20.37%
MerriweatherSans-Regular 48,524 30,188 24,024 20.42%
Oldenburg-Regular 46,244 27,476 21,864 20.43%
PlayfairDisplaySC-Italic 121,452 63,576 50,576 20.45%
Stoke-Light 50,820 27,316 21,716 20.50%
Oswald-Bold 53,056 28,680 22,800 20.50%
SourceSansPro-BoldItalic 116,088 55,728 44,300 20.51%
Iceberg-Regular 42,808 19,736 15,688 20.51%
Sacramento-Regular 79,696 41,092 32,660 20.52%
WalterTurncoat 153,868 79,088 62,844 20.54%
NotoSansOsmanya-Regular 7,192 5,172 4,108 20.57%
NoticiaText-Bold 113,244 59,124 46,956 20.58%
Corben-Regular 36,000 23,908 18,984 20.60%
Iceland-Regular 47,632 19,504 15,480 20.63%
ChelseaMarket-Regular 172,924 81,832 64,936 20.65%
JosefinSans-Thin 33,000 19,056 15,120 20.65%
JosefinSans-Regular 33,008 19,616 15,564 20.66%
QuattrocentoSans-Regular 98,340 38,292 30,376 20.67%
Englebert-Regular 53,048 30,880 24,492 20.69%
DrSugiyama-Regular 39,928 21,772 17,268 20.69%
Quintessential-Regular 73,892 43,868 34,792 20.69%
McLaren-Regular 54,504 31,748 25,176 20.70%
YanoneKaffeesatz-ExtraLight 77,024 37,900 30,052 20.71%
MrDafoe-Regular 47,976 24,796 19,660 20.71%
Warnes-Regular 99,012 34,796 27,588 20.72%
jsMath-cmex10 34,164 18,848 14,940 20.73%
IMFeGPsc28P 203,776 114,452 90,720 20.74%
StardosStencil-Bold 34,816 22,476 17,808 20.77%
ABeeZee-Regular 46,124 24,824 19,668 20.77%
QuattrocentoSans-BoldItalic 100,748 39,744 31,488 20.77%
Oxygen-Light 43,852 25,988 20,584 20.79%
QuattrocentoSans-Bold 100,560 38,332 30,360 20.80%
DroidTV-Regular 37,512 21,272 16,844 20.82%
Nunito-Light 48,576 27,824 22,032 20.82%
OriginalSurfer-Regular 57,792 34,116 27,012 20.82%
Coda-Heavy 90,476 39,204 31,040 20.82%
SueEllenFrancisco 60,960 27,812 22,020 20.83%
Arizonia-Regular 50,736 26,992 21,368 20.84%
Simonetta-Black 124,700 63,972 50,640 20.84%
Amethysta-Regular 67,044 34,996 27,700 20.85%
NotoSerif-Bold 373,248 224,992 178,084 20.85%
SourceSansPro-Italic 116,684 56,052 44,364 20.85%
YanoneKaffeesatz-Regular 76,588 38,036 30,100 20.86%
MerriweatherSans-ExtraBold 50,968 30,904 24,452 20.88%
PlayfairDisplay-BoldItalic 173,120 89,696 70,960 20.89%
ShadowsIntoLightTwo-Regular 39,396 25,568 20,224 20.90%
HoltwoodOneSC 36,740 19,784 15,648 20.91%
MarkoOne-Regular 34,480 21,564 17,052 20.92%
PlayfairDisplaySC-BlackItalic 127,196 65,172 51,528 20.94%
DroidTV-Bold 37,228 21,064 16,652 20.95%
Anaheim-Regular 43,436 25,844 20,428 20.96%
Alegreya-Bold 177,576 80,728 63,796 20.97%
Qwigley-Regular 40,444 22,592 17,852 20.98%
DellaRespira-Regular 51,208 27,804 21,968 20.99%
Prociono-Regular 31,132 19,092 15,084 20.99%
YanoneKaffeesatz-Light 77,296 38,276 30,236 21.01%
SeymourOne-Regular 74,428 42,840 33,840 21.01%
UncialAntiqua-Regular 63,404 33,772 26,672 21.02%
AnonymousPro-Italic 144,516 63,764 50,348 21.04%
ABeeZee-Italic 47,764 25,720 20,308 21.04%
nobile_bold_italic 86,168 53,984 42,624 21.04%
ConcertOne-Regular 71,072 34,252 27,044 21.04%
SourceSansPro-SemiboldItalic 116,468 56,008 44,220 21.05%
HerrVonMuellerhoff-Regular 46,624 25,376 20,028 21.08%
NotoSerif-Regular 353,044 208,420 164,492 21.08%
KarlaTamilInclined-Bold 108,804 47,880 37,788 21.08%
SourceSansPro-BlackItalic 116,244 54,652 43,132 21.08%
JosefinSlab-Regular 110,740 51,684 40,788 21.08%
PontanoSans-Regular 126,596 44,736 35,304 21.08%
Cagliostro-Regular 37,820 20,916 16,504 21.09%
FjordOne-Regular 54,152 26,656 21,028 21.11%
nobile_bold 61,592 40,004 31,556 21.12%
MerriweatherSans-Light 47,112 29,824 23,524 21.12%
MountainsofChristmas-Bold 123,400 74,436 58,708 21.13%
MrsSheppards-Regular 42,384 23,152 18,260 21.13%
nobile_italic 92,028 55,860 44,056 21.13%
Prata-Regular 33,392 18,264 14,404 21.13%
KarlaTamilInclined-Regular 109,700 48,448 38,204 21.14%
MrsSaintDelafield-Regular 49,396 26,728 21,076 21.15%
JosefinSlab-Light 113,844 51,312 40,460 21.15%
RopaSans-Italic 42,396 24,164 19,052 21.16%
LovedbytheKing 28,252 18,520 14,600 21.17%
SourceSansPro-LightItalic 116,384 55,900 44,048 21.20%
JosefinSans-Bold 32,912 19,288 15,196 21.22%
Aladin-Regular 42,160 20,948 16,500 21.23%
JosefinSans-SemiBold 33,004 19,580 15,420 21.25%
Chicle-Regular 41,008 21,272 16,752 21.25%
Monda-Regular 43,604 24,944 19,640 21.26%
Amaranth-Italic 97,712 47,232 37,184 21.27%
Nokora-Bold 42,344 20,644 16,252 21.27%
DroidNaskh-Bold 95,312 52,928 41,664 21.28%
Bitter-Regular 90,628 44,924 35,360 21.29%
AguafinaScript-Regular 47,228 22,696 17,864 21.29%
JosefinSlab-Bold 88,308 41,892 32,972 21.29%
JosefinSans-LightItalic 37,336 21,052 16,568 21.30%
Kranky 199,320 100,936 79,432 21.30%
Oxygen-Regular 48,092 28,264 22,240 21.31%
AnonymousPro-Regular 158,080 70,004 55,076 21.32%
AlexBrush-Regular 49,020 25,616 20,152 21.33%
MerriweatherSans-Bold 51,048 30,816 24,240 21.34%
JosefinSlab-SemiBold 101,328 46,284 36,404 21.35%
PlayfairDisplay-BlackItalic 168,428 85,916 67,568 21.36%
nobile 65,140 41,100 32,320 21.36%
JosefinSans-Light 33,180 19,500 15,332 21.37%
DroidNaskh-Regular 91,976 50,736 39,884 21.39%
Griffy-Regular 208,776 97,876 76,936 21.39%
JosefinSans-SemiBoldItalic 37,092 21,208 16,668 21.41%
MacondoSwashCaps-Regular 33,008 17,856 14,032 21.42%
UnifrakturMaguntia-Book 88,508 45,596 35,824 21.43%
JosefinSans-BoldItalic 37,008 20,828 16,364 21.43%
Cutive-Regular 98,184 43,572 34,232 21.44%
Chivo-Regular 50,844 28,204 22,152 21.46%
QuattrocentoSans-Italic 108,700 44,672 35,084 21.46%
Cookie-Regular 43,800 21,728 17,064 21.47%
DeliusUnicase-Regular 32,904 16,712 13,124 21.47%
CodaCaption-Heavy 74,044 40,908 32,124 21.47%
JosefinSlab-Italic 115,492 53,320 41,868 21.48%
SourceSansPro-ExtraLightItalic 116,940 54,688 42,940 21.48%
NoticiaText-Regular 115,288 59,968 47,084 21.48%
Frijole-Regular 227,860 121,920 95,724 21.49%
AllertaStencil-Regular 20,260 13,320 10,456 21.50%
PlayfairDisplay-Italic 165,868 85,152 66,840 21.51%
AlfaSlabOne-Regular 36,504 19,956 15,664 21.51%
Alegreya-BoldItalic 170,756 79,236 62,192 21.51%
Bilbo-Regular 42,908 23,572 18,500 21.52%
Lohit-Bengali 139,456 68,480 53,732 21.54%
Quattrocento-Regular 158,200 56,132 44,036 21.55%
Ruthie-Regular 57,196 30,212 23,700 21.55%
Sevillana-Regular 162,872 78,584 61,640 21.56%
Peralta-Regular 59,600 35,368 27,740 21.57%
LoversQuarrel-Regular 61,872 31,540 24,736 21.57%
NotoSansDevanagariUI-Regular 176,780 78,684 61,704 21.58%
Anton 42,376 23,184 18,180 21.58%
Geo-Oblique 50,036 20,652 16,192 21.60%
CarroisGothic-Regular 41,680 22,996 18,028 21.60%
Alegreya-Black 172,468 78,696 61,692 21.61%
Molengo-Regular 65,464 33,220 26,036 21.63%
SourceCodePro-Black 120,356 54,596 42,788 21.63%
Rosarivo-Regular 41,344 21,620 16,944 21.63%
ArbutusSlab-Regular 70,004 39,136 30,668 21.64%
LindenHill-Regular 124,844 54,604 42,780 21.65%
PasseroOne-Regular 33,624 19,948 15,628 21.66%
RopaSans-Regular 41,796 22,108 17,320 21.66%
NotoSansDevanagari-Regular 178,280 79,476 62,256 21.67%
MrDeHaviland-Regular 44,672 24,108 18,884 21.67%
JosefinSans-Italic 37,044 21,080 16,512 21.67%
Oxygen-Bold 48,812 28,592 22,396 21.67%
Milonga-Regular 209,948 69,044 54,076 21.68%
Risque-Regular 59,392 33,652 26,356 21.68%
Fondamento-Italic 78,760 39,832 31,196 21.68%
CabinSketch-Bold 282,864 177,496 138,996 21.69%
Condiment-Regular 43,376 23,988 18,784 21.69%
Amaranth-Bold 73,976 36,516 28,588 21.71%
Merriweather-Light 47,044 25,016 19,584 21.71%
SourceCodePro-Regular 120,548 55,472 43,420 21.73%
Bangers 39,676 21,536 16,856 21.73%
SourceCodePro-ExtraLight 121,568 54,896 42,956 21.75%
Candal 32,816 20,104 15,720 21.81%
NotoSansDevanagariUI-Bold 170,784 74,264 58,068 21.81%
Geo-Regular 38,676 16,724 13,076 21.81%
Simonetta-BlackItalic 123,036 63,052 49,296 21.82%
NotoSerif-BoldItalic 336,020 197,072 154,068 21.82%
NotoSansDevanagari-Bold 172,352 75,084 58,688 21.84%
Alegreya-BlackItalic 173,232 79,868 62,424 21.84%
SourceCodePro-Bold 120,504 55,344 43,256 21.84%
Astloch-Regular 51,012 24,360 19,036 21.86%
Merriweather-Bold 46,940 25,284 19,756 21.86%
Allerta-Regular 19,596 12,612 9,852 21.88%
JosefinSlab-BoldItalic 42,848 22,328 17,440 21.89%
StintUltraCondensed-Regular 40,272 21,976 17,164 21.90%
SourceCodePro-Light 121,284 55,696 43,496 21.90%
MeriendaOne-Regular 30,540 17,456 13,628 21.93%
Skranji-Bold 207,292 97,040 75,752 21.94%
SourceCodePro-Medium 120,244 55,344 43,188 21.96%
StardosStencil-Regular 46,888 24,924 19,444 21.99%
LeagueScript 69,216 39,732 30,992 22.00%
Actor-Regular 64,944 32,116 25,044 22.02%
Federant-Regular 78,128 36,848 28,732 22.03%
PurplePurse-Regular 62,868 36,116 28,160 22.03%
Habibi-Regular 36,260 22,328 17,408 22.04%
KronaOne-Regular 35,168 20,816 16,228 22.04%
OleoScriptSwashCaps-Bold 39,780 22,100 17,228 22.05%
JosefinSans-ThinItalic 37,624 20,932 16,316 22.05%
MonsieurLaDoulaise-Regular 54,288 26,640 20,764 22.06%
FredokaOne-Regular 43,500 21,944 17,100 22.07%
Sunshiney 160,228 82,128 63,992 22.08%
Baumans-Regular 53,408 27,828 21,680 22.09%
SourceCodePro-Semibold 120,252 55,360 43,120 22.11%
Fondamento-Regular 87,160 43,952 34,232 22.12%
Scada-Bold 85,704 39,316 30,620 22.12%
DancingScript-Bold 115,568 60,156 46,848 22.12%
Trykker-Regular 38,140 23,740 18,484 22.14%
Brawler-Regular 106,044 54,424 42,372 22.14%
Spirax-Regular 49,064 22,372 17,412 22.17%
JosefinSlab-SemiBoldItalic 143,220 63,976 49,788 22.18%
Simonetta-Regular 132,084 68,492 53,296 22.19%
Overlock-BoldItalic 45,832 23,544 18,320 22.19%
Alegreya-Regular 202,168 92,328 71,836 22.19%
KaushanScript-Regular 210,672 77,764 60,500 22.20%
Quando-Regular 119,688 52,168 40,584 22.21%
EmilysCandy-Regular 237,216 114,800 89,292 22.22%
Monda-Bold 48,752 27,020 21,016 22.22%
OverlockSC-Regular 36,640 18,756 14,588 22.22%
CevicheOne-Regular 36,920 22,184 17,248 22.25%
Scada-BoldItalic 88,048 41,632 32,368 22.25%
Alegreya-Italic 199,744 91,656 71,244 22.27%
Handlee-Regular 39,128 22,932 17,824 22.27%
Carme-Regular 78,028 26,288 20,428 22.29%
ChelaOne-Regular 35,720 19,848 15,420 22.31%
FanwoodText-Regular 119,200 63,880 49,624 22.32%
Niconne-Regular 45,616 24,992 19,412 22.33%
SourceSansPro-Regular 149,508 68,384 53,100 22.35%
SourceSansPro-Light 149,916 68,292 53,004 22.39%
SourceSansPro-ExtraLight 150,152 66,844 51,876 22.39%
OleoScriptSwashCaps-Regular 40,088 21,652 16,792 22.45%
Montez-Regular 77,192 39,248 30,432 22.46%
Hanuman 128,376 44,744 34,688 22.47%
Overlock-BlackItalic 44,088 22,676 17,576 22.49%
StintUltraExpanded-Regular 42,788 23,192 17,964 22.54%
Overlock-Black 43,224 22,040 17,068 22.56%
Electrolize-Regular 55,712 24,240 18,764 22.59%
DroidKufi-Regular 81,592 40,900 31,656 22.60%
YesevaOne-Regular 101,036 46,468 35,964 22.60%
Spinnaker-Regular 24,988 16,084 12,448 22.61%
Stoke-Regular 133,340 57,780 44,716 22.61%
Kreon-Bold 38,220 19,004 14,704 22.63%
Rosarivo-Italic 39,236 20,836 16,120 22.63%
Merriweather-Black 46,960 24,296 18,792 22.65%
OxygenMono-Regular 68,940 34,348 26,564 22.66%
Sail-Regular 32,656 19,220 14,864 22.66%
NewsCycle-Regular 193,992 84,768 65,556 22.66%
Syncopate-Bold 65,432 30,564 23,632 22.68%
Scada-Regular 86,472 39,444 30,496 22.69%
SourceSansPro-Semibold 149,352 68,244 52,756 22.70%
PermanentMarker 74,632 40,480 31,292 22.70%
Scada-Italic 86,516 41,060 31,740 22.70%
DroidKufi-Bold 81,608 41,196 31,844 22.70%
DroidSansTamil-Bold 36,612 19,184 14,828 22.71%
BubblegumSans-Regular 38,816 20,800 16,076 22.71%
Overlock-Bold 42,364 22,060 17,048 22.72%
KarlaTamilUpright-Regular 144,440 65,096 50,296 22.74%
Unkempt-Regular 192,400 95,496 73,780 22.74%
ExpletusSans-Regular 57,428 27,464 21,216 22.75%
DroidSansTamil-Regular 36,484 19,348 14,944 22.76%
ArchivoBlack-Regular 129,848 49,756 38,428 22.77%
Telex-Regular 68,804 27,292 21,076 22.78%
CarroisGothicSC-Regular 40,308 21,900 16,912 22.78%
DancingScript-Regular 116,580 59,336 45,804 22.81%
Kenia-Regular 65,156 29,156 22,504 22.82%
LemonOne-Regular 31,436 17,880 13,800 22.82%
SourceSansPro-Black 148,176 66,152 51,056 22.82%
SourceSansPro-Bold 148,616 67,856 52,364 22.83%
Devonshire-Regular 67,236 30,724 23,708 22.84%
CrimsonText-SemiboldItalic 75,588 40,148 30,968 22.87%
Simonetta-Italic 122,356 63,296 48,804 22.90%
Share-Regular 91,940 44,180 34,064 22.90%
Skranji-Regular 207,924 97,696 75,312 22.91%
Numans-Regular 39,368 19,372 14,932 22.92%
Julee-Regular 30,876 17,704 13,644 22.93%
Merriweather-Regular 46,776 23,404 18,036 22.94%
Hanumanb 121,948 42,896 33,056 22.94%
Monoton-Regular 51,600 26,764 20,624 22.94%
Raleway-Heavy 129,520 55,916 43,064 22.98%
Raleway-Thin 123,940 52,136 40,152 22.99%
CrimsonText-Semibold 77,636 39,412 30,352 22.99%
Share-Bold 91,048 44,140 33,988 23.00%
MedievalSharp 148,712 74,208 57,132 23.01%
Playball-Regular 42,808 22,208 17,096 23.02%
Lohit-Tamil 66,180 27,712 21,332 23.02%
Overlock-Italic 44,160 22,648 17,432 23.03%
KarlaTamilUpright-Bold 143,224 64,300 49,488 23.04%
SansitaOne 47,428 25,012 19,244 23.06%
Kreon-Regular 37,432 18,804 14,464 23.08%
Sofia-Regular 29,796 17,192 13,224 23.08%
DiplomataSC-Regular 42,444 21,640 16,644 23.09%
Unna-Regular 26,424 15,748 12,112 23.09%
Junge-Regular 71,400 38,788 29,824 23.11%
DeliusUnicase-Bold 36,112 15,884 12,212 23.12%
Merienda-Bold 35,028 18,028 13,860 23.12%
Paprika-Regular 42,336 22,460 17,264 23.13%
Kreon-Light 37,408 17,996 13,832 23.14%
PrincessSofia-Regular 272,628 130,404 100,192 23.17%
Neucha 141,832 65,052 49,940 23.23%
BigshotOne 45,188 19,956 15,320 23.23%
Diplomata-Regular 43,320 22,408 17,196 23.26%
ButterflyKids-Regular 202,824 98,172 75,324 23.27%
Kameron-Bold 64,788 37,712 28,932 23.28%
Clara-Regular 168,256 78,580 60,284 23.28%
Aldrich-Regular 57,020 26,352 20,212 23.30%
MavenPro-Regular 99,252 32,808 25,152 23.34%
Codystar-Regular 106,500 55,948 42,892 23.34%
Chango-Regular 40,728 20,968 16,072 23.35%
ExpletusSans-Italic 39,444 19,900 15,252 23.36%
ScheherazadeRegOT 261,792 116,408 89,204 23.37%
Bevan 90,652 48,488 37,128 23.43%
Salsa-Regular 56,680 24,860 19,032 23.44%
CrimsonText-Italic 99,872 55,544 42,504 23.48%
Margarine-Regular 148,820 83,324 63,760 23.48%
MavenPro-Medium 100,064 32,788 25,088 23.48%
CrimsonText-BoldItalic 75,764 39,252 30,032 23.49%
FreckleFace-Regular 121,088 67,012 51,260 23.51%
OleoScript-Bold 34,624 19,532 14,940 23.51%
Domine-Regular 137,880 53,228 40,712 23.51%
Esteban-Regular 46,504 23,632 18,068 23.54%
Merienda-Regular 41,072 21,488 16,428 23.55%
AlmendraSC-Regular 36,052 17,264 13,196 23.56%
PortLligatSlab-Regular 38,160 19,240 14,704 23.58%
MavenPro-Bold 99,544 32,960 25,168 23.64%
RacingSansOne-Regular 145,796 57,728 44,068 23.66%
JosefinSlab-LightItalic 160,144 71,604 54,660 23.66%
Domine-Bold 146,200 56,436 43,080 23.67%
DroidSansEthiopic-Regular 228,488 90,212 68,856 23.67%
Thabit 124,076 57,080 43,548 23.71%
NotoSerif-Italic 325,656 190,908 145,644 23.71%
MavenPro-Black 99,116 32,840 25,048 23.73%
Lemon-Regular 34,648 18,220 13,892 23.75%
Inder-Regular 34,132 20,456 15,588 23.80%
OleoScript-Regular 34,980 18,872 14,364 23.89%
Fenix-Regular 45,144 21,672 16,492 23.90%
HappyMonkey-Regular 76,344 39,384 29,964 23.92%
Lekton-Italic 34,212 17,072 12,988 23.92%
Abel-Regular 36,400 16,296 12,392 23.96%
Basic-Regular 32,988 19,864 15,096 24.00%
Lustria-Regular 37,396 18,496 14,048 24.05%
Overlock-Regular 49,644 25,600 19,440 24.06%
LondrinaSketch-Regular 172,440 83,848 63,672 24.06%
Inika-Bold 38,724 21,220 16,112 24.07%
ExpletusSans-Bold 62,984 29,112 22,096 24.10%
Rufina-Bold 40,056 19,144 14,528 24.11%
PollerOne 31,588 16,500 12,520 24.12%
FrederickatheGreat-Regular 486,216 278,840 211,556 24.13%
CinzelDecorative-Bold 62,440 28,416 21,552 24.16%
Macondo-Regular 48,768 22,144 16,792 24.17%
Cantarell-Bold 49,272 27,192 20,612 24.20%
Lusitana-Regular 30,184 16,856 12,776 24.21%
Righteous-Regular 43,104 22,940 17,384 24.22%
Asul-Bold 33,548 18,688 14,160 24.23%
LibreBaskerville-Bold 161,104 61,276 46,408 24.26%
DeliusSwashCaps-Regular 63,052 30,708 23,244 24.31%
Gorditas-Bold 109,800 58,804 44,504 24.32%
ExpletusSans-SemiBold 67,948 32,420 24,524 24.36%
Economica-Regular 26,752 15,492 11,712 24.40%
Asul-Regular 33,516 18,604 14,064 24.40%
NoticiaText-BoldItalic 86,044 45,608 34,476 24.41%
LibreBaskerville-Regular 160,364 60,248 45,536 24.42%
ElsieSwashCaps-Black 39,412 21,172 15,996 24.45%
Montaga-Regular 33,956 17,972 13,576 24.46%
ExpletusSans-SemiBoldItalic 49,088 23,324 17,616 24.47%
DroidSansEthiopic-Bold 223,104 86,604 65,408 24.47%
Rufina-Regular 40,040 19,216 14,496 24.56%
JustMeAgainDownHere 72,060 36,172 27,280 24.58%
Gorditas-Regular 110,336 61,124 46,092 24.59%
ExpletusSans-Medium 69,076 32,452 24,460 24.63%
Voltaire-Regular 28,824 14,984 11,288 24.67%
FugazOne-Regular 27,868 16,876 12,712 24.67%
Lusitana-Bold 29,284 16,384 12,336 24.71%
Wallpoet-Regular 39,904 19,800 14,908 24.71%
Thabit-Bold 120,160 57,688 43,424 24.73%
CinzelDecorative-Regular 60,540 26,696 20,092 24.74%
Chivo-Black 55,400 26,296 19,780 24.78%
Average-Regular 37,836 19,172 14,420 24.79%
Elsie-Black 42,424 22,508 16,928 24.79%
Mate-Regular 28,208 15,616 11,744 24.80%
TerminalDosis-Light 109,500 51,796 38,944 24.81%
Karla-BoldItalic 18,672 12,016 9,028 24.87%
Arapey-Italic 29,556 16,660 12,516 24.87%
NotoSansUI-Regular 309,164 177,516 133,336 24.89%
Ewert-Regular 70,752 20,084 15,084 24.90%
Quicksand-Bold 23,404 13,528 10,160 24.90%
Rambla-Italic 37,136 18,476 13,876 24.90%
Rambla-BoldItalic 37,364 18,796 14,116 24.90%
Cantarell-BoldOblique 52,200 30,436 22,852 24.92%
Cinzel-Bold 57,736 27,248 20,448 24.96%
Neuton-Regular 56,676 29,308 21,988 24.98%
NotoSans-Regular 309,148 177,508 133,172 24.98%
NotoSans-Bold 313,860 178,576 133,960 24.98%
Raleway-Light 132,200 59,588 44,696 24.99%
NotoSans-BoldItalic 292,752 173,720 130,296 25.00%
NotoSansUI-Bold 313,876 178,584 133,912 25.01%
Cinzel-Black 58,616 26,576 19,928 25.02%
GenBasBI 246,888 103,432 77,552 25.02%
Gafata-Regular 37,432 17,556 13,160 25.04%
LilitaOne-Regular 28,092 15,508 11,620 25.07%
Rosario-BoldItalic 33,028 19,972 14,964 25.08%
ExpletusSans-BoldItalic 49,428 22,484 16,844 25.08%
NotoSansUI-BoldItalic 292,768 173,736 130,116 25.11%
Rosario-Bold 31,864 19,636 14,704 25.12%
Raleway-Regular 130,128 59,976 44,908 25.12%
AtomicAge-Regular 31,048 18,180 13,612 25.13%
PatuaOne-Regular 35,608 19,692 14,740 25.15%
Quattrocento-Bold 164,948 59,448 44,488 25.16%
Belgrano-Regular 29,072 17,564 13,140 25.19%
MateSC-Regular 29,848 15,788 11,804 25.23%
Almendra-Italic 35,324 17,396 13,004 25.25%
Arapey-Regular 26,756 15,044 11,244 25.26%
RammettoOne-Regular 30,420 19,180 14,332 25.28%
GenBkBasBI 245,912 102,292 76,436 25.28%
Bitter-Bold 25,892 15,696 11,728 25.28%
Rationale-Regular 57,156 27,684 20,684 25.29%
ArchivoNarrow-BoldItalic 130,268 54,368 40,612 25.30%
StalinOne-Regular 49,912 23,252 17,364 25.32%
Muli-Italic 51,180 29,968 22,372 25.35%
Flamenco-Regular 36,700 19,048 14,216 25.37%
Felipa-Regular 39,996 21,696 16,192 25.37%
Cantarell-Oblique 50,068 27,796 20,744 25.37%
Economica-Bold 27,196 15,916 11,876 25.38%
Almendra-Bold 36,728 17,656 13,172 25.40%
CinzelDecorative-Black 62,824 27,132 20,240 25.40%
FrancoisOne 113,112 54,016 40,288 25.41%
Chivo-Italic 30,856 17,844 13,304 25.44%
MaidenOrange 60,732 32,652 24,344 25.44%
Raleway-ExtraLight 122,400 57,208 42,640 25.46%
Cinzel-Regular 56,212 25,428 18,952 25.47%
CantoraOne-Regular 163,116 63,484 47,312 25.47%
ExpletusSans-MediumItalic 74,072 32,596 24,284 25.50%
Roboto-Italic 167,908 78,116 58,192 25.51%
Almendra-BoldItalic 35,492 17,828 13,280 25.51%
NotoSansUI-Italic 281,632 167,032 124,412 25.52%
PortLligatSans-Regular 34,388 18,412 13,712 25.53%
Inika-Regular 39,688 21,200 15,788 25.53%
LateefRegOT 246,224 107,668 80,176 25.53%
Neuton-Italic 74,192 34,868 25,964 25.54%
RobotoCondensed-Italic 163,900 76,016 56,596 25.55%
Flamenco-Light 34,736 19,080 14,204 25.56%
Muli-Regular 56,252 31,868 23,716 25.58%
StalinistOne-Regular 49,960 23,264 17,312 25.58%
MontserratSubrayada-Regular 24,332 11,724 8,724 25.59%
Plaster-Regular 32,852 18,616 13,852 25.59%
Amaranth-BoldItalic 107,536 46,704 34,736 25.63%
NotoSans-Italic 281,616 167,028 124,144 25.67%
CabinSketch-Regular 194,436 103,192 76,692 25.68%
ArchivoNarrow-Bold 126,704 50,492 37,524 25.68%
RobotoCondensed-BoldItalic 164,840 76,792 57,068 25.68%
AlmendraDisplay-Regular 39,332 16,548 12,296 25.69%
RobotoCondensed-LightItalic 164,432 75,696 56,236 25.71%
JimNightshade-Regular 153,680 82,772 61,488 25.71%
NoticiaText-Italic 87,392 45,904 34,096 25.72%
KiteOne-Regular 37,608 19,776 14,688 25.73%
CrimsonText-Bold 93,848 44,404 32,972 25.75%
ArchivoNarrow-Italic 126,504 53,020 39,368 25.75%
Raleway-Medium 129,308 59,792 44,384 25.77%
Thabit-Oblique 135,548 61,216 45,436 25.78%
Mate-Italic 27,700 16,280 12,076 25.82%
Codystar-Light 101,536 51,548 38,220 25.86%
Roboto-Light 159,640 73,756 54,680 25.86%
Roboto-MediumItalic 165,280 77,108 57,164 25.87%
ElsieSwashCaps-Regular 38,044 18,640 13,816 25.88%
GildaDisplay-Regular 36,804 19,332 14,324 25.91%
Delius-Regular 77,480 37,088 27,476 25.92%
Flavors-Regular 186,640 95,192 70,512 25.93%
Raleway-SemiBold 130,880 60,388 44,724 25.94%
Yellowtail-Regular 62,420 32,504 24,072 25.94%
Roboto-Medium 153,780 72,912 53,984 25.96%
RobotoCondensed-Bold 161,416 73,740 54,588 25.97%
Share-BoldItalic 75,836 36,312 26,876 25.99%
Glegoo-Regular 28,144 15,500 11,468 26.01%
Economica-Italic 27,692 16,448 12,168 26.02%
RobotoCondensed-Regular 159,868 72,196 53,404 26.03%
Economica-BoldItalic 27,024 16,612 12,284 26.05%
MontserratSubrayada-Bold 24,364 11,684 8,636 26.09%
Redressed 79,220 42,612 31,492 26.10%
Rambla-Bold 34,688 17,388 12,848 26.11%
Rambla-Regular 34,332 17,060 12,604 26.12%
Italiana-Regular 31,828 15,092 11,144 26.16%
Comfortaa-Bold 105,220 53,544 39,520 26.19%
BubblerOne-Regular 30,992 15,080 11,128 26.21%
RobotoCondensed-Light 160,800 72,260 53,308 26.23%
Asap-BoldItalic 32,220 16,752 12,356 26.24%
Roboto-LightItalic 162,920 75,736 55,852 26.25%
Roboto-BlackItalic 167,252 78,460 57,860 26.26%
Chivo-BlackItalic 32,324 18,676 13,772 26.26%
TextMeOne-Regular 37,348 17,556 12,944 26.27%
Thabit-BoldOblique 130,392 61,356 45,232 26.28%
Rosario-Regular 33,908 19,372 14,280 26.29%
Rosario-Italic 33,564 18,776 13,840 26.29%
Balthazar-Regular 28,208 15,964 11,764 26.31%
Share-Italic 76,608 36,336 26,768 26.33%
Elsie-Regular 41,044 19,912 14,668 26.34%
Offside-Regular 30,836 15,596 11,488 26.34%
Raleway-ExtraBold 125,136 59,156 43,552 26.38%
Petrona-Regular 80,756 29,684 21,852 26.38%
Asap-Bold 30,352 15,716 11,568 26.39%
RuslanDisplay 57,280 19,992 14,708 26.43%
Roboto-Bold 152,652 71,492 52,584 26.45%
Comfortaa-Light 127,532 65,276 48,008 26.45%
Roboto-BoldItalic 161,752 76,852 56,516 26.46%
SpecialElite 166,224 90,744 66,732 26.46%
Karla-Bold 17,868 10,864 7,988 26.47%
Raleway-Bold 128,248 59,788 43,960 26.47%
Roboto-Black 162,160 75,776 55,704 26.49%
Roboto-Regular 166,668 76,608 56,308 26.50%
TenorSans-Regular 131,896 51,280 37,664 26.55%
EricaOne-Regular 26,244 14,972 10,992 26.58%
Convergence-Regular 30,216 16,396 12,036 26.59%
Cantarell-Regular 47,496 24,776 18,184 26.61%
ContrailOne-Regular 31,176 16,548 12,144 26.61%
Orbitron-Black 37,584 17,600 12,912 26.64%
Boogaloo-Regular 33,928 18,680 13,704 26.64%
Asap-Italic 32,032 16,944 12,428 26.65%
SignikaNegative-Regular 53,796 27,792 20,372 26.70%
Dosis-ExtraBold 137,200 65,588 48,076 26.70%
PatrickHandSC-Regular 152,608 66,832 48,976 26.72%
Asap-Regular 30,740 15,988 11,712 26.75%
Karla-Italic 18,548 11,148 8,156 26.84%
Dosis-Bold 136,412 65,640 48,020 26.84%
SignikaNegative-Bold 53,636 27,800 20,336 26.85%
Belleza-Regular 27,816 16,204 11,848 26.88%
Quicksand-Light 21,000 12,600 9,212 26.89%
MedulaOne-Regular 33,684 16,432 12,012 26.90%
Quicksand-Regular 23,820 13,728 10,032 26.92%
Allan-Regular 56,460 34,244 25,012 26.96%
Gabriela-Regular 36,856 18,472 13,492 26.96%
Orbitron-Regular 39,484 17,520 12,796 26.96%
Muli-LightItalic 50,688 29,836 21,788 26.97%
ArchivoNarrow-Regular 145,692 56,132 40,988 26.98%
Rye-Regular 183,244 66,384 48,464 26.99%
SignikaNegative-Semibold 53,400 27,716 20,228 27.02%
Orbitron-Bold 38,576 17,468 12,740 27.07%
FontdinerSwanky 45,524 25,508 18,592 27.11%
GermaniaOne-Regular 33,236 16,196 11,796 27.17%
AdventPro-Bold 56,448 27,420 19,968 27.18%
FasterOne-Regular 45,304 20,664 15,048 27.18%
Ruda-Bold 24,840 15,132 11,016 27.20%
Dosis-Medium 136,444 64,760 47,140 27.21%
Dosis-SemiBold 135,520 64,672 47,068 27.22%
Karla-Regular 16,816 10,344 7,528 27.22%
Dosis-Regular 136,940 64,888 47,220 27.23%
KottaOne-Regular 36,624 17,328 12,608 27.24%
Ruda-Regular 24,944 15,028 10,932 27.26%
Cambo-Regular 29,096 15,480 11,260 27.26%
Trochut-Regular 25,300 12,952 9,416 27.30%
Sintony-Bold 26,016 14,716 10,696 27.32%
Trochut-Italic 27,904 14,548 10,572 27.33%
GenBasB 268,600 107,020 77,712 27.39%
Trochut-Bold 25,412 12,996 9,436 27.39%
Sintony-Regular 25,708 14,964 10,856 27.45%
ChauPhilomeneOne-Italic 44,272 22,216 16,116 27.46%
Imprima-Regular 24,912 14,296 10,368 27.48%
ChangaOne-Regular 22,716 13,756 9,976 27.48%
Limelight-Regular 132,292 52,552 38,104 27.49%
AbrilFatface-Regular 67,348 29,244 21,204 27.49%
Dosis-Light 136,376 64,312 46,628 27.50%
SignikaNegative-Light 55,028 27,196 19,712 27.52%
Ruda-Black 24,748 14,964 10,844 27.53%
Megrim 57,856 26,972 19,544 27.54%
CrimsonText-Roman 189,596 95,296 69,044 27.55%
TitanOne-Regular 55,708 25,536 18,488 27.60%
Audiowide-Regular 70,900 32,372 23,432 27.62%
Fresca-Regular 32,632 18,796 13,604 27.62%
AdventPro-SemiBold 51,200 26,668 19,300 27.63%
WendyOne-Regular 22,768 12,912 9,340 27.66%
DidactGothic 246,236 91,596 66,240 27.68%
JuliusSansOne-Regular 33,544 16,768 12,124 27.70%
Neuton-Bold 50,072 25,276 18,268 27.73%
GenBkBasR 269,736 105,960 76,572 27.73%
Kameron-Regular 76,684 40,492 29,260 27.74%
AnticDidone-Regular 39,688 18,916 13,668 27.74%
GenBkBasI 262,668 109,140 78,824 27.78%
GenBasR 266,416 101,956 73,604 27.81%
Dosis-ExtraLight 135,140 62,864 45,380 27.81%
ChauPhilomeneOne-Regular 40,052 20,644 14,892 27.86%
Underdog-Regular 101,480 50,744 36,600 27.87%
Dorsa-Regular 20,840 11,144 8,036 27.89%
RussoOne-Regular 39,312 19,432 14,012 27.89%
Neuton-ExtraBold 50,316 24,516 17,672 27.92%
Strait-Regular 33,080 16,632 11,988 27.92%
Cardo-Bold 348,284 191,560 138,068 27.92%
Acme-Regular 23,456 13,536 9,756 27.93%
Ultra 53,208 27,340 19,704 27.93%
Unlock-Regular 27,080 14,948 10,772 27.94%
ProstoOne-Regular 96,868 47,368 34,128 27.95%
DaysOne-Regular 65,580 30,360 21,856 28.01%
WireOne 140,668 56,672 40,788 28.03%
AnticSlab-Regular 36,972 18,164 13,072 28.03%
Muli-Light 60,656 33,872 24,376 28.03%
AdventPro-Thin 46,800 23,540 16,940 28.04%
Padauk-Bold 440,036 134,048 96,464 28.04%
PatrickHand-Regular 214,772 88,168 63,408 28.08%
Antic-Regular 39,316 20,552 14,780 28.08%
Exo-ExtraBoldItalic 104,540 51,048 36,696 28.11%
Exo-BoldItalic 105,132 52,392 37,656 28.13%
GenBkBasB 268,692 106,428 76,492 28.13%
Orbitron-Medium 39,816 17,232 12,384 28.13%
MarckScript-Regular 83,660 38,656 27,764 28.18%
Aclonica 68,784 36,820 26,444 28.18%
ChangaOne-Italic 26,724 15,208 10,920 28.20%
Oranienbaum-Regular 141,220 60,620 43,524 28.20%
AdventPro-Medium 51,424 26,460 18,992 28.22%
Galdeano-Regular 24,868 14,620 10,492 28.24%
Gudea-Bold 22,556 14,608 10,480 28.26%
ShareTech-Regular 29,536 15,192 10,896 28.28%
Cardo-Italic 262,808 152,456 109,344 28.28%
DuruSans-Regular 88,088 40,024 28,704 28.28%
MeieScript-Regular 128,428 60,016 43,040 28.29%
Magra-Bold 44,500 24,384 17,484 28.30%
KeaniaOne-Regular 38,808 17,888 12,820 28.33%
Exo-SemiBoldItalic 106,552 52,612 37,692 28.36%
Bitter-Italic 39,404 20,268 14,512 28.40%
BreeSerif-Regular 46,656 22,648 16,216 28.40%
CreteRound-Regular 59,292 24,716 17,696 28.40%
Crushed 57,844 27,220 19,484 28.42%
Exo-MediumItalic 106,744 53,136 38,000 28.49%
Ranchers-Regular 167,420 67,784 48,460 28.51%
Exo-Medium 98,128 47,636 34,048 28.52%
GenBasI 260,176 106,160 75,852 28.55%
Cuprum-Regular 100,608 43,240 30,876 28.59%
Capriola-Regular 106,632 47,928 34,220 28.60%
Ruluko-Regular 27,428 15,216 10,864 28.60%
Exo-Bold 96,264 47,020 33,568 28.61%
Montserrat-Bold 29,560 17,348 12,384 28.61%
Cuprum-Bold 100,172 43,024 30,700 28.64%
Exo-ExtraBold 95,724 45,500 32,452 28.68%
MontserratAlternates-Bold 28,640 16,988 12,116 28.68%
NovaRound 93,212 41,240 29,404 28.70%
GlassAntiqua-Regular 63,012 26,656 18,976 28.81%
Ledger-Regular 62,320 28,640 20,388 28.81%
NanumGothicCoding-Bold 2,246,240 1,017,108 723,924 28.83%
Sanchez-Regular 72,552 26,856 19,112 28.84%
Viga-Regular 28,424 16,192 11,520 28.85%
Armata-Regular 90,596 40,780 29,012 28.86%
Exo-Light 98,112 47,148 33,536 28.87%
Homenaje-Regular 22,192 12,600 8,960 28.89%
Neuton-ExtraLight 49,540 25,176 17,900 28.90%
Exo-SemiBold 96,736 46,520 33,072 28.91%
Montserrat-Regular 29,016 17,284 12,284 28.93%
Exo-ExtraLightItalic 106,924 52,288 37,156 28.94%
Enriqueta-Bold 45,240 20,716 14,720 28.94%
LibreBaskerville-Italic 175,480 74,296 52,756 28.99%
NixieOne-Regular 52,580 24,484 17,376 29.03%
Exo-LightItalic 107,032 52,480 37,208 29.10%
MontserratAlternates-Regular 27,056 16,188 11,476 29.11%
Judson-Bold 195,504 86,624 61,404 29.11%
Alike-Regular 107,932 51,676 36,620 29.14%
NanumGothic-Bold 2,300,388 1,027,812 728,144 29.16%
Comfortaa-Regular 98,408 46,624 33,028 29.16%
Syncopate-Regular 175,180 67,156 47,560 29.18%
CherrySwash-Regular 30,596 14,912 10,560 29.18%
ModernAntiqua-Regular 70,104 26,776 18,956 29.21%
CroissantOne-Regular 54,744 22,884 16,200 29.21%
AdventPro-Regular 47,308 22,848 16,168 29.24%
AdventPro-ExtraLight 46,840 23,592 16,688 29.26%
NewRocker-Regular 173,224 64,640 45,708 29.29%
CantataOne-Regular 96,828 43,208 30,540 29.32%
AdventPro-Light 46,788 23,356 16,500 29.35%
TulpenOne-Regular 35,244 18,860 13,320 29.37%
Neuton-Light 49,792 25,032 17,668 29.42%
Snippet 39,284 18,812 13,276 29.43%
HammersmithOne-Regular 103,428 45,120 31,840 29.43%
NovaMono 302,376 148,164 104,548 29.44%
Judson-Regular 220,844 99,764 70,380 29.45%
PassionOne-Black 24,316 13,904 9,808 29.46%
PassionOne-Regular 25,104 14,464 10,200 29.48%
BlackOpsOne-Regular 76,116 33,316 23,476 29.54%
Cuprum-BoldItalic 96,188 41,972 29,564 29.56%
Gudea-Italic 27,004 16,464 11,596 29.57%
Amiri-Slanted 620,344 247,192 174,068 29.58%
Lobster 140,856 58,608 41,268 29.59%
PassionOne-Bold 24,776 14,252 10,032 29.61%
TitilliumWeb-Black 49,356 25,180 17,720 29.63%
Amiri-Bold 602,408 230,640 162,308 29.63%
NovaSlim 93,956 39,900 28,076 29.63%
NovaSquare 87,968 36,244 25,500 29.64%
Signika-Regular 141,132 76,188 53,600 29.65%
Amiri-BoldSlanted 606,808 242,164 170,348 29.66%
JockeyOne-Regular 48,604 22,400 15,752 29.68%
Amiri-Regular 608,216 235,676 165,704 29.69%
TitilliumWeb-Bold 59,904 30,500 21,440 29.70%
MetalMania-Regular 254,568 122,728 86,240 29.73%
NovaFlat 93,844 39,724 27,908 29.75%
IstokWeb-BoldItalic 238,068 94,004 66,040 29.75%
IstokWeb-Italic 238,028 93,980 66,008 29.76%
Judson-Italic 212,008 97,012 68,112 29.79%
Sanchez-Italic 75,212 29,172 20,476 29.81%
CherrySwash-Bold 30,028 14,788 10,376 29.84%
NanumGothicCoding-Regular 2,315,924 997,296 699,120 29.90%
Lekton-Bold 113,684 48,972 34,328 29.90%
NovaCut 94,488 40,272 28,224 29.92%
Gudea-Regular 22,932 14,604 10,232 29.94%
Andika-R 1,469,776 520,648 364,408 30.01%
ShareTechMono-Regular 23,976 12,928 9,048 30.01%
LuckiestGuy 73,368 39,312 27,496 30.06%
LobsterTwo-Bold 241,104 88,016 61,552 30.07%
Cuprum-Italic 96,400 42,236 29,536 30.07%
TitilliumWeb-SemiBold 63,044 32,192 22,496 30.12%
Lekton-Regular 114,320 48,472 33,868 30.13%
Metamorphous-Regular 135,740 54,392 38,000 30.14%
Lato-BlackItalic 111,616 48,944 34,152 30.22%
CreteRound-Italic 67,260 27,984 19,504 30.30%
NanumGothic-Regular 2,369,696 1,007,520 702,180 30.31%
EmblemaOne-Regular 61,832 28,724 20,004 30.36%
Almendra-Regular 68,740 28,832 20,076 30.37%
GFSDidot-Regular 191,144 79,084 55,056 30.38%
NovaOval 96,656 41,692 29,016 30.40%
Graduate-Regular 22,716 11,352 7,900 30.41%
Signika-Bold 161,116 77,052 53,584 30.46%
Signika-Light 186,036 87,696 60,968 30.48%
TitilliumWeb-BoldItalic 69,788 35,496 24,676 30.48%
LobsterTwo-BoldItalic 235,632 85,248 59,260 30.49%
Magra-Regular 45,536 23,176 16,108 30.50%
TitilliumWeb-ExtraLight 63,124 31,764 22,072 30.51%
TitilliumWeb-Regular 63,752 32,612 22,660 30.52%
TitilliumWeb-Light 64,032 32,808 22,796 30.52%
AlegreyaSC-BoldItalic 73,096 32,608 22,652 30.53%
Exo-ExtraLight 93,440 43,028 29,872 30.58%
AlegreyaSC-Italic 73,720 32,116 22,296 30.58%
Allura-Regular 88,084 41,012 28,468 30.59%
SonsieOne-Regular 75,992 35,068 24,332 30.61%
Italianno-Regular 137,364 60,092 41,688 30.63%
Enriqueta-Regular 53,472 22,648 15,708 30.64%
AlegreyaSC-Bold 72,460 32,208 22,332 30.66%
IstokWeb-Bold 251,372 97,284 67,448 30.67%
Koulen 246,028 58,440 40,516 30.67%
SupermercadoOne-Regular 143,180 51,428 35,608 30.76%
JotiOne-Regular 45,584 21,704 15,024 30.78%
Exo-Black 91,492 41,272 28,568 30.78%
Varela-Regular 188,208 79,400 54,908 30.85%
NovaScript 117,320 48,112 33,268 30.85%
Exo-BlackItalic 101,124 45,748 31,620 30.88%
Exo-Regular 93,848 42,744 29,524 30.93%
Signika-Semibold 166,244 78,528 54,228 30.94%
Exo-ThinItalic 104,440 47,636 32,892 30.95%
Exo-Thin 93,096 42,072 29,048 30.96%
Buenard-Regular 60,188 23,988 16,552 31.00%
Courgette-Regular 122,072 55,120 38,020 31.02%
Exo-Italic 104,176 47,364 32,668 31.03%
AlegreyaSC-BlackItalic 72,304 31,564 21,760 31.06%
AlegreyaSC-Black 71,136 30,532 21,036 31.10%
TitilliumWeb-LightItalic 71,716 36,916 25,432 31.11%
TitilliumWeb-Italic 72,408 37,224 25,644 31.11%
AverageSans-Regular 44,000 20,688 14,248 31.13%
TitilliumWeb-SemiBoldItalic 71,808 37,160 25,592 31.13%
Amarante-Regular 148,116 55,404 38,156 31.13%
SquadaOne-Regular 19,072 9,544 6,572 31.14%
Buenard-Bold 58,992 24,068 16,568 31.16%
Fasthand-Regular 124,828 43,476 29,916 31.19%
EBGaramond-Regular 231,900 118,872 81,792 31.19%
Artifika-Regular 131,788 67,088 46,152 31.21%
Bayon 248,208 55,916 38,460 31.22%
TitilliumWeb-ExtraLightItalic 67,784 34,772 23,908 31.24%
PressStart2P-Regular 69,748 15,148 10,404 31.32%
PoiretOne-Regular 47,704 22,872 15,680 31.44%
Lora-Italic 153,040 76,136 52,176 31.47%
Quantico-BoldItalic 20,656 12,248 8,388 31.52%
Voces-Regular 67,696 34,988 23,948 31.55%
Lato-BoldItalic 120,312 51,368 35,148 31.58%
Khmer 343,064 74,108 50,640 31.67%
Quantico-Regular 20,928 11,680 7,976 31.71%
Philosopher-Italic 240,984 104,932 71,632 31.73%
Poly-Regular 76,796 33,632 22,932 31.81%
AveriaSerifLibre-Light 109,972 62,144 42,364 31.83%
AlegreyaSC-Regular 73,384 31,236 21,292 31.84%
LobsterTwo-Italic 249,896 86,732 59,116 31.84%
LobsterTwo-Regular 254,332 89,556 60,948 31.94%
HeadlandOne-Regular 149,692 59,096 40,208 31.96%
Battambang-Regular 357,868 77,596 52,780 31.98%
GreatVibes-Regular 106,004 49,968 33,984 31.99%
UnicaOne-Regular 39,912 17,088 11,616 32.02%
NanumGothic-ExtraBold 2,355,216 1,018,840 692,552 32.03%
Philosopher-Bold 211,380 91,992 62,528 32.03%
Quantico-Italic 22,132 12,568 8,536 32.08%
Quantico-Bold 20,896 11,728 7,964 32.09%
Smokum-Regular 63,948 33,900 23,020 32.09%
Sarina-Regular 96,104 43,132 29,284 32.11%
PirataOne-Regular 56,312 20,292 13,768 32.15%
Philosopher-BoldItalic 220,080 96,916 65,712 32.20%
Cardo-Regular 400,328 223,688 151,632 32.21%
Lora-Regular 167,396 83,388 56,444 32.31%
Bokor 349,240 66,300 44,872 32.32%
Poly-Italic 74,224 32,160 21,760 32.34%
Lato-Italic 118,352 51,056 34,540 32.35%
Battambang-Bold 346,212 75,232 50,820 32.45%
Dangrek 269,620 60,164 40,588 32.54%
Philosopher-Regular 257,540 108,948 73,448 32.58%
AveriaSerifLibre-Regular 109,988 61,772 41,616 32.63%
Lora-BoldItalic 173,080 86,972 58,552 32.68%
ReenieBeanie 147,872 63,180 42,496 32.74%
Allan-Bold 115,328 59,588 40,036 32.81%
Vidaloka-Regular 135,704 64,520 43,292 32.90%
Preahvihear 253,968 53,560 35,932 32.91%
Miltonian-Regular 124,084 70,552 47,276 32.99%
Play-Regular 171,080 65,368 43,764 33.05%
AveriaSansLibre-Light 107,752 60,412 40,432 33.07%
VT323-Regular 86,576 18,788 12,560 33.15%
AveriaSerifLibre-Bold 113,956 63,496 42,408 33.21%
Play-Bold 170,220 64,192 42,872 33.21%
Padauk-Regular 468,944 141,676 94,572 33.25%
AveriaLibre-Light 108,192 60,868 40,628 33.25%
Angkor 266,096 53,468 35,676 33.28%
Lato-Black 114,588 48,536 32,384 33.28%
AveriaLibre-Regular 108,468 60,876 40,596 33.31%
Lato-Regular 120,196 50,068 33,380 33.33%
Wellfleet-Regular 82,016 34,536 23,024 33.33%
AveriaGruesaLibre-Regular 111,544 62,304 41,532 33.34%
AveriaLibre-Bold 112,228 62,756 41,832 33.34%
AveriaSansLibre-Regular 108,360 60,564 40,352 33.37%
AveriaSansLibre-Bold 113,016 63,016 41,964 33.41%
Suwannaphum 336,768 65,544 43,560 33.54%
Siemreap 285,320 61,236 40,676 33.58%
Content-Bold 306,292 63,416 42,088 33.63%
JosefinSansStd-Light 45,556 21,492 14,248 33.71%
Content-Regular 313,092 63,856 42,312 33.74%
Moulpali 308,668 64,688 42,852 33.76%
Chenla 293,588 61,792 40,920 33.78%
OdorMeanChey 310,824 63,100 41,756 33.83%
Adamina-Regular 117,340 55,428 36,668 33.85%
Moul 386,968 74,920 49,460 33.98%
Hanalei-Regular 184,176 88,900 58,524 34.17%
Lora-Bold 162,544 79,296 52,024 34.39%
CabinCondensed-Regular 153,128 75,860 49,732 34.44%
AveriaSansLibre-LightItalic 134,200 71,608 46,856 34.57%
AveriaSerifLibre-Italic 130,956 70,372 46,032 34.59%
AveriaSerifLibre-LightItalic 135,976 72,488 47,388 34.63%
Aubrey-Regular 112,416 53,484 34,912 34.72%
AveriaLibre-Italic 128,848 69,100 45,092 34.74%
AveriaSansLibre-Italic 128,896 69,316 45,116 34.91%
Lato-Bold 121,788 50,444 32,828 34.92%
PetitFormalScript-Regular 175,068 69,848 45,436 34.95%
Taprom 331,876 67,044 43,612 34.95%
JustAnotherHand 192,544 92,336 60,020 35.00%
PT_Serif-Caption-Web-Regular 399,840 202,848 131,788 35.03%
Andada-Regular 108,600 33,144 21,504 35.12%
Tharlon-Regular 353,228 137,632 89,104 35.26%
AveriaLibre-LightItalic 133,544 71,044 45,992 35.26%
Freehand 462,012 80,232 51,912 35.30%
PT_Serif-Caption-Web-Italic 406,612 199,844 129,228 35.34%
Cabin-Regular 188,320 83,508 53,952 35.39%
IstokWeb-Regular 348,776 140,644 90,812 35.43%
Cabin-Italic 190,744 85,824 55,392 35.46%
PT_Sans-Web-Regular 442,960 227,748 146,772 35.56%
Volkhov-BoldItalic 102,728 49,592 31,948 35.58%
Cabin-SemiBold 173,020 76,528 49,284 35.60%
PT_Serif-Web-Italic 375,356 188,004 121,064 35.61%
Lato-Hairline 115,316 48,288 31,092 35.61%
Alice-Regular 150,512 69,368 44,584 35.73%
Cabin-BoldItalic 176,992 80,128 51,488 35.74%
Vibur-Regular 173,600 90,628 58,212 35.77%
CabinCondensed-Bold 166,912 73,820 47,356 35.85%
CabinCondensed-Medium 167,004 73,848 47,360 35.87%
Volkhov-Regular 112,276 53,056 34,008 35.90%
Cabin-SemiBoldItalic 181,880 82,116 52,624 35.92%
Marvel-Bold 36,968 20,348 13,040 35.92%
PT_Sans-Caption-Web-Regular 387,192 194,872 124,784 35.97%
KellySlab-Regular 77,804 37,176 23,804 35.97%
Cabin-MediumItalic 183,844 83,400 53,332 36.05%
OpenSans-CondBold 265,244 121,096 77,292 36.17%
CabinCondensed-SemiBold 168,732 74,820 47,748 36.18%
Cabin-Medium 176,076 78,232 49,900 36.22%
PT_Sans-Narrow-Web-Bold 487,720 251,432 160,144 36.31%
Cabin-Bold 172,576 75,784 48,264 36.31%
Volkhov-Bold 112,220 52,648 33,524 36.32%
PT_Serif-Web-Regular 359,048 178,496 113,496 36.42%
AveriaSerifLibre-BoldItalic 138,208 73,760 46,824 36.52%
MiltonianTattoo-Regular 189,460 97,764 61,916 36.67%
AveriaSansLibre-BoldItalic 135,852 72,616 45,904 36.79%
Marvel-Regular 38,220 20,540 12,984 36.79%
AlikeAngular-Regular 123,280 57,584 36,380 36.82%
PT_Sans-Web-Italic 436,452 222,468 140,444 36.87%
Mako-Regular 87,780 47,064 29,648 37.00%
AveriaLibre-BoldItalic 135,664 72,492 45,652 37.02%
Lato-Light 122,524 52,652 33,096 37.14%
PT_Sans-Narrow-Web-Regular 396,212 195,740 122,572 37.38%
Forum-Regular 303,316 129,704 81,212 37.39%
Lato-HairlineItalic 91,460 40,180 25,092 37.55%
PT_Sans-Web-Bold 470,240 241,916 150,604 37.75%
PT_Serif-Web-Bold 339,996 164,232 102,132 37.81%
Marvel-BoldItalic 40,080 22,168 13,780 37.84%
PT_Sans-Web-BoldItalic 375,204 186,188 115,668 37.88%
Metrophobic 68,924 37,864 23,444 38.08%
Volkhov-Italic 102,360 47,624 29,432 38.20%
PT_Serif-Web-BoldItalic 337,580 163,144 100,744 38.25%
Trocchi-Regular 143,864 63,476 39,172 38.29%
Metal 409,660 75,296 46,428 38.34%
Marvel-Italic 40,668 21,952 13,520 38.41%
Shanti-Regular 91,352 49,008 30,036 38.71%
Lato-LightItalic 91,600 41,304 25,308 38.73%
JosefinSlab-Thin 200,012 68,220 41,612 39.00%
NanumMyeongjo-Bold 4,144,216 1,531,052 931,632 39.15%
Roboto-ThinItalic 197,892 103,472 62,920 39.19%
Roboto-Thin 195,576 100,528 61,056 39.26%
Federo-Regular 145,056 66,808 40,564 39.28%
Caudex-Bold 471,512 193,860 117,340 39.47%
LoveYaLikeASister 271,904 135,428 81,864 39.55%
JosefinSlab-ThinItalic 197,404 66,416 40,108 39.61%
Geostar-Regular 41,288 20,868 12,592 39.66%
Caudex-Regular 466,152 186,684 112,208 39.89%
PT_Sans-Caption-Web-Bold 398,780 197,368 118,576 39.92%
RalewayDots-Regular 465,136 115,808 69,436 40.04%
OpenSans-Semibold 222,160 115,148 68,492 40.52%
OpenSans-ExtraBold 223,428 115,164 68,484 40.53%
OpenSans-Light 223,280 114,632 68,024 40.66%
OpenSans-Regular 218,196 112,704 66,848 40.69%
OpenSans-CondLight 222,036 113,284 67,156 40.72%
GeostarFill-Regular 38,824 19,728 11,688 40.75%
Caudex-BoldItalic 555,112 223,200 132,176 40.78%
NanumMyeongjo-ExtraBold 4,739,716 1,900,724 1,125,476 40.79%
OpenSans-Bold 225,468 115,592 68,368 40.85%
Caudex-Italic 559,384 215,784 126,464 41.39%
OpenSans-SemiboldItalic 213,652 111,084 65,064 41.43%
Buda-Light 105,988 53,268 31,132 41.56%
OpenSans-CondLightItalic 211,640 108,904 63,408 41.78%
OpenSans-Italic 213,640 110,372 64,252 41.79%
OpenSans-LightItalic 213,976 110,360 64,200 41.83%
NanumMyeongjo-Regular 3,800,008 1,335,268 776,660 41.83%
OpenSans-ExtraBoldItalic 214,224 110,748 64,228 42.01%
OpenSans-BoldItalic 214,120 110,260 63,840 42.10%
GFSNeohellenicItalic 369,052 117,000 64,844 44.58%
GFSNeohellenicBold 344,708 108,224 59,832 44.71%
GFSNeohellenic 460,072 151,292 81,584 46.08%
GFSNeohellenicBoldItalic 362,076 113,988 61,308 46.22%
NanumPenScript-Regular 3,789,676 1,537,980 813,712 47.09%
Questrial-Regular 64,548 32,240 16,840 47.77%
VarelaRound-Regular 84,028 39,972 20,556 48.57%
Jura-DemiBold 326,140 149,796 76,768 48.75%
Jura-Regular 338,932 153,748 77,388 49.67%
Jura-Medium 345,820 155,804 78,340 49.72%
NanumBrushScript-Regular 3,745,376 1,510,664 744,368 50.73%
PaytoneOne 193,472 90,316 41,644 53.89%
Jura-Light 266,728 116,196 51,912 55.32%

Appendix C: Curve point prediction

Due to the regular placement of curve points on the outline of a glyph, it is possible to reliably predict the coordinates of some points. A study of 37,00 fonts (the Monotype font corpus)was performed to test the feasibility of this. While the results varied substantially from font to font, the average number of all points that could be predicted (with respective coordinates eliminated as redundant info) was 2.0%, corresponding to an average of 3.11 bytes saved per eliminated point.

A second study on a small corpus (fonts supplied with Windows 7) identified and eliminated on-curve points that were exactly midway between their preceding and following off-curve points. No flag was added to indicate removal. The size of the compressed, altered font was compared with the compressed size of the unaltered version. The results varied substantially; in a few cases the font was significantly smaller (around 2% in the best case). In around one-third of the fonts tested, the reduction was insignificant (a small fraction of a percent). However, in two-thirds of the fonts tested, the compressed size was larger than the unaltered font (by around 0.1%).

These results indicate that, for predictable coordinates, the entropy coder is doing a better job of compressing the redundant data than a content-aware hueristic for point removal. The Working group thus concluded that this approach was not worth pursuing further.

Appendix D: MTX-like Preprocessing

This appendix summarizes the preprocessing steps used for initial testing, and is non-normative. The Working Group plans to refine this over time. The preprocessing steps eventually chosen will be fully documented in the WOFF 2.0 specification.

Table-specific transforms

In some cases, the TrueType tables contain significant redundancy. For these, WOFF 2.0
defines transforms that strip out the redundancy, and then allow the table to be reconstituted.
Currently, effort is focussed on the ‘glyf’ table, but applying transforms to other tables is also under
consideration as well.

When the glyf table is transformed, both the ‘glyf’ and ‘loca’ tables should be listed in the
directory with the applyTransform flag set. The transformSize of the loca table should be zero -
the data in the transformed ‘glyf’ table will be used to reconstruct both glyf and loca tables.

The ‘glyf’ table

When the applyTransform flag is set on the ‘glyf’ table, the contents of the glyf table are
transformed using an algorithm designed to optimize the compressibility of the resulting stream.
This transform is based on the one in [MTX], but has been updated to achieve even more
performance.

The transformed glyf table consists of seven substreams. There is a header consisting of a
version, the number of glyphs, and the sizes of each of the substreams, then the data of the
substreams follow.

USHORT numGlyphs
USHORT indexFormat
ULONG nContourStreamSize
ULONG nPointsStreamSize
ULONG flagStreamSize
ULONG glyphStreamSize
ULONG compositeStreamSize
ULONG bboxStreamSize
ULONG instructionStreamSize

The individual glyphs are interleaved across all these streams. Thus, each stream contains
some number of bytes for glyph 0, followed by some number of bytes for glyph 1, etc. The
reconstruction process is defined in terms of reading from the various streams.

The ‘loca’ table

The origLength for the ‘loca’ table should be large enough to hold the reconstructed loca table.
If the indexFormat is short, this means 2 * (numGlyphs + 1). If long, 4 * (numGlyphs + 1).
The origLength in the ‘maxp’ table must match that in the transformed ‘glyf’ table. (Rationale
for duplicating the value: the transformed table should contain sufficient information for
reconstructing the final table. Otherwise, it’s much harder to do incremental processing).

Bounding boxes

Each glyph can optionally have an explicitly specified bounding box. Since a bounding box takes
8 bytes, it should be omitted where possible. However, reconstructing a bounding box in the
case of arbitrary glyph transformations is non-trivial. Further, it is possible for the source font
to have a bounding box inconsistent with the actual glyph data. In this case, it the role of the
compression algorithm to represent the font as accurately as possible, inconsistencies or no, so
that the use of the font does not vary at all dependent on whether compression was applied.

The bounding box data stream is defined as follows. First, there is a bitmask, consisting of 4
* ((nGlyphs + 31) / 32) bytes. Bits are packed big-end-first. Thus, glyph 0 is represented as a
value of 0x80 in the first byte, glyph 1 as 0x40, and glyph 8 as a value of 0x80 in the second
byte. A bit of 1 indicates that the bbox is present, and a bit of 0 indicates its absence.
For each glyph with a 1 bit set, the bounding box is represented as 4 SHORT values, xMin,
yMin, xMax, yMax, and the interpretation of these values is the same as in the header of an
individual glyph.

Note: In the present implementation, bounding boxes must be specified for all composite glyphs.
Under consideration is reconstructing bounding boxes for composite glyphs with offset-only
transforms. For this reason, the bbox reconstruction is described (and implemented, in the
reference code), as a separate pass rather than part of the stream processing for glyphs.

A bounding box present for a glyph with zero contours is an error.