summaryrefslogtreecommitdiff
path: root/graphics/py-matplotlib/PLIST
blob: e62ab25b0f5aba219f9e972b13b5f44a69411940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
@comment $NetBSD: PLIST,v 1.18 2014/01/20 19:53:05 wiz Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/namespace_packages.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/${EGG_NAME}-nspkg.pth
${PYSITELIB}/matplotlib/__init__.py
${PYSITELIB}/matplotlib/__init__.pyc
${PYSITELIB}/matplotlib/__init__.pyo
${PYSITELIB}/matplotlib/_cm.py
${PYSITELIB}/matplotlib/_cm.pyc
${PYSITELIB}/matplotlib/_cm.pyo
${PYSITELIB}/matplotlib/_cntr.so
${PYSITELIB}/matplotlib/_delaunay.so
${PYSITELIB}/matplotlib/_image.so
${PYSITELIB}/matplotlib/_mathtext_data.py
${PYSITELIB}/matplotlib/_mathtext_data.pyc
${PYSITELIB}/matplotlib/_mathtext_data.pyo
${PYSITELIB}/matplotlib/_path.so
${PYSITELIB}/matplotlib/_png.so
${PYSITELIB}/matplotlib/_pylab_helpers.py
${PYSITELIB}/matplotlib/_pylab_helpers.pyc
${PYSITELIB}/matplotlib/_pylab_helpers.pyo
${PYSITELIB}/matplotlib/_tri.so
${PYSITELIB}/matplotlib/afm.py
${PYSITELIB}/matplotlib/afm.pyc
${PYSITELIB}/matplotlib/afm.pyo
${PYSITELIB}/matplotlib/animation.py
${PYSITELIB}/matplotlib/animation.pyc
${PYSITELIB}/matplotlib/animation.pyo
${PYSITELIB}/matplotlib/artist.py
${PYSITELIB}/matplotlib/artist.pyc
${PYSITELIB}/matplotlib/artist.pyo
${PYSITELIB}/matplotlib/axes.py
${PYSITELIB}/matplotlib/axes.pyc
${PYSITELIB}/matplotlib/axes.pyo
${PYSITELIB}/matplotlib/axis.py
${PYSITELIB}/matplotlib/axis.pyc
${PYSITELIB}/matplotlib/axis.pyo
${PYSITELIB}/matplotlib/backend_bases.py
${PYSITELIB}/matplotlib/backend_bases.pyc
${PYSITELIB}/matplotlib/backend_bases.pyo
${PYSITELIB}/matplotlib/backends/Matplotlib.nib/classes.nib
${PYSITELIB}/matplotlib/backends/Matplotlib.nib/info.nib
${PYSITELIB}/matplotlib/backends/Matplotlib.nib/keyedobjects.nib
${PYSITELIB}/matplotlib/backends/__init__.py
${PYSITELIB}/matplotlib/backends/__init__.pyc
${PYSITELIB}/matplotlib/backends/__init__.pyo
${PYSITELIB}/matplotlib/backends/_backend_agg.so
${PYSITELIB}/matplotlib/backends/backend_agg.py
${PYSITELIB}/matplotlib/backends/backend_agg.pyc
${PYSITELIB}/matplotlib/backends/backend_agg.pyo
${PYSITELIB}/matplotlib/backends/backend_cairo.py
${PYSITELIB}/matplotlib/backends/backend_cairo.pyc
${PYSITELIB}/matplotlib/backends/backend_cairo.pyo
${PYSITELIB}/matplotlib/backends/backend_cocoaagg.py
${PYSITELIB}/matplotlib/backends/backend_cocoaagg.pyc
${PYSITELIB}/matplotlib/backends/backend_cocoaagg.pyo
${PYSITELIB}/matplotlib/backends/backend_gdk.py
${PYSITELIB}/matplotlib/backends/backend_gdk.pyc
${PYSITELIB}/matplotlib/backends/backend_gdk.pyo
${PYSITELIB}/matplotlib/backends/backend_gtk.py
${PYSITELIB}/matplotlib/backends/backend_gtk.pyc
${PYSITELIB}/matplotlib/backends/backend_gtk.pyo
${PYSITELIB}/matplotlib/backends/backend_gtk3.py
${PYSITELIB}/matplotlib/backends/backend_gtk3.pyc
${PYSITELIB}/matplotlib/backends/backend_gtk3.pyo
${PYSITELIB}/matplotlib/backends/backend_gtk3agg.py
${PYSITELIB}/matplotlib/backends/backend_gtk3agg.pyc
${PYSITELIB}/matplotlib/backends/backend_gtk3agg.pyo
${PYSITELIB}/matplotlib/backends/backend_gtk3cairo.py
${PYSITELIB}/matplotlib/backends/backend_gtk3cairo.pyc
${PYSITELIB}/matplotlib/backends/backend_gtk3cairo.pyo
${PYSITELIB}/matplotlib/backends/backend_gtkagg.py
${PYSITELIB}/matplotlib/backends/backend_gtkagg.pyc
${PYSITELIB}/matplotlib/backends/backend_gtkagg.pyo
${PYSITELIB}/matplotlib/backends/backend_gtkcairo.py
${PYSITELIB}/matplotlib/backends/backend_gtkcairo.pyc
${PYSITELIB}/matplotlib/backends/backend_gtkcairo.pyo
${PYSITELIB}/matplotlib/backends/backend_macosx.py
${PYSITELIB}/matplotlib/backends/backend_macosx.pyc
${PYSITELIB}/matplotlib/backends/backend_macosx.pyo
${PYSITELIB}/matplotlib/backends/backend_mixed.py
${PYSITELIB}/matplotlib/backends/backend_mixed.pyc
${PYSITELIB}/matplotlib/backends/backend_mixed.pyo
${PYSITELIB}/matplotlib/backends/backend_pdf.py
${PYSITELIB}/matplotlib/backends/backend_pdf.pyc
${PYSITELIB}/matplotlib/backends/backend_pdf.pyo
${PYSITELIB}/matplotlib/backends/backend_pgf.py
${PYSITELIB}/matplotlib/backends/backend_pgf.pyc
${PYSITELIB}/matplotlib/backends/backend_pgf.pyo
${PYSITELIB}/matplotlib/backends/backend_ps.py
${PYSITELIB}/matplotlib/backends/backend_ps.pyc
${PYSITELIB}/matplotlib/backends/backend_ps.pyo
${PYSITELIB}/matplotlib/backends/backend_qt4.py
${PYSITELIB}/matplotlib/backends/backend_qt4.pyc
${PYSITELIB}/matplotlib/backends/backend_qt4.pyo
${PYSITELIB}/matplotlib/backends/backend_qt4agg.py
${PYSITELIB}/matplotlib/backends/backend_qt4agg.pyc
${PYSITELIB}/matplotlib/backends/backend_qt4agg.pyo
${PYSITELIB}/matplotlib/backends/backend_svg.py
${PYSITELIB}/matplotlib/backends/backend_svg.pyc
${PYSITELIB}/matplotlib/backends/backend_svg.pyo
${PYSITELIB}/matplotlib/backends/backend_template.py
${PYSITELIB}/matplotlib/backends/backend_template.pyc
${PYSITELIB}/matplotlib/backends/backend_template.pyo
${PYSITELIB}/matplotlib/backends/backend_tkagg.py
${PYSITELIB}/matplotlib/backends/backend_tkagg.pyc
${PYSITELIB}/matplotlib/backends/backend_tkagg.pyo
${PYSITELIB}/matplotlib/backends/backend_webagg.py
${PYSITELIB}/matplotlib/backends/backend_webagg.pyc
${PYSITELIB}/matplotlib/backends/backend_webagg.pyo
${PYSITELIB}/matplotlib/backends/backend_wx.py
${PYSITELIB}/matplotlib/backends/backend_wx.pyc
${PYSITELIB}/matplotlib/backends/backend_wx.pyo
${PYSITELIB}/matplotlib/backends/backend_wxagg.py
${PYSITELIB}/matplotlib/backends/backend_wxagg.pyc
${PYSITELIB}/matplotlib/backends/backend_wxagg.pyo
${PYSITELIB}/matplotlib/backends/qt4_compat.py
${PYSITELIB}/matplotlib/backends/qt4_compat.pyc
${PYSITELIB}/matplotlib/backends/qt4_compat.pyo
${PYSITELIB}/matplotlib/backends/qt4_editor/__init__.py
${PYSITELIB}/matplotlib/backends/qt4_editor/__init__.pyc
${PYSITELIB}/matplotlib/backends/qt4_editor/__init__.pyo
${PYSITELIB}/matplotlib/backends/qt4_editor/figureoptions.py
${PYSITELIB}/matplotlib/backends/qt4_editor/figureoptions.pyc
${PYSITELIB}/matplotlib/backends/qt4_editor/figureoptions.pyo
${PYSITELIB}/matplotlib/backends/qt4_editor/formlayout.py
${PYSITELIB}/matplotlib/backends/qt4_editor/formlayout.pyc
${PYSITELIB}/matplotlib/backends/qt4_editor/formlayout.pyo
${PYSITELIB}/matplotlib/backends/tkagg.py
${PYSITELIB}/matplotlib/backends/tkagg.pyc
${PYSITELIB}/matplotlib/backends/tkagg.pyo
${PYSITELIB}/matplotlib/backends/web_backend/all_figures.html
${PYSITELIB}/matplotlib/backends/web_backend/css/boilerplate.css
${PYSITELIB}/matplotlib/backends/web_backend/css/fbm.css
${PYSITELIB}/matplotlib/backends/web_backend/css/page.css
${PYSITELIB}/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png
${PYSITELIB}/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_flat_75_ffffff_40x100.png
${PYSITELIB}/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png
${PYSITELIB}/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_65_ffffff_1x400.png
${PYSITELIB}/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_75_dadada_1x400.png
${PYSITELIB}/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png
${PYSITELIB}/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png
${PYSITELIB}/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png
${PYSITELIB}/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_222222_256x240.png
${PYSITELIB}/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_2e83ff_256x240.png
${PYSITELIB}/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_454545_256x240.png
${PYSITELIB}/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_888888_256x240.png
${PYSITELIB}/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_cd0a0a_256x240.png
${PYSITELIB}/matplotlib/backends/web_backend/jquery/css/themes/base/jquery-ui.min.css
${PYSITELIB}/matplotlib/backends/web_backend/jquery/js/jquery-1.7.1.min.js
${PYSITELIB}/matplotlib/backends/web_backend/jquery/js/jquery-ui.min.js
${PYSITELIB}/matplotlib/backends/web_backend/jquery/js/jquery.autogrow.js
${PYSITELIB}/matplotlib/backends/web_backend/mpl.js
${PYSITELIB}/matplotlib/backends/web_backend/mpl_interface.js
${PYSITELIB}/matplotlib/backends/web_backend/single_figure.html
${PYSITELIB}/matplotlib/backends/windowing.py
${PYSITELIB}/matplotlib/backends/windowing.pyc
${PYSITELIB}/matplotlib/backends/windowing.pyo
${PYSITELIB}/matplotlib/bezier.py
${PYSITELIB}/matplotlib/bezier.pyc
${PYSITELIB}/matplotlib/bezier.pyo
${PYSITELIB}/matplotlib/blocking_input.py
${PYSITELIB}/matplotlib/blocking_input.pyc
${PYSITELIB}/matplotlib/blocking_input.pyo
${PYSITELIB}/matplotlib/cbook.py
${PYSITELIB}/matplotlib/cbook.pyc
${PYSITELIB}/matplotlib/cbook.pyo
${PYSITELIB}/matplotlib/cm.py
${PYSITELIB}/matplotlib/cm.pyc
${PYSITELIB}/matplotlib/cm.pyo
${PYSITELIB}/matplotlib/collections.py
${PYSITELIB}/matplotlib/collections.pyc
${PYSITELIB}/matplotlib/collections.pyo
${PYSITELIB}/matplotlib/colorbar.py
${PYSITELIB}/matplotlib/colorbar.pyc
${PYSITELIB}/matplotlib/colorbar.pyo
${PYSITELIB}/matplotlib/colors.py
${PYSITELIB}/matplotlib/colors.pyc
${PYSITELIB}/matplotlib/colors.pyo
${PYSITELIB}/matplotlib/compat/__init__.py
${PYSITELIB}/matplotlib/compat/__init__.pyc
${PYSITELIB}/matplotlib/compat/__init__.pyo
${PYSITELIB}/matplotlib/compat/subprocess.py
${PYSITELIB}/matplotlib/compat/subprocess.pyc
${PYSITELIB}/matplotlib/compat/subprocess.pyo
${PYSITELIB}/matplotlib/container.py
${PYSITELIB}/matplotlib/container.pyc
${PYSITELIB}/matplotlib/container.pyo
${PYSITELIB}/matplotlib/contour.py
${PYSITELIB}/matplotlib/contour.pyc
${PYSITELIB}/matplotlib/contour.pyo
${PYSITELIB}/matplotlib/dates.py
${PYSITELIB}/matplotlib/dates.pyc
${PYSITELIB}/matplotlib/dates.pyo
${PYSITELIB}/matplotlib/delaunay/__init__.py
${PYSITELIB}/matplotlib/delaunay/__init__.pyc
${PYSITELIB}/matplotlib/delaunay/__init__.pyo
${PYSITELIB}/matplotlib/delaunay/interpolate.py
${PYSITELIB}/matplotlib/delaunay/interpolate.pyc
${PYSITELIB}/matplotlib/delaunay/interpolate.pyo
${PYSITELIB}/matplotlib/delaunay/testfuncs.py
${PYSITELIB}/matplotlib/delaunay/testfuncs.pyc
${PYSITELIB}/matplotlib/delaunay/testfuncs.pyo
${PYSITELIB}/matplotlib/delaunay/triangulate.py
${PYSITELIB}/matplotlib/delaunay/triangulate.pyc
${PYSITELIB}/matplotlib/delaunay/triangulate.pyo
${PYSITELIB}/matplotlib/docstring.py
${PYSITELIB}/matplotlib/docstring.pyc
${PYSITELIB}/matplotlib/docstring.pyo
${PYSITELIB}/matplotlib/dviread.py
${PYSITELIB}/matplotlib/dviread.pyc
${PYSITELIB}/matplotlib/dviread.pyo
${PYSITELIB}/matplotlib/figure.py
${PYSITELIB}/matplotlib/figure.pyc
${PYSITELIB}/matplotlib/figure.pyo
${PYSITELIB}/matplotlib/finance.py
${PYSITELIB}/matplotlib/finance.pyc
${PYSITELIB}/matplotlib/finance.pyo
${PYSITELIB}/matplotlib/font_manager.py
${PYSITELIB}/matplotlib/font_manager.pyc
${PYSITELIB}/matplotlib/font_manager.pyo
${PYSITELIB}/matplotlib/fontconfig_pattern.py
${PYSITELIB}/matplotlib/fontconfig_pattern.pyc
${PYSITELIB}/matplotlib/fontconfig_pattern.pyo
${PYSITELIB}/matplotlib/ft2font.so
${PYSITELIB}/matplotlib/gridspec.py
${PYSITELIB}/matplotlib/gridspec.pyc
${PYSITELIB}/matplotlib/gridspec.pyo
${PYSITELIB}/matplotlib/hatch.py
${PYSITELIB}/matplotlib/hatch.pyc
${PYSITELIB}/matplotlib/hatch.pyo
${PYSITELIB}/matplotlib/image.py
${PYSITELIB}/matplotlib/image.pyc
${PYSITELIB}/matplotlib/image.pyo
${PYSITELIB}/matplotlib/legend.py
${PYSITELIB}/matplotlib/legend.pyc
${PYSITELIB}/matplotlib/legend.pyo
${PYSITELIB}/matplotlib/legend_handler.py
${PYSITELIB}/matplotlib/legend_handler.pyc
${PYSITELIB}/matplotlib/legend_handler.pyo
${PYSITELIB}/matplotlib/lines.py
${PYSITELIB}/matplotlib/lines.pyc
${PYSITELIB}/matplotlib/lines.pyo
${PYSITELIB}/matplotlib/markers.py
${PYSITELIB}/matplotlib/markers.pyc
${PYSITELIB}/matplotlib/markers.pyo
${PYSITELIB}/matplotlib/mathtext.py
${PYSITELIB}/matplotlib/mathtext.pyc
${PYSITELIB}/matplotlib/mathtext.pyo
${PYSITELIB}/matplotlib/mlab.py
${PYSITELIB}/matplotlib/mlab.pyc
${PYSITELIB}/matplotlib/mlab.pyo
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmex10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmmi10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmr10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmsy10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmtt10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pagd8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pagdo8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pagk8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pagko8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pbkd8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pbkdi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pbkl8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pbkli8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pcrb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pcrbo8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pcrr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pcrro8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvb8an.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvbo8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvbo8an.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvl8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvlo8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvr8an.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvro8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvro8an.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pncb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pncbi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pncr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pncri8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pplb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pplbi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pplr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pplri8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/psyr.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/ptmb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/ptmbi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/ptmr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/ptmri8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/putb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/putbi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/putr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/putri8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pzcmi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pzdr.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Bold.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-BoldOblique.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Oblique.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Courier.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Bold.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-BoldOblique.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Oblique.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Symbol.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Bold.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Times-BoldItalic.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Italic.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Roman.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/ZapfDingbats.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/readme.txt
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/COPYRIGHT.TXT
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/LICENSE_STIX
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/README.TXT
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/RELEASENOTES.TXT
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizFiveSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/Vera.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraBI.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraBd.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraIt.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraMoBI.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraMoBd.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraMoIt.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraMono.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraSe.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraSeBd.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmb10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmex10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmr10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmss10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmsy10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf
${PYSITELIB}/matplotlib/mpl-data/images/back.png
${PYSITELIB}/matplotlib/mpl-data/images/back.ppm
${PYSITELIB}/matplotlib/mpl-data/images/back.svg
${PYSITELIB}/matplotlib/mpl-data/images/back.xpm
${PYSITELIB}/matplotlib/mpl-data/images/filesave.png
${PYSITELIB}/matplotlib/mpl-data/images/filesave.ppm
${PYSITELIB}/matplotlib/mpl-data/images/filesave.svg
${PYSITELIB}/matplotlib/mpl-data/images/filesave.xpm
${PYSITELIB}/matplotlib/mpl-data/images/forward.png
${PYSITELIB}/matplotlib/mpl-data/images/forward.ppm
${PYSITELIB}/matplotlib/mpl-data/images/forward.svg
${PYSITELIB}/matplotlib/mpl-data/images/forward.xpm
${PYSITELIB}/matplotlib/mpl-data/images/hand.png
${PYSITELIB}/matplotlib/mpl-data/images/hand.ppm
${PYSITELIB}/matplotlib/mpl-data/images/hand.svg
${PYSITELIB}/matplotlib/mpl-data/images/hand.xpm
${PYSITELIB}/matplotlib/mpl-data/images/home.png
${PYSITELIB}/matplotlib/mpl-data/images/home.ppm
${PYSITELIB}/matplotlib/mpl-data/images/home.svg
${PYSITELIB}/matplotlib/mpl-data/images/home.xpm
${PYSITELIB}/matplotlib/mpl-data/images/matplotlib.gif
${PYSITELIB}/matplotlib/mpl-data/images/matplotlib.png
${PYSITELIB}/matplotlib/mpl-data/images/matplotlib.svg
${PYSITELIB}/matplotlib/mpl-data/images/move.png
${PYSITELIB}/matplotlib/mpl-data/images/move.ppm
${PYSITELIB}/matplotlib/mpl-data/images/move.svg
${PYSITELIB}/matplotlib/mpl-data/images/move.xpm
${PYSITELIB}/matplotlib/mpl-data/images/qt4_editor_options.png
${PYSITELIB}/matplotlib/mpl-data/images/qt4_editor_options.svg
${PYSITELIB}/matplotlib/mpl-data/images/stock_close.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_close.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_down.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_down.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_left.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_left.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_refresh.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_refresh.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_right.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_right.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_save_as.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_save_as.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_up.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_up.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_zoom-in.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_zoom-in.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_zoom-out.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_zoom-out.xpm
${PYSITELIB}/matplotlib/mpl-data/images/subplots.png
${PYSITELIB}/matplotlib/mpl-data/images/subplots.ppm
${PYSITELIB}/matplotlib/mpl-data/images/subplots.xpm
${PYSITELIB}/matplotlib/mpl-data/images/zoom_to_rect.png
${PYSITELIB}/matplotlib/mpl-data/images/zoom_to_rect.ppm
${PYSITELIB}/matplotlib/mpl-data/images/zoom_to_rect.svg
${PYSITELIB}/matplotlib/mpl-data/images/zoom_to_rect.xpm
${PYSITELIB}/matplotlib/mpl-data/matplotlibrc
${PYSITELIB}/matplotlib/mpl-data/sample_data/AAPL.dat.gz
${PYSITELIB}/matplotlib/mpl-data/sample_data/INTC.dat.gz
${PYSITELIB}/matplotlib/mpl-data/sample_data/Minduka_Present_Blue_Pack.png
${PYSITELIB}/matplotlib/mpl-data/sample_data/README.txt
${PYSITELIB}/matplotlib/mpl-data/sample_data/aapl.csv
${PYSITELIB}/matplotlib/mpl-data/sample_data/aapl.npy.gz
${PYSITELIB}/matplotlib/mpl-data/sample_data/ada.png
${PYSITELIB}/matplotlib/mpl-data/sample_data/axes_grid/bivariate_normal.npy
${PYSITELIB}/matplotlib/mpl-data/sample_data/ct.raw.gz
${PYSITELIB}/matplotlib/mpl-data/sample_data/data_x_x2_x3.csv
${PYSITELIB}/matplotlib/mpl-data/sample_data/demodata.csv
${PYSITELIB}/matplotlib/mpl-data/sample_data/eeg.dat
${PYSITELIB}/matplotlib/mpl-data/sample_data/embedding_in_wx3.xrc
${PYSITELIB}/matplotlib/mpl-data/sample_data/goog.npy
${PYSITELIB}/matplotlib/mpl-data/sample_data/grace_hopper.jpg
${PYSITELIB}/matplotlib/mpl-data/sample_data/grace_hopper.png
${PYSITELIB}/matplotlib/mpl-data/sample_data/lena.jpg
${PYSITELIB}/matplotlib/mpl-data/sample_data/lena.png
${PYSITELIB}/matplotlib/mpl-data/sample_data/logo2.png
${PYSITELIB}/matplotlib/mpl-data/sample_data/membrane.dat
${PYSITELIB}/matplotlib/mpl-data/sample_data/msft.csv
${PYSITELIB}/matplotlib/mpl-data/sample_data/s1045.ima.gz
${PYSITELIB}/matplotlib/mpl.py
${PYSITELIB}/matplotlib/mpl.pyc
${PYSITELIB}/matplotlib/mpl.pyo
${PYSITELIB}/matplotlib/offsetbox.py
${PYSITELIB}/matplotlib/offsetbox.pyc
${PYSITELIB}/matplotlib/offsetbox.pyo
${PYSITELIB}/matplotlib/patches.py
${PYSITELIB}/matplotlib/patches.pyc
${PYSITELIB}/matplotlib/patches.pyo
${PYSITELIB}/matplotlib/path.py
${PYSITELIB}/matplotlib/path.pyc
${PYSITELIB}/matplotlib/path.pyo
${PYSITELIB}/matplotlib/patheffects.py
${PYSITELIB}/matplotlib/patheffects.pyc
${PYSITELIB}/matplotlib/patheffects.pyo
${PYSITELIB}/matplotlib/projections/__init__.py
${PYSITELIB}/matplotlib/projections/__init__.pyc
${PYSITELIB}/matplotlib/projections/__init__.pyo
${PYSITELIB}/matplotlib/projections/geo.py
${PYSITELIB}/matplotlib/projections/geo.pyc
${PYSITELIB}/matplotlib/projections/geo.pyo
${PYSITELIB}/matplotlib/projections/polar.py
${PYSITELIB}/matplotlib/projections/polar.pyc
${PYSITELIB}/matplotlib/projections/polar.pyo
${PYSITELIB}/matplotlib/pylab.py
${PYSITELIB}/matplotlib/pylab.pyc
${PYSITELIB}/matplotlib/pylab.pyo
${PYSITELIB}/matplotlib/pyplot.py
${PYSITELIB}/matplotlib/pyplot.pyc
${PYSITELIB}/matplotlib/pyplot.pyo
${PYSITELIB}/matplotlib/quiver.py
${PYSITELIB}/matplotlib/quiver.pyc
${PYSITELIB}/matplotlib/quiver.pyo
${PYSITELIB}/matplotlib/rcsetup.py
${PYSITELIB}/matplotlib/rcsetup.pyc
${PYSITELIB}/matplotlib/rcsetup.pyo
${PYSITELIB}/matplotlib/sankey.py
${PYSITELIB}/matplotlib/sankey.pyc
${PYSITELIB}/matplotlib/sankey.pyo
${PYSITELIB}/matplotlib/scale.py
${PYSITELIB}/matplotlib/scale.pyc
${PYSITELIB}/matplotlib/scale.pyo
${PYSITELIB}/matplotlib/sphinxext/__init__.py
${PYSITELIB}/matplotlib/sphinxext/__init__.pyc
${PYSITELIB}/matplotlib/sphinxext/__init__.pyo
${PYSITELIB}/matplotlib/sphinxext/ipython_console_highlighting.py
${PYSITELIB}/matplotlib/sphinxext/ipython_console_highlighting.pyc
${PYSITELIB}/matplotlib/sphinxext/ipython_console_highlighting.pyo
${PYSITELIB}/matplotlib/sphinxext/ipython_directive.py
${PYSITELIB}/matplotlib/sphinxext/ipython_directive.pyc
${PYSITELIB}/matplotlib/sphinxext/ipython_directive.pyo
${PYSITELIB}/matplotlib/sphinxext/mathmpl.py
${PYSITELIB}/matplotlib/sphinxext/mathmpl.pyc
${PYSITELIB}/matplotlib/sphinxext/mathmpl.pyo
${PYSITELIB}/matplotlib/sphinxext/only_directives.py
${PYSITELIB}/matplotlib/sphinxext/only_directives.pyc
${PYSITELIB}/matplotlib/sphinxext/only_directives.pyo
${PYSITELIB}/matplotlib/sphinxext/plot_directive.py
${PYSITELIB}/matplotlib/sphinxext/plot_directive.pyc
${PYSITELIB}/matplotlib/sphinxext/plot_directive.pyo
${PYSITELIB}/matplotlib/spines.py
${PYSITELIB}/matplotlib/spines.pyc
${PYSITELIB}/matplotlib/spines.pyo
${PYSITELIB}/matplotlib/stackplot.py
${PYSITELIB}/matplotlib/stackplot.pyc
${PYSITELIB}/matplotlib/stackplot.pyo
${PYSITELIB}/matplotlib/streamplot.py
${PYSITELIB}/matplotlib/streamplot.pyc
${PYSITELIB}/matplotlib/streamplot.pyo
${PYSITELIB}/matplotlib/table.py
${PYSITELIB}/matplotlib/table.pyc
${PYSITELIB}/matplotlib/table.pyo
${PYSITELIB}/matplotlib/testing/__init__.py
${PYSITELIB}/matplotlib/testing/__init__.pyc
${PYSITELIB}/matplotlib/testing/__init__.pyo
${PYSITELIB}/matplotlib/testing/compare.py
${PYSITELIB}/matplotlib/testing/compare.pyc
${PYSITELIB}/matplotlib/testing/compare.pyo
${PYSITELIB}/matplotlib/testing/decorators.py
${PYSITELIB}/matplotlib/testing/decorators.pyc
${PYSITELIB}/matplotlib/testing/decorators.pyo
${PYSITELIB}/matplotlib/testing/image_util.py
${PYSITELIB}/matplotlib/testing/image_util.pyc
${PYSITELIB}/matplotlib/testing/image_util.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/Duration.py
${PYSITELIB}/matplotlib/testing/jpl_units/Duration.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/Duration.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/Epoch.py
${PYSITELIB}/matplotlib/testing/jpl_units/Epoch.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/Epoch.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/EpochConverter.py
${PYSITELIB}/matplotlib/testing/jpl_units/EpochConverter.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/EpochConverter.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/StrConverter.py
${PYSITELIB}/matplotlib/testing/jpl_units/StrConverter.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/StrConverter.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDbl.py
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDbl.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDbl.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblConverter.py
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblConverter.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblConverter.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblFormatter.py
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblFormatter.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblFormatter.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/__init__.py
${PYSITELIB}/matplotlib/testing/jpl_units/__init__.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/__init__.pyo
${PYSITELIB}/matplotlib/testing/noseclasses.py
${PYSITELIB}/matplotlib/testing/noseclasses.pyc
${PYSITELIB}/matplotlib/testing/noseclasses.pyo
${PYSITELIB}/matplotlib/tests/__init__.py
${PYSITELIB}/matplotlib/tests/__init__.pyc
${PYSITELIB}/matplotlib/tests/__init__.pyo
${PYSITELIB}/matplotlib/tests/baseline_images/dviread/test.map
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn0g01.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn0g02.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn0g04.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn0g08.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn0g16.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn2c08.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn2c16.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn3p01.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn3p02.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn3p04.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn3p08.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn4a08.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn4a16.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn6a08.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn6a16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_arrow_patches/fancyarrow_test_image.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_arrow_patches/fancyarrow_test_image.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_arrow_patches/fancyarrow_test_image.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_artist/clip_path_clipping.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/arc_ellipse.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/arc_ellipse.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/arc_ellipse.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/autoscale_tiny_range.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/boxplot.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/boxplot.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/boxplot.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/boxplot_no_inverted_whisker.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/canonical.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/canonical.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/canonical.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/const_xy.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/const_xy.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/const_xy.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/contour_colorbar.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/contour_colorbar.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/contour_colorbar.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/contour_hatching.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/contour_hatching.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/contour_hatching.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/csd_freqs.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/csd_noise.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/errorbar_basic.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/errorbar_basic.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/errorbar_basic.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/errorbar_mixed.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/errorbar_zorder.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/errorbar_zorder.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/errorbar_zorder.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/eventplot.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/eventplot.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/eventplot.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/fill_units.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_large_small.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_large_small.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_large_small.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hexbin_extent.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hexbin_log.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist2d.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist2d.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist2d.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist2d_transpose.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist2d_transpose.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist2d_transpose.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_log.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_log.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_log.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_offset.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_offset.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_offset.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_bar.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_bar.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_bar.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_normed.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_normed.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_normed.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_step.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_step.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_step.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled_alpha.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled_alpha.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_stepfilled_alpha.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_weights.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_weights.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_stacked_weights.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_step.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_steplog.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_steplog.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hist_steplog.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/imshow.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/imshow.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/imshow.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/imshow_clip.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/imshow_clip.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/imshow_clip.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/log_scales.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/log_scales.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/log_scales.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/marker_edges.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/marker_edges.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/marker_edges.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/markevery.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/markevery.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/markevery.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/markevery_line.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/markevery_line.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/markevery_line.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/mixed_collection.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/mixed_collection.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/mixed_collection.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/mollweide_grid.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/mollweide_grid.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/mollweide_grid.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/offset_points.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/offset_points.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/offset_points.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/pcolormesh.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/pcolormesh.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/pcolormesh.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_axes.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_axes.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_axes.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_coords.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_coords.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_coords.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_rmin.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_rmin.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_rmin.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_theta_position.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_theta_position.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_theta_position.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_units.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_units.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_units.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_units_2.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_units_2.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_units_2.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polycollection_joinstyle.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polycollection_joinstyle.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polycollection_joinstyle.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/psd_freqs.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/psd_noise.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/scatter.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/scatter.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/scatter.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/shaped_data.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/shaped_data.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/shaped_data.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/single_date.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/single_date.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/single_date.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/single_point.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/single_point.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/single_point.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/specgram_freqs.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/specgram_noise.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/stackplot_test_baseline.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/stackplot_test_baseline.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/stackplot_test_baseline.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/stackplot_test_image.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/stackplot_test_image.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/stackplot_test_image.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/step_linestyle.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/step_linestyle.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/step_linestyle.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/symlog.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/symlog.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/symlog.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/symlog2.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/symlog2.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/symlog2.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/test_alpha.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/test_alpha.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/test_alpha.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/transparent_markers.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/transparent_markers.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/transparent_markers.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/twin_axis_locaters_formatters.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/twin_axis_locaters_formatters.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/twin_axis_locaters_formatters.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/twin_spines.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/units_strings.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/units_strings.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/units_strings.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/vertex_markers.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/vline_hline_zorder.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/vline_hline_zorder.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/vline_hline_zorder.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_backend_pdf/pdf_use14corefonts.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_backend_pgf/pgf_mixedmode.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_backend_pgf/pgf_pdflatex.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_backend_pgf/pgf_rcupdate1.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_backend_pgf/pgf_rcupdate2.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_backend_pgf/pgf_xelatex.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_backend_svg/noscale.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_backend_svg/noscale.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_backend_svg/noscale.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_clipping.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_clipping.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_clipping.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_bbox_tight/bbox_inches_tight_suptile_legend.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__add_positions.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__add_positions.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__add_positions.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__append_positions.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__append_positions.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__append_positions.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__default.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__default.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__default.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__extend_positions.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__extend_positions.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__extend_positions.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_color.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_color.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_color.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linelength.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linelength.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linelength.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_lineoffset.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_lineoffset.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_lineoffset.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linestyle.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linestyle.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linestyle.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linewidth.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linewidth.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_linewidth.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_orientation.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_orientation.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_orientation.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_positions.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_positions.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__set_positions.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation__2x.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation__2x.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_collections/EventCollection_plot__switch_orientation__2x.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_colorbar/cbar_locationing.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_colorbar/cbar_sharing.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_colorbar/cbar_with_orientation.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_colorbar/cbar_with_subplots_adjust.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_proportional.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_shape_proportional.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_shape_uniform.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_colorbar/colorbar_extensions_uniform.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_colorbar/double_cbar.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_colors/levels_and_colors.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_compare_images/all127.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_compare_images/all128.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_compare_images/basn3p02-1px-offset.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_compare_images/basn3p02-half-1px-offset.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_compare_images/basn3p02-minorchange.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_compare_images/basn3p02-scrambled.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_compare_images/basn3p02.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_contour/contour_manual_colors_and_levels.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_contour/contour_manual_labels.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_contour/contour_manual_labels.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_contour/contour_manual_labels.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/RRuleLocator_bounds.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axhline.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axhspan.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axvline.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axvspan.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_empty.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/delaunay-1d-interp.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/steep-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/steep-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/steep-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/steep-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/steep-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/steep-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/trig-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/trig-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/trig-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/trig-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/trig-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/trig-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_figure/alpha_background.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_figure/alpha_background.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_figure/figure_suptitle.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_figure/figure_suptitle.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_figure/figure_suptitle.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_figure/figure_today.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_figure/figure_today.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_figure/figure_today.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/figimage-0.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/figimage-1.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_clip.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_clip.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_clip.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_composite_alpha.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_composite_alpha.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_composite_alpha.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_composite_background.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_composite_background.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_composite_background.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_interps.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_interps.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_interps.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_shift.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_shift.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/imshow.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/imshow.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/imshow.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/no_interpolation_origin.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/rasterize_10dpi.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/rasterize_10dpi.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/uint16.tif
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/fancy.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/fancy.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/fancy.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/framealpha.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/framealpha.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/framealpha.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto1.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto1.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto1.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto2.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto2.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto2.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto3.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto3.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto3.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_expand.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_expand.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_expand.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_various_labels.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_various_labels.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_various_labels.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/scatter_rc1.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/scatter_rc1.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/scatter_rc1.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/scatter_rc3.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/scatter_rc3.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/scatter_rc3.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_lines/line_collection_dashes.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_00.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_01.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_02.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_03.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_04.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_05.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_06.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_07.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_08.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_09.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_10.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_11.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_12.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_13.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_14.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_15.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_17.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_18.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_19.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_20.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_21.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_22.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_23.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_24.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_25.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_26.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_27.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_28.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_29.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_30.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_31.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_32.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_33.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_34.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_35.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_36.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_37.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_38.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_39.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_40.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_41.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_42.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_43.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_44.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_45.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_46.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_47.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_48.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_49.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_50.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_51.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_52.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_53.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_54.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_55.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_56.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_57.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_58.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_59.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_00.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_01.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_02.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_03.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_04.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_05.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_06.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_07.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_08.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_09.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_10.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_11.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_12.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_13.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_14.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_15.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_17.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_18.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_19.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_20.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_21.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_22.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_23.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_24.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_25.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_26.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_27.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_28.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_29.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_30.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_31.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_32.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_33.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_34.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_35.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_36.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_37.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_38.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_39.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_40.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_41.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_42.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_43.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_44.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_45.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_46.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_47.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_48.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_49.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_50.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_51.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_52.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_53.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_54.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_55.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_56.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_57.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_58.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_59.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_00.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_01.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_02.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_03.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_04.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_05.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_06.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_07.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_08.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_09.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_10.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_11.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_12.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_13.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_14.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_15.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_17.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_18.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_19.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_20.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_21.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_22.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_23.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_24.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_25.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_26.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_27.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_28.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_29.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_30.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_31.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_32.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_33.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_34.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_35.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_36.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_37.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_38.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_39.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_40.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_41.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_42.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_43.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_44.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_45.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_46.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_47.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_48.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_49.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_50.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_51.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_52.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_53.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_54.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_55.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_56.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_57.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_58.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_59.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_33.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_33.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_33.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_34.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_34.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_34.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_35.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_35.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_35.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_38.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_38.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_38.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_51.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_51.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_51.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_54.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_54.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_54.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_55.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_55.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_55.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_57.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_57.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_57.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_66.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_66.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_66.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_67.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_00.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_00.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_00.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_33.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_33.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_33.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_34.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_34.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_34.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_35.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_35.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_35.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_38.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_38.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_38.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_51.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_51.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_51.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_54.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_54.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_54.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_55.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_55.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_55.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_57.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_57.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_57.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_66.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_66.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_66.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_67.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_00.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_00.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_00.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_33.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_33.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_33.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_34.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_34.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_34.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_35.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_35.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_35.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_38.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_38.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_38.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_51.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_51.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_51.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_54.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_54.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_54.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_55.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_55.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_55.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_57.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_57.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_57.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_66.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_66.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_66.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_67.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_patches/clip_to_bbox.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_patches/clip_to_bbox.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_patches/clip_to_bbox.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_patches/patch_alpha_coloring.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_patches/patch_alpha_override.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_patches/patch_custom_linestyle.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_patheffects/patheffect1.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_patheffects/patheffect1.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_patheffects/patheffect1.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_patheffects/patheffect2.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_patheffects/patheffect2.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_patheffects/patheffect2.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_patheffects/patheffect3.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_patheffects/patheffect3.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_patheffects/patheffect3.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_pickle/multi_pickle.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_png/pngsuite.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_png/uint16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_scale/log_scales.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_scale/log_scales.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_scale/log_scales.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipper_edge.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipper_edge.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipper_edge.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping_with_nans.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping_with_nans.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping_with_nans.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/fft_peaks.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/fft_peaks.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/fft_peaks.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/overflow.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/overflow.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/overflow.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/simplify_curve.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/simplify_curve.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/simplify_curve.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_spines/spines_axes_positions.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_spines/spines_axes_positions.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_spines/spines_axes_positions.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_spines/spines_data_positions.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_spines/spines_data_positions.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_spines/spines_data_positions.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_streamplot/streamplot_colormap_test_image.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_streamplot/streamplot_linewidth_test_image.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_streamplot/streamplot_linewidth_test_image.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_streamplot/streamplot_linewidth_test_image.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_streamplot/streamplot_masks_and_nans_test_image.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_streamplot/streamplot_masks_and_nans_test_image.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_streamplot/streamplot_masks_and_nans_test_image.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_subplots/subplots_offset_text.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_subplots/subplots_offset_text.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_subplots/subplots_offset_text.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_table/table_zorder.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/antialiased.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/font_styles.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/font_styles.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/font_styles.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/multiline.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/multiline.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/multiline.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/text_alignment.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/text_alignment.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/text_alignment.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/text_contains.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/titles.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/titles.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/titles.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout7.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout7.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout7.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout8.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout8.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout8.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_transforms/pre_transform_data.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_transforms/pre_transform_data.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_transforms/pre_transform_data.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_triangulation/tri_smooth_contouring.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_triangulation/tri_smooth_gradient.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_triangulation/tripcolor1.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_triangulation/tripcolor1.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_triangulation/tripcolor1.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_ttconv/truetype-conversion.pdf
${PYSITELIB}/matplotlib/tests/mpltest.ttf
${PYSITELIB}/matplotlib/tests/test_agg.py
${PYSITELIB}/matplotlib/tests/test_agg.pyc
${PYSITELIB}/matplotlib/tests/test_agg.pyo
${PYSITELIB}/matplotlib/tests/test_animation.py
${PYSITELIB}/matplotlib/tests/test_animation.pyc
${PYSITELIB}/matplotlib/tests/test_animation.pyo
${PYSITELIB}/matplotlib/tests/test_arrow_patches.py
${PYSITELIB}/matplotlib/tests/test_arrow_patches.pyc
${PYSITELIB}/matplotlib/tests/test_arrow_patches.pyo
${PYSITELIB}/matplotlib/tests/test_artist.py
${PYSITELIB}/matplotlib/tests/test_artist.pyc
${PYSITELIB}/matplotlib/tests/test_artist.pyo
${PYSITELIB}/matplotlib/tests/test_axes.py
${PYSITELIB}/matplotlib/tests/test_axes.pyc
${PYSITELIB}/matplotlib/tests/test_axes.pyo
${PYSITELIB}/matplotlib/tests/test_backend_pdf.py
${PYSITELIB}/matplotlib/tests/test_backend_pdf.pyc
${PYSITELIB}/matplotlib/tests/test_backend_pdf.pyo
${PYSITELIB}/matplotlib/tests/test_backend_pgf.py
${PYSITELIB}/matplotlib/tests/test_backend_pgf.pyc
${PYSITELIB}/matplotlib/tests/test_backend_pgf.pyo
${PYSITELIB}/matplotlib/tests/test_backend_qt4.py
${PYSITELIB}/matplotlib/tests/test_backend_qt4.pyc
${PYSITELIB}/matplotlib/tests/test_backend_qt4.pyo
${PYSITELIB}/matplotlib/tests/test_backend_svg.py
${PYSITELIB}/matplotlib/tests/test_backend_svg.pyc
${PYSITELIB}/matplotlib/tests/test_backend_svg.pyo
${PYSITELIB}/matplotlib/tests/test_basic.py
${PYSITELIB}/matplotlib/tests/test_basic.pyc
${PYSITELIB}/matplotlib/tests/test_basic.pyo
${PYSITELIB}/matplotlib/tests/test_bbox_tight.py
${PYSITELIB}/matplotlib/tests/test_bbox_tight.pyc
${PYSITELIB}/matplotlib/tests/test_bbox_tight.pyo
${PYSITELIB}/matplotlib/tests/test_cbook.py
${PYSITELIB}/matplotlib/tests/test_cbook.pyc
${PYSITELIB}/matplotlib/tests/test_cbook.pyo
${PYSITELIB}/matplotlib/tests/test_coding_standards.py
${PYSITELIB}/matplotlib/tests/test_coding_standards.pyc
${PYSITELIB}/matplotlib/tests/test_coding_standards.pyo
${PYSITELIB}/matplotlib/tests/test_collections.py
${PYSITELIB}/matplotlib/tests/test_collections.pyc
${PYSITELIB}/matplotlib/tests/test_collections.pyo
${PYSITELIB}/matplotlib/tests/test_colorbar.py
${PYSITELIB}/matplotlib/tests/test_colorbar.pyc
${PYSITELIB}/matplotlib/tests/test_colorbar.pyo
${PYSITELIB}/matplotlib/tests/test_colors.py
${PYSITELIB}/matplotlib/tests/test_colors.pyc
${PYSITELIB}/matplotlib/tests/test_colors.pyo
${PYSITELIB}/matplotlib/tests/test_compare_images.py
${PYSITELIB}/matplotlib/tests/test_compare_images.pyc
${PYSITELIB}/matplotlib/tests/test_compare_images.pyo
${PYSITELIB}/matplotlib/tests/test_contour.py
${PYSITELIB}/matplotlib/tests/test_contour.pyc
${PYSITELIB}/matplotlib/tests/test_contour.pyo
${PYSITELIB}/matplotlib/tests/test_dates.py
${PYSITELIB}/matplotlib/tests/test_dates.pyc
${PYSITELIB}/matplotlib/tests/test_dates.pyo
${PYSITELIB}/matplotlib/tests/test_delaunay.py
${PYSITELIB}/matplotlib/tests/test_delaunay.pyc
${PYSITELIB}/matplotlib/tests/test_delaunay.pyo
${PYSITELIB}/matplotlib/tests/test_dviread.py
${PYSITELIB}/matplotlib/tests/test_dviread.pyc
${PYSITELIB}/matplotlib/tests/test_dviread.pyo
${PYSITELIB}/matplotlib/tests/test_figure.py
${PYSITELIB}/matplotlib/tests/test_figure.pyc
${PYSITELIB}/matplotlib/tests/test_figure.pyo
${PYSITELIB}/matplotlib/tests/test_image.py
${PYSITELIB}/matplotlib/tests/test_image.pyc
${PYSITELIB}/matplotlib/tests/test_image.pyo
${PYSITELIB}/matplotlib/tests/test_legend.py
${PYSITELIB}/matplotlib/tests/test_legend.pyc
${PYSITELIB}/matplotlib/tests/test_legend.pyo
${PYSITELIB}/matplotlib/tests/test_lines.py
${PYSITELIB}/matplotlib/tests/test_lines.pyc
${PYSITELIB}/matplotlib/tests/test_lines.pyo
${PYSITELIB}/matplotlib/tests/test_mathtext.py
${PYSITELIB}/matplotlib/tests/test_mathtext.pyc
${PYSITELIB}/matplotlib/tests/test_mathtext.pyo
${PYSITELIB}/matplotlib/tests/test_mlab.py
${PYSITELIB}/matplotlib/tests/test_mlab.pyc
${PYSITELIB}/matplotlib/tests/test_mlab.pyo
${PYSITELIB}/matplotlib/tests/test_patches.py
${PYSITELIB}/matplotlib/tests/test_patches.pyc
${PYSITELIB}/matplotlib/tests/test_patches.pyo
${PYSITELIB}/matplotlib/tests/test_path.py
${PYSITELIB}/matplotlib/tests/test_path.pyc
${PYSITELIB}/matplotlib/tests/test_path.pyo
${PYSITELIB}/matplotlib/tests/test_patheffects.py
${PYSITELIB}/matplotlib/tests/test_patheffects.pyc
${PYSITELIB}/matplotlib/tests/test_patheffects.pyo
${PYSITELIB}/matplotlib/tests/test_pickle.py
${PYSITELIB}/matplotlib/tests/test_pickle.pyc
${PYSITELIB}/matplotlib/tests/test_pickle.pyo
${PYSITELIB}/matplotlib/tests/test_png.py
${PYSITELIB}/matplotlib/tests/test_png.pyc
${PYSITELIB}/matplotlib/tests/test_png.pyo
${PYSITELIB}/matplotlib/tests/test_rcparams.py
${PYSITELIB}/matplotlib/tests/test_rcparams.pyc
${PYSITELIB}/matplotlib/tests/test_rcparams.pyo
${PYSITELIB}/matplotlib/tests/test_rcparams.rc
${PYSITELIB}/matplotlib/tests/test_sankey.py
${PYSITELIB}/matplotlib/tests/test_sankey.pyc
${PYSITELIB}/matplotlib/tests/test_sankey.pyo
${PYSITELIB}/matplotlib/tests/test_scale.py
${PYSITELIB}/matplotlib/tests/test_scale.pyc
${PYSITELIB}/matplotlib/tests/test_scale.pyo
${PYSITELIB}/matplotlib/tests/test_simplification.py
${PYSITELIB}/matplotlib/tests/test_simplification.pyc
${PYSITELIB}/matplotlib/tests/test_simplification.pyo
${PYSITELIB}/matplotlib/tests/test_spines.py
${PYSITELIB}/matplotlib/tests/test_spines.pyc
${PYSITELIB}/matplotlib/tests/test_spines.pyo
${PYSITELIB}/matplotlib/tests/test_streamplot.py
${PYSITELIB}/matplotlib/tests/test_streamplot.pyc
${PYSITELIB}/matplotlib/tests/test_streamplot.pyo
${PYSITELIB}/matplotlib/tests/test_subplots.py
${PYSITELIB}/matplotlib/tests/test_subplots.pyc
${PYSITELIB}/matplotlib/tests/test_subplots.pyo
${PYSITELIB}/matplotlib/tests/test_table.py
${PYSITELIB}/matplotlib/tests/test_table.pyc
${PYSITELIB}/matplotlib/tests/test_table.pyo
${PYSITELIB}/matplotlib/tests/test_text.py
${PYSITELIB}/matplotlib/tests/test_text.pyc
${PYSITELIB}/matplotlib/tests/test_text.pyo
${PYSITELIB}/matplotlib/tests/test_ticker.py
${PYSITELIB}/matplotlib/tests/test_ticker.pyc
${PYSITELIB}/matplotlib/tests/test_ticker.pyo
${PYSITELIB}/matplotlib/tests/test_tightlayout.py
${PYSITELIB}/matplotlib/tests/test_tightlayout.pyc
${PYSITELIB}/matplotlib/tests/test_tightlayout.pyo
${PYSITELIB}/matplotlib/tests/test_transforms.py
${PYSITELIB}/matplotlib/tests/test_transforms.pyc
${PYSITELIB}/matplotlib/tests/test_transforms.pyo
${PYSITELIB}/matplotlib/tests/test_triangulation.py
${PYSITELIB}/matplotlib/tests/test_triangulation.pyc
${PYSITELIB}/matplotlib/tests/test_triangulation.pyo
${PYSITELIB}/matplotlib/tests/test_ttconv.py
${PYSITELIB}/matplotlib/tests/test_ttconv.pyc
${PYSITELIB}/matplotlib/tests/test_ttconv.pyo
${PYSITELIB}/matplotlib/texmanager.py
${PYSITELIB}/matplotlib/texmanager.pyc
${PYSITELIB}/matplotlib/texmanager.pyo
${PYSITELIB}/matplotlib/text.py
${PYSITELIB}/matplotlib/text.pyc
${PYSITELIB}/matplotlib/text.pyo
${PYSITELIB}/matplotlib/textpath.py
${PYSITELIB}/matplotlib/textpath.pyc
${PYSITELIB}/matplotlib/textpath.pyo
${PYSITELIB}/matplotlib/ticker.py
${PYSITELIB}/matplotlib/ticker.pyc
${PYSITELIB}/matplotlib/ticker.pyo
${PYSITELIB}/matplotlib/tight_bbox.py
${PYSITELIB}/matplotlib/tight_bbox.pyc
${PYSITELIB}/matplotlib/tight_bbox.pyo
${PYSITELIB}/matplotlib/tight_layout.py
${PYSITELIB}/matplotlib/tight_layout.pyc
${PYSITELIB}/matplotlib/tight_layout.pyo
${PYSITELIB}/matplotlib/transforms.py
${PYSITELIB}/matplotlib/transforms.pyc
${PYSITELIB}/matplotlib/transforms.pyo
${PYSITELIB}/matplotlib/tri/__init__.py
${PYSITELIB}/matplotlib/tri/__init__.pyc
${PYSITELIB}/matplotlib/tri/__init__.pyo
${PYSITELIB}/matplotlib/tri/triangulation.py
${PYSITELIB}/matplotlib/tri/triangulation.pyc
${PYSITELIB}/matplotlib/tri/triangulation.pyo
${PYSITELIB}/matplotlib/tri/tricontour.py
${PYSITELIB}/matplotlib/tri/tricontour.pyc
${PYSITELIB}/matplotlib/tri/tricontour.pyo
${PYSITELIB}/matplotlib/tri/trifinder.py
${PYSITELIB}/matplotlib/tri/trifinder.pyc
${PYSITELIB}/matplotlib/tri/trifinder.pyo
${PYSITELIB}/matplotlib/tri/triinterpolate.py
${PYSITELIB}/matplotlib/tri/triinterpolate.pyc
${PYSITELIB}/matplotlib/tri/triinterpolate.pyo
${PYSITELIB}/matplotlib/tri/tripcolor.py
${PYSITELIB}/matplotlib/tri/tripcolor.pyc
${PYSITELIB}/matplotlib/tri/tripcolor.pyo
${PYSITELIB}/matplotlib/tri/triplot.py
${PYSITELIB}/matplotlib/tri/triplot.pyc
${PYSITELIB}/matplotlib/tri/triplot.pyo
${PYSITELIB}/matplotlib/tri/trirefine.py
${PYSITELIB}/matplotlib/tri/trirefine.pyc
${PYSITELIB}/matplotlib/tri/trirefine.pyo
${PYSITELIB}/matplotlib/tri/tritools.py
${PYSITELIB}/matplotlib/tri/tritools.pyc
${PYSITELIB}/matplotlib/tri/tritools.pyo
${PYSITELIB}/matplotlib/ttconv.so
${PYSITELIB}/matplotlib/type1font.py
${PYSITELIB}/matplotlib/type1font.pyc
${PYSITELIB}/matplotlib/type1font.pyo
${PYSITELIB}/matplotlib/units.py
${PYSITELIB}/matplotlib/units.pyc
${PYSITELIB}/matplotlib/units.pyo
${PYSITELIB}/matplotlib/widgets.py
${PYSITELIB}/matplotlib/widgets.pyc
${PYSITELIB}/matplotlib/widgets.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/__init__.py
${PYSITELIB}/mpl_toolkits/axes_grid/__init__.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/__init__.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/anchored_artists.py
${PYSITELIB}/mpl_toolkits/axes_grid/anchored_artists.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/anchored_artists.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/angle_helper.py
${PYSITELIB}/mpl_toolkits/axes_grid/angle_helper.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/angle_helper.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/axes_divider.py
${PYSITELIB}/mpl_toolkits/axes_grid/axes_divider.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/axes_divider.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/axes_grid.py
${PYSITELIB}/mpl_toolkits/axes_grid/axes_grid.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/axes_grid.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/axes_rgb.py
${PYSITELIB}/mpl_toolkits/axes_grid/axes_rgb.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/axes_rgb.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/axes_size.py
${PYSITELIB}/mpl_toolkits/axes_grid/axes_size.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/axes_size.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/axis_artist.py
${PYSITELIB}/mpl_toolkits/axes_grid/axis_artist.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/axis_artist.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/axisline_style.py
${PYSITELIB}/mpl_toolkits/axes_grid/axisline_style.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/axisline_style.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/axislines.py
${PYSITELIB}/mpl_toolkits/axes_grid/axislines.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/axislines.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/clip_path.py
${PYSITELIB}/mpl_toolkits/axes_grid/clip_path.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/clip_path.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/colorbar.py
${PYSITELIB}/mpl_toolkits/axes_grid/colorbar.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/colorbar.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/floating_axes.py
${PYSITELIB}/mpl_toolkits/axes_grid/floating_axes.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/floating_axes.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/grid_finder.py
${PYSITELIB}/mpl_toolkits/axes_grid/grid_finder.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/grid_finder.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/grid_helper_curvelinear.py
${PYSITELIB}/mpl_toolkits/axes_grid/grid_helper_curvelinear.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/grid_helper_curvelinear.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/inset_locator.py
${PYSITELIB}/mpl_toolkits/axes_grid/inset_locator.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/inset_locator.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/parasite_axes.py
${PYSITELIB}/mpl_toolkits/axes_grid/parasite_axes.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/parasite_axes.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/__init__.py
${PYSITELIB}/mpl_toolkits/axes_grid1/__init__.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/__init__.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/anchored_artists.py
${PYSITELIB}/mpl_toolkits/axes_grid1/anchored_artists.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/anchored_artists.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_divider.py
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_divider.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_divider.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_grid.py
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_grid.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_grid.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_rgb.py
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_rgb.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_rgb.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_size.py
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_size.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_size.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/colorbar.py
${PYSITELIB}/mpl_toolkits/axes_grid1/colorbar.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/colorbar.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/inset_locator.py
${PYSITELIB}/mpl_toolkits/axes_grid1/inset_locator.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/inset_locator.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/mpl_axes.py
${PYSITELIB}/mpl_toolkits/axes_grid1/mpl_axes.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/mpl_axes.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/parasite_axes.py
${PYSITELIB}/mpl_toolkits/axes_grid1/parasite_axes.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/parasite_axes.pyo
${PYSITELIB}/mpl_toolkits/axisartist/__init__.py
${PYSITELIB}/mpl_toolkits/axisartist/__init__.pyc
${PYSITELIB}/mpl_toolkits/axisartist/__init__.pyo
${PYSITELIB}/mpl_toolkits/axisartist/angle_helper.py
${PYSITELIB}/mpl_toolkits/axisartist/angle_helper.pyc
${PYSITELIB}/mpl_toolkits/axisartist/angle_helper.pyo
${PYSITELIB}/mpl_toolkits/axisartist/axis_artist.py
${PYSITELIB}/mpl_toolkits/axisartist/axis_artist.pyc
${PYSITELIB}/mpl_toolkits/axisartist/axis_artist.pyo
${PYSITELIB}/mpl_toolkits/axisartist/axisline_style.py
${PYSITELIB}/mpl_toolkits/axisartist/axisline_style.pyc
${PYSITELIB}/mpl_toolkits/axisartist/axisline_style.pyo
${PYSITELIB}/mpl_toolkits/axisartist/axislines.py
${PYSITELIB}/mpl_toolkits/axisartist/axislines.pyc
${PYSITELIB}/mpl_toolkits/axisartist/axislines.pyo
${PYSITELIB}/mpl_toolkits/axisartist/clip_path.py
${PYSITELIB}/mpl_toolkits/axisartist/clip_path.pyc
${PYSITELIB}/mpl_toolkits/axisartist/clip_path.pyo
${PYSITELIB}/mpl_toolkits/axisartist/floating_axes.py
${PYSITELIB}/mpl_toolkits/axisartist/floating_axes.pyc
${PYSITELIB}/mpl_toolkits/axisartist/floating_axes.pyo
${PYSITELIB}/mpl_toolkits/axisartist/grid_finder.py
${PYSITELIB}/mpl_toolkits/axisartist/grid_finder.pyc
${PYSITELIB}/mpl_toolkits/axisartist/grid_finder.pyo
${PYSITELIB}/mpl_toolkits/axisartist/grid_helper_curvelinear.py
${PYSITELIB}/mpl_toolkits/axisartist/grid_helper_curvelinear.pyc
${PYSITELIB}/mpl_toolkits/axisartist/grid_helper_curvelinear.pyo
${PYSITELIB}/mpl_toolkits/exceltools.py
${PYSITELIB}/mpl_toolkits/exceltools.pyc
${PYSITELIB}/mpl_toolkits/exceltools.pyo
${PYSITELIB}/mpl_toolkits/gtktools.py
${PYSITELIB}/mpl_toolkits/gtktools.pyc
${PYSITELIB}/mpl_toolkits/gtktools.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/__init__.py
${PYSITELIB}/mpl_toolkits/mplot3d/__init__.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/__init__.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/art3d.py
${PYSITELIB}/mpl_toolkits/mplot3d/art3d.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/art3d.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/axes3d.py
${PYSITELIB}/mpl_toolkits/mplot3d/axes3d.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/axes3d.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/axis3d.py
${PYSITELIB}/mpl_toolkits/mplot3d/axis3d.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/axis3d.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/proj3d.py
${PYSITELIB}/mpl_toolkits/mplot3d/proj3d.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/proj3d.pyo
${PYSITELIB}/pylab.py
${PYSITELIB}/pylab.pyc
${PYSITELIB}/pylab.pyo