aboutsummaryrefslogtreecommitdiff
path: root/math/py-matplotlib
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2012-06-24 15:14:03 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2012-06-24 15:14:03 +0000
commitea1159c9e96f18abd9f5bd1535879cf613b8ca4c (patch)
tree0c106a99b7d44453c7efc0c81bdcb4cb7826eb74 /math/py-matplotlib
parent7c4c62bc985ad2951e6a53b024e61116d4eaf637 (diff)
downloadports-ea1159c9e96f18abd9f5bd1535879cf613b8ca4c.tar.gz
ports-ea1159c9e96f18abd9f5bd1535879cf613b8ca4c.zip
Notes
Diffstat (limited to 'math/py-matplotlib')
-rw-r--r--math/py-matplotlib/Makefile11
-rw-r--r--math/py-matplotlib/distinfo4
-rw-r--r--math/py-matplotlib/files/patch-setupext.py42
-rw-r--r--math/py-matplotlib/pkg-plist1289
4 files changed, 1123 insertions, 223 deletions
diff --git a/math/py-matplotlib/Makefile b/math/py-matplotlib/Makefile
index 7c71f3f0a82a..64e941a57a29 100644
--- a/math/py-matplotlib/Makefile
+++ b/math/py-matplotlib/Makefile
@@ -7,8 +7,7 @@
#
PORTNAME= matplotlib
-PORTVERSION= 1.0.1
-PORTREVISION= 4
+PORTVERSION= 1.1.0
CATEGORIES= math python
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -18,12 +17,10 @@ COMMENT= A plotting library uses a syntax familiar to matlab users
BUILD_DEPENDS= ${PYNUMPY} \
${PYTHON_PKGNAMEPREFIX}dateutil>=1.4:${PORTSDIR}/devel/py-dateutil \
- ${PYTHON_PKGNAMEPREFIX}pytz>0:${PORTSDIR}/devel/py-pytz
-LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \
+ ${PYTHON_PKGNAMEPREFIX}pytz>=0:${PORTSDIR}/devel/py-pytz
+LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 \
png15:${PORTSDIR}/graphics/png
-RUN_DEPENDS= ${PYNUMPY} \
- ${PYTHON_PKGNAMEPREFIX}dateutil>=1.4:${PORTSDIR}/devel/py-dateutil \
- ${PYTHON_PKGNAMEPREFIX}pytz>0:${PORTSDIR}/devel/py-pytz
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PYTHON= 2.6-2.7
USE_PYDISTUTILS=yes
diff --git a/math/py-matplotlib/distinfo b/math/py-matplotlib/distinfo
index ae18924787d6..3f1db3393e17 100644
--- a/math/py-matplotlib/distinfo
+++ b/math/py-matplotlib/distinfo
@@ -1,2 +1,2 @@
-SHA256 (matplotlib-1.0.1.tar.gz) = 83bc6377373b3f34b18eac1883c27f3f381f5c9b9c422b4d85c91e217a947af6
-SIZE (matplotlib-1.0.1.tar.gz) = 13285166
+SHA256 (matplotlib-1.1.0.tar.gz) = be37e1d86c65ecacae6683f8805e051e9904e5f2e02bf2b7a34262c46a6d06a7
+SIZE (matplotlib-1.1.0.tar.gz) = 35842643
diff --git a/math/py-matplotlib/files/patch-setupext.py b/math/py-matplotlib/files/patch-setupext.py
index 8da1504053d5..776718f86c51 100644
--- a/math/py-matplotlib/files/patch-setupext.py
+++ b/math/py-matplotlib/files/patch-setupext.py
@@ -1,6 +1,6 @@
---- setupext.py.orig 2010-07-07 05:41:55.000000000 +0400
-+++ setupext.py 2011-10-16 18:49:43.000000000 +0400
-@@ -68,6 +68,10 @@
+--- setupext.py.orig 2011-10-06 15:50:23.000000000 +0100
++++ setupext.py 2012-03-22 23:29:06.881660702 +0000
+@@ -70,6 +70,10 @@
'freebsd4' : ['/usr/local', '/usr'],
'freebsd5' : ['/usr/local', '/usr'],
'freebsd6' : ['/usr/local', '/usr'],
@@ -11,36 +11,16 @@
'sunos5' : [os.getenv('MPLIB_BASE') or '/usr/local',],
'gnukfreebsd5' : ['/usr/local', '/usr'],
'gnukfreebsd6' : ['/usr/local', '/usr'],
-@@ -789,7 +793,7 @@
- module.libraries.extend(wxlibs)
- return
-
-- get_pkgconfig(module, '', flags='--cppflags --libs', pkg_config_exec='wx-config')
-+ get_pkgconfig(module, '', flags='--cppflags --libs', pkg_config_exec=wxconfig)
-
- # Make sure you use the Tk version given by Tkinter.TkVersion
- # or else you'll build for a wrong version of the Tcl
-@@ -828,8 +832,12 @@
- gotit = False
-
- if gotit:
-+ try:
-+ tk_v = Tkinter.__version__.split()[-2]
-+ except (AttributeError, IndexError):
-+ tk_v = 'version not identified'
- print_status("Tkinter", "Tkinter: %s, Tk: %s, Tcl: %s" %
-- (Tkinter.__version__.split()[-2], Tkinter.TkVersion, Tkinter.TclVersion))
-+ (tk_v, Tkinter.TkVersion, Tkinter.TclVersion))
- else:
- print_status("Tkinter", "no")
- if explanation is not None:
-@@ -1092,9 +1100,9 @@
+@@ -1018,9 +1022,12 @@
# Add final versions of directories and libraries to module lists
- tcl_lib, tcl_inc, tk_lib, tk_inc = result
-- module.include_dirs.extend([tcl_inc, tk_inc])
-- module.library_dirs.extend([tcl_lib, tk_lib])
-- module.libraries.extend(['tk' + tk_ver, 'tcl' + tk_ver])
+ tcl_lib_dir, tcl_inc_dir, tcl_lib, tk_lib_dir, tk_inc_dir, tk_lib = result
+- module.include_dirs.extend([tcl_inc_dir, tk_inc_dir])
+- module.library_dirs.extend([tcl_lib_dir, tk_lib_dir])
+- module.libraries.extend([tcl_lib, tk_lib])
++ #module.include_dirs.extend([tcl_inc_dir, tk_inc_dir])
++ #module.library_dirs.extend([tcl_lib_dir, tk_lib_dir])
++ #module.libraries.extend([tcl_lib, tk_lib])
+ module.include_dirs.extend(["/usr/local/include/tcl8.5", "/usr/local/include/tk8.5"])
+ module.library_dirs.extend(["/usr/local/lib/tcl8.5", "/usr/local/lib/tk8.5"])
+ module.libraries.extend(['tk' + "85", 'tcl' + "85"])
diff --git a/math/py-matplotlib/pkg-plist b/math/py-matplotlib/pkg-plist
index 0fb411b2980d..0aee7b15fab7 100644
--- a/math/py-matplotlib/pkg-plist
+++ b/math/py-matplotlib/pkg-plist
@@ -19,6 +19,9 @@
%%PYTHON_SITELIBDIR%%/matplotlib/afm.py
%%PYTHON_SITELIBDIR%%/matplotlib/afm.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/afm.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/animation.py
+%%PYTHON_SITELIBDIR%%/matplotlib/animation.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/animation.pyo
%%PYTHON_SITELIBDIR%%/matplotlib/artist.py
%%PYTHON_SITELIBDIR%%/matplotlib/artist.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/artist.pyo
@@ -34,15 +37,6 @@
%%PYTHON_SITELIBDIR%%/matplotlib/backends/Matplotlib.nib/classes.nib
%%PYTHON_SITELIBDIR%%/matplotlib/backends/Matplotlib.nib/info.nib
%%PYTHON_SITELIBDIR%%/matplotlib/backends/Matplotlib.nib/keyedobjects.nib
-%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/__init__.py
-%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/__init__.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/__init__.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/figureoptions.py
-%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/figureoptions.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/figureoptions.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/formlayout.py
-%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/formlayout.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/formlayout.pyo
%%PYTHON_SITELIBDIR%%/matplotlib/backends/__init__.py
%%PYTHON_SITELIBDIR%%/matplotlib/backends/__init__.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/backends/__init__.pyo
@@ -116,6 +110,18 @@
%%PYTHON_SITELIBDIR%%/matplotlib/backends/backend_wxagg.py
%%PYTHON_SITELIBDIR%%/matplotlib/backends/backend_wxagg.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/backends/backend_wxagg.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_compat.py
+%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_compat.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_compat.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/__init__.py
+%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/__init__.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/__init__.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/figureoptions.py
+%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/figureoptions.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/figureoptions.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/formlayout.py
+%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/formlayout.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor/formlayout.pyo
%%PYTHON_SITELIBDIR%%/matplotlib/backends/tkagg.py
%%PYTHON_SITELIBDIR%%/matplotlib/backends/tkagg.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/backends/tkagg.pyo
@@ -143,6 +149,9 @@
%%PYTHON_SITELIBDIR%%/matplotlib/colors.py
%%PYTHON_SITELIBDIR%%/matplotlib/colors.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/colors.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/container.py
+%%PYTHON_SITELIBDIR%%/matplotlib/container.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/container.pyo
%%PYTHON_SITELIBDIR%%/matplotlib/contour.py
%%PYTHON_SITELIBDIR%%/matplotlib/contour.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/contour.pyo
@@ -192,9 +201,15 @@
%%PYTHON_SITELIBDIR%%/matplotlib/legend.py
%%PYTHON_SITELIBDIR%%/matplotlib/legend.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/legend.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/legend_handler.py
+%%PYTHON_SITELIBDIR%%/matplotlib/legend_handler.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/legend_handler.pyo
%%PYTHON_SITELIBDIR%%/matplotlib/lines.py
%%PYTHON_SITELIBDIR%%/matplotlib/lines.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/lines.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/markers.py
+%%PYTHON_SITELIBDIR%%/matplotlib/markers.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/markers.pyo
%%PYTHON_SITELIBDIR%%/matplotlib/mathtext.py
%%PYTHON_SITELIBDIR%%/matplotlib/mathtext.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/mathtext.pyo
@@ -359,34 +374,10 @@
%%PYTHON_SITELIBDIR%%/matplotlib/mpl.py
%%PYTHON_SITELIBDIR%%/matplotlib/mpl.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/mpl.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/__init__.py
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/__init__.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/__init__.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/_sp_imports.py
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/_sp_imports.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/_sp_imports.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/fft/__init__.py
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/fft/__init__.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/fft/__init__.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/linear_algebra/__init__.py
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/linear_algebra/__init__.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/linear_algebra/__init__.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/ma/__init__.py
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/ma/__init__.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/ma/__init__.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/mlab/__init__.py
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/mlab/__init__.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/mlab/__init__.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/random_array/__init__.py
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/random_array/__init__.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/numerix/random_array/__init__.pyo
%%PYTHON_SITELIBDIR%%/matplotlib/nxutils.so
%%PYTHON_SITELIBDIR%%/matplotlib/offsetbox.py
%%PYTHON_SITELIBDIR%%/matplotlib/offsetbox.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/offsetbox.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/pcolormesh.pdf
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/pcolormesh.png
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/pcolormesh.svg
%%PYTHON_SITELIBDIR%%/matplotlib/patches.py
%%PYTHON_SITELIBDIR%%/matplotlib/patches.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/patches.pyo
@@ -420,6 +411,9 @@
%%PYTHON_SITELIBDIR%%/matplotlib/rcsetup.py
%%PYTHON_SITELIBDIR%%/matplotlib/rcsetup.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/rcsetup.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/sankey.py
+%%PYTHON_SITELIBDIR%%/matplotlib/sankey.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/sankey.pyo
%%PYTHON_SITELIBDIR%%/matplotlib/scale.py
%%PYTHON_SITELIBDIR%%/matplotlib/scale.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/scale.pyo
@@ -429,9 +423,6 @@
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_console_highlighting.py
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_console_highlighting.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_console_highlighting.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_directive.py
-%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_directive.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/ipython_directive.pyo
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/mathmpl.py
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/mathmpl.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/sphinxext/mathmpl.pyo
@@ -486,51 +477,34 @@
%%PYTHON_SITELIBDIR%%/matplotlib/tests/__init__.py
%%PYTHON_SITELIBDIR%%/matplotlib/tests/__init__.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/tests/__init__.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_agg.py
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_agg.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_agg.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_axes.py
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_axes.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_axes.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_svg.py
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_svg.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_svg.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_basic.py
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_basic.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_basic.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_cbook.py
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_cbook.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_cbook.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dates.py
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dates.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dates.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_image.py
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_image.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_image.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mathtext.py
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mathtext.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mathtext.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mlab.py
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mlab.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mlab.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_simplification.py
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_simplification.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_simplification.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_spines.py
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_spines.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_spines.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_text.py
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_text.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_text.pyo
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_transforms.py
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_transforms.pyc
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_transforms.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/dviread/test.map
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn0g01.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn0g02.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn0g04.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn0g08.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn0g16.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn2c08.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn2c16.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn3p01.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn3p02.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn3p04.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn3p08.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn4a08.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn4a16.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn6a08.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite/basn6a16.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/arc_ellipse.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/arc_ellipse.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/arc_ellipse.svg
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.svg
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/canonical.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/canonical.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/canonical.svg
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/const_xy.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/const_xy.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/const_xy.svg
@@ -564,12 +538,21 @@
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/imshow_clip.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/imshow_clip.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/imshow_clip.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/markevery.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/markevery.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/markevery.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/markevery_line.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/markevery_line.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/markevery_line.svg
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.svg
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/offset_points.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/offset_points.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/offset_points.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/pcolormesh.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/pcolormesh.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/pcolormesh.svg
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_axes.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_axes.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_axes.svg
@@ -579,9 +562,15 @@
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_rmin.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_rmin.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_rmin.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_theta_position.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_theta_position.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_theta_position.svg
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units_2.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units_2.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_units_2.svg
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.svg
@@ -603,6 +592,13 @@
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog2.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog2.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/symlog2.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/units_strings.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/units_strings.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes/units_strings.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_backend_pdf/pdf_use14corefonts.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.svg
@@ -624,26 +620,863 @@
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates/date_empty.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates/date_empty.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates/date_empty.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/steep-lin-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/steep-lin-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/steep-nn-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/steep-nn-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/steep-ref-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/steep-ref-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/trig-lin-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/trig-lin-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/trig-nn-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/trig-nn-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/trig-ref-con.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay/trig-ref-img.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_figure/figure_today.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_figure/figure_today.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_figure/figure_today.svg
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/figimage-0.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/figimage-1.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/image_clip.pdf
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/imshow.svg
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/image_clip.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/image_clip.svg
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/imshow.pdf
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/imshow.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/image_interps.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/image_interps.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/image_interps.svg
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext.pdf
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext.png
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext.svg
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix.pdf
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix.png
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix.svg
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans.pdf
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans.png
-%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/imshow.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/imshow.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/imshow.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_legend/legend_auto1.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_legend/legend_auto1.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_legend/legend_auto1.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_legend/legend_auto2.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_legend/legend_auto2.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_legend/legend_auto2.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_00.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_01.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_02.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_03.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_04.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_05.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_06.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_07.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_08.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_09.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_10.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_11.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_12.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_13.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_14.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_15.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_16.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_17.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_18.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_19.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_20.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_21.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_22.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_23.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_24.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_25.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_26.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_27.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_28.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_29.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_30.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_31.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_32.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_33.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_34.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_35.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_36.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_37.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_38.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_39.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_40.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_41.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_42.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_43.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_44.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_45.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_46.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_47.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_48.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_49.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_50.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_51.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_52.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_53.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_54.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_55.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_56.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_57.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_58.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_59.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_00.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_01.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_02.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_03.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_04.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_05.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_06.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_07.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_08.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_09.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_10.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_11.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_12.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_13.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_14.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_15.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_16.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_17.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_18.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_19.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_20.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_21.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_22.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_23.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_24.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_25.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_26.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_27.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_28.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_29.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_30.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_31.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_32.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_33.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_34.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_35.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_36.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_37.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_38.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_39.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_40.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_41.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_42.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_43.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_44.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_45.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_46.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_47.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_48.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_49.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_50.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_51.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_52.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_53.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_54.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_55.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_56.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_57.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_58.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_59.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_00.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_01.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_02.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_03.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_04.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_05.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_06.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_07.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_08.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_09.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_10.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_11.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_12.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_13.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_14.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_15.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_16.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_17.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_18.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_19.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_20.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_21.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_22.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_23.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_24.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_25.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_26.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_27.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_28.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_29.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_30.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_31.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_32.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_33.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_34.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_35.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_36.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_37.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_38.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_39.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_40.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_41.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_42.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_43.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_44.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_45.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_46.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_47.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_48.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_49.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_50.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_51.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_52.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_53.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_54.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_55.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_56.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_57.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_58.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_59.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_33.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_33.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_33.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_34.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_34.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_34.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_35.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_35.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_35.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_38.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_38.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_38.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_51.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_51.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_51.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_54.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_54.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_54.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_55.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_55.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_55.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_57.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_57.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_57.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_00.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_00.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_00.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_33.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_33.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_33.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_34.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_34.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_34.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_35.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_35.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_35.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_38.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_38.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_38.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_51.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_51.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_51.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_54.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_54.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_54.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_55.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_55.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_55.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_57.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_57.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_57.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_00.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_00.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_00.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_33.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_33.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_33.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_34.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_34.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_34.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_35.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_35.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_35.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_38.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_38.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_38.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_51.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_51.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_51.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_54.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_54.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_54.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_55.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_55.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_55.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_57.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_57.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_57.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_png/pngsuite.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_simplification/clipper_edge.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_simplification/clipper_edge.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_simplification/clipper_edge.svg
@@ -677,6 +1510,84 @@
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_text/multiline.pdf
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_text/multiline.png
%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_text/multiline.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.pdf
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.png
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.svg
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_agg.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_agg.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_agg.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_axes.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_axes.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_axes.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_pdf.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_pdf.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_pdf.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_svg.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_svg.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_backend_svg.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_basic.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_basic.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_basic.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_cbook.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_cbook.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_cbook.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dates.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dates.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dates.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_delaunay.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_delaunay.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_delaunay.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dviread.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dviread.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_dviread.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_figure.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_figure.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_figure.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_image.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_image.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_image.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_legend.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_legend.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_legend.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mathtext.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mathtext.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mathtext.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mlab.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mlab.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_mlab.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_png.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_png.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_png.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_simplification.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_simplification.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_simplification.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_spines.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_spines.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_spines.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_text.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_text.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_text.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_tightlayout.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_tightlayout.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_tightlayout.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_transforms.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_transforms.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tests/test_transforms.pyo
%%PYTHON_SITELIBDIR%%/matplotlib/texmanager.py
%%PYTHON_SITELIBDIR%%/matplotlib/texmanager.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/texmanager.pyo
@@ -692,6 +1603,9 @@
%%PYTHON_SITELIBDIR%%/matplotlib/tight_bbox.py
%%PYTHON_SITELIBDIR%%/matplotlib/tight_bbox.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/tight_bbox.pyo
+%%PYTHON_SITELIBDIR%%/matplotlib/tight_layout.py
+%%PYTHON_SITELIBDIR%%/matplotlib/tight_layout.pyc
+%%PYTHON_SITELIBDIR%%/matplotlib/tight_layout.pyo
%%PYTHON_SITELIBDIR%%/matplotlib/transforms.py
%%PYTHON_SITELIBDIR%%/matplotlib/transforms.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/transforms.pyo
@@ -720,37 +1634,6 @@
%%PYTHON_SITELIBDIR%%/matplotlib/widgets.py
%%PYTHON_SITELIBDIR%%/matplotlib/widgets.pyc
%%PYTHON_SITELIBDIR%%/matplotlib/widgets.pyo
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/backends/Matplotlib.nib
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/backends
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/delaunay
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data/fonts/afm
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data/fonts/pdfcorefonts
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data/fonts/ttf
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data/fonts
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data/images
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/numerix/fft
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/numerix/linear_algebra
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/numerix/ma
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/numerix/mlab
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/numerix/random_array
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/numerix
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/projections
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/sphinxext
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/testing/jpl_units
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/testing
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_simplification
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_spines
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_text
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tri
-@dirrm %%PYTHON_SITELIBDIR%%/matplotlib
%%PYTHON_SITELIBDIR%%/mpl_toolkits/__init__.py
%%PYTHON_SITELIBDIR%%/mpl_toolkits/__init__.pyc
%%PYTHON_SITELIBDIR%%/mpl_toolkits/__init__.pyo
@@ -778,12 +1661,12 @@
%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/axis_artist.py
%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/axis_artist.pyc
%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/axis_artist.pyo
-%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/axislines.py
-%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/axislines.pyc
-%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/axislines.pyo
%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/axisline_style.py
%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/axisline_style.pyc
%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/axisline_style.pyo
+%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/axislines.py
+%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/axislines.pyc
+%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/axislines.pyo
%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/clip_path.py
%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/clip_path.pyc
%%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid/clip_path.pyo
@@ -883,36 +1766,42 @@
%%PYTHON_SITELIBDIR%%/mpl_toolkits/mplot3d/proj3d.py
%%PYTHON_SITELIBDIR%%/mpl_toolkits/mplot3d/proj3d.pyc
%%PYTHON_SITELIBDIR%%/mpl_toolkits/mplot3d/proj3d.pyo
-@dirrm %%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid
-@dirrm %%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid1
-@dirrm %%PYTHON_SITELIBDIR%%/mpl_toolkits/axisartist
-@dirrm %%PYTHON_SITELIBDIR%%/mpl_toolkits/mplot3d
-@dirrm %%PYTHON_SITELIBDIR%%/mpl_toolkits
%%PYTHON_SITELIBDIR%%/pylab.py
%%PYTHON_SITELIBDIR%%/pylab.pyc
%%PYTHON_SITELIBDIR%%/pylab.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/README.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animation_blit_fltk.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animation_blit_gtk.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animation_blit_gtk2.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animation_blit_qt.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animation_blit_qt4.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animation_blit_tk.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animation_blit_wx.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animate_decay_tk_blit.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/draggable_legend.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/dynamic_collection.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/dynamic_image_gtkagg.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/dynamic_image_wxagg2.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/gtk_timeout.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/histogram_tkagg.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/movie_demo.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/simple_anim_gtk.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/simple_anim_tkagg.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/simple_idle_wx.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/simple_timer_wx.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/animate_decay.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/basic_example.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/double_pendulum_animated.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/dynamic_image.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/dynamic_image2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/histogram.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/README.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animate_decay_tk_blit.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animation_blit_fltk.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animation_blit_gtk.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animation_blit_gtk2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animation_blit_qt.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animation_blit_qt4.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animation_blit_tk.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/animation_blit_wx.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/draggable_legend.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/dynamic_collection.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/dynamic_image_gtkagg.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/dynamic_image_wxagg2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/gtk_timeout.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/histogram_tkagg.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/movie_demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/simple_anim_gtk.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/simple_anim_tkagg.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/simple_idle_wx.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/simple_timer_wx.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/old_animation/strip_chart_demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/random_data.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/simple_3danim.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/simple_anim.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/strip_chart_demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/animation/subplots.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/agg_oo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/artist_demo.py
@@ -946,15 +1835,20 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/path_patch_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/quad_bezier.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/radar_chart.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/sankey_demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/sankey_demo_basics.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/sankey_demo_links.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/sankey_demo_old.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/sankey_demo_rankine.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/scatter_piecharts.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/span_regions.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/two_scales.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/unicode_minus.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/watermark_image.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/watermark_text.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axes_divider.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axes_grid.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axes_grid2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axes_hbox_divider.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axes_rgb.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axisline_style.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_colorbar_with_inset_locator.py
@@ -965,13 +1859,13 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_parasite_axes2.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/inset_locator_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/inset_locator_demo2.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/make_room_for_ylabel_using_axesgrid.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/parasite_simple2.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/scatter_hist.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/simple_anchored_artists.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/simple_axesgrid.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/simple_axesgrid2.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/simple_axisline4.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/axes_grid/demo_axes_divider.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/event_handling/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/event_handling/close_event.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/event_handling/data_browser.py
@@ -993,12 +1887,13 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/event_handling/viewlims.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/event_handling/zoom_window.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/contour_manual.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/rasterization_demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/developer_commit_history.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/font_indexing.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/ftface_props.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/image_thumbnail.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/longshort.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/multiprocess.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/rasterization_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/rc_traits.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/rec_groupby_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/rec_join_demo.py
@@ -1007,15 +1902,18 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/svg_filter_line.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/svg_filter_pie.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/tight_bbox_test.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/wire3d_demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/2dcollections3d_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/bars3d_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/contour3d_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/contour3d_demo2.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/contour3d_demo3.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/contourf3d_demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/contourf3d_demo2.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/hist3d_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/lines3d_demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/lorenz_attractor.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/mixed_subplots_demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/offset_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/pathpatch3d_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/polys3d_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/rotate_axes3d_demo.py
@@ -1027,13 +1925,13 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/surface3d_radial_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/text3d_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/wire3d_animation_demo.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/2dcollections3d_demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mplot3d/wire3d_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/README
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/__init__.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/accented_text.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/agg_buffer_to_array.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/alignment_test.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/anchored_artists.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/animation_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/annotation_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/annotation_demo2.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/annotation_demo3.py
@@ -1056,6 +1954,7 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/boxplot_demo2.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/boxplot_demo3.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/break.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/broken_axis.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/broken_barh.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/centered_ticklabels.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/clippedline.py
@@ -1092,6 +1991,7 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/demo_ribbon_box.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/demo_text_path.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/demo_text_rotation_mode.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/demo_tight_layout.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/dolphin.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/ellipse_collection.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/ellipse_demo.py
@@ -1149,6 +2049,8 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_demo2.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_demo3.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_demo4.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_demo_custom_handler.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_scatter.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/legend_translucent.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/line_collection.py
@@ -1207,6 +2109,7 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/scatter_masked.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/scatter_profile.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/scatter_star_poly.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/scatter_symbol.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/set_and_get.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/shading_example.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/shared_axis_across_figures.py
@@ -1243,32 +2146,14 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/triplot_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/unicode_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/usetex_baseline_test.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/usetex_fonteffects.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/usetex_demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/usetex_fonteffects.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/vertical_ticklabels.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/vline_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/webapp_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/xcorr_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pylab_examples/zorder_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/backend_driver.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn0g01.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn0g02.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn0g04.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn0g08.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn0g16.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn2c08.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn2c16.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn3p01.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn3p02.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn3p04.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn3p08.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn4a08.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn4a16.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn6a08.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/basn6a16.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/pngsuite.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pngsuite/truth.png
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/units/__init__.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/units/annotate_with_units.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/units/artist_tests.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/units/bar_demo2.py
@@ -1287,7 +2172,6 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_qt.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_qt4.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_tk.py
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_tk2.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_wx2.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_wx3.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/embedding_in_wx4.py
@@ -1305,6 +2189,7 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/pylab_with_gtk.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/rec_edit_gtk_custom.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/rec_edit_gtk_simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/svg_histogram.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_interfaces/wxcursor_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/buttons.py
@@ -1316,16 +2201,54 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/rectangle_selector.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/slider_demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/span_selector.py
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/animation
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/api
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/axes_grid
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/event_handling
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/misc
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/mplot3d
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pylab_examples
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/pngsuite
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/units
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/user_interfaces
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/widgets
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/user_interfaces
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/units
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pylab_examples
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/mplot3d
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/misc
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/event_handling
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/axes_grid
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/api
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/animation/old_animation
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/animation
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
+@dirrm %%PYTHON_SITELIBDIR%%/mpl_toolkits/mplot3d
+@dirrm %%PYTHON_SITELIBDIR%%/mpl_toolkits/axisartist
+@dirrm %%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid1
+@dirrm %%PYTHON_SITELIBDIR%%/mpl_toolkits/axes_grid
+@dirrm %%PYTHON_SITELIBDIR%%/mpl_toolkits
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tri
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_tightlayout
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_text
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_spines
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_simplification
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_png
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_mathtext
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_legend
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_image
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_figure
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_delaunay
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_dates
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_backend_pdf
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/test_axes
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/pngsuite
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images/dviread
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests/baseline_images
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/tests
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/testing/jpl_units
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/testing
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/sphinxext
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/projections
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data/images
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data/fonts/ttf
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data/fonts/pdfcorefonts
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data/fonts/afm
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data/fonts
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/mpl-data
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/delaunay
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/backends/qt4_editor
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/backends/Matplotlib.nib
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib/backends
+@dirrm %%PYTHON_SITELIBDIR%%/matplotlib