├── .gitignore ├── LICENSE ├── README.md ├── attributes_survey.py ├── build.py └── source_fonts ├── BIZUDPGothic-Bold.ttf ├── BIZUDPGothic-Regular.ttf ├── Inter-Regular.ttf ├── Inter-SemiBold.ttf ├── LICENSE_BIZUDPGothic └── LICENSE_Inter /.gitignore: -------------------------------------------------------------------------------- 1 | build_tmp 2 | work 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | # Licensing 2 | 3 | - Source fonts are licensed under SIL OPEN FONT LICENSE Version 1.1. 4 | For more information, see "LICENSE_" file contained in the "source_fonts" directory. 5 | - "BIZTER" are licensed under SIL OPEN FONT LICENSE Version 1.1. 6 | 7 | ## "BIZTER" licensing 8 | 9 | Copyright (c) 2022 Yuko OTAWARA. with Reserved Font Name "BIZTER" 10 | 11 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 12 | This license is copied below, and is also available with a FAQ at: 13 | https://scripts.sil.org/OFL 14 | 15 | 16 | ----------------------------------------------------------- 17 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 18 | ----------------------------------------------------------- 19 | 20 | PREAMBLE 21 | The goals of the Open Font License (OFL) are to stimulate worldwide 22 | development of collaborative font projects, to support the font creation 23 | efforts of academic and linguistic communities, and to provide a free and 24 | open framework in which fonts may be shared and improved in partnership 25 | with others. 26 | 27 | The OFL allows the licensed fonts to be used, studied, modified and 28 | redistributed freely as long as they are not sold by themselves. The 29 | fonts, including any derivative works, can be bundled, embedded, 30 | redistributed and/or sold with any software provided that any reserved 31 | names are not used by derivative works. The fonts and derivatives, 32 | however, cannot be released under any other type of license. The 33 | requirement for fonts to remain under this license does not apply 34 | to any document created using the fonts or their derivatives. 35 | 36 | DEFINITIONS 37 | "Font Software" refers to the set of files released by the Copyright 38 | Holder(s) under this license and clearly marked as such. This may 39 | include source files, build scripts and documentation. 40 | 41 | "Reserved Font Name" refers to any names specified as such after the 42 | copyright statement(s). 43 | 44 | "Original Version" refers to the collection of Font Software components as 45 | distributed by the Copyright Holder(s). 46 | 47 | "Modified Version" refers to any derivative made by adding to, deleting, 48 | or substituting -- in part or in whole -- any of the components of the 49 | Original Version, by changing formats or by porting the Font Software to a 50 | new environment. 51 | 52 | "Author" refers to any designer, engineer, programmer, technical 53 | writer or other person who contributed to the Font Software. 54 | 55 | PERMISSION & CONDITIONS 56 | Permission is hereby granted, free of charge, to any person obtaining 57 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 58 | redistribute, and sell modified and unmodified copies of the Font 59 | Software, subject to the following conditions: 60 | 61 | 1) Neither the Font Software nor any of its individual components, 62 | in Original or Modified Versions, may be sold by itself. 63 | 64 | 2) Original or Modified Versions of the Font Software may be bundled, 65 | redistributed and/or sold with any software, provided that each copy 66 | contains the above copyright notice and this license. These can be 67 | included either as stand-alone text files, human-readable headers or 68 | in the appropriate machine-readable metadata fields within text or 69 | binary files as long as those fields can be easily viewed by the user. 70 | 71 | 3) No Modified Version of the Font Software may use the Reserved Font 72 | Name(s) unless explicit written permission is granted by the corresponding 73 | Copyright Holder. This restriction only applies to the primary font name as 74 | presented to the users. 75 | 76 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 77 | Software shall not be used to promote, endorse or advertise any 78 | Modified Version, except to acknowledge the contribution(s) of the 79 | Copyright Holder(s) and the Author(s) or with their explicit written 80 | permission. 81 | 82 | 5) The Font Software, modified or unmodified, in part or in whole, 83 | must be distributed entirely under this license, and must not be 84 | distributed under any other license. The requirement for fonts to 85 | remain under this license does not apply to any document created 86 | using the Font Software. 87 | 88 | TERMINATION 89 | This license becomes null and void if any of the above conditions are 90 | not met. 91 | 92 | DISCLAIMER 93 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 94 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 95 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 96 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 97 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 98 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 99 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 100 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 101 | OTHER DEALINGS IN THE FONT SOFTWARE. 102 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BIZTER 2 | 3 | BIZTER は、UI 向けフォント [Inter](https://github.com/rsms/inter) と、ユニバーサルデザインフォントの [BIZ UDPゴシック](https://github.com/googlefonts/morisawa-biz-ud-gothic) の合成フォントです。 4 | 5 | Inter はとても美しい… BIZ UDPゴシックはとても読みやすい… ならば、それらを組み合わせたフォントが読みやすく美しいフォントにならないはずがない! 6 | …というモチベーションで組み合わせたところ、やっぱり最高でした。 7 | 8 | 👉 [ダウンロード](https://github.com/yuru7/BIZTER/releases) 9 | ※「Assets」内の zip ファイルをダウンロードしてご利用ください。 10 | 11 | ![image](https://user-images.githubusercontent.com/13458509/208080375-44309b06-b563-4f08-86d0-c7f74e677beb.png) 12 | 13 | ## ビルド 14 | 15 | ### Linux 16 | 17 | ```sh 18 | # 必要パッケージのインストール 19 | sudo apt install python3 python3-pip fontforge python3-fontforge ttfautohint 20 | # ビルド 21 | python build.py 22 | ``` 23 | 24 | ### Windows 25 | 26 | **※事前にPython3、FontForgeをインストールしてあること** 27 | 28 | ```sh 29 | &"C:\Program Files (x86)\FontForgeBuilds\bin\ffpython.exe" .\build.py 30 | ``` 31 | -------------------------------------------------------------------------------- /attributes_survey.py: -------------------------------------------------------------------------------- 1 | import fontforge 2 | 3 | new_font = fontforge.open("source_fonts/BIZUDPGothic-Regular.ttf") 4 | with open("build_tmp/attr_bizud.txt", mode="w", encoding="utf_8") as f: 5 | for item in dir(new_font): 6 | f.write(f"{item}: " + str(getattr(new_font, item)) + "\n") 7 | -------------------------------------------------------------------------------- /build.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import os 4 | import shutil 5 | import subprocess 6 | from typing import Any, Tuple 7 | from unicodedata import east_asian_width 8 | 9 | import fontforge 10 | import psMat 11 | 12 | VERSION = "v0.0.2" 13 | FONT_NAME = "BIZTER" 14 | 15 | BUILD_TMP = "build_tmp" 16 | SOURCE_DIR = "source_fonts" 17 | SOURCE_FONT_JP = "BIZUDPGothic-{}.ttf" 18 | SOURCE_FONT_EN = "Inter-{}.ttf" 19 | 20 | EM_ASCENT = 1782 21 | EM_DESCENT = 266 22 | 23 | FONT_ASCENT = EM_ASCENT + 40 24 | FONT_DESCENT = EM_DESCENT + 190 25 | 26 | COPYRIGHT = """[Inter] 27 | Copyright (c) 2020 The Inter Project Authors (https://github.com/rsms/inter) 28 | 29 | [BIZ UDPGothic] 30 | Copyright 2022 The BIZ UDGothic Project Authors (https://github.com/googlefonts/morisawa-biz-ud-gothic) 31 | 32 | [BIZTER] 33 | Copyright 2022 Yuko Otawara 34 | """ 35 | 36 | 37 | def open_font(weight) -> Tuple[Any, Any]: 38 | """フォントファイルを開く""" 39 | jp_font = fontforge.open(f"{SOURCE_DIR}/{SOURCE_FONT_JP.format(weight)}") 40 | if weight == "Bold": 41 | # 太さを合わせるため、InterはSemiBoldを使う 42 | en_font = fontforge.open(f"{SOURCE_DIR}/{SOURCE_FONT_EN.format('Semi'+weight)}") 43 | else: 44 | en_font = fontforge.open(f"{SOURCE_DIR}/{SOURCE_FONT_EN.format(weight)}") 45 | 46 | # フォント参照を解除する 47 | for glyph in jp_font.glyphs(): 48 | if glyph.isWorthOutputting(): 49 | jp_font.selection.select(("more", None), glyph) 50 | jp_font.unlinkReferences() 51 | for glyph in en_font.glyphs(): 52 | if glyph.isWorthOutputting(): 53 | en_font.selection.select(("more", None), glyph) 54 | en_font.unlinkReferences() 55 | jp_font.selection.none() 56 | en_font.selection.none() 57 | 58 | return jp_font, en_font 59 | 60 | 61 | def remove_duplicate_glyphs(jp_font, en_font): 62 | """Interと重複しているグリフを削除する""" 63 | for g in en_font.glyphs(): 64 | if not g.isWorthOutputting(): 65 | continue 66 | unicode = int(g.unicode) 67 | if unicode >= 0: 68 | for g_jp in jp_font.selection.select(unicode).byGlyphs: 69 | # East Asian Ambiguous Widthの文字は、Inter側のグリフを削除する 70 | if east_asian_width(chr(unicode)) == "A": 71 | g.clear() 72 | else: 73 | g_jp.clear() 74 | 75 | 76 | def adjust_font_scale(en_font): 77 | """フォントのスケールを調整する""" 78 | # 英語フォントのサイズを少し拡大する 79 | for glyph in en_font.glyphs(): 80 | if not glyph.isWorthOutputting(): 81 | continue 82 | # フォントのスケールを調整する 83 | glyph.transform(psMat.scale(1.06, 1.06)) 84 | # フォントの位置を調整する 85 | glyph.transform(psMat.translate(0, -10)) 86 | 87 | 88 | def merge_fonts(jp_font, en_font, weight) -> Any: 89 | """英語フォントと日本語フォントをマージする""" 90 | # マージするためにemを揃える 91 | em_size = EM_ASCENT + EM_DESCENT 92 | jp_font.em = em_size 93 | en_font.em = em_size 94 | 95 | en_font.generate(f"{BUILD_TMP}/modified_{SOURCE_FONT_EN.format(weight)}") 96 | jp_font.mergeFonts(f"{BUILD_TMP}/modified_{SOURCE_FONT_EN.format(weight)}") 97 | return jp_font 98 | 99 | 100 | def edit_meta_data(font, weight: str): 101 | """フォント内のメタデータを編集する""" 102 | font.ascent = EM_ASCENT 103 | font.descent = EM_DESCENT 104 | 105 | font.os2_typoascent = FONT_ASCENT 106 | font.os2_typodescent = -FONT_DESCENT 107 | font.os2_typolinegap = 0 108 | 109 | font.hhea_ascent = FONT_ASCENT 110 | font.hhea_descent = -FONT_DESCENT 111 | font.hhea_linegap = 0 112 | 113 | font.os2_winascent = FONT_ASCENT 114 | font.os2_windescent = FONT_DESCENT 115 | 116 | font.sfnt_names = ( 117 | ( 118 | "English (US)", 119 | "License", 120 | "This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL", 121 | ), 122 | ("English (US)", "License URL", "http://scripts.sil.org/OFL"), 123 | ("English (US)", "Version", f"{FONT_NAME} {VERSION}"), 124 | ) 125 | font.familyname = FONT_NAME 126 | font.fontname = f"{FONT_NAME}-{weight}" 127 | font.fullname = f"{FONT_NAME} {weight}" 128 | font.os2_vendor = "TWR" 129 | font.copyright = COPYRIGHT 130 | 131 | 132 | def main(): 133 | # 一時ディレクトリ作成 134 | if os.path.exists(BUILD_TMP): 135 | shutil.rmtree(BUILD_TMP) 136 | os.makedirs(BUILD_TMP) 137 | 138 | for weight in ("Regular", "Bold"): 139 | jp_font, en_font = open_font(weight) 140 | 141 | remove_duplicate_glyphs(jp_font, en_font) 142 | 143 | adjust_font_scale(en_font) 144 | 145 | font = merge_fonts(jp_font, en_font, weight) 146 | 147 | edit_meta_data(font, weight) 148 | 149 | font.generate(f"{BUILD_TMP}/gen_{FONT_NAME}-{weight}.ttf") 150 | 151 | subprocess.run( 152 | ( 153 | "python3", 154 | "-m", 155 | "ttfautohint", 156 | "--dehint", 157 | f"{BUILD_TMP}/gen_{FONT_NAME}-{weight}.ttf", 158 | f"{BUILD_TMP}/{FONT_NAME}-{weight}.ttf", 159 | ) 160 | ) 161 | 162 | 163 | if __name__ == "__main__": 164 | main() 165 | -------------------------------------------------------------------------------- /source_fonts/BIZUDPGothic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuru7/BIZTER/a6b7a467170f51e215950279b6baa965b1451337/source_fonts/BIZUDPGothic-Bold.ttf -------------------------------------------------------------------------------- /source_fonts/BIZUDPGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuru7/BIZTER/a6b7a467170f51e215950279b6baa965b1451337/source_fonts/BIZUDPGothic-Regular.ttf -------------------------------------------------------------------------------- /source_fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuru7/BIZTER/a6b7a467170f51e215950279b6baa965b1451337/source_fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /source_fonts/Inter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuru7/BIZTER/a6b7a467170f51e215950279b6baa965b1451337/source_fonts/Inter-SemiBold.ttf -------------------------------------------------------------------------------- /source_fonts/LICENSE_BIZUDPGothic: -------------------------------------------------------------------------------- 1 | Copyright 2022 The BIZ UDGothic Project Authors (https://github.com/googlefonts/morisawa-biz-ud-mincho) 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | https://scripts.sil.org/OFL 6 | 7 | 8 | ----------------------------------------------------------- 9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 10 | ----------------------------------------------------------- 11 | 12 | PREAMBLE 13 | The goals of the Open Font License (OFL) are to stimulate worldwide 14 | development of collaborative font projects, to support the font creation 15 | efforts of academic and linguistic communities, and to provide a free and 16 | open framework in which fonts may be shared and improved in partnership 17 | with others. 18 | 19 | The OFL allows the licensed fonts to be used, studied, modified and 20 | redistributed freely as long as they are not sold by themselves. The 21 | fonts, including any derivative works, can be bundled, embedded, 22 | redistributed and/or sold with any software provided that any reserved 23 | names are not used by derivative works. The fonts and derivatives, 24 | however, cannot be released under any other type of license. The 25 | requirement for fonts to remain under this license does not apply 26 | to any document created using the fonts or their derivatives. 27 | 28 | DEFINITIONS 29 | "Font Software" refers to the set of files released by the Copyright 30 | Holder(s) under this license and clearly marked as such. This may 31 | include source files, build scripts and documentation. 32 | 33 | "Reserved Font Name" refers to any names specified as such after the 34 | copyright statement(s). 35 | 36 | "Original Version" refers to the collection of Font Software components as 37 | distributed by the Copyright Holder(s). 38 | 39 | "Modified Version" refers to any derivative made by adding to, deleting, 40 | or substituting -- in part or in whole -- any of the components of the 41 | Original Version, by changing formats or by porting the Font Software to a 42 | new environment. 43 | 44 | "Author" refers to any designer, engineer, programmer, technical 45 | writer or other person who contributed to the Font Software. 46 | 47 | PERMISSION & CONDITIONS 48 | Permission is hereby granted, free of charge, to any person obtaining 49 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 50 | redistribute, and sell modified and unmodified copies of the Font 51 | Software, subject to the following conditions: 52 | 53 | 1) Neither the Font Software nor any of its individual components, 54 | in Original or Modified Versions, may be sold by itself. 55 | 56 | 2) Original or Modified Versions of the Font Software may be bundled, 57 | redistributed and/or sold with any software, provided that each copy 58 | contains the above copyright notice and this license. These can be 59 | included either as stand-alone text files, human-readable headers or 60 | in the appropriate machine-readable metadata fields within text or 61 | binary files as long as those fields can be easily viewed by the user. 62 | 63 | 3) No Modified Version of the Font Software may use the Reserved Font 64 | Name(s) unless explicit written permission is granted by the corresponding 65 | Copyright Holder. This restriction only applies to the primary font name as 66 | presented to the users. 67 | 68 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 69 | Software shall not be used to promote, endorse or advertise any 70 | Modified Version, except to acknowledge the contribution(s) of the 71 | Copyright Holder(s) and the Author(s) or with their explicit written 72 | permission. 73 | 74 | 5) The Font Software, modified or unmodified, in part or in whole, 75 | must be distributed entirely under this license, and must not be 76 | distributed under any other license. The requirement for fonts to 77 | remain under this license does not apply to any document created 78 | using the Font Software. 79 | 80 | TERMINATION 81 | This license becomes null and void if any of the above conditions are 82 | not met. 83 | 84 | DISCLAIMER 85 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 86 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 87 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 88 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 89 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 90 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 91 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 92 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 93 | OTHER DEALINGS IN THE FONT SOFTWARE. 94 | -------------------------------------------------------------------------------- /source_fonts/LICENSE_Inter: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016-2020 The Inter Project Authors. 2 | "Inter" is trademark of Rasmus Andersson. 3 | https://github.com/rsms/inter 4 | 5 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 6 | This license is copied below, and is also available with a FAQ at: 7 | http://scripts.sil.org/OFL 8 | 9 | ----------------------------------------------------------- 10 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 11 | ----------------------------------------------------------- 12 | 13 | PREAMBLE 14 | The goals of the Open Font License (OFL) are to stimulate worldwide 15 | development of collaborative font projects, to support the font creation 16 | efforts of academic and linguistic communities, and to provide a free and 17 | open framework in which fonts may be shared and improved in partnership 18 | with others. 19 | 20 | The OFL allows the licensed fonts to be used, studied, modified and 21 | redistributed freely as long as they are not sold by themselves. The 22 | fonts, including any derivative works, can be bundled, embedded, 23 | redistributed and/or sold with any software provided that any reserved 24 | names are not used by derivative works. The fonts and derivatives, 25 | however, cannot be released under any other type of license. The 26 | requirement for fonts to remain under this license does not apply 27 | to any document created using the fonts or their derivatives. 28 | 29 | DEFINITIONS 30 | "Font Software" refers to the set of files released by the Copyright 31 | Holder(s) under this license and clearly marked as such. This may 32 | include source files, build scripts and documentation. 33 | 34 | "Reserved Font Name" refers to any names specified as such after the 35 | copyright statement(s). 36 | 37 | "Original Version" refers to the collection of Font Software components as 38 | distributed by the Copyright Holder(s). 39 | 40 | "Modified Version" refers to any derivative made by adding to, deleting, 41 | or substituting -- in part or in whole -- any of the components of the 42 | Original Version, by changing formats or by porting the Font Software to a 43 | new environment. 44 | 45 | "Author" refers to any designer, engineer, programmer, technical 46 | writer or other person who contributed to the Font Software. 47 | 48 | PERMISSION AND CONDITIONS 49 | Permission is hereby granted, free of charge, to any person obtaining 50 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 51 | redistribute, and sell modified and unmodified copies of the Font 52 | Software, subject to the following conditions: 53 | 54 | 1) Neither the Font Software nor any of its individual components, 55 | in Original or Modified Versions, may be sold by itself. 56 | 57 | 2) Original or Modified Versions of the Font Software may be bundled, 58 | redistributed and/or sold with any software, provided that each copy 59 | contains the above copyright notice and this license. These can be 60 | included either as stand-alone text files, human-readable headers or 61 | in the appropriate machine-readable metadata fields within text or 62 | binary files as long as those fields can be easily viewed by the user. 63 | 64 | 3) No Modified Version of the Font Software may use the Reserved Font 65 | Name(s) unless explicit written permission is granted by the corresponding 66 | Copyright Holder. This restriction only applies to the primary font name as 67 | presented to the users. 68 | 69 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 70 | Software shall not be used to promote, endorse or advertise any 71 | Modified Version, except to acknowledge the contribution(s) of the 72 | Copyright Holder(s) and the Author(s) or with their explicit written 73 | permission. 74 | 75 | 5) The Font Software, modified or unmodified, in part or in whole, 76 | must be distributed entirely under this license, and must not be 77 | distributed under any other license. The requirement for fonts to 78 | remain under this license does not apply to any document created 79 | using the Font Software. 80 | 81 | TERMINATION 82 | This license becomes null and void if any of the above conditions are 83 | not met. 84 | 85 | DISCLAIMER 86 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 87 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 88 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 89 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 90 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 91 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 92 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 93 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 94 | OTHER DEALINGS IN THE FONT SOFTWARE. 95 | --------------------------------------------------------------------------------