├── .coveragerc ├── .gitignore ├── .readthedocs.yml ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── _static │ └── .gitignore ├── changelog.rst ├── conf.py ├── contributors.md ├── example-data │ ├── Fransfontein-fence │ │ ├── A1.xlsx │ │ ├── A14.xlsx │ │ ├── A16.xlsx │ │ ├── A17.xlsx │ │ ├── A18.xlsx │ │ ├── A19.xlsx │ │ ├── A20.xlsx │ │ ├── A22.xlsx │ │ ├── A23.xlsx │ │ ├── A24.xlsx │ │ ├── A26.xlsx │ │ ├── A9.xlsx │ │ ├── chemostratigraphy.csv │ │ ├── coordinates.csv │ │ ├── correlations.csv │ │ └── style.csv │ ├── Tambien_fence │ │ ├── T49.csv │ │ ├── T50.csv │ │ ├── T61.csv │ │ ├── T64.csv │ │ └── style.csv │ ├── annotation_paths.csv │ ├── annotations.csv │ ├── annotations │ │ ├── black shale.png │ │ ├── climbing ripples.png │ │ ├── convolute.png │ │ ├── current.png │ │ ├── dropstone.png │ │ ├── geochron.png │ │ ├── hcs.png │ │ ├── microbial.png │ │ ├── mud crack.png │ │ ├── mudcrack.png │ │ ├── nodule.png │ │ ├── oolite.png │ │ ├── pillow.png │ │ ├── slump.png │ │ ├── stromatolite.png │ │ ├── swaley.png │ │ ├── trough.png │ │ └── wave ripples.png │ ├── chemostratigraphy.csv │ ├── geochronology.csv │ ├── lithostratigraphy.csv │ └── style.csv ├── fence_diagrams.ipynb ├── index.rst ├── license.rst ├── quickstart.ipynb ├── requirements.txt ├── sections.ipynb └── swatches.md ├── images ├── class-hierarchy.pdf ├── class-hierarchy.png ├── pystrat-logo.ai ├── pystrat-logo.png ├── swatch_ign_meta.png ├── swatch_sed1.png └── swatch_sed2.png ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src └── pystrat │ ├── __init__.py │ ├── annotations │ ├── black shale.png │ ├── climbing ripples.png │ ├── convolute.png │ ├── current.png │ ├── dropstone.png │ ├── geochron.png │ ├── hcs.png │ ├── microbial.png │ ├── mudcrack.png │ ├── nodule.png │ ├── oolite.png │ ├── pillow.png │ ├── slump.png │ ├── stromatolite.png │ ├── swaley.png │ ├── trough.png │ └── wave ripples.png │ ├── pystrat.py │ └── swatches │ ├── 601.png │ ├── 602.png │ ├── 603.png │ ├── 605.png │ ├── 606.png │ ├── 607.png │ ├── 608.png │ ├── 609.png │ ├── 610.png │ ├── 611.png │ ├── 612.png │ ├── 613.png │ ├── 614.png │ ├── 616.png │ ├── 617.png │ ├── 618.png │ ├── 619.png │ ├── 620.png │ ├── 621.png │ ├── 622.png │ ├── 623.png │ ├── 624.png │ ├── 625.png │ ├── 626.png │ ├── 627.png │ ├── 628.png │ ├── 629.png │ ├── 630.png │ ├── 631.png │ ├── 632.png │ ├── 633.png │ ├── 634.png │ ├── 635.png │ ├── 636.png │ ├── 637.png │ ├── 638.png │ ├── 639.png │ ├── 640.png │ ├── 641.png │ ├── 642.png │ ├── 643.png │ ├── 644.png │ ├── 645.png │ ├── 646.png │ ├── 647.png │ ├── 648.png │ ├── 649.png │ ├── 650.png │ ├── 651.png │ ├── 652.png │ ├── 653.png │ ├── 654.png │ ├── 655.png │ ├── 656.png │ ├── 657.png │ ├── 658.png │ ├── 659.png │ ├── 660.png │ ├── 661.png │ ├── 662.png │ ├── 663.png │ ├── 664.png │ ├── 665.png │ ├── 666.png │ ├── 667.png │ ├── 668.png │ ├── 669.png │ ├── 670.png │ ├── 671.png │ ├── 672.png │ ├── 673.png │ ├── 674.png │ ├── 675.png │ ├── 676.png │ ├── 677.png │ ├── 678.png │ ├── 679.png │ ├── 680.png │ ├── 681.png │ ├── 682.png │ ├── 683.png │ ├── 684.png │ ├── 685.png │ ├── 686.png │ ├── 701.png │ ├── 702.png │ ├── 703.png │ ├── 704.png │ ├── 705.png │ ├── 706.png │ ├── 707.png │ ├── 708.png │ ├── 709.png │ ├── 710.png │ ├── 711.png │ ├── 712.png │ ├── 713.png │ ├── 714.png │ ├── 715.png │ ├── 716.png │ ├── 717.png │ ├── 719.png │ ├── 720.png │ ├── 721.png │ ├── 722.png │ ├── 723.png │ ├── 724.png │ ├── 725.png │ ├── 726.png │ ├── 727.png │ ├── 728.png │ ├── 729.png │ ├── 730.png │ ├── 731.png │ ├── 732.png │ └── 733.png ├── swatches ├── SVG │ ├── 601.svg │ ├── 602.svg │ ├── 603.svg │ ├── 605.svg │ ├── 606.svg │ ├── 607.svg │ ├── 608.svg │ ├── 609.svg │ ├── 610.svg │ ├── 611.svg │ ├── 612.svg │ ├── 613.svg │ ├── 614.svg │ ├── 616.svg │ ├── 617.svg │ ├── 618.svg │ ├── 619.svg │ ├── 620.svg │ ├── 621.svg │ ├── 622.svg │ ├── 623.svg │ ├── 624.svg │ ├── 625.svg │ ├── 626.svg │ ├── 627.svg │ ├── 628.svg │ ├── 629.svg │ ├── 630.svg │ ├── 631.svg │ ├── 632.svg │ ├── 633.svg │ ├── 634.svg │ ├── 635.svg │ ├── 636.svg │ ├── 637.svg │ ├── 638.svg │ ├── 639.svg │ ├── 640.svg │ ├── 641.svg │ ├── 642.svg │ ├── 643.svg │ ├── 644.svg │ ├── 645.svg │ ├── 646.svg │ ├── 647.svg │ ├── 648.svg │ ├── 649.svg │ ├── 650.svg │ ├── 651.svg │ ├── 652.svg │ ├── 653.svg │ ├── 654.svg │ ├── 655.svg │ ├── 656.svg │ ├── 657.svg │ ├── 658.svg │ ├── 659.svg │ ├── 660.svg │ ├── 661.svg │ ├── 662.svg │ ├── 663.svg │ ├── 664.svg │ ├── 665.svg │ ├── 666.svg │ ├── 667.svg │ ├── 668.svg │ ├── 669.svg │ ├── 670.svg │ ├── 671.svg │ ├── 672.svg │ ├── 673.svg │ ├── 674.svg │ ├── 675.svg │ ├── 676.svg │ ├── 677.svg │ ├── 678.svg │ ├── 679.svg │ ├── 680.svg │ ├── 681.svg │ ├── 682.svg │ ├── 683.svg │ ├── 684.svg │ ├── 685.svg │ ├── 686.svg │ ├── 701.svg │ ├── 702.svg │ ├── 703.svg │ ├── 704.svg │ ├── 705.svg │ ├── 706.svg │ ├── 707.svg │ ├── 708.svg │ ├── 709.svg │ ├── 710.svg │ ├── 711.svg │ ├── 712.svg │ ├── 713.svg │ ├── 714.svg │ ├── 715.svg │ ├── 716.svg │ ├── 717.svg │ ├── 719.svg │ ├── 720.svg │ ├── 721.svg │ ├── 722.svg │ ├── 723.svg │ ├── 724.svg │ ├── 725.svg │ ├── 726.svg │ ├── 727.svg │ ├── 728.svg │ ├── 729.svg │ ├── 730.svg │ ├── 731.svg │ ├── 732.svg │ └── 733.svg ├── USGS_pattern_pages │ ├── FGDCgeostdTM11A2_A-37-01.ai │ ├── FGDCgeostdTM11A2_A-37-02.ai │ ├── FGDCgeostdTM11A2_A-37-03.ai │ └── FGDCgeostdTM11A2_PattCh.ai ├── png │ ├── 601.png │ ├── 602.png │ ├── 603.png │ ├── 605.png │ ├── 606.png │ ├── 607.png │ ├── 608.png │ ├── 609.png │ ├── 610.png │ ├── 611.png │ ├── 612.png │ ├── 613.png │ ├── 614.png │ ├── 616.png │ ├── 617.png │ ├── 618.png │ ├── 619.png │ ├── 620.png │ ├── 621.png │ ├── 622.png │ ├── 623.png │ ├── 624.png │ ├── 625.png │ ├── 626.png │ ├── 627.png │ ├── 628.png │ ├── 629.png │ ├── 630.png │ ├── 631.png │ ├── 632.png │ ├── 633.png │ ├── 634.png │ ├── 635.png │ ├── 636.png │ ├── 637.png │ ├── 638.png │ ├── 639.png │ ├── 640.png │ ├── 641.png │ ├── 642.png │ ├── 643.png │ ├── 644.png │ ├── 645.png │ ├── 646.png │ ├── 647.png │ ├── 648.png │ ├── 649.png │ ├── 650.png │ ├── 651.png │ ├── 652.png │ ├── 653.png │ ├── 654.png │ ├── 655.png │ ├── 656.png │ ├── 657.png │ ├── 658.png │ ├── 659.png │ ├── 660.png │ ├── 661.png │ ├── 662.png │ ├── 663.png │ ├── 664.png │ ├── 665.png │ ├── 666.png │ ├── 667.png │ ├── 668.png │ ├── 669.png │ ├── 670.png │ ├── 671.png │ ├── 672.png │ ├── 673.png │ ├── 674.png │ ├── 675.png │ ├── 676.png │ ├── 677.png │ ├── 678.png │ ├── 679.png │ ├── 680.png │ ├── 681.png │ ├── 682.png │ ├── 683.png │ ├── 684.png │ ├── 685.png │ ├── 686.png │ ├── 701.png │ ├── 702.png │ ├── 703.png │ ├── 704.png │ ├── 705.png │ ├── 706.png │ ├── 707.png │ ├── 708.png │ ├── 709.png │ ├── 710.png │ ├── 711.png │ ├── 712.png │ ├── 713.png │ ├── 714.png │ ├── 715.png │ ├── 716.png │ ├── 717.png │ ├── 719.png │ ├── 720.png │ ├── 721.png │ ├── 722.png │ ├── 723.png │ ├── 724.png │ ├── 725.png │ ├── 726.png │ ├── 727.png │ ├── 728.png │ ├── 729.png │ ├── 730.png │ ├── 731.png │ ├── 732.png │ └── 733.png └── svg2png.py ├── tests └── conftest.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitignore: -------------------------------------------------------------------------------- 1 | # Empty directory 2 | -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/contributors.md -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/A1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/A1.xlsx -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/A14.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/A14.xlsx -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/A16.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/A16.xlsx -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/A17.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/A17.xlsx -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/A18.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/A18.xlsx -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/A19.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/A19.xlsx -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/A20.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/A20.xlsx -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/A22.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/A22.xlsx -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/A23.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/A23.xlsx -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/A24.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/A24.xlsx -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/A26.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/A26.xlsx -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/A9.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/A9.xlsx -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/chemostratigraphy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/chemostratigraphy.csv -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/coordinates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/coordinates.csv -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/correlations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/correlations.csv -------------------------------------------------------------------------------- /docs/example-data/Fransfontein-fence/style.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Fransfontein-fence/style.csv -------------------------------------------------------------------------------- /docs/example-data/Tambien_fence/T49.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Tambien_fence/T49.csv -------------------------------------------------------------------------------- /docs/example-data/Tambien_fence/T50.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Tambien_fence/T50.csv -------------------------------------------------------------------------------- /docs/example-data/Tambien_fence/T61.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Tambien_fence/T61.csv -------------------------------------------------------------------------------- /docs/example-data/Tambien_fence/T64.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Tambien_fence/T64.csv -------------------------------------------------------------------------------- /docs/example-data/Tambien_fence/style.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/Tambien_fence/style.csv -------------------------------------------------------------------------------- /docs/example-data/annotation_paths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotation_paths.csv -------------------------------------------------------------------------------- /docs/example-data/annotations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations.csv -------------------------------------------------------------------------------- /docs/example-data/annotations/black shale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/black shale.png -------------------------------------------------------------------------------- /docs/example-data/annotations/climbing ripples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/climbing ripples.png -------------------------------------------------------------------------------- /docs/example-data/annotations/convolute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/convolute.png -------------------------------------------------------------------------------- /docs/example-data/annotations/current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/current.png -------------------------------------------------------------------------------- /docs/example-data/annotations/dropstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/dropstone.png -------------------------------------------------------------------------------- /docs/example-data/annotations/geochron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/geochron.png -------------------------------------------------------------------------------- /docs/example-data/annotations/hcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/hcs.png -------------------------------------------------------------------------------- /docs/example-data/annotations/microbial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/microbial.png -------------------------------------------------------------------------------- /docs/example-data/annotations/mud crack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/mud crack.png -------------------------------------------------------------------------------- /docs/example-data/annotations/mudcrack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/mudcrack.png -------------------------------------------------------------------------------- /docs/example-data/annotations/nodule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/nodule.png -------------------------------------------------------------------------------- /docs/example-data/annotations/oolite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/oolite.png -------------------------------------------------------------------------------- /docs/example-data/annotations/pillow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/pillow.png -------------------------------------------------------------------------------- /docs/example-data/annotations/slump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/slump.png -------------------------------------------------------------------------------- /docs/example-data/annotations/stromatolite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/stromatolite.png -------------------------------------------------------------------------------- /docs/example-data/annotations/swaley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/swaley.png -------------------------------------------------------------------------------- /docs/example-data/annotations/trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/trough.png -------------------------------------------------------------------------------- /docs/example-data/annotations/wave ripples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/annotations/wave ripples.png -------------------------------------------------------------------------------- /docs/example-data/chemostratigraphy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/chemostratigraphy.csv -------------------------------------------------------------------------------- /docs/example-data/geochronology.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/geochronology.csv -------------------------------------------------------------------------------- /docs/example-data/lithostratigraphy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/lithostratigraphy.csv -------------------------------------------------------------------------------- /docs/example-data/style.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/example-data/style.csv -------------------------------------------------------------------------------- /docs/fence_diagrams.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/fence_diagrams.ipynb -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/quickstart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/quickstart.ipynb -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/sections.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/sections.ipynb -------------------------------------------------------------------------------- /docs/swatches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/docs/swatches.md -------------------------------------------------------------------------------- /images/class-hierarchy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/images/class-hierarchy.pdf -------------------------------------------------------------------------------- /images/class-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/images/class-hierarchy.png -------------------------------------------------------------------------------- /images/pystrat-logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/images/pystrat-logo.ai -------------------------------------------------------------------------------- /images/pystrat-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/images/pystrat-logo.png -------------------------------------------------------------------------------- /images/swatch_ign_meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/images/swatch_ign_meta.png -------------------------------------------------------------------------------- /images/swatch_sed1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/images/swatch_sed1.png -------------------------------------------------------------------------------- /images/swatch_sed2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/images/swatch_sed2.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/setup.py -------------------------------------------------------------------------------- /src/pystrat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/__init__.py -------------------------------------------------------------------------------- /src/pystrat/annotations/black shale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/black shale.png -------------------------------------------------------------------------------- /src/pystrat/annotations/climbing ripples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/climbing ripples.png -------------------------------------------------------------------------------- /src/pystrat/annotations/convolute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/convolute.png -------------------------------------------------------------------------------- /src/pystrat/annotations/current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/current.png -------------------------------------------------------------------------------- /src/pystrat/annotations/dropstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/dropstone.png -------------------------------------------------------------------------------- /src/pystrat/annotations/geochron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/geochron.png -------------------------------------------------------------------------------- /src/pystrat/annotations/hcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/hcs.png -------------------------------------------------------------------------------- /src/pystrat/annotations/microbial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/microbial.png -------------------------------------------------------------------------------- /src/pystrat/annotations/mudcrack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/mudcrack.png -------------------------------------------------------------------------------- /src/pystrat/annotations/nodule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/nodule.png -------------------------------------------------------------------------------- /src/pystrat/annotations/oolite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/oolite.png -------------------------------------------------------------------------------- /src/pystrat/annotations/pillow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/pillow.png -------------------------------------------------------------------------------- /src/pystrat/annotations/slump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/slump.png -------------------------------------------------------------------------------- /src/pystrat/annotations/stromatolite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/stromatolite.png -------------------------------------------------------------------------------- /src/pystrat/annotations/swaley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/swaley.png -------------------------------------------------------------------------------- /src/pystrat/annotations/trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/trough.png -------------------------------------------------------------------------------- /src/pystrat/annotations/wave ripples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/annotations/wave ripples.png -------------------------------------------------------------------------------- /src/pystrat/pystrat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/pystrat.py -------------------------------------------------------------------------------- /src/pystrat/swatches/601.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/601.png -------------------------------------------------------------------------------- /src/pystrat/swatches/602.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/602.png -------------------------------------------------------------------------------- /src/pystrat/swatches/603.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/603.png -------------------------------------------------------------------------------- /src/pystrat/swatches/605.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/605.png -------------------------------------------------------------------------------- /src/pystrat/swatches/606.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/606.png -------------------------------------------------------------------------------- /src/pystrat/swatches/607.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/607.png -------------------------------------------------------------------------------- /src/pystrat/swatches/608.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/608.png -------------------------------------------------------------------------------- /src/pystrat/swatches/609.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/609.png -------------------------------------------------------------------------------- /src/pystrat/swatches/610.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/610.png -------------------------------------------------------------------------------- /src/pystrat/swatches/611.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/611.png -------------------------------------------------------------------------------- /src/pystrat/swatches/612.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/612.png -------------------------------------------------------------------------------- /src/pystrat/swatches/613.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/613.png -------------------------------------------------------------------------------- /src/pystrat/swatches/614.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/614.png -------------------------------------------------------------------------------- /src/pystrat/swatches/616.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/616.png -------------------------------------------------------------------------------- /src/pystrat/swatches/617.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/617.png -------------------------------------------------------------------------------- /src/pystrat/swatches/618.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/618.png -------------------------------------------------------------------------------- /src/pystrat/swatches/619.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/619.png -------------------------------------------------------------------------------- /src/pystrat/swatches/620.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/620.png -------------------------------------------------------------------------------- /src/pystrat/swatches/621.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/621.png -------------------------------------------------------------------------------- /src/pystrat/swatches/622.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/622.png -------------------------------------------------------------------------------- /src/pystrat/swatches/623.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/623.png -------------------------------------------------------------------------------- /src/pystrat/swatches/624.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/624.png -------------------------------------------------------------------------------- /src/pystrat/swatches/625.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/625.png -------------------------------------------------------------------------------- /src/pystrat/swatches/626.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/626.png -------------------------------------------------------------------------------- /src/pystrat/swatches/627.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/627.png -------------------------------------------------------------------------------- /src/pystrat/swatches/628.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/628.png -------------------------------------------------------------------------------- /src/pystrat/swatches/629.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/629.png -------------------------------------------------------------------------------- /src/pystrat/swatches/630.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/630.png -------------------------------------------------------------------------------- /src/pystrat/swatches/631.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/631.png -------------------------------------------------------------------------------- /src/pystrat/swatches/632.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/632.png -------------------------------------------------------------------------------- /src/pystrat/swatches/633.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/633.png -------------------------------------------------------------------------------- /src/pystrat/swatches/634.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/634.png -------------------------------------------------------------------------------- /src/pystrat/swatches/635.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/635.png -------------------------------------------------------------------------------- /src/pystrat/swatches/636.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/636.png -------------------------------------------------------------------------------- /src/pystrat/swatches/637.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/637.png -------------------------------------------------------------------------------- /src/pystrat/swatches/638.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/638.png -------------------------------------------------------------------------------- /src/pystrat/swatches/639.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/639.png -------------------------------------------------------------------------------- /src/pystrat/swatches/640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/640.png -------------------------------------------------------------------------------- /src/pystrat/swatches/641.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/641.png -------------------------------------------------------------------------------- /src/pystrat/swatches/642.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/642.png -------------------------------------------------------------------------------- /src/pystrat/swatches/643.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/643.png -------------------------------------------------------------------------------- /src/pystrat/swatches/644.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/644.png -------------------------------------------------------------------------------- /src/pystrat/swatches/645.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/645.png -------------------------------------------------------------------------------- /src/pystrat/swatches/646.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/646.png -------------------------------------------------------------------------------- /src/pystrat/swatches/647.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/647.png -------------------------------------------------------------------------------- /src/pystrat/swatches/648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/648.png -------------------------------------------------------------------------------- /src/pystrat/swatches/649.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/649.png -------------------------------------------------------------------------------- /src/pystrat/swatches/650.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/650.png -------------------------------------------------------------------------------- /src/pystrat/swatches/651.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/651.png -------------------------------------------------------------------------------- /src/pystrat/swatches/652.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/652.png -------------------------------------------------------------------------------- /src/pystrat/swatches/653.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/653.png -------------------------------------------------------------------------------- /src/pystrat/swatches/654.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/654.png -------------------------------------------------------------------------------- /src/pystrat/swatches/655.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/655.png -------------------------------------------------------------------------------- /src/pystrat/swatches/656.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/656.png -------------------------------------------------------------------------------- /src/pystrat/swatches/657.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/657.png -------------------------------------------------------------------------------- /src/pystrat/swatches/658.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/658.png -------------------------------------------------------------------------------- /src/pystrat/swatches/659.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/659.png -------------------------------------------------------------------------------- /src/pystrat/swatches/660.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/660.png -------------------------------------------------------------------------------- /src/pystrat/swatches/661.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/661.png -------------------------------------------------------------------------------- /src/pystrat/swatches/662.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/662.png -------------------------------------------------------------------------------- /src/pystrat/swatches/663.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/663.png -------------------------------------------------------------------------------- /src/pystrat/swatches/664.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/664.png -------------------------------------------------------------------------------- /src/pystrat/swatches/665.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/665.png -------------------------------------------------------------------------------- /src/pystrat/swatches/666.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/666.png -------------------------------------------------------------------------------- /src/pystrat/swatches/667.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/667.png -------------------------------------------------------------------------------- /src/pystrat/swatches/668.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/668.png -------------------------------------------------------------------------------- /src/pystrat/swatches/669.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/669.png -------------------------------------------------------------------------------- /src/pystrat/swatches/670.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/670.png -------------------------------------------------------------------------------- /src/pystrat/swatches/671.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/671.png -------------------------------------------------------------------------------- /src/pystrat/swatches/672.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/672.png -------------------------------------------------------------------------------- /src/pystrat/swatches/673.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/673.png -------------------------------------------------------------------------------- /src/pystrat/swatches/674.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/674.png -------------------------------------------------------------------------------- /src/pystrat/swatches/675.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/675.png -------------------------------------------------------------------------------- /src/pystrat/swatches/676.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/676.png -------------------------------------------------------------------------------- /src/pystrat/swatches/677.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/677.png -------------------------------------------------------------------------------- /src/pystrat/swatches/678.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/678.png -------------------------------------------------------------------------------- /src/pystrat/swatches/679.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/679.png -------------------------------------------------------------------------------- /src/pystrat/swatches/680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/680.png -------------------------------------------------------------------------------- /src/pystrat/swatches/681.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/681.png -------------------------------------------------------------------------------- /src/pystrat/swatches/682.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/682.png -------------------------------------------------------------------------------- /src/pystrat/swatches/683.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/683.png -------------------------------------------------------------------------------- /src/pystrat/swatches/684.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/684.png -------------------------------------------------------------------------------- /src/pystrat/swatches/685.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/685.png -------------------------------------------------------------------------------- /src/pystrat/swatches/686.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/686.png -------------------------------------------------------------------------------- /src/pystrat/swatches/701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/701.png -------------------------------------------------------------------------------- /src/pystrat/swatches/702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/702.png -------------------------------------------------------------------------------- /src/pystrat/swatches/703.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/703.png -------------------------------------------------------------------------------- /src/pystrat/swatches/704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/704.png -------------------------------------------------------------------------------- /src/pystrat/swatches/705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/705.png -------------------------------------------------------------------------------- /src/pystrat/swatches/706.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/706.png -------------------------------------------------------------------------------- /src/pystrat/swatches/707.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/707.png -------------------------------------------------------------------------------- /src/pystrat/swatches/708.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/708.png -------------------------------------------------------------------------------- /src/pystrat/swatches/709.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/709.png -------------------------------------------------------------------------------- /src/pystrat/swatches/710.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/710.png -------------------------------------------------------------------------------- /src/pystrat/swatches/711.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/711.png -------------------------------------------------------------------------------- /src/pystrat/swatches/712.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/712.png -------------------------------------------------------------------------------- /src/pystrat/swatches/713.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/713.png -------------------------------------------------------------------------------- /src/pystrat/swatches/714.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/714.png -------------------------------------------------------------------------------- /src/pystrat/swatches/715.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/715.png -------------------------------------------------------------------------------- /src/pystrat/swatches/716.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/716.png -------------------------------------------------------------------------------- /src/pystrat/swatches/717.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/717.png -------------------------------------------------------------------------------- /src/pystrat/swatches/719.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/719.png -------------------------------------------------------------------------------- /src/pystrat/swatches/720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/720.png -------------------------------------------------------------------------------- /src/pystrat/swatches/721.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/721.png -------------------------------------------------------------------------------- /src/pystrat/swatches/722.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/722.png -------------------------------------------------------------------------------- /src/pystrat/swatches/723.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/723.png -------------------------------------------------------------------------------- /src/pystrat/swatches/724.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/724.png -------------------------------------------------------------------------------- /src/pystrat/swatches/725.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/725.png -------------------------------------------------------------------------------- /src/pystrat/swatches/726.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/726.png -------------------------------------------------------------------------------- /src/pystrat/swatches/727.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/727.png -------------------------------------------------------------------------------- /src/pystrat/swatches/728.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/728.png -------------------------------------------------------------------------------- /src/pystrat/swatches/729.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/729.png -------------------------------------------------------------------------------- /src/pystrat/swatches/730.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/730.png -------------------------------------------------------------------------------- /src/pystrat/swatches/731.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/731.png -------------------------------------------------------------------------------- /src/pystrat/swatches/732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/732.png -------------------------------------------------------------------------------- /src/pystrat/swatches/733.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/src/pystrat/swatches/733.png -------------------------------------------------------------------------------- /swatches/SVG/601.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/601.svg -------------------------------------------------------------------------------- /swatches/SVG/602.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/602.svg -------------------------------------------------------------------------------- /swatches/SVG/603.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/603.svg -------------------------------------------------------------------------------- /swatches/SVG/605.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/605.svg -------------------------------------------------------------------------------- /swatches/SVG/606.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/606.svg -------------------------------------------------------------------------------- /swatches/SVG/607.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/607.svg -------------------------------------------------------------------------------- /swatches/SVG/608.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/608.svg -------------------------------------------------------------------------------- /swatches/SVG/609.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/609.svg -------------------------------------------------------------------------------- /swatches/SVG/610.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/610.svg -------------------------------------------------------------------------------- /swatches/SVG/611.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/611.svg -------------------------------------------------------------------------------- /swatches/SVG/612.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/612.svg -------------------------------------------------------------------------------- /swatches/SVG/613.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/613.svg -------------------------------------------------------------------------------- /swatches/SVG/614.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/614.svg -------------------------------------------------------------------------------- /swatches/SVG/616.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/616.svg -------------------------------------------------------------------------------- /swatches/SVG/617.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/617.svg -------------------------------------------------------------------------------- /swatches/SVG/618.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/618.svg -------------------------------------------------------------------------------- /swatches/SVG/619.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/619.svg -------------------------------------------------------------------------------- /swatches/SVG/620.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/620.svg -------------------------------------------------------------------------------- /swatches/SVG/621.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/621.svg -------------------------------------------------------------------------------- /swatches/SVG/622.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/622.svg -------------------------------------------------------------------------------- /swatches/SVG/623.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/623.svg -------------------------------------------------------------------------------- /swatches/SVG/624.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/624.svg -------------------------------------------------------------------------------- /swatches/SVG/625.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/625.svg -------------------------------------------------------------------------------- /swatches/SVG/626.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/626.svg -------------------------------------------------------------------------------- /swatches/SVG/627.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/627.svg -------------------------------------------------------------------------------- /swatches/SVG/628.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/628.svg -------------------------------------------------------------------------------- /swatches/SVG/629.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/629.svg -------------------------------------------------------------------------------- /swatches/SVG/630.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/630.svg -------------------------------------------------------------------------------- /swatches/SVG/631.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/631.svg -------------------------------------------------------------------------------- /swatches/SVG/632.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/632.svg -------------------------------------------------------------------------------- /swatches/SVG/633.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/633.svg -------------------------------------------------------------------------------- /swatches/SVG/634.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/634.svg -------------------------------------------------------------------------------- /swatches/SVG/635.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/635.svg -------------------------------------------------------------------------------- /swatches/SVG/636.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/636.svg -------------------------------------------------------------------------------- /swatches/SVG/637.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/637.svg -------------------------------------------------------------------------------- /swatches/SVG/638.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/638.svg -------------------------------------------------------------------------------- /swatches/SVG/639.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/639.svg -------------------------------------------------------------------------------- /swatches/SVG/640.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/640.svg -------------------------------------------------------------------------------- /swatches/SVG/641.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/641.svg -------------------------------------------------------------------------------- /swatches/SVG/642.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/642.svg -------------------------------------------------------------------------------- /swatches/SVG/643.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/643.svg -------------------------------------------------------------------------------- /swatches/SVG/644.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/644.svg -------------------------------------------------------------------------------- /swatches/SVG/645.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/645.svg -------------------------------------------------------------------------------- /swatches/SVG/646.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/646.svg -------------------------------------------------------------------------------- /swatches/SVG/647.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/647.svg -------------------------------------------------------------------------------- /swatches/SVG/648.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/648.svg -------------------------------------------------------------------------------- /swatches/SVG/649.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/649.svg -------------------------------------------------------------------------------- /swatches/SVG/650.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/650.svg -------------------------------------------------------------------------------- /swatches/SVG/651.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/651.svg -------------------------------------------------------------------------------- /swatches/SVG/652.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/652.svg -------------------------------------------------------------------------------- /swatches/SVG/653.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/653.svg -------------------------------------------------------------------------------- /swatches/SVG/654.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/654.svg -------------------------------------------------------------------------------- /swatches/SVG/655.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/655.svg -------------------------------------------------------------------------------- /swatches/SVG/656.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/656.svg -------------------------------------------------------------------------------- /swatches/SVG/657.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/657.svg -------------------------------------------------------------------------------- /swatches/SVG/658.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/658.svg -------------------------------------------------------------------------------- /swatches/SVG/659.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/659.svg -------------------------------------------------------------------------------- /swatches/SVG/660.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/660.svg -------------------------------------------------------------------------------- /swatches/SVG/661.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/661.svg -------------------------------------------------------------------------------- /swatches/SVG/662.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/662.svg -------------------------------------------------------------------------------- /swatches/SVG/663.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/663.svg -------------------------------------------------------------------------------- /swatches/SVG/664.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/664.svg -------------------------------------------------------------------------------- /swatches/SVG/665.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/665.svg -------------------------------------------------------------------------------- /swatches/SVG/666.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/666.svg -------------------------------------------------------------------------------- /swatches/SVG/667.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/667.svg -------------------------------------------------------------------------------- /swatches/SVG/668.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/668.svg -------------------------------------------------------------------------------- /swatches/SVG/669.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/669.svg -------------------------------------------------------------------------------- /swatches/SVG/670.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/670.svg -------------------------------------------------------------------------------- /swatches/SVG/671.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/671.svg -------------------------------------------------------------------------------- /swatches/SVG/672.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/672.svg -------------------------------------------------------------------------------- /swatches/SVG/673.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/673.svg -------------------------------------------------------------------------------- /swatches/SVG/674.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/674.svg -------------------------------------------------------------------------------- /swatches/SVG/675.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/675.svg -------------------------------------------------------------------------------- /swatches/SVG/676.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/676.svg -------------------------------------------------------------------------------- /swatches/SVG/677.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/677.svg -------------------------------------------------------------------------------- /swatches/SVG/678.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/678.svg -------------------------------------------------------------------------------- /swatches/SVG/679.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/679.svg -------------------------------------------------------------------------------- /swatches/SVG/680.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/680.svg -------------------------------------------------------------------------------- /swatches/SVG/681.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/681.svg -------------------------------------------------------------------------------- /swatches/SVG/682.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/682.svg -------------------------------------------------------------------------------- /swatches/SVG/683.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/683.svg -------------------------------------------------------------------------------- /swatches/SVG/684.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/684.svg -------------------------------------------------------------------------------- /swatches/SVG/685.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/685.svg -------------------------------------------------------------------------------- /swatches/SVG/686.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/686.svg -------------------------------------------------------------------------------- /swatches/SVG/701.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/701.svg -------------------------------------------------------------------------------- /swatches/SVG/702.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/702.svg -------------------------------------------------------------------------------- /swatches/SVG/703.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/703.svg -------------------------------------------------------------------------------- /swatches/SVG/704.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/704.svg -------------------------------------------------------------------------------- /swatches/SVG/705.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/705.svg -------------------------------------------------------------------------------- /swatches/SVG/706.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/706.svg -------------------------------------------------------------------------------- /swatches/SVG/707.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/707.svg -------------------------------------------------------------------------------- /swatches/SVG/708.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/708.svg -------------------------------------------------------------------------------- /swatches/SVG/709.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/709.svg -------------------------------------------------------------------------------- /swatches/SVG/710.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/710.svg -------------------------------------------------------------------------------- /swatches/SVG/711.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/711.svg -------------------------------------------------------------------------------- /swatches/SVG/712.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/712.svg -------------------------------------------------------------------------------- /swatches/SVG/713.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/713.svg -------------------------------------------------------------------------------- /swatches/SVG/714.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/714.svg -------------------------------------------------------------------------------- /swatches/SVG/715.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/715.svg -------------------------------------------------------------------------------- /swatches/SVG/716.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/716.svg -------------------------------------------------------------------------------- /swatches/SVG/717.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/717.svg -------------------------------------------------------------------------------- /swatches/SVG/719.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/719.svg -------------------------------------------------------------------------------- /swatches/SVG/720.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/720.svg -------------------------------------------------------------------------------- /swatches/SVG/721.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/721.svg -------------------------------------------------------------------------------- /swatches/SVG/722.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/722.svg -------------------------------------------------------------------------------- /swatches/SVG/723.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/723.svg -------------------------------------------------------------------------------- /swatches/SVG/724.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/724.svg -------------------------------------------------------------------------------- /swatches/SVG/725.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/725.svg -------------------------------------------------------------------------------- /swatches/SVG/726.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/726.svg -------------------------------------------------------------------------------- /swatches/SVG/727.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/727.svg -------------------------------------------------------------------------------- /swatches/SVG/728.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/728.svg -------------------------------------------------------------------------------- /swatches/SVG/729.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/729.svg -------------------------------------------------------------------------------- /swatches/SVG/730.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/730.svg -------------------------------------------------------------------------------- /swatches/SVG/731.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/731.svg -------------------------------------------------------------------------------- /swatches/SVG/732.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/732.svg -------------------------------------------------------------------------------- /swatches/SVG/733.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/SVG/733.svg -------------------------------------------------------------------------------- /swatches/USGS_pattern_pages/FGDCgeostdTM11A2_A-37-01.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/USGS_pattern_pages/FGDCgeostdTM11A2_A-37-01.ai -------------------------------------------------------------------------------- /swatches/USGS_pattern_pages/FGDCgeostdTM11A2_A-37-02.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/USGS_pattern_pages/FGDCgeostdTM11A2_A-37-02.ai -------------------------------------------------------------------------------- /swatches/USGS_pattern_pages/FGDCgeostdTM11A2_A-37-03.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/USGS_pattern_pages/FGDCgeostdTM11A2_A-37-03.ai -------------------------------------------------------------------------------- /swatches/USGS_pattern_pages/FGDCgeostdTM11A2_PattCh.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/USGS_pattern_pages/FGDCgeostdTM11A2_PattCh.ai -------------------------------------------------------------------------------- /swatches/png/601.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/601.png -------------------------------------------------------------------------------- /swatches/png/602.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/602.png -------------------------------------------------------------------------------- /swatches/png/603.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/603.png -------------------------------------------------------------------------------- /swatches/png/605.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/605.png -------------------------------------------------------------------------------- /swatches/png/606.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/606.png -------------------------------------------------------------------------------- /swatches/png/607.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/607.png -------------------------------------------------------------------------------- /swatches/png/608.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/608.png -------------------------------------------------------------------------------- /swatches/png/609.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/609.png -------------------------------------------------------------------------------- /swatches/png/610.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/610.png -------------------------------------------------------------------------------- /swatches/png/611.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/611.png -------------------------------------------------------------------------------- /swatches/png/612.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/612.png -------------------------------------------------------------------------------- /swatches/png/613.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/613.png -------------------------------------------------------------------------------- /swatches/png/614.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/614.png -------------------------------------------------------------------------------- /swatches/png/616.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/616.png -------------------------------------------------------------------------------- /swatches/png/617.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/617.png -------------------------------------------------------------------------------- /swatches/png/618.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/618.png -------------------------------------------------------------------------------- /swatches/png/619.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/619.png -------------------------------------------------------------------------------- /swatches/png/620.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/620.png -------------------------------------------------------------------------------- /swatches/png/621.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/621.png -------------------------------------------------------------------------------- /swatches/png/622.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/622.png -------------------------------------------------------------------------------- /swatches/png/623.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/623.png -------------------------------------------------------------------------------- /swatches/png/624.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/624.png -------------------------------------------------------------------------------- /swatches/png/625.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/625.png -------------------------------------------------------------------------------- /swatches/png/626.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/626.png -------------------------------------------------------------------------------- /swatches/png/627.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/627.png -------------------------------------------------------------------------------- /swatches/png/628.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/628.png -------------------------------------------------------------------------------- /swatches/png/629.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/629.png -------------------------------------------------------------------------------- /swatches/png/630.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/630.png -------------------------------------------------------------------------------- /swatches/png/631.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/631.png -------------------------------------------------------------------------------- /swatches/png/632.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/632.png -------------------------------------------------------------------------------- /swatches/png/633.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/633.png -------------------------------------------------------------------------------- /swatches/png/634.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/634.png -------------------------------------------------------------------------------- /swatches/png/635.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/635.png -------------------------------------------------------------------------------- /swatches/png/636.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/636.png -------------------------------------------------------------------------------- /swatches/png/637.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/637.png -------------------------------------------------------------------------------- /swatches/png/638.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/638.png -------------------------------------------------------------------------------- /swatches/png/639.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/639.png -------------------------------------------------------------------------------- /swatches/png/640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/640.png -------------------------------------------------------------------------------- /swatches/png/641.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/641.png -------------------------------------------------------------------------------- /swatches/png/642.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/642.png -------------------------------------------------------------------------------- /swatches/png/643.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/643.png -------------------------------------------------------------------------------- /swatches/png/644.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/644.png -------------------------------------------------------------------------------- /swatches/png/645.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/645.png -------------------------------------------------------------------------------- /swatches/png/646.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/646.png -------------------------------------------------------------------------------- /swatches/png/647.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/647.png -------------------------------------------------------------------------------- /swatches/png/648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/648.png -------------------------------------------------------------------------------- /swatches/png/649.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/649.png -------------------------------------------------------------------------------- /swatches/png/650.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/650.png -------------------------------------------------------------------------------- /swatches/png/651.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/651.png -------------------------------------------------------------------------------- /swatches/png/652.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/652.png -------------------------------------------------------------------------------- /swatches/png/653.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/653.png -------------------------------------------------------------------------------- /swatches/png/654.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/654.png -------------------------------------------------------------------------------- /swatches/png/655.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/655.png -------------------------------------------------------------------------------- /swatches/png/656.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/656.png -------------------------------------------------------------------------------- /swatches/png/657.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/657.png -------------------------------------------------------------------------------- /swatches/png/658.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/658.png -------------------------------------------------------------------------------- /swatches/png/659.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/659.png -------------------------------------------------------------------------------- /swatches/png/660.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/660.png -------------------------------------------------------------------------------- /swatches/png/661.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/661.png -------------------------------------------------------------------------------- /swatches/png/662.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/662.png -------------------------------------------------------------------------------- /swatches/png/663.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/663.png -------------------------------------------------------------------------------- /swatches/png/664.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/664.png -------------------------------------------------------------------------------- /swatches/png/665.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/665.png -------------------------------------------------------------------------------- /swatches/png/666.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/666.png -------------------------------------------------------------------------------- /swatches/png/667.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/667.png -------------------------------------------------------------------------------- /swatches/png/668.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/668.png -------------------------------------------------------------------------------- /swatches/png/669.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/669.png -------------------------------------------------------------------------------- /swatches/png/670.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/670.png -------------------------------------------------------------------------------- /swatches/png/671.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/671.png -------------------------------------------------------------------------------- /swatches/png/672.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/672.png -------------------------------------------------------------------------------- /swatches/png/673.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/673.png -------------------------------------------------------------------------------- /swatches/png/674.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/674.png -------------------------------------------------------------------------------- /swatches/png/675.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/675.png -------------------------------------------------------------------------------- /swatches/png/676.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/676.png -------------------------------------------------------------------------------- /swatches/png/677.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/677.png -------------------------------------------------------------------------------- /swatches/png/678.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/678.png -------------------------------------------------------------------------------- /swatches/png/679.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/679.png -------------------------------------------------------------------------------- /swatches/png/680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/680.png -------------------------------------------------------------------------------- /swatches/png/681.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/681.png -------------------------------------------------------------------------------- /swatches/png/682.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/682.png -------------------------------------------------------------------------------- /swatches/png/683.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/683.png -------------------------------------------------------------------------------- /swatches/png/684.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/684.png -------------------------------------------------------------------------------- /swatches/png/685.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/685.png -------------------------------------------------------------------------------- /swatches/png/686.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/686.png -------------------------------------------------------------------------------- /swatches/png/701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/701.png -------------------------------------------------------------------------------- /swatches/png/702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/702.png -------------------------------------------------------------------------------- /swatches/png/703.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/703.png -------------------------------------------------------------------------------- /swatches/png/704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/704.png -------------------------------------------------------------------------------- /swatches/png/705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/705.png -------------------------------------------------------------------------------- /swatches/png/706.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/706.png -------------------------------------------------------------------------------- /swatches/png/707.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/707.png -------------------------------------------------------------------------------- /swatches/png/708.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/708.png -------------------------------------------------------------------------------- /swatches/png/709.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/709.png -------------------------------------------------------------------------------- /swatches/png/710.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/710.png -------------------------------------------------------------------------------- /swatches/png/711.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/711.png -------------------------------------------------------------------------------- /swatches/png/712.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/712.png -------------------------------------------------------------------------------- /swatches/png/713.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/713.png -------------------------------------------------------------------------------- /swatches/png/714.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/714.png -------------------------------------------------------------------------------- /swatches/png/715.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/715.png -------------------------------------------------------------------------------- /swatches/png/716.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/716.png -------------------------------------------------------------------------------- /swatches/png/717.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/717.png -------------------------------------------------------------------------------- /swatches/png/719.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/719.png -------------------------------------------------------------------------------- /swatches/png/720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/720.png -------------------------------------------------------------------------------- /swatches/png/721.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/721.png -------------------------------------------------------------------------------- /swatches/png/722.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/722.png -------------------------------------------------------------------------------- /swatches/png/723.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/723.png -------------------------------------------------------------------------------- /swatches/png/724.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/724.png -------------------------------------------------------------------------------- /swatches/png/725.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/725.png -------------------------------------------------------------------------------- /swatches/png/726.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/726.png -------------------------------------------------------------------------------- /swatches/png/727.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/727.png -------------------------------------------------------------------------------- /swatches/png/728.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/728.png -------------------------------------------------------------------------------- /swatches/png/729.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/729.png -------------------------------------------------------------------------------- /swatches/png/730.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/730.png -------------------------------------------------------------------------------- /swatches/png/731.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/731.png -------------------------------------------------------------------------------- /swatches/png/732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/732.png -------------------------------------------------------------------------------- /swatches/png/733.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/png/733.png -------------------------------------------------------------------------------- /swatches/svg2png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/swatches/svg2png.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystrat-maintainers/pystrat/HEAD/tox.ini --------------------------------------------------------------------------------