Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue with non-ascii paths in font look up #3517

Closed
ifmihai opened this issue Sep 14, 2014 · 38 comments
Closed

Issue with non-ascii paths in font look up #3517

ifmihai opened this issue Sep 14, 2014 · 38 comments

Comments

@ifmihai
Copy link

ifmihai commented Sep 14, 2014

I posted in #3487 and following the suggestion of @tacaswell , I create a separate issue, for easier bug tracking:

Since upgrading to 1.4.0, I get the same exception.
I'm on Mac, Mavericks, latest version. anaconda bundle.

I'm not even sure it's about matplotlib, but it crashes when it gets to font_manager.

This is the relevant output for the exception:

---> 18 import matplotlib.pyplot as plt
     19
     20 from copy import deepcopy

/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/pyplot.py in <module>()
     25
     26 import matplotlib
---> 27 import matplotlib.colorbar
     28 from matplotlib import style
     29 from matplotlib import _pylab_helpers, interactive

/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/colorbar.py in <module>()
     32 import matplotlib.artist as martist
     33 import matplotlib.cbook as cbook
---> 34 import matplotlib.collections as collections
     35 import matplotlib.colors as colors
     36 import matplotlib.contour as contour

/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/collections.py in <module>()
     25 import matplotlib.artist as artist
     26 from matplotlib.artist import allow_rasterization
---> 27 import matplotlib.backend_bases as backend_bases
     28 import matplotlib.path as mpath
     29 from matplotlib import _path

/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/backend_bases.py in <module>()
     54
     55 import matplotlib.tight_bbox as tight_bbox
---> 56 import matplotlib.textpath as textpath
     57 from matplotlib.path import Path
     58 from matplotlib.cbook import mplDeprecation

/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/textpath.py in <module>()
     17 from matplotlib.path import Path
     18 from matplotlib import rcParams
---> 19 import matplotlib.font_manager as font_manager
     20 from matplotlib.ft2font import FT2Font, KERNING_DEFAULT, LOAD_NO_HINTING
     21 from matplotlib.ft2font import LOAD_TARGET_LIGHT

/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/font_manager.py in <module>()
   1410                 verbose.report("Using fontManager instance from %s" % _fmcache)
   1411         except:
-> 1412             _rebuild()
   1413     else:
   1414         _rebuild()

/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/font_manager.py in _rebuild()
   1395     def _rebuild():
   1396         global fontManager
-> 1397         fontManager = FontManager()
   1398         if _fmcache:
   1399             pickle_dump(fontManager, _fmcache)

/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/font_manager.py in __init__(self, size, weight)
   1035         #  Load TrueType fonts and create font dictionary.
   1036
-> 1037         self.ttffiles = findSystemFonts(paths) + findSystemFonts()
   1038         self.defaultFamily = {
   1039             'ttf': 'Bitstream Vera Sans',

/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/font_manager.py in findSystemFonts(fontpaths, fontext)
    320                     fontfiles[f] = 1
    321
--> 322             for f in get_fontconfig_fonts(fontext):
    323                 fontfiles[f] = 1
    324

/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/font_manager.py in get_fontconfig_fonts(fontext)
    272         pipe = subprocess.Popen(['fc-list', '--format=%{file}\\n'],
    273                                 stdout=subprocess.PIPE,
--> 274                                 stderr=subprocess.PIPE)
    275         output = pipe.communicate()[0]
    276     except (OSError, IOError):

/Users/ifmichael/anaconda/lib/python2.7/subprocess.pyc in __init__(self, args, bufsize, executable, stdin, stdout, stderr, preexec_fn, close_fds, shell, cwd, env, universal_newlines, startupinfo, creationflags)
    708                                 p2cread, p2cwrite,
    709                                 c2pread, c2pwrite,
--> 710                                 errread, errwrite)
    711         except Exception:
    712             # Preserve original exception in case os.close raises.

/Users/ifmichael/anaconda/lib/python2.7/subprocess.pyc in _execute_child(self, args, executable, preexec_fn, close_fds, cwd, env, universal_newlines, startupinfo, creationflags, shell, to_close, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite)
   1325                         raise
   1326                 child_exception = pickle.loads(data)
-> 1327                 raise child_exception
   1328
   1329

UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 0: ordinal not in range(128)

Right now I downgraded to 1.3.1, and everything got back to normal.

@tacaswell tacaswell changed the title UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 0: ordinal not in range(128) Issue with non-ascii paths in font look up Sep 14, 2014
@tacaswell tacaswell added this to the v1.4.1 milestone Sep 15, 2014
@tacaswell
Copy link
Member

Any chance you could get us a list of what files these are?

L1038 in font_manager.py:

self.ttffiles = findSystemFonts(paths) + findSystemFonts()

For reference the character it is barfing on is 'â'

Related to #3516

@mdboom
Copy link
Member

mdboom commented Sep 18, 2014

I've never been able to figure out what encoding fc-list is supposed to put out. Filesystem encoding, I would guess, but it's only a guess. We could try decoding the output using getfilesystemencoding()...

@tacaswell
Copy link
Member

These are the last three time this got touched, I am stumped....

0b604b3

8e52475

8c200da

@mdboom
Copy link
Member

mdboom commented Sep 18, 2014

Ah -- we're already using getfilesystemencoding. I guess that's not right. Not sure what is, though.

@ifmihai
Copy link
Author

ifmihai commented Sep 19, 2014

@tacaswell
Were you referring to me when asking for the list of fonts?
I don't know what am I supposed to do.

@tacaswell
Copy link
Member

@wernerfb can you take a look at this one too?

@tacaswell
Copy link
Member

@ifmihai Run the command fc-list --format=%{file}\\n from the command line.

cc @mdehoon

@tacaswell
Copy link
Member

@wernerfb Sorry, I was confused I thought these were both windows issues (some how I missed the bright red OSX label....)

@ifmihai
Copy link
Author

ifmihai commented Sep 30, 2014

Ok

@tacaswell
I run your command

here is the (looong) result:

/opt/X11/share/fonts/100dpi/luIS14.pcf.gz
/opt/X11/share/fonts/100dpi/luBS12.pcf.gz
/Library/Fonts/Microsoft/Book Antiqua
/System/Library/Fonts/Keyboard.ttf
/opt/X11/share/fonts/100dpi/luRS19.pcf.gz
/Library/Fonts/Telugu Sangam MN.ttc
/Library/Fonts/Courier New Italic.ttf
/Library/Fonts/Microsoft/Bookman Old Style
/Library/Fonts/Zapfino.ttf
/opt/X11/share/fonts/75dpi/courR14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/luIS10.pcf.gz
/System/Library/Fonts/Avenir Next Condensed.ttc
/opt/X11/share/fonts/75dpi/lubB08.pcf.gz
/opt/X11/share/fonts/100dpi/ncenR12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/TTF/GohaTibebZemen.ttf
/Library/Fonts/Courier New Bold Italic.ttf
/opt/X11/share/fonts/75dpi/luBIS10-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Calisto MT
/Library/Fonts/Microsoft/Calisto MT
/Library/Fonts/Microsoft/Lucida Sans
/Library/Fonts/Microsoft/Engravers MT
/opt/X11/share/fonts/100dpi/lubR24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/charB14.pcf.gz
/opt/X11/share/fonts/100dpi/lutBS14-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Gloucester MT Extra Condensed
/Library/Fonts/Savoye LET.ttc
/Library/Fonts/Microsoft/Stencil
/System/Library/Fonts/HelveticaNeue.dfont
/Library/Fonts/Futura.ttc
/Library/Fonts/Andale Mono.ttf
/opt/X11/share/fonts/75dpi/courR10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lutBS10.pcf.gz
/Library/Fonts/Arial.ttf
/opt/X11/share/fonts/75dpi/UTB___12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/Type1/l047013t.pfa
/Library/Fonts/Times New Roman Bold.ttf
/opt/X11/share/fonts/75dpi/luBIS19.pcf.gz
/Library/Fonts/STIXSizFourSymBol.otf
/Library/Fonts/Microsoft/Cambria Math.ttf
/opt/X11/share/fonts/75dpi/luIS10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/luBIS18.pcf.gz
/Library/Fonts/Microsoft/Lucida Bright
/Library/Fonts/SuperClarendon.ttc
/opt/X11/share/fonts/100dpi/lubB24.pcf.gz
/Library/Fonts/Songti.ttc
/opt/X11/share/fonts/75dpi/helvBO24.pcf.gz
/opt/X11/share/fonts/75dpi/timB24.pcf.gz
/opt/X11/share/fonts/Type1/UTI_____.pfa
/Library/Fonts/Myanmar MN.ttc
/opt/X11/share/fonts/75dpi/helvO18.pcf.gz
/Library/Fonts/Trebuchet MS Bold Italic.ttf
/opt/X11/share/fonts/75dpi/helvB12.pcf.gz
/Library/Fonts/NanumMyeongjo.ttc
/opt/X11/share/fonts/75dpi/ncenB14.pcf.gz
/opt/X11/share/fonts/75dpi/lutRS24.pcf.gz
/opt/X11/share/fonts/100dpi/UTBI__10-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Lucida Sans Typewriter
/opt/X11/share/fonts/100dpi/UTRG__12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/courR12.pcf.gz
/Library/Fonts/Skia.ttf
/opt/X11/share/fonts/75dpi/helvBO12.pcf.gz
/Library/Fonts/STIXIntDBol.otf
/Library/Fonts/Microsoft/Bell MT
/Library/Fonts/Microsoft/Corbel.ttf
/Library/Fonts/Microsoft/Matura Script Capitals
/opt/X11/share/fonts/Type1/c0582bt_.pfb
/Library/Fonts/Microsoft/Trebuchet MS
/opt/X11/share/fonts/75dpi/charI14.pcf.gz
/Library/Fonts/华文细黑.ttf
/Library/Fonts/Gungseouche.ttf
/opt/X11/share/fonts/100dpi/UTB___24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubR24.pcf.gz
/opt/X11/share/fonts/100dpi/ncenB10-ISO8859-1.pcf.gz
/Library/Fonts/SuperClarendon.ttc
/Library/Fonts/Microsoft/Lucida Sans
/Library/Fonts/Lao MN.ttc
/opt/X11/share/fonts/TTF/luxirbi.ttf
/Library/Fonts/Times New Roman Italic.ttf
/opt/X11/share/fonts/75dpi/ncenR18.pcf.gz
/opt/X11/share/fonts/100dpi/luIS08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/timBI24-ISO8859-1.pcf.gz
/Library/Fonts/Trebuchet MS Bold.ttf
/System/Library/Fonts/Menlo.ttc
/opt/X11/share/fonts/100dpi/timR18-ISO8859-1.pcf.gz
/Library/Fonts/Baghdad.ttf
/opt/X11/share/fonts/100dpi/ncenI14.pcf.gz
/opt/X11/share/fonts/75dpi/helvB12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/7x13B-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/timBI14.pcf.gz
/Library/Fonts/Microsoft/TaiLeb.ttf
/Library/Fonts/Microsoft/Lucida Sans Typewriter
/opt/X11/share/fonts/100dpi/lubB08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/timI18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/charR10.pcf.gz
/opt/X11/share/fonts/100dpi/lubI18.pcf.gz
/opt/X11/share/fonts/100dpi/ncenI24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/courBO10-ISO8859-1.pcf.gz
/Library/Fonts/Apple LiGothic Medium.ttf
/opt/X11/share/fonts/75dpi/helvR12.pcf.gz
/Library/Fonts/HelveticaCY.dfont
/Library/Fonts/Raanana.ttc
/opt/X11/share/fonts/misc/9x18B-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/5x8.pcf.gz
/Library/Fonts/Microsoft/Arial Italic.ttf
/opt/X11/share/fonts/100dpi/courO24-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Georgia
/opt/X11/share/fonts/100dpi/luIS18.pcf.gz
/System/Library/Fonts/Times.dfont
/opt/X11/share/fonts/100dpi/helvBO08-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Arial Narrow
/Library/Fonts/Microsoft/Braggadocio
/Library/Fonts/EuphemiaCAS.ttc
/Library/Fonts/Malayalam Sangam MN.ttc
/System/Library/Fonts/HelveticaNeue.dfont
/opt/X11/share/fonts/100dpi/charI18.pcf.gz
/Library/Fonts/Microsoft/Arial Narrow
/Library/Fonts/PTSans.ttc
/opt/X11/share/fonts/100dpi/luBIS18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lutRS08.pcf.gz
/opt/X11/share/fonts/misc/8x13B-ISO8859-1.pcf.gz
/Library/Fonts/WawaSC-Regular.otf
/opt/X11/share/fonts/100dpi/UTB___10-ISO8859-1.pcf.gz
/Library/Fonts/STIXSizTwoSymReg.otf
/Library/Fonts/Iowan Old Style.ttc
/opt/X11/share/fonts/75dpi/timR12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/ncenBI18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/charB24.pcf.gz
/Library/Fonts/Microsoft/Perpetua Italic.ttf
/opt/X11/share/fonts/100dpi/helvB24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/helvR24-ISO8859-1.pcf.gz
/Library/Fonts/PTSerifCaption.ttc
/opt/X11/share/fonts/75dpi/UTI___18.pcf.gz
/opt/X11/share/fonts/75dpi/lubB18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/7x14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/OTF/SyrCOMJerusalemOutline.otf
/Library/Fonts/Microsoft/Lucida Console.ttf
/System/Library/Fonts/LucidaGrande.ttc
/System/Library/Fonts/Avenir Next.ttc
/opt/X11/share/fonts/100dpi/timR12.pcf.gz
/Library/Fonts/Microsoft/SimSun.ttf
/opt/X11/share/fonts/100dpi/helvO10.pcf.gz
/System/Library/Fonts/Avenir Next Condensed.ttc
/Library/Fonts/Kokonor.ttf
/opt/X11/share/fonts/100dpi/lubBI19.pcf.gz
/Library/Fonts/Seravek.ttc
/opt/X11/share/fonts/75dpi/courO08.pcf.gz
/opt/X11/share/fonts/100dpi/luBIS10.pcf.gz
/opt/X11/share/fonts/75dpi/ncenBI10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/TTF/luximr.ttf
/opt/X11/share/fonts/100dpi/luBS24-ISO8859-1.pcf.gz
/Library/Fonts/Hanzipen.ttc
/opt/X11/share/fonts/100dpi/charBI12.pcf.gz
/Library/Fonts/Tahoma Bold.ttf
/opt/X11/share/fonts/100dpi/courB10-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/MS Reference Sans Serif.ttf
/opt/X11/share/fonts/75dpi/helvO24.pcf.gz
/System/Library/Fonts/Avenir.ttc
/Library/Fonts/Xingkai.ttc
/opt/X11/share/fonts/100dpi/luBS24.pcf.gz
/opt/X11/share/fonts/100dpi/helvBO12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/helvO12-ISO8859-1.pcf.gz
/Library/Fonts/SnellRoundhand.ttc
/opt/X11/share/fonts/100dpi/courB14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/courO24-ISO8859-1.pcf.gz
/Library/Fonts/Sinhala Sangam MN.ttc
/opt/X11/share/fonts/100dpi/charB18.pcf.gz
/Users/ifmichael/Library/Fonts/DejaVuSans-Oblique.ttf
/opt/X11/share/fonts/100dpi/charI08.pcf.gz
/opt/X11/share/fonts/100dpi/courR18-ISO8859-1.pcf.gz
/Library/Fonts/DevanagariMTBold.ttf
/Library/Fonts/Microsoft/Cooper Black
/opt/X11/share/fonts/100dpi/lubBI10.pcf.gz
/opt/X11/share/fonts/misc/6x10.pcf.gz
/opt/X11/share/fonts/75dpi/helvBO10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/ncenI24.pcf.gz
/opt/X11/share/fonts/100dpi/lubBI08.pcf.gz
/opt/X11/share/fonts/100dpi/ncenR08.pcf.gz
/System/Library/Fonts/HelveticaNeueDeskUI.ttc
/opt/X11/share/fonts/75dpi/timB10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/UTRG__18-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/SimHei.ttf
/opt/X11/share/fonts/misc/clR6x12.pcf.gz
/Library/Fonts/Hei.ttf
/Library/Fonts/Microsoft/Consolas.ttf
/Library/Fonts/Seravek.ttc
/opt/X11/share/fonts/75dpi/courBO18-ISO8859-1.pcf.gz
/Library/Fonts/Telugu Sangam MN.ttc
/opt/X11/share/fonts/Type1/l047033t.pfa
/opt/X11/share/fonts/75dpi/UTBI__10.pcf.gz
/Library/Fonts/Kannada Sangam MN.ttc
/opt/X11/share/fonts/75dpi/lubI18.pcf.gz
/System/Library/Fonts/Apple Braille Outline 8 Dot.ttf
/Library/Fonts/Microsoft/Curlz MT
/opt/X11/share/fonts/100dpi/courBO14.pcf.gz
/Library/Fonts/Microsoft/Lucida Fax
/Library/Fonts/Microsoft/Bookman Old Style
/opt/X11/share/fonts/100dpi/lubR10.pcf.gz
/opt/X11/share/fonts/100dpi/luIS19-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/luBS19.pcf.gz
/opt/X11/share/fonts/100dpi/luIS10-ISO8859-1.pcf.gz
/Library/Fonts/DevanagariMT.ttf
/opt/X11/share/fonts/100dpi/helvBO14-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Arial Bold.ttf
/opt/X11/share/fonts/100dpi/ncenR18.pcf.gz
/System/Library/Fonts/Helvetica.dfont
/opt/X11/share/fonts/100dpi/luBIS18.pcf.gz
/Library/Fonts/Hoefler Text.ttc
/opt/X11/share/fonts/75dpi/luRS24.pcf.gz
/opt/X11/share/fonts/75dpi/luRS18.pcf.gz
/opt/X11/share/fonts/misc/7x13O.pcf.gz
/opt/X11/share/fonts/75dpi/courBO24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/Type1/l048036t.pfa
/opt/X11/share/fonts/100dpi/courR08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/8x13O-ISO8859-1.pcf.gz
/Library/Fonts/Arial Narrow Italic.ttf
/Library/Fonts/Microsoft/Lucida Sans
/opt/X11/share/fonts/100dpi/lutBS19-ISO8859-1.pcf.gz
/opt/X11/share/fonts/OTF/SyrCOMNisibinOutline.otf
/Library/Fonts/Microsoft/Trebuchet MS
/opt/X11/share/fonts/100dpi/courB12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/ncenBI10.pcf.gz
/opt/X11/share/fonts/misc/8x13-ISO8859-1.pcf.gz
/Library/Fonts/EuphemiaCAS.ttc
/opt/X11/share/fonts/TTF/luxisri.ttf
/opt/X11/share/fonts/75dpi/ncenB18.pcf.gz
/System/Library/Fonts/Apple Braille Outline 6 Dot.ttf
/opt/X11/share/fonts/75dpi/lubR12.pcf.gz
/Library/Fonts/Microsoft/Gill Sans MT Italic.ttf
/opt/X11/share/fonts/75dpi/timI14.pcf.gz
/opt/X11/share/fonts/100dpi/ncenBI18.pcf.gz
/Library/Fonts/Georgia Italic.ttf
/opt/X11/share/fonts/75dpi/UTI___12.pcf.gz
/opt/X11/share/fonts/100dpi/courO14-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Times New Roman Italic.ttf
/Library/Fonts/PTMono.ttc
/opt/X11/share/fonts/75dpi/charI18.pcf.gz
/Library/Fonts/Microsoft/Consolas Bold.ttf
/Library/Fonts/Microsoft/Arial.ttf
/Library/Fonts/Microsoft/Garamond
/opt/X11/share/fonts/TTF/VeraMono.ttf
/Library/Fonts/Gurmukhi Sangam MN.ttc
/opt/X11/share/fonts/misc/5x7-ISO8859-1.pcf.gz
/Library/Fonts/SuperClarendon.ttc
/opt/X11/share/fonts/100dpi/lutBS19.pcf.gz
/opt/X11/share/fonts/TTF/VeraMoBd.ttf
/Library/Fonts/Yuanti.ttc
/opt/X11/share/fonts/75dpi/helvR10.pcf.gz
/opt/X11/share/fonts/100dpi/helvB12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/luBIS19.pcf.gz
/opt/X11/share/fonts/100dpi/lutBS08-ISO8859-1.pcf.gz
/System/Library/Fonts/ヒラギノ角ゴ ProN W6.otf
/Library/Fonts/ヒラギノ角ゴ Pro W6.otf
/opt/X11/share/fonts/misc/6x13B.pcf.gz
/Library/Fonts/NanumGothic.ttc
/opt/X11/share/fonts/75dpi/UTRG__14-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Goudy Old Style
/opt/X11/share/fonts/100dpi/UTI___12.pcf.gz
/opt/X11/share/fonts/100dpi/timI14.pcf.gz
/opt/X11/share/fonts/100dpi/term14.pcf.gz
/Library/Fonts/STIXSizOneSymBol.otf
/Library/Fonts/Kaiti.ttc
/opt/X11/share/fonts/100dpi/ncenBI24.pcf.gz
/opt/X11/share/fonts/100dpi/UTBI__18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/UTB___24.pcf.gz
/Library/Fonts/Microsoft/Perpetua Bold.ttf
/Library/Fonts/Gujarati Sangam MN.ttc
/Library/Fonts/Microsoft/Bookshelf Symbol 7.ttf
/Library/Fonts/Brush Script.ttf
/Library/Fonts/Beirut.ttc
/opt/X11/share/fonts/75dpi/UTB___14.pcf.gz
/opt/X11/share/fonts/100dpi/lubI24.pcf.gz
/Library/Fonts/Microsoft/Lucida Bright
/Library/Fonts/Microsoft/Monotype Sorts
/opt/X11/share/fonts/75dpi/ncenBI10.pcf.gz
/opt/X11/share/fonts/75dpi/timB12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/courO14.pcf.gz
/opt/X11/share/fonts/75dpi/courO08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/luBIS24.pcf.gz
/opt/X11/share/fonts/100dpi/courBO12.pcf.gz
/opt/X11/share/fonts/100dpi/ncenR24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/luRS08.pcf.gz
/Library/Fonts/Microsoft/Perpetua Bold Italic.ttf
/Library/Fonts/Microsoft/Times New Roman Bold Italic.ttf
/opt/X11/share/fonts/75dpi/lubB08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubBI12.pcf.gz
/Library/Fonts/Courier New Bold.ttf
/Library/Fonts/HelveticaCY.dfont
/System/Library/Fonts/ヒラギノ明朝 ProN W6.otf
/opt/X11/share/fonts/Type1/UTBI____.pfa
/Library/Fonts/NanumMyeongjo.ttc
/opt/X11/share/fonts/75dpi/ncenI08.pcf.gz
/opt/X11/share/fonts/misc/8x13.pcf.gz
/opt/X11/share/fonts/100dpi/timI10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/UTBI__24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubR14-ISO8859-1.pcf.gz
/Library/Fonts/AppleGothic.ttf
/opt/X11/share/fonts/Type1/l047016t.pfa
/opt/X11/share/fonts/100dpi/helvBO10.pcf.gz
/opt/X11/share/fonts/75dpi/UTB___24.pcf.gz
/Library/Fonts/PTSans.ttc
/Library/Fonts/Tamil Sangam MN.ttc
/opt/X11/share/fonts/misc/18x18ja.pcf.gz
/opt/X11/share/fonts/75dpi/helvO12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/courBO08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/courO10-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Copperplate Gothic Bold
/opt/X11/share/fonts/75dpi/helvR18.pcf.gz
/opt/X11/share/fonts/75dpi/luRS12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/UTBI__12.pcf.gz
/Users/ifmichael/Library/Fonts/AstroGadget.ttf
/Library/Fonts/华文仿宋.ttf
/opt/X11/share/fonts/75dpi/ncenB10-ISO8859-1.pcf.gz
/Library/Fonts/Baskerville.ttc
/Library/Fonts/Iowan Old Style.ttc
/Library/Fonts/Charter.ttc
/Library/Fonts/Verdana Bold.ttf
/opt/X11/share/fonts/75dpi/lubI19.pcf.gz
/opt/X11/share/fonts/75dpi/courB10.pcf.gz
/opt/X11/share/fonts/100dpi/ncenR08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/courR14.pcf.gz
/opt/X11/share/fonts/75dpi/charBI18.pcf.gz
/opt/X11/share/fonts/75dpi/lubI19-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/helvO12.pcf.gz
/opt/X11/share/fonts/100dpi/timR18.pcf.gz
/Library/Fonts/Yu Gothic Medium.otf
/opt/X11/share/fonts/100dpi/charBI24.pcf.gz
/Library/Fonts/Yu Mincho Medium.otf
/opt/X11/share/fonts/100dpi/luRS12.pcf.gz
/opt/X11/share/fonts/100dpi/ncenR18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/timR14.pcf.gz
/Library/Fonts/华文黑体.ttf
/Library/Fonts/Yuanti.ttc
/opt/X11/share/fonts/75dpi/luIS08-ISO8859-1.pcf.gz
/Library/Fonts/ChalkboardSE.ttc
/Users/ifmichael/Library/Fonts/DejaVuSansCondensed.ttf
/opt/X11/share/fonts/Type1/courbi.pfa
/Library/Fonts/ArialHB.ttc
/opt/X11/share/fonts/100dpi/helvB08.pcf.gz
/Library/Fonts/Hiragino Sans GB W6.otf
/opt/X11/share/fonts/100dpi/luBIS14.pcf.gz
/Library/Fonts/Lantinghei.ttc
/opt/X11/share/fonts/75dpi/lubI14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lutBS24.pcf.gz
/opt/X11/share/fonts/100dpi/luBS08.pcf.gz
/opt/X11/share/fonts/100dpi/helvBO24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/luIS19.pcf.gz
/opt/X11/share/fonts/TTF/luxisr.ttf
/System/Library/Fonts/Avenir.ttc
/opt/X11/share/fonts/75dpi/helvO10.pcf.gz
/opt/X11/share/fonts/100dpi/luIS24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lutRS14.pcf.gz
/opt/X11/share/fonts/100dpi/timR12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/luIS18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/timR18-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/monbaiti.ttf
/Library/Fonts/Seravek.ttc
/Library/Fonts/STIXSizThreeSymBol.otf
/Library/Fonts/Microsoft/Footlight Light
/Library/Fonts/儷黑 Pro.ttf
/opt/X11/share/fonts/100dpi/lubB24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/helvBO24-ISO8859-1.pcf.gz
/System/Library/Fonts/Avenir.ttc
/System/Library/Fonts/Thonburi.ttc
/opt/X11/share/fonts/75dpi/UTB___18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/luIS24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/ncenR24.pcf.gz
/opt/X11/share/fonts/misc/7x13B.pcf.gz
/Library/Fonts/NanumGothic.ttc
/Library/Fonts/Microsoft/News Gothic MT
/opt/X11/share/fonts/100dpi/charI10.pcf.gz
/opt/X11/share/fonts/75dpi/timI08.pcf.gz
/opt/X11/share/fonts/100dpi/ncenBI10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/TTF/luxisb.ttf
/System/Library/Fonts/Palatino.ttc
/Library/Fonts/MshtakanBold.ttf
/Users/ifmichael/Library/Fonts/DejaVuSans.ttf
/opt/X11/share/fonts/100dpi/helvR14.pcf.gz
/opt/X11/share/fonts/100dpi/UTI___10.pcf.gz
/opt/X11/share/fonts/100dpi/UTRG__24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/TTF/luxirri.ttf
/opt/X11/share/fonts/100dpi/ncenBI12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/helvB08.pcf.gz
/opt/X11/share/fonts/75dpi/luIS08.pcf.gz
/opt/X11/share/fonts/100dpi/lutBS08.pcf.gz
/Library/Fonts/Microsoft/Constantia Bold.ttf
/System/Library/Fonts/Palatino.ttc
/System/Library/Fonts/HelveticaNeue.dfont
/Library/Fonts/Muna.ttc
/opt/X11/share/fonts/100dpi/helvO18-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Corbel Bold.ttf
/Users/ifmichael/Library/Fonts/JanusAasp.ttf
/opt/X11/share/fonts/75dpi/UTI___14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/luBIS12.pcf.gz
/opt/X11/share/fonts/100dpi/lubB19-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/luRS24.pcf.gz
/opt/X11/share/fonts/100dpi/luRS14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/courB24.pcf.gz
/System/Library/Fonts/Symbol.ttf
/opt/X11/share/fonts/75dpi/luBS18-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Century Gothic
/opt/X11/share/fonts/75dpi/lubBI08.pcf.gz
/opt/X11/share/fonts/100dpi/luBS18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubBI19.pcf.gz
/Library/Fonts/Arial Unicode.ttf
/Library/Fonts/DIN Condensed Bold.ttf
/opt/X11/share/fonts/100dpi/ncenB24.pcf.gz
/Library/Fonts/Microsoft/SimSun-ExtB.ttf
/opt/X11/share/fonts/75dpi/lubR08-ISO8859-1.pcf.gz
/Library/Fonts/Seravek.ttc
/opt/X11/share/fonts/100dpi/timI24.pcf.gz
/Library/Fonts/Athelas.ttc
/Library/Fonts/Iowan Old Style.ttc
/Library/Fonts/Microsoft/Consolas Italic.ttf
/Users/ifmichael/Library/Fonts/DejaVuSansMono-Oblique.ttf
/opt/X11/share/fonts/misc/6x9-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/mingliu_hkscs.ttf
/Library/Fonts/Malayalam MN.ttc
/Library/Fonts/Lantinghei.ttc
/opt/X11/share/fonts/100dpi/lutRS24.pcf.gz
/opt/X11/share/fonts/75dpi/helvBO14.pcf.gz
/opt/X11/share/fonts/75dpi/ncenR24-ISO8859-1.pcf.gz
/System/Library/Fonts/Avenir Next.ttc
/Library/Fonts/AppleSDGothicNeo-Light.otf
/opt/X11/share/fonts/100dpi/ncenBI08.pcf.gz
/opt/X11/share/fonts/OTF/SyrCOMJerusalemItalic.otf
/Library/Fonts/Microsoft/Century
/opt/X11/share/fonts/100dpi/courB08.pcf.gz
/Library/Fonts/Lao Sangam MN.ttf
/Library/Fonts/EuphemiaCAS.ttc
/opt/X11/share/fonts/100dpi/courB12.pcf.gz
/opt/X11/share/fonts/100dpi/helvR08.pcf.gz
/opt/X11/share/fonts/100dpi/timB24.pcf.gz
/opt/X11/share/fonts/75dpi/UTRG__10.pcf.gz
/opt/X11/share/fonts/75dpi/lutBS18.pcf.gz
/opt/X11/share/fonts/75dpi/lubI10-ISO8859-1.pcf.gz
/System/Library/Fonts/Avenir Next.ttc
/opt/X11/share/fonts/misc/6x12.pcf.gz
/opt/X11/share/fonts/75dpi/timI24.pcf.gz
/opt/X11/share/fonts/75dpi/ncenBI12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/timR08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/courB18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/UTI___24-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Lucida Handwriting
/Library/Fonts/Microsoft/MingLiU-ExtB.ttf
/opt/X11/share/fonts/75dpi/luIS19-ISO8859-1.pcf.gz
/opt/X11/share/fonts/Type1/courb.pfa
/Library/Fonts/AmericanTypewriter.ttc
/opt/X11/share/fonts/OTF/SyrCOMEdessa.otf
/opt/X11/share/fonts/100dpi/courBO18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/timI12-ISO8859-1.pcf.gz
/Library/Fonts/Charter.ttc
/opt/X11/share/fonts/100dpi/luRS18.pcf.gz
/opt/X11/share/fonts/75dpi/luIS14.pcf.gz
/opt/X11/share/fonts/75dpi/helvR24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/termB14.pcf.gz
/Library/Fonts/Microsoft/Lucida Sans Typewriter
/System/Library/Fonts/Avenir Next.ttc
/opt/X11/share/fonts/75dpi/luBIS14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/ncenR08-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Desdemona
/Library/Fonts/STIXGeneralBolIta.otf
/Library/Fonts/Courier New.ttf
/opt/X11/share/fonts/100dpi/lubB08.pcf.gz
/opt/X11/share/fonts/75dpi/lutBS24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/ncenB12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/timR18.pcf.gz
/opt/X11/share/fonts/100dpi/timB14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubBI18-ISO8859-1.pcf.gz
/System/Library/Fonts/Geeza Pro.ttf
/Library/Fonts/Times New Roman Bold Italic.ttf
/Library/Fonts/Sinhala MN.ttc
/opt/X11/share/fonts/TTF/luximri.ttf
/Library/Fonts/GenevaCY.dfont
/opt/X11/share/fonts/75dpi/courO14-ISO8859-1.pcf.gz
/System/Library/Fonts/Avenir Next Condensed.ttc
/Library/Fonts/Seravek.ttc
/opt/X11/share/fonts/75dpi/courR10.pcf.gz
/Library/Fonts/Songti.ttc
/opt/X11/share/fonts/100dpi/ncenB24-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Cambria Bold Italic.ttf
/Library/Fonts/Microsoft/Playbill
/opt/X11/share/fonts/75dpi/charBI24.pcf.gz
/opt/X11/share/fonts/75dpi/UTRG__24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/ncenBI24-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/MS Reference Specialty.ttf
/Library/Fonts/Didot.ttc
/opt/X11/share/fonts/100dpi/ncenR10-ISO8859-1.pcf.gz
/Users/ifmichael/Library/Fonts/DejaVuSerif-BoldItalic.ttf
/opt/X11/share/fonts/100dpi/timI14-ISO8859-1.pcf.gz
/System/Library/Fonts/LucidaGrande.ttc
/Library/Fonts/Microsoft/Kino
/Library/Fonts/Waseem.ttc
/opt/X11/share/fonts/75dpi/lubBI14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/UTI___14.pcf.gz
/opt/X11/share/fonts/75dpi/UTBI__24.pcf.gz
/Library/Fonts/Microsoft/Perpetua Titling MT
/Library/Fonts/Kaiti.ttc
/opt/X11/share/fonts/100dpi/timBI12.pcf.gz
/Library/Fonts/Copperplate.ttc
/Library/Fonts/ヒラギノ明朝 Pro W3.otf
/opt/X11/share/fonts/75dpi/UTB___18.pcf.gz
/opt/X11/share/fonts/75dpi/helvO24-ISO8859-1.pcf.gz
/System/Library/Fonts/HelveticaNeue.dfont
/opt/X11/share/fonts/misc/4x6.pcf.gz
/opt/X11/share/fonts/100dpi/courO18.pcf.gz
/opt/X11/share/fonts/75dpi/lubBI24.pcf.gz
/Library/Fonts/Lao MN.ttc
/opt/X11/share/fonts/100dpi/lubI19.pcf.gz
/Library/Fonts/Microsoft/Garamond
/opt/X11/share/fonts/75dpi/lutRS19-ISO8859-1.pcf.gz
/System/Library/Fonts/HelveticaNeue.dfont
/opt/X11/share/fonts/Type1/UTRG____.pfa
/Library/Fonts/Songti.ttc
/Library/Fonts/NanumScript.ttc
/opt/X11/share/fonts/75dpi/luRS19-ISO8859-1.pcf.gz
/opt/X11/share/fonts/OTF/SyrCOMJerusalem.otf
/opt/X11/share/fonts/75dpi/luRS19.pcf.gz
/System/Library/Fonts/Optima.ttc
/opt/X11/share/fonts/75dpi/UTBI__10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/9x18.pcf.gz
/opt/X11/share/fonts/100dpi/lutRS08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/10x20.pcf.gz
/opt/X11/share/fonts/100dpi/helvR18.pcf.gz
/opt/X11/share/fonts/75dpi/courBO14.pcf.gz
/opt/X11/share/fonts/100dpi/timR10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lutRS19-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/helvBO08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lutBS24.pcf.gz
/System/Library/Fonts/AquaKana.ttc
/opt/X11/share/fonts/100dpi/UTRG__12.pcf.gz
/opt/X11/share/fonts/100dpi/lubBI18.pcf.gz
/Library/Fonts/Microsoft/Brush Script.ttf
/opt/X11/share/fonts/100dpi/lubI10.pcf.gz
/Library/Fonts/Gurmukhi.ttf
/Library/Fonts/Cochin.ttc
/opt/X11/share/fonts/100dpi/ncenI12.pcf.gz
/opt/X11/share/fonts/75dpi/UTB___12.pcf.gz
/opt/X11/share/fonts/100dpi/helvO08.pcf.gz
/opt/X11/share/fonts/75dpi/charR08.pcf.gz
/Library/Fonts/PTSerif.ttc
/Library/Fonts/Microsoft/Impact
/Library/Fonts/Microsoft/Constantia Italic.ttf
/opt/X11/share/fonts/100dpi/lutRS18.pcf.gz
/opt/X11/share/fonts/100dpi/ncenB08-ISO8859-1.pcf.gz
/Library/Fonts/Hoefler Text Ornaments.ttf
/Library/Fonts/STIXNonUniIta.otf
/Library/Fonts/Hiragino Sans GB W3.otf
/opt/X11/share/fonts/100dpi/luRS10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/ncenI08.pcf.gz
/opt/X11/share/fonts/75dpi/ncenB18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/ncenI14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/9x15-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Bauhaus 93
/opt/X11/share/fonts/OTF/SyrCOMBatnan.otf
/opt/X11/share/fonts/75dpi/lubR14.pcf.gz
/opt/X11/share/fonts/misc/6x13.pcf.gz
/System/Library/Fonts/Avenir.ttc
/opt/X11/share/fonts/100dpi/courO24.pcf.gz
/opt/X11/share/fonts/75dpi/UTBI__18.pcf.gz
/Library/Fonts/STIXSizFiveSymReg.otf
/Library/Fonts/Microsoft/Engravers MT
/Library/Fonts/NewPeninimMT.ttc
/Library/Fonts/SuperClarendon.ttc
/opt/X11/share/fonts/100dpi/timBI10-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Lucida Calligraphy
/opt/X11/share/fonts/75dpi/courR12.pcf.gz
/Library/Fonts/YuppySC-Regular.otf
/Library/Fonts/Microsoft/Bell MT
/opt/X11/share/fonts/100dpi/courO14.pcf.gz
/Library/Fonts/STIXIntUpReg.otf
/opt/X11/share/fonts/100dpi/timBI12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/helvR24.pcf.gz
/opt/X11/share/fonts/100dpi/ncenB18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/timBI12.pcf.gz
/opt/X11/share/fonts/100dpi/helvB18.pcf.gz
/opt/X11/share/fonts/75dpi/ncenR08.pcf.gz
/opt/X11/share/fonts/Type1/c0649bt_.pfb
/Library/Fonts/Hannotate.ttc
/Library/Fonts/Microsoft/Verdana Bold Italic.ttf
/opt/X11/share/fonts/100dpi/luRS10.pcf.gz
/System/Library/Fonts/Geeza Pro Bold.ttf
/Library/Fonts/STIXIntUpSmBol.otf
/opt/X11/share/fonts/TTF/VeraSeBd.ttf
/opt/X11/share/fonts/100dpi/courBO14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/courR10.pcf.gz
/Library/Fonts/Sathu.ttf
/opt/X11/share/fonts/75dpi/timR14-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Goudy Old Style
/opt/X11/share/fonts/100dpi/luIS18-ISO8859-1.pcf.gz
/Library/Fonts/Damascus.ttc
/Library/Fonts/Microsoft/Gabriola.ttf
/System/Library/Fonts/Courier.dfont
/opt/X11/share/fonts/75dpi/luBIS24.pcf.gz
/Library/Fonts/Hannotate.ttc
/Library/Fonts/Silom.ttf
/opt/X11/share/fonts/100dpi/lutRS12-ISO8859-1.pcf.gz
/Library/Fonts/SnellRoundhand.ttc
/opt/X11/share/fonts/75dpi/UTBI__12-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Bernard MT Condensed
/opt/X11/share/fonts/75dpi/lubB24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/timI18.pcf.gz
/opt/X11/share/fonts/100dpi/helvB10.pcf.gz
/opt/X11/share/fonts/75dpi/luIS18.pcf.gz
/opt/X11/share/fonts/75dpi/ncenI12-ISO8859-1.pcf.gz
/Library/Fonts/Futura.ttc
/Library/Fonts/STIXGeneralBol.otf
/opt/X11/share/fonts/misc/6x10-ISO8859-1.pcf.gz
/System/Library/Fonts/Optima.ttc
/opt/X11/share/fonts/75dpi/UTRG__14.pcf.gz
/Library/Fonts/Diwan Kufi.ttc
/opt/X11/share/fonts/100dpi/UTBI__24.pcf.gz
/Library/Fonts/Futura.ttc
/opt/X11/share/fonts/75dpi/courR18.pcf.gz
/Library/Fonts/AmericanTypewriter.ttc
/opt/X11/share/fonts/100dpi/UTB___14.pcf.gz
/System/Library/Fonts/Helvetica.dfont
/System/Library/Fonts/LastResort.ttf
/opt/X11/share/fonts/100dpi/UTI___14.pcf.gz
/opt/X11/share/fonts/75dpi/courR24.pcf.gz
/opt/X11/share/fonts/75dpi/luBS14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/arabic24.pcf.gz
/Library/Fonts/STIXNonUniBol.otf
/Library/Fonts/Seravek.ttc
/System/Library/Fonts/AppleSDGothicNeo-Bold.otf
/Library/Fonts/Arial Rounded Bold.ttf
/opt/X11/share/fonts/100dpi/charR14.pcf.gz
/opt/X11/share/fonts/100dpi/luBIS10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/courBO10-ISO8859-1.pcf.gz
/Library/Fonts/Bangla MN.ttc
/opt/X11/share/fonts/100dpi/lubB14.pcf.gz
/opt/X11/share/fonts/100dpi/lubI24-ISO8859-1.pcf.gz
/Library/Fonts/STIXIntUpSmReg.otf
/Library/Fonts/Microsoft/Times New Roman.ttf
/opt/X11/share/fonts/100dpi/courO12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/courO18-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Tahoma
/System/Library/Fonts/Palatino.ttc
/Users/ifmichael/Library/Fonts/JanusAtxt.ttf
/opt/X11/share/fonts/75dpi/helvR14-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Wingdings 3.ttf
/System/Library/Fonts/Times.dfont
/opt/X11/share/fonts/75dpi/lubR12-ISO8859-1.pcf.gz
/System/Library/Fonts/Avenir Next Condensed.ttc
/opt/X11/share/fonts/Type1/couri.pfa
/Library/Fonts/Microsoft/Bookman Old Style
/opt/X11/share/fonts/100dpi/timB14.pcf.gz
/opt/X11/share/fonts/100dpi/lutRS19.pcf.gz
/opt/X11/share/fonts/75dpi/ncenBI18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/Type1/l049033t.pfa
/opt/X11/share/fonts/75dpi/lubBI19-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Georgia
/opt/X11/share/fonts/100dpi/courR18.pcf.gz
/opt/X11/share/fonts/100dpi/luBIS14-ISO8859-1.pcf.gz
/Users/ifmichael/Library/Fonts/DejaVuSans-Bold.ttf
/opt/X11/share/fonts/100dpi/charBI10.pcf.gz
/Library/Fonts/Microsoft/Palatino Linotype.ttf
/opt/X11/share/fonts/100dpi/lubBI18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/5x8-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/charB08.pcf.gz
/System/Library/Fonts/ZapfDingbats.ttf
/opt/X11/share/fonts/75dpi/luIS12.pcf.gz
/Users/ifmichael/Library/Fonts/DejaVuSerifCondensed.ttf
/opt/X11/share/fonts/75dpi/charBI08.pcf.gz
/opt/X11/share/fonts/75dpi/timR24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/helvB14.pcf.gz
/opt/X11/share/fonts/75dpi/lutRS08.pcf.gz
/Library/Fonts/Wingdings 3.ttf
/opt/X11/share/fonts/100dpi/luBIS24-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Tw Cen MT Italic.ttf
/opt/X11/share/fonts/OTF/SyrCOMMidyat.otf
/opt/X11/share/fonts/75dpi/courBO12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubB19.pcf.gz
/opt/X11/share/fonts/75dpi/timB12.pcf.gz
/opt/X11/share/fonts/75dpi/lubB12-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/News Gothic MT
/Library/Fonts/DIN Alternate Bold.ttf
/Library/Fonts/AmericanTypewriter.ttc
/Library/Fonts/SuperClarendon.ttc
/opt/X11/share/fonts/75dpi/timB08.pcf.gz
/opt/X11/share/fonts/75dpi/lutBS19.pcf.gz
/opt/X11/share/fonts/75dpi/ncenR14.pcf.gz
/opt/X11/share/fonts/75dpi/timI24-ISO8859-1.pcf.gz
/System/Library/Fonts/HelveticaNeue.dfont
/opt/X11/share/fonts/100dpi/UTB___12.pcf.gz
/opt/X11/share/fonts/100dpi/luRS12-ISO8859-1.pcf.gz
/System/Library/Fonts/AquaKana.ttc
/Library/Fonts/AmericanTypewriter.ttc
/opt/X11/share/fonts/100dpi/charR18.pcf.gz
/Library/Fonts/Arial Narrow.ttf
/Library/Fonts/Microsoft/Harrington
/opt/X11/share/fonts/100dpi/ncenBI12.pcf.gz
/Library/Fonts/Diwan Thuluth.ttc
/Library/Fonts/STIXNonUniBolIta.otf
/opt/X11/share/fonts/75dpi/term14.pcf.gz
/opt/X11/share/fonts/misc/cu-alt12.pcf.gz
/Users/ifmichael/Library/Fonts/DejaVuSansCondensed-BoldOblique.ttf
/opt/X11/share/fonts/100dpi/UTRG__10-ISO8859-1.pcf.gz
/Library/Fonts/CharcoalCY.dfont
/Library/Fonts/Corsiva.ttc
/Library/Fonts/Microsoft/Abadi MT Condensed Extra Bold
/Library/Fonts/Tamil MN.ttc
/opt/X11/share/fonts/100dpi/UTB___18-ISO8859-1.pcf.gz
/Library/Fonts/STIXIntSmReg.otf
/Library/Fonts/Microsoft/Palatino Linotype Bold.ttf
/Library/Fonts/Hoefler Text.ttc
/opt/X11/share/fonts/100dpi/UTI___18.pcf.gz
/opt/X11/share/fonts/100dpi/ncenB08.pcf.gz
/Library/Fonts/STIXIntSmBol.otf
/opt/X11/share/fonts/100dpi/timB12.pcf.gz
/opt/X11/share/fonts/75dpi/lubR10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/luRS14.pcf.gz
/opt/X11/share/fonts/misc/8x13B.pcf.gz
/opt/X11/share/fonts/misc/9x15B.pcf.gz
/Library/Fonts/Microsoft/Rockwell
/opt/X11/share/fonts/75dpi/UTRG__12.pcf.gz
/Library/Fonts/Charter.ttc
/Library/Fonts/Microsoft/Century Gothic
/opt/X11/share/fonts/75dpi/courBO14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/timR08.pcf.gz
/opt/X11/share/fonts/100dpi/timBI24.pcf.gz
/opt/X11/share/fonts/75dpi/lutRS19.pcf.gz
/Library/Fonts/STIXIntUpDReg.otf
/Library/Fonts/Microsoft/Gill Sans MT Bold Italic.ttf
/Library/Fonts/Microsoft/Meiryo Bold Italic.ttf
/opt/X11/share/fonts/100dpi/lubR18.pcf.gz
/opt/X11/share/fonts/75dpi/helvB10-ISO8859-1.pcf.gz
/Library/Fonts/MshtakanBoldOblique.ttf
/Library/Fonts/Myanmar MN.ttc
/Library/Fonts/Yuanti.ttc
/Library/Fonts/Georgia.ttf
/opt/X11/share/fonts/misc/18x18ko.pcf.gz
/System/Library/Fonts/Avenir Next Condensed.ttc
/opt/X11/share/fonts/100dpi/timR24.pcf.gz
/Library/Fonts/Microsoft/Georgia
/opt/X11/share/fonts/100dpi/timBI14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/charBI14.pcf.gz
/opt/X11/share/fonts/75dpi/lubBI08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/ncenI10.pcf.gz
/opt/X11/share/fonts/100dpi/lubI14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/helvB08-ISO8859-1.pcf.gz
/Library/Fonts/Trebuchet MS.ttf
/opt/X11/share/fonts/75dpi/luBIS08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/OTF/SyrCOMNisibin.otf
/Library/Fonts/PTSerif.ttc
/opt/X11/share/fonts/100dpi/charI24.pcf.gz
/System/Library/Fonts/Avenir Next.ttc
/Library/Fonts/Devanagari Sangam MN.ttc
/opt/X11/share/fonts/100dpi/helvB14-ISO8859-1.pcf.gz
/System/Library/Fonts/ヒラギノ明朝 ProN W3.otf
/Library/Fonts/GillSans.ttc
/opt/X11/share/fonts/100dpi/luIS12-ISO8859-1.pcf.gz
/Library/Fonts/KufiStandardGK.ttf
/opt/X11/share/fonts/100dpi/ncenB12.pcf.gz
/Users/ifmichael/Library/Fonts/DejaVuSansCondensed-Oblique.ttf
/opt/X11/share/fonts/75dpi/courR18-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Palatino Linotype Italic.ttf
/opt/X11/share/fonts/75dpi/UTI___10.pcf.gz
/Library/Fonts/Microsoft/Wingdings.ttf
/opt/X11/share/fonts/100dpi/timI12.pcf.gz
/Library/Fonts/GillSans.ttc
/opt/X11/share/fonts/75dpi/luRS12.pcf.gz
/Library/Fonts/Khmer MN.ttc
/Library/Fonts/PTSans.ttc
/Library/Fonts/STIXSizOneSymReg.otf
/opt/X11/share/fonts/100dpi/helvR14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/cursor.pcf.gz
/System/Library/Fonts/Optima.ttc
/opt/X11/share/fonts/100dpi/lutRS14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/Type1/l049013t.pfa
/opt/X11/share/fonts/75dpi/UTI___18-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft Sans Serif.ttf
/opt/X11/share/fonts/75dpi/courB12-ISO8859-1.pcf.gz
/Library/Fonts/Marion.ttc
/opt/X11/share/fonts/100dpi/UTB___14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/ncenBI14.pcf.gz
/opt/X11/share/fonts/75dpi/courBO08.pcf.gz
/Library/Fonts/Microsoft/Century Gothic
/Library/Fonts/Papyrus.ttc
/Users/ifmichael/Library/Fonts/ZODIAC S.TTF
/Library/Fonts/Kai.ttf
/Library/Fonts/Baskerville.ttc
/opt/X11/share/fonts/75dpi/ncenBI08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/courR14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/TTF/VeraBd.ttf
/Library/Fonts/Sana.ttc
/opt/X11/share/fonts/100dpi/lubB12.pcf.gz
/opt/X11/share/fonts/75dpi/courB24.pcf.gz
/opt/X11/share/fonts/TTF/Vera.ttf
/opt/X11/share/fonts/75dpi/timB10.pcf.gz
/Library/Fonts/Kailasa.ttf
/Library/Fonts/Webdings.ttf
/opt/X11/share/fonts/100dpi/lubBI10-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Century Schoolbook
/Library/Fonts/vhfAstro.otf
/opt/X11/share/fonts/75dpi/courO12.pcf.gz
/opt/X11/share/fonts/100dpi/courR12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/OTF/SyrCOMMardin.otf
/opt/X11/share/fonts/misc/4x6-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/luBS18.pcf.gz
/opt/X11/share/fonts/75dpi/lubI24.pcf.gz
/Library/Fonts/Microsoft/Tahoma
/Library/Fonts/Microsoft/Edwardian Script ITC
/opt/X11/share/fonts/75dpi/courO18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/7x14.pcf.gz
/opt/X11/share/fonts/75dpi/helvO14.pcf.gz
/Library/Fonts/Microsoft/Bookman Old Style
/opt/X11/share/fonts/100dpi/luIS14-ISO8859-1.pcf.gz
/Library/Fonts/WawaTC-Regular.otf
/System/Library/Fonts/Helvetica.dfont
/System/Library/Fonts/HelveticaNeue.dfont
/Library/Fonts/Iowan Old Style.ttc
/opt/X11/share/fonts/75dpi/helvBO14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/courB10.pcf.gz
/System/Library/Fonts/Avenir Next Condensed.ttc
/Library/Fonts/Microsoft/Tw Cen MT.ttf
/opt/X11/share/fonts/100dpi/lubR08.pcf.gz
/opt/X11/share/fonts/100dpi/lutRS12.pcf.gz
/opt/X11/share/fonts/100dpi/timR08.pcf.gz
/Library/Fonts/SuperClarendon.ttc
/opt/X11/share/fonts/100dpi/helvR12-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Perpetua Titling MT
/opt/X11/share/fonts/75dpi/charB08.pcf.gz
/opt/X11/share/fonts/75dpi/helvR18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/luBIS08-ISO8859-1.pcf.gz
/Library/Fonts/GillSans.ttc
/opt/X11/share/fonts/75dpi/courB18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/TTF/luximb.ttf
/System/Library/Fonts/Times.dfont
/Library/Fonts/Gurmukhi Sangam MN.ttc
/Library/Fonts/Bangla Sangam MN.ttc
/opt/X11/share/fonts/100dpi/timR14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/timBI18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/charR18.pcf.gz
/opt/X11/share/fonts/100dpi/lubBI12.pcf.gz
/opt/X11/share/fonts/75dpi/lubR10.pcf.gz
/Library/Fonts/Microsoft/Eurostile
/opt/X11/share/fonts/75dpi/courR12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lutRS18-ISO8859-1.pcf.gz
/System/Library/Fonts/Avenir.ttc
/opt/X11/share/fonts/100dpi/charI12.pcf.gz
/Library/Fonts/Iowan Old Style.ttc
/opt/X11/share/fonts/75dpi/timBI14.pcf.gz
/Library/Fonts/Charter.ttc
/opt/X11/share/fonts/75dpi/ncenR12.pcf.gz
/opt/X11/share/fonts/75dpi/UTRG__24.pcf.gz
/opt/X11/share/fonts/100dpi/helvBO08.pcf.gz
/opt/X11/share/fonts/100dpi/courBO08.pcf.gz
/opt/X11/share/fonts/100dpi/UTRG__24.pcf.gz
/Library/Fonts/Kefa.ttc
/opt/X11/share/fonts/OTF/SyrCOMMalankara.otf
/Library/Fonts/Krungthep.ttf
/Library/Fonts/Microsoft/Franklin Gothic Book Italic.ttf
/opt/X11/share/fonts/75dpi/UTI___10-ISO8859-1.pcf.gz
/Users/ifmichael/Library/Fonts/DejaVuSerif-Bold.ttf
/opt/X11/share/fonts/75dpi/luBIS19-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubI24-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Calisto MT
/opt/X11/share/fonts/100dpi/courB18.pcf.gz
/Library/Fonts/Microsoft/Lucida Sans
/opt/X11/share/fonts/100dpi/helvBO18.pcf.gz
/opt/X11/share/fonts/75dpi/ncenI18.pcf.gz
/Library/Fonts/WeibeiSC-Bold.otf
/Library/Fonts/Microsoft/News Gothic MT
/Library/Fonts/Microsoft/Wide Latin
/Library/Fonts/ヒラギノ角ゴ StdN W8.otf
/opt/X11/share/fonts/75dpi/ncenI24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lubBI08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/timBI24.pcf.gz
/opt/X11/share/fonts/75dpi/courB12.pcf.gz
/Library/Fonts/Lantinghei.ttc
/opt/X11/share/fonts/75dpi/ncenI12.pcf.gz
/Library/Fonts/HelveticaCY.dfont
/System/Library/Fonts/Avenir.ttc
/opt/X11/share/fonts/100dpi/helvBO24.pcf.gz
/opt/X11/share/fonts/misc/7x14B-ISO8859-1.pcf.gz
/Library/Fonts/STIXVar.otf
/opt/X11/share/fonts/75dpi/luIS12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/luRS10.pcf.gz
/Library/Fonts/Microsoft/Gill Sans Ultra Bold
/Library/Fonts/InaiMathi.ttf
/Library/Fonts/Microsoft/Corbel Bold Italic.ttf
/opt/X11/share/fonts/100dpi/helvB24.pcf.gz
/opt/X11/share/fonts/75dpi/lubI14.pcf.gz
/Library/Fonts/Microsoft/Comic Sans MS
/opt/X11/share/fonts/100dpi/luBS10.pcf.gz
/opt/X11/share/fonts/100dpi/helvO24.pcf.gz
/opt/X11/share/fonts/75dpi/ncenB24.pcf.gz
/Library/Fonts/Microsoft/Imprint MT Shadow
/Library/Fonts/ヒラギノ角ゴ Pro W3.otf
/System/Library/Fonts/HelveticaNeue.dfont
/Library/Fonts/Damascus.ttc
/Library/Fonts/Cochin.ttc
/opt/X11/share/fonts/75dpi/charBI10.pcf.gz
/opt/X11/share/fonts/75dpi/luRS10-ISO8859-1.pcf.gz
/Library/Fonts/Songti.ttc
/System/Library/Fonts/Palatino.ttc
/Library/Fonts/Microsoft/Candara Italic.ttf
/opt/X11/share/fonts/75dpi/helvR08.pcf.gz
/Library/Fonts/Seravek.ttc
/opt/X11/share/fonts/100dpi/ncenI14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/decsess.pcf.gz
/Library/Fonts/Arial Narrow Bold.ttf
/Library/Fonts/Al Nile.ttc
/Library/Fonts/Ayuthaya.ttf
/Library/Fonts/Microsoft/Verdana Italic.ttf
/opt/X11/share/fonts/75dpi/luRS24-ISO8859-1.pcf.gz
/Library/Fonts/Baskerville.ttc
/opt/X11/share/fonts/100dpi/helvBO12.pcf.gz
/opt/X11/share/fonts/Type1/l049016t.pfa
/opt/X11/share/fonts/75dpi/timBI24-ISO8859-1.pcf.gz
/Library/Fonts/PTSans.ttc
/opt/X11/share/fonts/75dpi/ncenR10.pcf.gz
/opt/X11/share/fonts/100dpi/lubB12-ISO8859-1.pcf.gz
/Library/Fonts/Georgia Bold.ttf
/Library/Fonts/Tamil Sangam MN.ttc
/opt/X11/share/fonts/75dpi/helvB24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/courB24-ISO8859-1.pcf.gz
/Library/Fonts/Yu Mincho Demibold.otf
/opt/X11/share/fonts/misc/cu-pua12.pcf.gz
/Library/Fonts/Microsoft/Calibri Bold Italic.ttf
/opt/X11/share/fonts/100dpi/lubB19.pcf.gz
/System/Library/Fonts/Avenir.ttc
/opt/X11/share/fonts/75dpi/courB14.pcf.gz
/opt/X11/share/fonts/100dpi/helvBO18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/timB18.pcf.gz
/Library/Fonts/AppleSDGothicNeo-Thin.otf
/Library/Fonts/WeibeiTC-Bold.otf
/Library/Fonts/Khmer MN.ttc
/Library/Fonts/Damascus.ttc
/opt/X11/share/fonts/100dpi/UTB___10.pcf.gz
/opt/X11/share/fonts/75dpi/lutRS10-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/PMingLiU.ttf
/opt/X11/share/fonts/OTF/SyrCOMMardinBold.otf
/System/Library/Fonts/Apple Color Emoji.ttf
/Library/Fonts/Microsoft/Calisto MT
/System/Library/Fonts/Avenir.ttc
/opt/X11/share/fonts/100dpi/lubI12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/helvB12.pcf.gz
/opt/X11/share/fonts/75dpi/helvBO10.pcf.gz
/opt/X11/share/fonts/misc/clR6x12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/helvB14.pcf.gz
/Library/Fonts/Microsoft/Calibri Bold.ttf
/opt/X11/share/fonts/75dpi/luBS08.pcf.gz
/System/Library/Fonts/Noteworthy.ttc
/opt/X11/share/fonts/OTF/SyrCOMCtesiphon.otf
/opt/X11/share/fonts/100dpi/timB10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lubR24.pcf.gz
/opt/X11/share/fonts/75dpi/courR08.pcf.gz
/Library/Fonts/Microsoft/Franklin Gothic Book.ttf
/Library/Fonts/AppleSDGothicNeo-Medium.otf
/opt/X11/share/fonts/75dpi/helvB14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/Type1/cour.pfa
/System/Library/Fonts/Thonburi.ttc
/Library/Fonts/Chalkboard.ttc
/Library/Fonts/Microsoft/Arial Narrow
/Library/Fonts/Farisi.ttc
/Library/Fonts/Farah.ttc
/Library/Fonts/Microsoft/Century Schoolbook
/Library/Fonts/Hanzipen.ttc
/opt/X11/share/fonts/75dpi/luBS12.pcf.gz
/opt/X11/share/fonts/100dpi/lubR12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/ncenR10.pcf.gz
/opt/X11/share/fonts/75dpi/helvB18.pcf.gz
/System/Library/Fonts/HelveticaNeue.dfont
/opt/X11/share/fonts/75dpi/timI10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/UTBI__14.pcf.gz
/opt/X11/share/fonts/75dpi/helvR14.pcf.gz
/Library/Fonts/STIXGeneral.otf
/Library/Fonts/Xingkai.ttc
/opt/X11/share/fonts/100dpi/luIS08.pcf.gz
/Library/Fonts/Baskerville.ttc
/opt/X11/share/fonts/100dpi/lubR14.pcf.gz
/Library/Fonts/Marion.ttc
/opt/X11/share/fonts/75dpi/lutRS12.pcf.gz
/Library/Fonts/Apple LiSung Light.ttf
/opt/X11/share/fonts/TTF/VeraSe.ttf
/Library/Fonts/Seravek.ttc
/System/Library/Fonts/Helvetica.dfont
/Library/Fonts/ヒラギノ角ゴ Std W8.otf
/opt/X11/share/fonts/OTF/SyrCOMAdiabene.otf
/opt/X11/share/fonts/100dpi/ncenBI14.pcf.gz
/Library/Fonts/Microsoft/Cambria Italic.ttf
/System/Library/Fonts/LucidaGrande.ttc
/opt/X11/share/fonts/75dpi/luBS08-ISO8859-1.pcf.gz
/Library/Fonts/OsakaMono.ttf
/opt/X11/share/fonts/100dpi/courR14.pcf.gz
/opt/X11/share/fonts/misc/6x13B-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/luBIS12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/luIS24.pcf.gz
/opt/X11/share/fonts/75dpi/lubBI14.pcf.gz
/opt/X11/share/fonts/100dpi/termB14.pcf.gz
/Library/Fonts/Microsoft/Calibri.ttf
/opt/X11/share/fonts/75dpi/courBO12.pcf.gz
/Library/Fonts/NewPeninimMT.ttc
/opt/X11/share/fonts/100dpi/ncenB14.pcf.gz
/opt/X11/share/fonts/100dpi/UTB___12-ISO8859-1.pcf.gz
/System/Library/Fonts/Helvetica.dfont
/Library/Fonts/AmericanTypewriter.ttc
/opt/X11/share/fonts/100dpi/courR24-ISO8859-1.pcf.gz
/Library/Fonts/STIXSizFourSymReg.otf
/opt/X11/share/fonts/75dpi/luBIS08.pcf.gz
/Library/Fonts/儷宋 Pro.ttf
/opt/X11/share/fonts/100dpi/luIS19.pcf.gz
/opt/X11/share/fonts/75dpi/helvO10-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Colonna
/opt/X11/share/fonts/OTF/SyrCOMAntioch.otf
/opt/X11/share/fonts/100dpi/lutRS10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lutBS18-ISO8859-1.pcf.gz
/Library/Fonts/Kaiti.ttc
/Library/Fonts/Microsoft/Arial Black
/Library/Fonts/Microsoft/Modern No. 20
/System/Library/Fonts/Menlo.ttc
/opt/X11/share/fonts/100dpi/helvR10-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Candara Bold Italic.ttf
/System/Library/Fonts/Avenir Next.ttc
/opt/X11/share/fonts/75dpi/lutRS18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/TTF/VeraIt.ttf
/Library/Fonts/Microsoft/PMingLiU-ExtB.ttf
/opt/X11/share/fonts/TTF/VeraMoIt.ttf
/opt/X11/share/fonts/75dpi/lutRS18.pcf.gz
/System/Library/Fonts/Menlo.ttc
/opt/X11/share/fonts/75dpi/courO10.pcf.gz
/opt/X11/share/fonts/75dpi/courB18.pcf.gz
/Library/Fonts/Iowan Old Style.ttc
/Library/Fonts/STIXNonUni.otf
/Library/Fonts/Microsoft/Perpetua.ttf
/opt/X11/share/fonts/100dpi/ncenB10.pcf.gz
/Library/Fonts/GillSans.ttc
/opt/X11/share/fonts/Type1/l049036t.pfa
/opt/X11/share/fonts/100dpi/courR24.pcf.gz
/Library/Fonts/GillSans.ttc
/Library/Fonts/Microsoft/Monotype Corsiva
/opt/X11/share/fonts/100dpi/luIS12.pcf.gz
/Library/Fonts/GujaratiMT.ttf
/opt/X11/share/fonts/75dpi/lubBI10-ISO8859-1.pcf.gz
/Library/Fonts/ChalkboardSE.ttc
/opt/X11/share/fonts/75dpi/lutRS14-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Book Antiqua
/opt/X11/share/fonts/100dpi/ncenB14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/luBS14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/charB10.pcf.gz
/Library/Fonts/NewPeninimMT.ttc
/opt/X11/share/fonts/100dpi/timBI18.pcf.gz
/opt/X11/share/fonts/75dpi/ncenBI08.pcf.gz
/Library/Fonts/Baoli.ttc
/opt/X11/share/fonts/100dpi/helvR18-ISO8859-1.pcf.gz
/Library/Fonts/AppleMyungjo.ttf
/opt/X11/share/fonts/100dpi/lubR18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/12x24.pcf.gz
/opt/X11/share/fonts/75dpi/UTBI__18-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Britannic Bold
/System/Library/Fonts/TimesLTMM
/Users/ifmichael/Library/Fonts/DejaVuSerifCondensed-Italic.ttf
/opt/X11/share/fonts/100dpi/UTI___24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubI08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/Type1/l048013t.pfa
/Library/Fonts/Microsoft/Tw Cen MT Bold Italic.ttf
/System/Library/Fonts/STHeiti Light.ttc
/Library/Fonts/Microsoft/Onyx
/Library/Fonts/Kannada MN.ttc
/opt/X11/share/fonts/75dpi/UTRG__10-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Corbel Italic.ttf
/opt/X11/share/fonts/75dpi/luBS10.pcf.gz
/Library/Fonts/Impact.ttf
/opt/X11/share/fonts/75dpi/ncenR14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lutBS10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/ncenI10-ISO8859-1.pcf.gz
/System/Library/Fonts/Helvetica.dfont
/System/Library/Fonts/Avenir Next.ttc
/Users/ifmichael/Library/Fonts/DejaVuSerifCondensed-Bold.ttf
/opt/X11/share/fonts/100dpi/lutRS10.pcf.gz
/Library/Fonts/Futura.ttc
/System/Library/Fonts/HelveticaNeue.dfont
/opt/X11/share/fonts/100dpi/luRS08-ISO8859-1.pcf.gz
/Library/Fonts/STIXSizThreeSymReg.otf
/opt/X11/share/fonts/TTF/luxirb.ttf
/Library/Fonts/Bangla MN.ttc
/Library/Fonts/Kannada MN.ttc
/Library/Fonts/Chalkboard.ttc
/opt/X11/share/fonts/75dpi/lubBI24-ISO8859-1.pcf.gz
/System/Library/Fonts/Avenir Next.ttc
/opt/X11/share/fonts/100dpi/timB18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/ncenBI24.pcf.gz
/Library/Fonts/Microsoft/Candara Bold.ttf
/opt/X11/share/fonts/100dpi/timR24-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Book Antiqua
/System/Library/Fonts/Avenir Next.ttc
/System/Library/Fonts/LucidaGrande.ttc
/opt/X11/share/fonts/100dpi/luRS18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/timR10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubB12.pcf.gz
/opt/X11/share/fonts/75dpi/luBIS12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lutBS12-ISO8859-1.pcf.gz
/Library/Fonts/Hanzipen.ttc
/opt/X11/share/fonts/100dpi/timB10.pcf.gz
/System/Library/Fonts/HelveticaNeue.dfont
/Library/Fonts/Didot.ttc
/Library/Fonts/Herculanum.ttf
/Library/Fonts/Muna.ttc
/opt/X11/share/fonts/75dpi/charBI14.pcf.gz
/System/Library/Fonts/Apple Braille Pinpoint 6 Dot.ttf
/Library/Fonts/DecoTypeNaskh.ttf
/opt/X11/share/fonts/75dpi/helvO12.pcf.gz
/opt/X11/share/fonts/75dpi/courBO18.pcf.gz
/opt/X11/share/fonts/Type1/c0648bt_.pfb
/Library/Fonts/ArialHB.ttc
/System/Library/Fonts/Optima.ttc
/Library/Fonts/Microsoft/Meiryo.ttf
/Library/Fonts/Microsoft/Copperplate Gothic Light
/opt/X11/share/fonts/100dpi/lubBI19-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/10x20-ISO8859-1.pcf.gz
/Users/ifmichael/Library/Fonts/DejaVuSerif-Italic.ttf
/System/Library/Fonts/STHeiti Medium.ttc
/opt/X11/share/fonts/75dpi/UTRG__18.pcf.gz
/opt/X11/share/fonts/75dpi/luBIS12.pcf.gz
/Library/Fonts/Arial Black.ttf
/opt/X11/share/fonts/75dpi/ncenBI14-ISO8859-1.pcf.gz
/Library/Fonts/Charter.ttc
/Library/Fonts/Microsoft/Lucida Fax
/opt/X11/share/fonts/75dpi/ncenI18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lubB14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/helvR08-ISO8859-1.pcf.gz
/Library/Fonts/PTSans.ttc
/Library/Fonts/Microsoft/Century Gothic
/opt/X11/share/fonts/100dpi/helvB10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/helvR10.pcf.gz
/opt/X11/share/fonts/Type1/c0419bt_.pfb
/opt/X11/share/fonts/100dpi/timI18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/charB18.pcf.gz
/opt/X11/share/fonts/Type1/l047036t.pfa
/Library/Fonts/GillSans.ttc
/opt/X11/share/fonts/misc/deccurs.pcf.gz
/System/Library/Fonts/Menlo.ttc
/opt/X11/share/fonts/75dpi/ncenB24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lutBS14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/ncenB08.pcf.gz
/Library/Fonts/Al Tarikh.ttc
/System/Library/Fonts/HelveticaNeueDeskUI.ttc
/opt/X11/share/fonts/misc/9x18-ISO8859-1.pcf.gz
/Library/Fonts/HeadlineA.ttf
/Library/Fonts/Microsoft/msyi.ttf
/opt/X11/share/fonts/75dpi/lubB18.pcf.gz
/Library/Fonts/Myanmar Sangam MN.ttf
/opt/X11/share/fonts/100dpi/lutBS12.pcf.gz
/Library/Fonts/GillSans.ttc
/Library/Fonts/Gurmukhi MN.ttc
/Library/Fonts/Microsoft/Lucida Bright
/opt/X11/share/fonts/100dpi/ncenBI24-ISO8859-1.pcf.gz
/Library/Fonts/Kannada Sangam MN.ttc
/opt/X11/share/fonts/100dpi/courB08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/7x13.pcf.gz
/opt/X11/share/fonts/100dpi/courR10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/timI08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/courB24-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/MingLiU.ttf
/System/Library/Fonts/Avenir Next Condensed.ttc
/Library/Fonts/Microsoft/MS Gothic.ttf
/Library/Fonts/Microsoft/MingLiU_HKSCS-ExtB.ttf
/Users/ifmichael/Library/Fonts/8918632284.ttf
/opt/X11/share/fonts/75dpi/lutBS08.pcf.gz
/opt/X11/share/fonts/75dpi/courR24-ISO8859-1.pcf.gz
/Library/Fonts/Athelas.ttc
/opt/X11/share/fonts/100dpi/timB24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lutBS18.pcf.gz
/opt/X11/share/fonts/75dpi/timBI18-ISO8859-1.pcf.gz
/System/Library/Fonts/Courier.dfont
/opt/X11/share/fonts/75dpi/ncenBI12.pcf.gz
/Library/Fonts/Kefa.ttc
/Library/Fonts/Microsoft/Trebuchet MS
/opt/X11/share/fonts/misc/micro.pcf.gz
/Library/Fonts/Microsoft/Wingdings 2.ttf
/Library/Fonts/PTMono.ttc
/opt/X11/share/fonts/OTF/SyrCOMBatnanBold.otf
/opt/X11/share/fonts/75dpi/UTRG__12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/ncenI18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/timR10.pcf.gz
/opt/X11/share/fonts/OTF/SyrCOMUrhoyBold.otf
/Library/Fonts/vhfAstroLogical.otf
/Library/Fonts/Microsoft/Candara.ttf
/Library/Fonts/Malayalam MN.ttc
/opt/X11/share/fonts/100dpi/ncenBI14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/ncenR18-ISO8859-1.pcf.gz
/Library/Fonts/Oriya Sangam MN.ttc
/Library/Fonts/Hanzipen.ttc
/Library/Fonts/GillSans.ttc
/opt/X11/share/fonts/75dpi/timB14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/charR12.pcf.gz
/opt/X11/share/fonts/Type1/l048033t.pfa
/Library/Fonts/Oriya MN.ttc
/opt/X11/share/fonts/75dpi/lutRS08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/TTF/luxirr.ttf
/Library/Fonts/ChalkboardSE.ttc
/opt/X11/share/fonts/100dpi/luBIS19-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lutRS10.pcf.gz
/opt/X11/share/fonts/75dpi/helvO08-ISO8859-1.pcf.gz
/Library/Fonts/NanumScript.ttc
/opt/X11/share/fonts/100dpi/courBO24.pcf.gz
/opt/X11/share/fonts/75dpi/charR14.pcf.gz
/Library/Fonts/ArialHB.ttc
/opt/X11/share/fonts/100dpi/UTBI__12-ISO8859-1.pcf.gz
/Library/Fonts/Sinhala MN.ttc
/opt/X11/share/fonts/100dpi/helvO14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/ncenR14.pcf.gz
/Library/Fonts/Microsoft/Century Schoolbook
/Library/Fonts/Wingdings.ttf
/System/Library/Fonts/MarkerFelt.ttc
/opt/X11/share/fonts/75dpi/timI10.pcf.gz
/opt/X11/share/fonts/75dpi/courO24.pcf.gz
/Library/Fonts/Microsoft/MS PMincho.ttf
/Library/Fonts/MshtakanOblique.ttf
/opt/X11/share/fonts/100dpi/timI10.pcf.gz
/Library/Fonts/Iowan Old Style.ttc
/Library/Fonts/Microsoft/Lucida Sans Typewriter
/opt/X11/share/fonts/100dpi/UTI___12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/9x15B-ISO8859-1.pcf.gz
/Library/Fonts/STIXIntUpBol.otf
/opt/X11/share/fonts/75dpi/helvBO18.pcf.gz
/Library/Fonts/Microsoft/Century Schoolbook
/Library/Fonts/Microsoft/Abadi MT Condensed Light
/opt/X11/share/fonts/100dpi/ncenI10-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Verdana.ttf
/opt/X11/share/fonts/TTF/VeraMoBI.ttf
/opt/X11/share/fonts/75dpi/charI12.pcf.gz
/Library/Fonts/Wingdings 2.ttf
/Library/Fonts/Seravek.ttc
/Library/Fonts/Waseem.ttc
/opt/X11/share/fonts/75dpi/lubI12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lutBS14.pcf.gz
/opt/X11/share/fonts/75dpi/luIS24.pcf.gz
/opt/X11/share/fonts/100dpi/charB24.pcf.gz
/opt/X11/share/fonts/100dpi/luBS10-ISO8859-1.pcf.gz
/Users/ifmichael/Library/Fonts/DejaVuSansMono.ttf
/Library/Fonts/Microsoft/Constantia Bold Italic.ttf
/opt/X11/share/fonts/75dpi/lubB19-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/timR08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/luBS12-ISO8859-1.pcf.gz
/System/Library/Fonts/Avenir Next Condensed.ttc
/Library/Fonts/Tahoma.ttf
/opt/X11/share/fonts/75dpi/UTB___14-ISO8859-1.pcf.gz
/Library/Fonts/Muna.ttc
/System/Library/Fonts/Optima.ttc
/opt/X11/share/fonts/75dpi/courBO08-ISO8859-1.pcf.gz
/Library/Fonts/Telugu MN.ttc
/opt/X11/share/fonts/75dpi/helvO18-ISO8859-1.pcf.gz
/System/Library/Fonts/Avenir Next Condensed.ttc
/Library/Fonts/PTSans.ttc
/opt/X11/share/fonts/100dpi/lubBI14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/luRS08.pcf.gz
/opt/X11/share/fonts/75dpi/lubI10.pcf.gz
/opt/X11/share/fonts/100dpi/lubB18.pcf.gz
/Library/Fonts/Songti.ttc
/opt/X11/share/fonts/OTF/SyrCOMKharput.otf
/Library/Fonts/Microsoft/Haettenschweiler
/opt/X11/share/fonts/100dpi/lubBI24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/timI14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/helvB10.pcf.gz
/opt/X11/share/fonts/misc/7x14B.pcf.gz
/Library/Fonts/NanumGothic.ttc
/opt/X11/share/fonts/75dpi/lubR19-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Tw Cen MT Bold.ttf
/Library/Fonts/Marion.ttc
/Library/Fonts/Microsoft/Calibri Italic.ttf
/opt/X11/share/fonts/100dpi/lubR14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/timBI08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/timBI10.pcf.gz
/opt/X11/share/fonts/misc/6x13O-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/courB14.pcf.gz
/opt/X11/share/fonts/100dpi/helvB18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/helvR10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lutBS24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/courB10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/courO08.pcf.gz
/Library/Fonts/Comic Sans MS.ttf
/Library/Fonts/Pilgiche.ttf
/System/Library/Fonts/Avenir Next.ttc
/opt/X11/share/fonts/OTF/GohaTibebZemen.otf
/Library/Fonts/Lantinghei.ttc
/Library/Fonts/STIXSizTwoSymBol.otf
/System/Library/Fonts/Avenir Next Condensed.ttc
/opt/X11/share/fonts/100dpi/lubI12.pcf.gz
/Library/Fonts/Arial Bold Italic.ttf
/System/Library/Fonts/Apple Braille Pinpoint 8 Dot.ttf
/opt/X11/share/fonts/75dpi/lutRS24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lubI18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lubR19.pcf.gz
/Users/ifmichael/Library/Fonts/DejaVuSansCondensed-Bold.ttf
/Library/Fonts/Microsoft/Arial Narrow
/Library/Fonts/Kaiti.ttc
/opt/X11/share/fonts/100dpi/charBI08.pcf.gz
/opt/X11/share/fonts/75dpi/helvO08.pcf.gz
/Library/Fonts/Microsoft/Lucida Fax
/opt/X11/share/fonts/75dpi/timB18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/UTRG__18-ISO8859-1.pcf.gz
/System/Library/Fonts/Avenir.ttc
/opt/X11/share/fonts/100dpi/timI08-ISO8859-1.pcf.gz
/Library/Fonts/SuperClarendon.ttc
/opt/X11/share/fonts/misc/5x7.pcf.gz
/Library/Fonts/PCmyoungjo.ttf
/Library/Fonts/AlBayanBold.ttf
/opt/X11/share/fonts/100dpi/helvO24-ISO8859-1.pcf.gz
/Library/Fonts/Baskerville.ttc
/Library/Fonts/Microsoft/Times New Roman Bold.ttf
/opt/X11/share/fonts/100dpi/helvO18.pcf.gz
/System/Library/Fonts/AppleSDGothicNeo-Regular.otf
/Library/Fonts/HelveticaCY.dfont
/Library/Fonts/Kaiti.ttc
/opt/X11/share/fonts/misc/7x13-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/timB08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/UTBI__10.pcf.gz
/opt/X11/share/fonts/75dpi/luRS14.pcf.gz
/Library/Fonts/Microsoft/Lucida Fax
/Library/Fonts/Libian.ttc
/opt/X11/share/fonts/100dpi/courO08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lutBS10.pcf.gz
/Library/Fonts/Nadeem.ttf
/Library/Fonts/AppleSDGothicNeo-UltraLight.otf
/opt/X11/share/fonts/100dpi/charR12.pcf.gz
/Library/Fonts/Microsoft/Marlett.ttf
/System/Library/Fonts/HelveticaNeue.dfont
/Library/Fonts/Microsoft/MS Mincho.ttf
/opt/X11/share/fonts/75dpi/ncenR10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/OTF/SyrCOMJerusalemBold.otf
/opt/X11/share/fonts/75dpi/luBS24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/luRS19-ISO8859-1.pcf.gz
/Library/Fonts/Athelas.ttc
/System/Library/Fonts/Apple Braille.ttf
/opt/X11/share/fonts/75dpi/courR08-ISO8859-1.pcf.gz
/Library/Fonts/SuperClarendon.ttc
/Library/Fonts/Microsoft/MT Extra
/Library/Fonts/Microsoft/Franklin Gothic Medium.ttf
/opt/X11/share/fonts/100dpi/timI08.pcf.gz
/opt/X11/share/fonts/75dpi/ncenI10.pcf.gz
/opt/X11/share/fonts/75dpi/timI12.pcf.gz
/Library/Fonts/Hannotate.ttc
/opt/X11/share/fonts/100dpi/lutBS10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/charR10.pcf.gz
/opt/X11/share/fonts/75dpi/courBO24.pcf.gz
/opt/X11/share/fonts/misc/cu12.pcf.gz
/System/Library/Fonts/Avenir Next Condensed.ttc
/opt/X11/share/fonts/75dpi/luBS10-ISO8859-1.pcf.gz
/Library/Fonts/STIXIntDReg.otf
/Library/Fonts/Microsoft/Meiryo Italic.ttf
/System/Library/Fonts/Avenir Next.ttc
/Library/Fonts/Microsoft/Andale Mono
/System/Library/Fonts/Noteworthy.ttc
/Library/Fonts/Microsoft/Consolas Bold Italic.ttf
/opt/X11/share/fonts/100dpi/luBS14.pcf.gz
/Library/Fonts/AppleSDGothicNeo-ExtraBold.otf
/opt/X11/share/fonts/Type1/c0611bt_.pfb
/Library/Fonts/Apple Chancery.ttf
/opt/X11/share/fonts/100dpi/courBO12-ISO8859-1.pcf.gz
/System/Library/Fonts/HelveticaNeueDeskUI.ttc
/opt/X11/share/fonts/100dpi/luBS19-ISO8859-1.pcf.gz
/System/Library/Fonts/MarkerFelt.ttc
/Library/Fonts/Malayalam Sangam MN.ttc
/opt/X11/share/fonts/100dpi/courBO18.pcf.gz
/opt/X11/share/fonts/100dpi/luRS24-ISO8859-1.pcf.gz
/Library/Fonts/AppleSDGothicNeo-SemiBold.otf
/opt/X11/share/fonts/100dpi/UTRG__10.pcf.gz
/opt/X11/share/fonts/75dpi/timB18.pcf.gz
/Library/Fonts/Hoefler Text.ttc
/opt/X11/share/fonts/100dpi/ncenBI08-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Bell MT
/Library/Fonts/MshtakanRegular.ttf
/opt/X11/share/fonts/75dpi/lubBI18.pcf.gz
/System/Library/Fonts/Avenir.ttc
/opt/X11/share/fonts/75dpi/charI08.pcf.gz
/opt/X11/share/fonts/100dpi/lubR12.pcf.gz
/opt/X11/share/fonts/75dpi/courO18.pcf.gz
/opt/X11/share/fonts/75dpi/UTB___10.pcf.gz
/opt/X11/share/fonts/75dpi/ncenI08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubR24-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Verdana Bold.ttf
/opt/X11/share/fonts/100dpi/UTRG__14.pcf.gz
/opt/X11/share/fonts/100dpi/lubR19-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/courO10.pcf.gz
/opt/X11/share/fonts/75dpi/lutRS14.pcf.gz
/Library/Fonts/Songti.ttc
/Library/Fonts/Hoefler Text.ttc
/opt/X11/share/fonts/75dpi/UTBI__14.pcf.gz
/Library/Fonts/Microsoft/Trebuchet MS
/Library/Fonts/Baskerville.ttc
/opt/X11/share/fonts/75dpi/timBI10-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/MS PGothic.ttf
/Library/Fonts/Charter.ttc
/opt/X11/share/fonts/75dpi/charB10.pcf.gz
/opt/X11/share/fonts/misc/9x15.pcf.gz
/System/Library/Fonts/Apple Symbols.ttf
/Library/Fonts/Microsoft/Palatino Linotype Bold Italic.ttf
/opt/X11/share/fonts/100dpi/timB08.pcf.gz
/opt/X11/share/fonts/75dpi/timB24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/helvO08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/charI14.pcf.gz
/System/Library/Fonts/Geneva.dfont
/Library/Fonts/Microsoft/Rockwell Extra Bold
/Library/Fonts/Microsoft/Eurostile
/Library/Fonts/STIXIntUpDBol.otf
/Library/Fonts/Tamil MN.ttc
/opt/X11/share/fonts/100dpi/helvO10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/charB12.pcf.gz
/Library/Fonts/Osaka.ttf
/opt/X11/share/fonts/75dpi/ncenI24.pcf.gz
/opt/X11/share/fonts/100dpi/ncenR12.pcf.gz
/System/Library/Fonts/Courier.dfont
/System/Library/Fonts/HelveticaNeueDeskUI.ttc
/Library/Fonts/Microsoft/Gulim.ttf
/opt/X11/share/fonts/100dpi/ncenI18.pcf.gz
/opt/X11/share/fonts/100dpi/courR08.pcf.gz
/opt/X11/share/fonts/75dpi/lubI08.pcf.gz
/System/Library/Fonts/Monaco.dfont
/Library/Fonts/Papyrus.ttc
/System/Library/Fonts/Courier.dfont
/opt/X11/share/fonts/100dpi/helvBO10-ISO8859-1.pcf.gz
/Library/Fonts/Chalkduster.ttf
/opt/X11/share/fonts/100dpi/timI24-ISO8859-1.pcf.gz
/System/Library/Fonts/STHeiti Medium.ttc
/Library/Fonts/Al Nile.ttc
/Library/Fonts/Microsoft/Gill Sans MT Bold.ttf
/Library/Fonts/Damascus.ttc
/Library/Fonts/Microsoft/Mistral
/opt/X11/share/fonts/75dpi/lutRS12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/helvB18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/luBS12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lubBI14.pcf.gz
/opt/X11/share/fonts/100dpi/UTBI__18.pcf.gz
/Library/Fonts/AmericanTypewriter.ttc
/opt/X11/share/fonts/100dpi/ncenR14-ISO8859-1.pcf.gz
/Library/Fonts/Devanagari Sangam MN.ttc
/opt/X11/share/fonts/75dpi/timI12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/luBIS08.pcf.gz
/opt/X11/share/fonts/100dpi/charB12.pcf.gz
/opt/X11/share/fonts/100dpi/luBS19.pcf.gz
/Library/Fonts/Microsoft/Goudy Old Style
/System/Library/Fonts/Avenir.ttc
/opt/X11/share/fonts/100dpi/ncenB12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/UTI___10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/6x13O.pcf.gz
/opt/X11/share/fonts/75dpi/luBIS10.pcf.gz
/Users/ifmichael/Library/Fonts/JanusAsym.ttf
/opt/X11/share/fonts/100dpi/lubBI12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/ncenI08-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Cambria Bold.ttf
/opt/X11/share/fonts/100dpi/charR24.pcf.gz
/opt/X11/share/fonts/75dpi/UTBI__14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/TTF/luxisbi.ttf
/Library/Fonts/ヒラギノ明朝 Pro W6.otf
/Library/Fonts/Microsoft/Lucida Sans Unicode.ttf
/opt/X11/share/fonts/75dpi/timBI12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/UTI___24.pcf.gz
/opt/X11/share/fonts/misc/12x13ja.pcf.gz
/opt/X11/share/fonts/75dpi/ncenR24.pcf.gz
/opt/X11/share/fonts/75dpi/lutBS19-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lubI14.pcf.gz
/opt/X11/share/fonts/75dpi/luBIS14.pcf.gz
/Library/Fonts/Cochin.ttc
/opt/X11/share/fonts/100dpi/ncenI12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/courB08.pcf.gz
/opt/X11/share/fonts/75dpi/lubB14.pcf.gz
/Library/Fonts/Cochin.ttc
/opt/X11/share/fonts/75dpi/lubB14-ISO8859-1.pcf.gz
/System/Library/Fonts/HelveticaNeue.dfont
/Library/Fonts/Microsoft/Georgia
/Users/ifmichael/Library/Fonts/DejaVuSans-ExtraLight.ttf
/Library/Fonts/Microsoft/Meiryo Bold.ttf
/opt/X11/share/fonts/75dpi/timB08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/timR24.pcf.gz
/Library/Fonts/YuppyTC-Regular.otf
/opt/X11/share/fonts/OTF/SyrCOMUrhoy.otf
/opt/X11/share/fonts/misc/6x13-ISO8859-1.pcf.gz
/Library/Fonts/PTSans.ttc
/opt/X11/share/fonts/100dpi/helvBO14.pcf.gz
/opt/X11/share/fonts/75dpi/luBIS18-ISO8859-1.pcf.gz
/Users/ifmichael/Library/Fonts/DejaVuSerif.ttf
/opt/X11/share/fonts/100dpi/lutRS24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/helvR12-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Lucida Bright
/opt/X11/share/fonts/75dpi/lubR19.pcf.gz
/opt/X11/share/fonts/75dpi/lutBS14.pcf.gz
/Library/Fonts/Copperplate.ttc
/Library/Fonts/Verdana.ttf
/opt/X11/share/fonts/100dpi/luBS18.pcf.gz
/opt/X11/share/fonts/100dpi/courBO24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/courO10-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Rockwell
/Library/Fonts/STIXGeneralItalic.otf
/opt/X11/share/fonts/misc/6x9.pcf.gz
/Users/ifmichael/Library/Fonts/STRFNSAN.TTF
/Library/Fonts/PTSerif.ttc
/Library/Fonts/PTSans.ttc
/opt/X11/share/fonts/75dpi/courBO10.pcf.gz
/opt/X11/share/fonts/75dpi/charI10.pcf.gz
/opt/X11/share/fonts/Type1/c0632bt_.pfb
/Library/Fonts/PlantagenetCherokee.ttf
/opt/X11/share/fonts/100dpi/UTI___14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/ncenB10.pcf.gz
/opt/X11/share/fonts/75dpi/lubR08.pcf.gz
/opt/X11/share/fonts/misc/8x16.pcf.gz
/opt/X11/share/fonts/75dpi/luBS14.pcf.gz
/opt/X11/share/fonts/100dpi/helvO14.pcf.gz
/opt/X11/share/fonts/75dpi/ncenB08-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Arial Bold Italic.ttf
/Library/Fonts/Microsoft/Comic Sans MS
/opt/X11/share/fonts/75dpi/courO12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/luBIS24-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubB24.pcf.gz
/opt/X11/share/fonts/100dpi/UTBI__24-ISO8859-1.pcf.gz
/Users/ifmichael/Library/Fonts/JanusAmix.ttf
/System/Library/Fonts/Thonburi.ttc
/Library/Fonts/Telugu MN.ttc
/Library/Fonts/Savoye LET.ttc
/opt/X11/share/fonts/75dpi/timBI14-ISO8859-1.pcf.gz
/Library/Fonts/ヒラギノ丸ゴ Pro W4.otf
/opt/X11/share/fonts/OTF/SyrCOMTalada.otf
/opt/X11/share/fonts/100dpi/lubBI24.pcf.gz
/opt/X11/share/fonts/100dpi/lutBS18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lutBS12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/ncenB12.pcf.gz
/opt/X11/share/fonts/100dpi/lubR08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/UTI___18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/UTRG__18.pcf.gz
/opt/X11/share/fonts/75dpi/luRS14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/luBS19-ISO8859-1.pcf.gz
/Library/Fonts/Oriya Sangam MN.ttc
/System/Library/Fonts/Avenir Next.ttc
/Library/Fonts/Lantinghei.ttc
/opt/X11/share/fonts/100dpi/UTRG__14-ISO8859-1.pcf.gz
/Library/Fonts/Khmer Sangam MN.ttf
/Library/Fonts/PTSerifCaption.ttc
/opt/X11/share/fonts/Type1/UTB_____.pfa
/opt/X11/share/fonts/100dpi/ncenB18.pcf.gz
/opt/X11/share/fonts/75dpi/luRS08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lutBS08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/helvB24.pcf.gz
/opt/X11/share/fonts/Type1/cursor.pfa
/opt/X11/share/fonts/100dpi/courBO10.pcf.gz
/opt/X11/share/fonts/100dpi/UTBI__14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/charR24.pcf.gz
/Library/Fonts/Arial Bold.ttf
/Library/Fonts/Microsoft/Baskerville Old Face
/Library/Fonts/Microsoft/Arial Rounded Bold
/Library/Fonts/BiauKai.ttf
/Library/Fonts/PTSerif.ttc
/Library/Fonts/Athelas.ttc
/Library/Fonts/Microsoft/Gill Sans MT.ttf
/Library/Fonts/Songti.ttc
/Library/Fonts/GillSans.ttc
/opt/X11/share/fonts/75dpi/lutBS12.pcf.gz
/opt/X11/share/fonts/TTF/VeraBI.ttf
/Library/Fonts/Songti.ttc
/Users/ifmichael/Library/Fonts/DejaVuSansMono-Bold.ttf
/Library/Fonts/Lantinghei.ttc
/opt/X11/share/fonts/75dpi/courB14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/timI18.pcf.gz
/Library/Fonts/AppleSDGothicNeo-Heavy.otf
/opt/X11/share/fonts/100dpi/lubB18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/timBI10.pcf.gz
/Users/ifmichael/Library/Fonts/DejaVuSerifCondensed-BoldItalic.ttf
/Library/Fonts/Arial Italic.ttf
/opt/X11/share/fonts/75dpi/timBI08.pcf.gz
/Library/Fonts/AlBayan.ttf
/opt/X11/share/fonts/100dpi/timR14.pcf.gz
/Library/Fonts/Copperplate.ttc
/opt/X11/share/fonts/100dpi/helvR12.pcf.gz
/opt/X11/share/fonts/100dpi/lubI08-ISO8859-1.pcf.gz
/Library/Fonts/Arial Narrow Bold Italic.ttf
/Library/Fonts/Yu Gothic Bold.otf
/opt/X11/share/fonts/75dpi/UTB___10-ISO8859-1.pcf.gz
/Library/Fonts/Times New Roman.ttf
/System/Library/Fonts/HelveticaNeue.dfont
/opt/X11/share/fonts/75dpi/charBI12.pcf.gz
/opt/X11/share/fonts/100dpi/timBI08.pcf.gz
/Library/Fonts/Microsoft/Cambria.ttf
/Library/Fonts/Raanana.ttc
/Library/Fonts/Microsoft/Lucida Blackletter
/Library/Fonts/Corsiva.ttc
/Library/Fonts/Microsoft/Constantia.ttf
/opt/X11/share/fonts/75dpi/helvBO18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/6x12-ISO8859-1.pcf.gz
/System/Library/Fonts/STHeiti Light.ttc
/Library/Fonts/Seravek.ttc
/System/Library/Fonts/Avenir Next Condensed.ttc
/opt/X11/share/fonts/75dpi/lubB10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/charBI18.pcf.gz
/Library/Fonts/Georgia Bold Italic.ttf
/Library/Fonts/Bangla Sangam MN.ttc
/Library/Fonts/Kaiti.ttc
/opt/X11/share/fonts/75dpi/helvB08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/UTB___24-ISO8859-1.pcf.gz
/Library/Fonts/Didot.ttc
/opt/X11/share/fonts/75dpi/helvO14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubR18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubI12.pcf.gz
/opt/X11/share/fonts/75dpi/ncenI14.pcf.gz
/opt/X11/share/fonts/75dpi/timR12.pcf.gz
/opt/X11/share/fonts/TTF/luximbi.ttf
/Library/Fonts/ヒラギノ丸ゴ ProN W4.otf
/opt/X11/share/fonts/100dpi/lubI08.pcf.gz
/opt/X11/share/fonts/100dpi/luBS08-ISO8859-1.pcf.gz
/Library/Fonts/SnellRoundhand.ttc
/opt/X11/share/fonts/Type1/l048016t.pfa
/opt/X11/share/fonts/75dpi/courB08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/charB14.pcf.gz
/opt/X11/share/fonts/75dpi/lubBI12-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/himalaya.ttf
/Library/Fonts/Sinhala Sangam MN.ttc
/opt/X11/share/fonts/75dpi/timR10.pcf.gz
/opt/X11/share/fonts/75dpi/luRS18-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubB10.pcf.gz
/opt/X11/share/fonts/75dpi/timB14.pcf.gz
/opt/X11/share/fonts/100dpi/courO12.pcf.gz
/opt/X11/share/fonts/misc/7x13O-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Franklin Gothic Medium Italic.ttf
/Library/Fonts/Mishafi.ttc
/opt/X11/share/fonts/75dpi/charI24.pcf.gz
/Library/Fonts/Microsoft/taile.ttf
/opt/X11/share/fonts/75dpi/UTBI__12.pcf.gz
/Library/Fonts/STIXVarBol.otf
/opt/X11/share/fonts/75dpi/luIS10.pcf.gz
/opt/X11/share/fonts/100dpi/UTB___18.pcf.gz
/opt/X11/share/fonts/75dpi/lubBI10.pcf.gz
/opt/X11/share/fonts/Type1/c0583bt_.pfb
/opt/X11/share/fonts/misc/8x13O.pcf.gz
/Library/Fonts/NewPeninimMT.ttc
/opt/X11/share/fonts/75dpi/lubR18.pcf.gz
/opt/X11/share/fonts/75dpi/luIS14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/UTI___24.pcf.gz
/opt/X11/share/fonts/OTF/SyrCOMQenNeshrin.otf
/opt/X11/share/fonts/75dpi/UTI___12-ISO8859-1.pcf.gz
/System/Library/Fonts/HelveLTMM
/Library/Fonts/BigCaslon.ttf
/Library/Fonts/Comic Sans MS Bold.ttf
/Library/Fonts/NanumMyeongjo.ttc
/Library/Fonts/Microsoft/Book Antiqua
/Library/Fonts/Microsoft/Rockwell
/System/Library/Fonts/Times.dfont
/opt/X11/share/fonts/100dpi/helvR24.pcf.gz
/opt/X11/share/fonts/100dpi/lubB10-ISO8859-1.pcf.gz
/Library/Fonts/NISC18030.ttf
/Library/Fonts/GujaratiMTBold.ttf
/Library/Fonts/Trebuchet MS Italic.ttf
/opt/X11/share/fonts/Type1/c0633bt_.pfb
/Library/Fonts/Microsoft/Rockwell
/Library/Fonts/Verdana Bold Italic.ttf
/Library/Fonts/Verdana Italic.ttf
/Library/Fonts/Oriya MN.ttc
/opt/X11/share/fonts/75dpi/helvBO12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/75dpi/lubI18-ISO8859-1.pcf.gz
/Library/Fonts/Hannotate.ttc
/opt/X11/share/fonts/75dpi/ncenBI18.pcf.gz
/System/Library/Fonts/Avenir.ttc
/opt/X11/share/fonts/75dpi/helvR08-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/charR08.pcf.gz
/opt/X11/share/fonts/75dpi/helvBO08.pcf.gz
/opt/X11/share/fonts/75dpi/timBI08-ISO8859-1.pcf.gz
/System/Library/Fonts/ヒラギノ角ゴ ProN W3.otf
/Users/ifmichael/Library/Fonts/DejaVuSans-BoldOblique.ttf
/opt/X11/share/fonts/75dpi/luBS24.pcf.gz
/opt/X11/share/fonts/75dpi/ncenR12-ISO8859-1.pcf.gz
/Users/ifmichael/Library/Fonts/DejaVuSansMono-BoldOblique.ttf
/opt/X11/share/fonts/75dpi/timBI18.pcf.gz
/opt/X11/share/fonts/100dpi/lubI10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/misc/9x18B.pcf.gz
/Library/Fonts/Gurmukhi MN.ttc
/opt/X11/share/fonts/75dpi/ncenB14-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lubI19-ISO8859-1.pcf.gz
/Library/Fonts/Microsoft/Batang.ttf
/Library/Fonts/Gujarati Sangam MN.ttc
/Library/Fonts/Microsoft/Garamond
/opt/X11/share/fonts/100dpi/lubB10.pcf.gz
/opt/X11/share/fonts/100dpi/timB12-ISO8859-1.pcf.gz
/opt/X11/share/fonts/100dpi/lubR10-ISO8859-1.pcf.gz
/opt/X11/share/fonts/OTF/SyrCOMTurAbdin.otf

@tacaswell
Copy link
Member

@ifmihai One more thing (hopefully just one more thing), what happens if you run:

from __future__ import print_statement
import subprocess
pipe = subprocess.Popen(['fc-list', '--format=%{file}\\n'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output = pipe.communicate()[0]
print(output)

vs

from __future__ import print_statement, unicode_literals
import subprocess
pipe = subprocess.Popen(['fc-list', '--format=%{file}\\n'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output = pipe.communicate()[0]
print(output)

@tacaswell
Copy link
Member

I can't reproduce this on linux:

tcaswell@eowyn:~$ fc-list --format=%{file}\\n | grep Lora
/usr/share/fonts/truetype/שלום/Lora-Regular.ttf
/usr/share/fonts/truetype/שלום/Lora-Italic.ttf
/usr/share/fonts/truetype/שלום/Lora-Bold.ttf
/usr/share/fonts/truetype/שלום/Lora-BoldItalic.ttf
output = pipe.communicate()[0]
output.split()
ff = [_ for _ in output.split() if 'Lora' in _]
print(ff)
['/usr/share/fonts/truetype/\xd7\xa9\xd7\x9c\xd7\x95\xd7\x9d/Lora-Regular.ttf', '/usr/share/fonts/truetype/\xd7\xa9\xd7\x9c\xd7\x95\xd7\x9d/Lora-Italic.ttf', '/usr/share/fonts/truetype/\xd7\xa9\xd7\x9c\xd7\x95\xd7\x9d/Lora-Bold.ttf', '/usr/share/fonts/truetype/\xd7\xa9\xd7\x9c\xd7\x95\xd7\x9d/Lora-BoldItalic.ttf']

and

In [18]: os.path.isfile (ff[0])
Out[18]: True

In [24]: font_manager.findfont('Lora')
Out[24]: '/usr/share/fonts/truetype/\xd7\xa9\xd7\x9c\xd7\x95\xd7\x9d/Lora-Regular.ttf'

@matplotlib/developers Any mac-devs want to take this one on?

@cimarronm
Copy link
Contributor

I cannot reproduce on latest master with python 2.7.5

@cimarronm
Copy link
Contributor

@ifmihai What is your locale set to? What does the following give?

echo $LANG

@ifmihai
Copy link
Author

ifmihai commented Oct 1, 2014

@cimarronm

I ran your command. this is the output:

79-114-177-19:~ ifmichael$ echo $LANG
en_US.UTF-8

@ifmihai
Copy link
Author

ifmihai commented Oct 1, 2014

@tacaswell

Your first code (it had an issue, print_function instead of print_statement):

193 Inn: from __future__ import print_function
import subprocess
pipe = subprocess.Popen(['fc-list', '--format=%{file}\\n'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output = pipe.communicate()[0]
print(output)

Traceback (most recent call last):

  File "<ipython-input-193-774c6dc6ae95>", line 3, in <module>
    pipe = subprocess.Popen(['fc-list', '--format=%{file}\\n'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)

  File "/Users/ifmichael/anaconda/lib/python2.7/subprocess.py", line 710, in __init__
    errread, errwrite)

  File "/Users/ifmichael/anaconda/lib/python2.7/subprocess.py", line 1327, in _execute_child
    raise child_exception

OSError: [Errno 2] No such file or directory

The second code:

194 Inn: from __future__ import print_function, unicode_literals
import subprocess
pipe = subprocess.Popen(['fc-list', '--format=%{file}\\n'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output = pipe.communicate()[0]
print(output)
Traceback (most recent call last):

  File "<ipython-input-194-d794299a687e>", line 3, in <module>
    pipe = subprocess.Popen(['fc-list', '--format=%{file}\\n'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)

  File "/Users/ifmichael/anaconda/lib/python2.7/subprocess.py", line 710, in __init__
    errread, errwrite)

  File "/Users/ifmichael/anaconda/lib/python2.7/subprocess.py", line 1327, in _execute_child
    raise child_exception

OSError: [Errno 2] No such file or directory

Hm, not good I guess

@cimarronm
Copy link
Contributor

@ifmihai: What does this show?

from __future__ import print_function
import locale
import sys
print(locale.getpreferredencoding())
print(sys.getdefaultencoding())
print(sys.getfilesystemencoding())

@ifmihai
Copy link
Author

ifmihai commented Oct 1, 2014

@cimarronm

Here is the result:

4 In : print(locale.getpreferredencoding())
UTF-8

5 In : print(sys.getdefaultencoding())
ascii

6 In : print(sys.getfilesystemencoding())
utf-8

so, default encoding ascii is the cause?

@tacaswell
Copy link
Member

So, something is definitely not right, with those fonts above installed I get the following failure running the tests locally:

======================================================================
ERROR: test suite for <class 'matplotlib.tests.test_text.test_font_styles'>
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/tcaswell/.virtualenvs/conda27/lib/python2.7/site-packages/nose/plugins/multiprocess.py", line 788, in run
    self.setUp()
  File "/home/tcaswell/.virtualenvs/conda27/lib/python2.7/site-packages/nose/suite.py", line 291, in setUp
    self.setupContext(ancestor)
  File "/home/tcaswell/.virtualenvs/conda27/lib/python2.7/site-packages/nose/plugins/multiprocess.py", line 770, in setupContext
    super(NoSharedFixtureContextSuite, self).setupContext(context)
  File "/home/tcaswell/.virtualenvs/conda27/lib/python2.7/site-packages/nose/suite.py", line 314, in setupContext
    try_run(context, names)
  File "/home/tcaswell/.virtualenvs/conda27/lib/python2.7/site-packages/nose/util.py", line 470, in try_run
    return func()
  File "/home/tcaswell/other_source/matplotlib/lib/matplotlib/testing/decorators.py", line 134, in setup_class
    cls._func()
  File "/home/tcaswell/other_source/matplotlib/lib/matplotlib/tests/test_text.py", line 35, in test_font_styles
    size=14,
  File "/home/tcaswell/other_source/matplotlib/lib/matplotlib/tests/test_text.py", line 21, in find_matplotlib_font
    path = findfont(prop, directory=data_path)
  File "/home/tcaswell/other_source/matplotlib/lib/matplotlib/font_manager.py", line 1418, in findfont
    font = fontManager.findfont(prop, **kw)
  File "/home/tcaswell/other_source/matplotlib/lib/matplotlib/font_manager.py", line 1258, in findfont
    os.path.commonprefix([font.fname, directory]) != directory):
  File "/home/tcaswell/.virtualenvs/conda27/lib/python2.7/genericpath.py", line 71, in commonprefix
    s1 = min(m)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd7 in position 26: ordinal not in range(128)

It is not clear to me if this is the same broken-ness of different.

@cimarronm
Copy link
Contributor

@tacaswell I think the problem there is that directory is not unicode while font.fname is (so painful getting python2 to work with other languages when it's base string is not unicode).

And directory is not unicode as it stems from path = os.environ['MATPLOTLIBDATA'] in _get_data_path() which will return a str and not a unicode in python2. You can try to add a .decode('utf-8') (or other coding) to the directory to check if it progresses further.

@tacaswell
Copy link
Member

That makes sense, probably won't get back to this until tomorrow night.

@tacaswell
Copy link
Member

Got back to this very late, turns out the issue I was having was related to the cache files, deleting them made the error go away. @ifmihai See what matplotlib.get_cachedir() returns and delete the font cache files in that directory. That might help (but I am not optimistic).

There were a couple of strange things going on (I never managed to reproduce my exception in a terminal) and deleting my cache fixed 4 other persistent failures I had when running the test suite locally.

Given that (to my knowledge) no one has been able to reproduce this, I am going to say this is not-a-blocker for 1.4.1 and hope it is a strange local configuration issue.

@tacaswell tacaswell removed this from the v1.4.1 milestone Oct 17, 2014
@ifmihai
Copy link
Author

ifmihai commented Oct 20, 2014

I updated anaconda, and it updated matplotlib again to 1.4.0
again the same error

i deleted font-cache.
no change.

@tacaswell
To be clear.
it throws the same exception, no matter if i run ipython, or run a matplotlib example scripts.
(if i understood correctly your statement. i'm no expert, mind you :) )

@tacaswell
Copy link
Member

When you tried to run the subprocess command above it gave a different error than you reported coming from trying to import matplotlib.

I am not sure why you are surprised that the same version gave you the same error...

@ifmihai
Copy link
Author

ifmihai commented Dec 1, 2014

I've upgraded again from (the safe) 1.3.1 to 1.4.2.
and re-read this thread.

and this is annoying:

sys.getdefaultencoding() # 'ascii'

I did a little research, as I wanted to find the sys.setdefaultencoding('utf-8') to see what will happen.
I found out that it's hidden on purpose (probably you knew that already)

ok.
I did:

import sys
reload(sys) # now sys.setdefaultencoding() is visible
sys.setdefaultencoding('utf-8')
%run double-pendulum.py

and it worked, as I expected.
so setting default encoding with 'utf-8' works.
but people say this setting with utf-8 will break other things, so it must be bad.

After more inquiring, i found this link:
http://stackoverflow.com/questions/11741574/how-to-print-utf-8-encoded-text-to-the-console-in-python-3

the guy describes a workaround, but i don't understand what he is talking about.
maybe this will help this matplotlib issue?

@ifmihai
Copy link
Author

ifmihai commented Dec 5, 2014

I got an idea.
To launch simple python interpreter to see what's happening when importing matplotlib.

It loaded ok. No ascii exception.

I then updated spyder and launched it.
And no ascii exception there either.
I was blinded by using ipython, and it seems that it's about ipython.
any input on this finding?

I tried few things
this is output from spyder (which launches an ipython terminal, btw):

 Inn: import matplotlib as mpl
3 Inn: mpl.__version__
3 Out: '1.4.2'
4 Inn: import sys
5 Inn: import locale
6 Inn: from __future__ import print_function
7 Inn: print(locale.getpreferredencoding())
  ...: print(sys.getdefaultencoding())
  ...: print(sys.getfilesystemencoding())
  ...: 
UTF-8
ascii
utf-8

I have the same output for simple python interpreter also, it that matters.

@tacaswell
Copy link
Member

I would create an issue on the IPython tracker then. Make sure to reference both this issue and your other issue with the defaultencoding over there.

@ifmihai
Copy link
Author

ifmihai commented Dec 5, 2014

Before filing a bug to ipython,
I wanted to play around more,
and I found that the issue appears in python interpreter, and spyder too.
It was a false alarm, sorry :)

The exception appears again when importing matplotlib.pyplot

I don't know if this is redundant, but i paste the error again:

2 Inn: import matplotlib.pyplot as plt
Traceback (most recent call last):

  File "<ipython-input-2-eff513f636fd>", line 1, in <module>
    import matplotlib.pyplot as plt

  File "/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/pyplot.py", line 27, in <module>
    import matplotlib.colorbar

  File "/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/colorbar.py", line 34, in <module>
    import matplotlib.collections as collections

  File "/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/collections.py", line 27, in <module>
    import matplotlib.backend_bases as backend_bases

  File "/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/backend_bases.py", line 56, in <module>
    import matplotlib.textpath as textpath

  File "/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/textpath.py", line 19, in <module>
    import matplotlib.font_manager as font_manager

  File "/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/font_manager.py", line 1412, in <module>
    _rebuild()

  File "/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/font_manager.py", line 1397, in _rebuild
    fontManager = FontManager()

  File "/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/font_manager.py", line 1037, in __init__
    self.ttffiles = findSystemFonts(paths) + findSystemFonts()

  File "/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/font_manager.py", line 322, in findSystemFonts
    for f in get_fontconfig_fonts(fontext):

  File "/Users/ifmichael/anaconda/lib/python2.7/site-packages/matplotlib/font_manager.py", line 274, in get_fontconfig_fonts
    stderr=subprocess.PIPE)

  File "/Users/ifmichael/anaconda/lib/python2.7/subprocess.py", line 710, in __init__
    errread, errwrite)

  File "/Users/ifmichael/anaconda/lib/python2.7/subprocess.py", line 1327, in _execute_child
    raise child_exception

UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 0: ordinal not in range(128)

@efiring
Copy link
Member

efiring commented Dec 5, 2014

@ifmihai Based on the tracebacks you get with matplotlib, and with trying to run the subprocess code snippet independently, I suspect the problem is related to finding the fc-list executable. Apparently it is not found at all when you try to run the snippet. When subprocess searches for it from inside font_manager, it chokes on something like the problem that @cimarronm describes above.

From a terminal, what do you get with

which fc-list
printenv PATH

@ifmihai
Copy link
Author

ifmihai commented Dec 6, 2014

this is the output:

which fc-list
/usr/local/bin/fc-list

printenv PATH
“/Users/ifmichael/anaconda/bin:/Users/ifmichael/anaconda/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/ifmichael/Lucru/python/lib/scripts:/usr/local/sbin”

I saw that the issue must be in subprocess or underneath it.
That's why, after I posted here, I created an issue at anaconda project, because it's their python after all.
I don't know if they customise python.

@Nodd
Copy link
Contributor

Nodd commented Dec 4, 2015

I have the same issue on linux (centos) with anaconda. The strange thing is that I have the issue on one account but not on another.

They both use anaconda, fc-list --format="%{file}\\n" gives exactly the same result. I tried to update matplotlib to 1.5, still the same error.

@nafizh
Copy link

nafizh commented May 30, 2016

Was this problem solved? I am having the same problem in ipython 4.1.2 with python version 2.7.11 on Mac OsX El Capitan.

@actsasgeek
Copy link

I'm getting the same error on MacOS Sierra with Python 2.7.12, Matplotlib 2.0.0 if you do import matplotlib.pyplot, it will fail with. I tried deleting the cache as mentioned earlier.

>>> import matplotlib.pyplot
Fontconfig warning: line 146: blank doesn't take any effect anymore. please remove it from your fonts.conf
/usr/local/lib/python2.7/site-packages/matplotlib/font_manager.py:280: UserWarning: Matplotlib is building the font cache using fc-list. This may take a moment.
  'Matplotlib is building the font cache using fc-list. '
Found an unknown keyword in AFM header (was 'licensors,')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/site-packages/matplotlib/pyplot.py", line 29, in <module>
    import matplotlib.colorbar
  File "/usr/local/lib/python2.7/site-packages/matplotlib/colorbar.py", line 36, in <module>
    import matplotlib.contour as contour
  File "/usr/local/lib/python2.7/site-packages/matplotlib/contour.py", line 22, in <module>
    import matplotlib.font_manager as font_manager
  File "/usr/local/lib/python2.7/site-packages/matplotlib/font_manager.py", line 1439, in <module>
    _rebuild()
  File "/usr/local/lib/python2.7/site-packages/matplotlib/font_manager.py", line 1418, in _rebuild
    fontManager = FontManager()
  File "/usr/local/lib/python2.7/site-packages/matplotlib/font_manager.py", line 1072, in __init__
    self.afmlist = createFontList(self.afmfiles, fontext='afm')
  File "/usr/local/lib/python2.7/site-packages/matplotlib/font_manager.py", line 590, in createFontList
    prop = afmFontProperty(fpath, font)
  File "/usr/local/lib/python2.7/site-packages/matplotlib/font_manager.py", line 504, in afmFontProperty
    if font.get_angle() != 0 or name.lower().find('italic') >= 0:
UnicodeDecodeError: 'ascii' codec can't decode byte 0x82 in position 0: ordinal not in range(128)

@dstansby dstansby modified the milestones: 2.0.1 (next bug fix release), unassigned Feb 4, 2017
@tacaswell
Copy link
Member

Do you get this error with python3?

What is the font is causing this issue? I have a guess at how to fix it, but don't know how to test it.

@actsasgeek
Copy link

actsasgeek commented Feb 4, 2017

Python 3 is not an option.

The offending font is:

 �c�e���ۃS�V�b�N�� dfmarugothic-md-win-rksj-h

I don't even know where it came from.

Update

I removed the font and it "worked" then I ran into the "no module named externals" problem, gave up and used Time Machine to get it all back to working again.

@tacaswell
Copy link
Member

what 'no module name externals' problem?

I suspect what happened here is that 1.5.x was installed, you imported it to get the font cache built, you installed maru-gothic (which appears to be a Japanese font), but Matplotlib did not know about it. When you updated to 2.0 the font cache got rebuilt which exposed this very old bug.

Why isn't python3 an option?

@actsasgeek
Copy link

Oddly, I just remembered running into this problem the last time I installed matplotlib but I don't remember my solution. I remember very clearly inserting code into fontmanager.py to tell me what font it was failing on.

I did recently install the new version of Office for MacOS and I would guess that that, coupled along with a ill-advised "pip upgrade everything", caused the problem to be revealed.

The "no module named externals" problem is an old (closed) issue that apparently arises when you get your matplotlib libraries in an inconsistent versioning state, issue 5633.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

9 participants