Giter Site home page Giter Site logo

googliser's Introduction

icon googliser.sh

4th January 2021: This repo is inactive until a way can be found to request new pages in Google's "endless-page" of search results. This is beyond my limited web abilities, so I'm hoping someone out there knows how to do this. If so, please contact me and work on Googliser can resume!

This is a BASH script to perform fast image downloads sourced from Google Images based on a specified search-phrase. It's a web-page scraper that can source a list of original image URLs and sent them to Wget (or cURL) to download in parallel. Optionally, it can then combine them using ImageMagick's montage into a single gallery image.

This is an expansion upon a solution provided by ShellFish and has been updated to handle Google's various page-code changes from April 2016 to the present.

Big thanks to MBtech, stevemart and dardo82 for their work on macOS compatibility and coding some great new script features. Cheers guys!


#c5f015 Installation

Via Wget:

$ bash <(wget -qO- git.io/get-googliser)

or cURL:

$ bash <(curl -skL git.io/get-googliser)

#c5f015 Workflow

  1. The user supplies a search-phrase and other optional parameters on the command-line.

  2. A sub-directory with the name of this search-phrase is created below the current directory.

  3. Google Images is queried and the results saved.

  4. The results are parsed and all image links are extracted and saved to a URL list file. Any links for YouTube and Vimeo are removed.

  5. The script iterates through this URL list and downloads the first [n]umber of available images. Up to 1,000 images can be requested. Up to 512 images can be downloaded in parallel (concurrently). If an image is unavailable, it's skipped and downloading continues until the required number of images have been downloaded.

  6. Optionally, a thumbnail gallery image is built using ImageMagick's montage into a PNG file (see below for examples).


#c5f015 Compatibility

googliser is fully supported on Manjaro & Ubuntu. Debian, Fedora Workstation and macOS may require some extra binaries. If you install it as per the installation notes above, all dependencies will be checked and installed.

If you prefer to install these manually:

Debian:

$ sudo apt install imagemagick

Fedora:

$ sudo yum install ImageMagick

macOS:

$ ruby -e "$(curl -fsSL git.io/get-brew)"
$ brew install coreutils ghostscript gnu-sed imagemagick gnu-getopt bash-completion

#c5f015 Outputs

These sample images have been scaled down for easier distribution.

$ googliser --phrase "puppies" --title 'Puppies!' --number 25 --upper-size 100000 -G

puppies

$ googliser -p "kittens" -T 'Kittens!' -n16 --gallery compact

puppies

$ googliser -n 380 -p "cows" -u 250000 -l 10000 -SG

cows


#c5f015 Usage

$ googliser -p [TEXT] -dEGhLqsSz [PARAMETERS] FILE,PATH,TEXT,INTEGER,PRESET ...

Allowable parameters are indicated with a hyphen then a single character or the long form with 2 hypens and full-text. Single character options can be concatenated. e.g. -dDEhLNqsSz. Parameters can be specified as follows:

Required:

-p [STRING] or --phrase [STRING]
The search-phrase to look for. Enclose whitespace in quotes e.g. --phrase "small brown cows"

Optional:

-a [PRESET] or --aspect-ratio [PRESET]
The shape of the image to download. Preset values are:

  • tall
  • square
  • wide
  • panoramic

-b [INTEGER] or --border-pixels [INTEGER]
Thickness of border surrounding the generated gallery image in pixels. Default is 30. Enter 0 for no border.

--colour [PRESET] or --color [PRESET]
The dominant image colour. Specify like --colour green. Default is 'any'. Preset values are:

  • any
  • full (colour images only)
  • black-white or bw
  • transparent or clear
  • red
  • orange
  • yellow
  • green
  • teal or cyan
  • blue
  • purple or magenta
  • pink
  • white
  • gray or grey
  • black
  • brown

-d or --debug
Put the debug log into the image sub-directory afterward. If selected, debugging output is appended to 'debug.log' in the image sub-directory. This file is always created in the temporary build directory. Great for discovering the external commands and parameters used!

-E or --exact-search
Perform an exact search only. Disregard Google suggestions and loose matches. Default is to perform a loose search.

--exclude-links [FILE]
Successfully downloaded image URLs will be saved into this file (if specified). Specify this file again for future searches to ensure the same links are not reused.

--exclude-words [STRING]
A comma separated list (without spaces) of words that you want to exclude from the search.

--format [PRESET]
Only download images encoded in this file format. Preset values are:

  • jpg
  • png
  • gif
  • bmp
  • svg
  • webp
  • ico
  • craw

-G
Create a thumbnail gallery.

--gallery=background-trans
Create a thumbnail gallery with a transparent background.

--gallery=compact
Create a thumbnail gallery in 'condensed' mode. No padding between each thumbnail. More efficient but images are cropped. The default (non-condensed) leaves some space between each thumbnail and each image retains it's original aspect-ratio.

--gallery=delete-after
Create a thumbnail gallery, then delete the downloaded images. Default is to retain these image files.

-h or --help
Display the complete parameter list.

--input-links [FILE]
Put a list of URLs in a text file then specify the file here. googliser will attempt to download the target of each URL. A Google search will not be performed. Images will downloaded into the specified output-path, or a path derived from a provided phrase or gallery title.

-i [FILE] or --input-phrases [FILE]
Put your search phrases into a text file then specify the file here. googliser will download images matching each phrase in the file, ignoring any line starting with a #. One phrase per line.

-l [INTEGER] or --lower-size [INTEGER]
Only download image files larger than this many bytes. Some servers do not report a byte file-size, so these will be downloaded anyway and checked afterward (unless --skip-no-size is specified). Default is 2,000 bytes. This setting is useful for skipping files sent by servers that claim to have a JPG, but send HTML instead.

-L or --links-only
Only get image file URLs, don't download any images. Default is to compile a list of image file URLs, then download them.

-m [PRESET] or --minimum-pixels [PRESET]
Only download images with at least this many pixels. Preset values are:

  • qsvga (400 x 300)
  • vga (640 x 480)
  • svga (800 x 600)
  • xga (1024 x 768)
  • 2mp (1600 x 1200)
  • 4mp (2272 x 1704)
  • 6mp (2816 x 2112)
  • 8mp (3264 x 2448)
  • 10mp (3648 x 2736)
  • 12mp (4096 x 3072)
  • 15mp (4480 x 3360)
  • 20mp (5120 x 3840)
  • 40mp (7216 x 5412)
  • 70mp (9600 x 7200)
  • large
  • medium
  • icon

-n [INTEGER] or --number [INTEGER]
Number of images to download. Default is 36. Maximum is 1,000.

--no-colour or --no-color
Runtime display in bland, uncoloured text. Default will brighten your day. :)

-o [PATH] or --output [PATH]
The output directory. If unspecified, the search phrase is used. Enclose whitespace in quotes.

-P [INTEGER] or --parallel [INTEGER]
How many parallel image downloads? Default is 64. Maximum is 512. Use 0 for maximum.

-q or --quiet
Suppress stdout. stderr is still shown.

--random
Download a single random image. Use -n --number to set the size of the image pool to pick a random image from.

-R [PRESET] or --recent [PRESET]
Only get images published this far back in time. Default is 'any'. Preset values are:

  • any
  • hour
  • day
  • week
  • month
  • year

--reindex-rename
Downloaded image files are reindexed and renamed into a contiguous block. Note: this breaks the 1:1 relationship between URLs and downloaded file names.

-r [INTEGER] or --retries [INTEGER]
Number of download retries for each image. Default is 3. Maximum is 100.

--safesearch-off
Disable Google's SafeSearch content-filtering. Default is enabled.

-s or --save-links
Put the URL results file into the image sub-directory afterward. If selected, the URL list will be found in 'download.links.list' in the image sub-directory. This file is always created in the temporary build directory.

--sites [STRING]
A comma separated list (without spaces) of sites or domains from which you want to search the images.

-S or --skip-no-size
Some servers do not report a byte file-size, so this parameter will ensure these image files are not downloaded. Specifying this will speed up downloading but will generate more failures.

--thumbnails [STRING]
Specify the maximum dimensions of thumbnails used in the gallery image. Width-by-height in pixels. Default is 400x400. If also using condensed-mode -C --condensed, this setting determines the size and shape of each thumbnail. Specify like --thumbnails 200x150.

-t [INTEGER] or --timeout [INTEGER]
Number of seconds before the downloader stops trying to get each image. Default is 30. Maximum is 600 (10 minutes).

-T [STRING] or --title [STRING]
Specify a custom title for the gallery. Default is to use the search-phrase. To create a gallery with no title, specify --title none. Enclose whitespace in single or double-quotes according to taste. e.g. --title 'This is what cows look like!'

--type [PRESET]
Image type to download. Preset values are:

  • face
  • photo
  • clipart
  • lineart
  • animated

-u [INTEGER] or --upper-size [INTEGER]
Only download image files smaller than this many bytes. Some servers do not report a byte file-size, so these will be downloaded anyway and checked afterward (unless --skip-no-size is specified). Default is 200,000 bytes.

--usage-rights [PRESET]
Usage rights. Preset values are:

  • reuse (labeled for reuse)
  • reuse-with-mod (labeled for reuse with modification)
  • noncomm-reuse (labeled for noncommercial reuse)
  • noncomm-reuse-with-mod (labeled for noncommercial reuse with modification)

-z or --lightning
Lightning mode! For those who really can't wait! Lightning mode downloads images even faster by using an optimized set of parameters: timeouts are reduced to 1 second, don't retry any download, skip any image when the server won't tell us how big it is, download up to 512 images at the same time, and don't create a gallery afterward.

Basic Usage Examples:

Want to see a hundred images of yellow cars?

$ googliser -p cars -n 100 --colour yellow

How about 250 images of kittens?

$ googliser --number 250 --phrase kittens

Advanced Usage Examples:

$ googliser --number 56 --phrase "fish" --upper-size 50000 --lower-size 2000 --debug

This will download the first 56 available images for the search-phrase "fish" but only if the image files are between 2KB and 50KB in size and write a debug file.

$ googliser -n80 -p "storm clouds" -sG --debug

This will download the first 80 available images for the phrase "storm clouds", ensure both debug and URL links files are placed in the target directory and create a thumbnail gallery.

$ googliser -p "flags" --exclude-words "pole,waving" --sites "wikipedia.com"

This will download available images for the phrase "flags", while excluding the images that have words pole and waving associated with them and would return the images from wikipedia.com.


#c5f015 Return Values ($?)

0 : success!
1 : required external program unavailable.
2 : specified parameter incorrect - help shown.
3 : unable to create sub-directory for 'search-phrase'.
4 : could not get a list of search results from Google.
5 : image download ran out of images.
6 : thumbnail gallery build failed.
7 : unable to create a temporary build directory.
8 : Internet inaccessible.


#c5f015 Notes

  • I wrote this script so users don't need to obtain an API key from Google to download multiple images.

  • The downloader can use GNU Wget or cURL (if it's available).

  • To download 1,000 images, you need to be lucky enough for Google to find 1,000 results for your search term, and for those images to be available for download. I sometimes get more failed downloads than successful downloads (depending on what I'm searching for). In practice, I've never actually seen Google return 1,000 results. My best was about 986.

  • Only PNG, JPG (& JPEG), GIF, BMP, SVG, ICO, WebP and RAW files are available for download.

  • If identify (from ImageMagick) is installed, every downloaded file is checked to ensure that it is actually an image. Every file is renamed according to the image type determined by identify.

  • Every image that cannot be downloaded, or is outside the specified byte-size range, counts as a 'failure'. You'll see lots of failures rather quickly if you specify a narrow byte-size range. e.g. --lower-size 12000 --upper-size 13000.

  • Only the first image of a multi-image file (like an animated GIF) will be used for its gallery image.

  • Usually downloads run quite fast. This comes from having an over-abundance of image links to choose from. Sometimes though, if there are a limited number of image links remaining, downloads will appear to stall as all download processes are being held-up by servers that are not responding/slow to respond or are downloading large files. If you run low on image links, all remaining downloads can end up like this. This is perfectly normal behaviour and the problem will sort itself out. Grab a coffee.

  • The temporary build directory is /tmp/googliser.PID.UNIQ where PID is shown in the title of the script when it runs and UNIQ will be any 3 random alpha-numeric characters.

  • This script will need to be updated from time-to-time as Google periodically change their search results page-code. The latest copy can be found here.


#c5f015 Development Environment

  • Debian - 10.2 Buster 64b
  • GNU BASH - v5.0.3
  • GNU Wget - v1.20.1
  • GNU cURL - v7.64.0
  • GNU grep - v3.3
  • GNU sed - v4.7
  • ImageMagick - v6.9.10-23 Q16
  • Geany - v1.33
  • ReText - v7.0.4
  • Konsole - v18.04.0
  • KDE Development Platform - v5.54.0
  • QT - v5.11.3
  • Find Icons - script icon

and periodically tested on these platforms:

  • openSUSE - LEAP 42.1 64b
  • Ubuntu - 19.10 Desktop, 18.04.1 LTS
  • macOS - 10.15 Catalina, 10.14 Mojave, 10.13 High Sierra
  • Fedora - 31, 30, 28 Workstation
  • Mint - 19.1 Tessa XFCE
  • Manjaro - 18.0.2 XFCE

Suggestions / comments / bug reports / advice (are|is) most welcome. :) email me

googliser's People

Contributors

mbtech avatar stevemar avatar stevemart avatar teracow avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

googliser's Issues

Download images, even if there are not enough search hits found

Hey Dan,

I have another suggestion - I commonly run into the problem that googliser does not find sufficient images, and stops with an error message (!! unable to download enough Google search results).

Would it be possible to add the flag to download the images it can find - even if there are not enough? (I hope I'm not overlooking a flag).

Now I rerun the command a few times, until I guestimate the correct number (the number of hits found vary from run to run).

thanks
Mark

incorrent info

incorrect downloaded file info
parameter -n doesnt works

macOS 10.14.0 compatible

It works fine on macOS 10.14.0. I've only used it with --no-gallery.

But I do get:
googliser.sh: line 1155: 9255/0: division by 0 (error token is "0")

search results can be duplicated

Looks like Google can sometimes return more than one instance of an image URL. :(

Thinking out-loud, maybe the quickest way to deal with this and retain the original URL order is:

  1. sort URL list to temp list
  2. uniq -D on temp list
  3. remove any trailing dupes from the original URL list

prevent download of duplicates?

Hey - first of all - thanks! - excellent script!

I was wondering if, as an enhancement, it would make sense to maintain a database of already downloaded images, so that if you rerun a query (for example to get more images of the same query, or try a relelated query), the software does not re-download images, but either skips, or symlinks (in the case of a different output folder)?

Missing binary getopt for macOS Mojave

Using googliser on macOS Mojave 10.14.6 gave the following error:
./googliser.sh: line 3100: /usr/local/Cellar/gnu-getopt/2.34/bin/getopt: No such file or directory

Had to install the gnu-getopt binary to make it work.
That step is missing from the setup in the readme so I will do a pull request to add that.

Non-continuous suffixes

If I understand correctly, if the script fails to download an image, the integer suffix that would have been allocated to that image file is skipped. So in the end image names have suffixes that aren't continuous.

Does that serve a particular purpose?
Wouldn't it be better if the suffixes are continuous? So that it's easier to loop through the resulting image files.

Problem in downloading pictures

Dear Teracow,
I could not download any image using the script. I have downloaded the script in July and it was working, then back from holiday it did not work any more.
Even on simple use as
./googliser.sh --number 2 -p "cows" -d
I can not download any image.
I have attached the debug file for your convenience.
I believe that google has changed its search result page format.
All the best
mn
debug.txt

MacOS: parameters are ignored

Thanks for building this. But I can't get it to accept parameters on MacOS. Am I doing something wrong?

bash-3.2$ ./googliser.sh -p "kittens" -T 'Kittens!' -f0 -SC -n16
 googliser.sh - 2017-10-29 PID:[16796]

 !! search phrase (-p, --phrase) was unspecified

 use '-h' or '--help' to display parameter list.
bash-3.2$

MacOS: parameters are ignored

Hi, I got the same condition #13 . I can't get it to accept parameters on MacOS (10.13.4).
I ensure gnu-getopt is installed.
I used 2b33293.

I can not open help because googliser do not recognize arguments.

It's my env.

$brew list wget coreutils ghostscript gnu-sed gnu-getopt imagemagick
/usr/local/Cellar/wget/1.19.4_1/INSTALL_RECEIPT.json
/usr/local/Cellar/wget/1.19.4_1/bin/wget
/usr/local/Cellar/wget/1.19.4_1/.brew/wget.rb
/usr/local/Cellar/wget/1.19.4_1/ChangeLog
/usr/local/Cellar/wget/1.19.4_1/AUTHORS
/usr/local/Cellar/wget/1.19.4_1/README
/usr/local/Cellar/wget/1.19.4_1/COPYING
/usr/local/Cellar/wget/1.19.4_1/NEWS
/usr/local/Cellar/wget/1.19.4_1/.bottle/etc/wgetrc
/usr/local/Cellar/wget/1.19.4_1/share/man/man1/wget.1
/usr/local/Cellar/wget/1.19.4_1/share/locale/sl/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/sk/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/pl/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/vi/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/sv/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/ga/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/he/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/be/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/da/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/pt_BR/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/ja/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/el/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/it/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/ca/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/zh_TW/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/cs/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/ru/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/ro/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/zh_CN/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/pt/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/uk/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/sr/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/en_GB/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/gl/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/hr/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/hu/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/nl/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/bg/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/nb/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/de/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/fi/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/eo/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/id/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/fr/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/es/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/et/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/lt/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/eu/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/locale/tr/LC_MESSAGES/wget.mo
/usr/local/Cellar/wget/1.19.4_1/share/info/wget.info
/usr/local/Cellar/coreutils/8.29/INSTALL_RECEIPT.json
/usr/local/Cellar/coreutils/8.29/bin/gsha512sum
/usr/local/Cellar/coreutils/8.29/bin/gusers
/usr/local/Cellar/coreutils/8.29/bin/gprintenv
/usr/local/Cellar/coreutils/8.29/bin/gmknod
/usr/local/Cellar/coreutils/8.29/bin/gdd
/usr/local/Cellar/coreutils/8.29/bin/gtsort
/usr/local/Cellar/coreutils/8.29/bin/grealpath
/usr/local/Cellar/coreutils/8.29/bin/grmdir
/usr/local/Cellar/coreutils/8.29/bin/gfold
/usr/local/Cellar/coreutils/8.29/bin/gnl
/usr/local/Cellar/coreutils/8.29/bin/greadlink
/usr/local/Cellar/coreutils/8.29/bin/gshred
/usr/local/Cellar/coreutils/8.29/bin/gmv
/usr/local/Cellar/coreutils/8.29/bin/gmkdir
/usr/local/Cellar/coreutils/8.29/bin/gkill
/usr/local/Cellar/coreutils/8.29/bin/guniq
/usr/local/Cellar/coreutils/8.29/bin/gpr
/usr/local/Cellar/coreutils/8.29/bin/ghead
/usr/local/Cellar/coreutils/8.29/bin/glink
/usr/local/Cellar/coreutils/8.29/bin/gstat
/usr/local/Cellar/coreutils/8.29/bin/gmktemp
/usr/local/Cellar/coreutils/8.29/bin/gyes
/usr/local/Cellar/coreutils/8.29/bin/gsha1sum
/usr/local/Cellar/coreutils/8.29/bin/grm
/usr/local/Cellar/coreutils/8.29/bin/gsha256sum
/usr/local/Cellar/coreutils/8.29/bin/gfalse
/usr/local/Cellar/coreutils/8.29/bin/gwho
/usr/local/Cellar/coreutils/8.29/bin/gcut
/usr/local/Cellar/coreutils/8.29/bin/gvdir
/usr/local/Cellar/coreutils/8.29/bin/gdir
/usr/local/Cellar/coreutils/8.29/bin/gchmod
/usr/local/Cellar/coreutils/8.29/bin/gbase32
/usr/local/Cellar/coreutils/8.29/bin/ghostid
/usr/local/Cellar/coreutils/8.29/bin/gnohup
/usr/local/Cellar/coreutils/8.29/bin/gtr
/usr/local/Cellar/coreutils/8.29/bin/gdirname
/usr/local/Cellar/coreutils/8.29/bin/gsha384sum
/usr/local/Cellar/coreutils/8.29/bin/gchroot
/usr/local/Cellar/coreutils/8.29/bin/gpaste
/usr/local/Cellar/coreutils/8.29/bin/realpath
/usr/local/Cellar/coreutils/8.29/bin/gid
/usr/local/Cellar/coreutils/8.29/bin/gpinky
/usr/local/Cellar/coreutils/8.29/bin/genv
/usr/local/Cellar/coreutils/8.29/bin/gln
/usr/local/Cellar/coreutils/8.29/bin/gbasename
/usr/local/Cellar/coreutils/8.29/bin/gtruncate
/usr/local/Cellar/coreutils/8.29/bin/gcp
/usr/local/Cellar/coreutils/8.29/bin/gls
/usr/local/Cellar/coreutils/8.29/bin/gtrue
/usr/local/Cellar/coreutils/8.29/bin/gchown
/usr/local/Cellar/coreutils/8.29/bin/gsync
/usr/local/Cellar/coreutils/8.29/bin/guptime
/usr/local/Cellar/coreutils/8.29/bin/gsum
/usr/local/Cellar/coreutils/8.29/bin/gtac
/usr/local/Cellar/coreutils/8.29/bin/gexpand
/usr/local/Cellar/coreutils/8.29/bin/gruncon
/usr/local/Cellar/coreutils/8.29/bin/gpathchk
/usr/local/Cellar/coreutils/8.29/bin/gnice
/usr/local/Cellar/coreutils/8.29/bin/gecho
/usr/local/Cellar/coreutils/8.29/bin/gdu
/usr/local/Cellar/coreutils/8.29/bin/gb2sum
/usr/local/Cellar/coreutils/8.29/bin/gtouch
/usr/local/Cellar/coreutils/8.29/bin/gmkfifo
/usr/local/Cellar/coreutils/8.29/bin/gdf
/usr/local/Cellar/coreutils/8.29/bin/gjoin
/usr/local/Cellar/coreutils/8.29/bin/gtest
/usr/local/Cellar/coreutils/8.29/bin/gmd5sum
/usr/local/Cellar/coreutils/8.29/bin/gunexpand
/usr/local/Cellar/coreutils/8.29/bin/gsort
/usr/local/Cellar/coreutils/8.29/bin/gshuf
/usr/local/Cellar/coreutils/8.29/bin/gfmt
/usr/local/Cellar/coreutils/8.29/bin/gunlink
/usr/local/Cellar/coreutils/8.29/bin/gcsplit
/usr/local/Cellar/coreutils/8.29/bin/g[
/usr/local/Cellar/coreutils/8.29/bin/gwhoami
/usr/local/Cellar/coreutils/8.29/bin/gsplit
/usr/local/Cellar/coreutils/8.29/bin/gseq
/usr/local/Cellar/coreutils/8.29/bin/gdircolors
/usr/local/Cellar/coreutils/8.29/bin/ginstall
/usr/local/Cellar/coreutils/8.29/bin/gsha224sum
/usr/local/Cellar/coreutils/8.29/bin/gcomm
/usr/local/Cellar/coreutils/8.29/bin/gtty
/usr/local/Cellar/coreutils/8.29/bin/gcksum
/usr/local/Cellar/coreutils/8.29/bin/gexpr
/usr/local/Cellar/coreutils/8.29/bin/gbase64
/usr/local/Cellar/coreutils/8.29/bin/gwc
/usr/local/Cellar/coreutils/8.29/bin/gnproc
/usr/local/Cellar/coreutils/8.29/bin/gptx
/usr/local/Cellar/coreutils/8.29/bin/gtimeout
/usr/local/Cellar/coreutils/8.29/bin/gpwd
/usr/local/Cellar/coreutils/8.29/bin/gtail
/usr/local/Cellar/coreutils/8.29/bin/gchcon
/usr/local/Cellar/coreutils/8.29/bin/glogname
/usr/local/Cellar/coreutils/8.29/bin/guname
/usr/local/Cellar/coreutils/8.29/bin/gtee
/usr/local/Cellar/coreutils/8.29/bin/gstty
/usr/local/Cellar/coreutils/8.29/bin/gchgrp
/usr/local/Cellar/coreutils/8.29/bin/gcat
/usr/local/Cellar/coreutils/8.29/bin/ggroups
/usr/local/Cellar/coreutils/8.29/bin/gsleep
/usr/local/Cellar/coreutils/8.29/bin/gfactor
/usr/local/Cellar/coreutils/8.29/bin/god
/usr/local/Cellar/coreutils/8.29/bin/gprintf
/usr/local/Cellar/coreutils/8.29/bin/gstdbuf
/usr/local/Cellar/coreutils/8.29/bin/gnumfmt
/usr/local/Cellar/coreutils/8.29/bin/gdate
/usr/local/Cellar/coreutils/8.29/.brew/coreutils.rb
/usr/local/Cellar/coreutils/8.29/ChangeLog
/usr/local/Cellar/coreutils/8.29/AUTHORS
/usr/local/Cellar/coreutils/8.29/libexec/coreutils/libstdbuf.so
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/tee
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/md5sum
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/split
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/cat
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/shuf
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/mkfifo
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/pathchk
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/runcon
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/expand
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/tty
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/basename
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/install
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/nice
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/truncate
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/echo
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/du
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/ptx
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/join
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/df
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/pwd
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/test
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/csplit
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/sort
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/whoami
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/touch
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/unlink
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/b2sum
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/sleep
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/fmt
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/stty
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/logname
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/chgrp
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/printenv
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/seq
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/uname
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/sha224sum
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/od
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/date
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/base64
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/realpath
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/readlink
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/dircolors
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/timeout
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/tac
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/numfmt
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/wc
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/comm
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/nproc
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/expr
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/stdbuf
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/cksum
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/printf
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/groups
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/chcon
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/factor
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/tail
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/env
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/pr
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/head
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/kill
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/uniq
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/stat
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/link
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/sum
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/tsort
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/mknod
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/users
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/dd
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/who
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/sha1sum
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/mktemp
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/cut
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/sha256sum
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/dir
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/mkdir
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/nl
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/shred
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/fold
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/rmdir
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/sha384sum
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/mv
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/dirname
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/id
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/base32
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/pinky
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/ln
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/hostid
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/chroot
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/ls
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/true
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/cp
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/sync
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/yes
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/unexpand
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/chown
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/chmod
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/uptime
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/rm
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/vdir
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/false
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/sha512sum
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/[
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/tr
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/paste
/usr/local/Cellar/coreutils/8.29/libexec/gnubin/nohup
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/env.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/head.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/b2sum.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/realpath.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/csplit.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/hostid.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/pwd.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/nl.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/who.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/chroot.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/sleep.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/unlink.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/truncate.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/dircolors.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/mkdir.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/sha512sum.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/tty.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/readlink.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/uname.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/nproc.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/shuf.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/mktemp.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/runcon.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/chown.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/seq.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/false.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/pinky.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/install.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/mknod.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/chmod.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/tac.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/kill.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/base64.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/shred.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/sync.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/cut.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/sha256sum.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/ln.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/date.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/users.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/test.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/df.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/stat.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/mv.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/whoami.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/touch.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/expr.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/pr.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/comm.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/printenv.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/echo.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/id.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/yes.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/logname.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/rmdir.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/tr.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/expand.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/fmt.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/chgrp.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/tsort.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/unexpand.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/md5sum.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/sum.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/factor.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/base32.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/join.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/cp.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/cksum.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/tail.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/printf.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/paste.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/nohup.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/uptime.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/od.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/mkfifo.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/uniq.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/nice.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/fold.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/sha384sum.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/du.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/tee.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/ls.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/stty.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/cat.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/rm.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/chcon.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/timeout.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/link.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/dd.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/ptx.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/vdir.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/sort.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/dir.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/pathchk.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/basename.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/dirname.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/true.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/groups.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/wc.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/stdbuf.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/sha224sum.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/sha1sum.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/split.1
/usr/local/Cellar/coreutils/8.29/libexec/gnuman/man1/numfmt.1
/usr/local/Cellar/coreutils/8.29/README
/usr/local/Cellar/coreutils/8.29/TODO
/usr/local/Cellar/coreutils/8.29/COPYING
/usr/local/Cellar/coreutils/8.29/NEWS
/usr/local/Cellar/coreutils/8.29/share/man/man1/realpath.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gdirname.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gtail.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/god.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gpathchk.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gcksum.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gsha384sum.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gwhoami.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gdu.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gsha1sum.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gls.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gtsort.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gtee.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gjoin.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gfold.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gstty.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gsum.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/guniq.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gnice.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gpaste.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gexpand.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gbasename.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gcp.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gnohup.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gtimeout.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gsort.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gchcon.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gvdir.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/ghostid.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gcsplit.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gsha224sum.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/glink.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gdir.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gunlink.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gchroot.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gunexpand.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gwc.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/grm.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gmktemp.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gruncon.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gcat.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gtrue.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gsplit.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gdd.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gptx.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gbase64.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gseq.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gmkdir.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gtty.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gsleep.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gtac.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gsha512sum.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gb2sum.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/ghead.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/glogname.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gpinky.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gpwd.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gfalse.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gkill.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gsync.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gdircolors.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gshred.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gchmod.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/genv.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gmknod.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/guname.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gshuf.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gstdbuf.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gnumfmt.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gwho.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gprintenv.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gchown.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gnl.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gnproc.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/ggroups.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gid.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gbase32.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gfactor.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gusers.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gmd5sum.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gtruncate.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gtest.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gdate.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gpr.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gstat.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gtouch.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gfmt.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/grealpath.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gprintf.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/ginstall.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gtr.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gyes.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/grmdir.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gln.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/guptime.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gchgrp.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gcut.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gecho.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gsha256sum.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/greadlink.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gmkfifo.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gexpr.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gcomm.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gdf.1
/usr/local/Cellar/coreutils/8.29/share/man/man1/gmv.1
/usr/local/Cellar/coreutils/8.29/share/info/coreutils.info
/usr/local/Cellar/ghostscript/9.23/INSTALL_RECEIPT.json
/usr/local/Cellar/ghostscript/9.23/LICENSE
/usr/local/Cellar/ghostscript/9.23/bin/dvipdf
/usr/local/Cellar/ghostscript/9.23/bin/ps2ps
/usr/local/Cellar/ghostscript/9.23/bin/gs
/usr/local/Cellar/ghostscript/9.23/bin/ps2pdfwr
/usr/local/Cellar/ghostscript/9.23/bin/ps2pdf12
/usr/local/Cellar/ghostscript/9.23/bin/gsdj
/usr/local/Cellar/ghostscript/9.23/bin/pdf2dsc
/usr/local/Cellar/ghostscript/9.23/bin/ps2pdf14
/usr/local/Cellar/ghostscript/9.23/bin/gsnd
/usr/local/Cellar/ghostscript/9.23/bin/ps2pdf13
/usr/local/Cellar/ghostscript/9.23/bin/pphs
/usr/local/Cellar/ghostscript/9.23/bin/gsdj500
/usr/local/Cellar/ghostscript/9.23/bin/ps2ascii
/usr/local/Cellar/ghostscript/9.23/bin/ps2pdf
/usr/local/Cellar/ghostscript/9.23/bin/pf2afm
/usr/local/Cellar/ghostscript/9.23/bin/pfbtopfa
/usr/local/Cellar/ghostscript/9.23/bin/gslp
/usr/local/Cellar/ghostscript/9.23/bin/printafm
/usr/local/Cellar/ghostscript/9.23/bin/gsc
/usr/local/Cellar/ghostscript/9.23/bin/ps2ps2
/usr/local/Cellar/ghostscript/9.23/bin/gslj
/usr/local/Cellar/ghostscript/9.23/bin/ps2epsi
/usr/local/Cellar/ghostscript/9.23/bin/gsx
/usr/local/Cellar/ghostscript/9.23/bin/gsbj
/usr/local/Cellar/ghostscript/9.23/bin/unix-lpr.sh
/usr/local/Cellar/ghostscript/9.23/bin/pdf2ps
/usr/local/Cellar/ghostscript/9.23/bin/eps2eps
/usr/local/Cellar/ghostscript/9.23/bin/lprsetup.sh
/usr/local/Cellar/ghostscript/9.23/.brew/ghostscript.rb
/usr/local/Cellar/ghostscript/9.23/include/ghostscript/gdevdsp.h
/usr/local/Cellar/ghostscript/9.23/include/ghostscript/ierrors.h
/usr/local/Cellar/ghostscript/9.23/include/ghostscript/iapi.h
/usr/local/Cellar/ghostscript/9.23/include/ghostscript/gserrors.h
/usr/local/Cellar/ghostscript/9.23/lib/libgs.9.23.dylib
/usr/local/Cellar/ghostscript/9.23/lib/libgs.dylib
/usr/local/Cellar/ghostscript/9.23/lib/libgs.9.dylib
/usr/local/Cellar/ghostscript/9.23/share/man/man1/gsdj500.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/gsbj.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/gslj.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/pf2afm.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/ps2pdfwr.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/eps2eps.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/pfbtopfa.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/pdf2ps.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/ps2pdf12.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/gsnd.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/ps2pdf.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/printafm.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/ps2pdf13.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/gs.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/ps2ascii.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/gsdj.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/ps2epsi.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/ps2ps.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/ps2pdf14.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/gslp.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/pdf2dsc.1
/usr/local/Cellar/ghostscript/9.23/share/man/man1/dvipdf.1
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/iccprofiles/lab.icc
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/iccprofiles/default_rgb.icc
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/iccprofiles/gray_to_k.icc
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/iccprofiles/sgray.icc
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/iccprofiles/srgb.icc
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/iccprofiles/ps_cmyk.icc
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/iccprofiles/default_cmyk.icc
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/iccprofiles/default_gray.icc
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/iccprofiles/ps_gray.icc
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/iccprofiles/ps_rgb.icc
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/pfbtopfa.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc2_h.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/caption.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/acctest.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/viewps2a.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_ksb_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/lines.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/ras4.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/s400a1.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/cdj550.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/font2pcl.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/Stc670p.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc200_h.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/necp2x6.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc_h.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/zeroline.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gslp.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/PM760p.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/ras3.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc_l.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/Stc670pl.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/viewmiff.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/winmaps.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_wl2_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/viewcmyk.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc6000b1.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/cbjc600.ppd
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/dmp_site.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/PM760pl.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/PDFX_def.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/dnj750m.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bj8pa06n.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/ras1.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610a2.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/ht_ccsto.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_wl5_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc2s_h.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/cdj690ec.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/sharp.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/ps2epsi.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_kanji.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/cdj690.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/Stp720p.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc800ih.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610a3.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610a1.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gsnup.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/st640ihg.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/ras8m.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/sipixa6.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_lgo_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_l.xpm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc800p.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/necp2x.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_m.xpm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/image-qa.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc640p.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/ppath.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610a0.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610a4.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610b8.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/mkcidfm.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/viewpcx.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_m.xbm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc300.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/viewjpeg.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/Stc777pl.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc600p.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_l.xbm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc800pl.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bj8gc12f.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610a5.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610a7.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_ce_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc300bm.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/dmp_init.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/st640pg.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/printafm.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/jispaper.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stocht.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/pf2afm.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_il2_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/ghostpdf.ppd
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc300bl.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc1520h.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610a6.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610b7.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_s_m.xbm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/st640ih.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stcolor.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bj8oh06n.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_t.xbm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc500ph.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/Stp870p.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/Stc760pl.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stcinfo.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/PM820p.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610b6.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/Stc680pl.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610a8.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610b4.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_lgx_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_s.xpm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc740ih.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610b1.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/Stc680p.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/align.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_s.xbm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/traceimg.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stcany.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bj8ts06n.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/st640pl.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/Stp720pl.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/PDFA_def.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610b2.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/ps2ai.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_t.xpm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bj8hg12f.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/rollconv.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/Stc740pl.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/viewgif.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_l_m.xbm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc610b3.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/st640p.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bjc6000a1.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/docie.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bj8pp12f.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc600ih.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/Stc740p.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc500p.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/pphs.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/pdf2dsc.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/cbjc800.ppd
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/escp_24.src
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/dnj750c.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/prfont.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/st640plg.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/viewpbm.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/Stc760p.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_wl1_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/Stp870pl.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/cid2code.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/s400b1.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/Stc777p.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/bj8.rpd
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc600pl.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/uninfo.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_m_m.xbm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/ras32.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/PM820pl.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/traceop.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stcany_h.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/ras24.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/gs_t_m.xbm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/stc2.upp
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/lib/landscap.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/doc
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/Fontmap.GS
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_ciddc.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_mex_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_epsf.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_img.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_cspace.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/FAPIfontmap
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_std_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_dpnxt.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_fonts.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/cidfmap
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_init.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_mro_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_type1.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_statd.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_pdfwr.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_sym_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_agl.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_mgl_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_frsd.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_cidfm.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_cidtt.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_ttf.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_dps1.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_lev2.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_ll3.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_diskn.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_dps.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_l2img.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_trap.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/pdf_font.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/pdf_rbld.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_resmp.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_cidcm.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/FAPIconfig
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_fntem.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_res.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_dbt_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/Fontmap
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_il1_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/pdf_sec.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_btokn.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_cidfn.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_dps2.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/pdf_ops.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_cff.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/FAPIcidfmap
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_fapi.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/FCOfontmap-PCLPS2
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_dscp.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/pdf_main.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_pdf_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_typ32.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_setpd.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_cmap.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_cet.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_icc.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_wan_e.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/pdf_base.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/pdf_draw.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/xlatmap
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Init/gs_typ42.ps
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/IdiomSet/Pscript5Idiom
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/ColorSpace/sRGB
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/ColorSpace/TrivialCMYK
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/ColorSpace/DefaultRGB
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/ColorSpace/DefaultGray
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/ColorSpace/sGray
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/ColorSpace/DefaultCMYK
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/78-EUC-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/KSCms-UHC-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJISX0213-UTF32-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GBT-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS-UTF16-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Add-RKSJ-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniHojo-UTF32-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Identity-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/B5pc-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniCNS-UTF32-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/CNS1-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/EUC-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniGB-UTF16-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GBKp-EUC-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniHojo-UTF8-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GB-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/HKdlb-B5-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/KSC-EUC-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GBTpc-EUC-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-Japan1-4
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-Japan1-3
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS2004-UTF8-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/HKscs-B5-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Hojo-EUC-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/KSC-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/90ms-RKSJ-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniHojo-UCS2-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniKS-UTF16-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Katakana
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS-UCS2-HW-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Ext-RKSJ-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJISPro-UCS2-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/HKm314-B5-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS2004-UTF16-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-Japan1-2
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-Japan1-5
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-GB1-0
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniGB-UTF32-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/90msp-RKSJ-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS-UCS2-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/HKgccs-B5-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/HKdla-B5-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GB-EUC-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-CNS1-1
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Hankaku
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-CNS1-6
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-Korea1-0
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Add-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/RKSJ-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniGB-UCS2-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/78ms-RKSJ-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniCNS-UTF16-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GBT-EUC-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniCNS-UTF8-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniHojo-UTF16-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS-UTF32-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-GB1-1
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJISX02132004-UTF32-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-Korea1-1
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniKS-UCS2-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-CNS1-7
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Ext-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/CNS2-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-CNS1-0
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniGB-UTF8-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS2004-UTF32-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/ETen-B5-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/78-RKSJ-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GBK-EUC-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS-UTF8-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniKS-UTF32-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/B5-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/ETHK-B5-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/KSC-Johab-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/NWP-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/KSCms-UHC-HW-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/ETenms-B5-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/78-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniKS-UTF8-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/90pv-RKSJ-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/KSCpc-EUC-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GBpc-EUC-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniCNS-UCS2-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Hojo-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/CNS-EUC-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GBK2K-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/HKm471-B5-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/CNS1-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/83pv-RKSJ-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/B5pc-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniCNS-UTF32-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJISPro-UTF8-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Hiragana
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Identity-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniHojo-UTF8-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Identity-UTF16-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GBKp-EUC-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniGB-UTF16-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/EUC-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJISX0213-UTF32-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/KSCms-UHC-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/78-EUC-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/WP-Symbol
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniHojo-UTF32-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS-UTF16-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Add-RKSJ-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GBT-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniHojo-UCS2-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniKS-UTF16-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-Japan1-0
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/90ms-RKSJ-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/KSC-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Hojo-EUC-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/HKscs-B5-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/HKm314-B5-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS2004-UTF16-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Ext-RKSJ-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS-UCS2-HW-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/HKdlb-B5-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJISPro-UCS2-HW-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-Japan1-6
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GB-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-Japan1-1
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS2004-UTF8-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GBTpc-EUC-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/KSC-EUC-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-CNS1-5
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-CNS1-2
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS-UTF32-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GBT-EUC-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniCNS-UTF8-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniHojo-UTF16-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Roman
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-GB1-4
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/CNS2-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-GB1-3
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Ext-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniKS-UCS2-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJISX02132004-UTF32-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-Korea1-2
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GB-EUC-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/HKgccs-B5-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/HKdla-B5-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/90msp-RKSJ-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS-UCS2-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-CNS1-3
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniGB-UTF32-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-CNS1-4
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniCNS-UTF16-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Add-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/RKSJ-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniGB-UCS2-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/78ms-RKSJ-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-GB1-2
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-GB1-5
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/KSCpc-EUC-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniKS-UTF8-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/90pv-RKSJ-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/78-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/ETenms-B5-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/KSCms-UHC-HW-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Adobe-Japan2-0
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GBK2K-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/HKm471-B5-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/CNS-EUC-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GBpc-EUC-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniCNS-UCS2-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/Hojo-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/ETen-B5-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/78-RKSJ-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS2004-UTF32-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniGB-UTF8-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/NWP-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/KSC-Johab-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/B5-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/ETHK-B5-V
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniKS-UTF32-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/UniJIS-UTF8-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CMap/GBK-EUC-H
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Encoding/ExpertSubsetEncoding
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Encoding/ExpertEncoding
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Encoding/NotDefEncoding
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Encoding/CEEncoding
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Encoding/Wingdings
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Decoding/FCO_Unicode
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Decoding/StandardEncoding
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Decoding/FCO_Wingdings
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Decoding/Unicode
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Decoding/FCO_Symbol
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Decoding/Latin1
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Decoding/FCO_Dingbats
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CIDFSubst/DroidSansFallback.ttf
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/CIDFont/ArtifexBullet
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/SubstCID/Japan1-WMode
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/SubstCID/CNS1-WMode
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/SubstCID/Korea1-WMode
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/SubstCID/GB1-WMode
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusSans-Italic
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/URWBookman-DemiItalic
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusSansNarrow-Regular
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/C059-Bold
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/URWBookman-LightItalic
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/URWBookman-Demi
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusSansNarrow-Bold
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/URWBookman-Light
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/URWGothic-Book
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusRoman-Regular
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/C059-BdIta
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusSansNarrow-Oblique
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/C059-Roman
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/P052-BoldItalic
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/P052-Italic
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/StandardSymbolsPS
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusMonoPS-BoldItalic
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusRoman-Italic
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/C059-Italic
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/URWGothic-DemiOblique
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/P052-Roman
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusSansNarrow-BoldOblique
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusMonoPS-Bold
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusRoman-Bold
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/Z003-MediumItalic
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusSans-BoldItalic
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/P052-Bold
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusMonoPS-Regular
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusMonoPS-Italic
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/D050000L
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusSans-Regular
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusSans-Bold
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/URWGothic-BookOblique
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/NimbusRoman-BoldItalic
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/9.23/Resource/Font/URWGothic-Demi
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019004l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/a010033l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019024l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019003l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/z003034l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/fonts.scale
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019023l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019004l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/a010013l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019024l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019064l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/a010015l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/d050000l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/c059036l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/a010035l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019044l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019063l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019043l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019064l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/a010015l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/a010035l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/c059016l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/ChangeLog
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019064l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019043l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/a010015l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/c059016l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/fonts.dir
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/c059036l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/d050000l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/a010035l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019063l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019044l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019004l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/a010013l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019023l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/a010033l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019003l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/z003034l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/README.tweaks
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019023l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/a010013l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019003l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/z003034l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/a010033l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n019024l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/README
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/b018012l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/TODO
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n021004l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n021023l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/c059033l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n021024l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/b018032l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/b018015l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n021004l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/b018035l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/COPYING
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/b018012l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/c059013l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/b018032l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n021003l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n021024l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/p052024l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n022004l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n022023l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/p052003l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/s050000l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/p052023l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n022003l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n022024l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/p052004l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n022024l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/p052004l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/p052023l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n022003l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n022023l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/p052003l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/p052024l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n022004l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/s050000l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/b018012l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/b018035l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n021023l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/c059013l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n021024l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n021003l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/b018015l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n021023l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n021004l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/b018035l.pfm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/c059033l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/b018015l.pfb
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/b018032l.afm
/usr/local/Cellar/ghostscript/9.23/share/ghostscript/fonts/n021003l.pfm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/History3.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/gs-vms.hlp
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Commprod.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/pscet_status.txt
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/gs.css
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/History2.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Use.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Ps2epsi.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/History1.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/History5.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/index.html
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/thirdparty.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Details9.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Details8.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Unix-lpr.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/History4.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Issues.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Devices.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/History6.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/GS9_Color_Management.pdf
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/C-style.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/VectorDevices.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/subclass.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/History7.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/AUTHORS
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/sample_downscale_device.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/gsdoc.el
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/GS9_Color_Management.tex
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Make.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Install.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Details.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Projects.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/DLL.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/News.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Readme.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Deprecated.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/COPYING
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Release.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Psfiles.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Helpers.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Changes.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/API.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/SavedPages.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Source.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Drivers.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Language.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Hershey.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Lib.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/History9.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/WhatIsGS.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Develop.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/History8.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Ps-style.htm
/usr/local/Cellar/ghostscript/9.23/share/doc/ghostscript/9.23/Fonts.htm
/usr/local/Cellar/gnu-sed/4.5/INSTALL_RECEIPT.json
/usr/local/Cellar/gnu-sed/4.5/bin/gsed
/usr/local/Cellar/gnu-sed/4.5/.brew/gnu-sed.rb
/usr/local/Cellar/gnu-sed/4.5/ChangeLog
/usr/local/Cellar/gnu-sed/4.5/AUTHORS
/usr/local/Cellar/gnu-sed/4.5/libexec/gnubin/sed
/usr/local/Cellar/gnu-sed/4.5/libexec/gnuman/man1/sed.1
/usr/local/Cellar/gnu-sed/4.5/README
/usr/local/Cellar/gnu-sed/4.5/COPYING
/usr/local/Cellar/gnu-sed/4.5/NEWS
/usr/local/Cellar/gnu-sed/4.5/share/man/man1/gsed.1
/usr/local/Cellar/gnu-sed/4.5/share/info/sed.info
/usr/local/Cellar/gnu-getopt/1.1.6/INSTALL_RECEIPT.json
/usr/local/Cellar/gnu-getopt/1.1.6/bin/getopt
/usr/local/Cellar/gnu-getopt/1.1.6/.brew/gnu-getopt.rb
/usr/local/Cellar/gnu-getopt/1.1.6/Changelog
/usr/local/Cellar/gnu-getopt/1.1.6/README
/usr/local/Cellar/gnu-getopt/1.1.6/TODO
/usr/local/Cellar/gnu-getopt/1.1.6/COPYING
/usr/local/Cellar/gnu-getopt/1.1.6/share/man/man1/getopt.1
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/sl/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/pl/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/vi/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/sv/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/da/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/pt_BR/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/ja/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/it/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/ca/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/zh_TW/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/cs/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/ru/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/zh_CN/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/uk/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/gl/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/hr/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/hu/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/nl/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/de/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/fi/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/id/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/fr/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/es/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/et/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/eu/LC_MESSAGES/getopt.mo
/usr/local/Cellar/gnu-getopt/1.1.6/share/locale/tr/LC_MESSAGES/getopt.mo
/usr/local/Cellar/imagemagick/7.0.7-28/INSTALL_RECEIPT.json
/usr/local/Cellar/imagemagick/7.0.7-28/LICENSE
/usr/local/Cellar/imagemagick/7.0.7-28/bin/identify
/usr/local/Cellar/imagemagick/7.0.7-28/bin/montage
/usr/local/Cellar/imagemagick/7.0.7-28/bin/animate
/usr/local/Cellar/imagemagick/7.0.7-28/bin/MagickCore-config
/usr/local/Cellar/imagemagick/7.0.7-28/bin/MagickWand-config
/usr/local/Cellar/imagemagick/7.0.7-28/bin/Magick++-config
/usr/local/Cellar/imagemagick/7.0.7-28/bin/stream
/usr/local/Cellar/imagemagick/7.0.7-28/bin/mogrify
/usr/local/Cellar/imagemagick/7.0.7-28/bin/composite
/usr/local/Cellar/imagemagick/7.0.7-28/bin/compare
/usr/local/Cellar/imagemagick/7.0.7-28/bin/display
/usr/local/Cellar/imagemagick/7.0.7-28/bin/conjure
/usr/local/Cellar/imagemagick/7.0.7-28/bin/import
/usr/local/Cellar/imagemagick/7.0.7-28/bin/magick
/usr/local/Cellar/imagemagick/7.0.7-28/bin/magick-script
/usr/local/Cellar/imagemagick/7.0.7-28/bin/convert
/usr/local/Cellar/imagemagick/7.0.7-28/.brew/imagemagick.rb
/usr/local/Cellar/imagemagick/7.0.7-28/ChangeLog
/usr/local/Cellar/imagemagick/7.0.7-28/NEWS.txt
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/composite.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/animate.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/conjure.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/magick-cli.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/magick-property.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/stream.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/montage.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/mogrify.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/method-attribute.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/MagickWand.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/display.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/compare.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/drawing-wand.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/magick-image.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/wandcli.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/pixel-iterator.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/import.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/operation.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/convert.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/deprecate.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/wand-view.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/identify.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickWand/pixel-wand.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/type.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/gem.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/signature.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/distribute-cache.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/morphology.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/semaphore.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/quantize.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/resample.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/composite.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/delegate.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/enhance.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/shear.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/studio.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/animate.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/channel.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/mime.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/annotate.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/pixel.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/client.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/magic.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/version.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/profile.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/locale_.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/policy.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/distort.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/segment.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/fx.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/widget.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/opencl.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/splay-tree.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/feature.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/blob.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/layer.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/magick-config.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/string_.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/cache.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/matrix.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/color.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/magick.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/configure.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/vision.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/xwindow.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/stream.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/decorate.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/registry.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/montage.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/threshold.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/cipher.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/artifact.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/method-attribute.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/nt-base.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/resize.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/timer.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/linked-list.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/option.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/list.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/image-view.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/display.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/MagickCore.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/monitor.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/magick-baseconfig.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/xml-tree.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/compare.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/magick-type.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/pixel-accessor.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/log.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/static.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/compress.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/prepress.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/transform.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/memory_.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/cache-view.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/histogram.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/fourier.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/colorspace.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/token.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/statistic.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/effect.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/property.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/colormap.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/module.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/quantum.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/utility.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/attribute.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/deprecate.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/exception.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/identify.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/coder.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/random_.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/paint.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/image.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/resource_.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/draw.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/constitute.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/geometry.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/MagickCore/methods.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/CoderInfo.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/ResourceLimits.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/TypeMetric.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/Drawable.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/Blob.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/Include.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/Color.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/Montage.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/STL.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/SecurityPolicy.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/Pixels.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/Functions.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/Statistic.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/Exception.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/Image.h
/usr/local/Cellar/imagemagick/7.0.7-28/include/ImageMagick-7/Magick++/Geometry.h
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/quantization-table.xml
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/colors.xml
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/type-apple.xml
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/type-windows.xml
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/coder.xml
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/type.xml
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/policy.xml
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/delegates.xml
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/thresholds.xml
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/mime.xml
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/type-ghostscript.xml
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/log.xml
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/magic.xml
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/type-dejavu.xml
/usr/local/Cellar/imagemagick/7.0.7-28/etc/ImageMagick-7/type-urw-base35.xml
/usr/local/Cellar/imagemagick/7.0.7-28/NOTICE
/usr/local/Cellar/imagemagick/7.0.7-28/lib/libMagick++-7.Q16HDRI.a
/usr/local/Cellar/imagemagick/7.0.7-28/lib/libMagickCore-7.Q16HDRI.dylib
/usr/local/Cellar/imagemagick/7.0.7-28/lib/pkgconfig/ImageMagick-7.Q16HDRI.pc
/usr/local/Cellar/imagemagick/7.0.7-28/lib/pkgconfig/MagickWand.pc
/usr/local/Cellar/imagemagick/7.0.7-28/lib/pkgconfig/ImageMagick.pc
/usr/local/Cellar/imagemagick/7.0.7-28/lib/pkgconfig/Magick++-7.Q16HDRI.pc
/usr/local/Cellar/imagemagick/7.0.7-28/lib/pkgconfig/MagickWand-7.Q16HDRI.pc
/usr/local/Cellar/imagemagick/7.0.7-28/lib/pkgconfig/MagickCore.pc
/usr/local/Cellar/imagemagick/7.0.7-28/lib/pkgconfig/MagickCore-7.Q16HDRI.pc
/usr/local/Cellar/imagemagick/7.0.7-28/lib/pkgconfig/Magick++.pc
/usr/local/Cellar/imagemagick/7.0.7-28/lib/libMagickWand-7.Q16HDRI.dylib
/usr/local/Cellar/imagemagick/7.0.7-28/lib/libMagickWand-7.Q16HDRI.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/libMagickCore-7.Q16HDRI.a
/usr/local/Cellar/imagemagick/7.0.7-28/lib/libMagickWand-7.Q16HDRI.5.dylib
/usr/local/Cellar/imagemagick/7.0.7-28/lib/libMagickCore-7.Q16HDRI.5.dylib
/usr/local/Cellar/imagemagick/7.0.7-28/lib/libMagick++-7.Q16HDRI.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/libMagickCore-7.Q16HDRI.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/libMagickWand-7.Q16HDRI.a
/usr/local/Cellar/imagemagick/7.0.7-28/lib/libMagick++-7.Q16HDRI.dylib
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/filters/analyze.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/filters/analyze.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/bgr.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/bmp.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/cip.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mat.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/stegano.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/hdr.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pcd.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/xtrn.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/svg.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/dot.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pnm.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/rla.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/ycbcr.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/jnx.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/xcf.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/vips.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/vicar.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/hald.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/map.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/ps2.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/xpm.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/url.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/dpx.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/wbmp.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/clip.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/rle.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/png.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pcx.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pes.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/ttf.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mpc.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/info.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/caption.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/ps3.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/xbm.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/magick.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/json.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/dds.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/rgf.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pgx.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/dib.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/psd.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/dng.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/sgi.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/art.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mvg.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/inline.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/rgb.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/gray.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/debug.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/sct.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mac.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/label.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/aai.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/xc.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/msl.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/ps.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/meta.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/dpx.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/clip.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/wbmp.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/ps2.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/map.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/url.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/xpm.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/info.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mpc.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/ttf.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/caption.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pcx.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pes.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/png.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/rle.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/hdr.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pcd.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/cip.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/bmp.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/bgr.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/stegano.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mat.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/xcf.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/hald.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/vicar.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/vips.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pnm.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/dot.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/svg.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/xtrn.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/jnx.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/ycbcr.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/rla.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/gray.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/rgb.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/debug.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/inline.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/xc.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/aai.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/label.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mac.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/meta.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/ps.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/msl.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/sct.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/dds.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/json.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/dib.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pgx.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/rgf.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/ps3.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/magick.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/xbm.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/art.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mvg.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/psd.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/sgi.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/dng.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/histogram.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mono.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/tga.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mpeg.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/vid.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/xps.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/otb.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/matte.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/gradient.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/uyvy.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/sixel.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/null.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/dcm.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/gif.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pcl.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/icon.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/tile.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/html.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mtv.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/cut.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/cin.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pix.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pwp.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/hrz.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mask.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/jpeg.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/thumbnail.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/txt.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/yuv.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/tiff.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/braille.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/plasma.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pattern.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/scr.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pdf.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/ept.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/raw.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/fax.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pict.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/ipl.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pango.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mpr.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/avs.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/wpg.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/palm.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/uil.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/miff.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/tim.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/viff.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/cals.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/sun.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/fits.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/sfw.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pdb.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/cmyk.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/tile.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/icon.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/gif.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/dcm.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pcl.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pwp.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pix.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mask.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/hrz.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/cut.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mtv.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/html.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/cin.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mpeg.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/tga.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/vid.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/histogram.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mono.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/uyvy.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/null.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/sixel.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/otb.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/xps.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/gradient.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/matte.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/avs.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/mpr.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/uil.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/palm.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/wpg.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/ipl.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pict.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pango.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/sun.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/cals.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/cmyk.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pdb.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/sfw.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/fits.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/tim.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/miff.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/viff.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/yuv.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/txt.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/thumbnail.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/tiff.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/jpeg.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/ept.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pdf.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/scr.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/fax.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/raw.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/plasma.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/braille.la
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/modules-Q16HDRI/coders/pattern.so
/usr/local/Cellar/imagemagick/7.0.7-28/lib/ImageMagick/config-Q16HDRI/configure.xml
/usr/local/Cellar/imagemagick/7.0.7-28/lib/libMagick++-7.Q16HDRI.4.dylib
/usr/local/Cellar/imagemagick/7.0.7-28/README.txt
/usr/local/Cellar/imagemagick/7.0.7-28/AUTHORS.txt
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/composite.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/animate.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/conjure.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/magick-script.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/ImageMagick.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/stream.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/magick.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/MagickWand-config.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/mogrify.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/montage.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/display.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/compare.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/import.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/Magick++-config.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/identify.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/convert.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/man/man1/MagickCore-config.1
/usr/local/Cellar/imagemagick/7.0.7-28/share/ImageMagick-7/francais.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/ImageMagick-7/locale.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/ImageMagick-7/english.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/index.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/LICENSE
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/ChangeLog
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/sponsor.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/piechart.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/logo-sm-fx.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/difference.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/objects.gif
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/litecoin.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/montage.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/bluebells_lin.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/wand.ico
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/rose.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/rose.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/bluebells_clipped.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray20.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray35.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray25.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/hs_cross.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray30.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/bricks.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/left30.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/right45.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/verticalleftshingle.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray40.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray55.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/vertical.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/verticalbricks.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray80.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray95.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray85.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray90.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/right30.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/left45.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/hs_fdiagonal.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray45.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/horizontal.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray100.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray50.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/circles.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray75.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray60.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/fishscales.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/octagons.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/hs_horizontal.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/hs_vertical.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/horizontal3.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/checkerboard.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/horizontal2.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/hexagons.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray70.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/crosshatch30.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/verticalrightshingle.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/leftshingle.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray65.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray0.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray15.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/vertical2.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/rightshingle.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/vertical3.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/verticalsaw.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray5.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/horizontalsaw.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/gray10.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/smallfishscales.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/crosshatch45.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/crosshatch.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/hs_diagcross.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/patterns/hs_bdiagonal.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/reconstruct.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/wizard.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/wizard.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/red-circle.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/radial-gradient.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/fuzzy-magick.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/black.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/smile.gif
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/right.gif
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/affine.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/button.gif
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/background.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/t-shirt.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/examples.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/configure.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/sprite.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/bluebells_log.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/ImageMagick.ico
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/objects.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/script.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/objects.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/logo.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/logo.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/rose.pnm
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/cylinder_shaded.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/red-ball.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/wand.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/over.gif
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/gaussian-blur.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/bluebells_darker.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/atop.gif
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/rose-sigmoidal.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/frame.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/white-highlight.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/label.gif
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/arc.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/annotate.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/logo-sm.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/navy.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/imade_art2.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/logo-sm-flop.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/granite.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/images/rose-over.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/NEWS.txt
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/install-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/compare.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/conjure.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/jp2.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/favicon.ico
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/magick-vector-graphics.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/fx.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/index.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/subversion.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/changelog.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/porting.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/magick-wand.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/exception.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/command-line-tools.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/contact.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/mirror.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/openmp.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/quantize.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/license.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/support.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/sitemap.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/distribute-pixel-cache.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/advanced-unix-installation.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/binary-releases.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/gradient.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/command-line-processing.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/develop.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/mgk.c
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/quantization-table.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/colors.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/type-apple.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/type-windows.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/coder.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/type.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/policy.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/delegates.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/piechart.svg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/wand.c
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/incantation.msl
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/core.c
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/configure.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/thresholds.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/examples.pl
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/mime.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/type-ghostscript.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/analyze.c
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/log.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/contrast.c
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/piechart.mvg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/francais.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/magic.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/type-dejavu.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/locale.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/type-urw-base35.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/source/english.xml
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/connected-components.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/opencl.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/architecture.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/cipher.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/high-dynamic-range.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/montage.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/compose.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/command-line-options.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/advanced-windows-installation.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/motion-picture.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/magick-core.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/display.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/resources.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/webp.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/stream.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/history.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/ImageMagickObject.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/composite.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/import.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/color-management.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/links.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/wand.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/decorate.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/cache-view.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/colorspace.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/compare.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/profile.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/distort.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/signature.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/deprecate.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/segment.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/quantize.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/montage.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/animate.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/image.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/fx.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/distort.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/property.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/transform.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/magick-property.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/effect.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/magick-wand.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/feature.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/exception.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/segment.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/constitute.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/cache-view.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/quantize.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/pixel-wand.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/annotate.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/wand-view.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/module.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/list.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/paint.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/cache.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/transform.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/effect.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/registry.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/fourier.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/magick-deprecate.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/composite.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/resource.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/morphology.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/wand-view.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/cache.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/draw.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/cipher.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/statistic.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/attribute.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/montage.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/pixel-iterator.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/deprecate.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/cipher.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/mogrify.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/struct__MagickWand.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/animate_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_type.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_func_0x6e.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/montage_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/drawing-wand_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/magick-image_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/ftv2mnode.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/import_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/wandtest_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/struct__PixelIterator.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/tree.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x71.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_eval.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x67.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/pixel-iterator_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/doxygen.css
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/tab_l.gif
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/display_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/mogrify_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/import_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/magick-wand-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/identify_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/stream_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/ftv2pnode.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/index.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/functions.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/magick-image_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_func_0x63.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/conjure_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/dir_101f7ac0a894e32543a314e85b2e1524.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/pixel-iterator_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/convert_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/struct__DrawingWand.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/MagickWand_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/ftv2mlastnode.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/pixel-wand-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x70.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/montage_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_func_0x6d.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/MagickWand_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/annotated.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/struct__PixelWand.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_func_0x72.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_func_0x64.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/deprecate_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/compare_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/conjure_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/montage_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/tabs.css
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/magick__wand_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/convert_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/composite_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/pixel-iterator_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x6f.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/magick-wand-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/conjure_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/ftv2folderclosed.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/doxygen.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/magick-image_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/dirs.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x77.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/pixel-wand-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/functions_vars.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/stream_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x61.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/mogrify_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/drawing-wand_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/files.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/display_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_func_0x69.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/display_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/drawing-wand_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/import_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_func_0x73.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/animate_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/animate_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/ftv2link.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x6d.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/compare_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/pixel-wand_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_func_0x70.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_vars.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/mogrify_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/identify_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_enum.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/ftv2folderopen.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x63.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x75.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/drawtest_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/magick-wand_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/pixel-wand_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/deprecate_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/struct__DrawVTable.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_func.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/magick__wand_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/ftv2vertline.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x74.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/wand_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/main.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/composite_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x62.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/convert_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_func_0x67.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/classes.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x78.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/magick-property_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/struct__CompositeOptions.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/stream_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x6e.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/ftv2node.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x65.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/ftv2blank.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/magick-property_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/ftv2doc.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x73.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/ftv2lastnode.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/mogrify-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_defs.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x69.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/composite_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/tab_r.gif
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/wand_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/deprecate_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/pixel-wand_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/studio_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/magick-property_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/magick-wand_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/wand_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/mogrify-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/identify_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/studio_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x72.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/ftv2plastnode.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/compare_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/tab_b.gif
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/magick-wand_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickWand/globals_0x64.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/magick-deprecate.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/histogram.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/list.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/stream.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/shear.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/display.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/drawing-wand.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/channel.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/pixel-iterator.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/mime.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/magick-image.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/layer.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/colorspace.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/resize.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/stream.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/monitor.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/blob.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/composite.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/module.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/property.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/version.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/channel.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/statistic.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/display.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/color.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/magick-property.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/fx.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/draw.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/memory.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/image-view.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/profile.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/image-view.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/mime.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/signature_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/utility_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__Nodes.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/geometry_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x78.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x73.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x65.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/effect_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/animate_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x69.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/static_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x65.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_type.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x73.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x6e.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x6b.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/montage_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/enhance_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/ImageMagick_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/layer_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/threshold_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/ftv2mnode.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/tree.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x71.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/methods_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/xwindow_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/quantum-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x73.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/module_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x65.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/module_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/version_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x67.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/magick-config_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/token_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/decorate_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/color-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/exception_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/resize-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/quantize_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__Image.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/doxygen.css
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/prepress_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x69.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/list_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__RealPixelPacket.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/option_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x73.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x74.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/tab_l.gif
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x6b.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/display_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x6b.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x62.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x65.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/quantize_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x69.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/vms_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/segment_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ile3.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/monitor_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__TypeInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x69.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x6b.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__MontageInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/magick-type_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__GhostscriptVectors.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__DoublePixelPacket.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/xml-tree_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/pixel_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/memory_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__IntervalTree.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/identify_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x6a.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x6c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/resample_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__PointInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/nt-feature_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x68.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/stream_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/ftv2pnode.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/stream-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/mac_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/index.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/paint_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/coder_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__CoderInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__TypeMetric.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x63.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x64.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x68.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/cache-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__XMLTreeRoot.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x6c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/type_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x72.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x75.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x6c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x68.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/effect_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__PixelPacket.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/nt-base_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/mime-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/signature_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x66.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ExceptionInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/transform_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/quantum_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x64.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/MagickCore_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__dirdesc.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/ftv2mlastnode.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x72.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ResizeFilter.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/xwindow-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/statistic_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/magic_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/registry_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__RandomInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x70.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/image_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/montage_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/magic_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/nt-base_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__CacheInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x72.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/utility_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x6d.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__HashmapInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x6c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x68.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__RegistryInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__MagicInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x64.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x64.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__MagickPixelPacket.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/annotated.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/api_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x79.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/draw_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x72.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__PrimitiveInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/property_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ColorPacket.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/mime_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/client_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/property_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/fx-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/mime_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/client_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/quantum_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x72.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__NodeInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x75.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x79.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x6d.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/locale___8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/delegate_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x79.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/widget_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x6d.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/utility_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x63.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/matrix_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x64.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/cache-view_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/deprecate_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__GeometryInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__NTMEMORYSTATUSEX.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/compare_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__AffineMatrix.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/threshold_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/resource___8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/montage_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/image_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/magic_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/tabs.css
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x79.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/log_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/statistic_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/methods_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/registry_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__XImportInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__CacheMethods.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/composite_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x6d.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__DIR.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/semaphore_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x6f.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/shear_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/paint_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/quantum_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/nt-base_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/pixel-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x79.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x75.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x63.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/effect_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x68.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x63.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/resample_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x75.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/type_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x6d.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__MimeInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x6c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/ftv2folderclosed.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/doxygen.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ResourceInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/memory___8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/dirs.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/resource_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x77.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/paint_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__HandlerInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/xwindow-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/coder_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/stream_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/coder_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x75.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/resample_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/nt-feature_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x63.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/compress_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__FrameInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x61.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/xml-tree_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/pixel_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__RectangleInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x62.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/random___8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/segment_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x74.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/monitor_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/nt-feature_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/resize_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__DrawInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/display-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x76.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__MagickInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/files.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/segment_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/display_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/memory___8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x74.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__FxInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/exception-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ViewInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x6e.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x6b.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/composite-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x69.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__CubeInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/quantize_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x62.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/locale_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__Cluster.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/prepress_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x62.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/list_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/display_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x78.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/option_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x74.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/random___8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__TimerInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/token_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_func.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/color_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__XWidgetInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/api_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x6e.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/colorspace-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/module_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/resource___8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/version_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ColorInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__TokenInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x78.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x7a.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/enhance_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/layer_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/threshold_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x62.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x65.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/cache_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x78.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x6e.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ZeroCrossing.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__SplayTreeInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x73.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x74.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x78.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x6e.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/registry_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/animate_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/animate_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/signature_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__XMLTreeInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/ftv2link.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__QuantumState.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x6d.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/draw_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x6f.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__LongPixelPacket.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__QuantizeInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/image_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/compare_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__StringInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__GradientInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x79.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/annotate_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/matrix_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/string_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/semaphore_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/magick_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/stream-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x66.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x61.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/string___8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__Timer.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x6f.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/structHuffmanTable.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x6f.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x77.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x70.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ResampleFilter.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/mime_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_vars.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/token_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/structdirent.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/xwindow_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/identify_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_enum.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/exception-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/pixel-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/ftv2folderopen.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__Ascii85Info.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x63.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/timer_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__PathInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__EdgeInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x77.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/decorate_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ExtentPacket.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ElementReference.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/colorspace_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__NexusInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/artifact_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x75.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/transform_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/animate-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/display-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__PolygonInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ThresholdMap.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/mac_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__MedianListNode.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x6a.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x6f.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x77.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x61.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x61.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x77.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/shear_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/profile_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ErrorInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/cache-view_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/hashmap_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/layer_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__StopInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/dir_b44b349db36f8365f5234e57d3038770.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/blob-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/image-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x76.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/deprecate_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x7a.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/blob_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__PrimaryInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/blob-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ImageAttribute.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x76.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/distort_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/timer_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/cache-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/cache_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/fx_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/resize_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/delegate_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/colorspace_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/ftv2vertline.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/constitute_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x74.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/main.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/magick_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/blob_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x76.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/fx_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/log_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/compress_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/composite_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x62.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/PreRvIcccm_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/structSemaphoreInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/MagickCore_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x7a.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ChannelStatistics.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/draw-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__OptionInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/distort_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x76.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x71.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/ImageMagick_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ConfigureInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x67.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/splay-tree_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ImageInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/configure_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ModuleInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/classes.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/widget_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/vms_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__StreamInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/color_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/exception_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x78.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/static_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/composite-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/monitor_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/color-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x7a.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/annotate_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/artifact_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/magick-config_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__DataSegmentInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/stream_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/fx-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/gem_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x6e.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/geometry_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__EventInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/list_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/geometry_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/ftv2node.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x65.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ProfileInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/pixel_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x67.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/artifact_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/property_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/gem_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/ftv2blank.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/mime-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x71.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__QuantumInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__SegmentInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/annotate_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/ftv2doc.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/vms_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/widget_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/color_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/enhance_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/type_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/exception_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/static_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x73.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/configure_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/ftv2lastnode.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/locale___8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x71.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x67.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/gem_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__MedianSkipList.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/splay-tree_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x7a.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x67.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x71.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__LocaleInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/PreRvIcccm_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x69.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/statistic_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x6b.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/resize-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/random_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__BlobInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/log_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/compress_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/composite_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/tab_r.gif
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/blob_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__CacheView.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/option_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/constitute_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/hashmap_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/string___8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__EntryInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/cache_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/delegate_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/fx_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/resize_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/colorspace_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/xml-tree_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x67.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/magick-type_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/splay-tree_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/distort_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/deprecate_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x76.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x71.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/studio_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/hashmap_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/cache-view_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/image-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__DelegateInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x77.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/shear_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/profile_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x70.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/constitute_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_0x66.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/transform_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ChromaticityInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/prepress_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/mac_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ContributionInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/decorate_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/colorspace-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/animate-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__ElementInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/timer_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x6a.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x6c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x68.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/xwindow_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/identify_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/client_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x70.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/profile_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__MedianPixelList.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/studio_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__SignatureInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x66.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/functions_vars_0x66.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__LinkedListInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/quantum-private_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_func_0x6f.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_defs_0x70.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__DiversityPacket.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/semaphore_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/PreRvIcccm_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/magick_8h.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/draw-private_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/version_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x72.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/matrix_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__LogInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/struct__MemoryInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x70.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/ftv2plastnode.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/compare_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/tab_b.gif
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/draw_8c.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_eval_0x66.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/configure_8h-source.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/MagickCore/globals_0x64.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/blob.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/drawing-wand.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/Image++.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/magick.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/attribute.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/paint.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/resize.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/magick++-classes.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/magick-wand.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/shear.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/animate.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/memory.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/annotate.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/histogram.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/colormap.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/monitor.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/magick.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/magick-image.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/registry.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/mogrify.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/exception.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/resource.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/version.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/colormap.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/color.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/compare.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/image.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/feature.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/constitute.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/layer.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/decorate.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/enhance.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/enhance.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/morphology.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/signature.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/pixel-wand.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api/fourier.php
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/examples.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/download.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/search.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/api.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/animate.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/magick++.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/export.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/escape.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/magick.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/assets/magick.css
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/assets/magick.js
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/magick-script.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/mogrify.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/security-policy.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/convert.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/color.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/ImageMagick.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Future.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Install.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/montage-sample-framed.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Documentation.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Drawable.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/STL.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Image.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/thumbnail-anatomy-plain.fig
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Cache.fig
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/index.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/ChangeLog.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Cache.svg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Exception.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Drawable_example_1.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/CoderInfo.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Quantum.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/thumbnail-anatomy-plain.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Cache.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Pixels.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/thumbnail-sample-framed.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Montage.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/NEWS.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/magick.css
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/TypeMetric.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Enumerations.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/thumbnail-anatomy-framed.fig
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Image.fig
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/thumbnail-sample-plain.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/right_triangle.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Blob.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Image++.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/ImageDesign.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/README.txt
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/thumbnail-anatomy-framed.jpg
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/FormatCharacters.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Color.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Geometry.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Magick++.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/PixelPacket.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/Magick++/Image.png
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/perl-magick.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/identify.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/miff.html
/usr/local/Cellar/imagemagick/7.0.7-28/share/doc/ImageMagick-7/www/formats.html

Download img to active path

Hi!

Thanks for this script! I'm running macOS 14.10.0.

How do I download the image to the active folder path?
I played around with -o "./" etc. and had a look in the script, without modifying it, I don't know how to do it.

More features from the Advanced settings of Google image search

What do you think about adding more features from the advanced search settings of google image search?
I think it could be useful to have following options:

  1. Domains or sites to search the images from
  2. Exclusion phrases
  3. Safe search on/off
  4. Specifying preferred colours in the image

Wget on macOS pre-download size check returns extra info

? link (0012) pre-download image size estimate: 269390 (263K) [image/jpeg] Remote file exists. bytes

? link (0012) post-download image size: 269390 bytes (estimate of 269390 (263K) [image/jpeg] Remote file exists. bytes was incorrect)

"Too many failures" with latest googliser

Hello!
I'm excited to use your tool!

Running it on macOS 10.14.6 I get the following no matter what search term I use:

❯ ./googliser.sh --phrase "[[[[my search term]]]]]" --upper-size 100000 --lower-size 2000 -n 600
 googliser.sh v:190811 PID:31578

 -> processing query: "[[[[my search term]]]]]"
 -> searching Google: 10/10 result groups downloaded: (640 results)
 -> acquiring images: 0/600 downloaded and 45/40 failed: (100%) Too many failures!
 -> building gallery: failed!

 !! unable to build thumbnail gallery

 -> All done! (with errors)

Let me know whatever else would be useful information to share, if there is a verbose mode or a log or what have you!

Linking the output image-name and the download.links.list

Hi again,

I have two questions:
a) I was wondering if it is possible to link the line number in download.links.list file and the saved image name. For e.g the image name can correspond to the line num in download.links.list file. The other way round is to redownload with the download.links.list file and establish the correspondence, but this would involve downloading twice.

b) I noticed even with the -s flag sometimes I do not have download.links.list file in the img sub dir. Any known reasons?

Googliser not responding

Hi All,

My googliser stopped responding yesterday. The end of the debug file says this:

? result group (00) $wget_list_cmd: 'wget --quiet --timeout=15 --tries=3 "https://www.google.com/search?&tbm=isch&nfpr=1&q=El+loco+Gibran+Jalil+Gibran+1996&hl=en&site=imghp&ijn=0&start=0" --user-agent 'Mozilla/5.0 (X11; Linux x86_64; rv:50.0) Gecko/20100101 Firefox/50.0' --output-document "/tmp/googliser.65427.j3l/results.page.html.0"'
$ result group (00) download: 'success!'
\ [ParseResults]: 'entry'
? $result_count: '       0'
/ [ParseResults]: 'exit'
T [DownloadResultGroups] elapsed time: '00h:00m:01s'
/ [DownloadResultGroups]: 'exit'
~ $fail_limit too high so set as $result_count: '       0'
~ $images_required too high so set as $result_count: '       0'
= zero results returned? Wow...: 'can't continue'
T [googliser.sh] elapsed time: '00h:00m:01s'
< finished: 'sábado, 10 de junio de 2017, 17:07:47 CEST'

I think the problem is about parsing. Do you have issues as well?

N.

Original File Names

Hello,

I think it would be a great feature if it was possible to save the original file names, Instead of having them all renamed.

Thanks

couldn't download Google search results

Thank you for writing and sharing this very helpful script.
I had previously used this script few months back, it worked fine.

But now, no matter what phrase I use, I always get this error. I am using your latest script. Please help

./googliser.sh -p "cats"

` googliser.sh - 2017-12-17 PID:[26406]

-> processing query: "cats"
-> searching Google: 0/10 result groups downloaded. No results!
!! couldn't download Google search results

-> All done! (with errors)
`

No Results! after about 100 loops

I'm attempting your (marvelous) script over 1000 times, but after about a hundred loops, I get the "No Results!" message for every subsequent search in the loop. Afterwards, googliser shows "No Results!" for any future searches.

I currently cannot use googliser at all as I ran it through the loop, and I'm not sure how to reset it. Restarting my computer does not reset it, but it has been reset before and I don't know why.

Automating installation

I have written a script for myself to install OS-specific googliser's dependencies, download googliser, add it to the PATH (so that it is accessible from anywhere) and create an alias 'googliser' for it.

As as user you would only have to do (at least theoratically):
curl <url of the install script> && chmod +x install.sh && . install.sh
and that's it.

I have tested the script on macOS Mojavae and Ubuntu 18.04.2 LTS but it should work on Debian as well.

I can do a pull request if that's something you want to add.

script never ending

Hello !

The script looks great, but I can't achieve downloading one image. The script just begins, and do... nothing

googliser.sh - v1.23 (2016-09-12) PID:[2653]
-> searching Google: 0/10 result groups downloaded.

I have to stop it myself

I'm on manjaro linux. Do we have to enable something on google or something ?

Cheers

Progress display inaccurate with large parallel downloads

We can end up with more images than requested. This only began when running a large number of parallel downloads (i.e. 64 ).

Seems this can also occur when requesting a small number of images with a large number of parallel downloads. This looks like a race-condition.

RFC: considering removing some user options

Hey all. :)

Because it works so well, I've made --race a default action for now, and I'm looking at removing it as a user-option. This means image download numbers will nearly always over-run and need to be trimmed back, but it's turned-out to be a really fast way of getting images.

Also I'd like to remove --always-download and make it the default action.

And remove any need for the user to specify failure-limits via --failures. Unlimited download failures should always be allowed (I can't think of a reason to limit this).

Removing these options will cause a runtime error "invalid arguments" for anyone still using them.

Thoughts please?

"No results!"

Yes, it looks like Google may have changed their page-code again (which they do from time-to-time).

I'll push a fix as soon as I get some time. :D

Set size of images

Hi!, i really like this app (:D), i would like can set the minimum size of the images, i think can be a great feature here, testing little that data is set in the link for example for size >= 720p it add &tbs=isz:lt,islt:xga to the link.

I think this data can be recollected from a image test from google, maybe something a miniscript for that?

Thx. Cya.

Option to specify image format

Create an option that allows user to select one of the few preset options that are provided by Google images regarding image file format. Flag option could be --format

progress totals can go negative when specifying '-A' and large '-n'

Actually, it's worse. Both successful and failed totals are wrong.

googliser -p '<usual test phrase>' --no-safesearch -SNA -n 250

in-progress:

-> acquiring images: 249/219 downloaded, 1/64 are in progress and 31/-217 have failed:

finalised:

-> acquiring images: 250/219 downloaded and 31/-218 failed: (11%) 

... with usual test phrase.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.